/**
 *  Import styles
 */
/*
 * Reset all styles 
 *
 * @file reset.less
 * http://meyerweb.com/eric/tools/css/reset/ 
 * v2.0 | 20110126
 * License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*!
 *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('/Resources/Fonts/fontawesome-webfont.eot?v=4.6.3');
  src: url('/Resources/Fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'), url('/Resources/Fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'), url('/Resources/Fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'), url('/Resources/Fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'), url('/Resources/Fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes shake {
  10%,
  90% {
    transform: translate3d(0px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(1px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-1px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(1px, 0, 0);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.xdsoft_datetimepicker {
  box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.506);
  background: #FFFFFF;
  border-bottom: 1px solid #BBBBBB;
  border-left: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  border-top: 1px solid #CCCCCC;
  color: #333333;
  display: block;
  font-family: "Open Sans", sans-serif;
  padding: 8px;
  padding-left: 0px;
  padding-top: 2px;
  position: absolute;
  z-index: 9999;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  display: none;
}
.xdsoft_noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.xdsoft_noselect::selection {
  background: transparent;
}
.xdsoft_noselect::-moz-selection {
  background: transparent;
}
.xdsoft_datetimepicker.xdsoft_inline {
  display: inline-block;
  position: static;
  box-shadow: none;
}
.xdsoft_datetimepicker * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}
.xdsoft_datetimepicker .xdsoft_datepicker,
.xdsoft_datetimepicker .xdsoft_timepicker {
  display: none;
}
.xdsoft_datetimepicker .xdsoft_datepicker.active,
.xdsoft_datetimepicker .xdsoft_timepicker.active {
  display: block;
}
.xdsoft_datetimepicker .xdsoft_datepicker {
  width: 224px;
  float: left;
  margin-left: 8px;
}
.xdsoft_datetimepicker .xdsoft_timepicker {
  width: 58px;
  float: left;
  text-align: center;
  margin-left: 8px;
  margin-top: 0px;
}
.xdsoft_datetimepicker .xdsoft_datepicker.active + .xdsoft_timepicker {
  margin-top: 8px;
  margin-bottom: 3px;
}
.xdsoft_datetimepicker .xdsoft_mounthpicker {
  position: relative;
  text-align: center;
}
.xdsoft_datetimepicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_next,
.xdsoft_datetimepicker .xdsoft_today_button {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFoAAAAeCAYAAACsYQl4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDozQjRCQjRGREU4MkNFMzExQjRDQkIyRDJDOTdBRUI1MCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCQjg0OUYyNTZDODAxMUUzQjMwM0IwMERBNUU0ODQ5NSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCQjg0OUYyNDZDODAxMUUzQjMwM0IwMERBNUU0ODQ5NSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkI5NzE3MjFBN0E2Q0UzMTFBQjJEQjgzMDk5RTNBNTdBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjNCNEJCNEZERTgyQ0UzMTFCNENCQjJEMkM5N0FFQjUwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+aQvATgAAAfVJREFUeNrsmr1OwzAQxzGtkPjYEAuvVGAvfQIGRKADE49gdLwDDwBiZ2RhQUKwICQkWLsgFiRQuIBTucFJ/XFp4+hO+quqnZ4uvzj2nV2RpukCW/22yAgYNINmc7du7DcghCjrkqgOKjF1znpt6rZ0AGWQj7TvCU8d9UM+QAGDrhdyc2Bnc1WVVPBev9V8lBnY+rDwncWZThG4xk4lmxtJy2AHgoY/FySgbSBPwPZ8mEXbQx3aDERb0EbYAYFC7pcAtAvkMWwC0D3NX58S9D/YnoGC7nPWr3Dg9JTbtuHhDShBT8D2CBSK/iIEvVXxpuxSgh7DdgwUTL4iA92zmJb6lKB/YTsECmV+IgK947AGDIqgQ/LojsO135Hn51l2cWlov0JdGNrPUceueXRwilSVgkUyom9Rd6gbLfYTDeO+1v6orn0InTogYDGUkYLO3/wc9BdqqTCKP1Tfi+oTIaCBIL2TES+GTyruT9S61p6BHam+99DFEAgLFklYsIBHwSI9QY80H5ta+1rB/6ovaKihBJeEJbgLbBlQgl+j3lDPqA2tfQV1j3pVn8s+oKHGTSVJ+FqDLeR5bCqJ2E/BCycsoLZETXaKGs7rhKVt+9HZScrZNMi88V8P7LlDbvOZYaJVpMMmBCT4n0o8dTBoNgbdWPsRYACs3r7XyNfbnAAAAABJRU5ErkJggg==');
}
.xdsoft_datetimepicker .xdsoft_prev {
  float: left;
  background-position: -20px 0px;
}
.xdsoft_datetimepicker .xdsoft_today_button {
  float: left;
  background-position: -70px 0px;
  margin-left: 5px;
}
.xdsoft_datetimepicker .xdsoft_next {
  float: right;
  background-position: 0px 0px;
}
.xdsoft_datetimepicker .xdsoft_next,
.xdsoft_datetimepicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_today_button {
  background-color: transparent;
  background-repeat: no-repeat;
  border: 0px none currentColor;
  cursor: pointer;
  display: block;
  height: 30px;
  opacity: 0.5;
  outline: medium none currentColor;
  overflow: hidden;
  padding: 0px;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  width: 20px;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next {
  float: none;
  background-position: -40px -15px;
  height: 15px;
  width: 30px;
  display: block;
  margin-left: 14px;
  margin-top: 7px;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev {
  background-position: -40px 0px;
  margin-bottom: 7px;
  margin-top: 0px;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box {
  height: 151px;
  overflow: hidden;
  border-bottom: 1px solid #DDDDDD;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div {
  background: #F5F5F5;
  border-top: 1px solid #DDDDDD;
  color: #666666;
  font-size: 12px;
  text-align: center;
  border-collapse: collapse;
  cursor: pointer;
  border-bottom-width: 0px;
  height: 25px;
  line-height: 25px;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:first-child {
  border-top-width: 0px;
}
.xdsoft_datetimepicker .xdsoft_today_button:hover,
.xdsoft_datetimepicker .xdsoft_next:hover,
.xdsoft_datetimepicker .xdsoft_prev:hover {
  opacity: 1;
}
.xdsoft_datetimepicker .xdsoft_label {
  display: inline;
  position: relative;
  z-index: 9999;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  background-color: #fff;
  float: left;
  width: 182px;
  text-align: center;
  cursor: pointer;
}
.xdsoft_datetimepicker .xdsoft_label:hover {
  text-decoration: underline;
}
.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select {
  border: 1px solid #ccc;
  position: absolute;
  display: block;
  right: 0px;
  top: 30px;
  z-index: 101;
  display: none;
  background: #fff;
  max-height: 160px;
  overflow-y: hidden;
}
.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect {
  right: -7px;
}
.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect {
  right: 2px;
}
.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
  color: #fff;
  background: #ff8000;
}
.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option {
  padding: 2px 10px 2px 5px;
}
.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
  background: #33AAFF;
  box-shadow: #178FE5 0px 1px 3px 0px inset;
  color: #fff;
  font-weight: 700;
}
.xdsoft_datetimepicker .xdsoft_month {
  width: 95px;
  text-align: right;
}
.xdsoft_datetimepicker .xdsoft_calendar {
  clear: both;
}
.xdsoft_datetimepicker .xdsoft_year {
  width: 56px;
}
.xdsoft_datetimepicker .xdsoft_calendar table {
  border-collapse: collapse;
  width: 100%;
}
.xdsoft_datetimepicker .xdsoft_calendar td > div {
  padding-right: 5px;
}
.xdsoft_datetimepicker .xdsoft_calendar th {
  height: 25px;
}
.xdsoft_datetimepicker .xdsoft_calendar td,
.xdsoft_datetimepicker .xdsoft_calendar th {
  width: 14.2857142%;
  text-align: center;
  border: 1px solid #DDDDDD;
  color: #666666;
  font-size: 12px;
  text-align: right;
  padding: 0px;
  border-collapse: collapse;
  cursor: pointer;
  height: 25px;
}
.xdsoft_datetimepicker .xdsoft_calendar td:not(.xdsoft_weekend),
.xdsoft_datetimepicker .xdsoft_calendar th:not(.xdsoft_weekend) {
  background: #F5F5F5;
}
.xdsoft_datetimepicker .xdsoft_calendar th {
  background: #F1F1F1;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today {
  color: #33AAFF;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background: #33AAFF;
  box-shadow: #178FE5 0px 1px 3px 0px inset;
  color: #fff;
  font-weight: 600;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled,
.xdsoft_datetimepicker .xdsoft_time_box > div > div.xdsoft_disabled {
  opacity: 0.5;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #fff !important;
  background: #ff8000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_disabled:hover {
  color: inherit  !important;
  background: inherit !important;
  box-shadow: inherit !important;
}
.xdsoft_datetimepicker .xdsoft_calendar th {
  font-weight: 600;
  text-align: center;
  color: #999;
  cursor: default;
}
.xdsoft_datetimepicker .xdsoft_copyright {
  color: #ccc !important;
  font-size: 10px;
  clear: both;
  float: none;
  margin-left: 8px;
}
.xdsoft_datetimepicker .xdsoft_copyright a {
  color: #eee !important;
}
.xdsoft_datetimepicker .xdsoft_copyright a:hover {
  color: #aaa !important;
}
.xdsoft_time_box {
  position: relative;
  border: 1px solid #ccc;
}
.xdsoft_scrollbar > .xdsoft_scroller {
  background: #ccc !important;
  height: 20px;
  border-radius: 3px;
}
.xdsoft_scrollbar {
  position: absolute;
  width: 7px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  cursor: pointer;
}
.xdsoft_scroller_box {
  position: relative;
}
/**
 *  Change weekend day color
 *
 */
.xdsoft_weekend {
  background: #ffe4e4;
}
/* Sortable tables */
table.tablesorter thead tr th,
table.tablesorter tfoot tr th {
  padding-right: 20px;
}
table.tablesorter thead tr .header {
  background-image: url(/Resources/Images/bg.gif);
  background-repeat: no-repeat;
  background-position: center right;
  cursor: pointer;
}
table.tablesorter thead tr .headerSortUp {
  background-image: url(/Resources/Images/asc.gif);
}
table.tablesorter thead tr .headerSortDown {
  background-image: url(/Resources/Images/desc.gif);
}
/**
 * GitHub Gist Theme
 * Author : Louis Barranqueiro - https://github.language-com/LouisBarranqueiro
 *
 *  NOTE:   This file is changed by us. .hljs styles were removed and transfered 
 *          highligh.language-less file.
 */
.hljs-comment,
.language-bash .hljs-shebang,
.language-java .hljs-javadoc,
.language-javascript .hljs-javadoc,
.language-rust .hljs-preprocessor {
  color: #969896;
}
.hljs-string,
.language-apache .hljs-sqbracket,
.language-coffeescript .hljs-subst,
.language-coffeescript .hljs-regexp,
.language-cpp .hljs-preprocessor,
.language-c .hljs-preprocessor,
.language-javascript .hljs-regexp,
.language-json .hljs-attribute,
.language-makefile .hljs-variable,
.language-markdown .hljs-value,
.language-markdown .hljs-link_label,
.language-markdown .hljs-strong,
.language-markdown .hljs-emphasis,
.language-markdown .hljs-blockquote,
.language-nginx .hljs-regexp,
.language-nginx .hljs-number,
.language-objectivec .hljs-preprocessor .hljs-title,
.language-perl .hljs-regexp,
.language-php .hljs-regexp,
.language-xml .hljs-value,
.language-less .hljs-built_in,
.language-scss .hljs-built_in {
  color: #df5000;
}
.hljs-keyword,
.language-css .hljs-at_rule,
.language-css .hljs-important,
.language-http .hljs-request,
.language-ini .hljs-setting,
.language-haskell .hljs-type,
.language-java .hljs-javadoctag,
.language-javascript .hljs-tag,
.language-javascript .hljs-javadoctag,
.language-nginx .hljs-title,
.language-objectivec .hljs-preprocessor,
.language-php .hljs-phpdoc,
.language-sql .hljs-built_in,
.language-less .hljs-tag,
.language-less .hljs-at_rule,
.language-scss .hljs-tag,
.language-scss .hljs-at_rule,
.language-scss .hljs-important,
.language-stylus .hljs-at_rule,
.language-go .hljs-typename,
.language-swift .hljs-preprocessor {
  color: #a71d5d;
}
.language-apache .hljs-common,
.language-apache .hljs-cbracket,
.language-apache .hljs-keyword,
.language-bash .hljs-literal,
.language-bash .hljs-built_in,
.language-coffeescript .hljs-literal,
.language-coffeescript .hljs-built_in,
.language-coffeescript .hljs-number,
.language-cpp .hljs-number,
.language-cpp .hljs-built_in,
.language-c .hljs-number,
.language-c .hljs-built_in,
.language-cs .hljs-number,
.language-cs .hljs-built_in,
.language-css .hljs-attribute,
.language-css .hljs-hexcolor,
.language-css .hljs-number,
.language-css .hljs-function,
.language-haskell .hljs-number,
.language-http .hljs-literal,
.language-http .hljs-attribute,
.language-java .hljs-number,
.language-javascript .hljs-built_in,
.language-javascript .hljs-literal,
.language-javascript .hljs-number,
.language-json .hljs-number,
.language-makefile .hljs-keyword,
.language-markdown .hljs-link_reference,
.language-nginx .hljs-built_in,
.language-objectivec .hljs-literal,
.language-objectivec .hljs-number,
.language-objectivec .hljs-built_in,
.language-php .hljs-literal,
.language-php .hljs-number,
.language-python .hljs-number,
.language-ruby .hljs-prompt,
.language-ruby .hljs-constant,
.language-ruby .hljs-number,
.language-ruby .hljs-subst .hljs-keyword,
.language-ruby .hljs-symbol,
.language-rust .hljs-number,
.language-sql .hljs-number,
.language-puppet .hljs-function,
.language-less .hljs-number,
.language-less .hljs-hexcolor,
.language-less .hljs-function,
.language-less .hljs-attribute,
.language-scss .hljs-preprocessor,
.language-scss .hljs-number,
.language-scss .hljs-hexcolor,
.language-scss .hljs-function,
.language-scss .hljs-attribute,
.language-stylus .hljs-number,
.language-stylus .hljs-hexcolor,
.language-stylus .hljs-attribute,
.language-stylus .hljs-params,
.language-go .hljs-built_in,
.language-go .hljs-constant,
.language-swift .hljs-built_in,
.language-swift .hljs-number {
  color: #0086b3;
}
.language-apache .hljs-tag,
.language-cs .hljs-xmlDocTag,
.language-css .hljs-tag,
.language-xml .hljs-title,
.language-stylus .hljs-tag {
  color: #63a35c;
}
.language-bash .hljs-variable,
.language-cs .hljs-preprocessor,
.language-cs .hljs-preprocessor .hljs-keyword,
.language-css .hljs-attr_selector,
.language-css .hljs-value,
.language-ini .hljs-value,
.language-ini .hljs-keyword,
.language-javascript .hljs-tag .hljs-title,
.language-makefile .hljs-constant,
.language-nginx .hljs-variable,
.language-xml .hljs-tag,
.language-scss .hljs-variable {
  color: #333333;
}
.language-bash .hljs-title,
.language-coffeescript .hljs-title,
.language-cpp .hljs-title,
.language-c .hljs-title,
.language-cs .hljs-title,
.language-css .hljs-id,
.language-css .hljs-class,
.language-css .hljs-pseudo,
.language-ini .hljs-title,
.language-haskell .hljs-title,
.language-haskell .hljs-pragma,
.language-java .hljs-title,
.language-javascript .hljs-title,
.language-makefile .hljs-title,
.language-objectivec .hljs-title,
.language-perl .hljs-sub,
.language-php .hljs-title,
.language-python .hljs-decorator,
.language-python .hljs-title,
.language-ruby .hljs-parent,
.language-ruby .hljs-title,
.language-rust .hljs-title,
.language-xml .hljs-attribute,
.language-puppet .hljs-title,
.language-less .hljs-id,
.language-less .hljs-pseudo,
.language-less .hljs-class,
.language-scss .hljs-id,
.language-scss .hljs-pseudo,
.language-scss .hljs-class,
.language-stylus .hljs-class,
.language-stylus .hljs-id,
.language-stylus .hljs-pseudo,
.language-stylus .hljs-title,
.language-swift .hljs-title,
.language-diff .hljs-chunk {
  color: #795da3;
}
.language-coffeescript .hljs-reserved,
.language-coffeescript .hljs-attribute {
  color: #1d3e81;
}
.language-diff .hljs-chunk {
  font-weight: bold;
}
.language-diff .hljs-addition {
  color: #55a532;
  background-color: #eaffea;
}
.language-diff .hljs-deletion {
  color: #bd2c00;
  background-color: #ffecec;
}
.language-markdown .hljs-link_url {
  text-decoration: underline;
}
/**
 *  WATCH OUT!!
 *  
 *  This is a custom version of the balloon less. Do not download a newer
 *  version without consulting Jesus first.
 */
* [data-balloon] {
  position: relative;
}
* [data-balloon]::before,
* [data-balloon]::after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.18s ease-out 0.18s;
  transition: all 0.18s ease-out 0.18s;
  z-index: 999999999;
  bottom: 100%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, 10px);
  -ms-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}
* [data-balloon]::after {
  background: rgba(17, 17, 17, 0.9);
  border-radius: 4px;
  color: #fff;
  content: attr(data-balloon);
  font-size: 12px;
  padding: 0.5em 1em;
  white-space: nowrap;
  margin-bottom: 6px;
}
* [data-balloon]::before {
  content: "";
  margin-bottom: 5px;
}
* [data-balloon]:hover::before,
* [data-balloon]:hover::after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background-color: rgba(17, 17, 17, 0.9);
}
* [data-balloon][data-balloon-break]::after {
  white-space: normal;
}
* [data-balloon][data-balloon-type="success"]::after {
  margin-top: 11px;
  background-color: #27ae60;
}
* [data-balloon][data-balloon-type="success"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="#27ae60" transform="rotate(0)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-type="primary"]::after {
  margin-top: 11px;
  background-color: #008cba;
}
* [data-balloon][data-balloon-type="primary"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="#008cba" transform="rotate(0)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-type="warning"]::after {
  margin-top: 11px;
  background-color: #FF7400;
}
* [data-balloon][data-balloon-type="warning"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="#FF7400" transform="rotate(0)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-type="danger"]::after {
  margin-top: 11px;
  background-color: #c0392b;
}
* [data-balloon][data-balloon-type="danger"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="#c0392b" transform="rotate(0)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-type="info"]::after {
  margin-top: 11px;
  background-color: #3498db;
}
* [data-balloon][data-balloon-type="info"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="#3498db" transform="rotate(0)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-pos="right"][data-balloon-type="success"]::before,
* [data-balloon][data-balloon-pos="right"][data-balloon-type="success"]::after {
  bottom: auto;
  left: 100%;
  top: calc(50% - 10px);
  background-color: #27ae60;
  -webkit-transform: translate(-10px, -50%);
  -ms-transform: translate(-10px, -50%);
  transform: translate(-10px, -50%);
}
* [data-balloon][data-balloon-pos="right"][data-balloon-type="success"]::after {
  margin-left: 11px;
  margin-top: 11px;
}
* [data-balloon][data-balloon-pos="right"][data-balloon-type="success"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="#27ae60" transform="rotate(90 6 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px;
  margin-top: 10px;
}
* [data-balloon][data-balloon-pos="right"][data-balloon-type="success"]:hover::before,
* [data-balloon][data-balloon-pos="right"][data-balloon-type="success"]:hover::after {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
* [data-balloon][data-balloon-pos="right"][data-balloon-type="primary"]::before,
* [data-balloon][data-balloon-pos="right"][data-balloon-type="primary"]::after {
  bottom: auto;
  left: 100%;
  top: calc(50% - 10px);
  background-color: #008cba;
  -webkit-transform: translate(-10px, -50%);
  -ms-transform: translate(-10px, -50%);
  transform: translate(-10px, -50%);
}
* [data-balloon][data-balloon-pos="right"][data-balloon-type="primary"]::after {
  margin-left: 11px;
  margin-top: 11px;
}
* [data-balloon][data-balloon-pos="right"][data-balloon-type="primary"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="#008cba" transform="rotate(90 6 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px;
  margin-top: 10px;
}
* [data-balloon][data-balloon-pos="right"][data-balloon-type="primary"]:hover::before,
* [data-balloon][data-balloon-pos="right"][data-balloon-type="primary"]:hover::after {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
* [data-balloon][data-balloon-pos="right"][data-balloon-type="warning"]::before,
* [data-balloon][data-balloon-pos="right"][data-balloon-type="warning"]::after {
  bottom: auto;
  left: 100%;
  top: calc(50% - 10px);
  background-color: #FF7400;
  -webkit-transform: translate(-10px, -50%);
  -ms-transform: translate(-10px, -50%);
  transform: translate(-10px, -50%);
}
* [data-balloon][data-balloon-pos="right"][data-balloon-type="warning"]::after {
  margin-left: 11px;
  margin-top: 11px;
}
* [data-balloon][data-balloon-pos="right"][data-balloon-type="warning"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="#FF7400" transform="rotate(90 6 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px;
  margin-top: 10px;
}
* [data-balloon][data-balloon-pos="right"][data-balloon-type="warning"]:hover::before,
* [data-balloon][data-balloon-pos="right"][data-balloon-type="warning"]:hover::after {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
* [data-balloon][data-balloon-pos="right"][data-balloon-type="danger"]::before,
* [data-balloon][data-balloon-pos="right"][data-balloon-type="danger"]::after {
  bottom: auto;
  left: 100%;
  top: calc(50% - 10px);
  background-color: #c0392b;
  -webkit-transform: translate(-10px, -50%);
  -ms-transform: translate(-10px, -50%);
  transform: translate(-10px, -50%);
}
* [data-balloon][data-balloon-pos="right"][data-balloon-type="danger"]::after {
  margin-left: 11px;
  margin-top: 11px;
}
* [data-balloon][data-balloon-pos="right"][data-balloon-type="danger"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="#c0392b" transform="rotate(90 6 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px;
  margin-top: 10px;
}
* [data-balloon][data-balloon-pos="right"][data-balloon-type="danger"]:hover::before,
* [data-balloon][data-balloon-pos="right"][data-balloon-type="danger"]:hover::after {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
* [data-balloon][data-balloon-pos="right"][data-balloon-type="info"]::before,
* [data-balloon][data-balloon-pos="right"][data-balloon-type="info"]::after {
  bottom: auto;
  left: 100%;
  top: calc(50% - 10px);
  background-color: #3498db;
  -webkit-transform: translate(-10px, -50%);
  -ms-transform: translate(-10px, -50%);
  transform: translate(-10px, -50%);
}
* [data-balloon][data-balloon-pos="right"][data-balloon-type="info"]::after {
  margin-left: 11px;
  margin-top: 11px;
}
* [data-balloon][data-balloon-pos="right"][data-balloon-type="info"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="#3498db" transform="rotate(90 6 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px;
  margin-top: 10px;
}
* [data-balloon][data-balloon-pos="right"][data-balloon-type="info"]:hover::before,
* [data-balloon][data-balloon-pos="right"][data-balloon-type="info"]:hover::after {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
* [data-balloon][data-balloon-pos="left"][data-balloon-type="success"]::before,
* [data-balloon][data-balloon-pos="left"][data-balloon-type="success"]::after {
  bottom: auto;
  left: auto;
  right: 100%;
  top: calc(50% - 10px);
  background-color: #27ae60;
  -webkit-transform: translate(10px, -50%);
  -ms-transform: translate(10px, -50%);
  transform: translate(10px, -50%);
}
* [data-balloon][data-balloon-pos="left"][data-balloon-type="success"]::after {
  margin-right: 11px;
  margin-top: 11px;
}
* [data-balloon][data-balloon-pos="left"][data-balloon-type="success"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="#27ae60" transform="rotate(-90 18 18)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-top: 10px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-pos="left"][data-balloon-type="success"]:hover::before,
* [data-balloon][data-balloon-pos="left"][data-balloon-type="success"]:hover::after {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
* [data-balloon][data-balloon-pos="left"][data-balloon-type="primary"]::before,
* [data-balloon][data-balloon-pos="left"][data-balloon-type="primary"]::after {
  bottom: auto;
  left: auto;
  right: 100%;
  top: calc(50% - 10px);
  background-color: #008cba;
  -webkit-transform: translate(10px, -50%);
  -ms-transform: translate(10px, -50%);
  transform: translate(10px, -50%);
}
* [data-balloon][data-balloon-pos="left"][data-balloon-type="primary"]::after {
  margin-right: 11px;
  margin-top: 11px;
}
* [data-balloon][data-balloon-pos="left"][data-balloon-type="primary"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="#008cba" transform="rotate(-90 18 18)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-top: 10px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-pos="left"][data-balloon-type="primary"]:hover::before,
* [data-balloon][data-balloon-pos="left"][data-balloon-type="primary"]:hover::after {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
* [data-balloon][data-balloon-pos="left"][data-balloon-type="warning"]::before,
* [data-balloon][data-balloon-pos="left"][data-balloon-type="warning"]::after {
  bottom: auto;
  left: auto;
  right: 100%;
  top: calc(50% - 10px);
  background-color: #FF7400;
  -webkit-transform: translate(10px, -50%);
  -ms-transform: translate(10px, -50%);
  transform: translate(10px, -50%);
}
* [data-balloon][data-balloon-pos="left"][data-balloon-type="warning"]::after {
  margin-right: 11px;
  margin-top: 11px;
}
* [data-balloon][data-balloon-pos="left"][data-balloon-type="warning"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="#FF7400" transform="rotate(-90 18 18)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-top: 10px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-pos="left"][data-balloon-type="warning"]:hover::before,
* [data-balloon][data-balloon-pos="left"][data-balloon-type="warning"]:hover::after {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
* [data-balloon][data-balloon-pos="left"][data-balloon-type="danger"]::before,
* [data-balloon][data-balloon-pos="left"][data-balloon-type="danger"]::after {
  bottom: auto;
  left: auto;
  right: 100%;
  top: calc(50% - 10px);
  background-color: #c0392b;
  -webkit-transform: translate(10px, -50%);
  -ms-transform: translate(10px, -50%);
  transform: translate(10px, -50%);
}
* [data-balloon][data-balloon-pos="left"][data-balloon-type="danger"]::after {
  margin-right: 11px;
  margin-top: 11px;
}
* [data-balloon][data-balloon-pos="left"][data-balloon-type="danger"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="#c0392b" transform="rotate(-90 18 18)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-top: 10px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-pos="left"][data-balloon-type="danger"]:hover::before,
* [data-balloon][data-balloon-pos="left"][data-balloon-type="danger"]:hover::after {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
* [data-balloon][data-balloon-pos="left"][data-balloon-type="info"]::before,
* [data-balloon][data-balloon-pos="left"][data-balloon-type="info"]::after {
  bottom: auto;
  left: auto;
  right: 100%;
  top: calc(50% - 10px);
  background-color: #3498db;
  -webkit-transform: translate(10px, -50%);
  -ms-transform: translate(10px, -50%);
  transform: translate(10px, -50%);
}
* [data-balloon][data-balloon-pos="left"][data-balloon-type="info"]::after {
  margin-right: 11px;
  margin-top: 11px;
}
* [data-balloon][data-balloon-pos="left"][data-balloon-type="info"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="#3498db" transform="rotate(-90 18 18)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-top: 10px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-pos="left"][data-balloon-type="info"]:hover::before,
* [data-balloon][data-balloon-pos="left"][data-balloon-type="info"]:hover::after {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
* [data-balloon][data-balloon-pos="down"][data-balloon-type="success"]::before,
* [data-balloon][data-balloon-pos="down"][data-balloon-type="success"]::after {
  bottom: auto;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, -10px);
  -ms-transform: translate(-50%, -10px);
  transform: translate(-50%, -10px);
}
* [data-balloon][data-balloon-pos="down"][data-balloon-type="success"]::after {
  margin-top: 11px;
  background-color: #27ae60;
}
* [data-balloon][data-balloon-pos="down"][data-balloon-type="success"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="#27ae60" transform="rotate(180 18 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-pos="down"][data-balloon-type="success"]:hover::before,
* [data-balloon][data-balloon-pos="down"][data-balloon-type="success"]:hover::after {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
* [data-balloon][data-balloon-pos="down"][data-balloon-type="primary"]::before,
* [data-balloon][data-balloon-pos="down"][data-balloon-type="primary"]::after {
  bottom: auto;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, -10px);
  -ms-transform: translate(-50%, -10px);
  transform: translate(-50%, -10px);
}
* [data-balloon][data-balloon-pos="down"][data-balloon-type="primary"]::after {
  margin-top: 11px;
  background-color: #008cba;
}
* [data-balloon][data-balloon-pos="down"][data-balloon-type="primary"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="#008cba" transform="rotate(180 18 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-pos="down"][data-balloon-type="primary"]:hover::before,
* [data-balloon][data-balloon-pos="down"][data-balloon-type="primary"]:hover::after {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
* [data-balloon][data-balloon-pos="down"][data-balloon-type="warning"]::before,
* [data-balloon][data-balloon-pos="down"][data-balloon-type="warning"]::after {
  bottom: auto;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, -10px);
  -ms-transform: translate(-50%, -10px);
  transform: translate(-50%, -10px);
}
* [data-balloon][data-balloon-pos="down"][data-balloon-type="warning"]::after {
  margin-top: 11px;
  background-color: #FF7400;
}
* [data-balloon][data-balloon-pos="down"][data-balloon-type="warning"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="#FF7400" transform="rotate(180 18 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-pos="down"][data-balloon-type="warning"]:hover::before,
* [data-balloon][data-balloon-pos="down"][data-balloon-type="warning"]:hover::after {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
* [data-balloon][data-balloon-pos="down"][data-balloon-type="danger"]::before,
* [data-balloon][data-balloon-pos="down"][data-balloon-type="danger"]::after {
  bottom: auto;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, -10px);
  -ms-transform: translate(-50%, -10px);
  transform: translate(-50%, -10px);
}
* [data-balloon][data-balloon-pos="down"][data-balloon-type="danger"]::after {
  margin-top: 11px;
  background-color: #c0392b;
}
* [data-balloon][data-balloon-pos="down"][data-balloon-type="danger"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="#c0392b" transform="rotate(180 18 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-pos="down"][data-balloon-type="danger"]:hover::before,
* [data-balloon][data-balloon-pos="down"][data-balloon-type="danger"]:hover::after {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
* [data-balloon][data-balloon-pos="down"][data-balloon-type="info"]::before,
* [data-balloon][data-balloon-pos="down"][data-balloon-type="info"]::after {
  bottom: auto;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, -10px);
  -ms-transform: translate(-50%, -10px);
  transform: translate(-50%, -10px);
}
* [data-balloon][data-balloon-pos="down"][data-balloon-type="info"]::after {
  margin-top: 11px;
  background-color: #3498db;
}
* [data-balloon][data-balloon-pos="down"][data-balloon-type="info"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="#3498db" transform="rotate(180 18 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-pos="down"][data-balloon-type="info"]:hover::before,
* [data-balloon][data-balloon-pos="down"][data-balloon-type="info"]:hover::after {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
* [data-balloon][data-balloon-pos="up"][data-balloon-type="success"]::after {
  margin-top: 11px;
  background-color: #27ae60;
}
* [data-balloon][data-balloon-pos="up"][data-balloon-type="success"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="#27ae60" transform="rotate(0)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-pos="up"][data-balloon-type="primary"]::after {
  margin-top: 11px;
  background-color: #008cba;
}
* [data-balloon][data-balloon-pos="up"][data-balloon-type="primary"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="#008cba" transform="rotate(0)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-pos="up"][data-balloon-type="warning"]::after {
  margin-top: 11px;
  background-color: #FF7400;
}
* [data-balloon][data-balloon-pos="up"][data-balloon-type="warning"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="#FF7400" transform="rotate(0)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-pos="up"][data-balloon-type="danger"]::after {
  margin-top: 11px;
  background-color: #c0392b;
}
* [data-balloon][data-balloon-pos="up"][data-balloon-type="danger"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="#c0392b" transform="rotate(0)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-pos="up"][data-balloon-type="info"]::after {
  margin-top: 11px;
  background-color: #3498db;
}
* [data-balloon][data-balloon-pos="up"][data-balloon-type="info"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="#3498db" transform="rotate(0)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-pos="down"]::before,
* [data-balloon][data-balloon-pos="down"]::after {
  bottom: auto;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, -10px);
  -ms-transform: translate(-50%, -10px);
  transform: translate(-50%, -10px);
}
* [data-balloon][data-balloon-pos="down"]::after {
  margin-top: 11px;
  background-color: rgba(17, 17, 17, 0.9);
}
* [data-balloon][data-balloon-pos="down"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(180 18 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-pos="down"]:hover::before,
* [data-balloon][data-balloon-pos="down"]:hover::after {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
* [data-balloon][data-balloon-pos="up"]::after {
  margin-top: 11px;
  background-color: rgba(17, 17, 17, 0.9);
}
* [data-balloon][data-balloon-pos="up"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(0)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-pos="left"]::before,
* [data-balloon][data-balloon-pos="left"]::after {
  bottom: auto;
  left: auto;
  right: 100%;
  top: calc(50% - 10px);
  background-color: rgba(17, 17, 17, 0.9);
  -webkit-transform: translate(10px, -50%);
  -ms-transform: translate(10px, -50%);
  transform: translate(10px, -50%);
}
* [data-balloon][data-balloon-pos="left"]::after {
  margin-right: 11px;
  margin-top: 11px;
}
* [data-balloon][data-balloon-pos="left"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(-90 18 18)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-top: 10px;
  margin-bottom: 0;
}
* [data-balloon][data-balloon-pos="left"]:hover::before,
* [data-balloon][data-balloon-pos="left"]:hover::after {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
* [data-balloon][data-balloon-pos="right"]::before,
* [data-balloon][data-balloon-pos="right"]::after {
  bottom: auto;
  left: 100%;
  top: calc(50% - 10px);
  background-color: rgba(17, 17, 17, 0.9);
  -webkit-transform: translate(-10px, -50%);
  -ms-transform: translate(-10px, -50%);
  transform: translate(-10px, -50%);
}
* [data-balloon][data-balloon-pos="right"]::after {
  margin-left: 11px;
  margin-top: 11px;
}
* [data-balloon][data-balloon-pos="right"]::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(90 6 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px;
  margin-top: 10px;
}
* [data-balloon][data-balloon-pos="right"]:hover::before,
* [data-balloon][data-balloon-pos="right"]:hover::after {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
* [data-balloon][data-balloon-length]::after {
  white-space: normal;
}
* [data-balloon][data-balloon-length="small"]::after {
  width: 80px;
}
* [data-balloon][data-balloon-length="medium"]::after {
  width: 150px;
}
* [data-balloon][data-balloon-length="large"]::after {
  width: 260px;
}
* [data-balloon][data-balloon-length="fit"]::after {
  width: 100%;
}
* [data-balloon][data-balloon-length="xlarge"]::after {
  width: 90vw;
}
@media screen and (min-width: 768px) {
  * [data-balloon][data-balloon-length="xlarge"]::after {
    width: 380px;
  }
}
* [data-balloon]:not([data-balloon-pos]):not([data-balloon-type])::after {
  margin-top: 11px;
  background-color: rgba(17, 17, 17, 0.9);
}
* [data-balloon]:not([data-balloon-pos]):not([data-balloon-type])::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(0)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
/* 
 * This mixin can be used for every element that looks like a box
 *
 * @file Box.less
 */
/* 
 * Styles for the superscript text, 
 * which appears smaller above the normal line of the text 
 * @file Sup.less
 */
sup {
  font-size: x-small;
  line-height: 0;
  position: relative;
  vertical-align: super;
  background-color: #C8102E;
  border: 1px solid #C8102E;
  color: #fff;
  border-radius: 15rem;
  padding: 1px 4px;
  margin: 1px;
  text-decoration: none;
}
/**
 *  The zebra-list() is a mixin for constructing a list
 *  that acts as a zebra list.
 *
 *  @author         Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file           zebra-list.less
 *  @documentation  ignore
 *  @copyright      Copernica BV  2018
 */
/**
 *  The default-list() mixin is a mixin for default lists, 
 *  that drop the default list styles and add fixed
 *  behavior for list items.
 *
 *  @author         Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file           default-list.less
 *  @documentation  ignore
 *  @copyright      Copernica BV  2018
 */
/**
 *  Turns the element into a box would really round edges.
 *  
 *  @param  size  The size of the roundness.  
 */
/**
 *  These are the variables that we use for 
 * general styles on the website
 *
 *  @file    Variables.less
 */
/*
 * Set the scroll-behavior: smooth to the <html> element 
 * to enable smooth scrolling for the whole website
 *
 * @file Scroll.less
 *
 */
html {
  scroll-behavior: smooth;
}
/* 
 * Most of the pages have an introduction , which can contain a main title,
 * sub title and a short description of the page.
 * This class is used on the pages that do NOT contain a hero Container
 *
 * @file Introduction.less
 */
.inner-introduction {
  text-align: center;
  padding: 4rem 0;
}
.inner-introduction h1 {
  font-size: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 880px) {
  .inner-introduction h1 {
    font-size: 2rem;
  }
}
.inner-introduction h2 {
  font-weight: 300;
}
.inner-introduction h2,
.inner-introduction p {
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 880px) {
  .inner-introduction h2,
  .inner-introduction p {
    width: 100%;
  }
}
.inner-introduction.small-text h1 {
  font-size: 1.5rem;
}
.inner-introduction.small-intro {
  padding: 2rem 0;
}
@media screen and (max-width: 880px) {
  .inner-introduction {
    padding: 2rem 0;
  }
}
/**
 *  Functions.less
 *  
 *  This file houses all Less mixins that will make your life more 
 *  pleasant. Updated on 21 oktober 2014. Deprecated vendor prefixes 
 *  have been safely removed. 
 * 
 */
/**
 *  Calculates the font-size and line-height and converts it to
 *  rem with pixel fallback for ancient browsers
 *
 *  @param  The size of the font
 */
/**
 *  Small mixin to attach icons to any given element. 
 *
 *  NOTE:   This mixing should be called on selected targeting actual element, 
 *          not pseudoelement.
 *
 *  @param  The unicode glyph of the icon.
 */
/**
 *  Helper class to center the element
 *
 */
/**
 *  This function allows you to overwrite 
 *  the delay and duration of AnimateCSS animations. For a complete
 *  overview of the animations available in scriptkit check
 *  https://github.com/daneden/animate.css
 * 
 *  Although all modern browsers support the animation
 *  property, they tend to pick the original prefixed one if you try to
 *  overwrite a property. Hence this mixin. 
 *  
 *  @param  string  delay in seconds
 *  @param  string  duration in seconds
 */
/**
 *  Scale an element to the given fraction.
 *
 *  @param  float   scale factor, 1 represents normal size
 */
/**
 *  Define a transition for certain (or all) css properties)
 *
 *  @param  string  property to transition
 *  @param  string  duration for transition to take
 *  @param  easing  "ease"|"linear"|"ease-in"|"ease-out"|"ease-in-out"
 *
 *  Note: this function is unsupported in Internet Explorer below version 9
 */
/**
 *  Function to eliminate list styling
 */
/**
 *  Helper to get nice text shadow. No prefixes needed
 *  just a nice shadow. 
 *  
 *  @param string
 */
/**
 *  Helper to get nice box shadow. No prefixes needed
 *  just a nice shadow.
 *
 *  @param string 
 */
/**
 *  Function to prevent that text gets selected
 *  when clicking on buttons 
 */
/** 
 *  The box-sizing CSS property is used to alter the default 
 *  CSS box model used to calculate widths and heights of elements.
 *  Important to use for FF, that does not correctly follow 
 *  the CSS box model specification.
 *
 *  @param string
 */
/**
 *  The background-clip CSS property specifies whether 
 *  an element's background, either the color or image, 
 *  extends underneath its border.
 *
 *  @param string
 */
/**
 *  Method of defining a linear or radial color gradient as a CSS image.
 *
 *  @param string
 *  @param string
 *  @param string
 */
/**
 *  Mixin for label texts...
 *  @param string
 */
/**
 *  Clear: both on steriods
 */
/**
 *  Give any element a disabled state
 */
/**
 *  Add focus to a clickable element
 */
/**
 *  Mixin to get easy control over the placeholder text color.
 *
 *  @param string 
 */
/**
 *  Rotate elements by their degrees
 *  Avoid using this property, as it is
 *  not supported in [guess which browser..that is right IE]
 *
 *  @param string 
 */
/**
 * Define Variables for colors. 
 *
 * @file colors.less
 */
/* Color Tokens
* Design tokens are name and value pairings that represent small, repeatable design decisions.
* A token can be a color, font style, unit of white space, or even a motion animation designed for a specific need.
*/
/*
 * Our main brand colors
 */
/* Copernica brand color */
/**
 *  Shades of grey
 *
 *  Each number behind the grey word 
 *  specified the amount of lightness.
 *
 *  These are all relatively light.
 *  Good for borders, background, 
 *  shadows, etc.
 *  
 *  So 1 is the "darkest" grey, etc..
 */
/*
 * Font colors
 */
/* 
 * Call to action color - it is used to capture user's attention and bring him to action
 */
/*
 * Colors of other products
 */
/*
* Colors of social media 
*/
/**
 *  Colors for certain states (eg. error, warning)
 */
/**
 *  These are colors that we want to use for counters and chart
 *  lines/bars.
 */
/**
 *  Colors that can be used for overlays
 */
/**
 *  Colors that can be used for certain 
 *  action type buttons (eg. close menu)
 */
/**
 * Define Variables for sizes. 
 *
 * @file SizeTokens.less
 *
 * Design tokens are name and value pairings that represent small, repeatable design decisions.
 * A token can be a color, font style, unit of white space, or even a motion animation designed for a specific need.
*/
/**
 * Define variables for typography. 
 *
 * @file typography-variables.less
*/
/**
 * Mobile adjustments for typography
 * We will slowly remove these in later projects
 */
/**
 *  Basic styling/typography
 *
 *  @file typography.less 
 *
 */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh7USSwiPHA.ttf) format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjx4wWw.ttf) format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwiPHA.ttf) format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50XSwiPHA.ttf) format('truetype');
}
html,
body {
  font-family: 'Lato', sans-serif;
  color: #25282A;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: normal;
}
html *::selection,
body *::selection {
  background: #00426A;
  color: #F9FAFA;
}
h1,
h2,
h3,
h4,
h5 {
  margin-bottom: 0.5rem;
  font-weight: bold;
}
h1 {
  font-size: 2.25rem;
  line-height: 2.75rem;
}
@media screen and (max-width: 880px) {
  h1 {
    font-size: 1.625rem;
  }
}
h2 {
  font-size: 1.75rem;
  line-height: 2.25rem;
}
.content-box > h2:first-child {
  margin-top: calc(0.5rem * -1);
}
h3 {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
h4 {
  font-size: 1rem;
  line-height: 1.5rem;
}
p {
  margin-bottom: 1rem;
}
a {
  color: #007AC4;
  text-decoration: none;
  cursor: pointer;
  word-break: break-word;
}
a:hover,
a:active {
  text-decoration: underline;
}
small {
  font-size: 0.75rem;
  line-height: 1.25rem;
}
strong {
  font-weight: bold;
}
cite,
em,
var,
dfn {
  font-style: italic;
}
.input,
input,
textarea,
select {
  font-family: 'Lato', sans-serif;
}
blockquote {
  border-left: 4px solid #D8DBDC;
  padding-left: 0.75rem;
  font-style: italic;
}
tt,
code,
kbd,
samp {
  font-family: 'Courier New', monospace;
}
pre,
xmp,
plaintext,
listing {
  white-space: pre;
  font-family: 'Courier New', monospace;
  margin-bottom: 1rem;
}
pre {
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background-color: #EBEDED;
}
:not(pre) > code {
  font-size: 1rem;
  line-height: 1.5rem;
  vertical-align: middle;
  padding: 0.25rem;
  background-color: #EBEDED;
  border-radius: 0.25rem;
}
pre,
code {
  overflow: auto;
}
ol,
ul {
  margin-bottom: 0.75rem;
  padding-left: 0.75rem;
}
ol {
  list-style-type: decimal;
}
ul {
  list-style-type: disc;
}
li {
  margin-bottom: 0.5rem;
}
.text-center {
  text-align: center;
}
hr {
  border: 1px solid #D8DBDC;
  margin: 1rem 0;
}
.text-danger {
  color: #C8102E;
}
.text-success {
  color: #25A149;
}
.text-subtle,
.text-subtle a {
  color: #B1B7BA;
}
/*
  * Stylesheet for all buttons
  *
  * @file Buttons.less 
  */
button,
.button,
input[type="submit"] {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  padding: 0.5rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: bold;
  text-align: center;
  background-color: #00426A;
  color: #F9FAFA;
  transition: all 0.15s ease-in-out;
}
button:active,
.button:active,
input[type="submit"]:active,
button:hover,
.button:hover,
input[type="submit"]:hover {
  cursor: pointer;
  text-decoration: none;
  background-color: #007AC4;
}
button.secondary-button,
.button.secondary-button,
input[type="submit"].secondary-button {
  color: #25282A;
  background-color: #EBEDED;
}
button.secondary-button:hover,
.button.secondary-button:hover,
input[type="submit"].secondary-button:hover,
button.secondary-button:active,
.button.secondary-button:active,
input[type="submit"].secondary-button:active {
  background-color: #D8DBDC;
}
button.disabled,
.button.disabled,
input[type="submit"].disabled,
button:disabled,
.button:disabled,
input[type="submit"]:disabled {
  background-color: #D8DBDC;
  color: #D8DBDC;
  pointer-events: none;
  cursor: not-allowed;
}
button.success-button,
.button.success-button,
input[type="submit"].success-button,
button.submit-button,
.button.submit-button,
input[type="submit"].submit-button {
  background-color: #25A149;
}
button.success-button:hover,
.button.success-button:hover,
input[type="submit"].success-button:hover,
button.submit-button:hover,
.button.submit-button:hover,
input[type="submit"].submit-button:hover,
button.success-button:active,
.button.success-button:active,
input[type="submit"].success-button:active,
button.submit-button:active,
.button.submit-button:active,
input[type="submit"].submit-button:active {
  background-color: #1b7836;
}
button.special-button,
.button.special-button,
input[type="submit"].special-button,
button.cta,
.button.cta,
input[type="submit"].cta {
  color: #25282A;
  background-color: #FFC600;
}
button.special-button:hover,
.button.special-button:hover,
input[type="submit"].special-button:hover,
button.cta:hover,
.button.cta:hover,
input[type="submit"].cta:hover,
button.special-button:active,
.button.special-button:active,
input[type="submit"].special-button:active,
button.cta:active,
.button.cta:active,
input[type="submit"].cta:active {
  background-color: #F8B006;
}
button.ghost-button,
.button.ghost-button,
input[type="submit"].ghost-button {
  box-shadow: inset 0 0 0 2px #25282A;
  color: #25282A;
  background-color: transparent;
}
button.ghost-button:hover,
.button.ghost-button:hover,
input[type="submit"].ghost-button:hover,
button.ghost-button:active,
.button.ghost-button:active,
input[type="submit"].ghost-button:active,
button.ghost-button:focus,
.button.ghost-button:focus,
input[type="submit"].ghost-button:focus {
  background-color: #007AC4;
  color: #F9FAFA;
  box-shadow: none;
}
button.ghost-button.inverse-button,
.button.ghost-button.inverse-button,
input[type="submit"].ghost-button.inverse-button {
  box-shadow: inset 0 0 0 2px #F9FAFA;
  color: #F9FAFA;
}
button.ghost-button.inverse-button:hover,
.button.ghost-button.inverse-button:hover,
input[type="submit"].ghost-button.inverse-button:hover,
button.ghost-button.inverse-button:active,
.button.ghost-button.inverse-button:active,
input[type="submit"].ghost-button.inverse-button:active,
button.ghost-button.inverse-button:focus,
.button.ghost-button.inverse-button:focus,
input[type="submit"].ghost-button.inverse-button:focus {
  background-color: #F9FAFA;
  color: #25282A;
}
button.ghost-button.new-nav,
.button.ghost-button.new-nav,
input[type="submit"].ghost-button.new-nav {
  border-radius: 5px;
  font-weight: 500;
  /* use numeric value */
  padding: 0.25rem 2rem;
  box-shadow: inset 0 0 0 1.2px #25282A;
}
button.ghost-button.new-nav:hover,
.button.ghost-button.new-nav:hover,
input[type="submit"].ghost-button.new-nav:hover,
button.ghost-button.new-nav:active,
.button.ghost-button.new-nav:active,
input[type="submit"].ghost-button.new-nav:active,
button.ghost-button.new-nav:focus,
.button.ghost-button.new-nav:focus,
input[type="submit"].ghost-button.new-nav:focus {
  background-color: #007AC4;
  color: #F9FAFA;
  box-shadow: none;
}
button.inverse-ghost-button,
.button.inverse-ghost-button,
input[type="submit"].inverse-ghost-button {
  box-shadow: inset 0 0 0 2px #F9FAFA;
  color: #F9FAFA;
  background-color: transparent;
}
button.inverse-ghost-button:hover,
.button.inverse-ghost-button:hover,
input[type="submit"].inverse-ghost-button:hover,
button.inverse-ghost-button:active,
.button.inverse-ghost-button:active,
input[type="submit"].inverse-ghost-button:active,
button.inverse-ghost-button:focus,
.button.inverse-ghost-button:focus,
input[type="submit"].inverse-ghost-button:focus {
  background-color: #F9FAFA;
  color: #25282A;
  box-shadow: none;
}
button.solbutton,
.button.solbutton,
input[type="submit"].solbutton {
  margin-bottom: 1em;
}
button.full-width,
.button.full-width,
input[type="submit"].full-width {
  width: 100%;
}
button.cancel-button,
.button.cancel-button,
input[type="submit"].cancel-button {
  background-color: #34383B;
}
/*
 * @todo Use ems.
 *
 * How to use the folowing classes (example) : 
 * 
 * div {
 *   display: inline-block;
 *   
 *   .onTablet({
 *       display: block;
 *    });
 * }
 * 
 * @file Breakpoints.less
 *
 */
/**
 *  That helps when we want to use a fontAwesome class in other elements 
 *  and not only in icons. 
 *
 *  Example:
 *
 *  <button class="fa fa-upload">Upload</button>
 * (That is a button that contains an upload icon) 
 *
 *  @file   FontAwesome.less
 */
button.fa,
a.fa,
p.fa,
span.fa {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
button.fa::before,
a.fa::before,
p.fa::before,
span.fa::before,
button.fa::after,
a.fa::after,
p.fa::after,
span.fa::after {
  font-family: FontAwesome;
}
button.fa::before,
a.fa::before,
p.fa::before,
span.fa::before {
  margin-right: 0.5rem;
}
button.fa::after,
a.fa::after,
p.fa::after,
span.fa::after {
  margin-right: 0.5rem;
}
button.fa:empty::before,
a.fa:empty::before,
p.fa:empty::before,
span.fa:empty::before {
  margin-right: 0;
}
a.fa:hover {
  text-decoration: none;
}
/*
* Styles for flex rows and columns. 
*
* These are styles that can be used in different cases to 
* define the way that containers and clildren should behave
* 
* Example
* <div class"row">
*      <div class"column size-2">
*      <div class"column size-2">
*
*
* @file row.less
*/
.row-pricing.align-items {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* Keeps text and icon aligned */
  gap: 12px;
  /* Uses existing spacing variable */
  margin-top: -1.5vh;
}
.row-products {
  padding-bottom: 0.7em;
}
.row-menu.spacing-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background-color: #F9FAFA;
  padding: 1rem 2.2rem;
  list-style: none;
  border-radius: 999px;
}
@media screen and (max-width: 880px) {
  .row-menu.spacing-items {
    flex-direction: column;
    align-items: flex-start;
    align-items: center;
    max-width: 30%;
    margin: 0 auto;
    text-align: center;
    white-space: nowrap;
    border-radius: 25px;
  }
}
.row-menu.spacing-items li {
  margin-bottom: 0rem;
}
.row-menu.spacing-items a {
  color: #25282A;
}
.row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.row.wrapping {
  flex-wrap: wrap;
}
.row.wrapping-reverse {
  flex-wrap: wrap-reverse;
}
.row.growing .column {
  flex-grow: 1;
}
.row.growing > * {
  flex-grow: 1;
}
.row.shrinking .column {
  flex-shrink: 1;
}
.row.centered {
  justify-content: center;
}
.row.spacing {
  justify-content: space-around;
}
.row.spacing-between {
  justify-content: space-between;
}
.row.fixed-width {
  max-width: 82rem;
  width: 90%;
  margin: 0 auto;
}
.row.vert-center {
  align-items: center;
}
@media screen and (max-width: 880px) {
  .row.mobile-wrap {
    flex-wrap: wrap;
  }
}
.row.fixed-spacing {
  gap: 32px;
}
@media screen and (max-width: 880px) {
  .row.fixed-spacing {
    gap: 16px;
  }
}
.row.fixed-spacing.small-spacing {
  gap: 12px;
}
.row.fixed-spacing.large-spacing {
  gap: 64px;
}
.row .column {
  flex-grow: 0;
  flex-shrink: 0;
}
.row .column.size-1 {
  flex-basis: 100%;
}
.row .column.size-2 {
  flex-basis: 50%;
}
@media screen and (max-width: 880px) {
  .row .column.size-2 {
    flex-basis: 100%;
  }
}
.row .column.size-3 {
  flex-basis: 33.3%;
}
@media screen and (max-width: 880px) {
  .row .column.size-3 {
    flex-basis: 100%;
  }
}
.row .column.size-2-3 {
  flex-basis: 66.6%;
}
@media screen and (max-width: 880px) {
  .row .column.size-2-3 {
    flex-basis: 100%;
  }
}
.row .column.size-4 {
  flex-basis: 25%;
}
@media screen and (max-width: 880px) {
  .row .column.size-4 {
    flex-basis: 100%;
  }
}
.row .column.size-3-4 {
  flex-basis: 75%;
}
@media screen and (max-width: 880px) {
  .row .column.size-3-4 {
    flex-basis: 100%;
  }
}
.row .column.size-5 {
  flex-basis: 16.6%;
}
@media screen and (max-width: 880px) {
  .row .column.size-5 {
    flex-basis: 100%;
  }
}
.row .column.inline-elements {
  display: inline-flex;
  align-items: center;
}
.row .row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.row .row.wrapping {
  flex-wrap: wrap;
}
.row .row.wrapping-reverse {
  flex-wrap: wrap-reverse;
}
.row .row.growing .column {
  flex-grow: 1;
}
.row .row.growing > * {
  flex-grow: 1;
}
.row .row.shrinking .column {
  flex-shrink: 1;
}
.row .row.centered {
  justify-content: center;
}
.row .row.spacing {
  justify-content: space-around;
}
.row .row.spacing-between {
  justify-content: space-between;
}
.row .row.fixed-width {
  max-width: 82rem;
  width: 90%;
  margin: 0 auto;
}
.row .row.vert-center {
  align-items: center;
}
@media screen and (max-width: 880px) {
  .row .row.mobile-wrap {
    flex-wrap: wrap;
  }
}
.row .row.fixed-spacing {
  gap: 32px;
}
@media screen and (max-width: 880px) {
  .row .row.fixed-spacing {
    gap: 16px;
  }
}
.row .row.fixed-spacing.small-spacing {
  gap: 12px;
}
.row .row.fixed-spacing.large-spacing {
  gap: 64px;
}
.column {
  flex-grow: 0;
  flex-shrink: 0;
}
.column.size-1 {
  flex-basis: 100%;
}
.column.size-2 {
  flex-basis: 50%;
}
@media screen and (max-width: 880px) {
  .column.size-2 {
    flex-basis: 100%;
  }
}
.column.size-3 {
  flex-basis: 33.3%;
}
@media screen and (max-width: 880px) {
  .column.size-3 {
    flex-basis: 100%;
  }
}
.column.size-2-3 {
  flex-basis: 66.6%;
}
@media screen and (max-width: 880px) {
  .column.size-2-3 {
    flex-basis: 100%;
  }
}
.column.size-4 {
  flex-basis: 25%;
}
@media screen and (max-width: 880px) {
  .column.size-4 {
    flex-basis: 100%;
  }
}
.column.size-3-4 {
  flex-basis: 75%;
}
@media screen and (max-width: 880px) {
  .column.size-3-4 {
    flex-basis: 100%;
  }
}
.column.size-5 {
  flex-basis: 16.6%;
}
@media screen and (max-width: 880px) {
  .column.size-5 {
    flex-basis: 100%;
  }
}
.column.inline-elements {
  display: inline-flex;
  align-items: center;
}
.column.growing {
  flex-grow: 1;
}
/*
 * Class for flex columns
 *
 *
 * @file column.less
 */
.column {
  display: flex;
  flex-direction: column;
}
.column.fixed-spacing {
  gap: 32px;
}
@media screen and (max-width: 880px) {
  .column.fixed-spacing {
    gap: 16px;
  }
}
.column.fixed-spacing.small-spacing {
  gap: 12px;
}
.column.centered {
  align-items: center;
}
/*
*  The keyframes for animations.
*
* Keyframes.less
*/
/*
 * Clockwise and anticlockwwise rotation
 */
@keyframes turning_cw {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes turning_acw {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes backgroundMove {
  0% {
    background-position: 14% 0;
  }
  50% {
    background-position: 87% 100%;
  }
  to {
    background-position: 14% 0;
  }
}
.list > * {
  display: block;
}
.list.list-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
}
.list.list-grid > * {
  flex-grow: 0;
  flex-shrink: 1;
}
.list.list-grid.list-grid-2-4 > * {
  flex-basis: 75%;
}
.list.list-grid.list-grid-2 > * {
  flex-basis: 50%;
}
.list.list-grid.list-grid-3 > * {
  flex-basis: 33%;
}
.list.list-grid.list-grid-4 > * {
  flex-basis: 25%;
}
@media screen and (max-width: 880px) {
  .list.list-grid.list-grid-mobile-2 > *,
  .list.list-grid.list-grid-2.list-grid-mobile-2 > *,
  .list.list-grid.list-grid-3.list-grid-mobile-2 > * {
    flex-basis: 50%;
  }
}
@media screen and (min-width: 55em) and (max-width: 1024px) {
  .list.list-grid.list-grid-tablet-2 > *,
  .list.list-grid.list-grid-3.list-grid-tablet-2 > *,
  .list.list-grid.list-grid-4.list-grid-tablet-2 > * {
    flex-basis: 50%;
  }
}
@media screen and (max-width: 880px) {
  .list.list-grid.list-grid-mobile-1 > *,
  .list.list-grid.list-grid-2.list-grid-mobile-1 > *,
  .list.list-grid.list-grid-3.list-grid-mobile-1 > *,
  .list.list-grid.list-grid-4.list-grid-mobile-1 > * {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 32em) {
  .list.list-grid.list-grid-mobile-portrait-1 > *,
  .list.list-grid.list-grid-2.list-grid-mobile-portrait-1 > *,
  .list.list-grid.list-grid-3.list-grid-mobile-portrait-1 > *,
  .list.list-grid.list-grid-4.list-grid-mobile-portrait-1 > * {
    flex-basis: 100%;
  }
}
@media screen and (min-width: 55em) and (max-width: 1024px) {
  .list.list-grid.list-grid-mobile-landscape-2 .list.list-grid.list-grid-mobile-portrait-1.list-grid-mobile-landscape-2 > *,
  .list.list-grid.list-grid-2.list-grid-mobile-landscape-2 > *,
  .list.list-grid.list-grid-3.list-grid-mobile-landscape-2 > *,
  .list.list-grid.list-grid-4.list-grid-mobile-landscape-2 > * {
    flex-basis: 50%;
  }
}
/*
 * General styles for zig-zag layout.
 * This layout can be used in several pages 
 * when for example we need to use sections like that:
 * text on the left - image on the right, 
 * text on the right - image on the left, etc..
 * 
 * How to use it - example : 
 * <div>

 *   <img>
 *   <p></p>
 * </div>
 *
 * <div>
 *   <p></p>
 *   <img>
 * </div>
 *
 * @file ZigzagLayout.less
 *
 */
.zigzag-layout {
  width: 100%;
}
.zigzag-layout > * {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.zigzag-layout > *:nth-child(2n) {
  flex-direction: row-reverse;
}
.zigzag-layout > *:nth-child(2n) > *:last-child {
  margin-left: 0;
}
.zigzag-layout > *:nth-child(2n) > *:first-child {
  margin-right: 0;
}
.zigzag-layout > *:nth-child(2n+1) > *:first-child {
  margin-left: 0;
}
.zigzag-layout > *:nth-child(2n+1) > *:last-child {
  margin-right: 0;
}
.zigzag-layout > * > * {
  flex-basis: 1px;
  flex-grow: 1;
  margin-right: 1rem;
  margin-left: 1rem;
}
@media screen and (max-width: 880px) {
  .zigzag-layout > * > * {
    flex-basis: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 1224px) {
  .zigzag-layout > * img,
  .zigzag-layout > * object {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 50%;
  }
}
@media screen and (max-width: 1224px) {
  .zigzag-layout > * img,
  .zigzag-layout > * object {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 50%;
  }
}
@media screen and (min-width: 55em) and (max-width: 1024px) {
  .zigzag-layout > * img,
  .zigzag-layout > * object {
    width: 80%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 50%;
  }
}
@media screen and (max-width: 880px) {
  .zigzag-layout > * img,
  .zigzag-layout > * object {
    width: 60%;
    display: block;
    margin: 0 auto;
  }
}
.zigzag-layout.zigzag-layout-spaced > * {
  padding-top: 5rem;
}
.zigzag-layout.zigzag-layout-spaced > *:first-child {
  padding-top: 0;
}
@media screen and (max-width: 880px) {
  .zigzag-layout.zigzag-layout-spaced > * {
    padding-top: 2rem;
  }
}
/*
 * Styles for containers, that we use tio show a message, notification, warning etc
 * Reason to use it : to grab user's attention 
 *
 * @ file Notice.less
 */
.notice {
  background-color: #fbd069;
  padding: 32px;
  margin: 16px 0;
  width: 100%;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 1rem;
  overflow: hidden;
  white-space: normal;
}
.notice.centered-box {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 880px) {
  .notice.centered-box {
    width: 100%;
  }
}
.notice.info {
  background-color: rgba(0, 66, 106, 0.25);
  color: #00426A;
}
.notice.error {
  background-color: #ff7575;
  color: white;
}
.notice.success {
  background-color: rgba(37, 161, 73, 0.25);
  color: #1b7836;
}
.notice.message {
  background-color: #EBEDED;
}
.notice.status {
  padding: 0;
  background: none;
  font-weight: bold;
}
.notice.warning {
  background-color: #F7F4D5;
}
.notice i.fa {
  display: inline-block;
  font-size: 1rem;
  margin-right: 0.5rem;
}
div.notice i,
div.notice p {
  display: inline-block;
}
div.notice p {
  margin-bottom: 0;
  padding-bottom: 0;
}
/*
* Styles for pop-up container
*
* How can be used: 
*
* <div class="pop-up">
*      <header>
*      </header>
*      <div class="popup-content">
*      </div>
*      <footer>
*     </footer>
* </div>
*
*
* @file Popup.less
*/
.pop-up {
  position: fixed;
  left: 35%;
  top: 9rem;
  width: 40%;
  max-width: 35rem;
  z-index: 9999;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #007AC4;
  box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1224px) {
  .pop-up {
    width: 60%;
    left: 20%;
  }
}
@media screen and (max-width: 880px) and (min-width: 32em) {
  .pop-up {
    top: 4rem;
    width: 80%;
    left: 12%;
  }
}
@media screen and (max-width: 32em) {
  .pop-up {
    top: 2rem;
    left: 0;
    width: 100%;
  }
}
.pop-up header {
  background: #007AC4;
  color: #fff;
  padding: 1rem 2rem;
  text-align: center;
}
.pop-up header h1,
.pop-up header h2,
.pop-up header h3,
.pop-up header h4 {
  margin-bottom: 0;
  padding-bottom: 0;
}
.pop-up .popup-content {
  padding: 2rem;
  border-bottom: none;
}
.pop-up footer {
  padding: 1rem 2rem;
}
.pop-up i.fa-times {
  cursor: pointer;
  position: absolute;
  right: 20px;
}
/* 
 * @file Table.less
 * 
 * General styles for tables
 */
table {
  border-collapse: collapse;
  margin: 0.5rem 0;
  text-align: left;
  width: 100%;
  background-color: transparent;
}
table thead {
  border-bottom: 2px solid #D8DBDC;
}
table td:first-child {
  border-left-style: solid;
  border-radius: 0.5rem 0px 0px 0.5rem;
}
table td:last-child {
  border-right-style: solid;
  border-radius: 0px 0.5rem 0.5rem 0px;
}
table tbody tr:nth-child(odd) td {
  background: #F2F3F3;
}
table th,
table td {
  padding: 0.5rem;
  display: table-cell;
}
table th button,
table td button,
table th .button,
table td .button {
  padding: 0.5rem;
}
table th.a-right,
table td.a-right {
  text-align: right;
}
table th.a-center,
table td.a-center {
  text-align: center;
}
table th {
  position: relative;
}
table th[data-sorting="desc"]::after,
table th[data-sorting="asc"]::after {
  position: absolute;
  right: 0.5rem;
  font-family: FontAwesome;
}
table th[data-sorting="desc"]::after {
  content: '\f0d7';
}
table th[data-sorting="asc"]::after {
  content: '\f0d8';
}
table td .notice {
  margin-bottom: 0;
}
table td .fa.fa-check {
  color: #25A149;
}
table tr.clickable {
  color: #007AC4;
  cursor: pointer;
  outline: 0 !important;
  text-decoration: none;
  /* do not show blue borders around image hyperlinks */
  /* show underline on hover */
}
table tr.clickable img {
  border: 0;
}
table tr.clickable:hover {
  text-decoration: underline;
}
table th {
  font-weight: bold;
  font-weight: 600;
}
/* 
 * @file NoScroll.less
 */
.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}
/* 
 *  Styles for a list that looks like a table. 
 *  It contains labels and values, and this is how you can use it: 
 *
 *      <ul class="properties">
 *          <li>
 *              <span class="label"></span>
 *              <span class="value"></span>
 *          </li>
 *      </ul>
 *  and how it looks like: 
 *  ________________________________________
 * |__Label___________|__Value______________|
 * |__Label___________|__Value______________|
 * |__Label___________|__Value______________|
 *
 * @author   Marianna Kavvadia <marianna.kavvadia@copernica.com>
 * @file Properties.less
 */
.properties {
  list-style: none;
  background: none;
  margin: 0 0 1rem 0;
  padding: 0;
  width: 100%;
  border: 1px solid #F5F6F6;
}
.properties > li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border-bottom: 1px solid #F5F6F6;
}
.properties > li:last-child {
  border-bottom: 0;
}
.properties > li > .fa {
  display: inline-block;
  padding-top: 0.875em;
  order: 1;
  flex-basis: 2em;
  text-align: center;
  border-right: 1px solid #F5F6F6;
}
.properties > li .value,
.properties > li .label {
  padding: 0.7em;
}
.properties > li > .label {
  order: 2;
  flex-basis: 10rem;
  flex-grow: 1;
  flex-shrink: 0;
  border-right: 1px solid #F5F6F6;
}
.properties > li > .value {
  order: 3;
  flex-basis: 10rem;
  flex-grow: 3;
  flex-shrink: 1;
  word-break: break-word;
}
.properties.zebra-list .label,
.properties.zebra-list .fa {
  background-color: #fdfdfd;
}
.properties.zebra-list .label.bold,
.properties.zebra-list .fa.bold {
  font-weight: 600;
}
/* 
 * @file FileUpload.less
 * input[type="file"] in a container, 
 */
div.upload-container p {
  margin-bottom: 0;
}
div.upload-container div.upload-input-row {
  display: flex;
  align-items: center;
}
div.upload-container div.upload-input-row span.status {
  line-height: 35px;
  margin-left: 10px;
  font-size: 0.875rem;
}
div.upload-container div.upload-input-row .file-upload {
  position: relative;
  overflow: hidden;
  padding: 0.4rem 0.4rem;
  background-color: #eceaea;
  color: #25282A;
  border: 1px solid #F5F6F6;
}
div.upload-container div.upload-input-row .file-upload i {
  margin-right: 0.4rem;
}
div.upload-container div.upload-input-row .file-upload:hover {
  background-color: #d8d8d8;
  filter: brightness(1);
}
div.upload-container input[type="file"] {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  min-height: 2rem;
}
/**
 *  Styles for the page navigation, which contain previous/next indicators
 *  and optionally numbers with pages that can be clicked to navigate to.
 *  This component can be used as follows:

<div class="page-navigation">
    <div class="page-navigation-prev">Prev page</div>
    <div class="page-navigation-number">1</div>
    <div class="page-navigation-number">2</div>
    <div class="page-navigation-number">3</div>
    <div class="page-navigation-number">4</div>
    <div class="page-navigation-number">5</div>
    <div class="page-navigation-next">Next page</div>
</div>

 *  The root elemnt is required, but the children are optional. If navigation
 *  should span the whole width (as the elements should position themselfs over
 *  whole width), use `wide` class on the root element.
 *
 *  @file PageNavigation.less
 */
.page-navigation {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.page-navigation.wide {
  justify-content: space-between;
}
.page-navigation .page-navigation-number {
  width: 1.5rem;
  text-align: center;
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
}
.page-navigation .page-navigation-number.selected {
  border-radius: 0.25rem;
  color: white;
  background-color: #25A149;
}
.page-navigation .page-navigation-next,
.page-navigation .page-navigation-prev {
  cursor: pointer;
}
.page-navigation .page-navigation-next.disabled,
.page-navigation .page-navigation-prev.disabled {
  visibility: hidden;
  cursor: default;
}
.page-navigation .page-navigation-next::after,
.page-navigation .page-navigation-prev::after,
.page-navigation .page-navigation-next::before,
.page-navigation .page-navigation-prev::before {
  font-family: FontAwesome;
  font-size: smaller;
  color: inherit;
  margin: 0 0.2rem;
}
.page-navigation .page-navigation-next::after,
.page-navigation .page-navigation-prev::after {
  margin-left: 0.5rem;
}
.page-navigation .page-navigation-next::before,
.page-navigation .page-navigation-prev::before {
  margin-right: 0.5rem;
}
.page-navigation .page-navigation-next {
  margin-left: 1rem;
}
.page-navigation .page-navigation-prev {
  margin-right: 1rem;
}
.page-navigation .page-navigation-next::after {
  content: '\f04e';
}
.page-navigation .page-navigation-prev::before {
  content: '\f04a';
}
/* 
 * ImageContainer.less
 */
.image-container {
  display: block;
  max-width: 100%;
  box-sizing: border-box;
}
.image-container.xsmall {
  min-width: 2em;
  max-width: 3em;
}
.image-container.small {
  min-width: 4em;
  max-width: 6em;
}
.image-container.medium {
  min-width: 7em;
  max-width: 10em;
}
.image-container.space {
  padding-bottom: 0.8em;
}
.image-container.large {
  min-width: 11em;
  max-width: 16em;
}
.image-container img,
.image-container object {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  display: block;
}
.image-container.bordered {
  border: 1px solid #F5F6F6;
  border-radius: 0.3rem;
  padding: 0.5rem;
}
.image-container.centered {
  margin: 0 auto;
}
.image-container .no-stretch {
  width: auto;
  height: auto;
  max-width: 100%;
}
/* 
 * VideoContainer.less
 */
.video-container {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.video-container.rounded iframe {
  border-radius: 1rem;
  overflow: hidden;
}
.video-container.widescreen iframe {
  aspect-ratio: 1.77777778;
}
.video-container.full-width iframe,
.video-container.full-width video {
  width: 100%;
}
/*
 * Generic styles for cards
 * @Todo delete this solution and use one grid/column system
 * @file cards.less
 *
 */
.card {
  background-color: #F9FAFA;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card img {
  display: block;
  width: 100%;
  object-fit: cover;
  height: 220px;
}
.card .card-content {
  padding: 1rem 2rem;
  color: #25282A;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: space-between;
}
.card.card-homepage {
  color: #25282A;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  height: 100%;
  box-shadow: none !important;
  text-align: center;
}
.card.card-homepage p {
  text-align: left;
}
.card .image-wrapper {
  position: relative;
  display: inline-block;
}
.card .card-solutions {
  padding: 1rem 2rem;
  color: #25282A;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: space-between;
  text-align: left;
}
.card footer,
.card section footer {
  padding: 2rem;
  padding-top: 0px;
  margin-top: auto;
}
.card:hover {
  cursor: pointer;
  box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.15s ease-in-out;
  text-decoration: none;
}
.card:hover footer {
  text-decoration: underline;
}
.card.special-card {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/Resources/Images/Homepage/VacancyBackdrop.jpg');
  background-size: cover;
  color: #F9FAFA;
}
.card.special-card .card-content {
  padding-top: 2rem;
  color: #F9FAFA;
}
.card.special-card .card-content .article-tags span {
  background-color: #D8DBDC;
  color: #25282A;
}
.card.special-card footer {
  color: #FFC600;
}
/* 
 * General styles of an svg icon
 * Icon.less
 */
.icon {
  display: block;
}
.icon.xx-small {
  width: 1.5rem;
  height: 1.5rem;
}
.icon.x-small {
  width: 3rem;
  height: 3rem;
}
.icon.small {
  width: 6rem;
  height: 6rem;
}
.icon.medium {
  width: 9rem;
  height: 9rem;
}
.icon.large {
  width: 15rem;
  height: 15rem;
}
.icon.x-large {
  width: 20rem;
  height: 20rem;
}
.icon.xx-large {
  width: 25rem;
  height: 25rem;
}
.icon.centered {
  margin: 0 auto;
}
/* 
 * Invoice.less
 *
 * Styles for all the invoices no matter in which page they are shown.
 *
 * They should look the same as the invoices in the pdf.
 */
.invoice table {
  border: none;
  margin: 0;
  background-color: initial;
}
.invoice table tr {
  border: none;
}
.invoice table td {
  background-color: initial;
  padding: 0;
  overflow: auto;
  text-overflow: initial;
  white-space: initial;
}
.invoice table th {
  cursor: default;
}
.invoice table th:hover {
  background-color: initial;
}
/*
 * RibbonMenu.less
 * It is a menu with tab elements next to each other.
 * We usually use it to navigate inside similar pages/categories
 * 
 * How to use it: 
 *  <div class="ribbon-menu">
 *      <a class="active"></a>
 *      <a></a>
 *      <a></a>
 *  </div>
 *
 */
.ribbon-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  border-radius: 64px;
}
@media screen and (max-width: 880px) {
  .ribbon-menu {
    background-color: transparent;
  }
}
.ribbon-menu a {
  padding: 12px 16px;
  transition: all 0.15s ease-in-out;
  border-radius: 32px;
  background-color: #F9FAFA;
  color: #25282A;
}
.ribbon-menu a:hover {
  background: #007AC4;
  color: #fff;
  text-decoration: none;
}
.ribbon-menu a.active {
  background-color: #00426A;
  color: #fff;
}
/**
 *  sidebar.less
 */
.inner-sidebar h2 {
  font-weight: 600;
  font-size: 1.2rem;
}
.inner-sidebar label {
  font-size: 0.875rem;
}
.inner-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.inner-sidebar .sidemenu ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #F5F6F6;
}
.inner-sidebar .sidemenu ul li a {
  color: #25282A;
}
.inner-sidebar .sidemenu ul li a:hover {
  text-decoration: none;
  color: #C8102E;
}
/**
 *  THE NOT SO FAMOUS GRAFFELGRID SYSTEM
 *  @author: Waldemar Graffelkaas 2014 (walter.greefkes@copernica.com)
 *  @version: 1.0
 */
/**
 *  Use the .rows-X class or .row(@param; @param) mixin to make a
 *  steady row that spans the given steps of its parent element.
 *  The .rows-X class does not have left or right padding.
 *  Postfix the class with -gut to add a default 2% padding-left and right.
 *
 *  @param: int (the number of columns)
 *  @param: int (the padding)
 */
/**
 *  Use the .cols-X class or .cols(@param) mixin to give an element a
 *  a width in percentages.
 *  Wrap cols in a row for the best results.
 *
 *  @param: int (the number of columns)
 */
/**
 *  The .tiles(@param; @param) mixin allows you to create a grid of list items
 *  that are equally spread out over the width of its parent element.
 *  Always use this in conjunction with the &:nth-child(Xn+X) pseudo class
 *  to remove the right margin of each utter most right item in the list.
 *  (where X's should represent the number of tiles per row)
 *  Ideally for creating thumbnail galleries and so and so and so.
 *
 *  @param: int (number of columns)
 *  @param: int (the space between each list item)
 */
/**
 *  Use class .push-X if you want to push an element X grid steps
 *  to the right. Use it as an additional class on an element that already
 *  has a .cols-X or .row-X class.
 */
/**
 *  Use class .pull-X if you want to force an element X grid steps
 *  to the left. Use it as an additional class on an element that already
 *  has a .cols-X or .row-X class.
 */
/* 
 * These classes can be used in case we want to hide something
 * for example depending on the screen size

 * @file Hidden.less
 */
.desktop-hidden {
  display: none;
}
@media screen and (max-width: 880px) {
  .desktop-hidden {
    display: block;
  }
}
.mobile-hidden {
  display: block;
}
@media screen and (max-width: 880px) {
  .mobile-hidden {
    display: none;
  }
}
/**
 *  These are the styles for a simple annotation classed element.
 *  These are elements that are not necessarily important by
 *  themselves but enforce the state of another element.
 *  Often used with the <small> element.
 *
 *  @author         Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file           annotation.less
 *  @documentation  public
 */
.annotation {
  color: #ababab;
  font-style: italic;
  font-weight: 600;
}
/**
 *  This file declares the intention of how documents should behave.
 *  In this context, a document is an element that contains content
 *  that represents some kind of document. Think about an email
 *  (e.g. ticket response) or something similar.
 *
 *  @author  Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file    Resouces/Style/Common/documents.less
 */
.document {
  word-wrap: break-word;
  white-space: pre-wrap;
  padding: 0.5rem;
  margin: 0.5rem;
}
/*
 * @file ContentBox.less
 *  
 * ContentBox is a box that shows any kind of content, 
 * like text images, videos, buttons etc.
 * The class will be used when we need to put these
 * in a box.

 * <div class="content-box"> ... </div>
 *
*/
/* Variables for the spacing around the content within the box.
* The values of top & bottom are slightly different than the
* ones of left & right because when we have a text container like
* a title or a paragraph there is some extra spacing by default
*/
.content-box {
  color: #25282A;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #F9FAFA;
  padding: 40px 48px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 880px) {
  .content-box {
    padding: 28px 32px;
  }
}
.content-box.special {
  background: linear-gradient(45deg, #00426A 0%, #007AC4 100%);
  height: fit-content;
  color: #F9FAFA;
}
.content-box.special a:not(.button) {
  color: #FFC600;
}
.content-box.special table {
  background-color: transparent;
}
.content-box.special table thead {
  border-bottom: none;
}
.content-box.special table th {
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}
.content-box.special table th:hover {
  background-color: transparent;
}
.content-box.special table tr {
  border: none;
}
.content-box.special table tr:nth-child(odd) td {
  background-color: #0000001A;
}
.content-box.special table tr:nth-child(even) td {
  background-color: transparent;
}
.content-box.special .form-container label {
  background-color: #F9FAFA;
}
.content-box.colored {
  background-color: #F5F6F6;
}
.content-box.bordered {
  border: 1px solid #D8DBDC;
}
.content-box.transparent {
  background-color: transparent;
}
.content-box.solutions-page h3 {
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: bold;
}
.content-box.solutions-page p {
  max-width: 40rem;
}
.content-box.small {
  padding: 16px 20px;
  margin-bottom: 0;
}
.content-box.small p {
  font-size: smaller;
}
.content-box.medium {
  margin-bottom: 0;
  padding: 28px 32px;
}
.content-box.hoverable {
  transition: all 0.15s ease-in-out;
}
.content-box.hoverable svg {
  width: 98%;
  transition: all 0.15s ease-in-out;
}
.content-box.hoverable:hover {
  cursor: pointer;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.075);
  text-decoration: none;
}
.content-box.hoverable:hover svg {
  width: 100%;
}
.content-box.hoverable:hover footer {
  text-decoration: underline;
}
.content-box.hoverable footer {
  color: #007AC4;
  font-weight: bold;
}
.content-box.featured-event footer {
  color: #FFC600;
}
.content-box.bottom-image {
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.content-box.bottom-image .image-container:last-child img,
.content-box.bottom-image .video-container:last-child img,
.content-box.bottom-image .image-container:last-child iframe,
.content-box.bottom-image .video-container:last-child iframe {
  display: block;
}
.content-box.top-image {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.content-box.top-image .text-container {
  padding: 32px 48px;
}
.content-box.top-image .image-container-top {
  display: block;
  max-width: 100%;
  box-sizing: border-box;
}
.content-box.top-image .image-container-top.small {
  height: 8rem;
}
.content-box.top-image .image-container-top.medium {
  height: 12rem;
}
.content-box.top-image .image-container-top.large {
  height: 16rem;
}
.content-box.top-image .image-container-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.content-box.top-image footer {
  padding: 0px 48px 40px 48px;
  color: #007AC4;
}
.content-box.box-image {
  padding: 0;
}
.content-box.box-image .text-container {
  padding: 40px 48px;
}
.content-box.box-image .text-container.small {
  padding: 16px 20px;
}
.content-box.box-image .image-container img {
  object-fit: cover;
}
.content-box.box-image img,
.content-box.box-image iframe {
  display: block;
}
.content-box.box-video {
  padding: 0;
  gap: 0;
}
.content-box.box-video .text-container {
  padding: 28px 32px;
}
@media screen and (max-width: 880px) {
  .content-box.box-video .text-container {
    padding: 28px 32px;
  }
}
.content-box.box-video iframe {
  aspect-ratio: 1.77777778;
  width: 100%;
  display: block;
}
.content-box.icon-list {
  max-width: 52rem;
}
.content-box.icon-list .icon-list-item {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
.content-box.icon-list .image-container img {
  width: 8rem;
}
@media screen and (max-width: 880px) {
  .content-box.icon-list .image-container {
    display: none;
  }
}
.content-box.homepage-box {
  gap: 20px;
}
.navbox {
  width: 100vw;
  background-color: #F9FAFA;
  z-index: 1000;
  overflow-y: hidden;
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}
.main-navigation .dropdown-label span::after {
  content: none;
}
/*
 * @file SlidingBox.less
 *  
 * SlidingBox is a container that is slides into the screen.
 * The title/button of the container is always visible and when 
 * the user clicks on it the content is visible too. It slides into the screen
 *
 * This box can contain anything. How to use it:

 <div data-part="SlidingBox">
    <div class="slidingbox-container">
        <div data-slidingboxpart="title"> </div>
        <div  data-slidingboxpart="content"></div>
    </div>
    <i class="fa fa-times close-button"></i>
</div>
 *
 *
*/
.sliding-box {
  position: fixed;
  bottom: 50%;
  right: -320px;
  transition: all 0.15s ease-in-out;
}
@media screen and (max-width: 880px) {
  .sliding-box {
    bottom: 0;
    right: 0;
  }
}
.sliding-box.show {
  right: 0;
}
@media screen and (max-width: 880px) {
  .sliding-box.show {
    bottom: 50vh;
  }
}
.sliding-box .fa.fa-times {
  position: absolute;
  right: 1rem;
  bottom: 8rem;
  color: #25282A;
  cursor: pointer;
}
@media screen and (max-width: 880px) {
  .sliding-box .fa.fa-times {
    bottom: -15px;
  }
}
.sliding-box .slidingbox-container {
  display: flex;
  align-items: center;
  color: #25282A;
  position: relative;
  width: 320px;
}
@media screen and (max-width: 880px) {
  .sliding-box .slidingbox-container {
    flex-direction: column;
  }
}
.sliding-box *[data-slidingboxpart="title"] {
  cursor: pointer;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  transform: rotate(-90deg);
  text-align: center;
  background-color: #FFC600;
  padding: 12px 12px;
  position: absolute;
  left: -195px;
  width: 320px;
}
@media screen and (max-width: 880px) {
  .sliding-box *[data-slidingboxpart="title"] {
    transform: rotate(0deg);
    left: 0;
    top: -45px;
  }
}
.sliding-box *[data-slidingboxpart="content"] {
  background-color: #FFC600;
  padding: 28px 32px;
  position: absolute;
  right: 0;
  height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 880px) {
  .sliding-box *[data-slidingboxpart="content"] {
    display: block;
    height: auto;
  }
}
.sliding-box *[data-slidingboxpart="content"] .inputset {
  border: 0;
}
.sliding-box *[data-slidingboxpart="content"] .inputset input {
  background-color: #F9FAFA;
  padding: 16px 16px;
  margin-bottom: 16px;
}
.sliding-box *[data-slidingboxpart="content"] .inputset input,
.sliding-box *[data-slidingboxpart="content"] .inputset button {
  border-radius: 6px;
}
/*
 * @file TitleBox.less
 *  
 * This is a box that looks like all the other containers
 * with the difference that it has a separated area 
 * for the title. This box is spltted into two, 
 * the title container and the content and this is how it is created:
 *
 * <div class="title-box"> 
        <div class="title">
            <h2>Title</h2>
        </div>
        <div class="content">
            ...
        </div>
  </div>
*/
.title-box {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 2rem;
}
.title-box .title {
  background: linear-gradient(45deg, #00426A 0%, #007AC4 100%);
  color: #fff;
  padding: 40px 48px;
}
.title-box .title * {
  margin: 0;
}
.title-box .content {
  padding: 40px 48px;
}
/*
 * Class for containers, that we use to show a tag
 *
 * @ file Tag.less
 */
.tag {
  display: inline-block;
  overflow: hidden;
  padding: 0.75rem 1rem;
  border-radius: 999rem;
  margin-right: 0.75rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1.25rem;
}
.tag.dark-base {
  background-color: #00426A;
  color: #F9FAFA;
}
.tag.light-base {
  background-color: #EBEDED;
  color: #25282A;
}
.tag.white-base {
  background-color: #F9FAFA;
  color: #25282A;
}
/**
 *  This is a class that can be used to for displaying a longer, curated piece
 *  of text. Like a blog article or a documentation article. This class will
 *  define the typography and looks of elements inside the editorial, but will
 *  not modify the container.
 *
 *  @author     Paweł Kuźnik <pawel.kuznik@copernica.com>
 *  @author     Tymofii Oberukhtin <tymofii.oberukhtin@copernica.com>
 */
.editorial header {
  padding-bottom: 2rem;
}
.editorial p,
.editorial ul,
.editorial h1,
.editorial h2,
.editorial h3,
.editorial img,
.editorial ol,
.editorial table,
.editorial pre {
  padding: 0;
  margin-bottom: 0.75rem;
}
.editorial h1:not(:first-child),
.editorial h2:not(:first-child),
.editorial h3:not(:first-child) {
  margin-top: 1.5rem;
}
@media screen and (max-width: 880px) {
  .editorial h1:not(:first-child),
  .editorial h2:not(:first-child),
  .editorial h3:not(:first-child) {
    margin-top: 1rem;
  }
}
.editorial p,
.editorial li {
  text-decoration: none;
  color: #25282A;
}
.editorial strong {
  font-weight: bold;
}
.editorial small {
  font-size: smaller;
}
.editorial pre {
  box-sizing: border-box;
  padding: 1rem;
  font-size: 16px;
}
.editorial ul,
.editorial ol {
  padding-left: 2rem;
}
.editorial img,
.editorial svg {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
/**
 *  These are styles for any kind of header that can be used inside of articles, or blog / post like
 *  elements that contain some kind of thumbnail (eg. author image).
 */
.post-header::after {
  content: '';
  display: block;
  clear: both;
  width: 100%;
}
.post-header h1,
.post-header h2 {
  margin-bottom: 0;
}
.post-header .thumbnail {
  float: left;
  margin-left: 0;
  margin-right: 1rem;
}
/**
 *  This is a class that is used in a container of articles
 *  usually displayed on different pages.
 *
 *  @file FeaturedArticles.less
 */
.featured-articles .featured-event {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/Resources/Images/Homepage/VacancyBackdrop.jpg');
  background-size: cover;
  color: #F9FAFA;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.featured-articles .featured-event a:not(.button) {
  color: #FFC600;
}
.featured-articles .featured-event .article-tags span {
  background-color: #25282A;
}
.featured-articles .article-tags span {
  display: inline-block;
  background-color: #F5F6F6;
  padding: 12px 16px;
  border-radius: 80px;
  overflow: hidden;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  line-height: 16px;
}
.featured-articles .article-date {
  color: #B1B7BA;
}
.featured-articles a {
  font-weight: bold;
}
/**
 *  The container class is a class that can and should be user for global
 *  container elements on a page. Using this class will display a nice
 *  centered container element, that can have a sidebar or not.
 *  If a page has a sidebar, we can extend this class with
 *  a container-sidebar class.
 *
 *  @author         Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file           container.less
 *  @documentation  public
 */
/**
 *  The main container without a sidebar
 */
.container {
  max-width: 82rem;
  width: 90%;
  margin: 0 auto;
}
/**
 *   Container that can be used to display small amount of data at once.
 */
.container-slim {
  max-width: 40rem;
}
/**
 *  The main container with a sidebar
 */
.container.container-withsidebar {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  /**
     *  The main content container
     */
  /**
     *  The sidebar container
     */
  /**
     *  Mobile state
     */
}
.container.container-withsidebar.nowrap {
  flex-wrap: nowrap;
}
.container.container-withsidebar .container-content {
  flex-basis: 75%;
  width: 75%;
}
@media screen and (max-width: 880px) {
  .container.container-withsidebar .container-content {
    width: 100%;
  }
}
.container.container-withsidebar .container-sidebar {
  flex-basis: 23%;
}
@media screen and (max-width: 880px) {
  .container.container-withsidebar {
    flex-flow: column nowrap;
    /**
         *  The main container and sidebar
         */
  }
  .container.container-withsidebar > .container-content,
  .container.container-withsidebar > .container-sidebar {
    flex-basis: 100%;
    margin: 0;
    margin-bottom: 0.5rem;
  }
}
.container-solutions {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 0 2rem;
  max-width: 82rem;
  margin: 0 auto;
  border-radius: 1em;
}
.container-solutions .content-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 18rem);
  max-width: 95%;
  margin: 0 auto;
}
.container-solutions .content-box .image-container {
  flex: 0 0 auto;
  max-width: 560px;
}
.container-solutions .content-box .image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2em;
}
.container-solutions .content-box > div:not(.image-container) {
  flex: 1 1 auto;
  max-width: 40rem;
  text-align: left;
}
.container-solutions .content-box:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 880px) {
  .container-solutions {
    padding: 0 1rem;
  }
  .container-solutions .content-box {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
  .container-solutions .content-box .image-container,
  .container-solutions .content-box > div:not(.image-container) {
    max-width: 100%;
  }
  .container-solutions .content-box:nth-child(even) {
    flex-direction: column;
  }
}
.blur-active {
  filter: blur(6px);
  pointer-events: none;
  transition: filter 0.3s ease;
}
/*
 * These are styles that can be used in different cases to 
 * define the way that containers and their children should behave
 * in a two dimensional layout system.
 * The .section-grid class will be used in the parent container and 
 * can be combined with other classes for different results,
 * for example in alignment.
 * 
 * Example
 * <div class"section-grid">
 * </div>
 *
 * @file SectionGrid.less
 */
.section-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* 
     * The class .reverse will affect only the behaviour of the element on the mobile screen
     * This is needed when we use a 'zig-zag' layout on desktop screen,
     * for example we place an image on the left (order:1) and text on the right(order:2),
     * in the next row we have the text on the left and the image on the right,
     * third row the opposite again etc..
     * On mobile screen the rows wrap the containing elements so the one is on top of the other.
     * By default the element in the left side of the row will go on top of the right element
     * but we usually want all the rows to show the elements in the same order,
     * for example all the text containers on top of the images. 
     * In this case we will use reverse class in the row that has the image to the first position (left)
     */
}
.section-grid.spacing-between {
  justify-content: space-between;
}
.section-grid.vert-center {
  align-items: center;
}
.section-grid.vert-top {
  align-items: start;
}
.section-grid.big-spacing {
  gap: 64px;
}
.section-grid.small-spacing {
  gap: 16px;
}
@media screen and (max-width: 880px) {
  .section-grid.reverse-mobile :first-child {
    order: 2;
  }
}
.section-grid .wide {
  grid-column: span 2;
}
@media screen and (max-width: 880px) {
  .section-grid .wide {
    grid-column: span 1;
  }
}
.section-grid .tall {
  grid-row: span 2;
}
.section-grid.small-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
@media screen and (max-width: 32em) {
  .section-grid.small-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 16px;
  }
}
.section-grid.xsmall-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
@media screen and (max-width: 32em) {
  .section-grid.xsmall-grid {
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
    grid-gap: 16px;
  }
}
.section-grid.medium-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
@media screen and (max-width: 32em) {
  .section-grid.medium-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    grid-gap: 16px;
  }
}
.section-grid.large-grid {
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}
@media screen and (max-width: 32em) {
  .section-grid.large-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    grid-gap: 16px;
  }
}
.four-blocks-container {
  display: flex;
  gap: 0.5rem;
  padding: 0 14vw;
  box-sizing: border-box;
  margin-top: 0;
  padding-bottom: 0;
  max-width: 150rem;
  align-items: flex-start;
}
@media screen and (max-width: 2000px) {
  .four-blocks-container {
    padding: 0 10vw;
  }
}
.four-blocks-container > div h3 {
  font-size: 1rem;
  color: grey;
  font-weight: 400;
}
.four-blocks-container > div h4 {
  font-size: 1.3rem;
  margin-bottom: 0;
  line-height: 0.5rem;
}
.four-blocks-container > div h5 {
  font-size: 1rem;
  font-weight: 450;
  margin-bottom: 0;
  line-height: 2rem;
}
.four-blocks-container > div {
  flex: 1 1 10%;
  min-width: 0;
  border-radius: 6px;
  padding: 1rem;
  box-sizing: border-box;
}
.four-blocks-container > div:nth-child(-n+3) {
  flex: 1 1 20%;
  min-width: 0;
}
.four-blocks-container > div:not(:first-child):not(:last-child)::before {
  content: "";
  display: block;
  height: 3rem;
}
.four-blocks-container > div:last-child {
  position: relative;
  flex-basis: 12%;
  min-width: 100px;
  box-shadow: none;
  padding-left: 3rem;
}
.four-blocks-container > div:last-child h3 {
  margin-bottom: 1.1rem;
}
.four-blocks-container > div:last-child p.menu-description {
  font-weight: normal;
  font-size: 1.1rem;
  padding-top: 1.4rem;
}
.four-blocks-container > div:last-child::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 4px;
  height: 200%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0));
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  pointer-events: none;
}
.checklist {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.4em 0;
}
.checklist li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.15rem;
  font-size: 1.2rem;
  line-height: 1.7;
}
.checklist li::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%238FCAB9' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 1.5rem 1.5rem;
  background-repeat: no-repeat;
}
.image-nav {
  margin-top: 1rem;
}
.image-nav img {
  width: 18rem;
}
.onMobile {
  display: flex;
}
@media screen and (max-width: 1000px) {
  .mobile-hidden {
    display: none !important;
  }
}
.solution-nav {
  position: relative;
  display: inline-block;
}
.solution-nav img {
  width: 15vw;
  border-radius: 5px;
  display: block;
}
@media screen and (max-width: 2000px) {
  .solution-nav img {
    width: 17vw;
    /* or whatever value you prefer */
  }
}
.solution-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  width: 80%;
  text-align: center;
}
.solution-text h4 {
  line-height: 1.5 !important;
  word-break: break-word;
  margin: 0;
}
.list-sol {
  font-weight: normal;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.solutions-container h3 {
  margin-bottom: 1.23rem;
}
.mobile-line-break {
  word-break: break-word;
  white-space: normal;
  text-align: left;
  max-width: 180px;
}
.helpnav > div h3 {
  margin-bottom: 1.2rem;
}
.helpnav > div p {
  margin-top: 1rem;
  font-weight: normal !important;
  font-size: 1.1rem !important;
}
.whitepapers-block {
  margin-top: 2.6rem;
}
.trainings-block {
  margin-top: 1rem;
}
.helpnav > div:last-child p.menu-description {
  font-weight: normal;
  font-size: 1.1rem;
  padding-top: 0.4rem !important;
}
.pricing-nav > div p {
  margin-top: 0.5rem;
  font-weight: normal !important;
  font-size: 1.1rem !important;
}
.pricing-nav > div:last-child p.menu-description {
  margin-top: 0rem !important;
}
.aboutus-nav img {
  width: 16vw;
  border-radius: 5px;
  margin-top: 1.5rem;
  /* instead of padding */
  display: block;
  /* avoid inline image spacing */
  object-fit: cover;
}
.aboutus-nav > div:not(:first-child) h4 {
  margin-top: 3rem;
  /* push these h4s down */
}
.aboutus-nav h3 {
  margin-bottom: 1.2rem;
}
/**
 *  Here we define the styles of the <section>. 
 *
 *  There can be different possibilities, for example we 
 *  usually add a background color to the section or we 
 *  want to have space around the content. For these options,
 *  we have created in this file a couple of classes that can
 *  be used in the <section> tag. 
 *
 *  @file    Section.less
 */
section .spacing {
  padding: 64px 0;
}
section .spacing-top {
  padding-top: 64px;
}
section .white-background {
  background-color: #F9FAFA;
}
section .light-background {
  background-color: #EBEDED;
}
section .dark-background {
  background-color: #D8DBDC;
}
section .image-background {
  background: url(Images/Homepage/homepage-bg.jpg);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
section .highlighted {
  background-color: #25282A;
}
section .highlighted h2,
section .highlighted p {
  color: #F9FAFA;
}
section .highlighted > a {
  color: #FFC600;
}
section .special {
  background: linear-gradient(45deg, #00426A 0%, #007AC4 100%);
}
section .special h2 {
  color: #F9FAFA;
}
section .section-header {
  margin-bottom: 64px;
}
section .section-header .onMobile {
  margin-bottom: 32px;
}
section .section-header.dark-base {
  color: #F9FAFA;
}
/*
 * These are styles that can be used in different cases to 
 * define the way that containers and their children should behave
 * in a two dimensional layout system.
 * The .section-grid class will be used in the parent container and 
 * can be combined with other classes for different results,
 * for example in alignment.
 * 
 * Example
 * <div class"section-grid">
 * </div>
 *
 * @file SectionGrid.less
 */
.aboutus-nav {
  display: flex;
  gap: 0.5rem;
  padding: 0 14vw;
  box-sizing: border-box;
  margin-top: 0;
  padding-bottom: 0;
  max-width: 150rem;
  align-items: flex-start;
}
@media screen and (max-width: 2000px) {
  .aboutus-nav {
    padding: 0 10vw;
  }
}
.aboutus-nav > div h3 {
  font-size: 1rem;
  color: grey;
  font-weight: 400;
}
.aboutus-nav > div h4 {
  font-size: 1.3rem;
  margin-bottom: 0;
  line-height: 0.5rem;
}
.aboutus-nav > div h5 {
  font-size: 1rem;
  font-weight: 450;
  margin-bottom: 0;
  line-height: 2rem;
}
.aboutus-nav > div {
  flex: 1 1 10%;
  min-width: 0;
  border-radius: 6px;
  padding: 1rem;
  box-sizing: border-box;
}
.aboutus-nav img {
  width: 15vw;
  border-radius: 5px;
  margin-top: 1.5rem;
  /* instead of padding */
  display: block;
  /* avoid inline image spacing */
  object-fit: cover;
}
.aboutus-nav > div:not(:first-child) h4 {
  margin-top: 3rem;
  /* push these h4s down */
}
.aboutus-nav h3 {
  margin-bottom: 1.2rem;
}
/**
 * General styles of forms. The form can be horizontal or vertical
 * Horizontal form is a form with the labels before the inputs: 
 *          ________
 *   Label |________| 
 *
 * and vertical forms have the labels on top of the inputs: 
 *
 *   Label
 *    _______
 *   |_______|
 *
 * You just need to add the class to the form element.
 * Check also /Resources/Style/Common/Forms/formsguide.txt  
 *
 * Helper classes in a form :
 *
 * end-aligned       :  used for horizontal alignment
 * vertically-center :  used for vertical alignment
 * (More details below) 
 * 
 * @author   Marianna Kavvadia <marianna.kavvadia@copernica.com>
 * @file     Form.less
 */
form > div,
.form > div {
  margin-bottom: 0.5rem;
}
form > div:last-child,
.form > div:last-child {
  margin-bottom: 0;
}
form.form-vertical label,
.form.form-vertical label {
  display: block;
  margin-bottom: 0.2rem;
}
form.form-vertical .input,
.form.form-vertical .input,
form.form-vertical input:not([type="checkbox"]):not([type="radio"]),
.form.form-vertical input:not([type="checkbox"]):not([type="radio"]),
form.form-vertical textarea,
.form.form-vertical textarea,
form.form-vertical select,
.form.form-vertical select {
  width: 100%;
  display: block;
  margin-top: 0.2rem;
}
form.form-horizontal label,
.form.form-horizontal label {
  margin-right: 0.2rem;
}
form.form-horizontal .input,
.form.form-horizontal .input,
form.form-horizontal input:not([type="checkbox"]):not([type="radio"]),
.form.form-horizontal input:not([type="checkbox"]):not([type="radio"]),
form.form-horizontal textarea,
.form.form-horizontal textarea,
form.form-horizontal select,
.form.form-horizontal select {
  margin-right: 0.875rem;
}
form.form-horizontal .input:last-child,
.form.form-horizontal .input:last-child,
form.form-horizontal input:not([type="checkbox"]):not([type="radio"]):last-child,
.form.form-horizontal input:not([type="checkbox"]):not([type="radio"]):last-child,
form.form-horizontal textarea:last-child,
.form.form-horizontal textarea:last-child,
form.form-horizontal select:last-child,
.form.form-horizontal select:last-child {
  margin-right: 0;
}
@media screen and (max-width: 32em) {
  form.form-horizontal .input,
  .form.form-horizontal .input,
  form.form-horizontal input:not([type="checkbox"]):not([type="radio"]),
  .form.form-horizontal input:not([type="checkbox"]):not([type="radio"]),
  form.form-horizontal textarea,
  .form.form-horizontal textarea,
  form.form-horizontal select,
  .form.form-horizontal select {
    margin-bottom: 0.5rem;
    margin-right: 0;
    width: 100%;
  }
}
form .end-aligned,
.form .end-aligned {
  text-align: right;
}
form .vertically-center,
.form .vertically-center {
  align-self: center;
}
form .vertically-center label,
.form .vertically-center label {
  display: inline-block;
}
form .notice,
.form .notice {
  margin: 0.5rem 0;
}
form.compact,
.form.compact {
  max-width: 30rem;
  margin: 0 auto;
}
/* 
 * General styles for labels 
 * Check /Resources/Style/Common/Forms/formsguide.txt  
 * 
 * Labels example : 
 *          <label for="username">Label</label>
 *          <input type="text" id="username">
 * or
 *          <label>
 *              <span>Label</span> 
 *              <input type="text">
 *          </label>
 *
 * @file Label.less
 */
label {
  font-weight: 600;
  font-size: 1rem;
}
label.nowrap-label {
  white-space: nowrap;
}
@media screen and (max-width: 880px) {
  label {
    white-space: normal;
  }
}
label span {
  display: block;
  margin-bottom: 0.2rem;
}
/* 
 * A form block is a container of related form elements.
 * Labels, inputs, checkboxes, buttons, whatever could be in a form,
 * can be wrapped in this class
 * It is a useful class if you want to group or seperate in a form 
 * inputs/radio buttons etc of the same or different category 
 * 
 * Check /Resources/Style/Common/Forms/formsguide.txt  
 * 
 * 
 * Example :
 *  
 *   <div class="form-block">
 *     <label>The label</label>
 *     <input>
 *   </div> 
 *
 *     or with multiple rows: 
 *
 *     <div class="form-block">
 *         <div>
 *             <label>
 *             <input>
 *         </div>
 *          <div>
 *             <label>
 *             <input>
 *         </div>
 *     </div> 
 *
 *  @file FormBlock.less
 */
.form-block {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.form-block > div {
  margin-bottom: 0.5rem;
}
.form-block > div:last-child {
  margin-bottom: 0;
}
.form-block:last-of-type {
  border-bottom: none;
}
.form-block.act {
  background-color: #EBEDED;
  border: 1px solid #B1B7BA;
  padding: 0.5rem 1rem;
}
/**
 *  A form field
 *
 *  <div class="form-field">
 *    <label></label>
 *    <input />
 *  </div>
 */
.form-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0.5rem 0;
}
.form-field label {
  flex-basis: 30%;
}
.form-field > input,
.form-field > select,
.form-field > textarea,
.form-field > .inputs-row {
  flex-basis: 65%;
  box-sizing: border-box;
}
.form-field input,
.form-field select,
.form-field textarea {
  background-color: transparent;
  border: none;
  transition: outline 4s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border: none;
}
.form-field textarea {
  padding: 0.5rem;
}
.form-field textarea.large {
  height: 20rem;
  resize: none;
}
.form-field .upload-container {
  flex-basis: 65%;
}
.form-field.vertical {
  align-items: stretch;
}
.form-field.vertical label,
.form-field.vertical input,
.form-field.vertical textarea,
.form-field.vertical select {
  flex-basis: 100%;
}
@media screen and (max-width: 880px) {
  .form-field {
    flex-direction: column;
    align-items: stretch;
  }
}
.form-field .error-message {
  margin-left: auto;
}
/*
 * Styles for inputs 
 * Part of the form ,
 * Check /Resources/Style/Common/Forms/formsguide.txt  
 *
 * @file Input.less
 */
.input,
input {
  border-radius: 0.2rem;
  border: 1px solid #dadede;
  padding: 0.5rem;
  color: #25282A;
  box-sizing: border-box;
}
.input:focus::placeholder,
input:focus::placeholder {
  transition: opacity 0.2s 0.2s ease;
  opacity: 0;
}
.input:focus,
input:focus {
  border: 1px solid #b2baba;
  outline: none;
}
.input.small,
input.small {
  max-width: 5rem;
  min-width: 4rem;
}
.input.medium,
input.medium {
  max-width: 10rem;
  min-width: 7rem;
}
.input.large,
input.large {
  max-width: 17rem;
  min-width: 12rem;
}
@media screen and (max-width: 880px) {
  .input.small,
  input.small,
  .input.medium,
  input.medium,
  .input.large,
  input.large {
    max-width: 100%;
  }
}
.input.full-width,
input.full-width {
  width: 100%;
}
.input.block,
input.block {
  display: block;
  width: 100%;
}
select {
  border-radius: 0.2rem;
  border: 1px solid #dadede;
  padding: 0.5rem;
  color: #25282A;
  box-sizing: border-box;
  padding: 0.44rem;
  background: #fff;
}
select:focus::placeholder {
  transition: opacity 0.2s 0.2s ease;
  opacity: 0;
}
select:focus {
  border: 1px solid #b2baba;
  outline: none;
}
select.small {
  max-width: 5rem;
  min-width: 4rem;
}
select.medium {
  max-width: 10rem;
  min-width: 7rem;
}
select.large {
  max-width: 17rem;
  min-width: 12rem;
}
@media screen and (max-width: 880px) {
  select.small,
  select.medium,
  select.large {
    max-width: 100%;
  }
}
select.full-width {
  width: 100%;
}
select.block {
  display: block;
  width: 100%;
}
/* 
 * @file InputsRow.less
 *
 * Inputs row is a container that holds all the elements in one row 
 * We need this class to be able to align properly all the elements
 * that are in the same row and add the spacing betweenn them.
 * These elements can be anything that you could use in a form as inputs,
 * checkboxes, select, radio buttons and also some text.    
 *
 * Example : 
 * 
 * <div class="inputs-row">
 *    <div>
 *        <label>Label</label>
 *        <input>
 *    </div>
 *    <div class="vertically-center">  -- > for more info check Form.less 
 *        <span>and a number:</span>
 *    </div>
 *    <div>
 *        <label>Label</label>
 *        <input class="small">
 *    </div>
 *    <div>
 *        <label>Label</label>
 *        <select class="medium">
 *            <option>Option 1</option>
 *            <option>Option 2</option>
 *        </select>
 *    </div>
 *    <div class="vertically-center">
 *        <input type="checkbox">
 *        <label for="subscribeNews">Subscribe to newsletter?</label>
 *    </div>
 *    <div class="vertically-center">
 *        <input type="radio">
 *        <label>I choose you</label>
 *    </div>
 * </div>
 */
.inputs-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.inputs-row > * {
  flex-grow: 1;
}
.inputs-row > * {
  margin-left: 0.2em;
  margin-right: 0.2em;
}
.inputs-row > *:first-child {
  margin-left: 0;
}
.inputs-row > *:last-child {
  margin-right: 0;
}
@media screen and (max-width: 880px) {
  .inputs-row > * {
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 32em) {
  .inputs-row > * {
    margin-right: 0;
    margin-left: 0;
  }
}
.inputs-row.full-width {
  width: 100%;
}
@media screen and (max-width: 32em) {
  .inputs-row {
    width: 100%;
  }
}
/* 
 * Input-set is a combination of an input and a button 
 * that we use next and sticked to each other.
 * The button should be attached to the input with perfect height alignment
 *
 * This input set is used for example in subscription forms or search forms, etc..
 * 
 * Example : 
 *
 * <div class="inputset">
 *    <input type="email">
 *    <button>Submit</button>
 * </div>
 *
 * @file InputSet.less
 *
 */
.inputset {
  border-radius: 0.2rem;
  border: 1px solid #dadede;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  overflow: hidden;
}
.inputset:focus::placeholder {
  transition: opacity 0.2s 0.2s ease;
  opacity: 0;
}
.inputset:focus {
  border: 1px solid #b2baba;
  outline: none;
}
.inputset.small {
  max-width: 5rem;
  min-width: 4rem;
}
.inputset.medium {
  max-width: 10rem;
  min-width: 7rem;
}
.inputset.large {
  max-width: 17rem;
  min-width: 12rem;
}
@media screen and (max-width: 880px) {
  .inputset.small,
  .inputset.medium,
  .inputset.large {
    max-width: 100%;
  }
}
.inputset.full-width {
  width: 100%;
}
.inputset.block {
  display: block;
  width: 100%;
}
.inputset.block {
  display: flex;
}
.inputset > * {
  padding: 0.5rem;
  font-size: 1rem;
}
.inputset .input,
.inputset input {
  border: none;
  border-radius: 0;
  flex-basis: 0;
  flex-grow: 9;
  flex-shrink: 1;
  overflow: unset;
}
.inputset button {
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 0;
  border: none;
  border-radius: 0;
  overflow: unset;
}
/*
 * Sometimes we need to show to the user that something went wrong.
 * Maybe an input value was wrong or an input that needed to be filled is empty, etc..
 * To achieve that, we create class 'error-message', that gives the proper 
 * styles to the element.
 *
 * @author   Marianna Kavvadia <marianna.kavvadia@copernica.com>
 * @file ErrorMessage.less
 *
 */
.error-message,
.warning-message {
  font-weight: normal;
  font-size: 14px;
  margin: 0.25rem 0;
  display: block;
}
.error-message:before,
.warning-message:before {
  content: "\f071";
  margin-right: 0.5rem;
  font-family: FontAwesome;
}
.error-message {
  color: #C8102E;
}
.warning-message {
  color: #F8B006;
}
/**
 *  Special styles of forms. Eventually these styles will 
 *  replace the general form styles. For now we use the class
 *  .form-container. 
 *  It's a form that contains input fields that have labels seated 
 *  within them until you focus into it. As soon as you focus on the
 *  input field, the label moves smoothly to the top and the input 
 *  field is revealed.
 *
 * You just need to add the class to the form element.
 *
 * 
 * @author   Marianna Kavvadia <marianna.kavvadia@copernica.com>
 * @file     FormContainer.less
 */
.form-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.form-container label {
  width: 100%;
  margin-bottom: 12px;
  position: relative;
  border: 1px solid #D8DBDC;
  border-radius: 6px;
  overflow: hidden;
}
.form-container input,
.form-container textarea,
.form-container select {
  border: none;
  outline: none;
  background: transparent;
  box-sizing: border-box;
  font-size: 20px;
  width: 100%;
  caret-color: #007AC4;
}
.form-container input,
.form-container textarea {
  padding: 16px 16px 0 16px;
  position: relative;
}
.form-container select {
  padding: 12px;
  box-shadow: inset 0px 0px 0px 1px #D8DBDC;
  border-radius: 6px;
  overflow: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #B1B7BA 50%), linear-gradient(135deg, #B1B7BA 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}
.form-container select:focus {
  box-shadow: inset 0px 0px 0px 1px #007AC4;
  background-image: linear-gradient(45deg, transparent 50%, #007AC4 50%), linear-gradient(135deg, #007AC4 50%, transparent 50%);
}
.form-container select option:first-child {
  color: #B1B7BA;
}
.form-container input::placeholder,
.form-container textarea::placeholder {
  opacity: 0;
}
.form-container input:-webkit-autofill,
.form-container input:-webkit-autofill:hover,
.form-container input:-webkit-autofill:focus,
.form-container textarea:-webkit-autofill,
.form-container textarea:-webkit-autofill:hover,
.form-container textarea:-webkit-autofill:focus,
.form-container select:-webkit-autofill,
.form-container select:-webkit-autofill:hover,
.form-container select:-webkit-autofill:focus {
  -webkit-text-fill-color: #25282A;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}
.form-container label span {
  position: absolute;
  top: 0;
  left: 15px;
  transform: translateY(10px);
  transition-duration: 300ms;
  font-size: 20px;
  line-height: 24px;
  color: #B1B7BA;
  font-weight: 400;
}
.form-container label span.error-message {
  position: relative;
  left: 0;
  font-size: 14px;
  color: #C8102E;
}
.form-container label:focus-within > span,
.form-container input:not(:placeholder-shown) + span,
.form-container textarea:not(:placeholder-shown) + span {
  color: #007AC4;
  caret-color: #007AC4;
  font-size: 12px;
  line-height: 24px;
  transform: translateY(0px);
}
.form-container label:focus-within {
  border: 1px solid #007AC4;
}
.form-container label.error-field {
  border: 1px solid #C8102E;
}
.form-container button {
  font-size: 20px;
}
/**
 * Special styles for newsletter checkboxes. This is used when you want to include
 * a checkbox for subscribing to the newsletter on the Copernica homepage for example.
 * 
 * @author   Dylan Vermeulen <dylan.vermeulen@copernica.com>
 * @file     NewsletterCheckbox.less
 */
.newsletter-checkbox input#newsletter {
  width: 20px;
  height: 20px;
  margin-bottom: 18px;
}
.newsletter-checkbox label {
  border: none;
  font-size: 20px;
  padding-left: 8px;
}
.newsletter-checkbox .warning small {
  width: 100%;
}
/* 
 * Styles for the layout of all the pages
 * Main.less
 */
.main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main .main-content {
  flex: 1;
}
/*
 * Styles of the content in frontpage.
 * The frontpage is splitted into sections
 * that have different styles and content
 *
 * @file main-content.less 
 */
.main-content .section-big {
  padding: 10rem 0;
}
/* 
 * Styles for footer
 * MainFooter.less
 */
.main-footer {
  padding-top: 32px;
  background-color: #25282A;
  color: #7D8284;
}
.main-footer ul {
  list-style-type: none;
  padding-left: 0;
}
.main-footer ul li a {
  color: #7D8284;
  font-size: 16px;
  line-height: 20px;
}
.main-footer ul li a i {
  margin-left: 0.5rem;
}
.main-footer h4 a {
  color: #7D8284;
  margin: 0;
}
.main-footer .section-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.main-footer .social-icons img {
  max-width: 0.9em;
}
.main-footer .social-icons a {
  text-decoration: none;
}
.main-footer .footer-newsletter .inputset {
  border: none;
  flex-direction: row;
  align-items: stretch;
}
.main-footer .footer-newsletter .inputset input {
  background-color: #34383B;
  color: #B1B7BA;
  width: 100%;
}
/**
 * FooterBottom.less
 */
.footer-bottom {
  background: #191B1D;
  margin-top: 2rem;
  padding: 1rem;
  text-align: center;
  color: #666E74;
  font-size: 16px;
}
.footer-bottom ul {
  margin: 0;
  padding: 0;
}
.footer-bottom ul li {
  display: inline-block;
  border-right: 1px solid #666E74;
  margin-right: 5px;
  padding-right: 8px;
  line-height: 14px;
}
.footer-bottom ul li:last-child {
  border-right: none;
}
/*
 * Styles of the layout of most of the pages
 * except for the frontpage
 * 
 * Example of a layout of a simple page: 
 *
 * <div class="main-content-inner">
 *    <div class="inner-introduction">
 *        <h1>Intro</h1>
 *        <p>That's an introduction of the page</p>
 *    </div>
 *    <div class="inner-content-container">
 *        <div class="inner-content"></div>
 *        <div class="inner-sidebar"></div>
 *    </div>
 * </div>
 *
 * @file MainContentInner.less 
 */
.main-content-inner {
  min-height: 70vh;
  background-color: #ffffff;
}
.main-content-inner .inner-content-container {
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.main-content-inner .inner-content-container .inner-content {
  flex-basis: 70%;
  flex-grow: 0;
  width: 70%;
  max-width: 70%;
}
@media screen and (max-width: 1024px) {
  .main-content-inner .inner-content-container .inner-content {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
  }
}
.main-content-inner .inner-content-container .inner-sidebar {
  flex-basis: 28%;
  flex-grow: 0;
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
@media screen and (max-width: 1024px) {
  .main-content-inner .inner-content-container .inner-sidebar {
    flex-basis: 100%;
    margin-bottom: 1rem;
  }
}
/*
 * Styles for header of the website.
 *
 * @file Header.less
 * @author Marianna Kavvadia <marianna.kavvadia@copernica.com>
 */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 99;
}
/*
 * Styles for the main navigation of the website.
 * For small screens a menu button appears and when clicked expands the
 * navigation with an accordion style. (ToggleMenu.less)
 *
 * @file MainNavigation.less
 * @author Marianna Kavvadia <marianna.kavvadia@copernica.com>
 */
.main-navigation {
  background-color: #F9FAFA;
}
.main-navigation .header-container {
  width: 90%;
  margin: 0 auto;
}
.main-navigation .user-menu {
  display: flex;
  min-width: 200px;
}
.main-navigation .main-nav-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  width: 70%;
}
.main-navigation .main-nav-list .main-menu {
  margin-bottom: 0;
  padding: 0;
  flex-shrink: 0;
}
.main-navigation .main-nav-list .main-menu .separate-box {
  border-left: 1px solid #B1B7BA;
  padding-left: 32px;
  flex-shrink: 1;
}
.main-navigation .main-nav-list .main-menu .bottom-box {
  border-top: 1px solid #B1B7BA;
  padding: 16px 0;
}
.main-navigation .main-nav-list .main-menu .bottom-box.one-item {
  justify-content: flex-end;
}
@media screen and (max-width: 880px) {
  .main-navigation .main-nav-list .main-menu .bottom-box.one-item {
    justify-content: flex-start;
  }
}
.main-navigation .main-nav-list .main-menu .card {
  background-color: #EBEDED;
}
.main-navigation .main-nav-list .main-menu .card img {
  height: 120px;
}
.main-navigation .main-nav-list .main-menu li {
  margin-bottom: 0;
  list-style: none;
}
.main-navigation .main-nav-list .main-menu li a {
  color: #25282A;
  line-height: 2rem;
  word-break: normal;
}
.main-navigation .main-nav-list .main-menu li a.not-dropdown {
  padding-left: 1rem;
}
.main-navigation .main-nav-list .main-menu li a i {
  margin-left: 0.5rem;
}
.main-navigation .main-nav-list .main-menu li a:hover {
  text-decoration: none;
  color: #007AC4;
}
@media screen and (max-width: 1224px) {
  .main-navigation .main-nav-list .main-menu li a {
    position: initial;
  }
}
.main-navigation .main-nav-list .secondary-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.main-navigation .main-nav-list .navigation-contact-details {
  display: none;
}
@media screen and (min-width: 1224px) {
  .main-navigation .main-nav-list .mobile-languageswitch {
    display: none;
  }
}
@media screen and (max-width: 1224px) {
  .main-navigation .main-nav-list {
    visibility: hidden;
    right: -17rem;
    transition: right 0.2s linear;
    height: 100vh;
    max-height: 100%;
    position: fixed;
    top: 60px;
    z-index: 999;
    background: #F9FAFA;
    box-sizing: border-box;
    flex-direction: column;
    align-items: flex-start;
  }
}
.main-navigation .main-nav-list.expand {
  visibility: visible;
  transition: right 0.2s linear;
  right: 0rem;
  width: 17rem;
  padding: 2rem;
  overflow-y: auto;
  justify-content: flex-start;
}
.main-navigation .main-nav-list.expand ul {
  order: 4;
  width: 100%;
  margin: 0;
  padding: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.main-navigation .main-nav-list.expand li {
  width: 100%;
}
.main-navigation .main-nav-list.expand li .dropdown .dropdown-label {
  padding: 0;
}
.main-navigation .main-nav-list.expand li .dropdown .dropdown-label span::after {
  right: 15px;
}
.main-navigation .main-nav-list.expand li .dropdown .dropdown-content {
  position: relative;
  top: 0;
  left: 0;
  min-width: auto;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  padding-top: 0.5rem;
}
.main-navigation .main-nav-list.expand li .dropdown .dropdown-content .content-box {
  flex-direction: column;
  gap: 0;
  padding: 0;
}
.main-navigation .main-nav-list.expand li .dropdown .dropdown-content .content-box h4 {
  padding-top: 8px;
}
.main-navigation .main-nav-list.expand li .dropdown .dropdown-content .content-box .section-grid {
  gap: 0;
}
.main-navigation .main-nav-list.expand li .dropdown .dropdown-content .content-box.aboutus-dropdown .card {
  background-color: transparent;
  text-align: left;
}
.main-navigation .main-nav-list.expand li .dropdown .dropdown-content .content-box.aboutus-dropdown .card img {
  display: none;
}
.main-navigation .main-nav-list.expand li .dropdown .dropdown-content .content-box.aboutus-dropdown .card .card-content {
  padding: 0;
}
.main-navigation .main-nav-list.expand li .dropdown .dropdown-content .content-box.aboutus-dropdown .card:hover {
  box-shadow: none;
}
.main-navigation .main-nav-list.expand li .dropdown .dropdown-content .content-box.aboutus-dropdown .contact-details {
  display: none;
}
.main-navigation .main-nav-list.expand li .dropdown .dropdown-content .content-box .separate-box {
  border-left: none;
  padding: 0;
}
.main-navigation .main-nav-list.expand li a.not-dropdown {
  padding: 0;
}
.main-navigation .main-nav-list.expand .secondary-menu {
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (max-height: 550px) {
  .main-navigation .main-nav-list.expand {
    max-height: 86vh;
  }
}
@media only screen and (max-height: 300px) {
  .main-navigation .main-nav-list.expand {
    max-height: 77vh;
  }
}
.main-navigation .main-nav-list.expand .search-nav {
  order: 3;
}
.main-navigation .main-nav-list.expand .language-nav {
  display: none;
}
.main-navigation .main-nav-list.expand .accordion {
  display: block;
  order: 2;
  color: #25282A;
  width: 100%;
}
.main-navigation .main-nav-list.expand .accordion a {
  width: 49%;
  display: inline-block;
  text-align: center;
  border-bottom: 3px solid #F5F6F6;
  padding: 0.5rem 0;
}
.main-navigation .main-nav-list.expand .accordion a.active {
  border-bottom: 3px solid #007AC4;
  background-color: #F5F6F6;
  text-decoration: none;
}
.main-navigation .main-nav-list.expand .navigation-contact-details {
  order: 5;
  display: block;
}
.main-navigation .main-nav-list.expand .navigation-contact-details a,
.main-navigation .main-nav-list.expand .navigation-contact-details span {
  display: block;
}
.main-navigation .navigation-login {
  color: #25282A;
  display: block;
}
.main-navigation .navigation-login:hover {
  text-decoration: none;
}
.main-navigation .accordion {
  display: none;
}
.main-navigation .navigation-register {
  border-left: 1px solid #25282A;
  padding: 0 0.5rem;
  margin-left: 0.5rem;
  color: #007AC4;
}
.main-navigation .navigation-register:hover {
  text-decoration: none;
}
.main-navigation div[data-widget="switchlanguage"] a:hover,
.main-navigation div[data-widget="switchlanguage"] a.active {
  text-decoration: underline;
}
@media screen and (max-width: 1224px) {
  .main-navigation div[data-widget="switchlanguage"] a:hover,
  .main-navigation div[data-widget="switchlanguage"] a.active {
    text-decoration: none;
  }
}
.main-navigation .fa-search {
  color: #25282A;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.4s ease-in-out;
}
.main-navigation .fa-search.active {
  transform: rotate(1turn);
}
@media screen and (max-width: 1224px) {
  .main-navigation .fa-search {
    padding: 0.75rem;
    position: absolute;
    z-index: 1;
    pointer-events: none;
  }
}
@media screen and (max-width: 20em) {
  .main-navigation .fa-search {
    margin-right: 0.5rem;
  }
}
/*
 * Styles for toggle menu
 * It is the main navigation of the website in smaller screen sizes 
 * like in a mobile
 *
 * @file ToggleMenu.less
 *
 */
/* The toggle to show or hide the main menu. In this case: a hamburger menu */
.toggle-menu {
  display: none;
  width: 2rem;
  margin: 2rem 0;
  position: relative;
}
.toggle-menu span {
  position: relative;
  display: block;
  width: 100%;
  height: 5px;
  background-color: #25282A;
  transition: all 0.3s;
  backface-visibility: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.toggle-menu span:after,
.toggle-menu span:before {
  content: "";
  position: absolute;
  left: 0;
  top: -9px;
  width: 100%;
  height: 5px;
  background-color: #25282A;
  transition: all 0.3s;
  backface-visibility: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.toggle-menu span:after {
  top: 9px;
}
.toggle-menu.active span {
  background-color: transparent;
}
.toggle-menu.active span:before {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
  -ms-transform: rotate(45deg) translate(5px, 5px);
  transform: rotate(45deg) translate(5px, 5px);
}
.toggle-menu.active span:after {
  -webkit-transform: rotate(-45deg) translate(7px, -8px);
  -ms-transform: rotate(-45deg) translate(7px, -8px);
  transform: rotate(-45deg) translate(7px, -8px);
}
@media only screen and (max-width: 1224px) {
  .toggle-menu {
    /* The Hamburger menu icon */
    display: block;
  }
}
/* 
 * @file SwitchBar.less
 * 
 */
.switch-bar {
  display: none;
  padding: 1rem;
  margin-bottom: 0;
  color: white;
  text-align: center;
  position: fixed;
  bottom: 1rem;
  left: 15vw;
  max-width: 70vw;
  z-index: 20000;
  background-color: cornflowerblue;
  border-radius: 2px;
  box-shadow: 0 2px 1px #34383B;
}
.switch-bar p {
  word-break: break-word;
  line-height: 2;
}
.switch-bar p,
.switch-bar a {
  display: inline;
  margin: 0 0.25rem;
}
.switch-bar a {
  font-weight: bold;
  color: white;
  padding: 0.5rem;
  border: 2px solid white;
}
.switch-bar.active {
  display: block;
}
/*
 * Styles for a warning bar that appears 
 * only in internet explorer 9 or less
 * 
 * BrowserWarningBar.less
 *
 */
.browser-warningbar {
  padding: 1rem;
  margin: 0;
}
.browser-warningbar p {
  padding: 0;
  font-weight: normal;
  margin: 0;
  text-align: center;
  font-size: 1rem;
}
.browser-warningbar p:first-child {
  font-weight: 600;
}
/*
 * Styles for the search form in main navigation
 *
 * @file SearchMainNavigation.less
 */
.main-navigation-searchform {
  position: absolute;
  right: 0;
  max-width: 0px;
  opacity: 0;
  box-sizing: border-box;
  background-color: #F9FAFA;
  border-radius: 5px;
  padding: 0.5rem 0.5rem 0.5rem 3rem;
}
@media screen and (max-width: 1224px) {
  .main-navigation-searchform {
    position: relative;
    max-width: 100%;
    opacity: 1;
    background-color: #F5F6F6;
    border-radius: 5px;
    padding: 0.5rem 0.5rem 0.5rem 3rem;
  }
}
.main-navigation-searchform input {
  padding: 0;
  height: 2rem;
}
.main-navigation-searchform input::placeholder {
  color: #25282A;
  font-size: 16px;
}
.main-navigation-searchform input:-webkit-autofill,
.main-navigation-searchform input:-webkit-autofill:hover,
.main-navigation-searchform input:-webkit-autofill:focus {
  -webkit-text-fill-color: #25282A;
  -webkit-box-shadow: 0 0 0px 1000px #F9FAFA inset;
  transition: background-color 5000s ease-in-out 0s;
}
.main-navigation-searchform input::-webkit-search-cancel-button {
  display: none;
}
.main-navigation-searchform.opened {
  animation: close 0.4s ease-in-out;
  animation-fill-mode: initial;
}
.main-navigation-searchform.show {
  animation: search 0.4s ease-in-out;
  animation-fill-mode: forwards;
  padding: 0.25rem 0.75rem;
}
@media screen and (max-width: 1020px) {
  .main-navigation-searchform.show {
    top: -0.25rem;
  }
}
.main-navigation-searchform form {
  margin: 0;
}
.main-navigation-searchform form input {
  font-size: 1em;
  border: none;
  width: 100%;
  color: #25282A;
  background-color: transparent;
}
@keyframes search {
  0% {
    max-width: 0;
    transform: translateY(0rem);
    padding: 0.25rem 0;
  }
  25% {
    opacity: 0;
    padding: 0.25rem 0;
  }
  45% {
    opacity: 1;
    padding: 0.25rem 0.75rem;
  }
  65% {
    max-width: 0;
    min-width: 0;
    transform: translateY(1.5rem);
    opacity: 1;
  }
  100% {
    max-width: 300px;
    min-width: 300px;
    transform: translateY(1.5rem);
    opacity: 1;
  }
}
@keyframes close {
  0% {
    max-width: 300px;
    min-width: 300px;
    transform: translateY(1.5rem);
    opacity: 1;
    padding: 0.25rem 0;
  }
  65% {
    max-width: 0;
    min-width: 0;
    opacity: 1;
    transform: translateY(1.5rem);
    padding: 0.25rem 0;
  }
  85% {
    opacity: 0;
  }
  100% {
    max-width: 0;
    opacity: 0;
    transform: translateY(0rem);
    padding: 0.25rem 0.75rem;
  }
}
/*
 * Jobpositions.less
 */
.job-details p {
  font-size: 1rem;
  line-height: 1.25rem;
  margin-bottom: 0.5rem;
  background-repeat: no-repeat;
  padding-left: 2rem;
}
.job-details p.job-feature-location {
  background-image: url(/Resources/Images/Jobs/Icon_Location.svg);
}
.job-details p.job-feature-salary {
  background-image: url(/Resources/Images/Jobs/Icon_Money.svg);
}
.job-details p.job-feature-hours {
  background-image: url(/Resources/Images/Jobs/Icon_Time.svg);
}
/*
 * Styles for the profile page of each partner
 *
 * @file PartnerProfile.less
 */
.partner-profile .partner-introduction .image-container {
  margin-bottom: 32px;
}
.partner-profile .partner-reviews .reviews-list {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}
.partner-profile .partner-reviews .reviews-list .content-box {
  margin-bottom: 0;
}
.partner-profile .partner-reviews .review .reviewer {
  color: #B1B7BA;
}
/*
 * Partners.less
 * 
 */
.partners-page .search-section .form-container {
  flex-direction: row;
}
.partners-page .search-section .form-container .input,
.partners-page .search-section .form-container select,
.partners-page .search-section .form-container label {
  background-color: #fff;
}
.partners-page .search-section .form-container label,
.partners-page .search-section .form-container select {
  flex-basis: 20rem;
  margin-bottom: 0;
  margin-right: 1rem;
}
@media screen and (max-width: 880px) {
  .partners-page .search-section .form-container label,
  .partners-page .search-section .form-container select {
    flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 880px) {
  .partners-page .search-section .form-container button {
    width: 100%;
  }
}
.partners-page .partneroftheyear .image-container {
  margin-bottom: 0;
  max-height: 14rem;
}
.partners-page .partneroftheyear span {
  color: #FFC600;
}
.partners-page .partner-list .partner-container {
  color: #25282A;
  transition: all 0.3s ease-in;
  margin-bottom: 0;
}
.partners-page .partner-list .partner-container:hover {
  text-decoration: none;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
}
.partners-page .partner-list .partner-container:hover span {
  text-decoration: underline;
}
.partners-page .partner-list .partner-container .image-container {
  height: 4.5rem;
  margin-bottom: 1rem;
}
.partners-page .partner-list .partner-container p {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.partners-page .partner-list .partner-container span {
  color: #007AC4;
  display: block;
  margin-top: 1rem;
}
.partners-page .partner-usps {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
}
@media screen and (max-width: 880px) {
  .partners-page .partner-usps {
    grid-template-columns: repeat(1, minmax(320px, 1fr));
  }
}
.partners-page .integration-logos .image-container {
  width: 10rem;
}
.partners-page iframe {
  aspect-ratio: 1.77777778;
  width: 100%;
}
.partners-page .privacy-statement {
  margin-bottom: 16px;
}
/*
 * Styles of support page. A page where we shoow the options that the user has
 * when he needs help with something.
 *
 * @file Support.less
 *
 */
.support-container .content-box {
  margin-bottom: 0;
}
.support-container .content-box.documentation-block {
  grid-row: span 4;
}
.support-container .content-box.documentation-block .inputset {
  margin-bottom: 1rem;
  width: 70%;
}
.support-container .support-training {
  background-image: url('/Resources/Images/Support/bg-training.jpg');
  background-size: cover;
  background-position: 100% 70%;
}
/**
 *  These are the styles for our shadow-cards, formerly known as knowledge-base
 *
 *  @author  Tycho Atsma        <tycho.atsma@copernica.com>
 *  @author  Thijs van Diessen  <thijs.vandiessen@copernica.com>
 *  @file    shadow-cards.less
 */
.shadow-cards {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
@supports (display: grid) {
  .shadow-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
    grid-gap: 1rem;
  }
  .shadow-cards section:first-child {
    grid-row: 1/3;
  }
  .shadow-cards section:first-child img {
    height: 80%;
    min-height: 20rem;
  }
  .shadow-cards section:first-child h3 {
    padding-top: 0.5rem;
    font-size: 1.7em;
  }
  .shadow-cards section.small-section {
    grid-row: 1/1;
  }
  .shadow-cards .subscribeNewsletter {
    grid-row: 3/3;
    grid-column-start: 1;
    grid-column-end: -1;
  }
}
.shadow-cards > section {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  flex-basis: 30%;
  overflow: hidden;
}
@media screen and (max-width: 880px) {
  .shadow-cards > section {
    flex-basis: 100%;
  }
}
@supports (display: grid) {
  .shadow-cards > section {
    box-shadow: 1px 1px 2px 1px #EBEDED;
  }
}
.shadow-cards > section h1 a,
.shadow-cards > section h2 a,
.shadow-cards > section h3 a {
  color: #25282A;
}
.shadow-cards > section img {
  min-width: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  max-height: 7rem;
  min-height: 7rem;
  background-color: #79b2c3;
}
.shadow-cards .section-content {
  padding: 0 1rem;
}
.shadow-cards footer {
  padding: 0 1rem;
  margin-top: auto;
}
/*
 * @file  Documentation-nav.less
 *
 * Styles for the documentation navigation
 */
.documentation-nav ul {
  list-style: none;
  padding-left: 0;
  font-weight: 300;
}
.documentation-nav ul > li > ul > li {
  margin-left: 2rem;
}
.documentation-nav li {
  position: relative;
}
.documentation-nav li > span {
  position: absolute;
  cursor: pointer;
}
.documentation-nav li > span::before {
  content: "\229E";
  font-family: FontAwesome;
  margin-right: 0.5rem;
}
.documentation-nav li.expanded > span::before {
  content: "\229F";
}
.documentation-nav li.expanded > ul {
  display: block;
}
.documentation-nav li.last-level > span::before {
  content: "\25CB";
  cursor: default;
}
.documentation-nav li > ul {
  display: none;
}
.documentation-nav > ul > li > a {
  font-weight: 400;
}
.documentation-nav li > a.active {
  color: #fff;
  font-weight: 400;
  background-color: #007AC4;
}
.documentation-nav a {
  color: #25282A;
  font-size: 1rem;
  line-height: 1.5rem;
  display: block;
  margin-left: 1.5rem;
  padding: 0.1rem 0.25rem;
}
.documentation-nav a:hover {
  background: #007AC4;
  color: white;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
}
.documentation-nav select {
  display: none;
  width: 100%;
  margin: 1rem 0;
}
@media screen and (max-width: 880px) {
  .documentation-nav ul {
    display: none;
  }
  .documentation-nav select {
    display: block;
  }
}
/* 
 * Post.less
 *
 */
.post-container {
  padding: 3rem 0;
  margin: 0 auto;
}
@media (min-width: 53rem) {
  .post-container {
    max-width: 50rem;
  }
}
.post-container article div p img {
  width: 100%;
}
.post-container article div p:has(img) {
  color: #B1B7BA;
}
/* 
 * AuthorProfile.less
 *
 */
.author-profile .profile-header {
  background: url("/Resources/Images/Hero/IJ_header.jpg");
  background-repeat: no-repeat;
  background-position: 10% bottom;
  background-size: cover;
  margin-bottom: 6rem;
  padding-top: 4rem;
}
.author-profile .profile-header .profile-image {
  float: left;
  position: relative;
  top: 2rem;
  width: 8rem;
  height: 8rem;
  overflow: hidden;
  background-color: white;
  border: 0.5rem solid white;
}
.author-profile .profile-header .profile-image img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1224px) {
  .author-profile .more-articles-container {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-gap: 1rem;
  }
}
.author-profile .more-articles-container article {
  max-width: 40rem;
  padding: 2rem 0;
  border-bottom: 1px solid #f1f1f1;
}
.author-profile .more-articles-container article p {
  padding: 0;
}
.author-profile .more-articles-container article:last-child {
  border: none;
  padding-bottom: 5rem;
}
/* 
 * @file TermsConditions.less
 *
 * Styles for the block that contains terms and conditions
 */
.terms_conditions {
  height: 10rem;
  overflow: auto;
  margin-bottom: 1rem;
  border: 1px solid #F5F6F6;
  padding: 1rem;
}
.terms_conditions p {
  padding-bottom: 0rem;
}
.terms_conditions h3 {
  padding-top: 1.5rem;
  padding-bottom: 0.3rem;
}
.terms_conditions dd {
  margin-bottom: 0.15rem;
}
.terms_conditions dd em {
  margin-bottom: 0rem;
}
.terms_conditions.big {
  height: 30rem;
}
/**
 * Styles for the page that contain our terms and conditions
 */
.terms-of-service header {
  margin-bottom: 1rem;
}
.terms-of-service .title {
  margin-bottom: 0;
}
.terms-of-service ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.terms-of-service ul li {
  margin: 2rem 0;
}
.terms-of-service ul li a {
  background-color: cornflowerblue;
  color: white;
  border-radius: 20rem;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
.terms-of-service ul li a:hover {
  text-decoration: none;
  opacity: 0.9;
}
.terms-of-service ul li a .fa {
  margin-left: 0;
  margin-right: 0.5rem;
}
.terms-of-service ul li small {
  margin-left: 1rem;
}
.terms-of-service ul li small .fa {
  margin-left: 1rem;
  margin-right: 1rem;
  font-size: 1rem;
  color: cornflowerblue;
}
.terms-of-service ul li small .fa:hover + .changelog {
  display: inline-block;
}
.terms-of-service ul li small .changelog {
  font-style: italic;
  display: none;
  margin: 0;
}
/*
 * Pricing.less
 *
 * Pricing page
 *
 */
.pricing-page section {
  padding: 4rem 0;
}
.pricing-page section.colored {
  background-color: #F5F6F6;
}
.pricing-page section .intro-text {
  margin-bottom: 4rem;
  padding: 0 4rem;
}
.pricing-page section .content-box .widget_tooltip.fa {
  color: #D8DBDC;
}
.pricing-page section .content-box.special .widget_tooltip.fa {
  color: #007AC4;
}
.pricing-page section .column.size-2 {
  flex-basis: 48.8%;
}
@media screen and (max-width: 880px) {
  .pricing-page section .column.size-2 {
    flex-basis: 100%;
  }
}
.pricing-page section.main-pricing {
  padding-bottom: 2rem;
}
.pricing-page section.main-pricing .pricing-table {
  flex-basis: 47%;
}
.pricing-page section.main-pricing .pricing-table table td:first-child {
  width: 60%;
}
.pricing-page section.main-pricing .pricing-table table td:last-child {
  text-align: center;
}
@media screen and (max-width: 880px) {
  .pricing-page section.main-pricing .pricing-table {
    flex-basis: 100%;
  }
}
.pricing-page section.main-pricing .fa.fa-check {
  color: #25A149;
}
.pricing-page table.two-columns td,
.pricing-page table.two-columns th {
  width: 50%;
}
.pricing-page table.two-columns td:first-child,
.pricing-page table.two-columns th:first-child {
  text-align: right;
}
.pricing-page table th {
  cursor: inherit;
}
.pricing-page table .tooltip-cell {
  width: 32px;
}
.pricing-page .pricing-customers {
  background-color: #EBEDED;
  text-align: center;
}
.pricing-page .pricing-customers h2 {
  padding: 0 4rem;
}
.pricing-page .pricing-customers img {
  width: 100%;
  max-width: 70rem;
}
/**
 *  These are the styles for an integration page
 *  @file    Integration.less
 */
.integration-page {
  background-color: #f5f6f6;
}
.integration-page .inner-content-container {
  margin-bottom: 0;
}
.integration-page .inner-content-container .content-box {
  margin-bottom: 4rem;
}
@media screen and (max-width: 1024px) {
  .integration-page .inner-content-container .content-box {
    margin-bottom: 2rem;
  }
}
.integration-page .inner-sidebar .contact-form .form-field button {
  width: 100%;
}
.integration-page .inner-sidebar .contact-form textarea {
  resize: vertical;
}
/*
 * Styles of the page, which contains types and logos of integrations
 *
 * Integrations.less
 */
.integrations-page {
  background-color: #F5F6F6;
}
.integrations-page header {
  background: radial-gradient(at bottom, #007AC4 0%, #00426A 100%);
  text-align: center;
  color: #ffffff;
}
.integrations-page ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.integrations-page .column-sidebar {
  flex-basis: 30%;
}
.integrations-page .column-content {
  flex-basis: 68%;
}
@media screen and (max-width: 880px) {
  .integrations-page .column-sidebar,
  .integrations-page .column-content {
    flex-basis: 100%;
  }
}
.integrations-page .integrations-container {
  padding: 4rem 0;
}
.integrations-page .integrations-menu {
  background: #EBEDED;
  padding: 3rem;
  border-radius: 1rem;
  position: sticky;
  top: 25px;
}
.integrations-page .integrations-menu li {
  margin-bottom: 12px;
}
.integrations-page .integrations-menu a {
  display: block;
  color: #25282A;
}
.integrations-page .integrations-menu a:hover {
  text-decoration: none;
  color: #007AC4;
}
.integrations-page .integrations-logos-container {
  margin-bottom: 4rem;
}
.integrations-page .integrations-logos-container:last-child {
  margin-bottom: 0;
}
.integrations-page .integrations-logos-container h2 {
  margin-bottom: 0;
}
.integrations-page .integrations-logos-container ul {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}
@supports (display: grid) {
  .integrations-page .integrations-logos-container ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
    grid-template-rows: auto;
    grid-gap: 1rem;
  }
  @media screen and (max-width: 32em) {
    .integrations-page .integrations-logos-container ul {
      width: 100%;
    }
  }
  .integrations-page .integrations-logos-container ul a {
    display: block;
    background-color: #ffffff;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s linear;
    padding: 1.3rem;
    max-width: 100%;
    height: 5.5rem;
  }
  .integrations-page .integrations-logos-container ul a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 50%;
  }
  .integrations-page .integrations-logos-container ul a svg {
    height: 60px;
  }
  .integrations-page .integrations-logos-container ul a:hover {
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
  }
}
.integrations-page .integrations-cta {
  background-color: #EBEDED;
  padding: 4rem 0 2rem;
}
.integrations-page .integrations-cta .cta-integration {
  flex-basis: 30%;
}
@media screen and (max-width: 880px) {
  .integrations-page .integrations-cta .cta-integration {
    flex-basis: 100%;
  }
}
.integrations-page .integrations-cta .cta-demo {
  flex-basis: 68%;
}
@media screen and (max-width: 880px) {
  .integrations-page .integrations-cta .cta-demo {
    flex-basis: 100%;
  }
}
.integrations-page .integrations-cta .cta-demo .button.cta {
  padding: 0.75rem 2rem;
  color: #25282A;
}
/* 
 * @file MapRoute.less
 *
 * Styles for the map container
 *
 */
#map-route #map.scrolloff {
  pointer-events: none;
}
/* 
 * Styles for icons that we use as links to the social media platforms
 *
 * SocialIcons.less
 */
.social-icons {
  margin: 1rem 0;
}
.social-icons a {
  font-size: 1.8rem;
  margin-right: 0.5rem;
  transition: all 0.2s ease-in-out;
}
.social-icons a.fa-github {
  color: #333333;
}
.social-icons a.fa-facebook {
  color: #3B5998;
}
.social-icons a.fa-twitter {
  color: #00ACEE;
}
.social-icons a.fa-google {
  color: #DB4437;
}
.social-icons a.fa-linkedin {
  color: #0E76A8;
}
.social-icons a.fa-rss {
  color: #F26522;
}
.social-icons a:last-child {
  margin-right: 0;
}
.social-icons a:hover {
  transform: scale(1.1);
}
/*
 * @file Rating.less
 *
 */
.rating {
  position: relative;
  display: inline-block;
}
.rating .rating-values {
  position: absolute;
  top: 0;
  left: 0;
}
.rating .rating-values,
.rating .rating-background {
  word-spacing: 0;
}
.rating .rating-values .rating-star::before,
.rating .rating-background .rating-star::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2223%22%20viewBox%3D%220%200%2024%2023%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M12%201.76587L15.09%208.01587L22%209.02587L17%2013.8959L18.18%2020.7659L12%2017.5159L5.82%2020.7659L7%2013.8959L2%209.02587L8.91%208.01587L12%201.76587Z%22%20stroke%3D%22%23FFC600%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 0 0;
  display: inline-block;
  width: 1em;
  height: 1em;
  content: '';
  margin-right: 4px;
  padding-right: 0.1em;
}
.rating .rating-values .rating-star::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M10%200.765869L13.09%207.01587L20%208.02587L15%2012.8959L16.18%2019.7659L10%2016.5159L3.82%2019.7659L5%2012.8959L0%208.02587L6.91%207.01587L10%200.765869Z%22%20fill%3D%22%23FFC600%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  opacity: 0;
  transition: opacity 0.5s;
}
.rating[data-rate="10"] .rating-values .rating-star:nth-child(1)::before {
  opacity: 1;
}
.rating[data-rate="10"] .rating-values .rating-star:nth-child(2)::before {
  opacity: 1;
}
.rating[data-rate="10"] .rating-values .rating-star:nth-child(3)::before {
  opacity: 1;
}
.rating[data-rate="10"] .rating-values .rating-star:nth-child(4)::before {
  opacity: 1;
}
.rating[data-rate="10"] .rating-values .rating-star:nth-child(5)::before {
  opacity: 1;
}
.rating[data-rate="10"] .rating-values .rating-star:nth-child(6)::before {
  opacity: 1;
}
.rating[data-rate="10"] .rating-values .rating-star:nth-child(7)::before {
  opacity: 1;
}
.rating[data-rate="10"] .rating-values .rating-star:nth-child(8)::before {
  opacity: 1;
}
.rating[data-rate="10"] .rating-values .rating-star:nth-child(9)::before {
  opacity: 1;
}
.rating[data-rate="10"] .rating-values .rating-star:nth-child(10)::before {
  opacity: 1;
}
.rating[data-rate="9"] .rating-values .rating-star:nth-child(1)::before {
  opacity: 1;
}
.rating[data-rate="9"] .rating-values .rating-star:nth-child(2)::before {
  opacity: 1;
}
.rating[data-rate="9"] .rating-values .rating-star:nth-child(3)::before {
  opacity: 1;
}
.rating[data-rate="9"] .rating-values .rating-star:nth-child(4)::before {
  opacity: 1;
}
.rating[data-rate="9"] .rating-values .rating-star:nth-child(5)::before {
  opacity: 1;
}
.rating[data-rate="9"] .rating-values .rating-star:nth-child(6)::before {
  opacity: 1;
}
.rating[data-rate="9"] .rating-values .rating-star:nth-child(7)::before {
  opacity: 1;
}
.rating[data-rate="9"] .rating-values .rating-star:nth-child(8)::before {
  opacity: 1;
}
.rating[data-rate="9"] .rating-values .rating-star:nth-child(9)::before {
  opacity: 1;
}
.rating[data-rate="8"] .rating-values .rating-star:nth-child(1)::before {
  opacity: 1;
}
.rating[data-rate="8"] .rating-values .rating-star:nth-child(2)::before {
  opacity: 1;
}
.rating[data-rate="8"] .rating-values .rating-star:nth-child(3)::before {
  opacity: 1;
}
.rating[data-rate="8"] .rating-values .rating-star:nth-child(4)::before {
  opacity: 1;
}
.rating[data-rate="8"] .rating-values .rating-star:nth-child(5)::before {
  opacity: 1;
}
.rating[data-rate="8"] .rating-values .rating-star:nth-child(6)::before {
  opacity: 1;
}
.rating[data-rate="8"] .rating-values .rating-star:nth-child(7)::before {
  opacity: 1;
}
.rating[data-rate="8"] .rating-values .rating-star:nth-child(8)::before {
  opacity: 1;
}
.rating[data-rate="7"] .rating-values .rating-star:nth-child(1)::before {
  opacity: 1;
}
.rating[data-rate="7"] .rating-values .rating-star:nth-child(2)::before {
  opacity: 1;
}
.rating[data-rate="7"] .rating-values .rating-star:nth-child(3)::before {
  opacity: 1;
}
.rating[data-rate="7"] .rating-values .rating-star:nth-child(4)::before {
  opacity: 1;
}
.rating[data-rate="7"] .rating-values .rating-star:nth-child(5)::before {
  opacity: 1;
}
.rating[data-rate="7"] .rating-values .rating-star:nth-child(6)::before {
  opacity: 1;
}
.rating[data-rate="7"] .rating-values .rating-star:nth-child(7)::before {
  opacity: 1;
}
.rating[data-rate="6"] .rating-values .rating-star:nth-child(1)::before {
  opacity: 1;
}
.rating[data-rate="6"] .rating-values .rating-star:nth-child(2)::before {
  opacity: 1;
}
.rating[data-rate="6"] .rating-values .rating-star:nth-child(3)::before {
  opacity: 1;
}
.rating[data-rate="6"] .rating-values .rating-star:nth-child(4)::before {
  opacity: 1;
}
.rating[data-rate="6"] .rating-values .rating-star:nth-child(5)::before {
  opacity: 1;
}
.rating[data-rate="6"] .rating-values .rating-star:nth-child(6)::before {
  opacity: 1;
}
.rating[data-rate="5"] .rating-values .rating-star:nth-child(1)::before {
  opacity: 1;
}
.rating[data-rate="5"] .rating-values .rating-star:nth-child(2)::before {
  opacity: 1;
}
.rating[data-rate="5"] .rating-values .rating-star:nth-child(3)::before {
  opacity: 1;
}
.rating[data-rate="5"] .rating-values .rating-star:nth-child(4)::before {
  opacity: 1;
}
.rating[data-rate="5"] .rating-values .rating-star:nth-child(5)::before {
  opacity: 1;
}
.rating[data-rate="4"] .rating-values .rating-star:nth-child(1)::before {
  opacity: 1;
}
.rating[data-rate="4"] .rating-values .rating-star:nth-child(2)::before {
  opacity: 1;
}
.rating[data-rate="4"] .rating-values .rating-star:nth-child(3)::before {
  opacity: 1;
}
.rating[data-rate="4"] .rating-values .rating-star:nth-child(4)::before {
  opacity: 1;
}
.rating[data-rate="3"] .rating-values .rating-star:nth-child(1)::before {
  opacity: 1;
}
.rating[data-rate="3"] .rating-values .rating-star:nth-child(2)::before {
  opacity: 1;
}
.rating[data-rate="3"] .rating-values .rating-star:nth-child(3)::before {
  opacity: 1;
}
.rating[data-rate="2"] .rating-values .rating-star:nth-child(1)::before {
  opacity: 1;
}
.rating[data-rate="2"] .rating-values .rating-star:nth-child(2)::before {
  opacity: 1;
}
.rating[data-rate="1"] .rating-values .rating-star:nth-child(1)::before {
  opacity: 1;
}
/*
 * Special styles for the page where we show the search results
 * Changes to fonts,colors and spacings to look more like google search results
 *
 * @file SearchResults.less
 */
.search-results .inner-introduction {
  padding: 5rem 0 1rem 0;
}
.search-results .inner-introduction .inputset {
  max-width: 500px;
}
.search-results .search-result-item {
  margin: 1rem 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid #efefef;
}
.search-results .search-result-item h2 {
  margin-bottom: 0;
  padding-bottom: 0;
}
.search-results .search-result-item p {
  margin-top: 0.25rem;
}
/**
 *  Styles for login, register and forgot password forms
 *
 *  @file       Login.less
 *  @author     Paweł Kuźnik <pawel.kuznik@copernica.com>
 */
@keyframes loginerror-show {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.login {
  position: relative;
  max-height: 100vh;
  max-width: 30rem;
}
.login .login-error {
  padding: 0.7rem;
  margin-bottom: 1rem;
  border-top: 2px solid #003b5e;
  border-radius: 3px;
  box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.4);
  background: #007AC4;
  animation-name: loginerror-show;
  animation-duration: 400ms;
  animation-iteration-count: 1;
  color: #fff;
  font-weight: bold;
}
.login .login-error::before {
  content: '\f071';
  font-family: FontAwesome;
  margin-right: 0.5rem;
}
.login .login-error:empty {
  display: none;
}
.login .login-content form .forgot-password {
  font-size: 0.875rem;
}
.login .login-alternativeaction {
  margin-top: 2rem;
  text-align: center;
}
/**
 *  These are the styles for the profile menu
 * 
 *  @author  Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file    profilemenu.less
 */
/**
 * The data part container
 */
[data-part="UserMenu"] img.profile-avatar {
  cursor: pointer;
}
/**
 *  The modal window
 */
.profile-menu .profile-header img {
  border-radius: 999rem;
  border: 0.2rem solid #EBEDED;
  width: 8rem;
  height: 8rem;
  background-color: white;
}
.profile-menu .profile-menu,
.profile-menu .profile-information,
.profile-menu .profile-actions,
.profile-menu .product-information {
  margin-bottom: 2rem;
}
@media screen and (max-width: 880px) {
  .profile-menu .profile-header img {
    left: calc(50vw - 3rem);
  }
}
/* 
 * Thumbnail.less
 */
.thumbnail {
  max-width: 100%;
  box-sizing: border-box;
  object-fit: cover;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.thumbnail.x-small {
  min-width: 3rem;
  max-width: 3rem;
  height: 3rem;
}
.thumbnail.small {
  min-width: 4rem;
  max-width: 4rem;
  height: 4rem;
}
.thumbnail.medium {
  min-width: 6rem;
  max-width: 6rem;
  height: 6rem;
}
.thumbnail.large {
  min-width: 8rem;
  max-width: 8rem;
  height: 8rem;
}
@media screen and (max-width: 880px) {
  .thumbnail.large {
    min-width: 6rem;
    max-width: 6rem;
    height: 6rem;
  }
}
/* 
 * Mask.less
 *
 */
.mask {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #000;
}
/* 
 * Article's keywords, style them to look like tags
 * they're the reason why the article is related with other articles
 * KeywordTag.less
 *
 */
.keyword-tag {
  padding-bottom: 1rem;
}
.keyword-tag span {
  background: #04a0ff;
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}
/* 
 * Icontitle.less
 * Special class for a title container.
 * This class can be used when we want to use an icon/image before a title.
 *
 * Example: 
 * <div class="icontitle">
 *    <img> 
 *    <h1></h1>
 * </div>
 */
.icon-title > * {
  display: inline-block;
}
.icon-title.small img {
  width: 1rem;
}
.icon-title.right img {
  margin-left: 0.5rem;
}
.icon-title img {
  margin-right: 0.5rem;
}
.icon-title.top-aligned {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 880px) {
  .icon-title.top-aligned {
    align-items: center;
  }
}
/*
 * Styles for accordion component
 *
 * @file Accordion.less
 *
 */
.accordion {
  cursor: pointer;
  position: relative;
}
.accordion *[data-accordionpart="title"] {
  margin-bottom: 0;
}
.accordion *[data-accordionpart="title"]::after {
  font-family: FontAwesome;
  position: absolute;
  right: 0.5rem;
  padding-right: 0.5rem;
  content: "\f0d7";
}
.accordion *[data-accordionpart="title"].active::after {
  content: "\f0d8";
}
.accordion *[data-accordionpart="content"] {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.accordion *[data-accordionpart="content"] ul {
  padding: 0px;
  z-index: 1;
}
.accordion *[data-accordionpart="content"] ul li {
  margin-bottom: 0;
}
.accordion *[data-accordionpart="content"].show {
  opacity: 1;
  max-height: 1000px;
}
/*
 * @file Tabs.less
 *
 */
.tabs {
  width: 100%;
}
.tabs nav {
  gap: 12px;
}
.tabs nav.horizontal-tabs {
  margin-bottom: 32px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.tabs nav.horizontal-tabs a {
  display: inline-block;
  padding: 12px 32px;
}
.tabs nav.vertical-tabs {
  display: flex;
  flex-direction: column;
}
.tabs nav a {
  transition: all 0.15s ease-in-out;
  background: #D8DBDC;
  color: #25282A;
}
.tabs nav a:hover {
  background: #FFF;
  text-decoration: none;
}
.tabs nav a.round-box {
  border-radius: 32px;
  overflow: hidden;
}
.tabs nav *[data-switchTo].active {
  box-shadow: inset 0px 0px 0px 2px #007AC4;
  background: #FFF;
  text-decoration: none;
}
/* 
 * General styles for the slider component
 *
 * Slider.less
 *
 */
.slider {
  position: relative;
  overflow: hidden;
  min-height: 30rem;
}
@media screen and (max-width: 880px) {
  .slider {
    min-height: 50rem;
  }
}
.slider .bullets {
  position: absolute;
}
.slider .bullets > li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  background: #494f53;
}
.slider .bullets > li.active {
  background: #C8102E;
}
.slider *[data-sliderpart="content"] {
  position: absolute;
  box-sizing: border-box;
  top: 0;
  bottom: 0;
  width: 100%;
}
.slider *[data-indicator] {
  z-index: 1;
  padding: 0.5rem;
  background: #F9FAFA;
  color: #25282A;
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.2s ease;
  position: absolute;
  top: 40%;
}
.slider *[data-indicator]:hover {
  opacity: 1;
  text-decoration: none;
}
.slider *[data-indicator="prev"] {
  left: 0;
  border-radius: 0 0.2rem 0.2rem 0;
}
.slider *[data-indicator="next"] {
  right: 0;
  border-radius: 0.2rem 0 0 0.2rem;
}
/* 
 * Tooltip.less
 *
 */
.widget_tooltip {
  cursor: help;
}
.widget_tooltip.fa {
  margin-left: 3px;
}
.tooltip {
  position: absolute;
  margin-top: 30px;
  margin-left: 30px;
  z-index: 1000000;
  padding: 20px;
  width: 256px;
  font-family: 'Lato', sans-serif;
  line-height: 24px;
  font-size: 16px;
  text-align: left;
  background: #FFC600;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
  color: #25282A;
  border-radius: 10px;
}
/* 
 * @file DisabledProduct.less
 *
 */
.disabled-product {
  position: relative;
}
.disabled-product i.fa {
  left: 40%;
  bottom: 20%;
  font-size: 1.5rem;
  position: absolute;
  color: rgba(0, 0, 0, 0.7);
}
.disabled-product:hover i.fa-lock:before {
  content: "\f09c";
}
.disabled-product img {
  filter: grayscale(100%);
}
/**
 *  These are styles for the Calendar widget.
 *
 *  @author         Joël Bosch <joel.bosch@copernica.com>
 *  @copyrights     Copernica BV 2019
 */
/**
 *  Main wrapper for the calendar.
 */
.ms-calendar {
  /**
      *  Month
      *  This container contains information about a single month and navigation
      *  elements.
      */
}
.ms-calendar .ms-calendar-month {
  /**
          *  Header
          */
  /**
          *  Days grid
          *  Styling for the grid in which the days are displayed. 
          *  It depends on the width how many times we want to repeat
          */
  /**
          *  Days grid
          *  Styling for the grid in which the days are displayed.
          */
}
.ms-calendar .ms-calendar-month > header {
  display: grid;
  grid-template-columns: 1fr repeat(2, min-content);
  align-items: center;
}
.ms-calendar .ms-calendar-month > header h3 {
  margin: 0;
  text-transform: capitalize;
}
.ms-calendar .ms-calendar-month > header button {
  background-color: transparent;
  color: #25282A;
  font-size: 12px;
}
.ms-calendar .ms-calendar-month > header button.disabled {
  color: #B1B7BA;
}
.ms-calendar .ms-calendar-month > div[width="5"] {
  grid-template-columns: repeat(5, 1fr);
}
.ms-calendar .ms-calendar-month > div[width="7"] {
  grid-template-columns: repeat(7, 1fr);
}
.ms-calendar .ms-calendar-month > div {
  display: grid;
  grid-gap: 12px;
  max-width: 100%;
  grid-template-rows: auto;
  grid-auto-rows: 1fr;
  justify-items: center;
  align-items: center;
  margin-top: 1rem;
}
.ms-calendar .ms-calendar-month > div .ms-calendar-month-weekday {
  text-transform: capitalize;
  color: #B1B7BA;
}
.ms-calendar .ms-calendar-month > div .ms-calendar-month-day {
  text-align: center;
  cursor: default;
}
.ms-calendar .ms-calendar-month > div .ms-calendar-month-day.ms-calendar-month-day-clickable {
  cursor: pointer;
}
.ms-calendar .ms-calendar-month > div .ms-calendar-month-day span {
  line-height: 2.5;
  display: block;
  width: 2.5em;
  height: 2.5em;
}
.ms-calendar .ms-calendar-month > div .ms-calendar-month-day.today span {
  font-weight: bold;
  position: relative;
}
.ms-calendar .ms-calendar-month > div .ms-calendar-month-day.today span::after {
  content: '\002E';
  position: absolute;
  bottom: -0.65em;
  right: 0.65em;
  font-size: 32px;
}
.ms-calendar .ms-calendar-month > div .ms-calendar-month-day.marked {
  background-color: #D7F0FF;
  border-radius: 6px;
  overflow: hidden;
  transition: all ease;
}
.ms-calendar .ms-calendar-month > div .ms-calendar-month-day.marked:hover {
  background: #00426A;
  color: #fff;
}
.ms-calendar .ms-calendar-month > div .ms-calendar-month-day.selected {
  background: #00426A;
  color: #fff;
}
.ms-calendar .ms-calendar-month > div .ms-calendar-month-day.disabled span {
  cursor: not-allowed;
}
/**
 * Widget style definitions
 */
.widget_markdowneditor {
  width: 96%;
  /** 
     *  for conversions sake terms and conditions are now packed 
     *  within overflowing div
     */
}
.widget_markdowneditor div.preview {
  width: 100%;
  overflow: auto;
  height: 500px;
  border: 1px solid #F5F5F5;
  padding: 5px 6px;
  color: #595959;
  display: none;
}
.widget_markdowneditor textarea {
  height: 500px !important;
  width: 100% !important;
}
.widget_markdowneditor span {
  float: right;
}
.widget_markdowneditor label {
  float: left;
}
/**
 * Styles for the widget datefield.
 * It consists of an input that we can choose the date and the time and a button.
 *
 * How to use it - an example: 
 *
 * {datefield name="activefrom" type="datetime" label="{text}Active from{/text}" placeholder="{text}Active from...{/text}"}
 *
 * @file datefield.less
 */
div[data-widget='datefield'] .input-wrapper {
  border-radius: 0.2rem;
  border: 1px solid #dadede;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  overflow: hidden;
}
div[data-widget='datefield'] .input-wrapper:focus::placeholder {
  transition: opacity 0.2s 0.2s ease;
  opacity: 0;
}
div[data-widget='datefield'] .input-wrapper:focus {
  border: 1px solid #b2baba;
  outline: none;
}
div[data-widget='datefield'] .input-wrapper.small {
  max-width: 5rem;
  min-width: 4rem;
}
div[data-widget='datefield'] .input-wrapper.medium {
  max-width: 10rem;
  min-width: 7rem;
}
div[data-widget='datefield'] .input-wrapper.large {
  max-width: 17rem;
  min-width: 12rem;
}
@media screen and (max-width: 880px) {
  div[data-widget='datefield'] .input-wrapper.small,
  div[data-widget='datefield'] .input-wrapper.medium,
  div[data-widget='datefield'] .input-wrapper.large {
    max-width: 100%;
  }
}
div[data-widget='datefield'] .input-wrapper.full-width {
  width: 100%;
}
div[data-widget='datefield'] .input-wrapper.block {
  display: block;
  width: 100%;
}
div[data-widget='datefield'] .input-wrapper.block {
  display: flex;
}
div[data-widget='datefield'] .input-wrapper > * {
  padding: 0.5rem;
  font-size: 1rem;
}
div[data-widget='datefield'] .input-wrapper .input,
div[data-widget='datefield'] .input-wrapper input {
  border: none;
  border-radius: 0;
  flex-basis: 0;
  flex-grow: 9;
  flex-shrink: 1;
  overflow: unset;
}
div[data-widget='datefield'] .input-wrapper button {
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 0;
  border: none;
  border-radius: 0;
  overflow: unset;
}
div[data-widget='datefield'] .input-wrapper > input:not([type="checkbox"]):not([type="radio"]) {
  font-size: 0.9rem;
  margin-top: 0;
}
div[data-widget='datefield'] .input-wrapper > button {
  padding: 0;
}
div[data-widget='datefield'] .input-wrapper .fa-calendar::before {
  font-size: 0.8rem;
  margin-top: -0.2rem;
  display: block;
}
.widget_edittariff .tariff {
  cursor: pointer;
}
.widget_edittariff .tariff td.inline-control {
  width: auto;
}
.widget_edittariff tfoot div.error {
  max-width: 60%;
  display: none;
}
.widget_edittariff tfoot span.force-decend {
  float: right;
}
/*
 * Styles for formstep widget
 * @file FormStep.less
 */
/**
 *  This class is used mainly in wizard-like forms.
 *  Initially we want to hide the widget
 */
.widget_formstep:not(.visible) {
  display: none;
}
/**
 * General styles for the copernica dashboard.
 *
 * @file Dashboard.less
 */
.dashboard {
  background: #EBEDED;
  padding: 4rem 0 1rem 0;
}
@media screen and (max-width: 880px) {
  .dashboard {
    padding: 0;
  }
}
.dashboard > .container {
  width: 100%;
}
/* 
 * The sidebar of the dashboard contains a header and a menu
 *
 * @file DashboardSidebar.less
 */
.dashboard .container-sidebar {
  /**
     *  The dashboard links
     */
}
.dashboard .container-sidebar .sidebar-header .background-overlay {
  background: rgba(0, 0, 0, 0.6);
  position: relative;
  text-align: center;
}
.dashboard .container-sidebar .sidebar-header .background-overlay .profile-image-container {
  display: inline-block;
  padding: 1rem;
}
.dashboard .container-sidebar form {
  margin: 0.5rem 0;
}
.dashboard .container-sidebar form input {
  box-sizing: border-box;
}
.dashboard .container-sidebar .dashboard-buttons .button {
  background: #ffffff;
  color: #25282A;
  border-radius: 0;
  font-size: 0.875rem;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.5rem 1rem;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.dashboard .container-sidebar .dashboard-buttons .button img {
  width: 1rem;
  margin-right: 1rem;
}
.dashboard .container-sidebar .dashboard-buttons .button .fa {
  margin-left: auto;
}
.dashboard .container-sidebar .dashboard-buttons .button:hover {
  background: #D8DBDC;
  color: #fff;
}
.dashboard .container-sidebar .dashboard-buttons .button:hover img {
  filter: brightness(1);
}
.dashboard .container-sidebar .dashboard-buttons.copernica-button {
  padding: 0.5rem;
  margin-right: 0.5rem;
  font-size: 0.8rem;
  font-weight: bold;
  background-color: blue;
  color: #5c5c5c;
}
.dashboard .container-sidebar .dashboard-buttons.copernica-button:hover {
  background-color: #34383B;
}
.dashboard .container-sidebar .dashboard-buttons.copernica-button img {
  height: 1rem;
  width: 1rem;
  margin-right: 0.5rem;
}
/* 
 * Styles for tables that are being used in the dashboard
 *
 * DashboardTable.less
 */
.dashboard-table {
  max-width: 100%;
}
.dashboard-table td:first-child {
  max-width: 20rem;
  width: 20%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (min-width: 1024px) and (max-width: 1224px) {
  .dashboard-table td:first-child {
    max-width: 10rem;
  }
}
@media screen and (min-width: 55em) and (max-width: 1024px) {
  .dashboard-table td:first-child {
    max-width: 7rem;
  }
}
@media screen and (max-width: 880px) {
  .dashboard-table td:first-child {
    max-width: 3rem;
  }
}
/**
 *  These are the styles for the dashboard navigation menu.
 *
 *  @author         Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file           dashboard-menu.less
 *  @documentation  public  
 */
/**
 *  Styles for a menu link
 */
/**
 *  The dashboard toggle button for mobile
 */
.dashboard-menu-toggle {
  width: 100%;
  display: none;
  border-radius: 0;
}
@media screen and (max-width: 880px) {
  .dashboard-menu-toggle {
    display: block;
  }
  .dashboard-menu-toggle[aria-expanded="false"] + .dashboard-menu {
    display: none;
  }
  .dashboard-menu-toggle[aria-expanded="true"] + .dashboard-menu {
    display: block;
  }
}
/**
 *  The dashboard menu
 */
.dashboard-menu {
  background-color: white;
  border: 1px solid #B1B7BA;
  margin-top: 0.5rem;
  /**
     *  The menu links
     */
  /**
     *  The dropdown links
     */
}
.dashboard-menu > a,
.dashboard-menu .accordion a {
  display: block;
  padding: 0.5rem 1rem;
  color: #25282A;
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px dashed #F5F6F6;
  /**
         *  The log out link should be a little different
         */
}
.dashboard-menu > a:hover,
.dashboard-menu .accordion a:hover {
  color: #007AC4;
}
.dashboard-menu > a i.fa,
.dashboard-menu .accordion a i.fa {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.5rem;
}
.dashboard-menu > a.logout-link,
.dashboard-menu .accordion a.logout-link {
  color: #007AC4;
  border-top: 1px solid #007AC4;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.dashboard-menu > .accordion {
  /**
         *  The dropdown label
         */
  /**
         *  The dropdown links
         */
}
.dashboard-menu > .accordion *[data-accordionpart="title"] {
  display: block;
  padding: 0.5rem 1rem;
  color: #25282A;
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px dashed #F5F6F6;
}
.dashboard-menu > .accordion *[data-accordionpart="title"]:hover {
  color: #007AC4;
}
.dashboard-menu > .accordion a {
  display: block;
  padding: 0.5rem 1rem;
  color: #25282A;
  text-decoration: none;
  transition: color 0.3s ease;
  color: #8e8e8e;
  border-bottom: 1px dashed #F5F6F6;
}
.dashboard-menu > .accordion a:hover {
  color: #007AC4;
}
@media screen and (max-width: 880px) {
  .dashboard-menu {
    width: 100%;
  }
}
/**
 *  Here you can find useful classes that are being used
 *  for the structure of the dashboard content.
 *
 * A title: Every page has a h1 title, which is wrapped in a container:
 * <div class="dashboard-main-title"><h1/></div>
 *
 * The content: The content is wrapped in a container,
 * so it will be easier to define all the special styles that we're using for the dashboard content
 * <div class="dashboard-content"><h2></h2><p></p></div> -> for example h2 here will be red
 *
 * Dashboard block: Class that helps to seperate the sections in the dashboard content
 *
 * @file DashboardContent.less
 *
 */
.dashboard .container-content .dashboard-title {
  color: #fff;
  background: #25282A;
  padding: 1rem;
  font-weight: bold;
  margin-top: 0;
}
.dashboard .container-content .button-dashboard {
  background-color: #B1B7BA;
  border-bottom: 2px solid #ccc;
  color: #5c5c5c;
}
.dashboard .container-content .button-dashboard:hover {
  background-color: #D8DBDC;
  filter: initial;
}
.dashboard .container-content .button-dashboard i {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}
.dashboard .container-content .button-dashboard div.icn-external {
  float: right;
  display: block;
}
.dashboard .container-content .button-dashboard.remove {
  color: #C8102E;
}
.dashboard .container-content .button-dashboard.confirm {
  color: #25A149;
}
.dashboard .container-content .block-title {
  background-color: #EBEDED;
  color: #5c5c5c;
  font-weight: bold;
  padding: 1rem;
}
.dashboard .container-content .block-title > a,
.dashboard .container-content .block-title > i {
  float: right;
  font-size: 1rem;
  margin-left: 0.5rem;
  overflow: auto;
}
.dashboard .container-content .block-title > a::after,
.dashboard .container-content .block-title > i::after {
  content: '';
  display: table;
  clear: both;
}
@media screen and (max-width: 600px) {
  .dashboard .container-content .block-title > a,
  .dashboard .container-content .block-title > i {
    float: initial;
    display: block;
  }
}
.dashboard .container-content .block-title > i {
  font-size: 1.5rem;
  line-height: 1.5em;
}
.dashboard .container-content .dashboard-block {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid #F5F6F6;
  background: #fff;
  position: relative;
}
.dashboard .container-content .dashboard-block > *:first-child {
  margin-top: 0;
}
.dashboard .container-content .dashboard-block.block-table {
  padding: 0;
}
.dashboard .container-content .dashboard-block.block-table > table {
  margin: 0;
}
.dashboard .container-content .dashboard-block.disabled .notice {
  filter: blur(0px);
}
.dashboard .container-content .dashboard-block.disabled::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}
.dashboard .container-content .dashboard-block:empty {
  display: none;
}
.dashboard .container-content .dashboard-block > p:not(.notice):last-child {
  padding-bottom: 0;
}
.dashboard .container-content .dashboard-block .block-links {
  margin-top: 1rem;
  box-sizing: border-box;
  background-color: #EBEDED;
  border-top: 1px solid #B1B7BA;
  display: flex;
  flex-flow: row wrap;
}
.dashboard .container-content .dashboard-block .block-links a {
  text-align: left;
  flex-grow: 1;
  margin: 0.5rem;
}
.dashboard .container-content .dashboard-block .block-links a i.fa {
  margin-right: 0.5rem;
}
/* 
 * @file ToggleEdit.less
 *
 * It's a hidded block that we show it when the user clicks on the edit button.
 * It could contain a form and it should have different styles from the block/list that is shown
 */
.toggle-edit {
  background: #fdfdfd;
}
.toggle-edit .hidden-content {
  padding: 1rem;
}
/* 
 * Pxemail.less
 *
 */
#pxemail {
  overflow: hidden;
  width: 100%;
  height: inherit;
  position: relative;
}
#pxemail #pxmailheader {
  font-size: 12px;
  background-color: #eee;
  overflow: hidden;
  padding: 5px 10px;
  border-bottom: solid 1px #ccc;
  text-shadow: white 0 1px;
}
#pxemail #pxmailheader .pxrow {
  min-height: 18px;
  margin-top: 2px;
  clear: both;
}
/**
 *  HighCharts and table combo
 */
.chart-legend {
  width: 10px;
  height: 10px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid white;
  margin-bottom: -1px;
}
/**
 *  These are the styles for dashboard block tabs
 *
 *  @author  Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file    dashboard-tabs.less
 */
.dashboard-tabs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3rem;
  display: flex;
}
.dashboard-tabs + * {
  margin-top: 3rem;
}
.dashboard-tabs .button-tab {
  height: 3rem;
  flex: 1 1 50%;
  box-sizing: border-box;
}
.dashboard-tabs .button-tab:hover {
  background-color: #EBEDED;
  color: #5c5c5c;
  filter: initial;
}
/**
 *  These are the styles for partner management tool
 *
 *  @author  Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file    partnermanagement.less
 */
.dashboard .container-content [data-part="PartnerManagement"] {
  padding: 0;
}
.dashboard .container-content [data-part="PartnerManagement"] .button-tab {
  border-radius: 0;
}
.dashboard .container-content [data-part="PartnerManagement"] .button-tab[data-active="true"] {
  background-color: white;
  font-weight: bold;
}
.dashboard .container-content [data-part="PartnerManagement"] .button-tab:not([data-active="true"]) {
  color: #bdbdbd;
}
.dashboard .container-content [data-part="PartnerManagement"] #partners {
  margin-top: 3rem;
}
.dashboard .container-content [data-part="PartnerManagement"] #partners .form-field {
  padding: 1rem;
}
.dashboard .container-content [data-part="PartnerManagement"] #partners:not([data-tab="health"]) .form-field {
  display: none;
}
.dashboard .container-content [data-part="PartnerManagement"] #partners > button {
  margin: 1rem;
  margin-top: 0;
}
.dashboard .container-content [data-part="PartnerManagement"] #partners p {
  padding: 1rem;
  display: none;
}
.dashboard .container-content [data-part="PartnerManagement"] #partners p.active {
  display: block;
}
.dashboard .container-content [data-part="PartnerManagement"] #partners table {
  table-layout: fixed;
  margin: 0;
}
.dashboard .container-content [data-part="PartnerManagement"] #partners table td,
.dashboard .container-content [data-part="PartnerManagement"] #partners table th {
  line-height: 2.5;
  padding: 0.25rem 0.75rem;
  border: 1px solid #EBEDED;
}
/**
 *  Styles for the view-gdpr-agreement page in the company dashboard.
 *  In this page an iframe is used to preview the agreement someone has signed.
 *
 *  @author             Thomas Kamps <thomas.kamps@copernica.com>
 *  @file               ViewGDPRAgreement.less
 *  @copyright          2018 Copernica BV
 */
/**
 *  The styles
 */
.view-gdpr-agreement > iframe {
  width: 100%;
  height: 1000px;
  margin-top: 20px;
}
/**
 *  These are the styles for training blocks.
 *
 *  @author  Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file    training-block.less
 */
.dashboard .container-content .training-block {
  padding: 0;
  border: none;
}
.dashboard .container-content .training-block td,
.dashboard .container-content .training-block th {
  padding: 0.5rem 1rem;
  line-height: 2.5;
}
.dashboard .container-content .training-block th {
  padding: 0.25rem 1rem;
}
.dashboard .container-content .training-block th:hover {
  background-color: initial;
  cursor: initial;
}
.dashboard .container-content .training-block .button {
  padding: 0.5rem;
  width: 100%;
}
/**
 *  These are the styles for the trial accounts page / dashboard component
 *
 *  @author  Tycho Atsma  <tycho.atsma@copernica.com>
 *  @fil     trials.less
 */
.ms-dashboard-trials form,
.ms-dashboard-trials form > div {
  display: inline-block;
  margin-right: 1rem;
}
.ms-dashboard-trials form label {
  display: block;
}
.ms-dashboard-trials form input,
.ms-dashboard-trials form select {
  padding: 0.5rem;
}
/**
 *  These are the styles for partner commissions
 *
 *  @author  Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file    partnercommissions.less
 */
.partner-commissions .chart {
  margin-bottom: 1rem;
  border: 1px solid #efefef;
}
.partner-commissions header {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 1rem;
}
.partner-commissions header .filters {
  margin-right: 1rem;
}
.partner-commissions header .filters .fa {
  margin-right: 0.5rem;
}
.partner-commissions header .table-info {
  background-color: #fdfdfd;
  padding: 1rem;
  margin-top: 1rem;
}
.partner-commissions header .table-info[data-open="true"] {
  display: block;
}
.partner-commissions header .table-info[data-open="false"] {
  display: none;
}
.partner-commissions .commissions-table td {
  min-width: 100px;
  max-width: 100px;
}
.partner-commissions .commissions-table td:first-child {
  min-width: 50px;
  max-width: 50px;
}
/**
 *  These are the styles for the chart helper
 *
 *  @author  Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file    charthelper.less
 */
.chart .line {
  stroke: #00426A;
  fill: none;
}
.chart .bar {
  fill: #00426A;
}
.chart .data-point {
  fill: #00426A;
  cursor: pointer;
}
.chart .data-point.highlighted {
  fill: #C8102E;
  r: 5;
}
.chart .chart-tooltip {
  text-anchor: middle;
}
.chart .chart-tooltip rect {
  fill: white;
  stroke: #efefef;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
}
.chart .chart-tooltip text {
  font-weight: lighter;
  font-size: 14px;
}
.chart .grid path.domain {
  stroke: #f9f9f9;
}
.chart .grid .tick line {
  stroke: #f9f9f9;
}
/**
 *  These are styles that can be applied on a chart.
 *
 *  @author     Paweł Kuźnik <pawel.kuznik@copernica.com>
 */
.chart .bar-color-1 {
  fill: #79bd9a;
}
.chart .bar-color-2 {
  fill: #f54b06;
}
.chart .bar-color-3 {
  fill: #4f86a0;
}
.dashboard .container-content .dashboard-content .dashboard-block.chart {
  padding: 0;
}
/**
 *  These are the styles for the google captcha badge.
 *
 *  @author  Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file    Resources/Style/Widgets/recaptcha.less
 */
.grecaptcha-badge {
  opacity: 0;
}
/**
 *  These are the styles for the white paper pages.
 *
 *  @file   WhitePapers.less
 */
.white-paper-page .wp-content {
  background: url('/Resources/Images/WhitePaper/wood-texture.jpg');
  background-size: cover;
  background-position: bottom;
  padding-top: 64px;
}
@media screen and (max-width: 1024px) {
  .white-paper-page .wp-content .image-container {
    grid-row: 2;
  }
}
.white-paper-page .wp-content .image-container img {
  display: block;
}
/**
 *  Styles for the pages that are being used to display surveys.
 *
 *  @file       Resources/Style/Pages/SurveyPage.less
 *  @copyright  Copernica BV 2020
 */
/**
 *  Root class.
 */
.survey-page .survey-page-hero {
  background-image: url("/Resources/Images/Hero/pattern.png");
}
/* Homepage.less - Specific styles for the homepage */
.homepage .hero-container {
  padding-top: 58px;
  padding-bottom: 96px;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 880px) {
  .homepage .hero-container {
    padding-top: 35.2px;
    padding-bottom: 35.2px;
  }
}
@media (min-width: 1600px) {
  .homepage .hero-container {
    min-height: 50vh;
  }
}
.homepage .hero-container h1 {
  font-size: 3.015rem;
  line-height: 4.95rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 880px) {
  .homepage .hero-container h1 {
    font-size: 1.7875rem;
    line-height: 2rem;
  }
}
.homepage .hero-container p {
  font-size: 2rem;
  line-height: 2.475rem;
  max-width: 35rem;
  margin: 0 auto;
}
@media screen and (max-width: 880px) {
  .homepage .hero-container p {
    font-size: 1.375rem;
    max-width: 24rem;
    line-height: 2rem;
    max-width: 22rem;
    padding-top: 0.4rem;
    padding-bottom: 0.7rem;
  }
}
.homepage .hero-container .gradient {
  background: linear-gradient(45deg, #fff47e, #fcca15, #ebb800, #ffc600);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: text;
  /* Ensures the text is selectable */
}
.homepage .hero-container .gradient.name-with-comma::after {
  content: ",";
  background: none;
  /* remove gradient */
  color: white;
  user-select: text;
}
.homepage .hero-container .gradient::selection {
  background: rgba(0, 0, 0, 0.27);
  /* Subtle selection highlight */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.homepage .hero-container .button {
  font-size: large;
}
.homepage .hero-container .spacinghero {
  margin-bottom: 3.5rem;
}
.homepage .news-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2em;
}
.homepage .news-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  color: black;
  gap: 1.2rem;
  align-content: center;
  padding-top: 10px;
  padding-bottom: 5px;
  background-color: white;
  box-shadow: 0 1px 4px rgba(231, 231, 231, 0.568);
  /* subtle shadow */
  border-radius: 25px;
  padding-right: 2rem;
  padding-left: 1.5rem;
}
@media screen and (max-width: 880px) {
  .homepage .news-list {
    gap: 0rem;
    padding-top: 0.4rem;
    flex-direction: column;
    padding-bottom: 0.4rem;
  }
  .homepage .news-list li,
  .homepage .news-list li p {
    margin: 0;
    padding: 0;
    line-height: 1.8;
  }
}
.homepage .news-list p {
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-size: medium;
}
@media screen and (max-width: 880px) {
  .homepage .news-list p {
    font-size: small;
    line-height: 2rem;
  }
}
.homepage .news-list a {
  text-decoration: none;
  color: inherit;
}
.homepage .news-container a,
.homepage .news-container a p {
  text-decoration: none;
  color: inherit;
}
.homepage .news-container a::selection,
.homepage .news-container a *::selection {
  background: transparent;
  color: inherit;
}
@media screen and (max-width: 880px) {
  .homepage .news-list img {
    width: 2.4rem;
    display: none;
  }
}
.homepage .solutions {
  font-size: 1rem;
  font-weight: 500;
  padding-bottom: 1em;
}
.homepage .section h2 {
  font-weight: 700;
  font-size: 30px;
}
.homepage .partnerlogos .logos-container img {
  max-height: 85px;
  width: 100%;
  min-width: 12rem;
}
@media screen and (max-width: 880px) {
  .homepage .partnerlogos .logos-container img {
    max-height: 57px;
  }
}
.homepage .email-register {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
}
.homepage .email-register p {
  color: #ff3e30;
  text-align: center;
  font-size: 1.05em;
  margin-top: 0.2em;
  font-style: normal;
}
@media screen and (max-width: 880px) {
  .homepage .email-register p {
    font-size: 0.9em;
  }
}
.homepage .email-register .email-input {
  display: inherit;
  width: 100%;
  display: flex;
  justify-content: center;
}
.homepage .email-register .email-input input {
  width: 35vh;
  max-width: 23em;
  padding: 0.4em;
  padding-left: 1em;
  font-size: 1.2em;
  border-radius: 1em 0 0 1em;
  border: none;
  align-items: center;
  height: 2.1em;
  line-height: 3em;
  background-color: #004a79;
  color: white;
}
@media screen and (max-width: 880px) {
  .homepage .email-register .email-input input {
    width: 15em;
    height: 2.1em;
    line-height: 2em;
  }
}
.homepage .email-register .email-input input::placeholder {
  color: rgba(255, 255, 255, 0.705);
  font-style: normal;
  font-size: 0.95em;
  align-items: center;
}
@media screen and (max-width: 880px) {
  .homepage .email-register .email-input input::placeholder {
    font-size: 0.8em;
  }
}
.homepage .email-register .email-input .button-register {
  border-radius: 0 1em 1em 0;
  background-color: #004a79;
  border: none;
  cursor: pointer;
  padding: 5px 30px 5px 12px;
  height: 39.9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homepage .email-register .email-input .button-register .arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  margin-left: 6px;
}
.homepage .hero-logged-in {
  max-height: 5vh;
}
/**
 *  These are the styles for the cancelpartnership page/
 *
 *  @author  Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file    cancelpartnership.less
 */
.cancelpartnership section,
.cancelpartnership form {
  margin: 1rem 0;
}
.cancelpartnership h3 {
  font-weight: bold;
}
.cancelpartnership p {
  padding-bottom: 0;
}
.cancelpartnership .current-partner {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
.cancelpartnership .current-partner img.logo {
  max-width: 100%;
  margin-right: 1rem;
}
.cancelpartnership .current-partner p {
  padding-bottom: 0;
  padding-top: 0.5rem;
}
.cancelpartnership .current-partner p i {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
}
.cancelpartnership textarea {
  border: none;
  background-color: #B1B7BA;
  display: block;
  width: 100%;
  min-height: 5rem;
}
.cancelpartnership .form-field:last-child {
  display: flex;
  margin-top: 1rem;
}
/* 
 * ListInvoices.less
 *
 */
.list-invoices-page .invoices-list .invoice-container {
  color: #25282A;
  transition: all 0.3s ease-in;
}
.list-invoices-page .invoices-list .invoice-container:hover {
  text-decoration: none;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
}
.list-invoices-page .invoices-list .invoice-container:hover .url {
  text-decoration: underline;
}
.list-invoices-page .invoices-list .invoice-container .invoice {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-invoices-page .invoices-list .invoice-container .invoice div.invoice-tags span {
  margin: 0 0.5rem;
  width: 12rem;
  text-align: center;
  display: inline-block;
  background-color: #F5F6F6;
  padding: 12px 16px;
  border-radius: 80px;
  overflow: hidden;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  line-height: 16px;
}
.list-invoices-page .invoices-list .invoice-container .invoice span.amount {
  width: 12rem;
}
.list-invoices-page .invoices-list .invoice-container .invoice span.url {
  color: #007AC4;
  display: block;
}
.list-invoices-page .invoice-warning {
  text-align: center;
}
/* 
* Styles for ShowInvoice page
*
* @file ShowInvoice.less
*/
.show-invoice-page {
  /**
  *  A form field
  *
  *  <div class="form-field">
  *    <label></label>
  *    <input />
  *  </div>
  */
  display: block;
  width: 100%;
}
.show-invoice-page .invoice-collapsed {
  display: flex;
  justify-content: space-between;
}
.show-invoice-page .invoice-collapsed strong {
  display: inline-block;
  width: 64rem;
}
.show-invoice-page .invoice-collapsed:hover {
  cursor: pointer;
}
.show-invoice-page .invoice-expanded-closer {
  display: flex;
  justify-content: end;
}
.show-invoice-page .invoice-expanded-closer:hover {
  cursor: pointer;
}
.show-invoice-page .hidden {
  display: none;
}
.show-invoice-page .form-block {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.show-invoice-page .form-block > div {
  margin-bottom: 0.5rem;
}
.show-invoice-page .form-block > div:last-child {
  margin-bottom: 0;
}
.show-invoice-page .form-block:last-of-type {
  border-bottom: none;
}
.show-invoice-page .form-block.act {
  background-color: #EBEDED;
  border: 1px solid #B1B7BA;
  padding: 0.5rem 1rem;
}
.show-invoice-page .container .form-field,
.show-invoice-page .form-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0.5rem 0;
}
.show-invoice-page .container .form-field .paymentmethods,
.show-invoice-page .form-field .paymentmethods {
  width: 100%;
}
.show-invoice-page .container .form-field .paymentmethod,
.show-invoice-page .form-field .paymentmethod {
  border-radius: 1em;
  flex-grow: 1;
  border: 1px solid #f1f1f1;
  background: #fff;
  margin-bottom: 1rem;
  padding: 1em;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.8s, box-shadow 0.8s;
  /**
          *  We want to make the icon and the label centered to the middle baseline.
          *  We can achieve that with complex paddings, or we can use the flexbox
          *  for it. We will go with the flexbox.
          */
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  /**
          *  Before each payment method there is a
          */
}
.show-invoice-page .container .form-field .paymentmethod .highlight-box-image,
.show-invoice-page .form-field .paymentmethod .highlight-box-image {
  float: left;
  max-width: 4rem;
  max-height: 4rem;
}
.show-invoice-page .container .form-field .paymentmethod .highlight-box-image ~ *,
.show-invoice-page .form-field .paymentmethod .highlight-box-image ~ * {
  margin-left: 5rem;
}
.show-invoice-page .container .form-field .paymentmethod::after,
.show-invoice-page .form-field .paymentmethod::after {
  content: '';
  display: block;
  clear: both;
}
.show-invoice-page .container .form-field .paymentmethod.small,
.show-invoice-page .form-field .paymentmethod.small {
  padding: 0.3rem;
  border: none;
}
.show-invoice-page .container .form-field .paymentmethod.small p,
.show-invoice-page .form-field .paymentmethod.small p {
  margin-bottom: 0;
}
.show-invoice-page .container .form-field .paymentmethod.colored,
.show-invoice-page .form-field .paymentmethod.colored {
  background: #f9f9f9;
}
.show-invoice-page .container .form-field .paymentmethod::before,
.show-invoice-page .form-field .paymentmethod::before {
  font-family: "FontAwesome";
  font-size: 1.8rem;
  margin-right: 1rem;
  color: #ccc;
  transition: color 0.8s;
}
.show-invoice-page .container .form-field .paymentmethod.ideal::before,
.show-invoice-page .form-field .paymentmethod.ideal::before {
  content: url(/Resources/Images/ideal.svg);
}
.show-invoice-page .container .form-field .paymentmethod.paypal::before,
.show-invoice-page .form-field .paymentmethod.paypal::before {
  content: '\f1ed';
}
.show-invoice-page .container .form-field .paymentmethod.creditcard::before,
.show-invoice-page .form-field .paymentmethod.creditcard::before {
  content: '\f09d';
}
.show-invoice-page .container .form-field .paymentmethod.bank-transfer::before,
.show-invoice-page .form-field .paymentmethod.bank-transfer::before {
  content: '\f0d6';
}
.show-invoice-page .container .form-field .paymentmethod.active,
.show-invoice-page .form-field .paymentmethod.active {
  border-color: #00426A;
  box-shadow: 0px 0px 3px 2px #ddd;
}
.show-invoice-page .container .form-field .paymentmethod.active::before,
.show-invoice-page .form-field .paymentmethod.active::before {
  filter: brightness(60%);
}
.show-invoice-page .container .form-field .paymentmethod .paymentmethod-details,
.show-invoice-page .form-field .paymentmethod .paymentmethod-details {
  flex-basis: 100%;
  cursor: default;
}
.show-invoice-page .container .form-field .paymentmethod .paymentmethod-details table,
.show-invoice-page .form-field .paymentmethod .paymentmethod-details table {
  margin-top: 1rem;
}
.show-invoice-page .container .form-field label,
.show-invoice-page .form-field label {
  flex-basis: 30%;
}
.show-invoice-page .container .form-field > input,
.show-invoice-page .form-field > input,
.show-invoice-page .container .form-field > select,
.show-invoice-page .form-field > select,
.show-invoice-page .container .form-field > textarea,
.show-invoice-page .form-field > textarea,
.show-invoice-page .container .form-field > .inputs-row,
.show-invoice-page .form-field > .inputs-row {
  flex-basis: 65%;
  box-sizing: border-box;
}
.show-invoice-page .container .form-field input,
.show-invoice-page .form-field input,
.show-invoice-page .container .form-field select,
.show-invoice-page .form-field select,
.show-invoice-page .container .form-field textarea,
.show-invoice-page .form-field textarea {
  background-color: #D8DBDC;
  border: none;
  transition: outline 4s;
}
.show-invoice-page .container .form-field input:focus,
.show-invoice-page .form-field input:focus,
.show-invoice-page .container .form-field select:focus,
.show-invoice-page .form-field select:focus,
.show-invoice-page .container .form-field textarea:focus,
.show-invoice-page .form-field textarea:focus {
  border: none;
  outline: 1px solid #b1b1b1;
}
.show-invoice-page .container .form-field textarea,
.show-invoice-page .form-field textarea {
  padding: 0.5rem;
}
.show-invoice-page .container .form-field textarea.large,
.show-invoice-page .form-field textarea.large {
  height: 20rem;
  resize: none;
}
.show-invoice-page .container .form-field .upload-container,
.show-invoice-page .form-field .upload-container {
  flex-basis: 65%;
}
.show-invoice-page .container .form-field.vertical,
.show-invoice-page .form-field.vertical {
  align-items: stretch;
}
.show-invoice-page .container .form-field.vertical label,
.show-invoice-page .form-field.vertical label,
.show-invoice-page .container .form-field.vertical input,
.show-invoice-page .form-field.vertical input,
.show-invoice-page .container .form-field.vertical textarea,
.show-invoice-page .form-field.vertical textarea,
.show-invoice-page .container .form-field.vertical select,
.show-invoice-page .form-field.vertical select {
  flex-basis: 100%;
}
@media screen and (max-width: 880px) {
  .show-invoice-page .container .form-field,
  .show-invoice-page .form-field {
    flex-direction: column;
    align-items: stretch;
  }
}
.show-invoice-page .container .form-field .error-message,
.show-invoice-page .form-field .error-message {
  margin-left: auto;
}
/**
*  This is a class that should be used when there is a section of the page that
*  need to be highlighted. This class should be used on a block element that
*  has content inside.
*
*  @author     Paweł Kuźnik <pawel.kuznik@copernica.com>
*  @file       highlight.less
*/
.highlight-box {
  border: 1px solid #f1f1f1;
  background: #fff;
  margin-bottom: 1rem;
  padding: 1em;
  text-align: left;
}
.highlight-box .highlight-box-image {
  float: left;
  max-width: 4rem;
  max-height: 4rem;
}
.highlight-box .highlight-box-image ~ * {
  margin-left: 5rem;
}
.highlight-box::after {
  content: '';
  display: block;
  clear: both;
}
.highlight-box.small {
  padding: 0.3rem;
  border: none;
}
.highlight-box.small p {
  margin-bottom: 0;
}
.highlight-box.colored {
  background: #f9f9f9;
}
/* 
 *  Products.less
 *  Specific styles for the product pages 
 */
.products-page .box-followup {
  background: url(Images/Homepage/followup-bg.jpg);
}
.products-page .section-integrations .content-box {
  margin-bottom: 0;
}
/**
 *  These are the styles for the contact page
 *
 *  @file    contact.less
 */
.contact-page .contact-container .content-box {
  margin-bottom: 0;
}
.contact-page .contact-details .container {
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fff;
}
.contact-page .contact-details .container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-page .contact-details .container ul li {
  margin: 0;
  padding: 0.5rem 0;
}
.contact-page .contact-details .container .text-container {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-page .contact-details iframe {
  display: block;
  width: 100%;
  min-height: 800px;
}
/**
 *  These are the styles for the aboutus page team section
 *
 *  @file    team.less
 */
.page-ourteam .team-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  justify-content: space-between;
  grid-gap: 32px;
}
.page-ourteam .copernican-container h4 {
  margin-bottom: 0;
}
.page-ourteam .copernican-container span {
  color: #D8DBDC;
}
.page-ourteam .profile-image img {
  border-radius: 1rem;
  overflow: hidden;
}
/**
 *  This quarter's target information e.g.
 *  Sell 25 licenses with an combined est. value of EUR xxx
 */
.quarter-target {
  background-image: url('/Resources/Images/Tools/quarter3-header.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: 20%;
  width: 100%;
  height: 100%;
  color: #D8DBDC;
  box-sizing: border-box;
  padding: 0;
  margin-bottom: 8px;
  min-height: 300px;
  /* The title of the quarter target message */
  /* List of targets, e.g. EURO 10.500 from at least 25 licenses */
}
.quarter-target h2 {
  font-size: 36px;
  margin-bottom: 30px;
}
.quarter-target span {
  font-weight: 600;
}
.quarter-target ul {
  margin: 0 !important;
  padding: 0px;
}
.quarter-target ul li {
  display: inline-block;
  margin-top: 100px;
  padding-left: 30px;
  /*padding: 3em 0;*/
  text-shadow: 2px 2px 1px #000000;
  /*&:last-child
            {
                padding-left: 20px;
                margin-left: 10px;
            }*/
  /* Target est. value */
  /* Target name e.g. licenses or media packs */
}
.quarter-target ul li h3 {
  font-size: 30px;
  margin: 0;
}
.quarter-target ul li span {
  text-transform: uppercase;
}
/**
 *  Styling for the admin dashboard revenues tools 
 *  
 */
div.admin-revenues div.chart-wrapper {
  display: flex;
  flex-direction: row;
}
div.admin-revenues div.chart-wrapper div.year-overview {
  padding: 20px;
}
div.admin-revenues div.chart-wrapper div.year-overview select {
  width: 100%;
}
div.admin-revenues div.chart-wrapper div.year-overview div > * {
  margin-bottom: 10px;
}
div.admin-revenues div.chart-wrapper div.donut {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 21px;
}
div.admin-revenues div.chart-wrapper div.donut .information {
  text-align: center;
}
div.admin-revenues div.chart-wrapper div.help {
  padding-top: 10px;
  text-align: right;
  color: #0e67bf;
  cursor: help;
}
div.admin-revenues div.chart-wrapper div.help i.fa {
  color: #0e67bf;
}
div.admin-revenues .widget_chart div#franchiser-revenues-overview-container {
  height: 250px !important;
}
div.admin-revenues .widget_chart table.zebra-table .numerical-value {
  text-align: right;
}
/**
 *  @TODO
 *  This file should be improved/removed.
 *  It uses an old grid system with float but at the same time also flex.. 
 *  That causes an odd behaviour and breaks also the parent layout!!
 *  
 *  Styling for contact reports
 */
table[id="reports"] tr[id] td {
  padding: 0;
  position: relative;
}
table[id="reports"] tr[id] td div.header {
  height: 48px;
  background: #dddddd;
  position: relative;
  color: #5d5d5d;
  display: flex;
  justify-content: space-between;
  box-shadow: inset 0px 15px 15px -20px;
  border-bottom: 1px solid #c2c2c2;
  padding: 0 10px;
}
table[id="reports"] tr[id] td div.header .subject {
  align-self: center;
}
table[id="reports"] tr[id] td div.header .button-container {
  align-self: center;
}
table[id="reports"] tr[id] td div.header .button-container button {
  min-width: 105px;
  margin-right: 0.5rem;
}
table[id="reports"] tr[id] td div.header .button-container .button {
  min-width: 95px;
}
table[id="reports"] tr[id] td div.contact-details {
  overflow: auto;
  padding: 0;
}
table[id="reports"] tr[id] td div.contact-details .row-12:nth-child(even) {
  background: #e3e3e3;
}
table[id="reports"] tr[id] td div.contact-details .row-12:nth-child(even) .cols-9 {
  background: #D8DBDC;
}
table[id="reports"] tr[id] td div.contact-details .row-12:nth-child(odd) {
  background: #f1f1f1;
}
table[id="reports"] tr[id] td div.contact-details .row-12:nth-child(odd) .cols-9 {
  background: white;
}
table[id="reports"] tr[id] td div.contact-details .row-12 {
  position: relative;
  z-index: 2;
}
table[id="reports"] tr[id] td div.contact-details .row-12 .textarea {
  white-space: normal;
}
table[id="reports"] tr[id] td div.contact-details .row-12 select,
table[id="reports"] tr[id] td div.contact-details .row-12 input {
  height: 37px;
}
table[id="reports"] tr[id] td div.contact-details .row-12 select,
table[id="reports"] tr[id] td div.contact-details .row-12 input,
table[id="reports"] tr[id] td div.contact-details .row-12 textarea {
  border-radius: 0;
  border: 0;
  font-size: 16px;
  margin: 0;
}
table[id="reports"] tr[id] td div.contact-details .row-12:not(:last-of-type) {
  border-bottom: 1px solid #dbdbdb;
}
table[id="reports"] tr[id] td div.contact-details .row-12:last-of-type {
  box-shadow: inset 0 -12px 10px -15px;
}
table[id="reports"] tr[id] td div.contact-details .row-12:last-of-type .cols-9 {
  box-shadow: inset 0 -12px 10px -15px;
}
table[id="reports"] tr[id] td div.contact-details .row-12:last-of-type .cols-9 textarea {
  box-shadow: inset 0 -12px 10px -15px;
}
table[id="reports"] tr[id] td div.contact-details .row-12 > * {
  min-height: 37px;
}
table[id="reports"] tr[id] td div.contact-details .row-12 .value {
  padding: 7px;
}
table[id="reports"] tr[id] td div.contact-details .row-12 .edit {
  padding: 0;
  display: none;
}
table[id="reports"] tr[id] td div.contact-details .row-12 .edit textarea {
  font-size: 15px;
  line-height: 1.5rem;
  width: 100%;
}
table[id="reports"] tr[id] td div.contact-details .row-12 .cols-2 {
  padding: 7px 10px;
  text-align: right;
}
table[id="reports"] tr[id] td div.contact-details .row-12 .cols-9 {
  border-left: 1px solid #c7c7c7;
  border-right: 1px solid #c7c7c7;
}
table[id="reports"] tr[id] td div.contact-details .row-12 .cols-9:not(.textarea) {
  height: 37px;
}
table[id="reports"] tr[id] td div.contact-details .row-12 .cols-9 [data-widget="datefield"] button {
  border-radius: 0;
  border: 1px solid #07345f;
}
table[id="reports"] tr[id] td div.contact-details .row-12 .cols-1 {
  padding: 7px 13px;
  text-align: center;
}
table[id="reports"] tr[id] td div.contact-details .row-12 .cols-1 i.fa {
  cursor: pointer;
  line-height: 23px;
}
table[id="reports"] tr[id] td div.contact-details .row-12 .cols-1 i.fa.fa-pencil {
  color: #0e67bf;
}
table[id="reports"] tr[id] td div.contact-details .row-12 .cols-1 i.fa.fa-times {
  color: red;
}
table[id="reports"] tr[id] td div.contact-details .row-12 span.empty {
  font-style: italic;
}
table[id="reports"] tr[id] td div.contact-details div.button-container {
  clear: both;
  margin: 1rem 0.5rem;
}
table[id="reports"] pre {
  white-space: pre-line;
  max-height: 500px;
}
/**
 *  These are the styles for the notification center
 *
 *  @author  Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file    notificationcenter.less
 */
.notification-center {
  bottom: 0;
  right: 0;
}
.notification-center,
.notification-center > .inyourface-container {
  position: fixed;
}
.notification-center > .notification {
  border-radius: 0.2rem;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  border-radius: 2em;
  height: 3rem;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  font-size: 1rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transform: translateX(12rem);
  margin: 1rem;
  animation: slideIn 0.3s ease-in-out;
  animation-fill-mode: forwards;
}
.notification-center > .notification .notification-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.notification-center > .notification.notification-info {
  background-color: cornflowerblue;
  color: white;
}
.notification-center > .notification.notification-success {
  background-color: #50ca92;
  color: white;
}
.notification-center > .notification.notification-error {
  background-color: tomato;
  color: white;
}
.notification-center > .notification i.fa {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}
.notification-center > .inyourface-container {
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  animation: fadeIn 0.3s ease-in-out;
  background-color: hsla(201, 71%, 61%, 0.89);
  color: white;
}
.notification-center > .inyourface-container .notification-content {
  text-align: center;
}
.notification-center > .inyourface-container,
.notification-center > .inyourface-container i.fa {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.notification-center > .inyourface-container i.fa {
  width: 10rem;
  height: 10rem;
  font-size: 5rem;
  border: 0.5rem solid white;
  border-radius: 100%;
  animation: slideUp 0.3s ease-in-out;
  animation-fill-mode: forwards;
}
.notification-center > .inyourface-container h1 {
  font-size: 3rem;
}
.notification-center > .inyourface-container.error {
  background-color: hsla(0, 100%, 66%, 0.89);
}
.notification-center > .inyourface-container.warning {
  background-color: rgba(226, 190, 85, 0.89);
}
@media screen and (max-width: 880px) {
  .notification-center > .inyourface-container h1 {
    font-size: 2rem;
  }
  .notification-center > .inyourface-container i.fa {
    width: 8rem;
    height: 8rem;
    margin-bottom: 1rem;
  }
}
.notification-center.removing {
  animation: fadeOut 0.3s ease-in-out;
}
@media screen and (max-width: 880px) {
  .notification-center {
    bottom: auto;
    top: 0;
  }
  .notification-center:not(.notification-inyourface) > .notification {
    margin: 0.5rem;
    font-size: 0.9rem;
  }
}
@keyframes slideIn {
  from {
    transform: translateX(12rem);
  }
  to {
    transform: translateX(0rem);
  }
}
@keyframes slideUp {
  from {
    transform: translateY(5rem);
  }
  to {
    transform: translateY(0rem);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/**
 *  These are stules that will create an overlay that will cover the parent
 *  element.
 *
 *  @author     Paweł Kuźnik <pawel.kuznik@copernica.com>
 */
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid white;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
}
.overlay.overlay-loader {
  display: flex;
  align-items: center;
}
.overlay.overlay-centered .overlay-inner {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/**
 *  These are the styles for elements that you want to display as
 *  loader elements. 
 *  It should be added to an empty div element, and be removed
 *  when loading is not needed anymore.
 *
 *  @author  Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file    loader.less
 */
.loader {
  position: relative;
  margin: 2rem auto;
}
.loader,
.loader::before,
.loader::after {
  height: 0.75rem;
  width: 0.75rem;
  border-radius: 100%;
  box-sizing: border-box;
  background-color: #007AC4;
  animation: loaderAnimation 0.6s linear alternate infinite;
  animation-delay: 0.2s;
}
.loader::before,
.loader::after {
  content: '';
  position: absolute;
  bottom: 0;
}
.loader::before {
  left: -1.5rem;
  animation-delay: 0s;
}
.loader::after {
  right: -1.5rem;
  animation-delay: 0.4s;
}
.loader span {
  position: absolute;
  bottom: -1.5rem;
  left: -1rem;
  color: #9e9e9e;
}
@keyframes loaderAnimation {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
/**
 *  These are the styles for the product chooser data part
 *
 *  @author  Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file    copernicaproducts.less
 */
.copernica-products h3 {
  text-align: center;
}
.copernica-products .copernica-product .preview {
  position: relative;
}
.copernica-products .copernica-product .preview object {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}
.copernica-products .copernica-product .preview .cta {
  position: absolute;
  bottom: 1.5rem;
  right: calc(50% - 5rem);
}
.copernica-products .copernica-product.ms .cta,
.copernica-products .copernica-product.smtpeter .cta {
  right: calc(50% - 5rem);
}
@media screen and (min-width: 480px) {
  .copernica-products .copernica-product.ms .cta,
  .copernica-products .copernica-product.smtpeter .cta {
    right: calc(50% - 5rem);
  }
}
@media screen and (min-width: 870px) {
  .copernica-products .copernica-product.ms .cta,
  .copernica-products .copernica-product.smtpeter .cta {
    right: calc(50% - 7rem);
  }
}
/**
 * These are the styles for a newsletter subscription block.
 * It's a call to action , which invites the user to subscribe to our newsletter.
 * It can be placed everywhere like this: 
 * 
 * <section class="subscribeNewsletter">
 *       <div class="row spacing-between vert-center wrapping">
 *           <div class="subscribe-text">
 *               <h2>
 *                   <i class="fa fa-envelope"></i>
 *                   {tr}Subscribe to our newsletter{/tr}
 *               </h2>
 *               <p>
 *                   {tr}
 *                       Once a month we send product updates in combination with
 *                       our most important blog posts, straight to your inbox.
 *                   {/tr}
 *               </p>
 *           </div>
 *           <div class="subscribe-form">
 *               {subscribenewsletter}
 *           </div>
 *       </div>
 *   </section>
 *  
 *  @file    subscribeNewsletter.less
*/
.subscribeNewsletter {
  color: #003251;
  background-color: #d0edff;
  padding: 1rem;
}
.subscribeNewsletter .subscribe-text {
  max-width: 35rem;
}
.subscribeNewsletter .subscribe-text h2 {
  font-size: 2em;
  margin-top: 0;
}
.subscribeNewsletter .subscribe-form {
  max-width: 25rem;
  flex: auto;
}
.subscribeNewsletter .subscribe-form input {
  padding: 0.875rem;
}
/**
 *  These are the styles for modal windows. These windows are
 *  created by the modalhelper object.
 *
 *  @author  Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file    modalhelper.less
 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
.modal-overlay[data-overlay="true"] {
  animation: fadeIn 0.3s ease-in-out;
}
.modal-overlay[data-overlay="true"].neutral {
  background-color: hsla(0, 0%, 0%, 0.6);
}
.modal-overlay[data-overlay="true"].warning {
  background-color: rgba(255, 178, 82, 0.8);
}
.modal-overlay .modal-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-overlay .modal-window {
  animation: slideInTop 0.3s ease-in-out;
  animation-fill-mode: forwards;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #F9FAFA;
  padding: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 1px #34383B;
  min-width: 20rem;
  position: relative;
}
@media screen and (max-width: 880px) {
  .modal-overlay .modal-window {
    min-width: 15rem;
  }
}
.modal-overlay .modal-window.closing {
  animation: slideOutBottom 0.2s ease-in-out;
  animation-fill-mode: forwards;
}
.modal-overlay .modal-window .fa-times {
  color: #00426A;
  font-size: 1rem;
  border: 2px solid #00426A;
  border-radius: 100%;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
@media screen and (max-width: 880px) {
  .modal-overlay .modal-window .fa-times {
    top: 1rem;
    right: 1rem;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInTop {
  from {
    transform: translateY(6rem);
  }
  to {
    transform: translateY(0rem);
  }
}
@keyframes slideOutBottom {
  from {
    transform: translateY(0rem);
  }
  to {
    transform: translateY(6rem);
  }
}
/**
 *  These are the styles for the confirm window.
 *
 *  @author  Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file    confirm.less
 */
.confirm {
  max-width: 25rem;
  box-shadow: 0 2px 1px #34383B;
}
.confirm .confirm-title {
  padding: 1rem;
  margin: 0;
  text-align: center;
  font-weight: bold;
  color: white;
  background-color: #e26262;
  border-bottom: 5px solid #c54545;
}
.confirm .confirm-title.neutral {
  background-color: cornflowerblue;
  border-bottom: 5px solid #3c77de;
}
.confirm .confirm-content {
  padding: 1rem;
  padding-bottom: 0;
}
.confirm .button-group {
  display: flex;
  padding: 0.5rem;
}
.confirm .button-group .button-confirm {
  flex: 1 1 5rem;
  margin: 0.5rem;
  background-color: white;
  color: white;
  position: relative;
  font-weight: bold;
}
.confirm .button-group .button-confirm:first-child {
  background-color: #55b555;
}
.confirm .button-group .button-confirm:last-child {
  background-color: #c54545;
}
/*
 * Styles for the hero container.
 * A hero container is the use of a hero image, text and/or cta buttons at the top of any page.
 * The hero headers can be used in a variety of ways: as a full width image, background image with text and button,
 * video, animation etc.
 *
 * For example:
 * <div class="hero-container">
 *
 * How a hero container should look like :
 *
 * <div class="hero-container">
 *    <div class="hero-content">
 *        <h1>Main title</h1>
 *        <p>Subtitle</p>
 *        <a>CTA</a>
 *     </div>
 * </div>
 *
 * .hero-content       In this container we add the content(text/button..)
 *
 * @file HeroContainer.less
 * @author Marianna Kavvadia <marianna.kavvadia@copernica.com>
 */
.hero-container {
  background: radial-gradient(at bottom, #007AC4 0%, #00426A 100%);
  color: #F9FAFA;
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.hero-container.features-hero {
  max-height: 60vh;
  overflow: hidden;
}
@media screen and (max-width: 880px) {
  .hero-container.features-hero {
    max-height: fit-content;
  }
}
.hero-container .hero-content {
  padding: 32px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.hero-container .hero-content h2,
.hero-container .hero-content .subheader {
  font-size: 1.25rem;
  line-height: 30px;
  font-weight: lighter;
}
.hero-container .hero-content p a {
  color: #FFC600;
}
.hero-container img,
.hero-container iframe {
  margin: 0 auto;
  display: block;
  max-width: 40rem;
}
/**
 *  These are the styles for payment fields
 *
 *  @author  Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file    paymentfield.less
 */
.payment-field label {
  border: 1px solid #B1B7BA;
  box-shadow: 0 2px 1px #34383B;
  cursor: pointer;
  line-height: 2;
  padding: 0.5rem;
  transition: border 0.2s ease-in-out;
}
.payment-field label:hover {
  border: 1px solid cornflowerblue;
}
.payment-field label span {
  display: inline;
}
.payment-field label i.fa {
  width: 2rem;
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-left: 0.5rem;
}
.payment-field input[type="checkbox"] {
  display: none;
}
.payment-field input[type="checkbox"]:checked + i.fa {
  color: cornflowerblue;
}
/**
 *  These are the styles for the contact task window
 *
 *  @author         Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file           contacttask.less
 *  @documentation  private
 *  @copyright      2017 - 2018  Copernica BC
 */
.contact-task {
  padding: 2rem;
  min-width: 35rem;
}
.contact-task textarea {
  padding: 0.5rem;
  min-height: 15rem;
  line-height: 1.38;
}
/**
 *  These are the styles for the contact reports
 *
 *  @author         Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file           contact-reports.less
 *  @documentation  private
 *  @copyright      2017 - 2018  Copernica BC
 */
.dashboard .container-content .dashboard-block.contact-reports {
  padding: 0;
}
.dashboard .container-content .dashboard-block.contact-reports > h3 {
  padding: 1rem;
  font-weight: bold;
}
.dashboard .container-content .dashboard-block.contact-reports table {
  margin: 0;
}
.dashboard .container-content .dashboard-block.contact-reports table tr {
  line-height: 2.5;
}
.dashboard .container-content .dashboard-block.contact-reports table tr td {
  background-color: inherit;
}
.dashboard .container-content .dashboard-block.contact-reports table tr:nth-of-type(odd) {
  background-color: #EBEDED;
}
.dashboard .container-content .dashboard-block.contact-reports table td button {
  margin-right: 0.5rem;
}
/**
 *  This is a special widget to display a logout page.
 *
 *  @author     Paweł Kuźnik <pawel.kuznik@copernica.com>
 *  @copyright  Copernica BV 2018
 */
.logout-page .navigation-options {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.logout-page .navigation-options > li {
  border: 1px solid #ddd;
  padding: 1rem;
  flex-basis: 20rem;
  min-height: 8rem;
  margin-right: 1rem;
}
/**
 *  These are the styles for a list of events that a user registered for.
 *
 *  @author         Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file           user-calendar.less
 *  @documentation  ignore
 *  @copyright      Copernica BV  2018
 */
.ms-usercalendar {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ms-usercalendar li {
  margin: 0;
  padding: 0.25rem;
}
.ms-usercalendar li:nth-of-type(even) {
  background-color: #f9f9f9;
}
.ms-usercalendar > li:first-child {
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}
/**
 *  These are the styles for a list of events that a user registered for.
 *
 *  @author         Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file           user-calendar.less
 *  @documentation  ignore
 *  @copyright      Copernica BV  2018
 */
.ms-usercalendar-event {
  display: grid;
  grid-template-columns: 10rem 6rem 4rem 1fr 4rem 2rem;
  grid-gap: 1rem;
  align-items: center;
  font-size: 0.9em;
}
.ms-usercalendar-event span {
  padding: 0.25rem;
}
.ms-usercalendar-event .fa {
  display: none;
  cursor: pointer;
  color: tomato;
}
.ms-usercalendar-event .fa:hover {
  color: darkred;
}
.ms-usercalendar-event:hover .fa {
  display: block;
}
/**
 *  These are the styles for the dashboard event registrations component.
 *
 *  @author         Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file           Resources/Style/Widgets/eventregistrations.less
 *  @documentation  ignore
 *  @copyright      Copernica BV  2018
 */
.ms-eventregistrations .ms-eventregistrations-controls {
  display: flex;
}
.ms-eventregistrations .ms-eventregistrations-controls .button {
  margin: 0.5rem 0;
  margin-right: 0.5rem;
}
/**
 *  These are the styles for the user inside of a copernica event registration object.
 *
 *  @author         Tycho Atsma  <tycho.atsma@copernica.com>
 *  @file           Resources/Style/Widgets/eventregistrations-user.less
 *  @documentation  ignore
 *  @copyright      Copernica BV  2018
 */
.ms-eventregistrations-user {
  display: flex;
  justify-content: space-between;
}
.ms-eventregistrations-user .user-unregister {
  opacity: 0;
  color: tomato;
  font-size: 1.2rem;
  cursor: pointer;
  margin: 0 0.5rem;
}
.ms-eventregistrations-user:hover .user-unregister {
  opacity: 1;
}
/**
 *  These are the styles for a css-only class that is meant to give an element
 *  dialogbox-like visuals. This is meant for elements that you want to show
 *  on a public page, are slightly disruptive, and overlap everything (when
 *  the elements are appended to the end of the document body).
 *
 *  @file       Resources/Style/Widgets/DialogBox.less
 *  @author     Tycho Atsma <tycho.atsma@copernica.com>
 *  @copyright  2020 Copernica BV
 */
/**
 *  Root class.
 */
.dialogbox {
  position: sticky;
  z-index: 1;
  width: 100%;
  background-color: white;
}
.dialogbox.top {
  top: 0;
  box-shadow: 0 0.15rem 0.35rem rgba(0, 0, 0, 0.2);
}
.dialogbox.bottom {
  bottom: 0;
  box-shadow: 0 -0.15rem 0.35rem rgba(0, 0, 0, 0.2);
}
.dialogbox .dialogbox-content {
  width: 60em;
  max-width: calc(100% - 2rem);
  margin: 0 auto;
  padding-top: 1em;
  padding-bottom: 1em;
}
.dialogbox .dialogbox-button {
  display: inline-block;
}
/**
 *  These are the styles for the cookie preferences modal. 
 *
 *  @author     Luuk Jonker <luuk.jonker@copernica.com>
 *  @file       Resources/Style/Widgets/CookiePreferencesModal.less
 *  @copyright  Copernica BV 2025
 */
.cookie-preferences-modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.cookie-preferences-modal.active {
  display: flex;
}
.cookie-preferences-modal-content {
  background-color: white;
  padding: 20px;
  width: 400px;
}
/**
 *  These are the styles for the cookie consent website part.
 *
 *  @author     Tycho Atsma <tycho.atsma@copernica.com>
 *  @file       Resources/Style/Widgets/CookieConsent.less
 *  @copyright  Copernica BV 2020
 */
/**
 *  Root class.
 */
[data-part="CookieConsent"] {
  display: none;
}
/**
 *  These are the styles for the FreeTrial page.
 *
 *  @author  Damian Wantzing <damian.wantzing@copernica.com>
 *  @file    NewUser.less
 */
.challenge-form-block {
  display: flex;
  justify-content: center;
}
.challenge-form-block input[type="text"],
.challenge-form-block input[type="email"],
.challenge-form-block input[type="password"],
.challenge-form-block input[type="tel"],
.challenge-form-block input[type="url"],
.challenge-form-block input[type="number"],
.challenge-form-block input[type="file"] {
  width: 100%;
}
.challenge-form-block .content-box {
  width: 100vw;
  max-width: 35rem;
  margin-top: -10rem;
  margin-bottom: 5rem;
  /* add vertical spacing to divs that contain a form element */
}
.challenge-form-block .content-box div:has(a, input, button) {
  margin-block: 1rem;
}
