<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*! Swipebox v1.3.0 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
html.swipebox-html.swipebox-touch {
  overflow: hidden !important;
}
#swipebox-overlay img {
  border: none !important;
}
#swipebox-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999 !important;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#swipebox-container {
  position: relative;
  width: 100%;
  height: 100%;
}
#swipebox-slider {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  position: absolute;
  display: none;
  cursor: pointer;
}
#swipebox-slider .slide {
  height: 100%;
  width: 100%;
  line-height: 1px;
  text-align: center;
  display: inline-block;
}
#swipebox-slider .slide:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
#swipebox-slider .slide img,
#swipebox-slider .slide .swipebox-video-container,
#swipebox-slider .slide .swipebox-inline-container {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  vertical-align: middle;
}
#swipebox-slider .slide .swipebox-video-container {
  background: none;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 5%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
#swipebox-slider .slide-loading {
  background: url(../components/node_modules/@yarn/swipebox/src/img/loader.gif) no-repeat center center;
}
#swipebox-bottom-bar,
#swipebox-top-bar {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  left: 0;
  z-index: 999;
  height: 50px;
  width: 100%;
}
#swipebox-bottom-bar {
  bottom: -50px;
}
#swipebox-bottom-bar.visible-bars {
  -webkit-transform: translate3d(0, -50px, 0);
  transform: translate3d(0, -50px, 0);
}
#swipebox-top-bar {
  top: -50px;
}
#swipebox-top-bar.visible-bars {
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
}
#swipebox-title {
  display: block;
  width: 100%;
  text-align: center;
}
#swipebox-prev,
#swipebox-next,
#swipebox-close {
  background-image: url(../components/node_modules/@yarn/swipebox/src/img/icons.png);
  background-repeat: no-repeat;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer;
  width: 50px;
  height: 50px;
  top: 0;
}
#swipebox-arrows {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 50px;
}
#swipebox-prev {
  background-position: -32px 13px;
  float: left;
}
#swipebox-next {
  background-position: -78px 13px;
  float: right;
}
#swipebox-close {
  top: 0;
  right: 0;
  position: absolute;
  z-index: 9999;
  background-position: 15px 12px;
}
.swipebox-no-close-button #swipebox-close {
  display: none;
}
#swipebox-prev.disabled,
#swipebox-next.disabled {
  opacity: 0.3;
}
.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider {
  -webkit-animation: rightSpring 0.3s;
  animation: rightSpring 0.3s;
}
.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider {
  -webkit-animation: leftSpring 0.3s;
  animation: leftSpring 0.3s;
}
.swipebox-touch #swipebox-container:before,
.swipebox-touch #swipebox-container:after {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: ' ';
  position: absolute;
  z-index: 999;
  top: 0;
  height: 100%;
  width: 20px;
  opacity: 0;
}
.swipebox-touch #swipebox-container:before {
  left: 0;
  -webkit-box-shadow: inset 10px 0px 10px -8px #656565;
  box-shadow: inset 10px 0px 10px -8px #656565;
}
.swipebox-touch #swipebox-container:after {
  right: 0;
  -webkit-box-shadow: inset -10px 0px 10px -8px #656565;
  box-shadow: inset -10px 0px 10px -8px #656565;
}
.swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before {
  opacity: 1;
}
.swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after {
  opacity: 1;
}
@-webkit-keyframes rightSpring {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@keyframes rightSpring {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes leftSpring {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@keyframes leftSpring {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@media screen and (min-width: 800px) {
  #swipebox-close {
    right: 10px;
  }
  #swipebox-arrows {
    width: 92%;
    max-width: 800px;
  }
}
/* Skin 
--------------------------*/
#swipebox-overlay {
  background: #0d0d0d;
}
#swipebox-bottom-bar,
#swipebox-top-bar {
  text-shadow: 1px 1px 1px black;
  background: #000;
  opacity: 0.95;
}
#swipebox-top-bar {
  color: white !important;
  font-size: 15px;
  line-height: 43px;
  font-family: Helvetica, Arial, sans-serif;
}
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav &gt; li {
  position: relative;
  display: block;
}
.nav &gt; li &gt; a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav &gt; li &gt; a:hover,
.nav &gt; li &gt; a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav &gt; li.disabled &gt; a {
  color: #777777;
}
.nav &gt; li.disabled &gt; a:hover,
.nav &gt; li.disabled &gt; a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open &gt; a,
.nav .open &gt; a:hover,
.nav .open &gt; a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav &gt; li &gt; a &gt; img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs &gt; li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs &gt; li &gt; a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs &gt; li &gt; a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
.nav-tabs &gt; li.active &gt; a,
.nav-tabs &gt; li.active &gt; a:hover,
.nav-tabs &gt; li.active &gt; a:focus {
  color: #555555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified &gt; li {
  float: none;
}
.nav-tabs.nav-justified &gt; li &gt; a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-tabs.nav-justified &gt; .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified &gt; li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified &gt; li &gt; a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified &gt; li &gt; a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified &gt; .active &gt; a,
.nav-tabs.nav-justified &gt; .active &gt; a:hover,
.nav-tabs.nav-justified &gt; .active &gt; a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified &gt; li &gt; a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified &gt; .active &gt; a,
  .nav-tabs.nav-justified &gt; .active &gt; a:hover,
  .nav-tabs.nav-justified &gt; .active &gt; a:focus {
    border-bottom-color: #fff;
  }
}
.nav-pills &gt; li {
  float: left;
}
.nav-pills &gt; li &gt; a {
  border-radius: 4px;
}
.nav-pills &gt; li + li {
  margin-left: 2px;
}
.nav-pills &gt; li.active &gt; a,
.nav-pills &gt; li.active &gt; a:hover,
.nav-pills &gt; li.active &gt; a:focus {
  color: #fff;
  background-color: #337ab7;
}
.nav-stacked &gt; li {
  float: none;
}
.nav-stacked &gt; li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified &gt; li {
  float: none;
}
.nav-justified &gt; li &gt; a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified &gt; .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified &gt; li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified &gt; li &gt; a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified &gt; li &gt; a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified &gt; .active &gt; a,
.nav-tabs-justified &gt; .active &gt; a:hover,
.nav-tabs-justified &gt; .active &gt; a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified &gt; li &gt; a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified &gt; .active &gt; a,
  .nav-tabs-justified &gt; .active &gt; a:hover,
  .nav-tabs-justified &gt; .active &gt; a:focus {
    border-bottom-color: #fff;
  }
}
.tab-content &gt; .tab-pane {
  display: none;
}
.tab-content &gt; .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
@font-face {
  font-family: "OpenSansLight";
  src: url("/project/fonts/open-sans/OpenSans-Light-webfont.eot");
  src: url("/project/fonts/open-sans/OpenSans-Light-webfont.eot?#iefix") format("embedded-opentype"), url("/project/fonts/open-sans/OpenSans-Light-webfont.woff") format("woff"), url("/project/fonts/open-sans/OpenSans-Light-webfont.ttf") format("truetype"), url("/project/fonts/open-sans/OpenSans-Light-webfont.svg#OpenSansLight") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "OpenSansRegular";
  src: url("/project/fonts/open-sans/OpenSans-Regular-webfont.eot");
  src: url("/project/fonts/open-sans/OpenSans-Regular-webfont.eot?#iefix") format("embedded-opentype"), url("/project/fonts/open-sans/OpenSans-Regular-webfont.woff") format("woff"), url("/project/fonts/open-sans/OpenSans-Regular-webfont.ttf") format("truetype"), url("/project/fonts/open-sans/OpenSans-Regular-webfont.svg#OpenSansRegular") format("svg");
  font-weight: normal;
  font-style: normal;
}
*,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "OpenSansRegular", sans-serif;
}
body {
  font-size: 14px;
}
@media (min-width: 768px) {
  body {
    text-align: left;
  }
}
table {
  margin: auto;
}
@media print {
  .col-print-half {
    width: 50%;
    display: inline-block;
  }
}
.col-xs-five,
.col-sm-five,
.col-md-five,
.col-lg-five,
.col-xs-ten,
.col-sm-ten,
.col-md-ten,
.col-lg-ten {
  float: left;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 768px) {
  .xs-pull-left {
    float: left !important;
  }
  .xs-pull-right {
    float: right !important;
  }
  .col-xs-five {
    width: 20%;
  }
  .col-xs-ten {
    width: 10%;
  }
}
@media (min-width: 768px) {
  .sm-pull-left {
    float: left !important;
  }
  .sm-pull-right {
    float: right !important;
  }
  .col-sm-five {
    width: 20%;
  }
  .col-sm-ten {
    width: 10%;
  }
}
@media (min-width: 992px) {
  .md-pull-left {
    float: left !important;
  }
  .md-pull-right {
    float: right !important;
  }
  .col-md-five {
    width: 20%;
  }
  .col-md-ten {
    width: 10%;
  }
}
@media (min-width: 1200px) {
  .lg-pull-left {
    float: left !important;
  }
  .lg-pull-right {
    float: right !important;
  }
  .col-lg-five {
    width: 20%;
  }
  .col-lg-ten {
    width: 10%;
  }
}
.flexible {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.flexible &gt; * {
  width: 100%;
  height: 100%;
}
.image-left {
  display: block;
  margin: 15px auto;
  text-align: center;
  max-width: 100%;
  height: auto !important;
}
@media (min-width: 768px) {
  .image-left {
    float: left;
    margin: 25px 25px 25px 0;
  }
}
.image-right {
  display: block;
  margin: 15px auto;
  text-align: center;
  max-width: 100%;
  height: auto !important;
}
@media (min-width: 768px) {
  .image-right {
    float: left;
    margin: 25px 25px 25px 0;
  }
}
@media (min-width: 768px) {
  .image-right {
    float: left;
    margin: 25px 25px 25px 0;
  }
}
@media (min-width: 768px) {
  .image-right {
    float: right;
    margin: 25px 0 25px 25px;
  }
}
.max-width,
.max-width * {
  max-width: 100%;
}
.hide {
  display: none;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
ul.popupmenu {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.popupmenu li {
  display: block;
  position: relative;
  white-space: nowrap;
}
ul.popupmenu li a {
  display: block;
}
ul.popupmenu li ul,
ul.popupmenu li:hover ul,
ul.popupmenu li.active ul {
  display: none;
  text-align: left;
  z-index: 10;
  padding: 20px 15px 15px;
}
ul.popupmenu li ul li,
ul.popupmenu li:hover ul li,
ul.popupmenu li.active ul li {
  display: block;
}
ul.popupmenu li ul li a,
ul.popupmenu li:hover ul li a,
ul.popupmenu li.active ul li a {
  display: block;
  padding: 5px 10px;
}
@media (min-width: 768px) {
  ul.popupmenu li ul,
  ul.popupmenu li:hover ul,
  ul.popupmenu li.active ul {
    position: absolute;
  }
}
@media (min-width: 768px) {
  ul.popupmenu li {
    display: inline-block;
  }
  ul.popupmenu li a {
    display: inline-block;
  }
}
@media (min-width: 768px) {
  ul.popupmenu.collapse {
    display: block;
    height: auto !important;
  }
}
/*

http://cssload.net

&lt;div class="ajaxloader"&gt;
	&lt;div class="ajaxloader_1"&gt;&lt;/div&gt;
	&lt;div class="ajaxloader_2"&gt;&lt;/div&gt;
	&lt;div class="ajaxloader_3"&gt;&lt;/div&gt;
	&lt;div class="ajaxloader_4"&gt;&lt;/div&gt;
	&lt;div class="ajaxloader_5"&gt;&lt;/div&gt;
	&lt;div class="ajaxloader_6"&gt;&lt;/div&gt;
	&lt;div class="ajaxloader_7"&gt;&lt;/div&gt;
	&lt;div class="ajaxloader_8"&gt;&lt;/div&gt;
&lt;/div&gt;
*/
.ajaxloading {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.ajaxloader {
  position: absolute;
  z-index: 450;
  width: 24px;
  height: 24px;
}
.ajaxloader &gt; div {
  position: absolute;
  background-color: #80010b;
  width: 5px;
  height: 5px;
  -moz-border-radius: 4px;
  -moz-animation-name: bounce_circularG;
  -moz-animation-duration: 0.88s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-direction: linear;
  -webkit-border-radius: 4px;
  -webkit-animation-name: bounce_circularG;
  -webkit-animation-duration: 0.88s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: linear;
  -ms-border-radius: 4px;
  -ms-animation-name: bounce_circularG;
  -ms-animation-duration: 0.88s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-direction: linear;
  -o-border-radius: 4px;
  -o-animation-name: bounce_circularG;
  -o-animation-duration: 0.88s;
  -o-animation-iteration-count: infinite;
  -o-animation-direction: linear;
  border-radius: 4px;
  animation-name: bounce_circularG;
  animation-duration: 0.88s;
  animation-iteration-count: infinite;
  animation-direction: linear;
}
.ajaxloader .ajaxloader_1 {
  left: 0;
  top: 9px;
  -moz-animation-delay: 0.33s;
  -webkit-animation-delay: 0.33s;
  -ms-animation-delay: 0.33s;
  -o-animation-delay: 0.33s;
  animation-delay: 0.33s;
}
.ajaxloader .ajaxloader_2 {
  left: 3px;
  top: 3px;
  -moz-animation-delay: 0.44s;
  -webkit-animation-delay: 0.44s;
  -ms-animation-delay: 0.44s;
  -o-animation-delay: 0.44s;
  animation-delay: 0.44s;
}
.ajaxloader .ajaxloader_3 {
  top: 0;
  left: 9px;
  -moz-animation-delay: 0.55s;
  -webkit-animation-delay: 0.55s;
  -ms-animation-delay: 0.55s;
  -o-animation-delay: 0.55s;
  animation-delay: 0.55s;
}
.ajaxloader .ajaxloader_4 {
  right: 3px;
  top: 3px;
  -moz-animation-delay: 0.66s;
  -webkit-animation-delay: 0.66s;
  -ms-animation-delay: 0.66s;
  -o-animation-delay: 0.66s;
  animation-delay: 0.66s;
}
.ajaxloader .ajaxloader_5 {
  right: 0;
  top: 9px;
  -moz-animation-delay: 0.77s;
  -webkit-animation-delay: 0.77s;
  -ms-animation-delay: 0.77s;
  -o-animation-delay: 0.77s;
  animation-delay: 0.77s;
}
.ajaxloader .ajaxloader_6 {
  right: 3px;
  bottom: 3px;
  -moz-animation-delay: 0.88s;
  -webkit-animation-delay: 0.88s;
  -ms-animation-delay: 0.88s;
  -o-animation-delay: 0.88s;
  animation-delay: 0.88s;
}
.ajaxloader .ajaxloader_7 {
  left: 9px;
  bottom: 0;
  -moz-animation-delay: 0.99s;
  -webkit-animation-delay: 0.99s;
  -ms-animation-delay: 0.99s;
  -o-animation-delay: 0.99s;
  animation-delay: 0.99s;
}
.ajaxloader .ajaxloader_8 {
  left: 3px;
  bottom: 3px;
  -moz-animation-delay: 1.1s;
  -webkit-animation-delay: 1.1s;
  -ms-animation-delay: 1.1s;
  -o-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
@-moz-keyframes bounce_circularG {
  0% {
    -moz-transform: scale(1);
  }
  100% {
    -moz-transform: scale(0.3);
  }
}
@-webkit-keyframes bounce_circularG {
  0% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.3);
  }
}
@-ms-keyframes bounce_circularG {
  0% {
    -ms-transform: scale(1);
  }
  100% {
    -ms-transform: scale(0.3);
  }
}
@-o-keyframes bounce_circularG {
  0% {
    -o-transform: scale(1);
  }
  100% {
    -o-transform: scale(0.3);
  }
}
@keyframes bounce_circularG {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.3);
  }
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu &gt; li &gt; a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
}
.dropdown-menu &gt; li &gt; a:hover,
.dropdown-menu &gt; li &gt; a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}
.dropdown-menu &gt; .active &gt; a,
.dropdown-menu &gt; .active &gt; a:hover,
.dropdown-menu &gt; .active &gt; a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7;
}
.dropdown-menu &gt; .disabled &gt; a,
.dropdown-menu &gt; .disabled &gt; a:hover,
.dropdown-menu &gt; .disabled &gt; a:focus {
  color: #777777;
}
.dropdown-menu &gt; .disabled &gt; a:hover,
.dropdown-menu &gt; .disabled &gt; a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}
.open &gt; .dropdown-menu {
  display: block;
}
.open &gt; a {
  outline: 0;
}
.dropdown-menu-right {
  left: auto;
  right: 0;
}
.dropdown-menu-left {
  left: 0;
  right: auto;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}
.pull-right &gt; .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('../components/node_modules/@yarn/bootstrap/fonts/glyphicons-halflings-regular.eot');
  src: url('../components/node_modules/@yarn/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../components/node_modules/@yarn/bootstrap/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../components/node_modules/@yarn/bootstrap/fonts/glyphicons-halflings-regular.woff') format('woff'), url('../components/node_modules/@yarn/bootstrap/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../components/node_modules/@yarn/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\002a";
}
.glyphicon-plus:before {
  content: "\002b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.glyphicon-cd:before {
  content: "\e201";
}
.glyphicon-save-file:before {
  content: "\e202";
}
.glyphicon-open-file:before {
  content: "\e203";
}
.glyphicon-level-up:before {
  content: "\e204";
}
.glyphicon-copy:before {
  content: "\e205";
}
.glyphicon-paste:before {
  content: "\e206";
}
.glyphicon-alert:before {
  content: "\e209";
}
.glyphicon-equalizer:before {
  content: "\e210";
}
.glyphicon-king:before {
  content: "\e211";
}
.glyphicon-queen:before {
  content: "\e212";
}
.glyphicon-pawn:before {
  content: "\e213";
}
.glyphicon-bishop:before {
  content: "\e214";
}
.glyphicon-knight:before {
  content: "\e215";
}
.glyphicon-baby-formula:before {
  content: "\e216";
}
.glyphicon-tent:before {
  content: "\26fa";
}
.glyphicon-blackboard:before {
  content: "\e218";
}
.glyphicon-bed:before {
  content: "\e219";
}
.glyphicon-apple:before {
  content: "\f8ff";
}
.glyphicon-erase:before {
  content: "\e221";
}
.glyphicon-hourglass:before {
  content: "\231b";
}
.glyphicon-lamp:before {
  content: "\e223";
}
.glyphicon-duplicate:before {
  content: "\e224";
}
.glyphicon-piggy-bank:before {
  content: "\e225";
}
.glyphicon-scissors:before {
  content: "\e226";
}
.glyphicon-bitcoin:before {
  content: "\e227";
}
.glyphicon-btc:before {
  content: "\e227";
}
.glyphicon-xbt:before {
  content: "\e227";
}
.glyphicon-yen:before {
  content: "\00a5";
}
.glyphicon-jpy:before {
  content: "\00a5";
}
.glyphicon-ruble:before {
  content: "\20bd";
}
.glyphicon-rub:before {
  content: "\20bd";
}
.glyphicon-scale:before {
  content: "\e230";
}
.glyphicon-ice-lolly:before {
  content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
.glyphicon-education:before {
  content: "\e233";
}
.glyphicon-option-horizontal:before {
  content: "\e234";
}
.glyphicon-option-vertical:before {
  content: "\e235";
}
.glyphicon-menu-hamburger:before {
  content: "\e236";
}
.glyphicon-modal-window:before {
  content: "\e237";
}
.glyphicon-oil:before {
  content: "\e238";
}
.glyphicon-grain:before {
  content: "\e239";
}
.glyphicon-sunglasses:before {
  content: "\e240";
}
.glyphicon-text-size:before {
  content: "\e241";
}
.glyphicon-text-color:before {
  content: "\e242";
}
.glyphicon-text-background:before {
  content: "\e243";
}
.glyphicon-object-align-top:before {
  content: "\e244";
}
.glyphicon-object-align-bottom:before {
  content: "\e245";
}
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}
.glyphicon-object-align-left:before {
  content: "\e247";
}
.glyphicon-object-align-vertical:before {
  content: "\e248";
}
.glyphicon-object-align-right:before {
  content: "\e249";
}
.glyphicon-triangle-right:before {
  content: "\e250";
}
.glyphicon-triangle-left:before {
  content: "\e251";
}
.glyphicon-triangle-bottom:before {
  content: "\e252";
}
.glyphicon-triangle-top:before {
  content: "\e253";
}
.glyphicon-console:before {
  content: "\e254";
}
.glyphicon-superscript:before {
  content: "\e255";
}
.glyphicon-subscript:before {
  content: "\e256";
}
.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-menu-down:before {
  content: "\e259";
}
.glyphicon-menu-up:before {
  content: "\e260";
}
/*!
 * Datetimepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Improvements by SĂ©bastien Malot
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.datetimepicker {
  padding: 4px;
  margin-top: 1px;
  white-space: normal;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  direction: ltr;
}
.datetimepicker.datetimepicker-rtl {
  direction: rtl;
}
.datetimepicker.datetimepicker-rtl table tr td span {
  float: right;
}
.datetimepicker &gt; div {
  display: none;
}
.datetimepicker.minutes div.datetimepicker-minutes {
  display: block;
}
.datetimepicker.hours div.datetimepicker-hours {
  display: block;
}
.datetimepicker.days div.datetimepicker-days {
  display: block;
}
.datetimepicker.months div.datetimepicker-months {
  display: block;
}
.datetimepicker.years div.datetimepicker-years {
  display: block;
}
.datetimepicker table {
  margin: 0;
}
.datetimepicker table tr td.minute:hover {
  background: #eeeeee;
  cursor: pointer;
}
.datetimepicker table tr td.hour:hover {
  background: #eeeeee;
  cursor: pointer;
}
.datetimepicker table tr td.day:hover {
  background: #eeeeee;
  cursor: pointer;
}
.datetimepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.datetimepicker table tr td span:hover {
  background: #eeeeee;
}
.datetimepicker table tr td span.old {
  color: #999999;
}
.datetimepicker .datetimepicker-hours span {
  height: 26px;
  line-height: 26px;
}
.datetimepicker .datetimepicker-minutes span {
  height: 26px;
  line-height: 26px;
}
.datetimepicker th.switch {
  width: 145px;
}
.datetimepicker-inline {
  width: 220px;
}
.datetimepicker-dropdown,
.datetimepicker-dropdown-left {
  top: 0;
  left: 0;
}
[class*="datetimepicker-dropdown"]:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
[class*="datetimepicker-dropdown"]:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  position: absolute;
}
[class*="datetimepicker-dropdown-top"]:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-bottom: 0;
}
[class*="datetimepicker-dropdown-top"]:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ffffff;
  border-bottom: 0;
}
.datetimepicker-dropdown-bottom-left:before {
  top: -7px;
  right: 6px;
}
.datetimepicker-dropdown-bottom-left:after {
  top: -6px;
  right: 7px;
}
.datetimepicker-dropdown-bottom-right:before {
  top: -7px;
  left: 6px;
}
.datetimepicker-dropdown-bottom-right:after {
  top: -6px;
  left: 7px;
}
.datetimepicker-dropdown-top-left:before {
  bottom: -7px;
  right: 6px;
}
.datetimepicker-dropdown-top-left:after {
  bottom: -6px;
  right: 7px;
}
.datetimepicker-dropdown-top-right:before {
  bottom: -7px;
  left: 6px;
}
.datetimepicker-dropdown-top-right:after {
  bottom: -6px;
  left: 7px;
}
.datetimepicker td,
.datetimepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: none;
}
.table-striped .datetimepicker table tr td,
.table-striped .datetimepicker table tr th {
  background-color: transparent;
}
.datetimepicker table tr td.old,
.datetimepicker table tr td.new {
  color: #999999;
}
.datetimepicker table tr td.disabled,
.datetimepicker table tr td.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
.datetimepicker table tr td.today,
.datetimepicker table tr td.today:hover,
.datetimepicker table tr td.today.disabled,
.datetimepicker table tr td.today.disabled:hover {
  background-color: #fde19a;
  background-image: -moz-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: -ms-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdd49a), to(#fdf59a));
  background-image: -webkit-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: -o-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
  border-color: #fdf59a #fdf59a #fbed50;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.datetimepicker table tr td.today:hover,
.datetimepicker table tr td.today:hover:hover,
.datetimepicker table tr td.today.disabled:hover,
.datetimepicker table tr td.today.disabled:hover:hover,
.datetimepicker table tr td.today:active,
.datetimepicker table tr td.today:hover:active,
.datetimepicker table tr td.today.disabled:active,
.datetimepicker table tr td.today.disabled:hover:active,
.datetimepicker table tr td.today.active,
.datetimepicker table tr td.today:hover.active,
.datetimepicker table tr td.today.disabled.active,
.datetimepicker table tr td.today.disabled:hover.active,
.datetimepicker table tr td.today.disabled,
.datetimepicker table tr td.today:hover.disabled,
.datetimepicker table tr td.today.disabled.disabled,
.datetimepicker table tr td.today.disabled:hover.disabled,
.datetimepicker table tr td.today[disabled],
.datetimepicker table tr td.today:hover[disabled],
.datetimepicker table tr td.today.disabled[disabled],
.datetimepicker table tr td.today.disabled:hover[disabled] {
  background-color: #fdf59a;
}
.datetimepicker table tr td.today:active,
.datetimepicker table tr td.today:hover:active,
.datetimepicker table tr td.today.disabled:active,
.datetimepicker table tr td.today.disabled:hover:active,
.datetimepicker table tr td.today.active,
.datetimepicker table tr td.today:hover.active,
.datetimepicker table tr td.today.disabled.active,
.datetimepicker table tr td.today.disabled:hover.active {
  background-color: #fbf069 \9;
}
.datetimepicker table tr td.active,
.datetimepicker table tr td.active:hover,
.datetimepicker table tr td.active.disabled,
.datetimepicker table tr td.active.disabled:hover {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datetimepicker table tr td.active:hover,
.datetimepicker table tr td.active:hover:hover,
.datetimepicker table tr td.active.disabled:hover,
.datetimepicker table tr td.active.disabled:hover:hover,
.datetimepicker table tr td.active:active,
.datetimepicker table tr td.active:hover:active,
.datetimepicker table tr td.active.disabled:active,
.datetimepicker table tr td.active.disabled:hover:active,
.datetimepicker table tr td.active.active,
.datetimepicker table tr td.active:hover.active,
.datetimepicker table tr td.active.disabled.active,
.datetimepicker table tr td.active.disabled:hover.active,
.datetimepicker table tr td.active.disabled,
.datetimepicker table tr td.active:hover.disabled,
.datetimepicker table tr td.active.disabled.disabled,
.datetimepicker table tr td.active.disabled:hover.disabled,
.datetimepicker table tr td.active[disabled],
.datetimepicker table tr td.active:hover[disabled],
.datetimepicker table tr td.active.disabled[disabled],
.datetimepicker table tr td.active.disabled:hover[disabled] {
  background-color: #0044cc;
}
.datetimepicker table tr td.active:active,
.datetimepicker table tr td.active:hover:active,
.datetimepicker table tr td.active.disabled:active,
.datetimepicker table tr td.active.disabled:hover:active,
.datetimepicker table tr td.active.active,
.datetimepicker table tr td.active:hover.active,
.datetimepicker table tr td.active.disabled.active,
.datetimepicker table tr td.active.disabled:hover.active {
  background-color: #003399 \9;
}
.datetimepicker .datetimepicker-hours table tr td span.hour_am,
.datetimepicker .datetimepicker-hours table tr td span.hour_pm {
  width: 14.6%;
}
.datetimepicker .datetimepicker-hours fieldset legend,
.datetimepicker .datetimepicker-minutes fieldset legend {
  margin-bottom: inherit;
  line-height: 30px;
}
.datetimepicker table tr td span.disabled,
.datetimepicker table tr td span.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
.datetimepicker table tr td span.active,
.datetimepicker table tr td span.active:hover,
.datetimepicker table tr td span.active.disabled,
.datetimepicker table tr td span.active.disabled:hover {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datetimepicker table tr td span.active:hover,
.datetimepicker table tr td span.active:hover:hover,
.datetimepicker table tr td span.active.disabled:hover,
.datetimepicker table tr td span.active.disabled:hover:hover,
.datetimepicker table tr td span.active:active,
.datetimepicker table tr td span.active:hover:active,
.datetimepicker table tr td span.active.disabled:active,
.datetimepicker table tr td span.active.disabled:hover:active,
.datetimepicker table tr td span.active.active,
.datetimepicker table tr td span.active:hover.active,
.datetimepicker table tr td span.active.disabled.active,
.datetimepicker table tr td span.active.disabled:hover.active,
.datetimepicker table tr td span.active.disabled,
.datetimepicker table tr td span.active:hover.disabled,
.datetimepicker table tr td span.active.disabled.disabled,
.datetimepicker table tr td span.active.disabled:hover.disabled,
.datetimepicker table tr td span.active[disabled],
.datetimepicker table tr td span.active:hover[disabled],
.datetimepicker table tr td span.active.disabled[disabled],
.datetimepicker table tr td span.active.disabled:hover[disabled] {
  background-color: #0044cc;
}
.datetimepicker table tr td span.active:active,
.datetimepicker table tr td span.active:hover:active,
.datetimepicker table tr td span.active.disabled:active,
.datetimepicker table tr td span.active.disabled:hover:active,
.datetimepicker table tr td span.active.active,
.datetimepicker table tr td span.active:hover.active,
.datetimepicker table tr td span.active.disabled.active,
.datetimepicker table tr td span.active.disabled:hover.active {
  background-color: #003399 \9;
}
.datetimepicker thead tr:first-child th,
.datetimepicker tfoot tr:first-child th {
  cursor: pointer;
}
.datetimepicker thead tr:first-child th:hover,
.datetimepicker tfoot tr:first-child th:hover {
  background: #eeeeee;
}
.input-append.date .add-on i,
.input-prepend.date .add-on i,
.input-group.date .input-group-addon span {
  cursor: pointer;
  width: 14px;
  height: 14px;
}
.datetimepicker .icon-arrow-left {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.datetimepicker .icon-arrow-left:before {
  content: "\e091";
}
.datetimepicker .icon-arrow-right {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.datetimepicker .icon-arrow-right:before {
  content: "\e092";
}
ul.popupmenu {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.popupmenu li {
  display: block;
  position: relative;
  white-space: nowrap;
}
ul.popupmenu li a {
  display: block;
}
ul.popupmenu li .popupinner,
ul.popupmenu li &gt; ul,
ul.popupmenu li:hover &gt; ul,
ul.popupmenu li.active &gt; ul {
  display: none;
  text-align: left;
  z-index: 500;
  padding: 20px 15px 15px;
}
ul.popupmenu li .popupinner li,
ul.popupmenu li &gt; ul li,
ul.popupmenu li:hover &gt; ul li,
ul.popupmenu li.active &gt; ul li {
  display: block;
}
ul.popupmenu li .popupinner li a,
ul.popupmenu li &gt; ul li a,
ul.popupmenu li:hover &gt; ul li a,
ul.popupmenu li.active &gt; ul li a {
  display: block;
  padding: 5px 10px;
}
@media (min-width: 768px) {
  ul.popupmenu li .popupinner,
  ul.popupmenu li &gt; ul,
  ul.popupmenu li:hover &gt; ul,
  ul.popupmenu li.active &gt; ul {
    position: absolute;
  }
}
ul.popupmenu li.active .popupinner,
ul.popupmenu li.active &gt; ul {
  display: block;
}
@media (min-width: 768px) {
  ul.popupmenu li.active .popupinner,
  ul.popupmenu li.active &gt; ul {
    display: none;
  }
}
@media (min-width: 768px) {
  ul.popupmenu li {
    display: inline-block;
  }
  ul.popupmenu li a {
    display: inline-block;
  }
}
@media (min-width: 768px) {
  ul.popupmenu.collapse {
    display: block;
    visibility: visible;
    height: auto !important;
  }
}
/* Less file is created by GRID system DO NOT CHANGE */
.grid-row {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  padding: 0;
  margin: 0;
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
  box-sizing: border-box;
  flex-wrap: nowrap;
}
.grid-row &gt; .grid {
  flex-grow: 1;
  flex-wrap: wrap;
  row-gap: 40px;
}
.grid {
  display: flex;
  position: relative;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  min-width: 10%;
}
.grid.html,
.grid.text,
.grid.bullets {
  display: block;
}
.grid.b-col,
.grid.b-form,
.grid.b-image {
  flex-direction: column;
}
.grid.b-col.reverse,
.grid.b-form.reverse,
.grid.b-image.reverse {
  flex-direction: column-reverse;
}
.grid.b-col.b-center,
.grid.b-form.b-center,
.grid.b-image.b-center {
  align-items: center;
}
.grid.b-row {
  flex-direction: row;
  flex-wrap: wrap;
}
.grid.b-row.reverse {
  flex-direction: row-reverse;
}
.grid.b-row.left {
  justify-content: left;
}
.grid.b-row.left &gt; .grid-box {
  justify-content: flex-start;
}
.grid.b-row.right {
  justify-content: right;
}
.grid.b-row.right &gt; .grid-box {
  justify-content: flex-start;
}
.grid.b-row.center {
  justify-content: center;
}
.grid.b-row.center &gt; .grid-box {
  justify-content: flex-start;
}
.grid.b-row.space-between {
  justify-content: space-between;
}
.grid.b-row.space-between &gt; .grid-box {
  justify-content: flex-start;
}
.grid.b-row.space-around {
  justify-content: space-around;
}
.grid.b-row.space-around &gt; .grid-box {
  justify-content: flex-start;
}
.grid.b-row.space-evenly {
  justify-content: space-evenly;
}
.grid.b-row.space-evenly &gt; .grid-box {
  justify-content: flex-start;
}
.grid.b-link.b-center {
  justify-content: center;
  align-items: center;
}
.grid.b-image {
  position: relative;
  overflow: hidden;
}
.grid.b-image &gt; img {
  width: 100%;
  height: auto;
}
.grid.b-image .bg-inner {
  position: absolute;
  top: 0;
}
.grid .b-row-1,
.grid .b-link-1,
.grid.b-image-1 {
  flex-grow: 0;
  flex-wrap: wrap;
  row-gap: 40px;
}
.grid .b-row-1 &gt; .grid,
.grid .b-link-1 &gt; .grid,
.grid.b-image-1 &gt; .grid,
.grid .b-row-1 &gt; .grid-row,
.grid .b-link-1 &gt; .grid-row,
.grid.b-image-1 &gt; .grid-row {
  box-sizing: border-box;
  flex-basis: 100%;
}
.grid .b-row-1.column-count,
.grid .b-link-1.column-count,
.grid.b-image-1.column-count {
  display: block;
  column-count: 1;
}
.grid .b-row-1.column-count &gt; .grid,
.grid .b-link-1.column-count &gt; .grid,
.grid.b-image-1.column-count &gt; .grid,
.grid .b-row-1.column-count &gt; .grid-row,
.grid .b-link-1.column-count &gt; .grid-row,
.grid.b-image-1.column-count &gt; .grid-row {
  break-inside: avoid;
  flex: 0 0 100%;
}
.grid .b-row-2,
.grid .b-link-2,
.grid.b-image-2 {
  flex-grow: 0;
  flex-wrap: wrap;
  row-gap: 40px;
}
.grid .b-row-2 &gt; .grid,
.grid .b-link-2 &gt; .grid,
.grid.b-image-2 &gt; .grid,
.grid .b-row-2 &gt; .grid-row,
.grid .b-link-2 &gt; .grid-row,
.grid.b-image-2 &gt; .grid-row {
  box-sizing: border-box;
  flex-basis: 50%;
  min-width: calc(50% - 10px);
}
.grid .b-row-2.column-count,
.grid .b-link-2.column-count,
.grid.b-image-2.column-count {
  display: block;
  column-count: 2;
}
.grid .b-row-2.column-count &gt; .grid,
.grid .b-link-2.column-count &gt; .grid,
.grid.b-image-2.column-count &gt; .grid,
.grid .b-row-2.column-count &gt; .grid-row,
.grid .b-link-2.column-count &gt; .grid-row,
.grid.b-image-2.column-count &gt; .grid-row {
  break-inside: avoid;
  flex: 0 0 100%;
}
.grid .b-row-3,
.grid .b-link-3,
.grid.b-image-3 {
  flex-grow: 0;
  flex-wrap: wrap;
  row-gap: 40px;
}
.grid .b-row-3 &gt; .grid,
.grid .b-link-3 &gt; .grid,
.grid.b-image-3 &gt; .grid,
.grid .b-row-3 &gt; .grid-row,
.grid .b-link-3 &gt; .grid-row,
.grid.b-image-3 &gt; .grid-row {
  box-sizing: border-box;
  flex-basis: 33.33%;
  min-width: calc(33% - 10px);
}
.grid .b-row-3.column-count,
.grid .b-link-3.column-count,
.grid.b-image-3.column-count {
  display: block;
  column-count: 3;
}
.grid .b-row-3.column-count &gt; .grid,
.grid .b-link-3.column-count &gt; .grid,
.grid.b-image-3.column-count &gt; .grid,
.grid .b-row-3.column-count &gt; .grid-row,
.grid .b-link-3.column-count &gt; .grid-row,
.grid.b-image-3.column-count &gt; .grid-row {
  break-inside: avoid;
  flex: 0 0 100%;
}
.grid .b-row-4,
.grid .b-link-4,
.grid.b-image-4 {
  flex-grow: 0;
  flex-wrap: wrap;
  row-gap: 40px;
}
.grid .b-row-4 &gt; .grid,
.grid .b-link-4 &gt; .grid,
.grid.b-image-4 &gt; .grid,
.grid .b-row-4 &gt; .grid-row,
.grid .b-link-4 &gt; .grid-row,
.grid.b-image-4 &gt; .grid-row {
  box-sizing: border-box;
  flex-basis: 25%;
  min-width: calc(25% - 10px);
}
.grid .b-row-4.column-count,
.grid .b-link-4.column-count,
.grid.b-image-4.column-count {
  display: block;
  column-count: 4;
}
.grid .b-row-4.column-count &gt; .grid,
.grid .b-link-4.column-count &gt; .grid,
.grid.b-image-4.column-count &gt; .grid,
.grid .b-row-4.column-count &gt; .grid-row,
.grid .b-link-4.column-count &gt; .grid-row,
.grid.b-image-4.column-count &gt; .grid-row {
  break-inside: avoid;
  flex: 0 0 100%;
}
.grid .b-row-5,
.grid .b-link-5,
.grid.b-image-5 {
  flex-grow: 0;
  flex-wrap: wrap;
  row-gap: 40px;
}
.grid .b-row-5 &gt; .grid,
.grid .b-link-5 &gt; .grid,
.grid.b-image-5 &gt; .grid,
.grid .b-row-5 &gt; .grid-row,
.grid .b-link-5 &gt; .grid-row,
.grid.b-image-5 &gt; .grid-row {
  box-sizing: border-box;
  flex-basis: 20%;
  min-width: calc(20% - 10px);
}
.grid .b-row-5.column-count,
.grid .b-link-5.column-count,
.grid.b-image-5.column-count {
  display: block;
  column-count: 5;
}
.grid .b-row-5.column-count &gt; .grid,
.grid .b-link-5.column-count &gt; .grid,
.grid.b-image-5.column-count &gt; .grid,
.grid .b-row-5.column-count &gt; .grid-row,
.grid .b-link-5.column-count &gt; .grid-row,
.grid.b-image-5.column-count &gt; .grid-row {
  break-inside: avoid;
  flex: 0 0 100%;
}
.grid .b-row-6,
.grid .b-link-6,
.grid.b-image-6 {
  flex-grow: 0;
  flex-wrap: wrap;
}
.grid .b-row-6 &gt; .grid,
.grid .b-link-6 &gt; .grid,
.grid.b-image-6 &gt; .grid,
.grid .b-row-6 &gt; .grid-row,
.grid .b-link-6 &gt; .grid-row,
.grid.b-image-6 &gt; .grid-row {
  box-sizing: border-box;
  flex-basis: 16.66%;
  min-width: calc(16% - 10px);
}
.grid .b-row-6.column-count,
.grid .b-link-6.column-count,
.grid.b-image-6.column-count {
  display: block;
  column-count: 6;
}
.grid .b-row-6.column-count &gt; .grid,
.grid .b-link-6.column-count &gt; .grid,
.grid.b-image-6.column-count &gt; .grid,
.grid .b-row-6.column-count &gt; .grid-row,
.grid .b-link-6.column-count &gt; .grid-row,
.grid.b-image-6.column-count &gt; .grid-row {
  break-inside: avoid;
  flex: 0 0 100%;
}
.grid .grow-0 {
  flex-grow: 0;
}
.grid .grow-1 {
  flex-grow: 1;
}
.grid .grow-2 {
  flex-grow: 2;
}
.grid .grow-3 {
  flex-grow: 3;
}
.grid .grow-4 {
  flex-grow: 4;
}
.grid .grow-5 {
  flex-grow: 5;
}
.grid .grow-6 {
  flex-grow: 6;
}
.grid .shrink-1 {
  flex-shrink: 1;
}
.grid .shrink-2 {
  flex-shrink: 2;
}
.grid .shrink-3 {
  flex-shrink: 3;
}
.grid .shrink-4 {
  flex-shrink: 4;
}
.grid .shrink-5 {
  flex-shrink: 5;
}
.grid .shrink-6 {
  flex-shrink: 6;
}
.grid .g-visible {
  display: flex;
}
.grid .g-hidden {
  display: none;
}
.grid .html.gnum-1,
.grid .text.gnum-1,
.grid .bullets.gnum-1 {
  /*display: block;*/
  column-count: 1;
}
.grid .html.gnum-2,
.grid .text.gnum-2,
.grid .bullets.gnum-2 {
  /*display: block;*/
  column-count: 2;
}
.grid .html.gnum-3,
.grid .text.gnum-3,
.grid .bullets.gnum-3 {
  /*display: block;*/
  column-count: 3;
}
.grid .html.gnum-4,
.grid .text.gnum-4,
.grid .bullets.gnum-4 {
  /*display: block;*/
  column-count: 4;
}
.grid .html.gnum-5,
.grid .text.gnum-5,
.grid .bullets.gnum-5 {
  /*display: block;*/
  column-count: 5;
}
.grid .html.gnum-6,
.grid .text.gnum-6,
.grid .bullets.gnum-6 {
  /*display: block;*/
  column-count: 6;
}
.grid .space.gnum-1 {
  height: 10px;
}
.grid .space.gnum-2 {
  height: 20px;
}
.grid .space.gnum-3 {
  height: 40px;
}
.grid .space.gnum-4 {
  height: 60px;
}
.grid .space.gnum-5 {
  height: 80px;
}
.grid .space.gnum-6 {
  height: 100px;
}
@media (max-width: 1400px) {
  .grid.gxl-dir-row {
    flex-direction: row !important;
  }
  .grid.gxl-dir-rrow {
    flex-direction: row-reverse !important;
  }
  .grid.gxl-dir-col {
    flex-direction: column !important;
    flex-wrap: nowrap;
  }
  .grid.gxl-dir-rcol {
    flex-direction: column-reverse !important;
    flex-wrap: nowrap;
  }
  .grid .gxl-num-1 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .gxl-num-1 &gt; .grid,
  .grid .gxl-num-1 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 100%;
  }
  .grid .gxl-num-1.column-count {
    display: block;
    column-count: 1;
  }
  .grid .gxl-num-1.column-count &gt; .grid,
  .grid .gxl-num-1.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gxl-num-2 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .gxl-num-2 &gt; .grid,
  .grid .gxl-num-2 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 50%;
    min-width: calc(50% - 10px);
  }
  .grid .gxl-num-2.column-count {
    display: block;
    column-count: 2;
  }
  .grid .gxl-num-2.column-count &gt; .grid,
  .grid .gxl-num-2.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gxl-num-3 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .gxl-num-3 &gt; .grid,
  .grid .gxl-num-3 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 33.33%;
    min-width: calc(33% - 10px);
  }
  .grid .gxl-num-3.column-count {
    display: block;
    column-count: 3;
  }
  .grid .gxl-num-3.column-count &gt; .grid,
  .grid .gxl-num-3.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gxl-num-4 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .gxl-num-4 &gt; .grid,
  .grid .gxl-num-4 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 25%;
    min-width: calc(25% - 10px);
  }
  .grid .gxl-num-4.column-count {
    display: block;
    column-count: 4;
  }
  .grid .gxl-num-4.column-count &gt; .grid,
  .grid .gxl-num-4.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gxl-num-5 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .gxl-num-5 &gt; .grid,
  .grid .gxl-num-5 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 20%;
    min-width: calc(20% - 10px);
  }
  .grid .gxl-num-5.column-count {
    display: block;
    column-count: 5;
  }
  .grid .gxl-num-5.column-count &gt; .grid,
  .grid .gxl-num-5.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gxl-num-6 {
    flex-grow: 0;
    flex-wrap: wrap;
  }
  .grid .gxl-num-6 &gt; .grid,
  .grid .gxl-num-6 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 16.66%;
    min-width: calc(16% - 10px);
  }
  .grid .gxl-num-6.column-count {
    display: block;
    column-count: 6;
  }
  .grid .gxl-num-6.column-count &gt; .grid,
  .grid .gxl-num-6.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gxl-grow-0 {
    flex-grow: 0;
  }
  .grid .gxl-grow-1 {
    flex-grow: 1;
  }
  .grid .gxl-grow-2 {
    flex-grow: 2;
  }
  .grid .gxl-grow-3 {
    flex-grow: 3;
  }
  .grid .gxl-grow-4 {
    flex-grow: 4;
  }
  .grid .gxl-grow-5 {
    flex-grow: 5;
  }
  .grid .gxl-grow-6 {
    flex-grow: 6;
  }
  .grid .gxl-visible {
    display: flex;
  }
  .grid .gxl-hidden {
    display: none;
  }
  .grid .html.gxl-num-1,
  .grid .text.gxl-num-1,
  .grid .bullets.gxl-num-1 {
    /*display: block;*/
    column-count: 1;
  }
  .grid .html.gxl-num-2,
  .grid .text.gxl-num-2,
  .grid .bullets.gxl-num-2 {
    /*display: block;*/
    column-count: 2;
  }
  .grid .html.gxl-num-3,
  .grid .text.gxl-num-3,
  .grid .bullets.gxl-num-3 {
    /*display: block;*/
    column-count: 3;
  }
  .grid .html.gxl-num-4,
  .grid .text.gxl-num-4,
  .grid .bullets.gxl-num-4 {
    /*display: block;*/
    column-count: 4;
  }
  .grid .html.gxl-num-5,
  .grid .text.gxl-num-5,
  .grid .bullets.gxl-num-5 {
    /*display: block;*/
    column-count: 5;
  }
  .grid .html.gxl-num-6,
  .grid .text.gxl-num-6,
  .grid .bullets.gxl-num-6 {
    /*display: block;*/
    column-count: 6;
  }
  .grid .space.gxl-num-1 {
    height: 10px;
  }
  .grid .space.gxl-num-2 {
    height: 20px;
  }
  .grid .space.gxl-num-3 {
    height: 40px;
  }
  .grid .space.gxl-num-4 {
    height: 60px;
  }
  .grid .space.gxl-num-5 {
    height: 80px;
  }
  .grid .space.gxl-num-6 {
    height: 100px;
  }
}
@media (max-width: 1200px) {
  .grid.glg-dir-row {
    flex-direction: row !important;
  }
  .grid.glg-dir-rrow {
    flex-direction: row-reverse !important;
  }
  .grid.glg-dir-col {
    flex-direction: column !important;
    flex-wrap: nowrap;
  }
  .grid.glg-dir-rcol {
    flex-direction: column-reverse !important;
    flex-wrap: nowrap;
  }
  .grid .glg-num-1 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .glg-num-1 &gt; .grid,
  .grid .glg-num-1 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 100%;
  }
  .grid .glg-num-1.column-count {
    display: block;
    column-count: 1;
  }
  .grid .glg-num-1.column-count &gt; .grid,
  .grid .glg-num-1.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .glg-num-2 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .glg-num-2 &gt; .grid,
  .grid .glg-num-2 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 50%;
    min-width: calc(50% - 10px);
  }
  .grid .glg-num-2.column-count {
    display: block;
    column-count: 2;
  }
  .grid .glg-num-2.column-count &gt; .grid,
  .grid .glg-num-2.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .glg-num-3 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .glg-num-3 &gt; .grid,
  .grid .glg-num-3 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 33.33%;
    min-width: calc(33% - 10px);
  }
  .grid .glg-num-3.column-count {
    display: block;
    column-count: 3;
  }
  .grid .glg-num-3.column-count &gt; .grid,
  .grid .glg-num-3.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .glg-num-4 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .glg-num-4 &gt; .grid,
  .grid .glg-num-4 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 25%;
    min-width: calc(25% - 10px);
  }
  .grid .glg-num-4.column-count {
    display: block;
    column-count: 4;
  }
  .grid .glg-num-4.column-count &gt; .grid,
  .grid .glg-num-4.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .glg-num-5 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .glg-num-5 &gt; .grid,
  .grid .glg-num-5 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 20%;
    min-width: calc(20% - 10px);
  }
  .grid .glg-num-5.column-count {
    display: block;
    column-count: 5;
  }
  .grid .glg-num-5.column-count &gt; .grid,
  .grid .glg-num-5.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .glg-num-6 {
    flex-grow: 0;
    flex-wrap: wrap;
  }
  .grid .glg-num-6 &gt; .grid,
  .grid .glg-num-6 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 16.66%;
    min-width: calc(16% - 10px);
  }
  .grid .glg-num-6.column-count {
    display: block;
    column-count: 6;
  }
  .grid .glg-num-6.column-count &gt; .grid,
  .grid .glg-num-6.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .glg-grow-0 {
    flex-grow: 0;
  }
  .grid .glg-grow-1 {
    flex-grow: 1;
  }
  .grid .glg-grow-2 {
    flex-grow: 2;
  }
  .grid .glg-grow-3 {
    flex-grow: 3;
  }
  .grid .glg-grow-4 {
    flex-grow: 4;
  }
  .grid .glg-grow-5 {
    flex-grow: 5;
  }
  .grid .glg-grow-6 {
    flex-grow: 6;
  }
  .grid .glg-visible {
    display: flex;
  }
  .grid .glg-hidden {
    display: none;
  }
  .grid .html.glg-num-1,
  .grid .text.glg-num-1,
  .grid .bullets.glg-num-1 {
    /*display: block;*/
    column-count: 1;
  }
  .grid .html.glg-num-2,
  .grid .text.glg-num-2,
  .grid .bullets.glg-num-2 {
    /*display: block;*/
    column-count: 2;
  }
  .grid .html.glg-num-3,
  .grid .text.glg-num-3,
  .grid .bullets.glg-num-3 {
    /*display: block;*/
    column-count: 3;
  }
  .grid .html.glg-num-4,
  .grid .text.glg-num-4,
  .grid .bullets.glg-num-4 {
    /*display: block;*/
    column-count: 4;
  }
  .grid .html.glg-num-5,
  .grid .text.glg-num-5,
  .grid .bullets.glg-num-5 {
    /*display: block;*/
    column-count: 5;
  }
  .grid .html.glg-num-6,
  .grid .text.glg-num-6,
  .grid .bullets.glg-num-6 {
    /*display: block;*/
    column-count: 6;
  }
  .grid .space.glg-num-1 {
    height: 10px;
  }
  .grid .space.glg-num-2 {
    height: 20px;
  }
  .grid .space.glg-num-3 {
    height: 40px;
  }
  .grid .space.glg-num-4 {
    height: 60px;
  }
  .grid .space.glg-num-5 {
    height: 80px;
  }
  .grid .space.glg-num-6 {
    height: 100px;
  }
}
@media (max-width: 992px) {
  .grid.gmd-dir-row {
    flex-direction: row !important;
  }
  .grid.gmd-dir-rrow {
    flex-direction: row-reverse !important;
  }
  .grid.gmd-dir-col {
    flex-direction: column !important;
    flex-wrap: nowrap;
  }
  .grid.gmd-dir-rcol {
    flex-direction: column-reverse !important;
    flex-wrap: nowrap;
  }
  .grid .gmd-num-1 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .gmd-num-1 &gt; .grid,
  .grid .gmd-num-1 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 100%;
  }
  .grid .gmd-num-1.column-count {
    display: block;
    column-count: 1;
  }
  .grid .gmd-num-1.column-count &gt; .grid,
  .grid .gmd-num-1.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gmd-num-2 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .gmd-num-2 &gt; .grid,
  .grid .gmd-num-2 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 50%;
    min-width: calc(50% - 10px);
  }
  .grid .gmd-num-2.column-count {
    display: block;
    column-count: 2;
  }
  .grid .gmd-num-2.column-count &gt; .grid,
  .grid .gmd-num-2.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gmd-num-3 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .gmd-num-3 &gt; .grid,
  .grid .gmd-num-3 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 33.33%;
    min-width: calc(33% - 10px);
  }
  .grid .gmd-num-3.column-count {
    display: block;
    column-count: 3;
  }
  .grid .gmd-num-3.column-count &gt; .grid,
  .grid .gmd-num-3.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gmd-num-4 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .gmd-num-4 &gt; .grid,
  .grid .gmd-num-4 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 25%;
    min-width: calc(25% - 10px);
  }
  .grid .gmd-num-4.column-count {
    display: block;
    column-count: 4;
  }
  .grid .gmd-num-4.column-count &gt; .grid,
  .grid .gmd-num-4.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gmd-num-5 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .gmd-num-5 &gt; .grid,
  .grid .gmd-num-5 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 20%;
    min-width: calc(20% - 10px);
  }
  .grid .gmd-num-5.column-count {
    display: block;
    column-count: 5;
  }
  .grid .gmd-num-5.column-count &gt; .grid,
  .grid .gmd-num-5.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gmd-num-6 {
    flex-grow: 0;
    flex-wrap: wrap;
  }
  .grid .gmd-num-6 &gt; .grid,
  .grid .gmd-num-6 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 16.66%;
    min-width: calc(16% - 10px);
  }
  .grid .gmd-num-6.column-count {
    display: block;
    column-count: 6;
  }
  .grid .gmd-num-6.column-count &gt; .grid,
  .grid .gmd-num-6.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gmd-grow-0 {
    flex-grow: 0;
  }
  .grid .gmd-grow-1 {
    flex-grow: 1;
  }
  .grid .gmd-grow-2 {
    flex-grow: 2;
  }
  .grid .gmd-grow-3 {
    flex-grow: 3;
  }
  .grid .gmd-grow-4 {
    flex-grow: 4;
  }
  .grid .gmd-grow-5 {
    flex-grow: 5;
  }
  .grid .gmd-grow-6 {
    flex-grow: 6;
  }
  .grid .gmd-visible {
    display: flex;
  }
  .grid .gmd-hidden {
    display: none;
  }
  .grid .html.gmd-num-1,
  .grid .text.gmd-num-1,
  .grid .bullets.gmd-num-1 {
    /*display: block;*/
    column-count: 1;
  }
  .grid .html.gmd-num-2,
  .grid .text.gmd-num-2,
  .grid .bullets.gmd-num-2 {
    /*display: block;*/
    column-count: 2;
  }
  .grid .html.gmd-num-3,
  .grid .text.gmd-num-3,
  .grid .bullets.gmd-num-3 {
    /*display: block;*/
    column-count: 3;
  }
  .grid .html.gmd-num-4,
  .grid .text.gmd-num-4,
  .grid .bullets.gmd-num-4 {
    /*display: block;*/
    column-count: 4;
  }
  .grid .html.gmd-num-5,
  .grid .text.gmd-num-5,
  .grid .bullets.gmd-num-5 {
    /*display: block;*/
    column-count: 5;
  }
  .grid .html.gmd-num-6,
  .grid .text.gmd-num-6,
  .grid .bullets.gmd-num-6 {
    /*display: block;*/
    column-count: 6;
  }
  .grid .space.gmd-num-1 {
    height: 10px;
  }
  .grid .space.gmd-num-2 {
    height: 20px;
  }
  .grid .space.gmd-num-3 {
    height: 40px;
  }
  .grid .space.gmd-num-4 {
    height: 60px;
  }
  .grid .space.gmd-num-5 {
    height: 80px;
  }
  .grid .space.gmd-num-6 {
    height: 100px;
  }
}
@media (max-width: 768px) {
  .grid.gsm-dir-row {
    flex-direction: row !important;
  }
  .grid.gsm-dir-rrow {
    flex-direction: row-reverse !important;
  }
  .grid.gsm-dir-col {
    flex-direction: column !important;
    flex-wrap: nowrap;
  }
  .grid.gsm-dir-rcol {
    flex-direction: column-reverse !important;
    flex-wrap: nowrap;
  }
  .grid .gsm-num-1 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .gsm-num-1 &gt; .grid,
  .grid .gsm-num-1 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 100%;
  }
  .grid .gsm-num-1.column-count {
    display: block;
    column-count: 1;
  }
  .grid .gsm-num-1.column-count &gt; .grid,
  .grid .gsm-num-1.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gsm-num-2 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .gsm-num-2 &gt; .grid,
  .grid .gsm-num-2 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 50%;
    min-width: calc(50% - 10px);
  }
  .grid .gsm-num-2.column-count {
    display: block;
    column-count: 2;
  }
  .grid .gsm-num-2.column-count &gt; .grid,
  .grid .gsm-num-2.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gsm-num-3 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .gsm-num-3 &gt; .grid,
  .grid .gsm-num-3 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 33.33%;
    min-width: calc(33% - 10px);
  }
  .grid .gsm-num-3.column-count {
    display: block;
    column-count: 3;
  }
  .grid .gsm-num-3.column-count &gt; .grid,
  .grid .gsm-num-3.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gsm-num-4 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .gsm-num-4 &gt; .grid,
  .grid .gsm-num-4 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 25%;
    min-width: calc(25% - 10px);
  }
  .grid .gsm-num-4.column-count {
    display: block;
    column-count: 4;
  }
  .grid .gsm-num-4.column-count &gt; .grid,
  .grid .gsm-num-4.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gsm-num-5 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .gsm-num-5 &gt; .grid,
  .grid .gsm-num-5 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 20%;
    min-width: calc(20% - 10px);
  }
  .grid .gsm-num-5.column-count {
    display: block;
    column-count: 5;
  }
  .grid .gsm-num-5.column-count &gt; .grid,
  .grid .gsm-num-5.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gsm-num-6 {
    flex-grow: 0;
    flex-wrap: wrap;
  }
  .grid .gsm-num-6 &gt; .grid,
  .grid .gsm-num-6 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 16.66%;
    min-width: calc(16% - 10px);
  }
  .grid .gsm-num-6.column-count {
    display: block;
    column-count: 6;
  }
  .grid .gsm-num-6.column-count &gt; .grid,
  .grid .gsm-num-6.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gsm-grow-0 {
    flex-grow: 0;
  }
  .grid .gsm-grow-1 {
    flex-grow: 1;
  }
  .grid .gsm-grow-2 {
    flex-grow: 2;
  }
  .grid .gsm-grow-3 {
    flex-grow: 3;
  }
  .grid .gsm-grow-4 {
    flex-grow: 4;
  }
  .grid .gsm-grow-5 {
    flex-grow: 5;
  }
  .grid .gsm-grow-6 {
    flex-grow: 6;
  }
  .grid .gsm-visible {
    display: flex;
  }
  .grid .gsm-hidden {
    display: none;
  }
  .grid .html.gsm-num-1,
  .grid .text.gsm-num-1,
  .grid .bullets.gsm-num-1 {
    /*display: block;*/
    column-count: 1;
  }
  .grid .html.gsm-num-2,
  .grid .text.gsm-num-2,
  .grid .bullets.gsm-num-2 {
    /*display: block;*/
    column-count: 2;
  }
  .grid .html.gsm-num-3,
  .grid .text.gsm-num-3,
  .grid .bullets.gsm-num-3 {
    /*display: block;*/
    column-count: 3;
  }
  .grid .html.gsm-num-4,
  .grid .text.gsm-num-4,
  .grid .bullets.gsm-num-4 {
    /*display: block;*/
    column-count: 4;
  }
  .grid .html.gsm-num-5,
  .grid .text.gsm-num-5,
  .grid .bullets.gsm-num-5 {
    /*display: block;*/
    column-count: 5;
  }
  .grid .html.gsm-num-6,
  .grid .text.gsm-num-6,
  .grid .bullets.gsm-num-6 {
    /*display: block;*/
    column-count: 6;
  }
  .grid .space.gsm-num-1 {
    height: 10px;
  }
  .grid .space.gsm-num-2 {
    height: 20px;
  }
  .grid .space.gsm-num-3 {
    height: 40px;
  }
  .grid .space.gsm-num-4 {
    height: 60px;
  }
  .grid .space.gsm-num-5 {
    height: 80px;
  }
  .grid .space.gsm-num-6 {
    height: 100px;
  }
}
@media (max-width: 576px) {
  .grid.gxs-dir-row {
    flex-direction: row !important;
  }
  .grid.gxs-dir-rrow {
    flex-direction: row-reverse !important;
  }
  .grid.gxs-dir-col {
    flex-direction: column !important;
    flex-wrap: nowrap;
  }
  .grid.gxs-dir-rcol {
    flex-direction: column-reverse !important;
    flex-wrap: nowrap;
  }
  .grid .gxs-num-1 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .gxs-num-1 &gt; .grid,
  .grid .gxs-num-1 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 100%;
  }
  .grid .gxs-num-1.column-count {
    display: block;
    column-count: 1;
  }
  .grid .gxs-num-1.column-count &gt; .grid,
  .grid .gxs-num-1.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gxs-num-2 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .gxs-num-2 &gt; .grid,
  .grid .gxs-num-2 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 50%;
    min-width: calc(50% - 10px);
  }
  .grid .gxs-num-2.column-count {
    display: block;
    column-count: 2;
  }
  .grid .gxs-num-2.column-count &gt; .grid,
  .grid .gxs-num-2.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gxs-num-3 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .gxs-num-3 &gt; .grid,
  .grid .gxs-num-3 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 33.33%;
    min-width: calc(33% - 10px);
  }
  .grid .gxs-num-3.column-count {
    display: block;
    column-count: 3;
  }
  .grid .gxs-num-3.column-count &gt; .grid,
  .grid .gxs-num-3.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gxs-num-4 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .gxs-num-4 &gt; .grid,
  .grid .gxs-num-4 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 25%;
    min-width: calc(25% - 10px);
  }
  .grid .gxs-num-4.column-count {
    display: block;
    column-count: 4;
  }
  .grid .gxs-num-4.column-count &gt; .grid,
  .grid .gxs-num-4.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gxs-num-5 {
    flex-grow: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .grid .gxs-num-5 &gt; .grid,
  .grid .gxs-num-5 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 20%;
    min-width: calc(20% - 10px);
  }
  .grid .gxs-num-5.column-count {
    display: block;
    column-count: 5;
  }
  .grid .gxs-num-5.column-count &gt; .grid,
  .grid .gxs-num-5.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gxs-num-6 {
    flex-grow: 0;
    flex-wrap: wrap;
  }
  .grid .gxs-num-6 &gt; .grid,
  .grid .gxs-num-6 &gt; .grid-row {
    box-sizing: border-box;
    flex-basis: 16.66%;
    min-width: calc(16% - 10px);
  }
  .grid .gxs-num-6.column-count {
    display: block;
    column-count: 6;
  }
  .grid .gxs-num-6.column-count &gt; .grid,
  .grid .gxs-num-6.column-count &gt; .grid-row {
    break-inside: avoid;
    flex: 0 0 100%;
  }
  .grid .gxs-grow-0 {
    flex-grow: 0;
  }
  .grid .gxs-grow-1 {
    flex-grow: 1;
  }
  .grid .gxs-grow-2 {
    flex-grow: 2;
  }
  .grid .gxs-grow-3 {
    flex-grow: 3;
  }
  .grid .gxs-grow-4 {
    flex-grow: 4;
  }
  .grid .gxs-grow-5 {
    flex-grow: 5;
  }
  .grid .gxs-grow-6 {
    flex-grow: 6;
  }
  .grid .gxs-visible {
    display: flex;
  }
  .grid .gxs-hidden {
    display: none;
  }
  .grid .html.gxs-num-1,
  .grid .text.gxs-num-1,
  .grid .bullets.gxs-num-1 {
    /*display: block;*/
    column-count: 1;
  }
  .grid .html.gxs-num-2,
  .grid .text.gxs-num-2,
  .grid .bullets.gxs-num-2 {
    /*display: block;*/
    column-count: 2;
  }
  .grid .html.gxs-num-3,
  .grid .text.gxs-num-3,
  .grid .bullets.gxs-num-3 {
    /*display: block;*/
    column-count: 3;
  }
  .grid .html.gxs-num-4,
  .grid .text.gxs-num-4,
  .grid .bullets.gxs-num-4 {
    /*display: block;*/
    column-count: 4;
  }
  .grid .html.gxs-num-5,
  .grid .text.gxs-num-5,
  .grid .bullets.gxs-num-5 {
    /*display: block;*/
    column-count: 5;
  }
  .grid .html.gxs-num-6,
  .grid .text.gxs-num-6,
  .grid .bullets.gxs-num-6 {
    /*display: block;*/
    column-count: 6;
  }
  .grid .space.gxs-num-1 {
    height: 10px;
  }
  .grid .space.gxs-num-2 {
    height: 20px;
  }
  .grid .space.gxs-num-3 {
    height: 40px;
  }
  .grid .space.gxs-num-4 {
    height: 60px;
  }
  .grid .space.gxs-num-5 {
    height: 80px;
  }
  .grid .space.gxs-num-6 {
    height: 100px;
  }
}
.no-scroll {
  overflow: hidden;
}
.cookie-consent .reopen-cookie-consent {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #013461;
  color: #f0f0f0;
  text-decoration: none;
  margin-top: 5px;
  min-width: 250px;
  max-width: 450px;
}
@media (max-width: 991px) {
  .cookie-consent .reopen-cookie-consent {
    height: 40px;
  }
}
@media (min-width: 992px) {
  .cookie-consent .reopen-cookie-consent {
    height: 50px;
  }
}
.cookie-consent table {
  margin: 0;
}
.cookie-consent table tr th {
  border-top: 1px solid grey;
}
.cookie-consent table tr td,
.cookie-consent table tr th {
  padding: 6px;
  border-right: 1px solid grey;
  border-bottom: 1px solid grey;
}
.cookie-consent table tr td:first-child,
.cookie-consent table tr th:first-child {
  border-left: 1px solid grey;
}
.cookie-law-wrapper {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 5123456789;
}
.cookie-law-wrapper .cookie-law {
  background: #f0f0f0;
  padding: 5px 15px 20px;
  border-top: 1px solid #013461;
  font-size: 13px;
  line-height: 150%;
  display: flex;
}
@media (max-width: 991px) {
  .cookie-law-wrapper .cookie-law {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .cookie-law-wrapper .cookie-law {
    flex-direction: row;
  }
}
.cookie-law-wrapper .cookie-law div.consent-info .close-cookie-modal {
  float: right;
  font-size: 28px;
  text-decoration: none;
  color: red;
}
@media (max-width: 991px) {
  .cookie-law-wrapper .cookie-law div.consent-info {
    width: 100%;
    padding: 0 10px;
  }
}
@media (min-width: 992px) {
  .cookie-law-wrapper .cookie-law div.consent-info {
    width: 80%;
    padding: 0 45px;
  }
}
.cookie-law-wrapper .cookie-law div.consent-info label {
  line-height: 150%;
}
.cookie-law-wrapper .cookie-law div.consent-info label p {
  font-weight: normal;
}
.cookie-law-wrapper .cookie-law div.consent-info label strong {
  color: black;
}
.cookie-law-wrapper .cookie-law div.consent-buttons {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.cookie-law-wrapper .cookie-law div.consent-buttons .main-buttons {
  display: flex;
  flex-direction: column-reverse;
}
.cookie-law-wrapper .cookie-law div.consent-buttons .main-buttons .close {
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}
@media (min-width: 862px) {
  .cookie-law-wrapper .cookie-law div.consent-buttons .main-buttons {
    flex-direction: row;
    justify-content: space-around;
    gap: 14px;
    width: 515px;
  }
}
.cookie-law-wrapper .cookie-law p {
  color: black;
  font-size: 14px;
}
.cookie-law-wrapper .cookie-law p strong {
  font-size: 30px;
  color: black;
}
@media (max-width: 991px) {
  .cookie-law-wrapper .cookie-law p strong {
    line-height: 130%;
  }
}
@media (min-width: 992px) {
  .cookie-law-wrapper .cookie-law p strong {
    line-height: 250%;
  }
}
.cookie-law-wrapper .cookie-law .more,
.cookie-law-wrapper .cookie-law .close {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #013461;
  color: #f0f0f0;
  text-decoration: none;
  margin-top: 5px;
  padding-top: 8px;
  padding-bottom: 8px;
}
@media (min-width: 862px) {
  .cookie-law-wrapper .cookie-law .more,
  .cookie-law-wrapper .cookie-law .close {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .cookie-law-wrapper .cookie-law .more,
  .cookie-law-wrapper .cookie-law .close {
    padding-top: 13px;
    padding-bottom: 13px;
  }
}
.cookie-law-wrapper .cookie-law .more.green,
.cookie-law-wrapper .cookie-law .close.green {
  background: #176d34;
}
.cookie-law-wrapper .cookie-law .more.red,
.cookie-law-wrapper .cookie-law .close.red {
  background: #ff2828;
}
@media (max-width: 630px) {
  .cookie-law-wrapper .cookie-law .more.red span,
  .cookie-law-wrapper .cookie-law .close.red span {
    line-height: 110%;
  }
}
.cookie-law-wrapper .cookie-law .more {
  background: transparent;
  color: #013461;
  text-decoration: underline;
}
.cookie-law-wrapper.floating {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.77);
}
.cookie-law-wrapper.floating .cookie-law {
  position: fixed;
  border: 1px solid;
  border-radius: 15px;
  padding: 5px 30px 20px 30px;
  flex-direction: column;
  overflow-y: scroll;
}
@media (max-width: 520px) {
  .cookie-law-wrapper.floating .cookie-law {
    top: 5%;
    left: 10%;
    right: 10%;
    bottom: 5%;
  }
}
@media (min-width: 521px) and (max-width: 991px) {
  .cookie-law-wrapper.floating .cookie-law {
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
  }
}
@media (min-width: 992px) {
  .cookie-law-wrapper.floating .cookie-law {
    top: 15%;
    left: 20%;
    right: 20%;
    bottom: 15%;
  }
}
@media (min-width: 1200px) {
  .cookie-law-wrapper.floating .cookie-law {
    position: revert;
    width: 900px;
    max-height: calc(100vh - 160px);
    margin: 90px auto 0 auto;
  }
}
.cookie-law-wrapper.floating .cookie-law div.consent-info {
  width: 100%;
  margin-top: 28px;
  padding: 0;
}
.cookie-law-wrapper.floating .cookie-law div.consent-info .close.submit {
  max-width: 250px;
}
.cookie-law-wrapper.floating .cookie-law div.consent-buttons {
  align-items: center;
}
@media (max-width: 470px) {
  .cookie-law-wrapper.floating .cookie-law {
    font-size: 17px;
  }
  .cookie-law-wrapper.floating .cookie-law p {
    font-size: 15px;
  }
  .cookie-law-wrapper.floating .cookie-law p strong {
    font-size: 22px;
  }
  .cookie-law-wrapper.floating .cookie-law div.consent-buttons {
    margin: 38px 5% 0 5%;
  }
  .cookie-law-wrapper.floating .cookie-law div.consent-buttons .close.green,
  .cookie-law-wrapper.floating .cookie-law div.consent-buttons .close.red {
    margin-top: 7px;
  }
}
@media (min-width: 471px) {
  .cookie-law-wrapper.floating .cookie-law {
    font-size: 17px;
  }
  .cookie-law-wrapper.floating .cookie-law div.consent-buttons {
    margin: 38px 10% 0 10%;
  }
  .cookie-law-wrapper.floating .cookie-law div.consent-buttons .close.green,
  .cookie-law-wrapper.floating .cookie-law div.consent-buttons .close.red {
    margin-top: 12px;
  }
  .cookie-law-wrapper.floating .cookie-law p {
    font-size: 17px;
  }
}
/** VARIABLES
===================================*/
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.bx-wrapper img {
  max-width: 100%;
  display: block;
}
.bxslider {
  margin: 0;
  padding: 0;
  /*fix flickering when used background-image instead of &lt;img&gt; (on Chrome)*/
  -webkit-perspective: 1000;
}
ul.bxslider {
  list-style: none;
}
.bx-viewport {
  /* fix other elements on the page moving (in Chrome) */
  -webkit-transform: translateZ(0);
}
/** THEME
===================================*/
.bx-wrapper {
  -moz-box-shadow: 0 0 5px #ccc;
  -webkit-box-shadow: 0 0 5px #ccc;
  box-shadow: 0 0 5px #ccc;
  border: 5px solid #fff;
  background: #fff;
}
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -30px;
  width: 100%;
}
/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url('../components/custom/bxslider-4/dist/images/bx_loader.gif') center center no-repeat #ffffff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}
/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: 0.85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: #000;
}
.bx-wrapper .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  vertical-align: bottom;
  *zoom: 1;
  *display: inline;
}
.bx-wrapper .bx-pager-item {
  font-size: 0;
  line-height: 0;
}
/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
  left: 10px;
  background: url('../components/custom/bxslider-4/dist/images/controls.png') no-repeat 0 -32px;
}
.bx-wrapper .bx-prev:hover,
.bx-wrapper .bx-prev:focus {
  background-position: 0 0;
}
.bx-wrapper .bx-next {
  right: 10px;
  background: url('../components/custom/bxslider-4/dist/images/controls.png') no-repeat -43px -32px;
}
.bx-wrapper .bx-next:hover,
.bx-wrapper .bx-next:focus {
  background-position: -43px 0;
}
.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}
.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}
/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center;
}
.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url('../components/custom/bxslider-4/dist/images/controls.png') -86px -11px no-repeat;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:focus {
  background-position: -86px 0;
}
.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url('../components/custom/bxslider-4/dist/images/controls.png') -86px -44px no-repeat;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:focus {
  background-position: -86px -33px;
}
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}
/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}
.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: 0.85em;
  padding: 10px;
}
.bx-wrapper {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  left: 0;
  background: transparent;
  margin: 0 auto;
}
.bx-wrapper .bx-loading {
  z-index: 450;
}
.bx-wrapper .bx-controls-direction a {
  z-index: 500;
}
.bx-wrapper img {
  display: inline-block;
}
.bx-wrapper .bxslider &gt; li {
  left: 0;
}
body {
  font-size: 16px;
}
body,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
table {
  margin: auto;
}
@media print {
  @page {
    size: 330mm 427mm;
    margin: 14mm;
  }
  a[href]:after {
    content: none !important;
  }
  html,
  body {
    width: 100%;
  }
  html .container,
  body .container {
    width: 1200px;
  }
  .col-print-full,
  .col-print-half,
  .col-print-third {
    display: block;
    float: left;
  }
  .col-print-full {
    width: 100% !important;
  }
  .col-print-half {
    width: 50% !important;
  }
  .col-print-third {
    width: 33.33333333% !important;
  }
  .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 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
}
.col-xs-five,
.col-sm-five,
.col-md-five,
.col-lg-five,
.col-xs-ten,
.col-sm-ten,
.col-md-ten,
.col-lg-ten {
  float: left;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 768px) {
  .xs-pull-left {
    float: left !important;
  }
  .xs-pull-right {
    float: right !important;
  }
  .col-xs-five {
    width: 20% !important;
  }
  .col-xs-ten {
    width: 10% !important;
  }
}
@media (min-width: 768px) {
  .sm-pull-left {
    float: left !important;
  }
  .sm-pull-right {
    float: right !important;
  }
  .col-sm-five {
    width: 20% !important;
  }
  .col-sm-ten {
    width: 10% !important;
  }
}
@media (min-width: 992px) {
  .md-pull-left {
    float: left !important;
  }
  .md-pull-right {
    float: right !important;
  }
  .col-md-five {
    width: 20% !important;
  }
  .col-md-ten {
    width: 10% !important;
  }
}
@media (min-width: 1200px) {
  .lg-pull-left {
    float: left !important;
  }
  .lg-pull-right {
    float: right !important;
  }
  .col-lg-five {
    width: 20% !important;
  }
  .col-lg-ten {
    width: 10% !important;
  }
}
html.js .jshidden {
  display: none;
}
#tracy-debug {
  z-index: 9999;
}
#ajax-spinner {
  margin: 15px 0 0 15px;
  padding: 13px;
  background: white url("../artcms/images/spinner.gif") no-repeat 50% 50%;
  font-size: 0;
  z-index: 123456;
  display: none;
}
@media print {
  #ajax-spinner {
    display: none;
  }
}
a[href^="error:"] {
  background: red;
  color: white;
}
form .error {
  color: #D00;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 10px;
}
.flexible {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.flexible &gt; * {
  width: 100%;
  height: 100%;
}
.dragme {
  cursor: move !important;
}
.image-left {
  display: block;
  margin: 15px auto;
  text-align: center;
  max-width: 100%;
  height: auto !important;
}
@media (min-width: 768px) {
  .image-left {
    float: left;
    margin: 25px 25px 25px 0;
  }
}
.image-right {
  display: block;
  margin: 15px auto;
  text-align: center;
  max-width: 100%;
  height: auto !important;
}
@media (min-width: 768px) {
  .image-right {
    float: left;
    margin: 25px 25px 25px 0;
  }
}
@media (min-width: 768px) {
  .image-right {
    float: left;
    margin: 25px 25px 25px 0;
  }
}
@media (min-width: 768px) {
  .image-right {
    float: right;
    margin: 25px 0 25px 25px;
  }
}
.max-width,
.max-width * {
  max-width: 100%;
}
.hide {
  display: none;
}
.disabled {
  color: #999;
}
.modal-backdrop.fade.in {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.has-error {
  border: 1px solid red !important;
}
.no-error {
  border: 1px solid green !important;
  background: url("../project/images/ok.png") 99% 50% no-repeat !important;
  background-size: 23px !important;
  padding-right: 52px !important;
}
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn &gt; .caret,
  .dropup &gt; .btn &gt; .caret {
    border-top-color: #000 !important;
  }
  .label {
    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 #ddd !important;
  }
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  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;
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
mark,
.mark {
  background-color: #fcf8e3;
  padding: 0.2em;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777777;
}
.text-primary {
  color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline &gt; li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .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 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .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 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .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 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  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;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover &gt; .arrow,
.popover &gt; .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover &gt; .arrow {
  border-width: 11px;
}
.popover &gt; .arrow:after {
  border-width: 10px;
  content: "";
}
.popover.top &gt; .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover.top &gt; .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}
.popover.right &gt; .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right &gt; .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}
.popover.bottom &gt; .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.popover.bottom &gt; .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left &gt; .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left &gt; .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.clearfix:before,
.clearfix:after,
.nav:before,
.nav:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}
.clearfix:after,
.nav:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
.col-ms-1,
.col-ms-2,
.col-ms-3,
.col-ms-4,
.col-ms-5,
.col-ms-6,
.col-ms-7,
.col-ms-8,
.col-ms-9,
.col-ms-10,
.col-ms-11,
.col-ms-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 480px) and (max-width: 767px) {
  .col-ms-1,
  .col-ms-2,
  .col-ms-3,
  .col-ms-4,
  .col-ms-5,
  .col-ms-6,
  .col-ms-7,
  .col-ms-8,
  .col-ms-9,
  .col-ms-10,
  .col-ms-11 {
    float: left;
  }
  .col-ms-1 {
    width: 8.33333%;
  }
  .col-ms-2 {
    width: 16.66667%;
  }
  .col-ms-3 {
    width: 25%;
  }
  .col-ms-4 {
    width: 33.33333%;
  }
  .col-ms-5 {
    width: 41.66667%;
  }
  .col-ms-6 {
    width: 50%;
  }
  .col-ms-7 {
    width: 58.33333%;
  }
  .col-ms-8 {
    width: 66.66667%;
  }
  .col-ms-9 {
    width: 75%;
  }
  .col-ms-10 {
    width: 83.33333%;
  }
  .col-ms-11 {
    width: 91.66667%;
  }
  .col-ms-12 {
    width: 100%;
  }
  .col-ms-push-1 {
    left: 8.33333%;
  }
  .col-ms-push-2 {
    left: 16.66667%;
  }
  .col-ms-push-3 {
    left: 25%;
  }
  .col-ms-push-4 {
    left: 33.33333%;
  }
  .col-ms-push-5 {
    left: 41.66667%;
  }
  .col-ms-push-6 {
    left: 50%;
  }
  .col-ms-push-7 {
    left: 58.33333%;
  }
  .col-ms-push-8 {
    left: 66.66667%;
  }
  .col-ms-push-9 {
    left: 75%;
  }
  .col-ms-push-10 {
    left: 83.33333%;
  }
  .col-ms-push-11 {
    left: 91.66667%;
  }
  .col-ms-pull-1 {
    right: 8.33333%;
  }
  .col-ms-pull-2 {
    right: 16.66667%;
  }
  .col-ms-pull-3 {
    right: 25%;
  }
  .col-ms-pull-4 {
    right: 33.33333%;
  }
  .col-ms-pull-5 {
    right: 41.66667%;
  }
  .col-ms-pull-6 {
    right: 50%;
  }
  .col-ms-pull-7 {
    right: 58.33333%;
  }
  .col-ms-pull-8 {
    right: 66.66667%;
  }
  .col-ms-pull-9 {
    right: 75%;
  }
  .col-ms-pull-10 {
    right: 83.33333%;
  }
  .col-ms-pull-11 {
    right: 91.66667%;
  }
  .col-ms-offset-1 {
    margin-left: 8.33333%;
  }
  .col-ms-offset-2 {
    margin-left: 16.66667%;
  }
  .col-ms-offset-3 {
    margin-left: 25%;
  }
  .col-ms-offset-4 {
    margin-left: 33.33333%;
  }
  .col-ms-offset-5 {
    margin-left: 41.66667%;
  }
  .col-ms-offset-6 {
    margin-left: 50%;
  }
  .col-ms-offset-7 {
    margin-left: 58.33333%;
  }
  .col-ms-offset-8 {
    margin-left: 66.66667%;
  }
  .col-ms-offset-9 {
    margin-left: 75%;
  }
  .col-ms-offset-10 {
    margin-left: 83.33333%;
  }
  .col-ms-offset-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .container {
    max-width: 748px;
  }
  .form-horizontal .form-group .control-label {
    text-align: right;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .hidden-ms {
    display: none !important;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .visible-ms {
    display: block !important;
  }
  table.visible-ms {
    display: table !important;
  }
  tr.visible-ms {
    display: table-row !important;
  }
  th.visible-ms,
  td.visible-ms {
    display: table-cell !important;
  }
}
header .header-box .header-phone {
  display: flex;
}
header .header-box .tools {
  position: relative;
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  gap: 10px 5px;
  justify-content: flex-end;
}
header .header-box .tools .header-phone {
  display: none;
}
header .header-box .tools .header-search {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  flex: 0 0 100%;
  column-gap: 5px;
}
header .header-box .tools .header-search .fast-message-button {
  flex: 1 0 180px;
}
header .header-box .tools .header-search .search-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 3px;
  color: white;
  font-size: 18px;
  cursor: pointer;
  background: #0b4d94;
  /* Old browsers */
  background: -moz-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0b4d94), color-stop(100%, #10357f));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #0b4d94 0%, #10357f 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0b4d94', endColorstr='#10357f', GradientType=0);
  /* IE6-9 */
}
header .header-box .tools .header-search .search-icon:hover {
  color: #f6bb3e;
}
header .header-box .tools .header-search .search-form {
  z-index: 1000;
  position: absolute;
  top: 45px;
  right: 0;
  display: none;
  padding: 5px;
  border-radius: 3px;
  background-color: #f6bb3e;
  flex-direction: row;
  align-items: stretch;
  height: 40px;
}
header .header-box .tools .header-search .search-form .search-input {
  display: flex;
  background-color: white;
  border-radius: 3px 0 0 3px;
  padding: 5px;
  font-size: 14px;
  border: none;
}
header .header-box .tools .header-search .search-form .search-input:focus {
  outline: none;
}
header .header-box .tools .header-search .search-form .search-button {
  display: flex;
  border: none;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(to bottom, #2b7bd6 0%, #2054a0 100%);
  color: white;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
}
header .header-box .tools.open .search-form {
  display: flex;
}
header .header-box .tools.open .search-icon .glyphicon.glyphicon-search:before {
  content: "\e014";
}
@media (max-width: 768px) {
  header .header-box .header-phone {
    display: none;
  }
  header .header-box .tools {
    width: 100%;
    flex-wrap: wrap;
    margin-top: 0;
  }
  header .header-box .tools .header-phone {
    display: flex;
    flex-wrap: nowrap;
    flex: 0 0 250px;
  }
  header .header-box .tools .header-search {
    flex: 1 0 230px;
    justify-content: flex-end;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  header .header-box .tools .header-search .search-form {
    position: relative;
    width: 100%;
    top: 0;
  }
  header .header-box .tools .header-search .search-form .search-input {
    flex: 1 0 50%;
  }
  header .header-box .tools .header-search .fast-message-button {
    flex: 0 0 180px;
  }
}
.search-results .row {
  display: flex;
  justify-content: stretch;
  flex-wrap: wrap;
}
.search-results .row .col-sm-6 {
  display: flex;
}
.search-results .reference-box {
  display: flex;
  flex-direction: column;
}
.search-results .reference-box .reference-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.search-results .reference-box .reference-text p {
  display: flex;
  flex-grow: 1;
}
.search-results .reference-box .reference-text .button-reference {
  align-self: flex-end;
}
.search-results .row .news {
  padding: 0 15px;
}
.search-results .row .news div.pull-right.col-lg-7 {
  margin: 0;
}
.search-results .pages ol {
  list-style: none;
  padding: 0;
}
.rounded-corners {
  border-radius: 3px;
}
.alert-success {
  color: #000;
  background-color: #f9c63f;
  border-color: #d6e9c6;
}
.alert {
  padding: 13px;
  font-size: 15pt;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.blue-gradient {
  background: #0b4d94;
  /* Old browsers */
  background: -moz-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0b4d94), color-stop(100%, #10357f));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #0b4d94 0%, #10357f 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0b4d94', endColorstr='#10357f', GradientType=0);
  /* IE6-9 */
}
.yellow-gradient {
  background: #fbcf40;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbcf40), color-stop(100%, #f6bb3e));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #fbcf40 0%, #f6bb3e 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbcf40', endColorstr='#f6bb3e', GradientType=0);
  /* IE6-9 */
}
.silver-gradient {
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 2%, #ebedf0 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(2%, #ffffff), color-stop(100%, #ebedf0));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ffffff 2%, #ebedf0 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ffffff 2%, #ebedf0 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ffffff 2%, #ebedf0 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #ffffff 2%, #ebedf0 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ebedf0', GradientType=0);
  /* IE6-9 */
}
body {
  font-size: 14px;
  margin: 0 10px;
  background: url("./images/background.jpg") #0e337d no-repeat top center;
}
body .button-yellow {
  background: #fbcf40;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbcf40), color-stop(100%, #f6bb3e));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #fbcf40 0%, #f6bb3e 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbcf40', endColorstr='#f6bb3e', GradientType=0);
  /* IE6-9 */
  border-radius: 3px;
  color: #0e337d;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  padding: 0 10px;
  height: 33px;
  line-height: 33px;
  z-index: 20;
}
body .button-yellow .arrow-icon {
  background: url("./images/arrow-icon.png") no-repeat right center;
  display: block;
  width: 35px;
  height: 33px;
  z-index: 20;
  float: right;
}
body .button-silver {
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 2%, #ebedf0 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(2%, #ffffff), color-stop(100%, #ebedf0));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ffffff 2%, #ebedf0 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ffffff 2%, #ebedf0 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ffffff 2%, #ebedf0 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #ffffff 2%, #ebedf0 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ebedf0', GradientType=0);
  /* IE6-9 */
  border-radius: 3px;
  color: #707070 !important;
  font-weight: bold;
  padding: 0 8px;
  height: 33px;
  line-height: 33px;
  border: 1px solid #e0e3e5;
  z-index: 10;
}
body .button-silver .arrow-icon {
  background: url("./images/news-arrow.png") no-repeat right center;
  display: block;
  width: 35px;
  height: 33px;
  z-index: 20;
  float: right;
}
body .button-silver .arrow-icon-simple {
  background: url("./images/arrow-simple.png") no-repeat right;
  display: block;
  width: 25px;
  height: 33px;
  z-index: 20;
  float: right;
}
h1,
h2,
h3 {
  color: #0e337d;
  text-transform: uppercase;
}
h3 {
  font-weight: bold;
}
h4 {
  color: #0e337d;
  font-weight: bold;
}
::selection {
  background: #0e337d;
  color: #fff;
}
::-moz-selection {
  background: #0e337d;
  color: #fff;
}
header {
  padding-top: 20px;
}
header .header-box .space {
  display: flex;
  flex: 1 0 0;
}
header .header-box .fast-message-button {
  display: flex;
  flex: 0 0 180px;
  align-items: stretch;
  transition: background-color 0.5s;
  padding: 0 15px 0 0;
  border-radius: 3px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  height: 40px;
  line-height: 40px;
  background: linear-gradient(to bottom, #2b7bd6 0%, #2054a0 100%);
}
header .header-box .fast-message-button span {
  display: flex;
}
header .header-box .fast-message-button span.question-icon {
  flex: 0 0 55px;
  margin: 0;
  background: url("./images/blue-question-icon.png") no-repeat scroll right center;
  position: relative;
}
header .header-box .fast-message-button span.text {
  flex: 1 0 0;
  padding-left: 5px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  header .header-box {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
  }
  header .header-box .fast-message-button {
    margin: 0;
  }
}
header .icon-facebook {
  background: url("./images/icon-facebook.png") no-repeat;
  height: 23px;
  width: 22px;
  display: block;
  margin-right: 5px;
}
header .icon-google {
  background: url("./images/icon-google.png") no-repeat;
  height: 23px;
  width: 22px;
  display: block;
}
header .icon-phone {
  background: url("./images/icon-phone.png") no-repeat;
  height: 32px;
  width: 27px;
  display: block;
  position: absolute;
  margin-top: 5px;
}
header h1 {
  margin-top: 40px;
  color: #f6bb3e;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  line-height: 25px;
}
@media (max-width: 768px) {
  header h1 {
    margin: 20px 0 0 0;
  }
}
header h1 &gt; span {
  color: #ffffff;
}
header .phone-number {
  color: #f6bb3e;
  font-size: 25px;
  padding-left: 35px;
}
header .search-old {
  padding: 15px 0;
}
header .search-old ::-webkit-input-placeholder {
  color: white;
}
header .search-old ::-moz-placeholder {
  color: white;
}
header .search-old input {
  padding: 3px 10px;
  background: url("./images/search-bg.png") repeat;
  border: none;
  color: #fff;
  font-style: italic;
  border-radius: 3px 0 0 3px;
  height: 33px;
}
header .search-old .search-button {
  background: #0b4d94;
  /* Old browsers */
  background: -moz-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0b4d94), color-stop(100%, #10357f));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #0b4d94 0%, #10357f 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0b4d94', endColorstr='#10357f', GradientType=0);
  /* IE6-9 */
  color: #fff;
  height: 33px;
  width: 80px;
  border-radius: 0 3px 3px 0;
  border: none;
  margin-left: -4px;
}
header nav {
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 13px;
  margin-top: 25px;
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 1%, #d7dae0 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #ffffff), color-stop(100%, #d7dae0));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ffffff 1%, #d7dae0 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ffffff 1%, #d7dae0 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ffffff 1%, #d7dae0 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #ffffff 1%, #d7dae0 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#d7dae0', GradientType=0);
  /* IE6-9 */
  padding: 0;
}
header nav .toggle-button {
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  background: #f6bb3e;
  padding: 10px;
  width: 100px;
}
header nav .toggle-button a {
  color: #fff;
  float: right;
  padding-top: 3px;
  padding-bottom: 0;
}
header nav .toggle-button a:hover {
  color: #fff;
}
header nav .toggle-search {
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  background: url("./images/icon-search.png") no-repeat #0e337d center;
  width: 45px;
  margin-left: 15px;
  height: 45px;
}
header nav .toggle-search a {
  color: #fff;
  float: right;
}
header nav .toggle-search a:hover {
  color: #fff;
}
header nav .dropdown-menu {
  background: #fbcf40;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbcf40), color-stop(100%, #f6bb3e));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #fbcf40 0%, #f6bb3e 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbcf40', endColorstr='#f6bb3e', GradientType=0);
  /* IE6-9 */
  z-index: 15;
}
header nav .dropdown-menu li {
  border-bottom: 1px solid #ddb331;
  border-right: none;
  border-left: none;
  background: none !important;
}
header nav .dropdown-menu li a {
  margin: 5px 0;
}
header nav .dropdown-menu li a:hover {
  text-decoration: underline;
}
header nav .dropdown-menu li:last-child {
  border-bottom: none;
}
header nav .popup-toggle {
  width: 100%;
  padding: 7px 10px;
  color: #ffffff;
  text-align: right;
}
header nav .icon-bar {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}
header nav li {
  border-right: 1px solid #f5f5f5;
  border-left: 1px solid #e7e9ec;
  margin-right: -4px;
}
header nav li a {
  color: #63676e;
  padding: 20px 14px;
}
header nav .active,
header nav li:hover {
  background: #f9c63f;
}
header nav .active a,
header nav li:hover a {
  color: #0e337d;
  text-decoration: none;
}
header nav .active:first-child,
header nav li:hover:first-child {
  border-radius: 3px 0 0 3px;
}
header nav .home-icon {
  background: url("./images/home-icon.png") no-repeat;
  height: 17px;
  width: 19px;
  display: inline-block;
}
header nav li:last-child {
  border-right: none;
}
header nav li:first-child {
  border-right: none;
  border-left: none;
}
/*CAROUSEL
-------------------------------------------------- */
@media (max-width: 768px), (min-width: 768px) {
  .carousel-text {
    margin-bottom: 15px;
  }
}
@media (min-width: 1200px), (min-width: 992px) {
  .carousel-text {
    margin-bottom: 0;
  }
}
.carousel-text h2 {
  padding-top: 15px;
  color: #f6bb3e;
  font-size: 29px;
  font-weight: 600;
  margin-bottom: 30px;
}
.carousel-text p {
  color: #fff;
  padding-bottom: 15px;
}
.carousel {
  position: relative;
  width: 100%;
  top: 0;
  margin-bottom: 0;
}
@media (max-width: 768px), (min-width: 768px) {
  .carousel {
    margin-bottom: 15px;
  }
}
@media (min-width: 1200px), (min-width: 992px) {
  .carousel {
    margin-bottom: 0;
  }
}
.carousel h2 {
  padding-top: 15px;
  color: #f6bb3e;
  font-size: 29px;
  font-weight: 600;
  margin-bottom: 30px;
}
.carousel p {
  color: #fff;
  padding-bottom: 15px;
}
.carousel-caption {
  color: #fff;
  text-align: left;
  z-index: 1;
  position: absolute;
  float: left;
  text-shadow: none;
  margin: 0;
  padding: 0;
}
.carousel-caption h2 {
  padding-top: 20px;
}
.carousel-indicators {
  position: absolute;
}
.carousel-indicators li {
  background-color: #f6bb3e;
  border: 1px solid gray;
}
.carousel .item {
  max-height: 300px;
}
/*HALL OVERVIEW
-------------------------------------------------- */
.hall-overview {
  background: #fbcf40;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbcf40), color-stop(100%, #f6bb3e));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #fbcf40 0%, #f6bb3e 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbcf40', endColorstr='#f6bb3e', GradientType=0);
  /* IE6-9 */
  border-radius: 3px;
  color: #0e337d;
  padding: 5px 0;
}
.hall-overview .hall-box {
  border-right: 1px solid #e7ad29;
  margin-bottom: 20px;
}
.hall-overview .hall-box h3 {
  text-shadow: 1px 1px 1px rgba(244, 244, 244, 0.6);
}
.hall-overview h2 {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}
.hall-overview h3 {
  font-size: 13px;
  color: #0e337d;
  text-align: center;
  font-weight: bold;
}
.hall-overview img {
  border-radius: 3px;
  max-height: 180px;
}
/*NEWS + MAP + BUTTONS
-------------------------------------------------- */
.news-map {
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 2%, #d6dae0 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(2%, #ffffff), color-stop(100%, #d6dae0));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ffffff 2%, #d6dae0 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ffffff 2%, #d6dae0 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ffffff 2%, #d6dae0 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #ffffff 2%, #d6dae0 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#d6dae0', GradientType=0);
  /* IE6-9 */
  color: #212121;
  border-radius: 3px;
  padding: 5px 0 20px;
  margin: 10px 0;
}
.news-map .news {
  padding-left: 0;
  padding-right: 0;
}
.news-map .news-box h3 {
  font-size: 15px;
  font-weight: bold;
}
.news-map .news-box img {
  border-radius: 3px;
}
.news-map h2 {
  font-size: 21px;
}
.news-map .right-part .pricelist-button {
  border-radius: 3px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  text-transform: uppercase;
  margin-top: 5px;
  padding-left: 5px;
  background: #0b4d94;
  /* Old browsers */
  background: -moz-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0b4d94), color-stop(100%, #10357f));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #0b4d94 0%, #10357f 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0b4d94', endColorstr='#10357f', GradientType=0);
  /* IE6-9 */
}
.news-map .right-part .pricelist-button .pricelist-icon {
  background: url("./images/pricelist-icon.png") no-repeat left center;
  display: block;
  width: 46px;
  height: 45px;
  z-index: 20;
  float: left;
}
.news-map .right-part .pricelist-button .iso-icon {
  background: url("./images/pricelist-icon.png") no-repeat left center;
  display: block;
  width: 46px;
  height: 45px;
  z-index: 20;
  float: left;
  background: url("./images/iso-icon.png") no-repeat left center;
}
.news-map .right-part .pricelist-button .bubble-icon {
  background: url("./images/pricelist-icon.png") no-repeat left center;
  display: block;
  width: 46px;
  height: 45px;
  z-index: 20;
  float: left;
  background: url("./images/bubble-icon.png") no-repeat left center;
}
.news-map .right-part .bubble-button {
  background: #fbcf40;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbcf40), color-stop(100%, #f6bb3e));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #fbcf40 0%, #f6bb3e 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbcf40', endColorstr='#f6bb3e', GradientType=0);
  /* IE6-9 */
  color: #0e337d;
}
.news-map .right-part .configurator-hall-button {
  position: relative;
  border-radius: 3px;
  height: 70px;
  font-weight: bold;
  font-size: 17px;
  color: #0e337d;
  text-transform: uppercase;
  margin-top: 5px;
  padding-left: 50px;
  padding-top: 12px;
  background: #fbcf40;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbcf40), color-stop(100%, #f6bb3e));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #fbcf40 0%, #f6bb3e 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbcf40', endColorstr='#f6bb3e', GradientType=0);
  /* IE6-9 */
}
.news-map .right-part .configurator-hall-button .configurator-hall-icon {
  background: url("./images/configurator-hall-icon.png") no-repeat left center;
  position: absolute;
  display: block;
  width: 46px;
  height: 70px;
  z-index: 20;
  top: 0;
  left: 5px;
}
/*FOOTER
-------------------------------------------------- */
footer {
  color: #fff;
  margin-bottom: 15px;
}
footer h3 {
  color: #fff;
  font-size: 18px;
}
footer .links-contact {
  border-radius: 3px;
  padding-bottom: 20px;
  background: #0b2b70;
  margin-bottom: 30px;
}
footer .links-contact ul li {
  list-style-image: url("./images/list-arrow.png");
}
footer .links-contact a {
  color: #fff;
  text-decoration: underline;
}
footer .links-contact input,
footer .links-contact textarea {
  color: #212121;
  padding: 3px 6px;
  margin-bottom: 7px;
}
footer .links-contact textarea {
  resize: vertical;
}
footer .footer {
  font-size: 13px;
}
footer .footer a {
  color: #fff;
}
/*SUBPAGES
-------------------------------------------------- */
.content {
  border-radius: 3px;
  background: #fff;
  color: #212121;
  padding: 10px;
  margin: 10px 0;
}
@media (min-width: 992px), (min-width: 1200px) {
  .content {
    padding: 25px;
  }
}
.content .breadcrumb {
  padding: 0;
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.content .breadcrumb .active {
  color: #212121;
}
.content .breadcrumb li {
  float: left;
  margin-right: 7px;
  list-style: none;
}
.content .breadcrumb li :after {
  padding: 0 4px;
  content: "&gt;\00a0";
}
.content .breadcrumb li a {
  color: #888888;
}
.text-area h1,
.modal h1 {
  font-size: 24px;
}
.text-area h2,
.modal h2 {
  font-size: 17px;
  font-weight: bold;
}
.text-area h3,
.modal h3 {
  font-size: 16px;
  text-transform: none;
}
.text-area a,
.modal a {
  color: #096ab0;
}
.text-area table,
.modal table {
  margin: 15px 0;
  overflow-x: auto;
  display: block;
}
.text-area table th,
.modal table th {
  background: #b8cbf0;
  color: #0e337d;
  border: 1px solid #fff;
  padding: 7px 12px;
}
.text-area table td,
.modal table td {
  background: #ffebaa;
  color: #0e337d;
  border: 1px solid #fff;
  padding: 7px 12px;
}
.text-area .yellow-text,
.modal .yellow-text {
  color: #f6bb3e;
  font-weight: normal;
}
.text-area .gallery,
.modal .gallery {
  border-radius: 3px;
  background: #faca3f;
  padding: 0;
  padding-top: 15px;
}
.text-area .gallery h2,
.modal .gallery h2 {
  margin-top: 5px;
}
.text-area .gallery img,
.modal .gallery img {
  border-radius: 3px;
  margin-bottom: 15px;
}
.text-area .reference-box,
.modal .reference-box {
  background: #eff0f3;
  margin-bottom: 20px;
  border-radius: 3px;
}
.text-area .reference-box .reference-text,
.modal .reference-box .reference-text {
  padding: 20px;
}
.text-area .reference-box img,
.modal .reference-box img {
  border-radius: 3px;
  max-height: 268px;
}
.text-area .reference-box .button-reference,
.modal .reference-box .button-reference {
  border-radius: 3px;
  color: #fff !important;
  font-weight: bold;
  border: none;
  padding: 0 20px 0 10px;
  height: 33px;
  line-height: 33px;
  z-index: 20;
  background: url("./images/rating-arrow.png") #0e337d right center no-repeat;
}
.text-area .reference-box .button-reference:hover,
.modal .reference-box .button-reference:hover {
  color: #0e337d !important;
  background: url("./images/rating-arrow.png") #f6bb3e right center no-repeat;
}
.text-area .rating h2,
.modal .rating h2 {
  color: #0e3e87;
}
.text-area .rating h3,
.modal .rating h3 {
  color: #9ba1af;
  margin-top: 0;
  font-size: 14px;
  font-weight: bold;
}
.text-area .rating ul,
.modal .rating ul {
  padding-left: 20px;
}
.text-area .rating .description,
.modal .rating .description {
  font-size: 16px;
  line-height: 20px;
  height: 128px;
  overflow: hidden;
  margin-bottom: 10px;
}
.text-area .gradient-blue-button,
.modal .gradient-blue-button {
  border-radius: 3px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-left: 5px;
  background: #0b4d94;
  /* Old browsers */
  background: -moz-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0b4d94), color-stop(100%, #10357f));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #0b4d94 0%, #10357f 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0b4d94', endColorstr='#10357f', GradientType=0);
  /* IE6-9 */
}
.text-area .gradient-blue-button .pricelist-icon,
.modal .gradient-blue-button .pricelist-icon {
  background: url("./images/pricelist-icon.png") no-repeat left center;
  display: block;
  width: 46px;
  height: 45px;
  z-index: 20;
  float: left;
}
.text-area .gradient-yellow-button,
.modal .gradient-yellow-button {
  border-radius: 3px;
  height: 45px;
  line-height: 45px;
  color: #0e337d;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-left: 5px;
  background: #fbcf40;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbcf40), color-stop(100%, #f6bb3e));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #fbcf40 0%, #f6bb3e 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbcf40', endColorstr='#f6bb3e', GradientType=0);
  /* IE6-9 */
}
.text-area .material-box,
.modal .material-box {
  background: #eff0f3;
  padding: 10px;
  border-radius: 3px;
  margin-bottom: 15px;
}
.text-area .material-box img,
.modal .material-box img {
  border-radius: 3px;
}
.text-area .reference-rating,
.modal .reference-rating {
  background: #fbcf40;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbcf40), color-stop(100%, #f6bb3e));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #fbcf40 0%, #f6bb3e 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbcf40', endColorstr='#f6bb3e', GradientType=0);
  /* IE6-9 */
  padding: 30px;
  margin: 50px 0 20px;
}
.text-area .reference-rating h3,
.modal .reference-rating h3 {
  padding-top: 50px;
  text-transform: uppercase;
  font-weight: bold;
}
.text-area .reference-rating .company-name,
.modal .reference-rating .company-name {
  color: #0c4991;
  font-weight: bold;
}
.text-area .reference-rating .rating-star,
.modal .reference-rating .rating-star {
  background: url("./images/rating-star.png") no-repeat;
  display: block;
  width: 64px;
  height: 64px;
  margin: -55px;
}
.text-area .demand-icon,
.modal .demand-icon {
  background: url("./images/demand-icon.png") no-repeat left center;
  display: block;
  width: 46px;
  height: 45px;
  z-index: 20;
  float: left;
}
.text-area .question-icon,
.modal .question-icon {
  background: url("./images/question-icon.png") no-repeat left center;
  display: block;
  width: 46px;
  height: 45px;
  z-index: 20;
  float: left;
}
.text-area .reference-photogallery img,
.modal .reference-photogallery img {
  border-radius: 3px;
  margin: 0;
}
.text-area .reference-photogallery .gallery,
.modal .reference-photogallery .gallery {
  background: none;
}
.text-area .reference-photogallery .gallery a,
.modal .reference-photogallery .gallery a {
  display: inline-block;
  margin: 5px auto;
}
@media (min-width: 1200px) {
  .text-area .reference-photogallery .gallery a,
  .modal .reference-photogallery .gallery a {
    display: table;
    height: 150px;
  }
  .text-area .reference-photogallery .gallery a img,
  .modal .reference-photogallery .gallery a img {
    max-height: 148px;
  }
  .text-area .reference-photogallery .gallery a img.video,
  .modal .reference-photogallery .gallery a img.video {
    max-height: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .text-area .reference-photogallery .gallery a,
  .modal .reference-photogallery .gallery a {
    display: table;
    height: 125px;
  }
  .text-area .reference-photogallery .gallery a img,
  .modal .reference-photogallery .gallery a img {
    max-height: 123px;
  }
  .text-area .reference-photogallery .gallery a img.video,
  .modal .reference-photogallery .gallery a img.video {
    max-height: none;
  }
}
.text-area .news-menu,
.modal .news-menu {
  margin: 30px 0;
}
.text-area .news-menu .news-button,
.modal .news-menu .news-button {
  background: #d9dce2;
  padding: 10px 15px;
  color: #212121;
  border-radius: 3px 3px 0 0;
  font-weight: normal;
}
.text-area .news-menu .news-button.active,
.modal .news-menu .news-button.active {
  background: #f6bb3e;
  color: #0e337d;
  font-weight: bold;
}
.text-area .news-menu .menu-hr,
.modal .news-menu .menu-hr {
  width: 100%;
  height: 1px;
  background: #d9dce2;
  margin-top: 8px;
}
.text-area .news,
.modal .news {
  padding: 0;
}
.text-area .news img,
.modal .news img {
  border-radius: 3px;
  padding: 0;
}
.text-area .news .news-date,
.modal .news .news-date {
  margin-bottom: 15px;
  display: block;
}
.text-area .news .news-label,
.modal .news .news-label {
  margin: 4px;
  z-index: 2;
  position: absolute;
  border-radius: 3px;
  padding: 5px;
  left: 0;
}
.text-area .news .news-label.firm,
.modal .news .news-label.firm {
  background: #0e337d;
  color: #fff;
}
.text-area .news .news-label.print,
.modal .news .news-label.print {
  background: #19a5ff;
  color: #fff;
}
.text-area .news .news-label.video,
.modal .news .news-label.video {
  background: #f6bb3e;
  color: #0e337d;
}
.text-area .news .news-label.media,
.modal .news .news-label.media {
  background: #f6bb3e;
  color: #fff;
}
.text-area .contact-photo,
.modal .contact-photo {
  padding: 0;
  border: 1px solid #9eafd0;
}
.text-area .address,
.modal .address {
  margin-bottom: 20px;
}
.text-area .contact-icon,
.modal .contact-icon {
  width: 16px;
  height: 16px;
  display: block;
  float: left;
  margin-right: 10px;
}
.text-area .phone-icon,
.modal .phone-icon {
  background: url("./images/phone-icon.png") no-repeat;
  width: 16px;
  height: 16px;
  display: block;
  float: left;
  margin-right: 10px;
}
.text-area .earphone-icon,
.modal .earphone-icon {
  background: url("./images/earphone-icon.png") no-repeat;
  width: 16px;
  height: 16px;
  display: block;
  float: left;
  margin-right: 10px;
}
.text-area .envelope-icon,
.modal .envelope-icon {
  background: url("./images/envelope-icon.png") no-repeat;
  width: 16px;
  height: 16px;
  display: block;
  float: left;
  margin-right: 10px;
}
.text-area .contact-person,
.modal .contact-person {
  margin-bottom: 10px;
}
.text-area .contact-person .persone-name,
.modal .contact-person .persone-name {
  color: #484848;
  font-weight: bold;
}
.text-area .label-search,
.modal .label-search {
  background: #f6bb3e;
  color: #fff;
  padding: 2px 4px;
  border-radius: 3px;
}
.left-submenu {
  margin-top: 10px;
  float: left;
  padding-left: 0;
}
.left-submenu .first-level {
  list-style: none;
  padding: 0;
}
.left-submenu .first-level &gt; li &gt; a {
  width: 100%;
  color: #0e337d;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  display: block;
  padding: 15px;
  background: #f9c73f;
  border-radius: 3px;
  margin: 5px 0 3px;
}
.left-submenu .first-level &gt; li.active &gt; a {
  background: url("./images/rating-arrow.png") no-repeat #ebb51f right center;
  color: #fff;
  font-weight: bold;
}
.left-submenu .second-level {
  list-style: none;
  padding: 0;
}
.left-submenu .second-level &gt; li &gt; a {
  list-style: none;
  display: block;
  background: url("./images/submenu-arrow.png") no-repeat #ffedb5 left center;
  color: #0e337d;
  padding: 10px 10px 10px 25px;
  width: 100%;
  border-radius: 3px;
  margin-bottom: 2px;
}
.left-submenu .second-level &gt; li.active &gt; a {
  font-weight: bold;
}
.left-submenu .third-level {
  list-style: none;
  padding: 0;
}
.left-submenu .third-level &gt; li &gt; a {
  list-style: none;
  display: block;
  background: #fff7e0;
  color: #0e337d;
  padding: 8px 10px 8px 40px;
  width: 100%;
  border-radius: 3px;
  margin-bottom: 2px;
}
.left-submenu .third-level &gt; li.active &gt; a {
  font-weight: bold;
}
.left-submenu .fourth-level {
  list-style: none;
  padding: 0;
}
.left-submenu .fourth-level &gt; li &gt; a {
  list-style: none;
  display: block;
  background: #e8edf1;
  color: #0e337d;
  padding: 7px 10px 7px 60px;
  width: 100%;
  border-radius: 3px;
  margin-bottom: 2px;
}
.left-submenu .fourth-level &gt; li.active &gt; a {
  font-weight: bold;
}
.no-pad-row &gt; div.row {
  margin-left: 0;
  margin-right: 0;
}
.no-pad-row &gt; div.row &gt; div[class^="col-"] {
  padding-left: 0;
  padding-right: 0;
}
.product-box {
  background: rgba(252, 208, 33, 0.2);
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 3px;
}
.product-box h2 {
  font-size: 18px;
  line-height: 21px;
  overflow: hidden;
  height: 42px;
  margin-bottom: 5px;
}
.product-box .description {
  font-size: 15px;
  line-height: 19px;
  height: 95px;
  overflow: hidden;
  margin-bottom: 10px;
}
.product-box img {
  border-radius: 3px;
  max-height: 268px;
}
.product-box .product-price {
  font-size: 17px;
  text-align: center;
  color: #0e337d;
  display: inline-block;
  width: 100%;
  margin-top: 5px;
}
.product-box .help-btn {
  border-radius: 3px;
  display: inline-block;
  color: #0e337d;
  font-size: 14px;
  margin: 10px 0 5px;
  text-align: center;
  width: 100%;
}
.demand-btn {
  border-radius: 3px;
  background: #fbcf40;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbcf40), color-stop(100%, #f6bb3e));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #fbcf40 0%, #f6bb3e 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbcf40', endColorstr='#f6bb3e', GradientType=0);
  /* IE6-9 */
  display: inline-block;
  color: #fff !important;
  font-weight: bold;
  text-transform: uppercase;
  padding: 12px 10px;
  margin: 5px 0;
  font-size: 16px;
  width: 100%;
  text-align: center;
}
.demand-btn:before {
  content: "";
  background: url("./images/cart-icon.png") no-repeat;
  width: 21px;
  height: 19px;
  display: inline-block;
  margin-top: 2px;
  margin-right: 8px;
}
.demand-btn:hover {
  background: #0b4d94;
  /* Old browsers */
  background: -moz-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0b4d94), color-stop(100%, #10357f));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #0b4d94 0%, #10357f 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #0b4d94 0%, #10357f 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0b4d94', endColorstr='#10357f', GradientType=0);
  /* IE6-9 */
  text-decoration: none;
  color: #fff;
}
.content form label,
.modal form label {
  display: inline-block;
  margin: 0 5px 0 0;
  font-size: 14px;
}
.content form input[type="text"],
.modal form input[type="text"],
.content form input[type="tel"],
.modal form input[type="tel"],
.content form input[type="email"],
.modal form input[type="email"],
.content form textarea,
.modal form textarea {
  width: 100%;
  border: 1px solid #cbcbcb;
  border-radius: 2px;
  padding: 5px;
  margin: 0 0 5px 0;
}
.content form input[type="submit"],
.modal form input[type="submit"] {
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 11px 35px 11px 25px;
  background: url("./images/rating-arrow.png") #f6bb3e right center no-repeat;
  margin: 10px 0;
  font-size: 16px;
  text-transform: uppercase;
}
.content form input[type="submit"]:hover,
.modal form input[type="submit"]:hover {
  background: url("./images/rating-arrow.png") #e4ad3a right center no-repeat;
}
.content form textarea,
.modal form textarea {
  resize: vertical;
}
.modal .gradient-blue-button {
  padding-right: 20px;
  margin-top: 10px;
}
.product-detail h2 {
  margin: 20px 0;
}
.product-detail h3 {
  font-size: 18px;
}
.product-detail .demand-btn {
  width: 235px;
}
.product-detail .blue-bg {
  background: #eff0f3;
  padding: 10px;
  border-radius: 5px;
  margin: 20px 0 5px;
}
@media (min-width: 1200px), (min-width: 992px) {
  .product-detail .blue-bg {
    padding: 10px 20px;
  }
}
.product-detail .list {
  list-style: none;
  font-size: 15px;
  padding-left: 5px;
}
@media (min-width: 1200px), (min-width: 992px) {
  .product-detail .list {
    font-size: 17px;
  }
}
.product-detail .list li:before {
  content: "âś“";
  font-weight: bold;
  color: #0e337d;
  font-size: 20px;
  padding-right: 5px;
}
.detail-photogallery img {
  border-radius: 3px;
}
.detail-photogallery a {
  display: inline-block;
  margin: 6px auto;
}
.horizontal-menu {
  padding-left: 0;
  margin-bottom: 1px;
  list-style: none;
  font-size: 0;
}
.horizontal-menu li {
  box-sizing: border-box;
  width: 100%;
  display: inline-flex;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  font-size: 15px;
}
@media (min-width: 1200px), (min-width: 992px), (min-width: 768px) {
  .horizontal-menu li {
    width: 25%;
  }
}
.horizontal-menu li a {
  background: #0e337d;
  color: #fff;
  display: inline-block;
  width: 100%;
  padding: 12px 15px;
  text-transform: uppercase;
  border-radius: 3px 3px 0 0;
  height: 70px;
  text-align: center;
  vertical-align: middle;
}
.horizontal-menu li.active a,
.horizontal-menu li a:hover {
  background: #f6bb3e;
  text-decoration: none;
}
.horizontal-submenu {
  padding-left: 0;
  margin-bottom: 40px;
  list-style: none;
  background: #FDECB4;
}
.horizontal-submenu li {
  display: inline-block;
  margin-right: 3px;
}
.horizontal-submenu li a {
  color: #0e337d;
  display: inline-block;
  padding: 8px 15px;
  text-transform: none;
}
.horizontal-submenu li.active a {
  font-weight: bold;
}
/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}
.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* Icon Fonts
*********************************/
/* Font-face Icons */
@font-face {
  font-family: 'flexslider-icon';
  src: url('../components/custom/flexslider/fonts/flexslider-icon.eot');
  src: url('../components/custom/flexslider/fonts/flexslider-icon.eot?#iefix') format('embedded-opentype'), url('../components/custom/flexslider/fonts/flexslider-icon.woff') format('woff'), url('../components/custom/flexslider/fonts/flexslider-icon.ttf') format('truetype'), url('../components/custom/flexslider/fonts/flexslider-icon.svg#flexslider-icon') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides &gt; li {
  display: none;
  -webkit-backface-visibility: hidden;
}
/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  width: 100%;
  display: block;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
/* Clearfix for the .slides element */
.slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .slides {
  display: block;
}
* html .slides {
  height: 1%;
}
/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides &gt; li:first-child {
  display: block;
}
/* FlexSlider Default Theme
*********************************/
.flexslider {
  margin: 0 0 60px;
  background: #fff;
  border: 4px solid #fff;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  zoom: 1;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
.flexslider .slides {
  zoom: 1;
}
.carousel li {
  margin-right: 5px;
}
/* Direction Nav */
.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.flex-direction-nav .flex-prev {
  left: -50px;
}
.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}
.flexslider:hover .flex-prev {
  opacity: 0.7;
  left: 10px;
}
.flexslider:hover .flex-next {
  opacity: 0.7;
  right: 10px;
}
.flexslider:hover .flex-next:hover,
.flexslider:hover .flex-prev:hover {
  opacity: 1;
}
.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  filter: alpha(opacity=0);
  cursor: default;
}
.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  display: inline-block;
  content: '\f001';
}
.flex-direction-nav a.flex-next:before {
  content: '\f002';
}
/* Pause/Play */
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}
.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}
.flex-pauseplay a:hover {
  opacity: 1;
}
.flex-pauseplay a.flex-play:before {
  content: '\f003';
}
/* Control Nav */
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}
.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}
.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: 0.7;
  cursor: pointer;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
.flexslider {
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.flexslider .flex-direction-nav a {
  font-size: 40px;
  line-height: 40px;
  width: 40px;
  height: 40px;
}
.flexslider .flex-control-nav {
  display: none;
}
.carousel .flex-control-nav {
  display: none;
}
.form-box {
  background-color: #fde6a0;
  border: solid 1px #faca3f;
  border-radius: 5px;
  margin: 5px 0;
  padding-bottom: 25px;
}
.form-box h2 {
  margin: 30px 25px 40px 25px;
  font-size: 14px;
}
.form-box .form-group {
  margin: 0 0 5px 0;
}
.form-box .form-group label {
  display: inline-block;
  width: 150px;
  text-align: right;
  margin: 0 5px 0 0;
  font-size: 14px;
}
.form-box .form-group select {
  border: solid thin #cbcbcb;
  border-radius: 2px;
  padding: 5px;
}
.form-box .form-group input[type="text"],
.form-box .form-group select.wide {
  width: 100%;
  max-width: 250px;
  border: solid thin #cbcbcb;
  border-radius: 2px;
  padding: 5px;
}
.form-box .form-group input[type="button"] {
  background: url('./images/plus-bg.png') center center no-repeat #fff;
  border: solid thin #cbcbcb;
  border-radius: 2px;
  width: 32px;
  height: 32px;
}
.form-box .form-group textarea {
  width: 100%;
  min-height: 50px;
  border: solid thin #cbcbcb;
  border-radius: 2px;
  padding: 5px;
}
.form-box .form-group.fullpage {
  padding: 0 25px;
}
.form-box .form-group.fullpage label {
  width: auto;
}
.form-box .form-group.radio div {
  display: inline-block;
}
.form-box .form-group.radio div label {
  clear: none;
  width: auto;
}
.form-box .form-group.radio div label input {
  margin-right: 5px;
}
.form-box .form-group.longlabel label {
  width: 100%;
  max-width: 320px;
}
.form-box .many .form-group input[type="text"] {
  max-width: 100px;
}
.submit-box input {
  float: right;
  border: solid thin #0d2e75;
  border-radius: 5px;
  background: url('./images/white-arrow.png') 105px center no-repeat #0d2e75;
  padding: 15px 35px 15px 20px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin: 15px;
}
.navbar .arrow {
  background-image: url('./images/arrow-down.png');
  background-position: center 45px;
  background-repeat: no-repeat;
}
.navbar .home-icon {
  background-position: center center;
  width: 40px;
  height: 100%;
}
.reference-photogallery .gallery .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.reference-photogallery .gallery .row a {
  height: auto !important;
  margin: 15px auto !important;
}
.reference-photogallery .gallery .row a div.video {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url('./images/video-icon.png') center center no-repeat;
}
.reference-photogallery .gallery .row a div.media {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url('./images/podcast-icon.svg') center center no-repeat;
  background-size: 40% auto;
}
.text-area {
  border-radius: 7px;
  border-bottom: solid thin #e6e6e6;
  border-top: solid thin #e6e6e6;
}
.text-area.jobs {
  border-top: none;
}
.text-area hr {
  background-color: #e6e6e6;
  height: 1px;
  margin: 0 0 20px;
}
.text-area.score hr {
  width: 100%;
  margin-bottom: 0;
}
.text-area.score .rating {
  margin-bottom: 20px;
}
.text-area .button-silver {
  background: linear-gradient(to bottom, #ffffff 2%, #d9dadf 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
  border: 1px solid #d9dadf;
  margin: 20px 0;
}
.text-area .news-menu .news-button {
  display: inline-block;
  margin-top: 2px;
}
.text-area .news-menu .menu-hr {
  margin: 0;
}
.text-area .news {
  min-height: 450px;
  padding: 0 5px;
  position: relative;
}
@media (min-width: 992px) {
  .text-area .news {
    min-height: 220px;
  }
}
.text-area .news div.pull-right {
  margin-bottom: 55px;
}
@media (max-width: 768px) {
  .text-area .news div.pull-right {
    margin-bottom: 75px;
  }
}
.text-area .news a.button-silver {
  margin: 0;
  position: absolute;
  bottom: 20px;
  right: 15px;
}
@media (max-width: 768px) {
  .text-area .news a.button-silver {
    bottom: 40px;
  }
}
.text-area .news a.img {
  display: block;
  float: left;
  position: relative;
  padding: 0;
}
.text-area .news a.img .news-label {
  position: absolute;
  top: 5px;
  left: 5px;
}
.text-area .news a.img div.video {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url('./images/video-icon.png') center center no-repeat;
}
.text-area .news a.img div.media {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url('./images/podcast-icon.svg') center center no-repeat;
  background-size: 40% auto;
}
.text-area .news h2 {
  margin: 3px 0;
  font-size: 14px;
}
@media (max-width: 768px) {
  .text-area .news h2 {
    margin-top: 13px;
  }
}
.text-area .news p {
  margin: 3px 0;
  font-size: 14px;
}
.text-area .alert-success {
  padding: 10px;
  border-radius: 5px;
  border: solid thin darkgreen;
}
.text-area .alert-danger {
  padding: 10px;
  border-radius: 5px;
  border: solid thin darkred;
}
.text-area .hall-box {
  height: 400px;
}
.text-area .hall-box h3 {
  text-transform: uppercase;
}
.text-area .hall-box img {
  border-radius: 5px;
}
.text-area .hall-box a.button-silver {
  margin: 0;
  position: absolute;
  bottom: 20px;
  right: 0px;
}
.text-area .material-box h2 {
  margin: 0 0 15px 0;
}
.text-area .gradient-yellow-button .question-icon {
  background: url("./images/question-icon-yellow.png") no-repeat scroll left center;
}
.text-area .yellow-button {
  display: inline-flex;
  flex-direction: row;
  border-radius: 3px;
  padding: 0 15px;
  line-height: 45px;
  color: #10357f;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: #fbcf40;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbcf40), color-stop(100%, #f6bb3e));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fbcf40 0%, #f6bb3e 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #fbcf40 0%, #f6bb3e 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbcf40', endColorstr='#f6bb3e', GradientType=0);
  /* IE6-9 */
}
.text-area .yellow-button.fast-message-button {
  padding: 0 15px 0 60px;
  position: relative;
}
.text-area .yellow-button.fast-message-button:before {
  display: block;
  position: absolute;
  top: 0;
  left: 10px;
  content: '';
  height: 45px;
  width: 46px;
  background: url("./images/question-icon-yellow.png") no-repeat scroll left center;
}
.text-area .yellow-button.link-button {
  padding: 0 40px 0 15px;
  position: relative;
}
.text-area .yellow-button.link-button:before {
  display: block;
  position: absolute;
  top: 0;
  right: 5px;
  content: '';
  height: 45px;
  width: 46px;
  background: url("./images/arrow-icon.png") repeat-y scroll right center;
}
.text-area .contact-person {
  padding-right: 0;
}
.text-area .contact-person div {
  padding-right: 0;
}
.text-area .contact-person div h4 span {
  font-size: 13px;
  color: #0e337d;
  font-weight: normal;
  margin-top: 2px;
}
.text-area table.pricelist {
  border-radius: 5px;
  margin: 0 0 20px 0;
}
.text-area table.pricelist td {
  color: #103781;
  font-size: 14px;
  padding: 10px 20px;
  background: url('./images/table-yellow.png') top left;
}
.text-area table.pricelist td.left {
  width: 55%;
  color: #ffffff;
  background: url('./images/table-blue.png') top right;
}
.text-area table.pricelist thead td,
.text-area table.pricelist tfoot td {
  padding: 0px;
  border-top-right-radius: 5px;
  background-position: bottom left;
  font-weight: bold;
}
.text-area table.pricelist thead td.left,
.text-area table.pricelist tfoot td.left {
  border-top-left-radius: 5px;
  border-top-right-radius: 0;
  background-position: bottom right;
}
.text-area table.pricelist thead td div,
.text-area table.pricelist tfoot td div {
  font-size: 16px;
  text-transform: uppercase;
  background: url('./images/table-gradient.png') top left repeat-x;
  padding: 15px 20px;
  height: 100%;
}
.text-area table.pricelist tfoot td {
  border-radius: 0;
  border-bottom-right-radius: 5px;
  height: 10px;
}
.text-area table.pricelist tfoot td.left {
  border-radius: 0;
  border-bottom-left-radius: 5px;
}
.text-area table.pricedesc {
  display: table;
  border-radius: 5px;
  background-color: #ffebaa;
  margin: 10px 0 20px;
}
.text-area table.pricedesc td {
  color: #103781;
  font-size: 14px;
  padding: 10px 20px;
  border-top: solid thin #fff;
  border-right: solid thin #fff;
}
.text-area table.pricedesc td.left {
  width: 55%;
  font-weight: bold;
}
.text-area table.pricedesc thead td {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 15px 20px;
}
@media (min-width: 768px) {
  .text-area .pricelist-buttons a.gradient-blue-button {
    width: 54%;
  }
  .text-area .pricelist-buttons a.gradient-yellow-button {
    width: 44%;
  }
}
.news-map .news-box {
  margin-bottom: 20px;
}
.news-map .news-box div {
  position: relative;
}
.news-map .news-box div div.video {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url('./images/video-icon.png') center center no-repeat;
}
.news-map .news-box div div.media {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url('./images/podcast-icon.svg') center center no-repeat;
  background-size: 40% auto;
}
.news-map .news-box a.button-silver {
  margin: 0;
}
header .container .header-phone,
header .container .phone-number {
  color: #f6bb3e;
  white-space: nowrap;
}
header .container .header-phone *,
header .container .phone-number * {
  color: #f6bb3e;
}
header h1 {
  text-align: center;
}
header nav li a {
  padding: 20px 12px;
}
header nav .dropdown-menu {
  border-radius: 0;
  margin: 0;
  border: 0;
}
header nav .dropdown-menu li a:hover {
  background: none;
}
header .icon-facebook,
header .icon-google {
  margin-bottom: 10px;
}
header .languages {
  display: inline-flex;
  flex-direction: row;
  align-items: stretch;
  transition: background-color 0.5s;
  border-radius: 3px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  height: 23px;
  line-height: 23px;
  background: linear-gradient(to bottom, #2b7bd6 0%, #2054a0 100%);
  margin: 0 5px 10px 0;
  padding: 0;
  float: right;
}
@media (min-width: 768px) {
  header .languages {
    display: none;
  }
}
header .languages li {
  list-style: none;
  display: flex;
  padding: 0 7px;
  background-image: url("/project/images/blue-divider.gif");
  background-size: 2px 100%;
  background-repeat: no-repeat;
  background-position: top right;
}
header .languages li:last-child {
  background: none;
}
header .languages li a {
  display: flex;
  color: white;
  font-size: 12px;
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.5s;
}
header .languages li a.active {
  opacity: 1;
}
header .languages li a:hover {
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.5s;
}
header .header-box .languages {
  display: none;
  float: none;
}
@media (min-width: 768px) {
  header .header-box .languages {
    display: inline-flex;
  }
}
.flexslider {
  position: relative;
}
.flexslider ol,
.flexslider ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.flexslider .slides .container {
  position: relative;
  padding: 0;
}
.flexslider .slides .container img {
  height: 300px;
}
.flexslider .slides .container .carousel-caption {
  color: #fff;
  text-align: left;
  z-index: 1;
  position: absolute;
  float: left;
  text-shadow: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 400px;
  max-height: 280px;
}
.flexslider .slides .container .carousel-caption h2 {
  padding-top: 0;
  margin-top: 15px;
  color: #fff;
}
.flexslider .flex-direction-nav {
  display: block;
  width: 100%;
  max-width: 1300px;
  position: relative;
  top: -170px;
  margin: auto;
}
#bgslider {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  width: 100%;
}
#bgslider .slides {
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
  text-align: center;
}
#bgslider .slides li {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  list-style: none;
}
#bgslider .slides li .container {
  width: 100%;
  height: 1000px;
}
#bgslider .slides li .bg1 {
  background: url('./images/slider-1.jpg') center top no-repeat;
}
#bgslider .slides li .bg2 {
  background: url('./images/slider-2.jpg') center top no-repeat;
}
#bgslider .slides li .bg3 {
  background: url('./images/slider-3.jpg') center top no-repeat;
}
#bgslider .slides li .bg4 {
  background: url('./images/slider-4.jpg') center top no-repeat;
}
#bgslider .slides li .bg5 {
  background: url('./images/slider-5.jpg') center top no-repeat;
}
.pagination {
  list-style: none;
  padding: 0;
  display: block;
  width: 100%;
  text-align: center;
}
.pagination li {
  display: inline;
  font-size: 16px;
}
.pagination li a {
  padding: 5px 10px;
  color: #0e337d;
}
.pagination li.active a {
  color: black;
  background-color: #faca3f;
}
.news-map .spacer {
  height: 40px;
}
@media (min-width: 768px) {
  .news-map .spacer {
    height: 5px;
  }
}
@media (min-width: 992px) {
  .news-map .spacer {
    height: 48px;
  }
}
.news-map .reference-map {
  margin-top: 5px;
}
.news-map .configurator-hal {
  margin-top: 5px;
}
.hp-ten-years {
  border-radius: 3px;
  overflow: hidden;
  margin-top: 5px;
}
.hp-ten-years img {
  width: auto;
  max-width: 100%;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .hp-ten-years {
    padding-left: 0;
  }
}
.hp-podcast {
  display: flex;
  margin-top: 5px;
}
.hp-podcast img {
  width: auto;
  max-width: 100%;
  border-radius: 3px;
}
.hp-podcast .button {
  display: block;
  position: absolute;
  bottom: 15px;
  right: 30px;
  background: #f6bb3e;
  color: #0e337d;
  padding: 5px 10px 5px 30px;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 14px;
}
.hp-podcast .button:before {
  content: '';
  position: absolute;
  top: 7px;
  left: 10px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 15px solid #0e337d;
}
.hp-podcast .text {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 60px 35px 0 35px;
  flex-direction: column;
}
.hp-podcast .text h5 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 29px;
  color: white;
  margin: 0;
  line-height: 130%;
}
@media (max-width: 1199px) {
  .hp-podcast .button {
    bottom: 10px;
    right: 30px;
    padding: 5px 10px 5px 25px;
    font-size: 12px;
  }
  .hp-podcast .button:before {
    top: 8px;
    left: 8px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 12px solid #0e337d;
  }
  .hp-podcast .text {
    padding: 50px 30px 0 30px;
  }
  .hp-podcast .text h5 {
    font-size: 23px;
    line-height: 130%;
  }
}
@media (max-width: 768px) {
  .hp-podcast {
    padding: 0 15px 0 15px;
    width: auto;
    max-width: 295px;
    margin: 15px auto;
  }
  .hp-podcast .text {
    padding-top: 25%;
  }
}
.hp-contact .box {
  margin: 5px 0;
  border-radius: 3px;
  padding: 20px 10px;
  background-color: white;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.hp-contact .box h3 {
  color: #10357f;
  font-size: 20px;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}
.hp-contact .box div {
  color: #10357f;
  font-size: 14px;
  border-radius: 3px;
}
.hp-contact .box div a {
  color: #10357f;
  text-decoration: underline;
}
.hp-contact .box div.ico {
  padding-left: 35px;
  position: relative;
}
.hp-contact .box div.ico:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 25px;
  background-image: url("/project/images/phone.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 5px center;
}
.hp-contact .box div.ico.email:before {
  background-image: url("/project/images/mail.svg");
  background-size: 100% auto;
  background-position: 0 center;
}
.hp-contact .box div.ico.online-form:before {
  background-image: url("/project/images/online.svg");
  background-size: 100% auto;
  background-position: 0 center;
}
.hp-inquiry a {
  display: flex;
  height: auto;
  line-height: 18px;
  padding: 7px 0 7px 15px;
  column-gap: 5px;
  justify-content: space-between;
}
.hp-inquiry a .arrow-icon {
  background-repeat: repeat-y;
  margin: -7px 0;
  height: auto;
}
.map {
  position: relative;
}
.map .map-pin {
  display: block;
  z-index: 5;
}
.map .map-pin-number {
  position: absolute;
  background: url("../project/images/map-pin.png") no-repeat;
  left: 0;
  top: -95px / 2;
  width: 65px;
  height: 115px;
  padding-top: 20px;
}
.map .map-pin-number span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  z-index: 7;
  color: #103680;
  text-align: center;
}
.map .map-pin-number:hover {
  text-decoration: none;
}
.map .map-bubble-wrapper {
  position: absolute;
  left: 60px / 2 - 10;
  top: -95px;
  padding-left: 10px;
}
.map .map-bubble:after {
  content: '';
  position: absolute;
  top: 40%;
  left: 4px;
  margin-top: -8px;
  width: 0;
  height: 0;
  border-right: 8px solid #f6bb3e;
  border-top: 8px solid;
  border-bottom: 8px solid;
  color: transparent;
}
.map .map-bubble {
  float: left;
  background: #f6bb3e;
  color: #103680;
  border-radius: 5px;
  min-width: 165px;
  padding: 10px;
  font-size: 13px;
}
.map .map-bubble a,
.map .map-bubble :hover {
  color: #103680;
}
.map .map-bubble .image {
  text-align: center;
}
.map .map-bubble .image img {
  max-height: 95px;
  border-radius: 5px 5px 0 0;
}
.map .map-bubble .text {
  padding: 15px 0 10px;
  margin: 0;
  width: 100%;
}
.map .map-bubble .properties {
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 12px;
}
@media only screen and (min-width: 0px) {
  #contacts {
    text-align: left;
    padding: 0 0 10px 0;
  }
  #contacts .contacts .contacts-box address {
    padding: 15px 0 0 0;
    margin: 0;
  }
  #contacts .contacts .contacts-box p {
    padding: 15px 0 0 0;
    margin: 0;
  }
  #contacts .contacts .contacts-box ul {
    padding: 15px 0 0 0;
    margin: 0;
  }
  #contacts .contacts .contacts-box ul li {
    list-style: none;
    padding: 0 0 0 25px;
  }
  #contacts .contacts .contacts-box ul li.phone {
    background: url('./images/earphone-icon.png') no-repeat left 1px;
  }
  #contacts .contacts .contacts-box ul li.email {
    background: url('./images/envelope-icon.png') no-repeat left 3px;
  }
  #contacts .contacts .contacts-box.buttons {
    padding: 5px 0 0 0;
  }
  #contacts .contacts .contacts-box.buttons p {
    padding: 10px 0 0 0;
  }
  #contacts .contacts .contacts-box.buttons p a {
    display: block;
    text-transform: uppercase;
    position: relative;
    height: 45px;
    padding: 15px 10px 0 58px;
    color: #fff;
    border-radius: 4px;
  }
  #contacts .contacts .contacts-box.buttons p a:before {
    width: 46px;
    height: 45px;
    display: block;
    position: absolute;
    left: 8px;
    top: 0;
    content: '';
  }
  #contacts .contacts .contacts-box.buttons p a.inquiry {
    background: #f6b522;
    background: -moz-linear-gradient(top, #09204f 0%, #113c94 100%);
    background: -webkit-linear-gradient(top, #09204f 0%, #113c94 100%);
    background: linear-gradient(to bottom, #09204f 0%, #113c94 100%);
  }
  #contacts .contacts .contacts-box.buttons p a.inquiry:before {
    background: url('./images/demand-icon.png') no-repeat 0 0;
  }
  #contacts .contacts .contacts-box.buttons p a.question {
    background: #f6b522;
    background: -moz-linear-gradient(top, #f4aa0d 0%, #f7c456 100%);
    background: -webkit-linear-gradient(top, #f4aa0d 0%, #f7c456 100%);
    background: linear-gradient(to bottom, #f4aa0d 0%, #f7c456 100%);
  }
  #contacts .contacts .contacts-box.buttons p a.question:before {
    background: url('./images/question-icon-yellow.png') no-repeat 0 0;
  }
  #contacts .contacts-list {
    padding: 30px 0 0 0;
  }
  #contacts .contacts-list h2 {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    margin: 0;
    color: #0e337d;
    text-transform: uppercase;
    position: relative;
  }
  #contacts .contacts-list h2:before,
  #contacts .contacts-list h2:after {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-top: 4px solid #0e337d;
    border-right: 4px solid transparent;
    top: 0;
    left: -14px;
    z-index: 1;
  }
  #contacts .contacts-list h2:after {
    bottom: -4px;
    top: auto;
    height: 0;
    border: 0;
    border-bottom: 4px solid #000;
    border-left: 4px solid transparent;
  }
  #contacts .contacts-list h2 span {
    padding: 10px 15px 7px 10px;
    display: inline-block;
    position: relative;
    left: -10px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    background: #f6b522;
    background: -moz-linear-gradient(top, #f4aa0d 0%, #f7c456 100%);
    background: -webkit-linear-gradient(top, #f4aa0d 0%, #f7c456 100%);
    background: linear-gradient(to bottom, #f4aa0d 0%, #f7c456 100%);
  }
  #contacts .contacts-list h2 span:before {
    content: '';
    display: block;
    position: absolute;
    width: 4px;
    top: 0;
    left: -4px;
    height: calc(100% + 4px);
    background: #f6b522;
    background: -moz-linear-gradient(top, #f4aa0d 0%, #f7c456 100%);
    background: -webkit-linear-gradient(top, #f4aa0d 0%, #f7c456 100%);
    background: linear-gradient(to bottom, #f4aa0d 0%, #f7c456 100%);
  }
  #contacts .contacts-list ul {
    padding: 10px 0 0 0;
    margin: 0;
  }
  #contacts .contacts-list ul li {
    display: flex;
    padding: 0;
    margin: 10px 0 0 0;
    border-radius: 4px;
    overflow: hidden;
    background: #dee1e6;
    background: -moz-linear-gradient(45deg, #dee1e6 0%, #fefffe 100%);
    background: -webkit-linear-gradient(45deg, #dee1e6 0%, #fefffe 100%);
    background: linear-gradient(45deg, #dee1e6 0%, #fefffe 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dee1e6', endColorstr='#fefffe', GradientType=1);
  }
  #contacts .contacts-list ul li .column {
    display: flex;
    flex-direction: column;
  }
  #contacts .contacts-list ul li .image {
    padding: 0;
    margin: 0;
    float: left;
    width: 30%;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    overflow: hidden;
    border-right: 3px solid #f6bb3e;
  }
  #contacts .contacts-list ul li .image img {
    width: 100%;
    height: auto;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
  }
  #contacts .contacts-list ul li .details {
    border: 1px solid #dee1e6;
    border-left: 0;
    padding: 10px 10px 0 10px;
    float: left;
    width: 70%;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  #contacts .contacts-list ul li .details h3 {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    margin: 0;
    font-size: 15px;
  }
  #contacts .contacts-list ul li .details p {
    padding: 3px 0 0 0;
    margin: 0;
    font-size: 15px;
    color: #545454;
  }
  #contacts .contacts-list ul li .details ul {
    padding: 12px 0 0 ;
    margin: 10px 0 0 0;
    border-top: 1px solid #d2d6dd;
    font-size: 13px;
  }
  #contacts .contacts-list ul li .details ul li {
    margin: 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    display: block;
    background: none;
  }
}
@media only screen and (min-width: 768px) {
  #contacts {
    padding: 0 0 20px 0;
  }
  #contacts .contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #contacts .contacts .contacts-box {
    width: 31%;
  }
  #contacts .contacts-list {
    padding: 40px 0 0 0;
  }
  #contacts .contacts-list h2 span {
    padding: 14px 15px 11px 10px;
  }
  #contacts .contacts-list ul {
    display: flex;
    padding: 0;
    flex-wrap: wrap;
    justify-content: left;
  }
  #contacts .contacts-list ul li {
    margin: 20px 3% 0 0;
    width: 48.5%;
  }
  #contacts .contacts-list ul li:nth-child(2n+0) {
    margin-right: 0;
  }
  #contacts .contacts-list ul li .image {
    width: 27%;
  }
  #contacts .contacts-list ul li .image .contact-photo {
    border: 0;
  }
  #contacts .contacts-list ul li .details {
    padding: 15px 15px 0 15px;
    width: 73%;
  }
  #contacts .contacts-list ul li .details h3 {
    font-size: 16px;
  }
  #contacts .contacts-list ul li .details ul {
    font-size: 14px;
    padding: 13px 0 0 ;
    margin: 12px 0 0 0;
    display: block;
    flex-wrap: unset;
    justify-content: unset;
  }
  #contacts .contacts-list ul li .details ul li {
    flex-direction: unset;
    width: 100%;
    padding: 0 0 0 25px;
  }
  #contacts .contacts-list ul li .details ul li.phone {
    background: url('./images/earphone-icon.png') no-repeat left 1px;
  }
  #contacts .contacts-list ul li .details ul li.email {
    background: url('./images/envelope-icon.png') no-repeat left 3px;
  }
  #contacts .contacts-list.first {
    padding-top: 30px;
  }
}
@media only screen and (min-width: 992px) {
  #contacts {
    padding: 0 0 25px 0;
  }
  #contacts .contacts-list {
    padding: 55px 0 0 0;
  }
  #contacts .contacts-list h2:before,
  #contacts .contacts-list h2:after {
    left: -29px;
  }
  #contacts .contacts-list h2 span {
    padding: 16px 25px 11px 25px;
    left: -25px;
  }
  #contacts .contacts-list ul li {
    width: 31.5%;
    margin: 30px 2.75% 0 0;
  }
  #contacts .contacts-list ul li:nth-child(2n+0) {
    margin-right: 2.75%;
  }
  #contacts .contacts-list ul li:nth-child(3n+0) {
    margin-right: 0;
  }
  #contacts .contacts-list.first {
    padding-top: 40px;
  }
}
#references-filter {
  padding: 0 0 15px 0;
}
#references-filter .filter .label {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  padding: 15px 0 0 0;
}
#references-filter .filter .select {
  display: block !important;
  width: 100%;
  margin: 3px 0 0 0;
  box-sizing: border-box;
  position: relative;
  border: 1px solid #d9dce2;
  border-radius: 3px;
  transition: border-color 0.5s;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #fafafb 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #fafafb 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #fafafb 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#fafafb', GradientType=0);
}
#references-filter .filter .select .selected {
  height: 38px;
  cursor: pointer;
  display: block;
  padding: 10px 0 0 10px;
  white-space: nowrap;
  overflow: hidden;
  width: calc(100% - 30px);
}
#references-filter .filter .select .selected:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 5px 0 5px;
  border-color: #0d347c transparent transparent transparent;
  content: '';
  display: block;
  position: absolute;
  right: 10px;
  top: 16px;
}
#references-filter .filter .select .list {
  width: calc(100% + 2px);
  display: none;
  position: absolute;
  left: -1px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  top: -1px;
  box-sizing: border-box;
  border: 1px solid #d9dce2;
  border-radius: 3px;
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #e6e8ec 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #e6e8ec 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #e6e8ec 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e8ec', GradientType=0);
  z-index: 1;
  padding: 15px;
}
#references-filter .filter .select .list p {
  padding: 0;
  font-size: 16px;
  margin: 0;
}
#references-filter .filter .select .list ul {
  padding: 10px 0 0 0;
  margin: 0;
}
#references-filter .filter .select .list ul li {
  margin: 0;
  list-style: none;
  clear: both;
  padding: 10px 0 0 0;
  display: block;
}
#references-filter .filter .select .list ul li .checkbox {
  float: left;
  width: 22px;
  height: 22px;
  position: relative;
}
#references-filter .filter .select .list ul li .checkbox i {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #bbb;
  background: #fff;
  box-sizing: border-box;
  position: relative;
}
#references-filter .filter .select .list ul li .checkbox i.checked:before,
#references-filter .filter .select .list ul li .checkbox i.checked:after {
  background: #0d347c;
  box-shadow: 1px 1px 2px #fff;
  content: '';
  width: 3px;
  height: 8px;
  position: absolute;
  display: block;
  transform: rotate(-45deg);
  right: 7px;
  top: 3px;
}
#references-filter .filter .select .list ul li .checkbox i.checked:after {
  height: 16px;
  top: -4px;
  right: 0;
  transform: rotate(30deg);
}
#references-filter .filter .select .list ul li .checkbox i.other {
  background: red;
  background: -webkit-linear-gradient(left, orange, yellow, green, cyan, blue, violet);
  background: -o-linear-gradient(right, orange, yellow, green, cyan, blue, violet);
  background: -moz-linear-gradient(right, orange, yellow, green, cyan, blue, violet);
  background: linear-gradient(to right, orange, yellow, green, cyan, blue, violet);
}
#references-filter .filter .select .list ul li .checkbox input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  cursor: pointer;
  top: 0;
  left: 0;
  border: 0;
}
#references-filter .filter .select .list ul li .title {
  float: right;
  cursor: pointer;
  padding: 2px 0 0 0;
  margin: 0;
  display: block;
  width: calc(100% - 30px);
}
#references-filter .filter .select .list .submit {
  padding: 20px 0 0 0;
}
#references-filter .filter .select .list .submit a {
  display: inline-block;
  box-sizing: border-box;
  border: 1px solid #f6bb3e;
  border-radius: 5px;
  position: relative;
  height: 48px;
  padding: 0 40px 0 0;
  font-weight: 700;
  cursor: pointer;
  background: #face3f;
  text-decoration: none;
  text-transform: uppercase;
  color: #0d347c;
  background: -moz-linear-gradient(top, #face3f 0%, #f6bb3e 100%);
  background: -webkit-linear-gradient(top, #face3f 0%, #f6bb3e 100%);
  background: linear-gradient(to bottom, #face3f 0%, #f6bb3e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#face3f', endColorstr='#f6bb3e', GradientType=0);
}
#references-filter .filter .select .list .submit a span {
  display: block;
  box-sizing: border-box;
  height: 100%;
  position: relative;
  padding: 14px 14px 0 14px;
}
#references-filter .filter .select .list .submit a span:before,
#references-filter .filter .select .list .submit a span:after {
  content: '';
  display: block;
  top: 0;
  right: 0;
  height: 100%;
  position: absolute;
  width: 1px;
  background: #face3f;
}
#references-filter .filter .select .list .submit a span:after {
  background: #f6bb3e;
  right: 1px;
}
#references-filter .filter .select .list .submit a:before,
#references-filter .filter .select .list .submit a:after {
  content: '';
  width: 2px;
  height: 14px;
  transform: rotate(-45deg);
  position: absolute;
  background: #0d347c;
  display: block;
  top: 12px;
  right: 18px;
}
#references-filter .filter .select .list .submit a:after {
  top: 21px;
  transform: rotate(45deg);
}
#references-filter .filter .select .list .close {
  position: absolute;
  display: block;
  top: 8px;
  cursor: pointer;
  right: 7px;
  width: 15px;
  height: 15px;
}
#references-filter .filter .select .list .close:before,
#references-filter .filter .select .list .close:after {
  background: #0d347c;
  width: 2px;
  height: 12px;
  transform: rotate(45deg);
  content: '';
  transition: background 0.5s;
  position: absolute;
  top: 2px;
  left: 6px;
}
#references-filter .filter .select .list .close:after {
  transform: rotate(-45deg);
}
#references-filter .filter .select .list .close:hover:before,
#references-filter .filter .select .list .close:hover:after {
  background: #f00;
}
#references-filter .filter .select .list.colors ul li .checkbox i {
  border-radius: 100%;
  border-width: 2px;
}
#references-filter .filter .select:hover {
  border-color: #0d347c;
}
#references-filter .filter .reset {
  text-align: right;
  padding: 5px 0 0 0;
  margin: 0;
  display: none;
}
#references-filter .filter .reset a {
  display: inline-block;
  box-sizing: border-box;
  border: 1px solid #f6bb3e;
  border-radius: 5px;
  position: relative;
  height: 40px;
  font-weight: 700;
  cursor: pointer;
  background: #face3f;
  text-decoration: none;
  text-transform: uppercase;
  color: #0d347c;
  background: -moz-linear-gradient(top, #face3f 0%, #f6bb3e 100%);
  background: -webkit-linear-gradient(top, #face3f 0%, #f6bb3e 100%);
  background: linear-gradient(to bottom, #face3f 0%, #f6bb3e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#face3f', endColorstr='#f6bb3e', GradientType=0);
}
#references-filter .filter .reset a span {
  display: block;
  box-sizing: border-box;
  height: 100%;
  position: relative;
  padding: 10px 14px 0 14px;
}
#references-filter .filter .cleaner {
  clear: both;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  #references-filter {
    padding: 10px 0 25px 0;
  }
  #references-filter .filter .label {
    float: left;
    height: 38px;
    padding: 10px 0 0 0;
    font-weight: 400;
    text-transform: none;
    margin: 0 10px 0 0;
  }
  #references-filter .filter .select {
    float: left;
    margin: 0 20px 0 0;
    width: 215px;
  }
  #references-filter .filter .select.last {
    margin: 0;
  }
  #references-filter .filter .reset {
    float: right;
    padding: 0;
  }
  #references-filter .filter .reset a span {
    padding: 12px 14px 0 14px;
  }
}
@media only screen and (min-width: 992px) {
  #references-filter .filter .select {
    width: 250px;
  }
  #references-filter .filter .select.last {
    margin: 0 20px 0 0;
  }
  #references-filter .filter .reset {
    float: left;
  }
}
.modal .close {
  cursor: pointer;
  padding: 0;
  border: 0;
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  background: none;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
#swipebox-overlay {
  background: rgba(13, 13, 13, 0.85);
}
.service-special select {
  color: black;
}
#references-filter .filter-reset {
  margin: 0;
  padding: 8px 20px;
  background-image: none;
  color: #0e337d;
}
#references-filter .filter .select .selected {
  width: 100%;
}
#references-filter .filter .select .list .close {
  top: 0;
  right: 0;
  padding: 20px;
}
#references-filter .filter .select .list .close:before,
#references-filter .filter .select .list .close::after {
  top: 15px;
  left: 25px;
}
#fastForm .form-box {
  margin: 0;
  padding: 20px;
  border-radius: 0 0 5px 5px;
}
#fastForm .form-box .send-button {
  margin: 10px 0 0 0;
}
#fastForm .form-box .label {
  text-align: right;
  padding-right: 0;
}
@media (max-width: 768px) {
  #fastForm .form-box .label {
    text-align: left;
  }
}
#fastForm .form-box label {
  line-height: 36px;
}
#onlineForm .modal-header {
  padding: 20px;
}
#onlineForm .modal-header h4 {
  text-align: center;
  font-size: 18px;
}
#onlineForm .form-box {
  margin: 0;
  padding: 20px;
  border-radius: 0 0 5px 5px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0 4%;
}
#onlineForm .form-box .half-box {
  flex: 0 1 48%;
}
@media (max-width: 480px) {
  #onlineForm .form-box .half-box {
    flex: 0 1 100%;
  }
}
#onlineForm .form-box .full-box {
  flex: 0 1 100%;
}
#onlineForm .form-box .full-box h4 {
  color: #10357f;
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
}
#onlineForm .form-box .send-button {
  margin: 10px 0 0 0;
}
#onlineForm .form-box .label {
  text-align: right;
  padding-right: 0;
}
@media (max-width: 768px) {
  #onlineForm .form-box .label {
    text-align: left;
  }
}
#onlineForm .form-box label {
  line-height: 36px;
}
#onlineForm .modal-footer {
  padding: 15px 20px 20px 20px;
}
#onlineForm .modal-footer .gdpr-info {
  text-align: center;
}
#onlineForm .modal-footer .button-box {
  text-align: center;
  padding: 10px;
}
</pre></body></html>