/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(images/layers..png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(images/layers-2x..png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(images/marker-icon..png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

@font-face{font-display:swap;font-family:bud_basis;font-style:normal;font-weight:400;src:url(//prokomresources.prokomcdn.no/client-grunt/04-common/font/bud_basis.eot?36088481);src:url(//prokomresources.prokomcdn.no/client-grunt/04-common/font/bud_basis.eot?36088481#iefix) format("embedded-opentype"),url(//prokomresources.prokomcdn.no/client-grunt/04-common/font/bud_basis.woff?36088481) format("woff"),url(//prokomresources.prokomcdn.no/client-grunt/04-common/font/bud_basis.ttf?36088481) format("truetype"),url(//prokomresources.prokomcdn.no/client-grunt/04-common/font/bud_basis.svg?36088481#bud_basis) format("svg")}[class*=" budlight-"]:before,[class^=budlight-]:before{display:inline-block;font-family:bud_basis;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;text-align:center;text-decoration:inherit;width:1em}[class*=" budlight-"]:before,[class*=budlight],[class^=budlight-]:before{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-style:normal;font-variant:normal;text-transform:none}[class*=budlight]{font-family:bud_basis!important;font-weight:700;line-height:1}.budlight-profile-picture:before{content:""}.budlight-user:before{content:""}.budlight-location-pin:before{content:""}.budlight-events:before{content:""}.budlight-wall-clock:before{content:""}.budlight-world-network:before{content:""}.budlight-check-ui:before{content:""}.budlight-cloud-download:before{content:""}.budlight-cloud-upload:before{content:""}.budlight-cross-ui:before{content:""}.budlight-expand-view:before{content:""}.budlight-hamburger-ui:before{content:""}.budlight-minus-ui:before{content:""}.budlight-outgoing-link:before{content:""}.budlight-plus-ui:before{content:""}.budlight-print-a:before{content:""}.budlight-refresh-ui:before{content:""}.budlight-search-minus:before{content:""}.budlight-search-plus:before{content:""}.budlight-search:before{content:""}.budlight-attachment:before{content:""}.budlight-file-download:before{content:""}.budlight-file-upload:before{content:""}.budlight-file:before{content:""}.budlight-at-symbol:before{content:""}.budlight-call:before{content:""}.budlight-email:before{content:""}.budlight-arrow-bottom-circle:before{content:""}.budlight-arrow-bottom-left:before{content:""}.budlight-arrow-bottom-right:before{content:""}.budlight-arrow-bottom:before{content:""}.budlight-arrow-left-circle:before{content:""}.budlight-arrow-left:before{content:""}.budlight-arrow-right-circle:before{content:""}.budlight-arrow-right:before{content:""}.budlight-arrow-top-circle:before{content:""}.budlight-arrow-top-left:before{content:""}.budlight-arrow-top-right:before{content:""}.budlight-arrow-top:before{content:""}.budlight-chevron-bottom-circle:before{content:""}.budlight-chevron-bottom:before{content:""}.budlight-chevron-left-circle:before{content:""}.budlight-chevron-left:before{content:""}.budlight-chevron-right-circle:before{content:""}.budlight-chevron-right:before{content:""}.budlight-chevron-top-circle:before{content:""}.budlight-chevron-top:before{content:""}.budlight-dislike:before{content:""}.budlight-like:before{content:""}.budlight-minimize-view:before{content:""}.budlight-help:before{content:""}.img-fluid,.img-thumbnail{height:auto;max-width:100%}.img-thumbnail{background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;padding:.25rem}.figure{display:inline-block}.figure-img{line-height:1;margin-bottom:.5rem}.figure-caption{color:#6c757d;font-size:90%}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}@media(min-width:576px){.container,.container-sm{max-width:540px}}@media(min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media(min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media(min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.no-gutters{margin-left:0;margin-right:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-left:0;padding-right:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{padding-left:15px;padding-right:15px;position:relative;width:100%}.col{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.col-1,.col-auto{-webkit-box-flex:0}.col-1{-ms-flex:0 0 8.33333333%;flex:0 0 8.33333333%;max-width:8.33333333%}.col-2{-ms-flex:0 0 16.66666667%;flex:0 0 16.66666667%;max-width:16.66666667%}.col-2,.col-3{-webkit-box-flex:0}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.33333333%;flex:0 0 33.33333333%;max-width:33.33333333%}.col-4,.col-5{-webkit-box-flex:0}.col-5{-ms-flex:0 0 41.66666667%;flex:0 0 41.66666667%;max-width:41.66666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-6,.col-7{-webkit-box-flex:0}.col-7{-ms-flex:0 0 58.33333333%;flex:0 0 58.33333333%;max-width:58.33333333%}.col-8{-ms-flex:0 0 66.66666667%;flex:0 0 66.66666667%;max-width:66.66666667%}.col-8,.col-9{-webkit-box-flex:0}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.33333333%;flex:0 0 83.33333333%;max-width:83.33333333%}.col-10,.col-11{-webkit-box-flex:0}.col-11{-ms-flex:0 0 91.66666667%;flex:0 0 91.66666667%;max-width:91.66666667%}.col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}@media(min-width:576px){.col-sm{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-sm-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.col-sm-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333333%;flex:0 0 8.33333333%;max-width:8.33333333%}.col-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.66666667%;flex:0 0 16.66666667%;max-width:16.66666667%}.col-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333333%;flex:0 0 33.33333333%;max-width:33.33333333%}.col-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.66666667%;flex:0 0 41.66666667%;max-width:41.66666667%}.col-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333333%;flex:0 0 58.33333333%;max-width:58.33333333%}.col-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.66666667%;flex:0 0 66.66666667%;max-width:66.66666667%}.col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333333%;flex:0 0 83.33333333%;max-width:83.33333333%}.col-sm-11{-webkit-box-flex:0;-ms-flex:0 0 91.66666667%;flex:0 0 91.66666667%;max-width:91.66666667%}.col-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-sm-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-sm-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-sm-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-sm-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-sm-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-sm-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-sm-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-sm-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-sm-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-sm-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-sm-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-sm-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-sm-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-sm-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}}@media(min-width:768px){.col-md{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;max-width:100%}.row-cols-md-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-md-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.col-md-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333333%;flex:0 0 8.33333333%;max-width:8.33333333%}.col-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.66666667%;flex:0 0 16.66666667%;max-width:16.66666667%}.col-md-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333333%;flex:0 0 33.33333333%;max-width:33.33333333%}.col-md-5{-webkit-box-flex:0;-ms-flex:0 0 41.66666667%;flex:0 0 41.66666667%;max-width:41.66666667%}.col-md-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333333%;flex:0 0 58.33333333%;max-width:58.33333333%}.col-md-8{-webkit-box-flex:0;-ms-flex:0 0 66.66666667%;flex:0 0 66.66666667%;max-width:66.66666667%}.col-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333333%;flex:0 0 83.33333333%;max-width:83.33333333%}.col-md-11{-webkit-box-flex:0;-ms-flex:0 0 91.66666667%;flex:0 0 91.66666667%;max-width:91.66666667%}.col-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-md-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-md-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-md-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-md-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-md-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-md-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-md-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-md-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-md-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-md-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-md-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-md-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-md-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-md-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}}@media(min-width:992px){.col-lg{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-lg-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.col-lg-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333333%;flex:0 0 8.33333333%;max-width:8.33333333%}.col-lg-2{-webkit-box-flex:0;-ms-flex:0 0 16.66666667%;flex:0 0 16.66666667%;max-width:16.66666667%}.col-lg-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333333%;flex:0 0 33.33333333%;max-width:33.33333333%}.col-lg-5{-webkit-box-flex:0;-ms-flex:0 0 41.66666667%;flex:0 0 41.66666667%;max-width:41.66666667%}.col-lg-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333333%;flex:0 0 58.33333333%;max-width:58.33333333%}.col-lg-8{-webkit-box-flex:0;-ms-flex:0 0 66.66666667%;flex:0 0 66.66666667%;max-width:66.66666667%}.col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333333%;flex:0 0 83.33333333%;max-width:83.33333333%}.col-lg-11{-webkit-box-flex:0;-ms-flex:0 0 91.66666667%;flex:0 0 91.66666667%;max-width:91.66666667%}.col-lg-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-lg-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-lg-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-lg-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-lg-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-lg-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-lg-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-lg-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-lg-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-lg-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-lg-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-lg-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-lg-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-lg-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-lg-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}}@media(min-width:1200px){.col-xl{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-xl-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.col-xl-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333333%;flex:0 0 8.33333333%;max-width:8.33333333%}.col-xl-2{-webkit-box-flex:0;-ms-flex:0 0 16.66666667%;flex:0 0 16.66666667%;max-width:16.66666667%}.col-xl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333333%;flex:0 0 33.33333333%;max-width:33.33333333%}.col-xl-5{-webkit-box-flex:0;-ms-flex:0 0 41.66666667%;flex:0 0 41.66666667%;max-width:41.66666667%}.col-xl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333333%;flex:0 0 58.33333333%;max-width:58.33333333%}.col-xl-8{-webkit-box-flex:0;-ms-flex:0 0 66.66666667%;flex:0 0 66.66666667%;max-width:66.66666667%}.col-xl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333333%;flex:0 0 83.33333333%;max-width:83.33333333%}.col-xl-11{-webkit-box-flex:0;-ms-flex:0 0 91.66666667%;flex:0 0 91.66666667%;max-width:91.66666667%}.col-xl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-xl-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-xl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-xl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-xl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-xl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-xl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-xl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-xl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-xl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-xl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-xl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-xl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-xl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-xl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}}.table{color:#212529;margin-bottom:1rem;width:100%}.table td,.table th{border-top:1px solid #dee2e6;padding:.75rem;vertical-align:top}.table thead th{border-bottom:2px solid #dee2e6;vertical-align:bottom}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered,.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:rgba(0,0,0,.075);color:#212529}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9ecdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cccf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe7a0}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b1b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#eef1f3}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbd}.table-active,.table-active>td,.table-active>th,.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{background-color:#343a40;border-color:#454d55;color:#fff}.table .thead-light th{background-color:#e9ecef;border-color:#dee2e6;color:#495057}.table-dark{background-color:#343a40;color:#fff}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.table-dark.table-hover tbody tr:hover{background-color:hsla(0,0%,100%,.075);color:#fff}@media(max-width:575.98px){.table-responsive-sm{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-sm>.table-bordered{border:0}}@media(max-width:767.98px){.table-responsive-md{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-md>.table-bordered{border:0}}@media(max-width:991.98px){.table-responsive-lg{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-lg>.table-bordered{border:0}}@media(max-width:1199.98px){.table-responsive-xl{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive>.table-bordered{border:0}.form-control{background-clip:padding-box;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;color:#495057;display:block;font-size:1rem;font-weight:400;height:calc(1.5em + .75rem + 2px);line-height:1.5;padding:.375rem .75rem;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;width:100%}@media(prefers-reduced-motion:reduce){.form-control{-webkit-transition:none;transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{background-color:#fff;border-color:#80bdff;-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.25);box-shadow:0 0 0 .2rem rgba(0,123,255,.25);color:#495057;outline:0}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}select.form-control:focus::-ms-value{background-color:#fff;color:#495057}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{font-size:inherit;line-height:1.5;margin-bottom:0;padding-bottom:calc(.375rem + 1px);padding-top:calc(.375rem + 1px)}.col-form-label-lg{font-size:1.25rem;line-height:1.5;padding-bottom:calc(.5rem + 1px);padding-top:calc(.5rem + 1px)}.col-form-label-sm{font-size:.875rem;line-height:1.5;padding-bottom:calc(.25rem + 1px);padding-top:calc(.25rem + 1px)}.form-control-plaintext{background-color:transparent;border:solid transparent;border-width:1px 0;color:#212529;display:block;font-size:1rem;line-height:1.5;margin-bottom:0;padding:.375rem 0;width:100%}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-left:0;padding-right:0}.form-control-sm{border-radius:.2rem;font-size:.875rem;height:calc(1.5em + .5rem + 2px);line-height:1.5;padding:.25rem .5rem}.form-control-lg{border-radius:.3rem;font-size:1.25rem;height:calc(1.5em + 1rem + 2px);line-height:1.5;padding:.5rem 1rem}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-5px;margin-right:-5px}.form-row>.col,.form-row>[class*=col-]{padding-left:5px;padding-right:5px}.form-check{display:block;padding-left:1.25rem;position:relative}.form-check-input{margin-left:-1.25rem;margin-top:.3rem;position:absolute}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-right:.75rem;padding-left:0}.form-check-inline .form-check-input{margin-left:0;margin-right:.3125rem;margin-top:0;position:static}.valid-feedback{color:#28a745;display:none;font-size:.875em;margin-top:.25rem;width:100%}.valid-tooltip{background-color:rgba(40,167,69,.9);border-radius:.25rem;color:#fff;display:none;font-size:.875rem;left:0;line-height:1.5;margin-top:.1rem;max-width:100%;padding:.25rem .5rem;position:absolute;top:100%;z-index:5}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:5px}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27%3E%3Cpath fill=%27%2328a745%27 d=%27M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z%27/%3E%3C/svg%3E");background-position:right calc(.375em + .1875rem) center;background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem);border-color:#28a745;padding-right:calc(1.5em + .75rem)!important}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.25);box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated select.form-control:valid,select.form-control.is-valid{background-position:right 1.5rem center;padding-right:3rem!important}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);padding-right:calc(1.5em + .75rem)}.custom-select.is-valid,.was-validated .custom-select:valid{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%275%27%3E%3Cpath fill=%27%23343a40%27 d=%27M2 0 0 2h4zm0 5L0 3h4z%27/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27%3E%3Cpath fill=%27%2328a745%27 d=%27M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z%27/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;border-color:#28a745;padding-right:calc(.75em + 2.3125rem)!important}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.25);box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#28a745}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{background-color:#34ce57;border-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.25);box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.25);box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{color:#dc3545;display:none;font-size:.875em;margin-top:.25rem;width:100%}.invalid-tooltip{background-color:rgba(220,53,69,.9);border-radius:.25rem;color:#fff;display:none;font-size:.875rem;left:0;line-height:1.5;margin-top:.1rem;max-width:100%;padding:.25rem .5rem;position:absolute;top:100%;z-index:5}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:5px}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23dc3545%27%3E%3Ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3E%3Cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3E%3Ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23dc3545%27 stroke=%27none%27/%3E%3C/svg%3E");background-position:right calc(.375em + .1875rem) center;background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem);border-color:#dc3545;padding-right:calc(1.5em + .75rem)!important}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.25);box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated select.form-control:invalid,select.form-control.is-invalid{background-position:right 1.5rem center;padding-right:3rem!important}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);padding-right:calc(1.5em + .75rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%275%27%3E%3Cpath fill=%27%23343a40%27 d=%27M2 0 0 2h4zm0 5L0 3h4z%27/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23dc3545%27%3E%3Ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3E%3Cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3E%3Ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23dc3545%27 stroke=%27none%27/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;border-color:#dc3545;padding-right:calc(.75em + 2.3125rem)!important}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.25);box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#dc3545}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{background-color:#e4606d;border-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.25);box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.25);box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.form-inline .form-check{width:100%}@media(min-width:576px){.form-inline label{-ms-flex-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.form-inline .form-group,.form-inline label{-webkit-box-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:0}.form-inline .form-group{-webkit-box-flex:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-align:center;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap}.form-inline .form-control{display:inline-block;vertical-align:middle;width:auto}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-pack:center;-ms-flex-pack:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:center;padding-left:0;width:auto}.form-inline .form-check-input{-ms-flex-negative:0;flex-shrink:0;margin-left:0;margin-right:.25rem;margin-top:0;position:relative}.form-inline .custom-control{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-pack:center;-ms-flex-pack:center;align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{background-color:transparent;border:1px solid transparent;border-radius:.25rem;color:#212529;display:inline-block;font-size:1rem;font-weight:400;line-height:1.5;padding:.375rem .75rem;text-align:center;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}@media(prefers-reduced-motion:reduce){.btn{-webkit-transition:none;transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.25);box-shadow:0 0 0 .2rem rgba(0,123,255,.25);outline:0}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{background-color:#007bff;border-color:#007bff;color:#fff}.btn-primary.focus,.btn-primary:focus,.btn-primary:hover{background-color:#0069d9;border-color:#0062cc;color:#fff}.btn-primary.focus,.btn-primary:focus{-webkit-box-shadow:0 0 0 .2rem rgba(38,143,255,.5);box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{background-color:#007bff;border-color:#007bff;color:#fff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{background-color:#0062cc;border-color:#005cbf;color:#fff}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(38,143,255,.5);box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{background-color:#6c757d;border-color:#6c757d;color:#fff}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:hover{background-color:#5a6268;border-color:#545b62;color:#fff}.btn-secondary.focus,.btn-secondary:focus{-webkit-box-shadow:0 0 0 .2rem hsla(208,6%,54%,.5);box-shadow:0 0 0 .2rem hsla(208,6%,54%,.5)}.btn-secondary.disabled,.btn-secondary:disabled{background-color:#6c757d;border-color:#6c757d;color:#fff}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{background-color:#545b62;border-color:#4e555b;color:#fff}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem hsla(208,6%,54%,.5);box-shadow:0 0 0 .2rem hsla(208,6%,54%,.5)}.btn-success{background-color:#28a745;border-color:#28a745;color:#fff}.btn-success.focus,.btn-success:focus,.btn-success:hover{background-color:#218838;border-color:#1e7e34;color:#fff}.btn-success.focus,.btn-success:focus{-webkit-box-shadow:0 0 0 .2rem rgba(72,180,97,.5);box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{background-color:#28a745;border-color:#28a745;color:#fff}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{background-color:#1e7e34;border-color:#1c7430;color:#fff}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(72,180,97,.5);box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{background-color:#17a2b8;border-color:#17a2b8;color:#fff}.btn-info.focus,.btn-info:focus,.btn-info:hover{background-color:#138496;border-color:#117a8b;color:#fff}.btn-info.focus,.btn-info:focus{-webkit-box-shadow:0 0 0 .2rem rgba(58,176,195,.5);box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{background-color:#17a2b8;border-color:#17a2b8;color:#fff}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{background-color:#117a8b;border-color:#10707f;color:#fff}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(58,176,195,.5);box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{background-color:#ffc107;border-color:#ffc107;color:#212529}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{background-color:#e0a800;border-color:#d39e00;color:#212529}.btn-warning.focus,.btn-warning:focus{-webkit-box-shadow:0 0 0 .2rem rgba(222,170,12,.5);box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{background-color:#ffc107;border-color:#ffc107;color:#212529}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{background-color:#d39e00;border-color:#c69500;color:#212529}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(222,170,12,.5);box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{background-color:#dc3545;border-color:#dc3545;color:#fff}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{background-color:#c82333;border-color:#bd2130;color:#fff}.btn-danger.focus,.btn-danger:focus{-webkit-box-shadow:0 0 0 .2rem rgba(225,83,97,.5);box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{background-color:#dc3545;border-color:#dc3545;color:#fff}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{background-color:#bd2130;border-color:#b21f2d;color:#fff}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(225,83,97,.5);box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-light.focus,.btn-light:focus,.btn-light:hover{background-color:#e2e6ea;border-color:#dae0e5;color:#212529}.btn-light.focus,.btn-light:focus{-webkit-box-shadow:0 0 0 .2rem hsla(210,4%,85%,.5);box-shadow:0 0 0 .2rem hsla(210,4%,85%,.5)}.btn-light.disabled,.btn-light:disabled{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{background-color:#dae0e5;border-color:#d3d9df;color:#212529}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem hsla(210,4%,85%,.5);box-shadow:0 0 0 .2rem hsla(210,4%,85%,.5)}.btn-dark{background-color:#343a40;border-color:#343a40;color:#fff}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{background-color:#23272b;border-color:#1d2124;color:#fff}.btn-dark.focus,.btn-dark:focus{-webkit-box-shadow:0 0 0 .2rem rgba(82,88,93,.5);box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{background-color:#343a40;border-color:#343a40;color:#fff}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{background-color:#1d2124;border-color:#171a1d;color:#fff}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(82,88,93,.5);box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{border-color:#007bff;color:#007bff}.btn-outline-primary:hover{background-color:#007bff;border-color:#007bff;color:#fff}.btn-outline-primary.focus,.btn-outline-primary:focus{-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.5);box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{background-color:transparent;color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{background-color:#007bff;border-color:#007bff;color:#fff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.5);box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{border-color:#6c757d;color:#6c757d}.btn-outline-secondary:hover{background-color:#6c757d;border-color:#6c757d;color:#fff}.btn-outline-secondary.focus,.btn-outline-secondary:focus{-webkit-box-shadow:0 0 0 .2rem hsla(208,7%,46%,.5);box-shadow:0 0 0 .2rem hsla(208,7%,46%,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{background-color:transparent;color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{background-color:#6c757d;border-color:#6c757d;color:#fff}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem hsla(208,7%,46%,.5);box-shadow:0 0 0 .2rem hsla(208,7%,46%,.5)}.btn-outline-success{border-color:#28a745;color:#28a745}.btn-outline-success:hover{background-color:#28a745;border-color:#28a745;color:#fff}.btn-outline-success.focus,.btn-outline-success:focus{-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.5);box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{background-color:transparent;color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{background-color:#28a745;border-color:#28a745;color:#fff}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.5);box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{border-color:#17a2b8;color:#17a2b8}.btn-outline-info:hover{background-color:#17a2b8;border-color:#17a2b8;color:#fff}.btn-outline-info.focus,.btn-outline-info:focus{-webkit-box-shadow:0 0 0 .2rem rgba(23,162,184,.5);box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{background-color:transparent;color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{background-color:#17a2b8;border-color:#17a2b8;color:#fff}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(23,162,184,.5);box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{border-color:#ffc107;color:#ffc107}.btn-outline-warning:hover{background-color:#ffc107;border-color:#ffc107;color:#212529}.btn-outline-warning.focus,.btn-outline-warning:focus{-webkit-box-shadow:0 0 0 .2rem rgba(255,193,7,.5);box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{background-color:transparent;color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{background-color:#ffc107;border-color:#ffc107;color:#212529}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(255,193,7,.5);box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{border-color:#dc3545;color:#dc3545}.btn-outline-danger:hover{background-color:#dc3545;border-color:#dc3545;color:#fff}.btn-outline-danger.focus,.btn-outline-danger:focus{-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.5);box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{background-color:transparent;color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{background-color:#dc3545;border-color:#dc3545;color:#fff}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.5);box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{border-color:#f8f9fa;color:#f8f9fa}.btn-outline-light:hover{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-outline-light.focus,.btn-outline-light:focus{-webkit-box-shadow:0 0 0 .2rem rgba(248,249,250,.5);box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{background-color:transparent;color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(248,249,250,.5);box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{border-color:#343a40;color:#343a40}.btn-outline-dark:hover{background-color:#343a40;border-color:#343a40;color:#fff}.btn-outline-dark.focus,.btn-outline-dark:focus{-webkit-box-shadow:0 0 0 .2rem rgba(52,58,64,.5);box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{background-color:transparent;color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{background-color:#343a40;border-color:#343a40;color:#fff}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(52,58,64,.5);box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{color:#007bff;font-weight:400;text-decoration:none}.btn-link:hover{color:#0056b3}.btn-link.focus,.btn-link:focus,.btn-link:hover{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-lg{border-radius:.3rem;font-size:1.25rem;line-height:1.5;padding:.5rem 1rem}.btn-sm{border-radius:.2rem;font-size:.875rem;line-height:1.5;padding:.25rem .5rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.nav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style:none;margin-bottom:0;padding-left:0}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;cursor:default;pointer-events:none}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{background-color:transparent;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem;margin-bottom:-1px}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{background-color:transparent;border-color:transparent;color:#6c757d}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{background-color:#fff;border-color:#dee2e6 #dee2e6 #fff;color:#495057}.nav-tabs .dropdown-menu{border-top-left-radius:0;border-top-right-radius:0;margin-top:-1px}.nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{background-color:#007bff;color:#fff}.nav-fill .nav-item,.nav-fill>.nav-link{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.badge{border-radius:.25rem;display:inline-block;font-size:75%;font-weight:700;line-height:1;padding:.25em .4em;text-align:center;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;vertical-align:baseline;white-space:nowrap}@media(prefers-reduced-motion:reduce){.badge{-webkit-transition:none;transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{border-radius:10rem;padding-left:.6em;padding-right:.6em}.badge-primary{background-color:#007bff;color:#fff}a.badge-primary:focus,a.badge-primary:hover{background-color:#0062cc;color:#fff}a.badge-primary.focus,a.badge-primary:focus{-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.5);box-shadow:0 0 0 .2rem rgba(0,123,255,.5);outline:0}.badge-secondary{background-color:#6c757d;color:#fff}a.badge-secondary:focus,a.badge-secondary:hover{background-color:#545b62;color:#fff}a.badge-secondary.focus,a.badge-secondary:focus{-webkit-box-shadow:0 0 0 .2rem hsla(208,7%,46%,.5);box-shadow:0 0 0 .2rem hsla(208,7%,46%,.5);outline:0}.badge-success{background-color:#28a745;color:#fff}a.badge-success:focus,a.badge-success:hover{background-color:#1e7e34;color:#fff}a.badge-success.focus,a.badge-success:focus{-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.5);box-shadow:0 0 0 .2rem rgba(40,167,69,.5);outline:0}.badge-info{background-color:#17a2b8;color:#fff}a.badge-info:focus,a.badge-info:hover{background-color:#117a8b;color:#fff}a.badge-info.focus,a.badge-info:focus{-webkit-box-shadow:0 0 0 .2rem rgba(23,162,184,.5);box-shadow:0 0 0 .2rem rgba(23,162,184,.5);outline:0}.badge-warning{background-color:#ffc107;color:#212529}a.badge-warning:focus,a.badge-warning:hover{background-color:#d39e00;color:#212529}a.badge-warning.focus,a.badge-warning:focus{-webkit-box-shadow:0 0 0 .2rem rgba(255,193,7,.5);box-shadow:0 0 0 .2rem rgba(255,193,7,.5);outline:0}.badge-danger{background-color:#dc3545;color:#fff}a.badge-danger:focus,a.badge-danger:hover{background-color:#bd2130;color:#fff}a.badge-danger.focus,a.badge-danger:focus{-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.5);box-shadow:0 0 0 .2rem rgba(220,53,69,.5);outline:0}.badge-light{background-color:#f8f9fa;color:#212529}a.badge-light:focus,a.badge-light:hover{background-color:#dae0e5;color:#212529}a.badge-light.focus,a.badge-light:focus{-webkit-box-shadow:0 0 0 .2rem rgba(248,249,250,.5);box-shadow:0 0 0 .2rem rgba(248,249,250,.5);outline:0}.badge-dark{background-color:#343a40;color:#fff}a.badge-dark:focus,a.badge-dark:hover{background-color:#1d2124;color:#fff}a.badge-dark.focus,a.badge-dark:focus{-webkit-box-shadow:0 0 0 .2rem rgba(52,58,64,.5);box-shadow:0 0 0 .2rem rgba(52,58,64,.5);outline:0}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spinner-border{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.spinner-border{-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite;border:.25em solid;border-radius:50%;border-right:.25em solid transparent;display:inline-block;height:2rem;vertical-align:-.125em;width:2rem}.spinner-border-sm{border-width:.2em;height:1rem;width:1rem}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite;background-color:currentcolor;border-radius:50%;display:inline-block;height:2rem;opacity:0;vertical-align:-.125em;width:2rem}.spinner-grow-sm{height:1rem;width:1rem}@media(prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after{clear:both;content:"";display:block}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}@media(min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media(min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media(min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media(min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{display:block;overflow:hidden;padding:0;position:relative;width:100%}.embed-responsive:before{content:"";display:block}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{border:0;bottom:0;height:100%;left:0;position:absolute;top:0;width:100%}.embed-responsive-21by9:before{padding-top:42.85714286%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-column,.flex-row{-webkit-box-direction:normal!important}.flex-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-webkit-box-orient:horizontal!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse,.flex-row-reverse{-webkit-box-direction:reverse!important}.flex-column-reverse{-webkit-box-orient:vertical!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media(min-width:576px){.flex-sm-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column,.flex-sm-row{-webkit-box-direction:normal!important}.flex-sm-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media(min-width:768px){.flex-md-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column,.flex-md-row{-webkit-box-direction:normal!important}.flex-md-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media(min-width:992px){.flex-lg-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column,.flex-lg-row{-webkit-box-direction:normal!important}.flex-lg-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media(min-width:1200px){.flex-xl-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column,.flex-xl-row{-webkit-box-direction:normal!important}.flex-xl-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media(min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media(min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media(min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media(min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.fixed-top{top:0}.fixed-bottom,.fixed-top{left:0;position:fixed;right:0;z-index:1030}.fixed-bottom{bottom:0}@supports(position:sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;overflow:visible;position:static;white-space:normal;width:auto}.shadow-sm{-webkit-box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important;box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{-webkit-box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important;box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{-webkit-box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important;box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{-webkit-box-shadow:none!important;box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media(min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media(min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media(min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media(min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link:after{background-color:transparent;bottom:0;content:"";left:0;pointer-events:auto;position:absolute;right:0;top:0;z-index:1}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media(min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media(min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media(min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media(min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{background-color:transparent;border:0;color:transparent;font:0/0 a;text-shadow:none}.text-decoration-none{text-decoration:none!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.leaflet-control{cursor:pointer}a.polyline-measure-controlOnBgColor,a.polyline-measure-controlOnBgColor:hover{background-color:#8f8}.polyline-measure-unicode-icon{font-size:19px;font-weight:700}a.polyline-measure-clearControl:active{background-color:#f88}.polyline-measure-tooltip{background-color:rgba(255,255,170,.7);border-radius:3px;-webkit-box-shadow:1px 1px 4px #888;box-shadow:1px 1px 4px #888;font:10px Arial,Helvetica,sans-serif;height:auto!important;line-height:10px;margin:0;padding:2px;text-align:right;white-space:nowrap;width:auto!important}.polyline-measure-tooltip-end{background-color:rgba(255,255,40,.7)}.polyline-measure-tooltip-total{color:#006;font-weight:700}.polyline-measure-tooltip-difference{color:#060;font-style:italic}.polyline-measure-popupTooltip{font:11px Arial,Helvetica,sans-serif;line-height:11px}#map_presentation,body,html{height:100%;margin:0}.edoc__map{height:500px;width:100%}.edoc__map.setCrosshair{cursor:crosshair}.edoc__mapadress__input{background-color:#fff;border:2px solid #014179;border-radius:0;height:48px;margin-bottom:15px;padding:14px 10px 13px 15px}.edoc__searchicon{position:absolute;right:26px;top:10px}.edoc__mapcontrols{background-color:#e5ecf1;margin-top:2px;padding:20px}.edoc__mapcontrols__buttons{-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:space-between}.edoc__mapbtn{background:transparent;border:0;color:#014179;display:inline-block;font-family:Roboto;font-size:13px;font-weight:500;line-height:1.46;margin:0;padding:0;text-align:center;width:70px}@media(min-width:576px){.edoc__mapbtn{margin:-10px 10px;padding:10px;width:90px}}.edoc__mapbtn svg{display:inline-block;height:34px;margin-bottom:0;padding:5px;position:relative;width:34px}.edoc__mapbtn.active svg{background:#014179;border-radius:100px}.edoc__mapbtn.active .lines{fill:#fff}.local-mapicon{background:transparent;background-color:var(--map__icon__color,var(--primary__color,red));border-radius:100%;height:25px;width:25px}.local-mapicon:after{background:#fff;border-radius:100%;content:"";height:7px;left:10px;position:absolute;top:9px;width:7px}.local-mapicon:before{border:12.5px solid transparent;border-top:27px solid var(--map__icon__color,var(--primary__color,red));bottom:-30px;content:"";display:block;left:0;position:absolute}.fullwindow .edoc__map{height:960px;width:1280px}.fullwindow .edoc__map .map{height:100%;margin:0;width:100%}
.autocomplete{background:#fff;border:1px solid rgba(50,50,50,.6);-webkit-box-sizing:border-box;box-sizing:border-box;font:14px/22px -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;overflow:auto;z-index:1000}.autocomplete *{font:inherit}.autocomplete>div{padding:0 4px}.autocomplete .group{background:#eee}.autocomplete>div.selected,.autocomplete>div:hover:not(.group){background:#81ca91;cursor:pointer}
.edoc__container{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}@media(min-width:576px){.edoc__container{max-width:540px}}@media(min-width:768px){.edoc__container{max-width:720px}}@media(min-width:992px){.edoc__container{max-width:960px}}@media(min-width:1200px){.edoc__container{max-width:1140px}}.edoc__container-fluid{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}.edoc__row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.edoc__no-gutters{margin-left:0;margin-right:0}.edoc__no-gutters>.edoc__col,.edoc__no-gutters>[class*=edoc__col-]{padding-left:0;padding-right:0}.edoc__col,.edoc__col-1,.edoc__col-10,.edoc__col-11,.edoc__col-12,.edoc__col-2,.edoc__col-3,.edoc__col-4,.edoc__col-5,.edoc__col-6,.edoc__col-7,.edoc__col-8,.edoc__col-9,.edoc__col-auto,.edoc__col-lg,.edoc__col-lg-1,.edoc__col-lg-10,.edoc__col-lg-11,.edoc__col-lg-12,.edoc__col-lg-2,.edoc__col-lg-3,.edoc__col-lg-4,.edoc__col-lg-5,.edoc__col-lg-6,.edoc__col-lg-7,.edoc__col-lg-8,.edoc__col-lg-9,.edoc__col-lg-auto,.edoc__col-md,.edoc__col-md-1,.edoc__col-md-10,.edoc__col-md-11,.edoc__col-md-12,.edoc__col-md-2,.edoc__col-md-3,.edoc__col-md-4,.edoc__col-md-5,.edoc__col-md-6,.edoc__col-md-7,.edoc__col-md-8,.edoc__col-md-9,.edoc__col-md-auto,.edoc__col-sm,.edoc__col-sm-1,.edoc__col-sm-10,.edoc__col-sm-11,.edoc__col-sm-12,.edoc__col-sm-2,.edoc__col-sm-3,.edoc__col-sm-4,.edoc__col-sm-5,.edoc__col-sm-6,.edoc__col-sm-7,.edoc__col-sm-8,.edoc__col-sm-9,.edoc__col-sm-auto,.edoc__col-xl,.edoc__col-xl-1,.edoc__col-xl-10,.edoc__col-xl-11,.edoc__col-xl-12,.edoc__col-xl-2,.edoc__col-xl-3,.edoc__col-xl-4,.edoc__col-xl-5,.edoc__col-xl-6,.edoc__col-xl-7,.edoc__col-xl-8,.edoc__col-xl-9,.edoc__col-xl-auto{padding-left:15px;padding-right:15px;position:relative;width:100%}.edoc__col{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;max-width:100%}.edoc__col-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.edoc__col-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333333%;flex:0 0 8.33333333%;max-width:8.33333333%}.edoc__col-2{-webkit-box-flex:0;-ms-flex:0 0 16.66666667%;flex:0 0 16.66666667%;max-width:16.66666667%}.edoc__col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.edoc__col-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333333%;flex:0 0 33.33333333%;max-width:33.33333333%}.edoc__col-5{-webkit-box-flex:0;-ms-flex:0 0 41.66666667%;flex:0 0 41.66666667%;max-width:41.66666667%}.edoc__col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.edoc__col-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333333%;flex:0 0 58.33333333%;max-width:58.33333333%}.edoc__col-8{-webkit-box-flex:0;-ms-flex:0 0 66.66666667%;flex:0 0 66.66666667%;max-width:66.66666667%}.edoc__col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.edoc__col-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333333%;flex:0 0 83.33333333%;max-width:83.33333333%}.edoc__col-11{-webkit-box-flex:0;-ms-flex:0 0 91.66666667%;flex:0 0 91.66666667%;max-width:91.66666667%}.edoc__col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.edoc__order-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.edoc__order-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.edoc__order-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.edoc__order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.edoc__order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.edoc__order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.edoc__order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.edoc__order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.edoc__order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.edoc__order-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.edoc__order-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.edoc__order-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.edoc__order-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.edoc__order-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.edoc__order-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.edoc__offset-1{margin-left:8.33333333%}.edoc__offset-2{margin-left:16.66666667%}.edoc__offset-3{margin-left:25%}.edoc__offset-4{margin-left:33.33333333%}.edoc__offset-5{margin-left:41.66666667%}.edoc__offset-6{margin-left:50%}.edoc__offset-7{margin-left:58.33333333%}.edoc__offset-8{margin-left:66.66666667%}.edoc__offset-9{margin-left:75%}.edoc__offset-10{margin-left:83.33333333%}.edoc__offset-11{margin-left:91.66666667%}@media(min-width:576px){.edoc__col-sm{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;max-width:100%}.edoc__col-sm-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.edoc__col-sm-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333333%;flex:0 0 8.33333333%;max-width:8.33333333%}.edoc__col-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.66666667%;flex:0 0 16.66666667%;max-width:16.66666667%}.edoc__col-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.edoc__col-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333333%;flex:0 0 33.33333333%;max-width:33.33333333%}.edoc__col-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.66666667%;flex:0 0 41.66666667%;max-width:41.66666667%}.edoc__col-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.edoc__col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333333%;flex:0 0 58.33333333%;max-width:58.33333333%}.edoc__col-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.66666667%;flex:0 0 66.66666667%;max-width:66.66666667%}.edoc__col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.edoc__col-sm-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333333%;flex:0 0 83.33333333%;max-width:83.33333333%}.edoc__col-sm-11{-webkit-box-flex:0;-ms-flex:0 0 91.66666667%;flex:0 0 91.66666667%;max-width:91.66666667%}.edoc__col-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.edoc__order-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.edoc__order-sm-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.edoc__order-sm-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.edoc__order-sm-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.edoc__order-sm-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.edoc__order-sm-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.edoc__order-sm-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.edoc__order-sm-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.edoc__order-sm-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.edoc__order-sm-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.edoc__order-sm-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.edoc__order-sm-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.edoc__order-sm-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.edoc__order-sm-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.edoc__order-sm-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.edoc__offset-sm-0{margin-left:0}.edoc__offset-sm-1{margin-left:8.33333333%}.edoc__offset-sm-2{margin-left:16.66666667%}.edoc__offset-sm-3{margin-left:25%}.edoc__offset-sm-4{margin-left:33.33333333%}.edoc__offset-sm-5{margin-left:41.66666667%}.edoc__offset-sm-6{margin-left:50%}.edoc__offset-sm-7{margin-left:58.33333333%}.edoc__offset-sm-8{margin-left:66.66666667%}.edoc__offset-sm-9{margin-left:75%}.edoc__offset-sm-10{margin-left:83.33333333%}.edoc__offset-sm-11{margin-left:91.66666667%}}@media(min-width:768px){.edoc__col-md{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;max-width:100%}.edoc__col-md-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.edoc__col-md-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333333%;flex:0 0 8.33333333%;max-width:8.33333333%}.edoc__col-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.66666667%;flex:0 0 16.66666667%;max-width:16.66666667%}.edoc__col-md-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.edoc__col-md-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333333%;flex:0 0 33.33333333%;max-width:33.33333333%}.edoc__col-md-5{-webkit-box-flex:0;-ms-flex:0 0 41.66666667%;flex:0 0 41.66666667%;max-width:41.66666667%}.edoc__col-md-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.edoc__col-md-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333333%;flex:0 0 58.33333333%;max-width:58.33333333%}.edoc__col-md-8{-webkit-box-flex:0;-ms-flex:0 0 66.66666667%;flex:0 0 66.66666667%;max-width:66.66666667%}.edoc__col-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.edoc__col-md-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333333%;flex:0 0 83.33333333%;max-width:83.33333333%}.edoc__col-md-11{-webkit-box-flex:0;-ms-flex:0 0 91.66666667%;flex:0 0 91.66666667%;max-width:91.66666667%}.edoc__col-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.edoc__order-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.edoc__order-md-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.edoc__order-md-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.edoc__order-md-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.edoc__order-md-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.edoc__order-md-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.edoc__order-md-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.edoc__order-md-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.edoc__order-md-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.edoc__order-md-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.edoc__order-md-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.edoc__order-md-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.edoc__order-md-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.edoc__order-md-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.edoc__order-md-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.edoc__offset-md-0{margin-left:0}.edoc__offset-md-1{margin-left:8.33333333%}.edoc__offset-md-2{margin-left:16.66666667%}.edoc__offset-md-3{margin-left:25%}.edoc__offset-md-4{margin-left:33.33333333%}.edoc__offset-md-5{margin-left:41.66666667%}.edoc__offset-md-6{margin-left:50%}.edoc__offset-md-7{margin-left:58.33333333%}.edoc__offset-md-8{margin-left:66.66666667%}.edoc__offset-md-9{margin-left:75%}.edoc__offset-md-10{margin-left:83.33333333%}.edoc__offset-md-11{margin-left:91.66666667%}}@media(min-width:992px){.edoc__col-lg{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;max-width:100%}.edoc__col-lg-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.edoc__col-lg-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333333%;flex:0 0 8.33333333%;max-width:8.33333333%}.edoc__col-lg-2{-webkit-box-flex:0;-ms-flex:0 0 16.66666667%;flex:0 0 16.66666667%;max-width:16.66666667%}.edoc__col-lg-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.edoc__col-lg-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333333%;flex:0 0 33.33333333%;max-width:33.33333333%}.edoc__col-lg-5{-webkit-box-flex:0;-ms-flex:0 0 41.66666667%;flex:0 0 41.66666667%;max-width:41.66666667%}.edoc__col-lg-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.edoc__col-lg-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333333%;flex:0 0 58.33333333%;max-width:58.33333333%}.edoc__col-lg-8{-webkit-box-flex:0;-ms-flex:0 0 66.66666667%;flex:0 0 66.66666667%;max-width:66.66666667%}.edoc__col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.edoc__col-lg-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333333%;flex:0 0 83.33333333%;max-width:83.33333333%}.edoc__col-lg-11{-webkit-box-flex:0;-ms-flex:0 0 91.66666667%;flex:0 0 91.66666667%;max-width:91.66666667%}.edoc__col-lg-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.edoc__order-lg-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.edoc__order-lg-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.edoc__order-lg-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.edoc__order-lg-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.edoc__order-lg-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.edoc__order-lg-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.edoc__order-lg-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.edoc__order-lg-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.edoc__order-lg-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.edoc__order-lg-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.edoc__order-lg-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.edoc__order-lg-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.edoc__order-lg-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.edoc__order-lg-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.edoc__order-lg-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.edoc__offset-lg-0{margin-left:0}.edoc__offset-lg-1{margin-left:8.33333333%}.edoc__offset-lg-2{margin-left:16.66666667%}.edoc__offset-lg-3{margin-left:25%}.edoc__offset-lg-4{margin-left:33.33333333%}.edoc__offset-lg-5{margin-left:41.66666667%}.edoc__offset-lg-6{margin-left:50%}.edoc__offset-lg-7{margin-left:58.33333333%}.edoc__offset-lg-8{margin-left:66.66666667%}.edoc__offset-lg-9{margin-left:75%}.edoc__offset-lg-10{margin-left:83.33333333%}.edoc__offset-lg-11{margin-left:91.66666667%}}@media(min-width:1200px){.edoc__col-xl{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;max-width:100%}.edoc__col-xl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.edoc__col-xl-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333333%;flex:0 0 8.33333333%;max-width:8.33333333%}.edoc__col-xl-2{-webkit-box-flex:0;-ms-flex:0 0 16.66666667%;flex:0 0 16.66666667%;max-width:16.66666667%}.edoc__col-xl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.edoc__col-xl-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333333%;flex:0 0 33.33333333%;max-width:33.33333333%}.edoc__col-xl-5{-webkit-box-flex:0;-ms-flex:0 0 41.66666667%;flex:0 0 41.66666667%;max-width:41.66666667%}.edoc__col-xl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.edoc__col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333333%;flex:0 0 58.33333333%;max-width:58.33333333%}.edoc__col-xl-8{-webkit-box-flex:0;-ms-flex:0 0 66.66666667%;flex:0 0 66.66666667%;max-width:66.66666667%}.edoc__col-xl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.edoc__col-xl-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333333%;flex:0 0 83.33333333%;max-width:83.33333333%}.edoc__col-xl-11{-webkit-box-flex:0;-ms-flex:0 0 91.66666667%;flex:0 0 91.66666667%;max-width:91.66666667%}.edoc__col-xl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.edoc__order-xl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.edoc__order-xl-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.edoc__order-xl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.edoc__order-xl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.edoc__order-xl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.edoc__order-xl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.edoc__order-xl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.edoc__order-xl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.edoc__order-xl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.edoc__order-xl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.edoc__order-xl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.edoc__order-xl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.edoc__order-xl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.edoc__order-xl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.edoc__order-xl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.edoc__offset-xl-0{margin-left:0}.edoc__offset-xl-1{margin-left:8.33333333%}.edoc__offset-xl-2{margin-left:16.66666667%}.edoc__offset-xl-3{margin-left:25%}.edoc__offset-xl-4{margin-left:33.33333333%}.edoc__offset-xl-5{margin-left:41.66666667%}.edoc__offset-xl-6{margin-left:50%}.edoc__offset-xl-7{margin-left:58.33333333%}.edoc__offset-xl-8{margin-left:66.66666667%}.edoc__offset-xl-9{margin-left:75%}.edoc__offset-xl-10{margin-left:83.33333333%}.edoc__offset-xl-11{margin-left:91.66666667%}}:root{--k247-button-color:var(--k247-text-color);--k247-button-font-size:16px;--k247-button-bg:#fff;--k247-button-border-color:#fff;--k247-button-border-radius:2px;--k247-button-hover-bg:#e2e6ea;--k247-button-hover-border-color:#e2e6ea;--k247-button-disabled-bg:#f3f3f3;--k247-button-disabled-border-color:#f3f3f3;--k247-button-disabled-color:grey;--k247-button-primary-bg:var(--k247-main-color);--k247-button-primary-color:#fff;--k247-button-primary-hover-bg:#1b5b93;--k247-button-primary-hover-color:#fff;--k247-button-primary-border-bg:#fff;--k247-button-primary-border-font-size:18px;--k247-button-primary-border-color:var(--k247-main-color);--k247-button-primary-border-border-color:var(--k247-main-color);--k247-button-primary-border-hover-bg:var(--k247-main-color);--k247-button-primary-border-hover-color:#fff;--k247-button-primary-border-hover-border-color:var(--k247-main-color);--k247-button-success-bg:#008a00;--k247-button-success-color:#fff;--k247-button-success-hover-bg:#1aa41a;--k247-button-success-hover-color:#fff;--k247-button-action-bg:#1e1e1e;--k247-button-action-color:#fff;--k247-button-action-hover-bg:#fff;--k247-button-action-hover-color:#1e1e1e;--k247-button-danger-bg:#bd4f4e;--k247-button-danger-color:#fff;--k247-button-danger-hover-bg:#d76968;--k247-button-danger-hover-color:#fff;--k247-login-button-bg:#d5d5d5;--k247-login-button-color:var(--k247-text-color);--k247-login-button-hover-color:var(--k247-text-color);--k247-login-button-active-bg:var(--k247-main-color);--k247-login-button-active-color:#fff;--k247-login-button-active-hover-color:#fff;--k247-login-button-active-white-bg:#fff;--k247-login-button-active-white-color:var(--k247-text-color);--k247-help-button-color:var(--k247-main-color);--k247-calculation-sum-bg:#024179;--k247-calculation-sum-color:#fff;--k247-calculation-sum-input-bg:#285e8d;--k247-checkbox-focus-color:var(--k247-main-color);--k247-checkbox-fill-color:var(--k247-main-color);--k247-checkbox-stroke-color:var(--k247-main-color);--k247-checkbox-toggle-icon-border-color:#757575;--k247-checkbox-toggle-icon-bg:#fff;--k247-checkbox-toggle-icon-color:#757575;--k247-checkbox-toggle-icon-url:url(images/xmark..svg);--k247-checkbox-toggle-icon-checked-url:url(images/chechmark..svg);--k247-checkbox-toggle-bg-bg:#fff;--k247-checkbox-toggle-bg-border-color:#757575;--k247-checkbox-toggle-bg-active:#61b209;--k247-circle-button-color:var(--k247-main-color);--k247-circle-button-border-color:#004179;--k247-circle-button-hover-color:#0056b3;--k247-circle-button-remove-color:#004179;--k247-circle-button-remove-hover-bg:#004179;--k247-circle-button-remove-hover-color:#fff;--k247-circle-button-disabled-color:#979797;--k247-circle-button-disabled-bg:#fff;--k247-circle-button-add-bg:#004179;--k247-circle-button-add-color:#fff;--k247-circle-button-add-hover-bg:transparent;--k247-circle-button-add-hover-color:#004179;--k247-form-part-bg:#fff;--k247-form-part-border-color:#d8d8d8;--k247-form-part-shadow-color:rgba(0,0,0,.1);--k247-form-part-hover-border-color:var(--k247-main-color);--k247-form-anchor-color:var(--k247-main-color);--k247-form-part-active-border-color:var(--k247-main-color);--k247-form-part-active-shadow-color:rgba(0,0,0,.3);--k247-form-part-active-anchor-color:var(--k247-main-color);--k247-form-part-icon-sim-bg:var(--k247-main-color);--k247-form-part-icon-sim-color:#fff;--k247-form-part-icon-sim-hover-color:#7990ba;--k247-form-part-icon-sim-focus-color:#bd4f4e;--k247-form-part-content-dotted-color:#8f8f8f;--k247-data-grid-table-color:#212529;--k247-data-grid-table-border-color:#dee2e6;--k247-datepicker-icon-bg:#fff;--k247-datepicker-border-color:#ddd;--k247-error-border-color:red;--k247-error-bg:#fff;--k247-explain-bg:#e2f4fa;--k247-explain-color:var(--k247-text-color);--k247-fake-file-input-bg:#fff;--k247-fake-file-input-color:grey;--k247-fake-file-input-submit-bg:var(--k247-main-color);--k247-fake-file-input-submit-color:#fff;--k247-footer-color:var(--k247-text-color);--k247-footer-button-anchor-color:var(--k247-text-color);--k247-footer-button-anchor-hover-border-color:var(--k247-main-color);--k247-footer-button-anchor-hover-focus-shadow-color:#bd4f4e;--k247-form-group-bg:#fff;--k247-form-group-border-color:#979797;--k247-form-group-active-bg:#024179;--k247-form-group-active-border-color:#024179;--k247-form-group-active-shadow-color:rgba(0,0,0,.5);--k247-form-group-header-color:var(--k247-text-color);--k247-form-group-header-icon-color:#979797;--k247-form-group-header-active-color:#fff;--k247-form-group-header-active-icon-color:#fff;--k247-form-group-action-bg:#e2f4fa;--k247-form-group-content-border-color:#ccc;--k247-form-group-row-title-bg:#e2f4fa;--k247-form-group-row-title-border-color:#ccc;--k247-form-group-row-title-active-bg:#fff;--k247-form-group-row-title-active-border-color:#ccc;--k247-form-group-toggle-color:var(--k247-text-color);--k247-form-group-toggle-arrow-color:#024179;--k247-form-group-delete-border-color:rgba(2,65,121,.1);--k247-form-group-delete-color:#024179;--k247-form-group-delete-disabled-color:grey;--k247-form-group-row-content-bg:#fff;--k247-form-group-form-part-bg:#fafafa;--k247-form-group-form-part-border-color:#ccc;--k247-form-group-summary-bg:#024179;--k247-form-group-summary-panel-title-color:#fff;--k247-form-group-page-bg:#fafafa;--k247-form-group-page-title-color:var(--k247-text-color);--k247-form-group-page-title-border-color:#024179;--k247-forms-header-title-color:#252525;--k247-forms-header-title-hover-color:#252525;--k247-forms-header-title-icon-color:#979797;--k247-forms-field-error-bg:#fff;--k247-forms-field-error-border-color:#dc3545;--k247-forms-input-border-color:#0257a1;--k247-forms-input-color:var(--k247-text-color);--k247-forms-input-textarea-placeholder-color:#757575;--k247-forms-input-placeholder-color:#6c757d;--k247-forms-input-disabled-bg:#e9ecef;--k247-forms-input-disabled-border-color:var(--k247-forms-input-border-color);--k247-forms-input-hover-focus-border-color:var(--k247-main-color);--k247-form-title-color:#252525;--k247-field-label-color:#212529;--k247-header-bg:#fff;--k247-header-lang-color:var(--k247-text-color);--k247-header-lang-border-color:var(--k247-main-color);--k247-header-lang-hover-border-color:#888;--k247-header-lang-focus-color:#222;--k247-header-lang-focus-shadow-color:rgba(59,153,252,.7);--k247-header-lang-container-icon-color:var(--k247-main-color);--k247-header-logo-anchor-focus-shadow-color:#bd4f4e;--k247-header-logo-text-color:var(--k247-text-color);--k247-header-drop-down-bg:#fff;--k247-header-drop-down-border-color:var(--k247-main-color);--k247-header-drop-down-color:var(--k247-main-color);--k247-header-drop-down-content-bg:#fff;--k247-header-drop-down-content-shadow-color:rgba(0,0,0,.5);--k247-header-anchor-color:var(--k247-text-color);--k247-header-help-icon-color:var(--k247-main-color);--k247-header-global-icon-color:var(--k247-main-color);--k247-header-burger-path-color:var(--k247-main-color);--k247-header-mobile-lang-color:var(--k247-text-color);--k247-header-mobile-anchor-color:var(--k247-text-color);--k247-header-mobile-global-icon-color:var(--k247-main-color);--k247-header-mobile-help-icon-color:var(--k247-main-color);--k247-header-login-color:#252525;--k247-head-link-color:#252525;--k247-head-link-title-color:var(--k247-text-color);--k247-head-link-icon-color:var(--k247-main-color);--k247-help-panel-bg:#e2f4fa;--k247-help-panel-shadow-color:rgba(0,0,0,.3);--k247-help-panel-close-bg:#fff;--k247-help-panel-title-color:var(--k247-text-color);--k247-help-panel-toggle-bg:#fff;--k247-help-panel-toggle-color:var(--k247-text-color);--k247-help-panel-toggle-border-color:#e2f4fa;--k247-help-panel-active-bg:var(--k247-main-color);--k247-help-panel-active-color:#fff;--k247-help-panel-toggle-content-bg:#fff;--k247-help-panel-toggle-content-color:var(--k247-text-color);--k247-id-port-top-bar-bg:#3a3a3a;--k247-id-port-top-bar-color:#d9d8d3;--k247-id-port-top-bar-shadow-color:rgba(0,0,0,.1);--k247-id-por-logout-color:#d9d8d3;--k247-my-cases-panel-bg:hsla(0,0%,100%,.5);--k247-my-cases-panel-border-color:#fff;--k247-my-cases-panel-title-color:#252525;--k247-my-cases-help-content-bg:#e2f4fa;--k247-my-cases-help-content-border-color:#fff;--k247-my-cases-help-content-color:var(--k247-text-color);--k247-my-cases-hr-bg:rgba(2,65,121,.1);--k247-my-cases-panel-anchor-color:var(--k247-main-color);--k247-my-cases-td-bar-bg:#fff;--k247-my-cases-td-bar-shadow-color:rgba(0,0,0,.1);--k247-my-cases-help-icon-bg:var(--k247-main-color);--k247-my-cases-help-icon-question-invert-color:var(--k247-main-color);--k247-my-cases-help-icon-question-color:#fff;--k247-my-cases-help-icon-invert-bg:#fff;--k247-my-cases-mobile-panel-border-color:#e5e5e5;--k247-my-cases-mobile-panel-bg:hsla(0,0%,100%,.4);--k247-my-cases-mobile-panel-color:var(--k247-text-color);--k247-my-cases-mobile-panel-label-color:var(--k247-text-color);--k247-my-cases-mobile-card-shadow-color:rgba(0,0,0,.1);--k247-my-cases-mobile-card-bg:#fff;--k247-overview-title-color:#252525;--k247-overview-search-color:#555;--k247-overview-search-border-color:var(--k247-main-color);--k247-overview-search-hover-focus-border-color:var(--k247-main-color);--k247-overview-search-button-bg:var(--k247-main-color);--k247-overview-search-button-color:#fff;--k247-overview-color:var(--k247-main-color);--k247-overview-text-color:var(--k247-text-color);--k247-overview-no-hit-bg:#fff;--k247-overview-result-item-bg:#fff;--k247-overview-result-item-shadow:#eee;--k247-overview-result-link-color:var(--k247-text-color);--k247-overview-result-link-hover-bg:#f4f4f4;--k247-panel-bg:#e2f4fa;--k247-panel-text-color:var(--k247-text-color);--k247-panel-border-color:#2383d7;--k247-panel-nested-bg:#fff;--k247-panel-nested-border-color:#92bfe7;--k247-panel-nested-nested-bg:rgba(226,244,250,.25);--k247-panel-nested-nested-border-color:#92bfe7;--k247-panel-blue-bg:#e2f4fa;--k247-part-bg:#fff;--k247-part-header-color:var(--k247-main-color);--k247-link-list-bg:#f2f2f2;--k247-link-list-nth-bg:#fff;--k247-link-list-color:#000;--k247-link-list-focus-color:#bd4f4e;--k247-link-list-hover-bg:#b7bfdb;--k247-payment-info-border-color:var(--k247-main-color);--k247-payment-info-bg:#fff;--k247-radio-focus-color:var(--k247-main-color);--k247-radio-stroke-color:#979797;--k247-radio-fill-color:#004179;--k247-read-more-toggle-color:var(--k247-main-color);--k247-read-more-content-bg:#fff;--k247-read-more-content-shadow:rgba(0,0,0,.3);--k247-read-more-link-row-border-color:#eee;--k247-read-more-link-color:var(--k247-main-color);--k247-response-text-color:#b32040;--k247-sign-bg:#b32040;--k247-sign-color:#fff}:root .error-message-text{font-size:16px;font-weight:400}[class*=response-text]:has([data-i18n-backend-options*=isContainer]){margin-top:-6px}:root{--k247-section-top-bg:#fff;--k247-section-top-shadow:rgba(0,0,0,.1);--k247-section-top-hover-border-color:var(--k247-main-color);--k247-section-top-active-border-color:var(--k247-main-color);--k247-section-top-active-shadow:rgba(0,0,0,.3);--k247-section-top-active-head-link-bg:#fff;--k247-section-top-active-head-link-color:var(--k247-main-color);--k247-section-top-li-border-color:#eee;--k247-section-top-li-first-child-border-color:#8f8f8f;--k247-section-top-anchor-color:var(--k247-text-color);--k247-section-top-anchor-hover-bg:#f4f4f4;--k247-section-top-icon-color:var(--k247-main-color);--k247-select-holder-bg:#fff;--k247-select-holder-selector-bg:var(--k247-main-color);--k247-select-holder-selector-icon-color:#fff;--k247-summary-odd-bg:#fff;--k247-summary-even-bg:#f5f5f5;--k247-summary-error-border-color:#bd4f4e;--k247-summary-panel-bg:var(--k247-panel-bg);--k247-summary-panel-odd:var(--k247-panel-bg);--k247-summary-panel-even:#fff;--k247-user-information-anchor-color:#333;--k247-user-information-section-title-color:var(--k247-main-color);--k247-user-information-section-border-color:#979797;--k247-user-information-section-label-value-color:var(--k247-text-color);--k247-main-color:#014179;--k247-text-color:#1e1e1e;--k247-global-bg:#ebebeb;--k247-global-font:"Roboto",sans-serif;--k247-global-anchor-color:var(--k247-main-color);--k247-global-anchor-hover-color:var(--k247-main-color);--k247-std-secondary-color:#e3f4fa}.edoc__form-header__calc-size-title,.edoc__form-header__title{background:transparent;border:0;color:var(--k247-forms-header-title-color);display:block;font-size:18px;font-stretch:normal;font-style:normal;font-weight:700;letter-spacing:normal;line-height:1.5;padding-right:85px;position:relative;text-align:left;text-decoration:none;-webkit-transition:all .25s ease-out;transition:all .25s ease-out;word-break:break-word}.edoc__form-header__calc-size-title:hover,.edoc__form-header__title:hover{color:var(--k247-forms-header-title-hover-color);text-decoration:none}.edoc__form-header__calc-size-title:focus,.edoc__form-header__title:focus{text-decoration:none}.edoc__form-header__calc-size-title:after,.edoc__form-header__title:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--k247-forms-header-title-icon-color);content:"";display:inline-block;font-family:bud_basis;font-size:25px;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;position:absolute;right:0;text-align:center;text-decoration:inherit;text-transform:none;width:1em}@media screen and (min-width:768px){.edoc__form-header__calc-size-title,.edoc__form-header__title{font-size:20px}}.edoc__button,.edoc__print-button{background-color:var(--k247-button-bg);border:1px solid var(--k247-button-border-color);border-radius:var(--k247-button-border-radius);color:var(--k247-button-color);display:inline-block;font-size:var(--k247-button-font-size);padding:8px 15px;text-align:center;-webkit-transition:.3s;transition:.3s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}.edoc__button:hover,.edoc__print-button:hover{background-color:var(--k247-button-hover-bg);border-color:var(--k247-button-hover-border-color);text-decoration:none}.edoc__button:focus,.edoc__print-button:focus{-webkit-box-shadow:0 0 0 .2rem hsla(220,4%,85%,.5);box-shadow:0 0 0 .2rem hsla(220,4%,85%,.5)}[disabled].edoc__button,[disabled].edoc__button:hover,[disabled].edoc__print-button,[disabled].edoc__print-button:hover{background-color:var(--k247-button-disabled-bg);border-color:var(--k247-button-disabled-border-color);color:var(--k247-button-disabled-color)}@media screen and (min-width:992px){.edoc__button,.edoc__print-button{padding:8px 30px}}.edoc__button--primary{background-color:var(--k247-button-primary-bg);color:var(--k247-button-primary-color)}.edoc__button--primary:hover{background-color:var(--k247-button-primary-hover-bg);color:var(--k247-button-primary-hover-color)}.l-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.l-justify-content-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.l-justify-content-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.l-flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.l-block{display:block!important}.l-none{display:none!important}.l-inline-block{display:inline-block!important}.l-inline{display:inline!important}.l-relative{position:relative!important}.l-absolute{position:absolute!important}.l-float-right{float:right!important}.s-mb-60{margin-bottom:60px!important}.s-mb-40{margin-bottom:40px!important}.s-mb-25{margin-bottom:25px!important}.s-mb-20{margin-bottom:20px!important}.s-mb-15{margin-bottom:15px!important}.s-mb-5{margin-bottom:5px!important}.s-mt-50{margin-top:50px!important}.s-mt-20{margin-top:20px!important}.s-mt-10{margin-top:10px!important}.s-mt-5{margin-top:5px!important}.s-mr-8{margin-right:8px!important}.dropzone{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:transparent;display:-webkit-box;display:-ms-flexbox;display:flex;height:34px;max-width:100px;min-height:0!important;min-width:100px;padding:0;position:relative;width:100%;z-index:1}.dropzone .dz-message .dz-button{background:none;border:none;color:inherit;cursor:pointer;font:inherit;outline:inherit;padding:0}.custom-dropzone{position:relative}.custom-dropzone:focus,.custom-dropzone:hover{outline:0}.custom-dropzone:focus .dropzone,.custom-dropzone:hover .dropzone{border-color:var(--k247-main-color)}.custom-dropzone:focus,.custom-dropzone:hover{outline:3px solid #98177e!important;outline-offset:2px!important;text-decoration:none}.custom-dropzone{max-width:100%}.duet-date__input{border:1px solid var(--k247-forms-input-border-color);border-radius:3px;font-weight:400;height:auto;line-height:1.5;max-width:200px;padding:6px}.duet-date__input:disabled{background-color:var(--k247-forms-input-disabled-bg);border-color:var(--k247-forms-input-disabled-border-color)}.duet-date__input-wrapper{max-width:200px}.duet-date__toggle{--duet-color-button:#fff}.duet-date__toggle:focus,.duet-date__toggle:hover{background:var(--k247-form-part-active-border-color);color:#fff}.duet-date__toggle:disabled,.duet-date__toggle:disabled:hover{background-color:var(--k247-forms-input-disabled-bg);border-color:var(--k247-forms-input-disabled-border-color)}.duet-date__toggle:disabled:hover{color:initial}.edoc__button:focus,.edoc__button:hover{text-decoration:none}.edoc__button--abort:focus,.edoc__button--save:focus,.edoc__button--submit:focus,.edoc__button:focus,.edoc__button:hover{outline:3px solid #98177e!important;outline-offset:2px!important}.edoc__button--submit:hover{background:#007000!important}.edoc__button--full{width:100%}.edoc__button--transparent,.edoc__button--transparent:hover{background:transparent;border:0}.edoc__button--primary-border{background-color:var(--k247-button-primary-border-bg);border:2px solid var(--k247-button-primary-border-border-color);color:var(--k247-button-primary-border-color);font-size:var(--k247-button-primary-border-font-size);font-stretch:normal;font-style:normal;font-weight:700;letter-spacing:normal;line-height:1.5;padding:6px 14px;text-align:center}.edoc__button--primary-border:hover{background-color:var(--k247-button-primary-border-hover-bg);border-color:var(--k247-button-primary-border-hover-border-color);color:var(--k247-button-primary-border-hover-color)}@media screen and (min-width:992px){.edoc__button--primary-border{padding:8px 28px}}.edoc__button--success{background-color:var(--k247-button-success-bg);color:var(--k247-button-success-color)}.edoc__button--success:hover{background-color:var(--k247-button-success-hover-bg);color:var(--k247-button-success-hover-color)}.edoc__button--action{background-color:var(--k247-button-action-bg);color:var(--k247-button-action-color)}.edoc__button--action:hover{background-color:var(--k247-button-action-hover-bg);color:var(--k247-button-action-hover-color)}.edoc__button--danger{background-color:var(--k247-button-danger-bg);color:var(--k247-button-danger-color)}.edoc__button--danger:hover{background-color:var(--k247-button-danger-hover-bg);color:var(--k247-button-danger-hover-color)}.edoc__button--large{font-size:16px}@media screen and (min-width:768px){.edoc__button--large{font-size:18px}}.edoc__button--anchor{background:transparent;border:0;color:var(--k247-global-anchor-color)}.edoc__button--anchor:focus,.edoc__button--anchor:hover{background:transparent;border:0;-webkit-box-shadow:none;box-shadow:none;outline:none;text-decoration:underline}.edoc__button--text-decoration-underline{text-decoration:underline}.edoc__button--letter-spacing-large{letter-spacing:1.6px}.edoc__login-button{background:var(--k247-login-button-bg);border:0;border-radius:2px;color:var(--k247-login-button-color);display:block;margin-bottom:10px;padding:15px 0;text-align:center;text-decoration:none;width:100%}.edoc__login-button:focus,.edoc__login-button:hover{color:var(--k247-login-button-hover-color);outline:3px solid #98177e!important;outline-offset:2px!important;text-decoration:none}.edoc__login-button:last-child{margin-bottom:0}@media screen and (min-width:768px){.edoc__login-button{margin:0 auto 10px;width:400px}.edoc__login-button:last-child{margin-bottom:0}}.edoc__login-button--active-white{background:var(--k247-login-button-active-white-bg);color:var(--k247-login-button-active-white-color)}.edoc__login-button--active{background:var(--k247-login-button-active-bg);color:var(--k247-login-button-active-color)}.edoc__login-button--active:focus,.edoc__login-button--active:hover{color:var(--k247-login-button-active-hover-color)}.edoc__help-button{background:transparent;border:0;display:inline-block;height:24px;margin-left:5px;padding:0;position:relative;width:20px}.edoc__help-button:hover{cursor:pointer}.edoc__help-button[aria-expanded=true]:before{background-color:var(--k247-explain-bg);border-radius:100%;border-bottom-left-radius:0;border-bottom-right-radius:0;content:"";height:30px;left:-5px;position:absolute;top:-5px;width:30px;z-index:0}.edoc__help-button[aria-expanded=true] svg{z-index:10}.edoc__help-button__icon-path{fill:var(--k247-help-button-color)}.edoc__help-button--large{height:21px;width:21px}.edoc__print-button{font-size:18px}.edoc__print-button:hover .edoc__print-button__text{text-decoration:underline}.edoc__print-button__icon:before{font-size:22px}.edoc__delete-attachment-button{padding:0 4px}.edoc__blackout{background:rgba(0,0,0,.6);height:100%;left:0;position:fixed;top:0;width:100%;z-index:20000}.edoc__datepicker-icon{background:var(--k247-datepicker-icon-bg);border:0;padding:0;position:absolute;right:2px;top:8px}.edoc__datepicker-icon:focus{outline:0}.edoc__datepicker-icon:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border-left:1px solid var(--k247-datepicker-border-color);content:"";display:inline-block;font-family:bud_basis;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;padding:4px 10px;text-align:center;text-decoration:inherit;text-transform:none;width:1em;width:auto;z-index:800}.edoc__datepicker-wrapper{max-width:200px;position:relative;z-index:10}.edoc__datepicker-wrapper input{display:inline-block}.edoc__datepicker-wrapper--readonly{position:relative}.edoc__datepicker-wrapper--readonly:after{content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1000}.edoc__datepicker-wrapper--readonly .edoc__datepicker-icon,.edoc__datepicker-wrapper--readonly input{background:var(--k247-forms-input-disabled-bg)!important}.edoc__calculation-sum{background:var(--k247-calculation-sum-bg);color:var(--k247-calculation-sum-color);font-size:18px;font-stretch:normal;font-style:normal;font-weight:700;letter-spacing:normal;line-height:1.28;padding:5px 15px}.edoc__calculation-sum__input{background-color:var(--k247-calculation-sum-input-bg);border:0;border-radius:2px;color:#fff;max-width:540px;min-width:30px;padding:5px 10px}.edoc__calculation-sum__input::-webkit-inner-spin-button,.edoc__calculation-sum__input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.edoc__calculation-sum__input.edoc__form__field-error{color:red}.edoc__checkbox-custom{position:relative}.edoc__checkbox-custom__input{height:16px;left:0;opacity:0;position:absolute;top:3px;width:16px}.edoc__checkbox-custom__label{display:block;font-size:16px;font-weight:400;margin-bottom:0;padding:0 0 0 26px}.edoc__checkbox-custom input+label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg data-edoc-uitype=%27check-enabled-unchecked%27 width=%2716%27 height=%2716%27 aria-hidden=%27true%27 preserveAspectRatio=%27none%27 viewBox=%270 0 20 20%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%2762.5%27 y=%27195.5%27 width=%2719%27 height=%2719%27 rx=%271%27 transform=%27translate%28-62 -195%29%27 stroke=%27%237285A7%27 fill=%27%23fff%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E")}.edoc__checkbox-custom input+label:after,.edoc__checkbox-custom input+label:before{background-repeat:no-repeat;content:"";height:16px;left:0;position:absolute;top:3px;width:16px}.edoc__checkbox-custom input+label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg data-edoc-uitype=%27check-enabled-checked%27 width=%2716%27 height=%2716%27 aria-hidden=%27true%27 preserveAspectRatio=%27none%27 viewBox=%270 0 20 20%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg fill=%27none%27 fill-rule=%27evenodd%27%3E%3Crect class=%27edoc__checkbox-custom__checked-svg__fill%27 x=%27.5%27 y=%27.5%27 width=%2719%27 height=%2719%27 rx=%271%27 fill=%27%23004179%27 stroke=%27%23004179%27/%3E%3Cpath d=%27M14.963 6.188 8.59 12.961 5.002 9.725a.6.6 0 1 0-.804.89l4.025 3.63a.6.6 0 0 0 .838-.033l6.776-7.2a.6.6 0 0 0-.874-.824z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E");opacity:0;-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.edoc__checkbox-custom input:disabled+label:after,.edoc__checkbox-custom input:disabled+label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg data-edoc-uitype=%27check-disabled-unchecked%27 width=%2716%27 height=%2716%27 aria-hidden=%27true%27 viewBox=%270 0 20 20%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%27.5%27 y=%27.5%27 width=%2719%27 height=%2719%27 rx=%271%27 fill=%27%23D8D8D8%27 stroke=%27%237285A7%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E")}.edoc__checkbox-custom input:disabled:checked+label:after,.edoc__checkbox-custom input:disabled:checked+label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg data-edoc-uitype=%27check-disabled-checked%27 width=%2716%27 height=%2716%27 aria-hidden=%27true%27 preserveAspectRatio=%27none%27 viewBox=%270 0 20 20%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg fill=%27none%27 fill-rule=%27evenodd%27%3E%3Crect class=%27edoc__checkbox-custom__checked-svg__fill%27 x=%27.5%27 y=%27.5%27 width=%2719%27 height=%2719%27 rx=%271%27 fill=%27%23D8D8D8%27 stroke=%27%23004179%27/%3E%3Cpath d=%27M14.963 6.188 8.59 12.961 5.002 9.725a.6.6 0 1 0-.804.89l4.025 3.63a.6.6 0 0 0 .838-.033l6.776-7.2a.6.6 0 0 0-.874-.824z%27 fill=%27%23000%27/%3E%3C/g%3E%3C/svg%3E")}.edoc__checkbox-custom input:checked+label:after{opacity:1}.edoc__checkbox-custom input:focus+label:before{-webkit-box-shadow:0 0 0 2px var(--k247-checkbox-focus-color);box-shadow:0 0 0 2px var(--k247-checkbox-focus-color);outline:3px solid transparent}.edoc__checkbox.box{border:2px solid #b3b3b3;border-radius:2px;display:inline-block;margin-bottom:8px;margin-right:8px;position:relative;text-align:center;width:100%}@media screen and (min-width:768px){.edoc__checkbox.box{width:auto}}.edoc__checkbox.box label{padding:15px 30px;text-align:center}.edoc__checkbox.box label input{position:absolute;right:-9px;top:-9px}.edoc__checkbox.ischecked{border-color:var(--k247-checkbox-border-color)}.edoc__checkbox--readonly label:before{background:var(--k247-forms-input-disabled-bg)!important;border:1px solid var(--k247-checkbox-stroke-color)!important}.edoc__checkbox-toggle{height:25px;position:relative;width:57px}.edoc__checkbox-toggle:hover{cursor:pointer}.edoc__checkbox-toggle__input,.edoc__checkbox-toggle__text{opacity:0;position:absolute}.edoc__checkbox-toggle__input:focus+.edoc__checkbox-toggle__bg,.edoc__checkbox-toggle__input:focus+.edoc__checkbox-toggle__bg+.edoc__checkbox-toggle__icon{border:2px solid #000}.edoc__checkbox-toggle__icon{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:var(--k247-checkbox-toggle-icon-bg);border:1px solid var(--k247-checkbox-toggle-icon-border-color);border-radius:100%;color:var(--k247-checkbox-toggle-icon-color);display:-webkit-box;display:-ms-flexbox;display:flex;height:27px;justify-content:center;left:-2px;position:absolute;top:-1px;-webkit-transition:left .2s;transition:left .2s;width:27px}.edoc__checkbox-toggle__icon:before{background:var(--k247-checkbox-toggle-icon-url) no-repeat center center;content:"";display:block;height:14px;width:14px}.edoc__checkbox-toggle__bg{background-color:var(--k247-checkbox-toggle-bg-bg);border:1px solid var(--k247-checkbox-toggle-bg-border-color);border-radius:20px;bottom:0;left:0;position:absolute;right:0;top:0;-webkit-transition:background-color .2s;transition:background-color .2s}.edoc__checkbox-toggle__input:checked+.edoc__checkbox-toggle__bg{background-color:var(--k247-checkbox-toggle-bg-active)}.edoc__checkbox-toggle__input:checked+.edoc__checkbox-toggle__bg+.edoc__checkbox-toggle__icon{left:32px}.edoc__checkbox-toggle__input:checked+.edoc__checkbox-toggle__bg+.edoc__checkbox-toggle__icon:before{background:var(--k247-checkbox-toggle-icon-checked-url) no-repeat center center}.edoc__confirmation-box__button-wrapper{-webkit-box-pack:justify;-ms-flex-pack:justify;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:space-between}.edoc__content-collection{-webkit-box-flex:1;-ms-flex:1;flex:1}.edoc__form-part{background:var(--k247-form-part-bg);border-left:7px solid var(--k247-form-part-border-color);-webkit-box-shadow:2px 2px 1px 0 var(--k247-form-part-shadow-color);box-shadow:2px 2px 1px 0 var(--k247-form-part-shadow-color);font-size:16px;margin-bottom:16px;padding:15px 30px;position:relative}.edoc__form-part .edoc__form-header .edoc__form-header__title:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--k247-form-anchor-color);content:"";display:inline-block;font-family:bud_basis;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;text-align:center;text-decoration:inherit;text-transform:none;top:5px;width:1em;width:auto}.edoc__form-part:hover{border-left-color:var(--k247-form-part-hover-border-color)}.edoc__form-part.active{border-left-color:var(--k247-form-part-active-border-color);-webkit-box-shadow:2px 2px 1px 0 var(--k247-form-part-active-shadow-color);box-shadow:2px 2px 1px 0 var(--k247-form-part-active-shadow-color)}.edoc__form-part.active .edoc__form-content{display:block}.edoc__form-part.active .edoc__form-header .edoc__form-header__title:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--k247-form-part-active-anchor-color);content:"";display:inline-block;font-family:bud_basis;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;text-align:center;text-decoration:inherit;text-transform:none;width:1em}.edoc__form-part.edoc__form-part--no-side-color{border-left-color:#fff}.edoc__form-part a .edoc__iconsim{background:var(--k247-form-part-icon-sim-bg);border-radius:100%;color:var(--k247-form-part-icon-sim-color);display:inline-block;font-size:13px;height:15px;text-align:center;width:15px}.edoc__form-part a:hover .edoc__iconsim{background-color:var(--k247-form-part-icon-sim-hover-color);text-decoration:none}.edoc__form-part a:focus .edoc__iconsim{background-color:var(--k247-form-part-icon-sim-focus-color);text-decoration:none}.edoc__form-content{border-top:1px dotted var(--k247-form-part-content-dotted-color);display:none;margin-top:15px;padding-top:30px}.edoc__form-end{margin-top:30px}.edoc__circle-button{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:transparent;border:0;color:var(--k247-circle-button-color);display:-webkit-box;display:-ms-flexbox;display:flex;font-size:16px;font-stretch:normal;font-style:normal;font-weight:400;letter-spacing:normal;line-height:normal;padding:0}.edoc__circle-button:focus,.edoc__circle-button:hover{color:var(--k247-circle-button-hover-color);text-decoration:none}.edoc__circle-button:after,.edoc__circle-button:before{border:1px solid var(--k247-circle-button-border-color);border-radius:100%;padding:4px}.edoc__circle-button--remove:hover:after{background:var(--k247-circle-button-remove-hover-bg);color:var(--k247-circle-button-remove-hover-color)}.edoc__circle-button--remove[disabled]{color:var(--k247-circle-button-disabled-color)}.edoc__circle-button--remove[disabled]:after{background:var(--k247-circle-button-disabled-bg)}.edoc__circle-button--remove[disabled]:after,.edoc__circle-button--remove[disabled]:hover{border-color:var(--k247-circle-button-disabled-color);color:var(--k247-circle-button-disabled-color)}.edoc__circle-button--remove[disabled]:hover{background:transparent}.edoc__circle-button--remove:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--k247-circle-button-remove-color);content:"";display:inline-block;font-family:bud_basis;font-size:20px;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:10px;margin-right:.2em;text-align:center;text-decoration:inherit;text-transform:none;width:1em;width:auto}.edoc__circle-button--add:hover:before{background:var(--k247-circle-button-add-hover-bg);color:var(--k247-circle-button-add-hover-color)}.edoc__circle-button--add:before{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:var(--k247-circle-button-add-bg);color:var(--k247-circle-button-add-color);content:"";display:inline-block;font-family:bud_basis;font-size:20px;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:10px;text-align:center;text-decoration:inherit;text-transform:none;width:1em;width:auto}.edoc__circle-button--add[disabled]{color:var(--k247-circle-button-disabled-color)}.edoc__circle-button--add[disabled]:before{background:var(--k247-circle-button-disabled-bg)}.edoc__circle-button--add[disabled]:before,.edoc__circle-button--add[disabled]:hover{border-color:var(--k247-circle-button-disabled-color);color:var(--k247-circle-button-disabled-color)}.edoc__circle-button--add[disabled]:hover{background:transparent}.edoc__circle-button__align-left{-webkit-box-pack:start;-ms-flex-pack:start;clear:both;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:flex-start}.edoc__circle-button__align-right{-webkit-box-pack:end;-ms-flex-pack:end;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:flex-end}.edoc__data-grid__table{background:inherit;color:var(--k247-data-grid-table-color);margin-bottom:0;width:100%}.edoc__data-grid__row{-webkit-transition:opacity .5s;transition:opacity .5s}.edoc__data-grid__row--collapsed{opacity:0}.edoc__data-grid__td,.edoc__data-grid__th{border-top:1px solid var(--k247-data-grid-table-border-color);padding:.75rem;vertical-align:top}.edoc__data-grid__th{background:inherit}.edoc__error__boxed-message{background:var(--k247-error-bg);border:2px solid var(--k247-error-border-color);font-weight:500;margin-bottom:10px;padding:20px}.edoc__error__text{color:var(--k247-response-text-color)}.edoc__success__boxed-message{background:#fff;border:2px solid #14a44d;font-weight:500;margin-bottom:10px;padding:20px}.edoc__explain{background-color:var(--k247-explain-bg);border-radius:2px;color:var(--k247-explain-color);display:block;font-size:16px;font-weight:400;margin-bottom:15px;padding:15px;text-align:left}.edoc__form-header__title{width:100%}.edoc__form-header__calc-size-title{position:absolute;top:0;visibility:hidden}.edoc__form__field-error{background:var(--k247-forms-field-error-bg);border:2px solid var(--k247-forms-field-error-border-color)}.datepicker,.edoc__form__input,.edoc__form__select,.edoc__form__textarea{background-clip:padding-box;border:1px solid var(--k247-forms-input-border-color);border-radius:3px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;font-weight:400;height:auto;line-height:1.5;padding:6px;width:100%}.datepicker::-ms-expand,.edoc__form__input::-ms-expand,.edoc__form__select::-ms-expand,.edoc__form__textarea::-ms-expand{background-color:transparent;border:0}.datepicker::-webkit-input-placeholder,.edoc__form__input::-webkit-input-placeholder,.edoc__form__select::-webkit-input-placeholder,.edoc__form__textarea::-webkit-input-placeholder{color:var(--k247-forms-input-placeholder-color);opacity:1}.datepicker::-moz-placeholder,.edoc__form__input::-moz-placeholder,.edoc__form__select::-moz-placeholder,.edoc__form__textarea::-moz-placeholder{color:var(--k247-forms-input-placeholder-color);opacity:1}.datepicker:-ms-input-placeholder,.edoc__form__input:-ms-input-placeholder,.edoc__form__select:-ms-input-placeholder,.edoc__form__textarea:-ms-input-placeholder{color:var(--k247-forms-input-placeholder-color);opacity:1}.datepicker::-ms-input-placeholder,.edoc__form__input::-ms-input-placeholder,.edoc__form__select::-ms-input-placeholder,.edoc__form__textarea::-ms-input-placeholder{color:var(--k247-forms-input-placeholder-color);opacity:1}.datepicker::placeholder,.edoc__form__input::placeholder,.edoc__form__select::placeholder,.edoc__form__textarea::placeholder{color:var(--k247-forms-input-placeholder-color);opacity:1}.datepicker:focus,.datepicker:hover,.edoc__form__input:focus,.edoc__form__input:hover,.edoc__form__select:focus,.edoc__form__select:hover,.edoc__form__textarea:focus,.edoc__form__textarea:hover{-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:border-box;box-sizing:border-box;outline:2px solid var(--k247-forms-input-hover-focus-border-color)}.datepicker:-moz-read-only,.edoc__form__input:-moz-read-only,.edoc__form__select:-moz-read-only,.edoc__form__textarea:-moz-read-only{background-color:var(--k247-forms-input-disabled-bg);border-color:var(--k247-forms-input-disabled-border-color);opacity:1}.datepicker:disabled,.datepicker:read-only,.edoc__form__input:disabled,.edoc__form__input:read-only,.edoc__form__select:disabled,.edoc__form__select:read-only,.edoc__form__textarea:disabled,.edoc__form__textarea:read-only{background-color:var(--k247-forms-input-disabled-bg);border-color:var(--k247-forms-input-disabled-border-color);opacity:1}.datepicker.date,.edoc__form__input.date,.edoc__form__select.date,.edoc__form__textarea.date{position:relative}.datepicker.length-xs,.edoc__form__input.length-xs,.edoc__form__select.length-xs,.edoc__form__textarea.length-xs{max-width:200px}.edoc__form__select{font-size:16px;min-height:38px}.edoc__form__input,.edoc__form__textarea{color:var(--k247-forms-input-color);font-size:16px}.edoc__form__input:focus,.edoc__form__textarea:focus{color:var(--k247-forms-input-color)}.edoc__form__input::-webkit-input-placeholder,.edoc__form__textarea::-webkit-input-placeholder{color:var(--k247-forms-input-textarea-placeholder-color)}.edoc__form__input::-moz-placeholder,.edoc__form__textarea::-moz-placeholder{color:var(--k247-forms-input-textarea-placeholder-color)}.edoc__form__input:-ms-input-placeholder,.edoc__form__textarea:-ms-input-placeholder{color:var(--k247-forms-input-textarea-placeholder-color)}.edoc__form__input::-ms-input-placeholder,.edoc__form__textarea::-ms-input-placeholder{color:var(--k247-forms-input-textarea-placeholder-color)}.edoc__form__input::placeholder,.edoc__form__textarea::placeholder{color:var(--k247-forms-input-textarea-placeholder-color)}.edoc__form__input[type=number]::-webkit-inner-spin-button,.edoc__form__input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.edoc__form__input[type=number]{appearance:none;-webkit-appearance:none;-moz-appearance:textfield;margin:0}.edoc__form-title{color:var(--k247-form-title-color);font-size:26px;margin:0 0 40px}@media screen and (min-width:768px){.edoc__form-title{font-size:30px}}.edoc__form-group{background:var(--k247-form-group-bg);border-left:7px solid var(--k247-form-group-border-color);margin-bottom:20px;padding:15px 0}.edoc__form-group--active{background:var(--k247-form-group-active-bg);border-color:var(--k247-form-group-active-border-color);-webkit-box-shadow:0 1px 5px 0 var(--k247-form-group-active-shadow-color);box-shadow:0 1px 5px 0 var(--k247-form-group-active-shadow-color);padding:15px 0 0}.edoc__form-group__action,.edoc__form-group__header{padding-left:30px;padding-right:30px}.edoc__form-group__header-title{background:transparent;border:0;color:var(--k247-form-group-header-color);display:block;font-size:24px;font-weight:500;padding-left:0;padding-right:50px;position:relative;text-align:left;text-decoration:none;-webkit-transition:all .25s ease-out;transition:all .25s ease-out;width:100%}.edoc__form-group__header-title:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--k247-form-group-header-icon-color);content:"";display:inline-block;font-family:bud_basis;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;position:absolute;right:0;text-align:center;text-decoration:inherit;text-transform:none;width:1em}.edoc__form-group__header-title--active{color:var(--k247-form-group-header-active-color)}.edoc__form-group__header-title--active:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--k247-form-group-header-active-icon-color);content:"";display:inline-block;font-family:bud_basis;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;text-align:center;text-decoration:inherit;text-transform:none;width:1em;width:auto}.edoc__form-group__action{background-color:var(--k247-form-group-action-bg);padding-bottom:15px;padding-top:15px}.edoc__form-group__content{border-bottom:1px solid var(--k247-form-group-content-border-color);padding-top:15px}.edoc__form-group__row-title{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-pack:end;-ms-flex-pack:end;align-items:center;background-color:var(--k247-form-group-row-title-bg);border-bottom:1px solid var(--k247-form-group-row-title-border-color);display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:flex-end;padding:15px 30px;position:relative;width:100%}.edoc__form-group__row-title--active{background:var(--k247-form-group-row-title-active-bg);border-top:1px solid var(--k247-form-group-row-title-active-border-color);position:sticky;top:0;z-index:11}.edoc__form-group__toggle{-webkit-box-flex:1;-ms-flex-positive:1;background:transparent;border:0;color:var(--k247-form-group-toggle-color);flex-grow:1;font-size:18px;line-height:1.67;text-align:left}.edoc__form-group__toggle-arrow{background:transparent;border:0;color:var(--k247-form-group-toggle-arrow-color);font-size:24px;line-height:1.67;padding:0}.edoc__form-group__delete{background:transparent;border:0;border-right:1px solid var(--k247-form-group-delete-border-color);color:var(--k247-form-group-delete-color);font-size:14px;line-height:1.71;margin-right:30px;padding-right:30px}.edoc__form-group__delete[disabled]{color:var(--k247-form-group-delete-disabled-color)}.edoc__form-group__row-content{background:var(--k247-form-group-row-content-bg);padding:30px}.edoc__form-group .edoc__form-part{background-color:var(--k247-form-group-form-part-bg);border-color:var(--k247-form-group-form-part-border-color);border-bottom:1px solid var(--k247-form-group-form-part-border-color);border-right:1px solid var(--k247-form-group-form-part-border-color);border-top:1px solid var(--k247-form-group-form-part-border-color)}.edoc__form-group .active{-webkit-box-shadow:none;box-shadow:none}.edoc__form-group__summary-group{background:var(--k247-form-group-summary-bg);margin-bottom:10px;padding:10px}.edoc__form-group__summary-group .edoc____summary-panel__title,.edoc__form-group__summary-group>strong,.edoc__form-group__summary-title{color:var(--k247-form-group-summary-panel-title-color)}.edoc__form-group__summary-title{font-size:16px;font-stretch:normal;font-style:normal;font-weight:900;letter-spacing:normal;line-height:2.63;margin:0}.edoc__form-group__page{background:var(--k247-form-group-page-bg);padding:10px}.edoc__form-group__page-title{border-bottom:2px solid var(--k247-form-group-page-title-border-color);color:var(--k247-form-group-page-title-color);display:inline-block;font-size:16px;margin-bottom:15px}.edoc__fake-file-input{display:-webkit-box;display:-ms-flexbox;display:flex;left:0;position:absolute;top:2px;width:100%;z-index:0}.edoc__fake-file-input__text{background:var(--k247-fake-file-input-bg);color:var(--k247-fake-file-input-color);cursor:pointer!important;padding:4px 8px;width:70%}.edoc__fake-file-input__submit{background-color:var(--k247-fake-file-input-submit-bg);color:var(--k247-fake-file-input-submit-color);cursor:pointer!important;padding:4px;text-align:center;width:100px}.edoc__disabledattachment{cursor:no-drop;opacity:1;position:relative}.edoc__disabledattachment:after{content:"";display:block;height:101%;left:0;position:absolute;top:0;width:101%;z-index:1000}.edoc__disabledattachment .dz-clickable{cursor:not-allowed;position:relative}.edoc__disabledattachment .dz-clickable:before{content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1000}.edoc__disabledattachment .edoc__fake-file-input__text{background-color:var(--k247-forms-input-disabled-bg)!important}.edoc__disabledattachment .edoc__fake-file-input__submit{background-color:var(--k247-button-disabled-color)!important}.edoc__field-wrapper{margin-bottom:20px;padding-top:5px}.edoc__field-wrapper__field-label{border-bottom:0;color:var(--k247-field-label-color);display:block;font-size:16px;font-weight:500;margin:0 0 4px}.edoc__field-wrapper__fieldset{margin-bottom:15px;padding:0}.edoc__field-wrapper__fieldset i{speak:initial;font-family:inherit!important;font-style:italic;font-weight:inherit}.edoc__icon.big{font-size:52px}.edoc__img{height:auto;width:100%}.edoc__label-text{white-space:break-spaces}.edoc__loader{-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite;border:4px solid #f3f3f3;border-radius:50%;border-top-color:#000;height:20px;width:20px}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.edoc__loader-ellipsis{display:inline-block;height:18px;position:relative;width:64px}.edoc__loader-ellipsis div{-webkit-animation-timing-function:cubic-bezier(0,1,1,0);animation-timing-function:cubic-bezier(0,1,1,0);background:#fff;border-radius:50%;height:11px;position:absolute;top:8px;width:11px}.edoc__loader-ellipsis div:first-child{-webkit-animation:loader-ellipsis1 .6s infinite;animation:loader-ellipsis1 .6s infinite;left:6px}.edoc__loader-ellipsis div:nth-child(2){left:6px}.edoc__loader-ellipsis div:nth-child(2),.edoc__loader-ellipsis div:nth-child(3){-webkit-animation:loader-ellipsis2 .6s infinite;animation:loader-ellipsis2 .6s infinite}.edoc__loader-ellipsis div:nth-child(3){left:26px}.edoc__loader-ellipsis div:nth-child(4){-webkit-animation:loader-ellipsis3 .6s infinite;animation:loader-ellipsis3 .6s infinite;left:45px}@-webkit-keyframes loader-ellipsis1{0%{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes loader-ellipsis1{0%{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes loader-ellipsis3{0%{-webkit-transform:scale(1);transform:scale(1)}to{-webkit-transform:scale(0);transform:scale(0)}}@keyframes loader-ellipsis3{0%{-webkit-transform:scale(1);transform:scale(1)}to{-webkit-transform:scale(0);transform:scale(0)}}@-webkit-keyframes loader-ellipsis2{0%{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translate(19px);transform:translate(19px)}}@keyframes loader-ellipsis2{0%{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translate(19px);transform:translate(19px)}}.edoc__list-unstyled{list-style:none;padding-left:0}.edoc__my-cases__panel{background-color:var(--k247-my-cases-panel-bg);border:4px solid var(--k247-my-cases-panel-border-color);border-radius:2px;margin-bottom:50px;padding:20px 15px}@media screen and (min-width:992px){.edoc__my-cases__panel{padding:20px 30px}}.edoc__my-cases__panel-header{-webkit-box-pack:justify;-ms-flex-pack:justify;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:space-between;margin-bottom:10px}.edoc__my-cases__panel-title{color:var(--k247-my-cases-panel-title-color);font-size:24px;font-stretch:normal;font-style:normal;font-weight:700;letter-spacing:normal;line-height:1.25}.edoc__my-cases__help-icon-bg{fill:var(--k247-my-cases-help-icon-bg)}.edoc__my-cases__help-icon-question{fill:var(--k247-my-cases-help-icon-question-color)}.edoc__my-cases__panel-help-icon{background:transparent;border:0}.edoc__my-cases__panel-help-icon--invert .edoc__my-cases__help-icon-bg{fill:var(--k247-my-cases-help-icon-invert-bg)}.edoc__my-cases__panel-help-icon--invert .edoc__my-cases__help-icon-question{fill:var(--k247-my-cases-help-icon-question-invert-color)}.edoc__my-cases__pdf:before{background:url(images/pdf..svg) no-repeat;background-size:contain;content:"";display:block;height:16px;margin-right:5px;width:16px}.edoc__my-cases__panel-help-content{background-color:var(--k247-my-cases-help-content-bg);border:4px solid var(--k247-my-cases-help-content-border-color);border-radius:2px;color:var(--k247-my-cases-help-content-color);font-size:16px;font-stretch:normal;font-style:normal;font-weight:400;letter-spacing:normal;line-height:1.5;margin-bottom:30px;padding:20px}.edoc__my-cases__hr{background-color:var(--k247-my-cases-hr-bg);border:0;height:2px;margin-bottom:30px}.edoc__my-cases__panel-anchor{background:transparent;border:0;color:var(--k247-my-cases-panel-anchor-color);font-size:16px;font-stretch:normal;font-style:normal;font-weight:400;letter-spacing:normal;line-height:1.5;padding:0;text-decoration:underline}.edoc__my-cases__panel-anchor:hover{text-decoration:none}.edoc__my-cases__table{border:none;border-collapse:collapse;width:100%}.edoc__my-cases__table__th{border:none;padding-bottom:15px}.edoc__my-cases__table__td:first-child>.edoc__my-cases__td-bar{padding-left:20px}.edoc__my-cases__table__td:last-child>.edoc__my-cases__td-bar{margin-right:2px;padding-right:20px}.edoc__my-cases__table__td{min-width:100px;padding:0}.edoc__my-cases__table__icon-td{max-width:44px;min-width:25px;width:auto}.edoc__my-cases__table__anchor{color:var(--k247-my-cases-panel-anchor-color);display:block;font-size:18px;font-stretch:normal;font-style:normal;font-weight:700;letter-spacing:normal;line-height:1.5;margin:-1px 0 -2px;text-decoration:underline}.edoc__my-cases__table__anchor:hover{color:var(--k247-my-cases-panel-anchor-color);text-decoration:none}.edoc__my-cases__td-bar{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:var(--k247-my-cases-td-bar-bg);-webkit-box-shadow:2px 2px 1px 0 var(--k247-my-cases-td-bar-shadow-color);box-shadow:2px 2px 1px 0 var(--k247-my-cases-td-bar-shadow-color);display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:20px;min-height:64px;padding:20px 10px 20px 0}.edoc__my-cases__td-bar--last{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.edoc__my-cases__delete{background:transparent;border:0;color:var(--k247-my-cases-panel-anchor-color);font-size:22px;margin:-7px 0;padding:0}.edoc__my-cases-mobile__panel{background-color:var(--k247-my-cases-mobile-panel-bg);border-bottom:1px solid var(--k247-my-cases-mobile-panel-border-color);border-top:1px solid var(--k247-my-cases-mobile-panel-border-color);margin:0 -15px 10px;padding:30px 15px}.edoc__my-cases-mobile__card{-webkit-box-pack:justify;-ms-flex-pack:justify;background-color:var(--k247-my-cases-mobile-card-bg);border-radius:2px;-webkit-box-shadow:2px 2px 1px 0 var(--k247-my-cases-mobile-card-shadow-color);box-shadow:2px 2px 1px 0 var(--k247-my-cases-mobile-card-shadow-color);display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:space-between;margin-bottom:20px;padding:15px}.edoc__my-cases-mobile__card:last-child{margin-bottom:0}.edoc__my-cases-mobile__card__title{font-size:18px;font-stretch:normal;font-style:normal;font-weight:700;letter-spacing:normal;line-height:1.5}.edoc__my-cases-mobile__hr{display:none}.edoc__my-cases-mobile__panel-title{color:var(--k247-my-cases-mobile-panel-color);font-size:20px;font-weight:700}.edoc__my-cases-mobile__label,.edoc__my-cases-mobile__panel-title{font-stretch:normal;font-style:normal;letter-spacing:normal;line-height:1.5}.edoc__my-cases-mobile__label{color:var(--k247-my-cases-mobile-panel-label-color);font-size:16px;font-weight:500;min-width:110px}.edoc__my-cases-mobile__label:after{content:":"}.edoc__payment-info{background:var(--k247-payment-info-bg);border:4px solid var(--k247-payment-info-border-color);font-weight:700;margin-bottom:10px;padding:15px}.edoc__popup-window__content{background:#fff;max-height:95vh;overflow:auto;padding:15px}@media(min-width:768px){.edoc__popup-window__content{padding:30px}}.edoc__popup-window__close{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-pack:center;-ms-flex-pack:center;align-items:center;background:#fff;border:0;border-radius:100%;display:-webkit-box;display:-ms-flexbox;display:flex;height:40px;justify-content:center;margin-bottom:20px;margin-left:auto;width:40px}.edoc__popup-window__close:before{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"";display:inline-block;font-family:bud_basis;font-size:36px;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;text-align:center;text-decoration:inherit;text-transform:none;width:1em;width:auto}.edoc__popup-window__close:hover{background:var(--k247-main-color);color:#fff}.edoc__popup-window__container{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:20001}.edoc__response-text{color:var(--k247-response-text-color);display:inline-block;padding-top:5px}.edoc__sign{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-ms-flex-negative:0;align-items:center;background:var(--k247-sign-bg);border-radius:100%;color:var(--k247-sign-color);display:-webkit-box;display:-ms-flexbox;display:flex;flex-shrink:0;font-size:13px;height:20px;justify-content:center;line-height:16px;margin-right:5px;position:relative;top:0;width:20px}.edoc__read-more{margin-bottom:20px;margin-top:-20px;position:relative}.edoc__read-more__toggle{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:transparent;border:0;color:var(--k247-read-more-toggle-color);display:-webkit-box;display:-ms-flexbox;display:flex;font-size:16px;font-stretch:normal;font-style:normal;font-weight:400;letter-spacing:normal;line-height:1.88;margin-bottom:10px;padding:0}.edoc__read-more__toggle:before{background:url(images/chevron-bottom..svg) no-repeat;content:"";display:block;height:20px;margin-right:8px;width:20px}.edoc__read-more__toggle--active:before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.edoc__read-more__content{background:var(--k247-read-more-content-bg);-webkit-box-shadow:2px 2px 1px 0 var(--k247-read-more-content-shadow);box-shadow:2px 2px 1px 0 var(--k247-read-more-content-shadow);display:none}.edoc__read-more__content--active{display:block}.edoc__read-more__link-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-bottom:1px solid var(--k247-read-more-link-row-border-color);display:-webkit-box;display:-ms-flexbox;display:flex;padding:16px 20px}.edoc__read-more__link-row:last-child{border-bottom:0}.edoc__read-more__link{font-size:16px;line-height:1.5;margin-right:8px;text-decoration:underline}.edoc__read-more__link,.edoc__read-more__link-icon{color:var(--k247-read-more-link-color)}.edoc__select-holder{background:var(--k247-select-holder-bg);display:block;overflow:hidden;position:relative;width:100%;z-index:1}.edoc__select-holder .edoc__form__select,.edoc__select-holder select{-webkit-padding-end:40px;-moz-appearance:none;-webkit-appearance:none;appearance:none;background-color:transparent;font-size:19px;padding-right:40px;position:relative;z-index:100}.edoc__select-holder select::-ms-expand{display:none}.edoc__select-holder .edoc__selector{background:var(--k247-select-holder-selector-bg);content:"";display:inline-block;height:100%;padding:8px;position:absolute;right:1px;top:1px;width:30px;z-index:20}.edoc__select-holder .edoc__selector:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--k247-select-holder-selector-icon-color);content:"";display:inline-block;font-family:bud_basis;font-size:18px;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin:0;text-align:center;text-decoration:inherit;text-transform:none;width:1em}.edoc__select-holder--readonly select{background:var(--k247-forms-input-disabled-bg)!important}.edoc__select-holder--readonly{position:realtive}.edoc__select-holder--readonly:after{content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1000}.edoc__select-holder--readonly .edoc__selector{background-color:var(--k247-button-disabled-color)!important}.edoc__summary-row{padding:10px}.edoc__summary-row:nth-child(odd){background-color:var(--k247-summary-odd-bg)}.edoc__summary-row:nth-child(2n){background-color:var(--k247-summary-even-bg)}.edoc__summary-row__error{border-bottom:2px solid var(--k247-summary-error-border-color);display:inline;position:relative}.edoc__summary-panel{background-color:var(--k247-summary-panel-bg);margin-bottom:16px;padding:10px}.edoc__summary-panel .edoc__summary-row:nth-child(odd){background-color:var(--k247-summary-panel-odd)}.edoc__summary-panel .edoc__summary-row:nth-child(2n){background-color:var(--k247-summary-panel-even)}.edoc__summary-panel__title{display:block;margin:10px 0 10px 10px}.edoc__summary-page__summary-text{color:#252525;font-size:18px;font-stretch:normal;font-style:normal;font-weight:400;letter-spacing:normal;line-height:1.5}.edoc__summary-page__summary-text--hidden-when-empty:empty{display:none}.edoc__radio-custom{position:relative}.edoc__radio-custom__input{height:16px;left:0;opacity:0;position:absolute;top:0;width:16px}.edoc__radio-custom__label{display:block;font-size:16px;font-weight:400;margin-bottom:0;padding:0 0 0 26px}.edoc__radio-custom input+label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg data-edoc-uitype=%27radio-enabled-unchecked%27 width=%2716%27 height=%2716%27 aria-hidden=%27true%27 preserveAspectRatio=%27none%27 viewBox=%270 0 22 22%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%2772%27 cy=%27162%27 r=%2710%27 class=%27edoc__radio-custom__radio-svg__stroke%27 transform=%27translate%28-61 -151%29%27 stroke=%27%237285A7%27 fill=%27%23fff%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E")}.edoc__radio-custom input+label:after,.edoc__radio-custom input+label:before{background-repeat:no-repeat;content:"";height:16px;left:0;position:absolute;top:3px;width:16px}.edoc__radio-custom input+label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg data-edoc-uitype=%27radio-enabled-checked%27 width=%2716%27 height=%2716%27 aria-hidden=%27true%27 preserveAspectRatio=%27none%27 viewBox=%270 0 22 22%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg transform=%27translate%281 1%29%27 fill=%27none%27 fill-rule=%27evenodd%27%3E%3Ccircle class=%27edoc__radio-custom__radio-svg__stroke%27 cx=%2710%27 cy=%2710%27 r=%2710%27 stroke=%27%237285A7%27/%3E%3Ccircle class=%27edoc__radio-custom__radio-svg__fill%27 cx=%2710%27 cy=%2710%27 r=%276%27 fill=%27%23004179%27/%3E%3C/g%3E%3C/svg%3E");opacity:0;-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.edoc__radio-custom input:disabled+label:after,.edoc__radio-custom input:disabled+label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg data-edoc-uitype=%27radio-disabled-unchecked%27 width=%2716%27 height=%2716%27 aria-hidden=%27true%27 preserveAspectRatio=%27none%27 viewBox=%270 0 22 22%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%2710%27 cy=%2710%27 r=%2710%27 transform=%27translate%281 1%29%27 fill=%27%23D8D8D8%27 stroke=%27%237285A7%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E")}.edoc__radio-custom input:disabled:checked+label:after,.edoc__radio-custom input:disabled:checked+label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg data-edoc-uitype=%27radio-disabled-checked%27 width=%2716%27 height=%2716%27 aria-hidden=%27true%27 preserveAspectRatio=%27none%27 viewBox=%270 0 22 22%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg transform=%27translate%281 1%29%27 fill=%27%23D8D8D8%27 fill-rule=%27evenodd%27%3E%3Ccircle class=%27edoc__radio-custom__radio-svg__stroke%27 cx=%2710%27 cy=%2710%27 r=%2710%27 stroke=%27%237285A7%27/%3E%3Ccircle class=%27edoc__radio-custom__radio-svg__fill%27 cx=%2710%27 cy=%2710%27 r=%276%27 fill=%27%23004179%27/%3E%3C/g%3E%3C/svg%3E")}.edoc__radio-custom input:checked+label:after{opacity:1}.edoc__radio-custom input:focus+label:before{-webkit-box-shadow:0 0 0 2px var(--k247-radio-focus-color);box-shadow:0 0 0 2px var(--k247-radio-focus-color);outline:3px solid transparent}.edoc__radio-custom--readonly label:before{background:var(--k247-forms-input-disabled-bg)!important;border:1px solid var(--k247-checkbox-stroke-color)!important;border-radius:100%}.edoc__panel{background-color:var(--k247-panel-bg);border:1px solid var(--k247-panel-border-color);border-radius:2px;padding-top:20px}.edoc__panel .edoc__panel{background-color:var(--k247-panel-nested-bg);border:1px solid var(--k247-panel-nested-border-color)}.edoc__panel .edoc__panel .edoc__panel{background-color:var(--k247-panel-nested-nested-bg);border:1px solid var(--k247-panel-nested-nested-border-color)}.edoc__panel .edoc__panel--blue{background-color:var(--k247-panel-blue-bg)}.edoc__panel--transition-opacity{-webkit-transition:opacity .5s;transition:opacity .5s}.edoc__panel--collapsed{opacity:0}.edoc__panel--expanded{opacity:1}.edoc__panel--no-border{border:none!important}.edoc__panel--white{background-color:#fff!important}.edoc__panel--blue{background-color:var(--k247-panel-blue-bg)!important}.edoc__panel--light-blue{background-color:#f8fcfe!important}.edoc__panel__title{background:transparent;border:0;display:block;min-height:43px;overflow:hidden;padding:0 50px 20px 20px;position:relative;width:100%}.edoc__panel__title,.edoc__panel__title label{color:var(--k247-panel-text-color);font-size:18px;font-stretch:normal;font-style:normal;font-weight:900;letter-spacing:normal;line-height:1.28;text-align:left}.edoc__panel__title label{width:auto}.edoc__panel__title--no-padding{padding:0 0 20px}.edoc__panel__title--collapsible:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;bottom:0;content:"";display:inline-block;display:-webkit-box;display:-ms-flexbox;display:flex;font-family:bud_basis;font-size:25px;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;position:absolute;right:20px;text-align:center;text-decoration:inherit;text-transform:none;top:0;width:1em;width:auto}.edoc__panel__title--collapsible:hover{cursor:pointer}.edoc__panel__title--chevron-down:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"";display:inline-block;font-family:bud_basis;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;text-align:center;text-decoration:inherit;text-transform:none;width:1em}.edoc__panel__content{padding:0 20px 20px}.edoc__panel__content--no-padding{padding:0}.edoc__panel__content--no-padding>div{overflow:hidden;padding-left:0;padding-right:0}.edoc__modal{background:rgba(0,0,0,.5);bottom:0;display:none;left:0;padding-top:100px;position:fixed;right:0;top:0;z-index:3}.edoc__modal--payment{overflow:auto}.edoc__modal__content{margin:60px auto;position:relative;width:90%}@media screen and (min-width:992px){.edoc__modal__content{width:600px}}.edoc__modal__content--payment{background:#fff;margin:0 auto}.edoc__modal__button{background:transparent;border:0;font-weight:700;position:absolute;right:13px;top:7px}.edoc__timeout-message{font-size:20px}.edoc__mt-15{margin-top:15px!important}.edoc__mt-20{margin-top:20px!important}.edoc__mt-30{margin-top:30px!important}.edoc__mr-0{margin-right:0!important}.edoc__mr-5{margin-right:5px!important}.edoc__mr-10{margin-right:10px!important}@media screen and (min-width:992px){.edoc__mr-md-10{margin-right:10px!important}}.edoc__mr-20{margin-right:20px!important}@media screen and (min-width:992px){.edoc__mr-md-20{margin-right:20px!important}}.edoc__mr-30{margin-right:30px!important}.edoc__ml-10{margin-left:10px!important}.edoc__mb-0{margin-bottom:0!important}.edoc__mb-5{margin-bottom:5px!important}.edoc__mb-10{margin-bottom:10px!important}.edoc__mb-20{margin-bottom:20px!important}.edoc__mb-30{margin-bottom:30px!important}.edoc__mb-40{margin-bottom:40px!important}.edoc__mb-50{margin-bottom:50px!important}.edoc__mb-60{margin-bottom:60px!important}.edoc__pl-5{padding-left:5px!important}.edoc__pb-60{padding-bottom:60px!important}.clear-both{clear:both!important}.less-padding{padding:0 5px}.space-top{margin-top:30px}.edoc__full-width{width:100%!important}.edoc__width-180{width:180px!important}.edoc__text-bold{font-weight:700!important}.edoc__text-italic{font-style:italic!important}.edoc__text-underline{text-decoration:underline!important}.edoc__white-space__pre-line{white-space:pre-line!important}.edoc__white-space__nowrap{white-space:nowrap!important}.edoc__text-ellipsis{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.edoc__text-center{text-align:center!important}.edoc__text-right{text-align:right!important}.no-opacity{opacity:1!important}.edoc__d-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.edoc__justify-content-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.edoc__justify-content-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.edoc__align-items-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.edoc__align-items-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.edoc__d-none{display:none!important}.edoc__d-block{display:block!important}.edoc__d-inline-block{display:inline-block!important}@media screen and (min-width:992px){.edoc__d-md-inline{display:inline!important}}.edoc__height-110{height:110px!important}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}[data-edoc-uitype=offset]{margin:0!important;padding:0!important}
.dropzone,.dropzone *{box-sizing:border-box}.dropzone{position:relative}.dropzone .dz-preview{display:inline-block;margin:.5em;position:relative;width:120px}.dropzone .dz-preview .dz-progress{border:1px solid #aaa;display:block;height:15px}.dropzone .dz-preview .dz-progress .dz-upload{background:green;display:block;height:100%;width:0}.dropzone .dz-preview .dz-error-message{color:red;display:none}.dropzone .dz-preview.dz-error .dz-error-mark,.dropzone .dz-preview.dz-error .dz-error-message,.dropzone .dz-preview.dz-success .dz-success-mark{display:block}.dropzone .dz-preview .dz-error-mark,.dropzone .dz-preview .dz-success-mark{display:none;height:58px;left:30px;left:50%;margin-left:-27px;position:absolute;top:30px;width:54px}
@keyframes passing-through{0%{opacity:0;transform:translateY(40px)}30%,70%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(-40px)}}@keyframes slide-in{0%{opacity:0;transform:translateY(40px)}30%{opacity:1;transform:translateY(0)}}@keyframes pulse{0%{transform:scale(1)}10%{transform:scale(1.1)}20%{transform:scale(1)}}.dropzone,.dropzone *{box-sizing:border-box}.dropzone{background:#fff;border:2px solid rgba(0,0,0,.3);min-height:150px;padding:20px}.dropzone.dz-clickable{cursor:pointer}.dropzone.dz-clickable *{cursor:default}.dropzone.dz-clickable .dz-message,.dropzone.dz-clickable .dz-message *{cursor:pointer}.dropzone.dz-started .dz-message{display:none}.dropzone.dz-drag-hover{border-style:solid}.dropzone.dz-drag-hover .dz-message{opacity:.5}.dropzone .dz-message{margin:2em 0;text-align:center}.dropzone .dz-message .dz-button{background:none;border:none;color:inherit;cursor:pointer;font:inherit;outline:inherit;padding:0}.dropzone .dz-preview{display:inline-block;margin:16px;min-height:100px;position:relative;vertical-align:top}.dropzone .dz-preview:hover{z-index:1000}.dropzone .dz-preview.dz-file-preview .dz-image{background:#999;background:linear-gradient(180deg,#eee,#ddd);border-radius:20px}.dropzone .dz-preview.dz-file-preview .dz-details{opacity:1}.dropzone .dz-preview.dz-image-preview{background:#fff}.dropzone .dz-preview.dz-image-preview .dz-details{transition:opacity .2s linear}.dropzone .dz-preview .dz-remove{border:none;cursor:pointer;display:block;font-size:14px;text-align:center}.dropzone .dz-preview .dz-remove:hover{text-decoration:underline}.dropzone .dz-preview:hover .dz-details{opacity:1}.dropzone .dz-preview .dz-details{color:rgba(0,0,0,.9);font-size:13px;left:0;line-height:150%;max-width:100%;min-width:100%;opacity:0;padding:2em 1em;position:absolute;text-align:center;top:0;z-index:20}.dropzone .dz-preview .dz-details .dz-size{font-size:16px;margin-bottom:1em}.dropzone .dz-preview .dz-details .dz-filename{white-space:nowrap}.dropzone .dz-preview .dz-details .dz-filename:hover span{background-color:hsla(0,0%,100%,.8);border:1px solid hsla(0,0%,78%,.8)}.dropzone .dz-preview .dz-details .dz-filename:not(:hover){overflow:hidden;text-overflow:ellipsis}.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span{border:1px solid transparent}.dropzone .dz-preview .dz-details .dz-filename span,.dropzone .dz-preview .dz-details .dz-size span{background-color:hsla(0,0%,100%,.4);border-radius:3px;padding:0 .4em}.dropzone .dz-preview:hover .dz-image img{filter:blur(8px);transform:scale(1.05)}.dropzone .dz-preview .dz-image{border-radius:20px;display:block;height:120px;overflow:hidden;position:relative;width:120px;z-index:10}.dropzone .dz-preview .dz-image img{display:block}.dropzone .dz-preview.dz-success .dz-success-mark{animation:passing-through 3s cubic-bezier(.77,0,.175,1)}.dropzone .dz-preview.dz-error .dz-error-mark{animation:slide-in 3s cubic-bezier(.77,0,.175,1);opacity:1}.dropzone .dz-preview .dz-error-mark,.dropzone .dz-preview .dz-success-mark{display:block;left:50%;margin-left:-27px;margin-top:-27px;opacity:0;pointer-events:none;position:absolute;top:50%;z-index:500}.dropzone .dz-preview .dz-error-mark svg,.dropzone .dz-preview .dz-success-mark svg{display:block;height:54px;width:54px}.dropzone .dz-preview.dz-processing .dz-progress{opacity:1;transition:all .2s linear}.dropzone .dz-preview.dz-complete .dz-progress{opacity:0;transition:opacity .4s ease-in}.dropzone .dz-preview:not(.dz-processing) .dz-progress{animation:pulse 6s ease infinite}.dropzone .dz-preview .dz-progress{background:hsla(0,0%,100%,.9);border-radius:8px;height:16px;left:50%;margin-left:-40px;margin-top:-8px;opacity:1;overflow:hidden;pointer-events:none;position:absolute;top:50%;-webkit-transform:scale(1);width:80px;z-index:1000}.dropzone .dz-preview .dz-progress .dz-upload{background:#333;background:linear-gradient(180deg,#666,#444);bottom:0;left:0;position:absolute;top:0;transition:width .3s ease-in-out;width:0}.dropzone .dz-preview.dz-error .dz-error-message{display:block}.dropzone .dz-preview.dz-error:hover .dz-error-message{opacity:1;pointer-events:auto}.dropzone .dz-preview .dz-error-message{background:#be2626;background:linear-gradient(180deg,#be2626,#a92222);border-radius:8px;color:#fff;display:block;display:none;font-size:13px;left:-10px;opacity:0;padding:.5em 1.2em;pointer-events:none;position:absolute;top:130px;transition:opacity .3s ease;width:140px;z-index:1000}.dropzone .dz-preview .dz-error-message:after{border-bottom:6px solid #be2626;border-left:6px solid transparent;border-right:6px solid transparent;content:"";height:0;left:64px;position:absolute;top:-6px;width:0}
/*!
 * Budicon v2.0.1 (https://budicon.co)
 * Author: Budi Harto Tanrim (https://dribbble.com/buditanrim)
 * License: https://budicon.co/license
 */@font-face{font-family:budicon-classic;font-style:normal;font-weight:400;src:url(fonts/budicon-classic..eot);src:url(fonts/budicon-classic..eot#iefix) format("embedded-opentype"),url(fonts/budicon-classic..ttf) format("truetype"),url(fonts/budicon-classic..woff) format("woff"),url(images/budicon-classic..svg#budicon-classic) format("svg")}.budicon,i{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:budicon-classic!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.budicon-apron:before{content:""}.budicon-bbq:before{content:""}.budicon-blower:before{content:""}.budicon-butcher-knife:before{content:""}.budicon-coffee-maker:before{content:""}.budicon-coffee-press:before{content:""}.budicon-exhaust:before{content:""}.budicon-food-cover:before{content:""}.budicon-fridge:before{content:""}.budicon-hand-mixer:before{content:""}.budicon-heat:before{content:""}.budicon-high-pot:before{content:""}.budicon-hot-pot:before{content:""}.budicon-ingredients:before{content:""}.budicon-juice-container:before{content:""}.budicon-juicer_1:before{content:""}.budicon-juicer:before{content:""}.budicon-kitchen-glove:before{content:""}.budicon-kitchen-shaver:before{content:""}.budicon-knife:before{content:""}.budicon-large-pot:before{content:""}.budicon-low-pot:before{content:""}.budicon-measuring-cup:before{content:""}.budicon-microwave:before{content:""}.budicon-mixer:before{content:""}.budicon-outdoor-bbq:before{content:""}.budicon-pomodoro:before{content:""}.budicon-rice-cooker:before{content:""}.budicon-roller:before{content:""}.budicon-sauce-pan-hot:before{content:""}.budicon-sauce-pan:before{content:""}.budicon-spatula:before{content:""}.budicon-stand-mixer:before{content:""}.budicon-stone-oven:before{content:""}.budicon-taste:before{content:""}.budicon-tea-pot:before{content:""}.budicon-temperature-controller:before{content:""}.budicon-tissue:before{content:""}.budicon-toaster:before{content:""}.budicon-trash-bin:before{content:""}.budicon-weigher:before{content:""}.budicon-blowing-wind:before{content:""}.budicon-cloud:before{content:""}.budicon-cloudy-night:before{content:""}.budicon-cloudy-day:before{content:""}.budicon-day:before{content:""}.budicon-decrease-temperature:before{content:""}.budicon-drizzling-day:before{content:""}.budicon-drizzling-night:before{content:""}.budicon-drizzling:before{content:""}.budicon-flake-day:before{content:""}.budicon-flake-night:before{content:""}.budicon-flake:before{content:""}.budicon-gloomy-day:before{content:""}.budicon-gloomy-night:before{content:""}.budicon-gloomy:before{content:""}.budicon-half-moon:before{content:""}.budicon-heavy-rain-day:before{content:""}.budicon-heavy-rain-night:before{content:""}.budicon-heavy-rain:before{content:""}.budicon-high-temperature:before{content:""}.budicon-increase-temperature:before{content:""}.budicon-lighting-day:before{content:""}.budicon-lighting-night:before{content:""}.budicon-lighting:before{content:""}.budicon-low-temperature:before{content:""}.budicon-medium-temperature:before{content:""}.budicon-melting-point:before{content:""}.budicon-moon-reflection:before{content:""}.budicon-moonlight:before{content:""}.budicon-night:before{content:""}.budicon-pouring-day:before{content:""}.budicon-pouring-night:before{content:""}.budicon-pouring:before{content:""}.budicon-rain:before{content:""}.budicon-raining-day:before{content:""}.budicon-raining-night:before{content:""}.budicon-snowflakes:before{content:""}.budicon-snowing-day:before{content:""}.budicon-snowing-night:before{content:""}.budicon-snowing:before{content:""}.budicon-sun-down:before{content:""}.budicon-sun-reflection:before{content:""}.budicon-sun-set:before{content:""}.budicon-sun-up:before{content:""}.budicon-three-quarter-moon:before{content:""}.budicon-typhoon:before{content:""}.budicon-windometer:before{content:""}.budicon-windy-day:before{content:""}.budicon-windy-night:before{content:""}.budicon-windy:before{content:""}.budicon-bottombar:before{content:""}.budicon-card-stack-view:before{content:""}.budicon-collapse-bottom:before{content:""}.budicon-collapse-left:before{content:""}.budicon-collapse-right:before{content:""}.budicon-collapse-top:before{content:""}.budicon-feature-block:before{content:""}.budicon-inside-element:before{content:""}.budicon-layout-third-vertical:before{content:""}.budicon-layout-third-view:before{content:""}.budicon-layout-two-view:before{content:""}.budicon-one-third:before{content:""}.budicon-sidebar-left-content:before{content:""}.budicon-sidebar-left:before{content:""}.budicon-sidebar-right-content:before{content:""}.budicon-sidebar-right:before{content:""}.budicon-third-one:before{content:""}.budicon-topbar:before{content:""}.budicon-two-grids:before{content:""}.budicon-two-thirds:before{content:""}.budicon-alert-sign-a:before{content:""}.budicon-alert-sign:before{content:""}.budicon-app-notification:before{content:""}.budicon-appear-password:before{content:""}.budicon-block-sign:before{content:""}.budicon-bookmark-ribbon:before{content:""}.budicon-card-slides:before{content:""}.budicon-check-ui:before{content:""}.budicon-checkboxes:before{content:""}.budicon-cloud-download:before{content:""}.budicon-cloud-upload:before{content:""}.budicon-cmd-sign:before{content:""}.budicon-cog:before{content:""}.budicon-collapse-list:before{content:""}.budicon-cross-sign-square:before{content:""}.budicon-cross-sign:before{content:""}.budicon-cross-ui:before{content:""}.budicon-dashboard:before{content:""}.budicon-dislike:before{content:""}.budicon-download-queue:before{content:""}.budicon-exit-fullscreen:before{content:""}.budicon-expand-list:before{content:""}.budicon-expand-view:before{content:""}.budicon-filter:before{content:""}.budicon-fullscreen:before{content:""}.budicon-hamburger-ui-a:before{content:""}.budicon-hamburger-ui-b:before{content:""}.budicon-hamburger-ui:before{content:""}.budicon-heart:before{content:""}.budicon-hide-password:before{content:""}.budicon-home-a:before{content:""}.budicon-home:before{content:""}.budicon-internal-link:before{content:""}.budicon-kebab-ui:before{content:""}.budicon-life-buoy:before{content:""}.budicon-like:before{content:""}.budicon-loading-sign:before{content:""}.budicon-lock:before{content:""}.budicon-login:before{content:""}.budicon-logout:before{content:""}.budicon-meatball-ui:before{content:""}.budicon-mic-ui-mute:before{content:""}.budicon-mic-ui:before{content:""}.budicon-minimize-view:before{content:""}.budicon-minus-sign-square:before{content:""}.budicon-minus-sign:before{content:""}.budicon-minus-ui:before{content:""}.budicon-monitor-resolution:before{content:""}.budicon-move-to-bottom:before{content:""}.budicon-move-to-top:before{content:""}.budicon-notification-a:before{content:""}.budicon-notification:before{content:""}.budicon-outgoing-link:before{content:""}.budicon-plus-sign-square:before{content:""}.budicon-plus-sign:before{content:""}.budicon-plus-ui:before{content:""}.budicon-power-sign:before{content:""}.budicon-previouse-queue:before{content:""}.budicon-print-a:before{content:""}.budicon-print:before{content:""}.budicon-radar:before{content:""}.budicon-refresh-ui:before{content:""}.budicon-reload-ui:before{content:""}.budicon-reply-a:before{content:""}.budicon-reply-all:before{content:""}.budicon-reply:before{content:""}.budicon-search-a:before{content:""}.budicon-search-cross-a:before{content:""}.budicon-search-cross:before{content:""}.budicon-search-list:before{content:""}.budicon-search-minus-a:before{content:""}.budicon-search-minus:before{content:""}.budicon-search-plus-a:before{content:""}.budicon-search-plus:before{content:""}.budicon-search-tick-a:before{content:""}.budicon-search-tick:before{content:""}.budicon-search-view-minus:before{content:""}.budicon-search-view-plus:before{content:""}.budicon-search-view:before{content:""}.budicon-search:before{content:""}.budicon-share:before{content:""}.budicon-shortcut-list:before{content:""}.budicon-star:before{content:""}.budicon-stars:before{content:""}.budicon-tick-sign-square:before{content:""}.budicon-tick-sign:before{content:""}.budicon-trash-cancel:before{content:""}.budicon-trash-ui:before{content:""}.budicon-trash:before{content:""}.budicon-ui-compose-a:before{content:""}.budicon-ui-compose:before{content:""}.budicon-ui-flag-a:before{content:""}.budicon-ui-flag-b:before{content:""}.budicon-ui-flag:before{content:""}.budicon-ui-speed:before{content:""}.budicon-unlock:before{content:""}.budicon-upload-queue:before{content:""}.budicon-uploading-ui:before{content:""}.budicon-view:before{content:""}.budicon-wide-fullscreen:before{content:""}.budicon-alignment-center:before{content:""}.budicon-alignment-left:before{content:""}.budicon-alignment-right:before{content:""}.budicon-anchor-link:before{content:""}.budicon-ascending-order:before{content:""}.budicon-asterisk:before{content:""}.budicon-change-order:before{content:""}.budicon-check-done:before{content:""}.budicon-columns:before{content:""}.budicon-compose:before{content:""}.budicon-descending-order:before{content:""}.budicon-digital-keyboard:before{content:""}.budicon-document-page:before{content:""}.budicon-forward-page:before{content:""}.budicon-front-page:before{content:""}.budicon-grid-view:before{content:""}.budicon-image-caption:before{content:""}.budicon-indent-left:before{content:""}.budicon-indent-right:before{content:""}.budicon-justify-center:before{content:""}.budicon-justify-left:before{content:""}.budicon-justify-right:before{content:""}.budicon-keyboard-appear:before{content:""}.budicon-keyboard-down:before{content:""}.budicon-media-player-page:before{content:""}.budicon-page-blank:before{content:""}.budicon-page-block:before{content:""}.budicon-page-cross:before{content:""}.budicon-page-lock:before{content:""}.budicon-page-mark:before{content:""}.budicon-page-minus:before{content:""}.budicon-page-plus:before{content:""}.budicon-page-tick:before{content:""}.budicon-pen-add:before{content:""}.budicon-pen-cross:before{content:""}.budicon-pen-minus:before{content:""}.budicon-pen-tick:before{content:""}.budicon-pen-writing:before{content:""}.budicon-pen:before{content:""}.budicon-pencil-writing:before{content:""}.budicon-reading-list:before{content:""}.budicon-redo:before{content:""}.budicon-search-page:before{content:""}.budicon-text-box:before{content:""}.budicon-undo:before{content:""}.budicon-vertical-align-bottom:before{content:""}.budicon-vertical-align-top:before{content:""}.budicon-vertical-allign-middle:before{content:""}.budicon-writing-link:before{content:""}.budicon-ambulance:before{content:""}.budicon-baby:before{content:""}.budicon-bandage:before{content:""}.budicon-blood-donation:before{content:""}.budicon-blood-transfusion:before{content:""}.budicon-blood-type:before{content:""}.budicon-blood:before{content:""}.budicon-body-weigher:before{content:""}.budicon-cardio-record:before{content:""}.budicon-dialysis:before{content:""}.budicon-dna:before{content:""}.budicon-eye-chart:before{content:""}.budicon-eye-sight:before{content:""}.budicon-handicap:before{content:""}.budicon-hearing:before{content:""}.budicon-heart-monitor:before{content:""}.budicon-heart-rate:before{content:""}.budicon-hiv-ribbon:before{content:""}.budicon-hospital-sign:before{content:""}.budicon-hospital:before{content:""}.budicon-infusion:before{content:""}.budicon-injection:before{content:""}.budicon-lab-liquid:before{content:""}.budicon-lab-test:before{content:""}.budicon-lab:before{content:""}.budicon-medical-assistance:before{content:""}.budicon-medical-bag:before{content:""}.budicon-medical-case:before{content:""}.budicon-medical-liquid:before{content:""}.budicon-medical-note:before{content:""}.budicon-medical-record:before{content:""}.budicon-medicine:before{content:""}.budicon-online-medical:before{content:""}.budicon-pills:before{content:""}.budicon-potions:before{content:""}.budicon-scale:before{content:""}.budicon-sperm:before{content:""}.budicon-sthethoscope:before{content:""}.budicon-themometer:before{content:""}.budicon-x-ray:before{content:""}.budicon-aperture:before{content:""}.budicon-area-focus:before{content:""}.budicon-brightness-a:before{content:""}.budicon-brightness:before{content:""}.budicon-camera-scan:before{content:""}.budicon-camera-timer:before{content:""}.budicon-camera-wifi:before{content:""}.budicon-camera:before{content:""}.budicon-cityscape:before{content:""}.budicon-crop:before{content:""}.budicon-dslr-menu:before{content:""}.budicon-exposure-compensation:before{content:""}.budicon-exposure:before{content:""}.budicon-film-clip:before{content:""}.budicon-flashlight:before{content:""}.budicon-flip-horizontal:before{content:""}.budicon-flip-vertical:before{content:""}.budicon-focus-point:before{content:""}.budicon-grid:before{content:""}.budicon-half-exposure:before{content:""}.budicon-landscape:before{content:""}.budicon-live-video:before{content:""}.budicon-pocket-camera:before{content:""}.budicon-polaroid-stack:before{content:""}.budicon-polaroid:before{content:""}.budicon-red-eye-detection:before{content:""}.budicon-roll-film:before{content:""}.budicon-rotate-camera:before{content:""}.budicon-rotate-image:before{content:""}.budicon-sharpen:before{content:""}.budicon-single-point-focus:before{content:""}.budicon-slideshow-photo:before{content:""}.budicon-smile-detection:before{content:""}.budicon-video-cam-a:before{content:""}.budicon-video-cam:before{content:""}.budicon-video-recorder:before{content:""}.budicon-vintage-camera:before{content:""}.budicon-bottom-aligned:before{content:""}.budicon-center-aligned:before{content:""}.budicon-clipboard:before{content:""}.budicon-design-compass:before{content:""}.budicon-doodle:before{content:""}.budicon-eraser:before{content:""}.budicon-horizontal-distribute:before{content:""}.budicon-left-aligned:before{content:""}.budicon-middle-aligned:before{content:""}.budicon-prototype:before{content:""}.budicon-right-aligned:before{content:""}.budicon-ruler:before{content:""}.budicon-top-aligned:before{content:""}.budicon-vector-clipboard:before{content:""}.budicon-vector-editing:before{content:""}.budicon-vertical-distribute:before{content:""}.budicon-alien:before{content:""}.budicon-astronout:before{content:""}.budicon-comet:before{content:""}.budicon-earth:before{content:""}.budicon-galaxy-hole:before{content:""}.budicon-galaxy:before{content:""}.budicon-jupiter:before{content:""}.budicon-lunar-flag:before{content:""}.budicon-mars:before{content:""}.budicon-observatory:before{content:""}.budicon-radar2:before{content:""}.budicon-raygun:before{content:""}.budicon-research:before{content:""}.budicon-robot:before{content:""}.budicon-rocket:before{content:""}.budicon-satellite:before{content:""}.budicon-saturn:before{content:""}.budicon-science:before{content:""}.budicon-space-helmet:before{content:""}.budicon-space-house:before{content:""}.budicon-space-shuttle:before{content:""}.budicon-spaceship:before{content:""}.budicon-telescope:before{content:""}.budicon-ufo:before{content:""}.budicon-search-task:before{content:""}.budicon-task-alert:before{content:""}.budicon-task-block:before{content:""}.budicon-task-cross:before{content:""}.budicon-task-download:before{content:""}.budicon-task-favorite:before{content:""}.budicon-task-information:before{content:""}.budicon-task-list:before{content:""}.budicon-task-lock:before{content:""}.budicon-task-love:before{content:""}.budicon-task-minus:before{content:""}.budicon-task-plus:before{content:""}.budicon-task-question:before{content:""}.budicon-task-scheduled:before{content:""}.budicon-task-shared:before{content:""}.budicon-task-tick:before{content:""}.budicon-task-upload:before{content:""}.budicon-task:before{content:""}.budicon-d-glasses:before{content:""}.budicon-airdrop:before{content:""}.budicon-android-landscape:before{content:""}.budicon-android-wifi:before{content:""}.budicon-android:before{content:""}.budicon-bluetooth-circle:before{content:""}.budicon-bluetooth:before{content:""}.budicon-browser-cross:before{content:""}.budicon-browser-minus:before{content:""}.budicon-browser-plus:before{content:""}.budicon-browser-tick:before{content:""}.budicon-browser:before{content:""}.budicon-cable-cord:before{content:""}.budicon-cardboard:before{content:""}.budicon-charging:before{content:""}.budicon-chrome-cast:before{content:""}.budicon-cloud-server:before{content:""}.budicon-desktop-smartphone:before{content:""}.budicon-desktop-wifi:before{content:""}.budicon-desktop:before{content:""}.budicon-development-bug:before{content:""}.budicon-drone:before{content:""}.budicon-dvd-i-cable:before{content:""}.budicon-flashlight2:before{content:""}.budicon-game-console:before{content:""}.budicon-gameboy:before{content:""}.budicon-gaming-mouse:before{content:""}.budicon-google-phone-landscape:before{content:""}.budicon-google-phone:before{content:""}.budicon-hdmi-cable:before{content:""}.budicon-hosting-server:before{content:""}.budicon-house-cloud:before{content:""}.budicon-house-network:before{content:""}.budicon-internet-network:before{content:""}.budicon-iphone-landscape:before{content:""}.budicon-iphone-wifi:before{content:""}.budicon-iphone:before{content:""}.budicon-keyboard-a:before{content:""}.budicon-keyboard:before{content:""}.budicon-laptop-smartphone:before{content:""}.budicon-laptop-wifi:before{content:""}.budicon-laptop:before{content:""}.budicon-magic-mouse:before{content:""}.budicon-magnet:before{content:""}.budicon-mobile-earphone:before{content:""}.budicon-mobile-photo-scan:before{content:""}.budicon-modem-externder:before{content:""}.budicon-modem:before{content:""}.budicon-nintendo-console:before{content:""}.budicon-processor-chip:before{content:""}.budicon-projector:before{content:""}.budicon-remote-control:before{content:""}.budicon-search-browser:before{content:""}.budicon-security-guard:before{content:""}.budicon-signal-tower:before{content:""}.budicon-television:before{content:""}.budicon-usb-cable:before{content:""}.budicon-webcam:before{content:""}.budicon-world-connection:before{content:""}.budicon-world-network:before{content:""}.budicon-note-alert:before{content:""}.budicon-note-block:before{content:""}.budicon-note-cross:before{content:""}.budicon-note-download:before{content:""}.budicon-note-favorite:before{content:""}.budicon-note-information:before{content:""}.budicon-note-lock:before{content:""}.budicon-note-love:before{content:""}.budicon-note-minus:before{content:""}.budicon-note-plus:before{content:""}.budicon-note-quesrion:before{content:""}.budicon-note-search:before{content:""}.budicon-note-tick:before{content:""}.budicon-note-upload:before{content:""}.budicon-note:before{content:""}.budicon-notes-alert:before{content:""}.budicon-notes-blank:before{content:""}.budicon-notes-block:before{content:""}.budicon-notes-cross:before{content:""}.budicon-notes-download:before{content:""}.budicon-notes-favorite:before{content:""}.budicon-notes-information:before{content:""}.budicon-notes-list-a:before{content:""}.budicon-notes-list:before{content:""}.budicon-notes-lock:before{content:""}.budicon-notes-love:before{content:""}.budicon-notes-minus:before{content:""}.budicon-notes-plus:before{content:""}.budicon-notes-question:before{content:""}.budicon-notes-search:before{content:""}.budicon-notes-tick:before{content:""}.budicon-notes-upload:before{content:""}.budicon-scheduled-note:before{content:""}.budicon-scheduled-notes:before{content:""}.budicon-shared-note:before{content:""}.budicon-shared-notes:before{content:""}.budicon-announcement:before{content:""}.budicon-at-symbol:before{content:""}.budicon-broadcast:before{content:""}.budicon-call:before{content:""}.budicon-chat-alert:before{content:""}.budicon-chat-block:before{content:""}.budicon-chat-cross:before{content:""}.budicon-chat-download:before{content:""}.budicon-chat-favorite:before{content:""}.budicon-chat-information:before{content:""}.budicon-chat-lock:before{content:""}.budicon-chat-love:before{content:""}.budicon-chat-minus:before{content:""}.budicon-chat-plus:before{content:""}.budicon-chat-question:before{content:""}.budicon-chat-scheduled:before{content:""}.budicon-chat-thread:before{content:""}.budicon-chat-tick:before{content:""}.budicon-chat-upload:before{content:""}.budicon-chat:before{content:""}.budicon-connection:before{content:""}.budicon-conversation:before{content:""}.budicon-dropped-cap:before{content:""}.budicon-email-alert:before{content:""}.budicon-email-block:before{content:""}.budicon-email-cross:before{content:""}.budicon-email-download:before{content:""}.budicon-email-favorite:before{content:""}.budicon-email-forward:before{content:""}.budicon-email-front-envelope:before{content:""}.budicon-email-information:before{content:""}.budicon-email-lock:before{content:""}.budicon-email-love:before{content:""}.budicon-email-minus:before{content:""}.budicon-email-plus:before{content:""}.budicon-email-tick:before{content:""}.budicon-email-undo:before{content:""}.budicon-email-upload:before{content:""}.budicon-email:before{content:""}.budicon-happy-chat:before{content:""}.budicon-happy-sticker:before{content:""}.budicon-incoming-call:before{content:""}.budicon-international-call:before{content:""}.budicon-mailbox:before{content:""}.budicon-mobile-chat:before{content:""}.budicon-mobile-email:before{content:""}.budicon-numpad:before{content:""}.budicon-outgoing-call:before{content:""}.budicon-phone-block:before{content:""}.budicon-phone-connection:before{content:""}.budicon-phone-directed:before{content:""}.budicon-phone-forward:before{content:""}.budicon-phone-hold:before{content:""}.budicon-phone-lock:before{content:""}.budicon-phone-love:before{content:""}.budicon-phone-voicemail:before{content:""}.budicon-phone:before{content:""}.budicon-quill-pen:before{content:""}.budicon-sad-chat:before{content:""}.budicon-sad-sticker:before{content:""}.budicon-search-chat:before{content:""}.budicon-search-email:before{content:""}.budicon-sending-message:before{content:""}.budicon-shared-chat:before{content:""}.budicon-shared-email:before{content:""}.budicon-signal-source:before{content:""}.budicon-signal:before{content:""}.budicon-sms:before{content:""}.budicon-spam:before{content:""}.budicon-stickers:before{content:""}.budicon-typing-chat:before{content:""}.budicon-video-chat:before{content:""}.budicon-voice-mail:before{content:""}.budicon-web-chat:before{content:""}.budicon-web-sms:before{content:""}.budicon-abc-blocks:before{content:""}.budicon-baby-bottle:before{content:""}.budicon-baby-dot:before{content:""}.budicon-baby-jumper:before{content:""}.budicon-balloon:before{content:""}.budicon-birthday-cake:before{content:""}.budicon-birthday-party:before{content:""}.budicon-castle-toy:before{content:""}.budicon-diaper:before{content:""}.budicon-girl-clothes:before{content:""}.budicon-gun-toy:before{content:""}.budicon-kid-bottle-love:before{content:""}.budicon-kid-bottle:before{content:""}.budicon-kite:before{content:""}.budicon-shape-blocks:before{content:""}.budicon-teddy-bear:before{content:""}.budicon-thermometer:before{content:""}.budicon-train-toy:before{content:""}.budicon-aluminum-bag:before{content:""}.budicon-brown-envelope:before{content:""}.budicon-business-checklist:before{content:""}.budicon-business-growth:before{content:""}.budicon-business-note:before{content:""}.budicon-business-performance:before{content:""}.budicon-business-plan:before{content:""}.budicon-business-strategy:before{content:""}.budicon-business-target:before{content:""}.budicon-calculator:before{content:""}.budicon-cheque:before{content:""}.budicon-deal:before{content:""}.budicon-duct-tape:before{content:""}.budicon-file-storage:before{content:""}.budicon-filing:before{content:""}.budicon-office-bag-a:before{content:""}.budicon-office-bag-b:before{content:""}.budicon-office-bag-c:before{content:""}.budicon-office-bag:before{content:""}.budicon-office-stationary:before{content:""}.budicon-organization:before{content:""}.budicon-photocopy-machine:before{content:""}.budicon-presentation-deck:before{content:""}.budicon-presentation:before{content:""}.budicon-project-folder:before{content:""}.budicon-safe-deposit:before{content:""}.budicon-shredder:before{content:""}.budicon-speech:before{content:""}.budicon-stapler:before{content:""}.budicon-tie:before{content:""}.budicon-air-conditioner:before{content:""}.budicon-armchair:before{content:""}.budicon-bathup:before{content:""}.budicon-bed-lamp:before{content:""}.budicon-bed-side-a:before{content:""}.budicon-bed-side-table:before{content:""}.budicon-bed-side:before{content:""}.budicon-bed:before{content:""}.budicon-big-dresser:before{content:""}.budicon-book-cabinet:before{content:""}.budicon-cabinet:before{content:""}.budicon-candle:before{content:""}.budicon-chest:before{content:""}.budicon-closet:before{content:""}.budicon-dining-chair:before{content:""}.budicon-door:before{content:""}.budicon-dresser-table:before{content:""}.budicon-dresser:before{content:""}.budicon-dryer:before{content:""}.budicon-fireplace:before{content:""}.budicon-flower:before{content:""}.budicon-futon:before{content:""}.budicon-hanging-lamp:before{content:""}.budicon-home-alert:before{content:""}.budicon-home-safe:before{content:""}.budicon-hutch:before{content:""}.budicon-indoor-plant:before{content:""}.budicon-indoor-seat:before{content:""}.budicon-lamp:before{content:""}.budicon-lightbulb:before{content:""}.budicon-long-desk:before{content:""}.budicon-low-cabinet:before{content:""}.budicon-open-door:before{content:""}.budicon-outdoor-seat:before{content:""}.budicon-plant:before{content:""}.budicon-rocking-chair:before{content:""}.budicon-round-armchair:before{content:""}.budicon-round-chair:before{content:""}.budicon-showcase-desk:before{content:""}.budicon-shower:before{content:""}.budicon-sink:before{content:""}.budicon-smart-lamp:before{content:""}.budicon-sofa:before{content:""}.budicon-standing-lamp:before{content:""}.budicon-storage-desk:before{content:""}.budicon-sunflower:before{content:""}.budicon-table-lamp:before{content:""}.budicon-tv-desk:before{content:""}.budicon-vintage-bed-lamp:before{content:""}.budicon-vintage-chest:before{content:""}.budicon-vintage-futon:before{content:""}.budicon-vintage-sofa:before{content:""}.budicon-wardrobe:before{content:""}.budicon-washer:before{content:""}.budicon-windsor-chair:before{content:""}.budicon-wingback-chair:before{content:""}.budicon-work-desk:before{content:""}.budicon-archery:before{content:""}.budicon-badminton:before{content:""}.budicon-baseball-a:before{content:""}.budicon-baseball:before{content:""}.budicon-basketball-field:before{content:""}.budicon-basketball-ring:before{content:""}.budicon-basketball:before{content:""}.budicon-boxing:before{content:""}.budicon-canoe:before{content:""}.budicon-champion:before{content:""}.budicon-commentator:before{content:""}.budicon-crickets:before{content:""}.budicon-diving:before{content:""}.budicon-drinking-bottles:before{content:""}.budicon-dumbell:before{content:""}.budicon-energy-drink:before{content:""}.budicon-energy-pill:before{content:""}.budicon-fencing:before{content:""}.budicon-football-field:before{content:""}.budicon-football:before{content:""}.budicon-formation:before{content:""}.budicon-golf:before{content:""}.budicon-hockey:before{content:""}.budicon-injury:before{content:""}.budicon-king:before{content:""}.budicon-live-sport:before{content:""}.budicon-medication:before{content:""}.budicon-nfl:before{content:""}.budicon-olympic:before{content:""}.budicon-ping-pong:before{content:""}.budicon-racing-flag:before{content:""}.budicon-referee:before{content:""}.budicon-runner-outfit:before{content:""}.budicon-sneakers:before{content:""}.budicon-soccer-ball:before{content:""}.budicon-speed:before{content:""}.budicon-spikes:before{content:""}.budicon-sport-card:before{content:""}.budicon-sumo:before{content:""}.budicon-team-strategy:before{content:""}.budicon-tennis-ball:before{content:""}.budicon-trophy:before{content:""}.budicon-uniform:before{content:""}.budicon-voley-ball:before{content:""}.budicon-volley-ball:before{content:""}.budicon-white-flag:before{content:""}.budicon-apple:before{content:""}.budicon-avocado:before{content:""}.budicon-bacon:before{content:""}.budicon-basil:before{content:""}.budicon-beer:before{content:""}.budicon-bottle-water:before{content:""}.budicon-bowl:before{content:""}.budicon-bubble-tea:before{content:""}.budicon-carrot:before{content:""}.budicon-cheers:before{content:""}.budicon-cherry:before{content:""}.budicon-chinese-food-a:before{content:""}.budicon-chinese-food:before{content:""}.budicon-cocktail:before{content:""}.budicon-coffee-cup:before{content:""}.budicon-corn:before{content:""}.budicon-croissant:before{content:""}.budicon-cupcake:before{content:""}.budicon-donut:before{content:""}.budicon-door-board:before{content:""}.budicon-egg:before{content:""}.budicon-fork-knife:before{content:""}.budicon-fork-spoon:before{content:""}.budicon-french-fries:before{content:""}.budicon-grapes:before{content:""}.budicon-hamburger:before{content:""}.budicon-honey:before{content:""}.budicon-hot-drink:before{content:""}.budicon-hot-tea:before{content:""}.budicon-hotdog:before{content:""}.budicon-ice-cream-cone:before{content:""}.budicon-ice-cream-stick:before{content:""}.budicon-jam:before{content:""}.budicon-ketchup-bottle:before{content:""}.budicon-lemon:before{content:""}.budicon-lettuce:before{content:""}.budicon-mango:before{content:""}.budicon-mayonnaise:before{content:""}.budicon-meal:before{content:""}.budicon-milk-bottle:before{content:""}.budicon-milk:before{content:""}.budicon-noodle-bowl:before{content:""}.budicon-onigiri:before{content:""}.budicon-onion:before{content:""}.budicon-organic-drink:before{content:""}.budicon-pepper:before{content:""}.budicon-pineapple:before{content:""}.budicon-pizza:before{content:""}.budicon-pumpkin:before{content:""}.budicon-ramen:before{content:""}.budicon-salt:before{content:""}.budicon-sandwich:before{content:""}.budicon-sauce-tube:before{content:""}.budicon-sauce:before{content:""}.budicon-soda-can:before{content:""}.budicon-soup-bowl:before{content:""}.budicon-soy-sauce:before{content:""}.budicon-steak:before{content:""}.budicon-strawberry:before{content:""}.budicon-sushi:before{content:""}.budicon-taco:before{content:""}.budicon-tea-cup:before{content:""}.budicon-toast:before{content:""}.budicon-turkey:before{content:""}.budicon-utensil:before{content:""}.budicon-vegetarian:before{content:""}.budicon-watermelon:before{content:""}.budicon-white-bread:before{content:""}.budicon-wine-bottle:before{content:""}.budicon-wine-glass:before{content:""}.budicon-wine:before{content:""}.budicon-backpack:before{content:""}.budicon-barcode:before{content:""}.budicon-bill-cross:before{content:""}.budicon-bill-download:before{content:""}.budicon-bill-lock:before{content:""}.budicon-bill-minus:before{content:""}.budicon-bill-plus:before{content:""}.budicon-bill-tick:before{content:""}.budicon-bill-upload:before{content:""}.budicon-bill:before{content:""}.budicon-bow-tie:before{content:""}.budicon-cart-cross:before{content:""}.budicon-cart-download:before{content:""}.budicon-cart-lock:before{content:""}.budicon-cart-love:before{content:""}.budicon-cart-minus:before{content:""}.budicon-cart-plus:before{content:""}.budicon-cart-search:before{content:""}.budicon-cart-tick:before{content:""}.budicon-cart-upload:before{content:""}.budicon-cart:before{content:""}.budicon-credit-card-a:before{content:""}.budicon-credit-card:before{content:""}.budicon-digital-download:before{content:""}.budicon-digital-upload:before{content:""}.budicon-discount-coupon:before{content:""}.budicon-dollar-paper-a:before{content:""}.budicon-dollar-paper:before{content:""}.budicon-express:before{content:""}.budicon-hiking-backpack:before{content:""}.budicon-invoice:before{content:""}.budicon-jewelry:before{content:""}.budicon-lipstick:before{content:""}.budicon-long-pant:before{content:""}.budicon-market-sign:before{content:""}.budicon-market:before{content:""}.budicon-mastercard:before{content:""}.budicon-membership-card:before{content:""}.budicon-messenger-bag:before{content:""}.budicon-mobile-barcode:before{content:""}.budicon-money-a:before{content:""}.budicon-money:before{content:""}.budicon-packaging:before{content:""}.budicon-parcel:before{content:""}.budicon-price-tag:before{content:""}.budicon-purse:before{content:""}.budicon-receipt:before{content:""}.budicon-search-bill:before{content:""}.budicon-shipping:before{content:""}.budicon-shirt:before{content:""}.budicon-shopping-bag:before{content:""}.budicon-shopping-bags:before{content:""}.budicon-short-pant:before{content:""}.budicon-socks:before{content:""}.budicon-tag-cross:before{content:""}.budicon-tag-minus:before{content:""}.budicon-tag-plus:before{content:""}.budicon-tag-search:before{content:""}.budicon-tag-tick:before{content:""}.budicon-tag:before{content:""}.budicon-underpant:before{content:""}.budicon-upside-sign:before{content:""}.budicon-wallet:before{content:""}.budicon-wishlist:before{content:""}.budicon-branch-folders:before{content:""}.budicon-folder-alert:before{content:""}.budicon-folder-back:before{content:""}.budicon-folder-block:before{content:""}.budicon-folder-cross:before{content:""}.budicon-folder-download:before{content:""}.budicon-folder-favorite:before{content:""}.budicon-folder-information:before{content:""}.budicon-folder-lock:before{content:""}.budicon-folder-love:before{content:""}.budicon-folder-minus:before{content:""}.budicon-folder-plus:before{content:""}.budicon-folder-question:before{content:""}.budicon-folder-sync:before{content:""}.budicon-folder-tick:before{content:""}.budicon-folder-upload:before{content:""}.budicon-folder:before{content:""}.budicon-scheduled-folder:before{content:""}.budicon-search-folder:before{content:""}.budicon-shared-folder:before{content:""}.budicon-stack-folders:before{content:""}.budicon-all-directions:before{content:""}.budicon-arrow-bottom-a:before{content:""}.budicon-arrow-bottom-circle:before{content:""}.budicon-arrow-bottom-left-a:before{content:""}.budicon-arrow-bottom-left-circle:before{content:""}.budicon-arrow-bottom-left:before{content:""}.budicon-arrow-bottom-right-a:before{content:""}.budicon-arrow-bottom-right-circle:before{content:""}.budicon-arrow-bottom-right:before{content:""}.budicon-arrow-bottom:before{content:""}.budicon-arrow-left-a:before{content:""}.budicon-arrow-left-circle:before{content:""}.budicon-arrow-left-right-a:before{content:""}.budicon-arrow-left-right-circle:before{content:""}.budicon-arrow-left-right:before{content:""}.budicon-arrow-left:before{content:""}.budicon-arrow-right-a:before{content:""}.budicon-arrow-right-circle:before{content:""}.budicon-arrow-right:before{content:""}.budicon-arrow-top-a:before{content:""}.budicon-arrow-top-circle:before{content:""}.budicon-arrow-top-left-a:before{content:""}.budicon-arrow-top-left-circle:before{content:""}.budicon-arrow-top-left:before{content:""}.budicon-arrow-top-right-a:before{content:""}.budicon-arrow-top-right-circle:before{content:""}.budicon-arrow-top-right:before{content:""}.budicon-arrow-top:before{content:""}.budicon-arrow-turn-bottom:before{content:""}.budicon-arrow-turn-left:before{content:""}.budicon-arrow-turn-right:before{content:""}.budicon-arrow-turn-up:before{content:""}.budicon-arrow-up-down-a:before{content:""}.budicon-arrow-up-down-circle:before{content:""}.budicon-arrow-up-down:before{content:""}.budicon-backline-arrow:before{content:""}.budicon-bring-list-down:before{content:""}.budicon-bring-list-up:before{content:""}.budicon-chevron-bottom-a:before{content:""}.budicon-chevron-bottom-circle_1:before{content:""}.budicon-chevron-bottom-circle:before{content:""}.budicon-chevron-bottom:before{content:""}.budicon-chevron-left-a:before{content:""}.budicon-chevron-left-circle_1:before{content:""}.budicon-chevron-left-circle:before{content:""}.budicon-chevron-left:before{content:""}.budicon-chevron-right-a:before{content:""}.budicon-chevron-right-circle_1:before{content:""}.budicon-chevron-right-circle:before{content:""}.budicon-chevron-right:before{content:""}.budicon-chevron-top-a:before{content:""}.budicon-chevron-top-circle_1:before{content:""}.budicon-chevron-top-circle:before{content:""}.budicon-chevron-top:before{content:""}.budicon-console-arrow:before{content:""}.budicon-full-loop-arrow:before{content:""}.budicon-intersected-arrow:before{content:""}.budicon-inward-pointing:before{content:""}.budicon-looping-arrow:before{content:""}.budicon-outward-pointing:before{content:""}.budicon-airpods-a:before{content:""}.budicon-airpods:before{content:""}.budicon-albums:before{content:""}.budicon-analog-radio:before{content:""}.budicon-attachment-music:before{content:""}.budicon-backward-sign:before{content:""}.budicon-backward:before{content:""}.budicon-bluetooth-earphone:before{content:""}.budicon-boom-mic-mute:before{content:""}.budicon-boom-mic:before{content:""}.budicon-boombox:before{content:""}.budicon-cassette:before{content:""}.budicon-cd-case:before{content:""}.budicon-cd:before{content:""}.budicon-earphone:before{content:""}.budicon-eject:before{content:""}.budicon-equalizer-a:before{content:""}.budicon-equalizer:before{content:""}.budicon-forward-sign:before{content:""}.budicon-forward:before{content:""}.budicon-headphone-eq:before{content:""}.budicon-headphones-a:before{content:""}.budicon-headphones:before{content:""}.budicon-in-ear-headphones:before{content:""}.budicon-ipod:before{content:""}.budicon-melody:before{content:""}.budicon-microphone-wireless:before{content:""}.budicon-music-album:before{content:""}.budicon-music-file:before{content:""}.budicon-music-setting:before{content:""}.budicon-next-sign:before{content:""}.budicon-next-song:before{content:""}.budicon-pause-sign-a:before{content:""}.budicon-pause-sign:before{content:""}.budicon-pause:before{content:""}.budicon-piano:before{content:""}.budicon-play-loop:before{content:""}.budicon-play-sign:before{content:""}.budicon-play:before{content:""}.budicon-playlist-a:before{content:""}.budicon-playlist-b:before{content:""}.budicon-playlist:before{content:""}.budicon-previous-sign:before{content:""}.budicon-previous-song:before{content:""}.budicon-radio:before{content:""}.budicon-record-sign:before{content:""}.budicon-repeat-album:before{content:""}.budicon-repeat-one:before{content:""}.budicon-repeat:before{content:""}.budicon-rock:before{content:""}.budicon-shuffle:before{content:""}.budicon-song-note-tail:before{content:""}.budicon-song-note:before{content:""}.budicon-song-notes-a:before{content:""}.budicon-song-notes:before{content:""}.budicon-sound:before{content:""}.budicon-speaker:before{content:""}.budicon-stop-sign:before{content:""}.budicon-stop:before{content:""}.budicon-vintage-microphone-big:before{content:""}.budicon-vintage-microphone:before{content:""}.budicon-vol-high:before{content:""}.budicon-vol-low:before{content:""}.budicon-vol-med:before{content:""}.budicon-vol-mute:before{content:""}.budicon-volume-low:before{content:""}.budicon-volume-mute-a:before{content:""}.budicon-volume-mute:before{content:""}.budicon-volume-strong:before{content:""}.budicon-vynil:before{content:""}.budicon-woofer:before{content:""}.budicon-smart-watch-add:before{content:""}.budicon-smart-watch-bell:before{content:""}.budicon-smart-watch-block:before{content:""}.budicon-smart-watch-call:before{content:""}.budicon-smart-watch-chat:before{content:""}.budicon-smart-watch-dialog:before{content:""}.budicon-smart-watch-download:before{content:""}.budicon-smart-watch-finish:before{content:""}.budicon-smart-watch-location:before{content:""}.budicon-smart-watch-lock:before{content:""}.budicon-smart-watch-love:before{content:""}.budicon-smart-watch-mail:before{content:""}.budicon-smart-watch-mic:before{content:""}.budicon-smart-watch-music:before{content:""}.budicon-smart-watch-power:before{content:""}.budicon-smart-watch-progress:before{content:""}.budicon-smart-watch-rate:before{content:""}.budicon-smart-watch-rss:before{content:""}.budicon-smart-watch-sad:before{content:""}.budicon-smart-watch-search:before{content:""}.budicon-smart-watch-smile:before{content:""}.budicon-smart-watch-statistic:before{content:""}.budicon-smart-watch-upload:before{content:""}.budicon-smart-watch-user:before{content:""}.budicon-smart-watch-video:before{content:""}.budicon-smart-watch-volume:before{content:""}.budicon-smart-watch:before{content:""}.budicon-alarm:before{content:""}.budicon-alert:before{content:""}.budicon-backward-time:before{content:""}.budicon-bell:before{content:""}.budicon-calendar-alert:before{content:""}.budicon-calendar-block:before{content:""}.budicon-calendar-cross:before{content:""}.budicon-calendar-dating:before{content:""}.budicon-calendar-download:before{content:""}.budicon-calendar-favorite:before{content:""}.budicon-calendar-information:before{content:""}.budicon-calendar-lock:before{content:""}.budicon-calendar-minus:before{content:""}.budicon-calendar-plus:before{content:""}.budicon-calendar-tick:before{content:""}.budicon-calendar-upload:before{content:""}.budicon-calendar:before{content:""}.budicon-dashboard2:before{content:""}.budicon-events:before{content:""}.budicon-fast:before{content:""}.budicon-find-event:before{content:""}.budicon-forward-time:before{content:""}.budicon-hourglass:before{content:""}.budicon-normal-speed:before{content:""}.budicon-schedule:before{content:""}.budicon-share-calendar:before{content:""}.budicon-slow:before{content:""}.budicon-snooze:before{content:""}.budicon-stopwatch-digital:before{content:""}.budicon-stopwatch-half:before{content:""}.budicon-stopwatch:before{content:""}.budicon-time:before{content:""}.budicon-timer:before{content:""}.budicon-tomorrow:before{content:""}.budicon-vintage-wall-clock:before{content:""}.budicon-wall-clock:before{content:""}.budicon-watch:before{content:""}.budicon-yesterday:before{content:""}.budicon-attachment-file:before{content:""}.budicon-attachment:before{content:""}.budicon-book:before{content:""}.budicon-booklet:before{content:""}.budicon-bookmark-a:before{content:""}.budicon-bookmark:before{content:""}.budicon-box-file-alert:before{content:""}.budicon-box-file-block:before{content:""}.budicon-box-file-cross:before{content:""}.budicon-box-file-download:before{content:""}.budicon-box-file-favorite:before{content:""}.budicon-box-file-heart:before{content:""}.budicon-box-file-index:before{content:""}.budicon-box-file-information:before{content:""}.budicon-box-file-lock:before{content:""}.budicon-box-file-minus:before{content:""}.budicon-box-file-plus:before{content:""}.budicon-box-file-search:before{content:""}.budicon-box-file-tick:before{content:""}.budicon-box-file-upload:before{content:""}.budicon-box-file:before{content:""}.budicon-compressed-file:before{content:""}.budicon-doc-attachment:before{content:""}.budicon-doc-marker:before{content:""}.budicon-file-alert:before{content:""}.budicon-file-blank:before{content:""}.budicon-file-block:before{content:""}.budicon-file-cross:before{content:""}.budicon-file-download:before{content:""}.budicon-file-favorite:before{content:""}.budicon-file-heart:before{content:""}.budicon-file-information:before{content:""}.budicon-file-lock:before{content:""}.budicon-file-minus:before{content:""}.budicon-file-plus:before{content:""}.budicon-file-question:before{content:""}.budicon-file-tick:before{content:""}.budicon-file-upload:before{content:""}.budicon-file:before{content:""}.budicon-files-alert:before{content:""}.budicon-files-block:before{content:""}.budicon-files-cross:before{content:""}.budicon-files-download:before{content:""}.budicon-files-favorite:before{content:""}.budicon-files-heart:before{content:""}.budicon-files-information:before{content:""}.budicon-files-lock:before{content:""}.budicon-files-minus:before{content:""}.budicon-files-plus:before{content:""}.budicon-files-search:before{content:""}.budicon-files-tick:before{content:""}.budicon-files-upload:before{content:""}.budicon-folded-page:before{content:""}.budicon-headline:before{content:""}.budicon-image-file:before{content:""}.budicon-landscape-page:before{content:""}.budicon-legal-file:before{content:""}.budicon-newspaper:before{content:""}.budicon-notepad:before{content:""}.budicon-opened-book:before{content:""}.budicon-project-file-alert:before{content:""}.budicon-project-file-block:before{content:""}.budicon-project-file-cross:before{content:""}.budicon-project-file-download:before{content:""}.budicon-project-file-favorite:before{content:""}.budicon-project-file-heart:before{content:""}.budicon-project-file-information:before{content:""}.budicon-project-file-lock:before{content:""}.budicon-project-file-minus:before{content:""}.budicon-project-file-plus:before{content:""}.budicon-project-file-search:before{content:""}.budicon-project-file-tick:before{content:""}.budicon-project-file-upload:before{content:""}.budicon-project-file:before{content:""}.budicon-scan-page:before{content:""}.budicon-scheduled-box-file:before{content:""}.budicon-scheduled-file:before{content:""}.budicon-scheduled-files:before{content:""}.budicon-scheduled-project-file:before{content:""}.budicon-search-file:before{content:""}.budicon-shared-box-file:before{content:""}.budicon-shared-file:before{content:""}.budicon-shared-files:before{content:""}.budicon-shared-project-file:before{content:""}.budicon-single-page:before{content:""}.budicon-two-page:before{content:""}.budicon-zip-file:before{content:""}.budicon-atm:before{content:""}.budicon-attachment-dollar:before{content:""}.budicon-bad-trends:before{content:""}.budicon-bank-a:before{content:""}.budicon-bubble-chart:before{content:""}.budicon-cash-dollar:before{content:""}.budicon-cash:before{content:""}.budicon-dollar-sign:before{content:""}.budicon-donation:before{content:""}.budicon-donut-chart:before{content:""}.budicon-euro:before{content:""}.budicon-finance-policy:before{content:""}.budicon-finance-project:before{content:""}.budicon-good-trends:before{content:""}.budicon-graphic-moderate-a:before{content:""}.budicon-graphic-moderate:before{content:""}.budicon-graphic-up-a:before{content:""}.budicon-graphic-up:before{content:""}.budicon-horizontal-graphic:before{content:""}.budicon-line-chart:before{content:""}.budicon-mobile-banking:before{content:""}.budicon-mobile-payment:before{content:""}.budicon-online-stock:before{content:""}.budicon-performance-board-a:before{content:""}.budicon-performance-board-minus:before{content:""}.budicon-performance-board-plus:before{content:""}.budicon-performance-board-tick:before{content:""}.budicon-performance-board:before{content:""}.budicon-pie-chart-a:before{content:""}.budicon-pie-chart:before{content:""}.budicon-portfolio:before{content:""}.budicon-poundsterling:before{content:""}.budicon-presentation-slide-a:before{content:""}.budicon-presentation-slide:before{content:""}.budicon-refund-dollar:before{content:""}.budicon-refund:before{content:""}.budicon-safe-case:before{content:""}.budicon-savings:before{content:""}.budicon-send-dollar:before{content:""}.budicon-send-money:before{content:""}.budicon-web-banking:before{content:""}.budicon-withdraw-dollar:before{content:""}.budicon-withdraw-money:before{content:""}.budicon-yen:before{content:""}.budicon-apartment-a:before{content:""}.budicon-apartment:before{content:""}.budicon-bank:before{content:""}.budicon-barn:before{content:""}.budicon-business-area:before{content:""}.budicon-church:before{content:""}.budicon-city:before{content:""}.budicon-garage:before{content:""}.budicon-golden-bridge:before{content:""}.budicon-government:before{content:""}.budicon-high-building:before{content:""}.budicon-hotel-tower:before{content:""}.budicon-house-a:before{content:""}.budicon-house:before{content:""}.budicon-lighthouse:before{content:""}.budicon-log-house:before{content:""}.budicon-mall:before{content:""}.budicon-mansion:before{content:""}.budicon-modern-office:before{content:""}.budicon-school:before{content:""}.budicon-female-user-block:before{content:""}.budicon-female-user-cross:before{content:""}.budicon-female-user-favorite:before{content:""}.budicon-female-user-information:before{content:""}.budicon-female-user-lock:before{content:""}.budicon-female-user-minus:before{content:""}.budicon-female-user-plus:before{content:""}.budicon-female-user-search:before{content:""}.budicon-female-user-tick:before{content:""}.budicon-female-user:before{content:""}.budicon-female:before{content:""}.budicon-gender:before{content:""}.budicon-group:before{content:""}.budicon-male:before{content:""}.budicon-password-lock:before{content:""}.budicon-password-unlock:before{content:""}.budicon-profile-picture:before{content:""}.budicon-shared-user:before{content:""}.budicon-user-a:before{content:""}.budicon-user-b:before{content:""}.budicon-user-block-a:before{content:""}.budicon-user-block-b:before{content:""}.budicon-user-block-c:before{content:""}.budicon-user-block:before{content:""}.budicon-user-c:before{content:""}.budicon-user-card-a:before{content:""}.budicon-user-card:before{content:""}.budicon-user-cross-a:before{content:""}.budicon-user-cross-b:before{content:""}.budicon-user-cross-c:before{content:""}.budicon-user-cross:before{content:""}.budicon-user-favorite-a:before{content:""}.budicon-user-favorite-b:before{content:""}.budicon-user-favorite-c:before{content:""}.budicon-user-favorite:before{content:""}.budicon-user-information-a:before{content:""}.budicon-user-information-b:before{content:""}.budicon-user-information-c:before{content:""}.budicon-user-information:before{content:""}.budicon-user-list-a:before{content:""}.budicon-user-list-b:before{content:""}.budicon-user-list-c:before{content:""}.budicon-user-list-d:before{content:""}.budicon-user-lock-a:before{content:""}.budicon-user-lock-b:before{content:""}.budicon-user-lock-c:before{content:""}.budicon-user-lock:before{content:""}.budicon-user-minus-a:before{content:""}.budicon-user-minus-b:before{content:""}.budicon-user-minus-c:before{content:""}.budicon-user-minus:before{content:""}.budicon-user-plus-a:before{content:""}.budicon-user-plus-b:before{content:""}.budicon-user-plus-c:before{content:""}.budicon-user-plus:before{content:""}.budicon-user-search-a:before{content:""}.budicon-user-search-b:before{content:""}.budicon-user-search-c:before{content:""}.budicon-user-search:before{content:""}.budicon-user-tick-a:before{content:""}.budicon-user-tick-b:before{content:""}.budicon-user-tick-c:before{content:""}.budicon-user-tick:before{content:""}.budicon-user:before{content:""}.budicon-air-craft:before{content:""}.budicon-airplane:before{content:""}.budicon-arrival:before{content:""}.budicon-bag-trolley:before{content:""}.budicon-beach:before{content:""}.budicon-bicycle:before{content:""}.budicon-big-motorcycles:before{content:""}.budicon-bus-front:before{content:""}.budicon-bus:before{content:""}.budicon-cabin-bag:before{content:""}.budicon-cable-car:before{content:""}.budicon-camping:before{content:""}.budicon-car-front:before{content:""}.budicon-compass-a:before{content:""}.budicon-compass-b:before{content:""}.budicon-compass:before{content:""}.budicon-cruise:before{content:""}.budicon-departure:before{content:""}.budicon-direction:before{content:""}.budicon-electric-cord:before{content:""}.budicon-electric-station:before{content:""}.budicon-first-aid:before{content:""}.budicon-fishing-boat:before{content:""}.budicon-footstep:before{content:""}.budicon-forest:before{content:""}.budicon-fuel-tank:before{content:""}.budicon-gas-station:before{content:""}.budicon-globe:before{content:""}.budicon-helicopter:before{content:""}.budicon-hiking:before{content:""}.budicon-hotel:before{content:""}.budicon-international-travel:before{content:""}.budicon-iron:before{content:""}.budicon-jet-ski:before{content:""}.budicon-location-area:before{content:""}.budicon-location-finished:before{content:""}.budicon-location-pin-love:before{content:""}.budicon-location-pin-minus:before{content:""}.budicon-location-pin-plus:before{content:""}.budicon-location-pin-tick:before{content:""}.budicon-location-pin:before{content:""}.budicon-location:before{content:""}.budicon-luggage:before{content:""}.budicon-map:before{content:""}.budicon-motorcycle:before{content:""}.budicon-multiple-destinations:before{content:""}.budicon-navigation:before{content:""}.budicon-parking-meter:before{content:""}.budicon-passport:before{content:""}.budicon-plugs-a:before{content:""}.budicon-plugs:before{content:""}.budicon-pocket-knife:before{content:""}.budicon-power-cord:before{content:""}.budicon-propeller-airplane:before{content:""}.budicon-sailing-boat:before{content:""}.budicon-sandals:before{content:""}.budicon-sedan-front:before{content:""}.budicon-sedan:before{content:""}.budicon-self-navigation:before{content:""}.budicon-sightseeing:before{content:""}.budicon-small-bike:before{content:""}.budicon-sun:before{content:""}.budicon-sunblock:before{content:""}.budicon-surf:before{content:""}.budicon-taxi:before{content:""}.budicon-tracks:before{content:""}.budicon-traffic-light:before{content:""}.budicon-train-front:before{content:""}.budicon-travel-bag:before{content:""}.budicon-travel-case:before{content:""}.budicon-travel-ticket:before{content:""}.budicon-van:before{content:""}.budicon-vespa:before{content:""}.budicon-vintage-car:before{content:""}.budicon-bear:before{content:""}.budicon-beaver:before{content:""}.budicon-cat-front:before{content:""}.budicon-chicken:before{content:""}.budicon-clamp:before{content:""}.budicon-clown-fish:before{content:""}.budicon-cow-a:before{content:""}.budicon-cow:before{content:""}.budicon-crab:before{content:""}.budicon-dog-front:before{content:""}.budicon-dog:before{content:""}.budicon-duck:before{content:""}.budicon-fish:before{content:""}.budicon-fox:before{content:""}.budicon-frog:before{content:""}.budicon-gorilla:before{content:""}.budicon-hedgehog:before{content:""}.budicon-hippo:before{content:""}.budicon-husky:before{content:""}.budicon-jellyfish:before{content:""}.budicon-lion:before{content:""}.budicon-monkey:before{content:""}.budicon-mouse-front:before{content:""}.budicon-mouse:before{content:""}.budicon-otter:before{content:""}.budicon-panda:before{content:""}.budicon-panther:before{content:""}.budicon-pig:before{content:""}.budicon-polar-bear:before{content:""}.budicon-rabbit:before{content:""}.budicon-sardine:before{content:""}.budicon-seal:before{content:""}.budicon-shark:before{content:""}.budicon-shrimp:before{content:""}.budicon-sloth:before{content:""}.budicon-snail:before{content:""}.budicon-squirrel:before{content:""}.budicon-sympanse:before{content:""}.budicon-tiger:before{content:""}.budicon-whale:before{content:""}
@font-face{font-family:bud_basis;font-style:normal;font-weight:400;src:url(fonts/bud_basis..eot);src:url(fonts/bud_basis..eot#iefix) format("embedded-opentype"),url(images/bud_basis..svg#bud_basis) format("svg")}@font-face{font-family:bud_basis;src:url(data:application/octet-stream;base64,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) format("woff"),url(data:application/octet-stream;base64,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) format("truetype")}[class*=" budlight-"]:before,[class^=budlight-]:before{speak:never;display:inline-block;font-family:bud_basis;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;text-align:center;text-decoration:inherit;text-transform:none;width:1em}.budlight-profile-picture:before{content:""}.budlight-user:before{content:""}.budlight-location-pin:before{content:""}.budlight-events:before{content:""}.budlight-wall-clock:before{content:""}.budlight-world-network:before{content:""}.budlight-check-ui:before{content:""}.budlight-cloud-download:before{content:""}.budlight-cloud-upload:before{content:""}.budlight-cross-ui:before{content:""}.budlight-expand-view:before{content:""}.budlight-hamburger-ui:before{content:""}.budlight-minus-ui:before{content:""}.budlight-outgoing-link:before{content:""}.budlight-plus-ui:before{content:""}.budlight-print-a:before{content:""}.budlight-refresh-ui:before{content:""}.budlight-search-minus:before{content:""}.budlight-search-plus:before{content:""}.budlight-search:before{content:""}.budlight-attachment:before{content:""}.budlight-file-download:before{content:""}.budlight-file-upload:before{content:""}.budlight-file:before{content:""}.budlight-at-symbol:before{content:""}.budlight-call:before{content:""}.budlight-email:before{content:""}.budlight-arrow-bottom-circle:before{content:""}.budlight-arrow-bottom-left:before{content:""}.budlight-arrow-bottom-right:before{content:""}.budlight-arrow-bottom:before{content:""}.budlight-arrow-left-circle:before{content:""}.budlight-arrow-left:before{content:""}.budlight-arrow-right-circle:before{content:""}.budlight-arrow-right:before{content:""}.budlight-arrow-top-circle:before{content:""}.budlight-arrow-top-left:before{content:""}.budlight-arrow-top-right:before{content:""}.budlight-arrow-top:before{content:""}.budlight-chevron-bottom-circle:before{content:""}.budlight-chevron-bottom:before{content:""}.budlight-chevron-left-circle:before{content:""}.budlight-chevron-left:before{content:""}.budlight-chevron-right-circle:before{content:""}.budlight-chevron-right:before{content:""}.budlight-chevron-top-circle:before{content:""}.budlight-chevron-top:before{content:""}.budlight-dislike:before{content:""}.budlight-like:before{content:""}.budlight-minimize-view:before{content:""}.budlight-help:before{content:""}.budlight-calendar:before{content:""}.budlight-checkboxes:before{content:""}.budlight-file-blank:before{content:""}.budlight-trash:before{content:""}
.leaflet-image-layer,.leaflet-layer,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-pane,.leaflet-pane>canvas,.leaflet-pane>svg,.leaflet-tile,.leaflet-tile-container,.leaflet-zoom-box{left:0;position:absolute;top:0}.leaflet-container{overflow:hidden}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile{-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.leaflet-tile::-moz-selection{background:transparent}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{height:1600px;-webkit-transform-origin:0 0;width:1600px}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-overlay-pane svg,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer{max-height:none!important;max-width:none!important}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:rgba(0,0,0,0)}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{-webkit-filter:inherit;filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{-webkit-box-sizing:border-box;box-sizing:border-box;height:0;width:0;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{height:1px;width:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{pointer-events:visiblePainted;pointer-events:auto;position:relative;z-index:800}.leaflet-bottom,.leaflet-top{pointer-events:none;position:absolute;z-index:1000}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{clear:both;float:left}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-tile{will-change:opacity}.leaflet-fade-anim .leaflet-popup{opacity:0;-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{-webkit-transform-origin:0 0;transform-origin:0 0}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1),-webkit-transform .25s cubic-bezier(0,0,.25,1);will-change:transform}.leaflet-pan-anim .leaflet-tile,.leaflet-zoom-anim .leaflet-tile{-webkit-transition:none;transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-control,.leaflet-popup-pane{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:grabbing}.leaflet-image-layer,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-image-layer.leaflet-interactive,.leaflet-marker-icon.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline:0}.leaflet-container a{color:#0078a8}.leaflet-container a.leaflet-active{outline:2px solid orange}.leaflet-zoom-box{background:hsla(0,0%,100%,.5);border:2px dotted #38f}.leaflet-container{font:12px/1.5 Helvetica Neue,Arial,Helvetica,sans-serif}.leaflet-bar{border-radius:4px;-webkit-box-shadow:0 1px 5px rgba(0,0,0,.65);box-shadow:0 1px 5px rgba(0,0,0,.65)}.leaflet-bar a,.leaflet-bar a:hover{background-color:#fff;border-bottom:1px solid #ccc;color:#000;display:block;height:26px;line-height:26px;text-align:center;text-decoration:none;width:26px}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom:none;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.leaflet-bar a.leaflet-disabled{background-color:#f4f4f4;color:#bbb;cursor:default}.leaflet-touch .leaflet-bar a{height:30px;line-height:30px;width:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{background:#fff;border-radius:5px;-webkit-box-shadow:0 1px 5px rgba(0,0,0,.4);box-shadow:0 1px 5px rgba(0,0,0,.4)}.leaflet-control-layers-toggle{background-image:url(images/layers..png);height:36px;width:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(images/layers-2x..png);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{height:44px;width:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{background:#fff;color:#333;padding:6px 10px 6px 6px}.leaflet-control-layers-scrollbar{overflow-x:hidden;overflow-y:scroll;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block}.leaflet-control-layers-separator{border-top:1px solid #ddd;height:0;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(images/marker-icon..png)}.leaflet-container .leaflet-control-attribution{background:#fff;background:hsla(0,0%,100%,.7);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{color:#333;padding:0 5px}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover{text-decoration:underline}.leaflet-container .leaflet-control-attribution,.leaflet-container .leaflet-control-scale{font-size:11px}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{background:#fff;background:hsla(0,0%,100%,.5);border:2px solid #777;border-top:none;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:11px;line-height:1.1;overflow:hidden;padding:2px 5px 1px;white-space:nowrap}.leaflet-control-scale-line:not(:first-child){border-bottom:none;border-top:2px solid #777;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-bar,.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers{-webkit-box-shadow:none;box-shadow:none}.leaflet-touch .leaflet-bar,.leaflet-touch .leaflet-control-layers{background-clip:padding-box;border:2px solid rgba(0,0,0,.2)}.leaflet-popup{margin-bottom:20px;position:absolute;text-align:center}.leaflet-popup-content-wrapper{border-radius:12px;padding:1px;text-align:left}.leaflet-popup-content{line-height:1.4;margin:13px 19px}.leaflet-popup-content p{margin:18px 0}.leaflet-popup-tip-container{height:20px;left:50%;margin-left:-20px;overflow:hidden;pointer-events:none;position:absolute;width:40px}.leaflet-popup-tip{height:17px;margin:-10px auto 0;padding:1px;-webkit-transform:rotate(45deg);transform:rotate(45deg);width:17px}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:#fff;-webkit-box-shadow:0 3px 14px rgba(0,0,0,.4);box-shadow:0 3px 14px rgba(0,0,0,.4);color:#333}.leaflet-container a.leaflet-popup-close-button{background:transparent;border:none;color:#c3c3c3;font:16px/14px Tahoma,Verdana,sans-serif;font-weight:700;height:14px;padding:4px 4px 0 0;position:absolute;right:0;text-align:center;text-decoration:none;top:0;width:18px}.leaflet-container a.leaflet-popup-close-button:hover{color:#999}.leaflet-popup-scrolled{border-bottom:1px solid #ddd;border-top:1px solid #ddd;overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";filter:progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678,M12=0.70710678,M21=-0.70710678,M22=0.70710678);margin:0 auto;width:24px}.leaflet-oldie .leaflet-popup-tip-container{margin-top:-1px}.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{background-color:#fff;border:1px solid #fff;border-radius:3px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.4);box-shadow:0 1px 3px rgba(0,0,0,.4);color:#222;padding:6px;pointer-events:none;position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.leaflet-tooltip.leaflet-clickable{cursor:pointer;pointer-events:auto}.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before,.leaflet-tooltip-top:before{background:transparent;border:6px solid transparent;content:"";pointer-events:none;position:absolute}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{border-top-color:#fff;bottom:0;margin-bottom:-12px}.leaflet-tooltip-bottom:before{border-bottom-color:#fff;margin-left:-6px;margin-top:-12px;top:0}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{margin-top:-6px;top:50%}.leaflet-tooltip-left:before{border-left-color:#fff;margin-right:-12px;right:0}.leaflet-tooltip-right:before{border-right-color:#fff;left:0;margin-left:-12px}@font-face{font-display:swap;font-family:bud_basis;font-style:normal;font-weight:400;src:url(//prokomresources.prokomcdn.no/client-grunt/04-common/font/bud_basis.eot?36088481=);src:url(//prokomresources.prokomcdn.no/client-grunt/04-common/font/bud_basis.eot?36088481=#iefix) format("embedded-opentype"),url(//prokomresources.prokomcdn.no/client-grunt/04-common/font/bud_basis.woff?36088481=) format("woff"),url(//prokomresources.prokomcdn.no/client-grunt/04-common/font/bud_basis.ttf?36088481=) format("truetype"),url(//prokomresources.prokomcdn.no/client-grunt/04-common/font/bud_basis.svg?36088481=#bud_basis) format("svg")}[class*=" budlight-"]:before,[class^=budlight-]:before{display:inline-block;font-family:bud_basis;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;text-align:center;text-decoration:inherit;width:1em}[class*=" budlight-"]:before,[class*=budlight],[class^=budlight-]:before{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-style:normal;font-variant:normal;text-transform:none}[class*=budlight]{font-family:bud_basis!important;font-weight:700;line-height:1}.budlight-profile-picture:before{content:""}.budlight-user:before{content:""}.budlight-location-pin:before{content:""}.budlight-events:before{content:""}.budlight-wall-clock:before{content:""}.budlight-world-network:before{content:""}.budlight-check-ui:before{content:""}.budlight-cloud-download:before{content:""}.budlight-cloud-upload:before{content:""}.budlight-cross-ui:before{content:""}.budlight-expand-view:before{content:""}.budlight-hamburger-ui:before{content:""}.budlight-minus-ui:before{content:""}.budlight-outgoing-link:before{content:""}.budlight-plus-ui:before{content:""}.budlight-print-a:before{content:""}.budlight-refresh-ui:before{content:""}.budlight-search-minus:before{content:""}.budlight-search-plus:before{content:""}.budlight-search:before{content:""}.budlight-attachment:before{content:""}.budlight-file-download:before{content:""}.budlight-file-upload:before{content:""}.budlight-file:before{content:""}.budlight-at-symbol:before{content:""}.budlight-call:before{content:""}.budlight-email:before{content:""}.budlight-arrow-bottom-circle:before{content:""}.budlight-arrow-bottom-left:before{content:""}.budlight-arrow-bottom-right:before{content:""}.budlight-arrow-bottom:before{content:""}.budlight-arrow-left-circle:before{content:""}.budlight-arrow-left:before{content:""}.budlight-arrow-right-circle:before{content:""}.budlight-arrow-right:before{content:""}.budlight-arrow-top-circle:before{content:""}.budlight-arrow-top-left:before{content:""}.budlight-arrow-top-right:before{content:""}.budlight-arrow-top:before{content:""}.budlight-chevron-bottom-circle:before{content:""}.budlight-chevron-bottom:before{content:""}.budlight-chevron-left-circle:before{content:""}.budlight-chevron-left:before{content:""}.budlight-chevron-right-circle:before{content:""}.budlight-chevron-right:before{content:""}.budlight-chevron-top-circle:before{content:""}.budlight-chevron-top:before{content:""}.budlight-dislike:before{content:""}.budlight-like:before{content:""}.budlight-minimize-view:before{content:""}.budlight-help:before{content:""}.img-fluid,.img-thumbnail{height:auto;max-width:100%}.img-thumbnail{background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;padding:.25rem}.figure{display:inline-block}.figure-img{line-height:1;margin-bottom:.5rem}.figure-caption{color:#6c757d;font-size:90%}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}@media(min-width:576px){.container,.container-sm{max-width:540px}}@media(min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media(min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media(min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.no-gutters{margin-left:0;margin-right:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-left:0;padding-right:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{padding-left:15px;padding-right:15px;position:relative;width:100%}.col{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.row-cols-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.col-1,.col-auto{-webkit-box-flex:0}.col-1{-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-2{-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-2,.col-3{-webkit-box-flex:0}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-4,.col-5{-webkit-box-flex:0}.col-5{-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-6,.col-7{-webkit-box-flex:0}.col-7{-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-8{-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-8,.col-9{-webkit-box-flex:0}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-10,.col-11{-webkit-box-flex:0}.col-11{-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-1{margin-left:8.33333%}.offset-2{margin-left:16.66667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333%}.offset-5{margin-left:41.66667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333%}.offset-8{margin-left:66.66667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333%}.offset-11{margin-left:91.66667%}@media(min-width:576px){.col-sm{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.row-cols-sm-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-sm-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.col-sm-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-sm-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-sm-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-sm-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-sm-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-sm-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-sm-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-sm-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-sm-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-sm-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-sm-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-sm-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-sm-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-sm-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-sm-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-sm-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333%}.offset-sm-2{margin-left:16.66667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333%}.offset-sm-5{margin-left:41.66667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333%}.offset-sm-8{margin-left:66.66667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333%}.offset-sm-11{margin-left:91.66667%}}@media(min-width:768px){.col-md{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;max-width:100%}.row-cols-md-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.row-cols-md-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-md-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.col-md-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-md-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-md-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-md-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-md-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-md-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-md-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-md-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-md-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-md-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-md-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-md-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-md-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-md-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-md-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-md-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-md-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-md-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-md-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-md-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333%}.offset-md-2{margin-left:16.66667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333%}.offset-md-5{margin-left:41.66667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333%}.offset-md-8{margin-left:66.66667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333%}.offset-md-11{margin-left:91.66667%}}@media(min-width:992px){.col-lg{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.row-cols-lg-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-lg-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.col-lg-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-lg-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-lg-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-lg-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-lg-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-lg-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-lg-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-lg-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-lg-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-lg-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-lg-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-lg-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-lg-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-lg-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-lg-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-lg-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-lg-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-lg-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-lg-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-lg-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-lg-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-lg-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333%}.offset-lg-2{margin-left:16.66667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333%}.offset-lg-5{margin-left:41.66667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333%}.offset-lg-8{margin-left:66.66667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333%}.offset-lg-11{margin-left:91.66667%}}@media(min-width:1200px){.col-xl{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.row-cols-xl-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-xl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.col-xl-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-xl-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-xl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-xl-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-xl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-xl-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-xl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-xl-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-xl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-xl-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-xl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-xl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-xl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-xl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-xl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-xl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-xl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-xl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-xl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-xl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-xl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-xl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-xl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333%}.offset-xl-2{margin-left:16.66667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333%}.offset-xl-5{margin-left:41.66667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333%}.offset-xl-8{margin-left:66.66667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333%}.offset-xl-11{margin-left:91.66667%}}.table{color:#212529;margin-bottom:1rem;width:100%}.table td,.table th{border-top:1px solid #dee2e6;padding:.75rem;vertical-align:top}.table thead th{border-bottom:2px solid #dee2e6;vertical-align:bottom}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered,.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:rgba(0,0,0,.075);color:#212529}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th,.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{background-color:#343a40;border-color:#454d55;color:#fff}.table .thead-light th{background-color:#e9ecef;border-color:#dee2e6;color:#495057}.table-dark{background-color:#343a40;color:#fff}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.table-dark.table-hover tbody tr:hover{background-color:hsla(0,0%,100%,.075);color:#fff}@media(max-width:575.98px){.table-responsive-sm{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-sm>.table-bordered{border:0}}@media(max-width:767.98px){.table-responsive-md{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-md>.table-bordered{border:0}}@media(max-width:991.98px){.table-responsive-lg{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-lg>.table-bordered{border:0}}@media(max-width:1199.98px){.table-responsive-xl{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive>.table-bordered{border:0}.form-control{background-clip:padding-box;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;color:#495057;display:block;font-size:1rem;font-weight:400;height:calc(1.5em + .75rem + 2px);line-height:1.5;padding:.375rem .75rem;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;width:100%}@media(prefers-reduced-motion:reduce){.form-control{-webkit-transition:none;transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{background-color:#fff;border-color:#80bdff;-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.25);box-shadow:0 0 0 .2rem rgba(0,123,255,.25);color:#495057;outline:0}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{background-color:#fff;color:#495057}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{font-size:inherit;line-height:1.5;margin-bottom:0;padding-bottom:calc(.375rem + 1px);padding-top:calc(.375rem + 1px)}.col-form-label-lg{font-size:1.25rem;line-height:1.5;padding-bottom:calc(.5rem + 1px);padding-top:calc(.5rem + 1px)}.col-form-label-sm{font-size:.875rem;line-height:1.5;padding-bottom:calc(.25rem + 1px);padding-top:calc(.25rem + 1px)}.form-control-plaintext{background-color:transparent;border:solid transparent;border-width:1px 0;color:#212529;display:block;font-size:1rem;line-height:1.5;margin-bottom:0;padding:.375rem 0;width:100%}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-left:0;padding-right:0}.form-control-sm{border-radius:.2rem;font-size:.875rem;height:calc(1.5em + .5rem + 2px);line-height:1.5;padding:.25rem .5rem}.form-control-lg{border-radius:.3rem;font-size:1.25rem;height:calc(1.5em + 1rem + 2px);line-height:1.5;padding:.5rem 1rem}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-5px;margin-right:-5px}.form-row>.col,.form-row>[class*=col-]{padding-left:5px;padding-right:5px}.form-check{display:block;padding-left:1.25rem;position:relative}.form-check-input{margin-left:-1.25rem;margin-top:.3rem;position:absolute}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-right:.75rem;padding-left:0}.form-check-inline .form-check-input{margin-left:0;margin-right:.3125rem;margin-top:0;position:static}.valid-feedback{color:#28a745;display:none;font-size:80%;margin-top:.25rem;width:100%}.valid-tooltip{background-color:rgba(40,167,69,.9);border-radius:.25rem;color:#fff;display:none;font-size:.875rem;left:0;line-height:1.5;margin-top:.1rem;max-width:100%;padding:.25rem .5rem;position:absolute;top:100%;z-index:5}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27%3E%3Cpath fill=%27%2328a745%27 d=%27M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z%27/%3E%3C/svg%3E");background-position:right calc(.375em + .1875rem) center;background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem);border-color:#28a745;padding-right:calc(1.5em + .75rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.25);box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);padding-right:calc(1.5em + .75rem)}.custom-select.is-valid,.was-validated .custom-select:valid{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%275%27%3E%3Cpath fill=%27%23343a40%27 d=%27M2 0 0 2h4zm0 5L0 3h4z%27/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27%3E%3Cpath fill=%27%2328a745%27 d=%27M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z%27/%3E%3C/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem);border-color:#28a745;padding-right:calc(.75em + 2.3125rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.25);box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#28a745}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{background-color:#34ce57;border-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.25);box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.25);box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{color:#dc3545;display:none;font-size:80%;margin-top:.25rem;width:100%}.invalid-tooltip{background-color:rgba(220,53,69,.9);border-radius:.25rem;color:#fff;display:none;font-size:.875rem;left:0;line-height:1.5;margin-top:.1rem;max-width:100%;padding:.25rem .5rem;position:absolute;top:100%;z-index:5}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23dc3545%27%3E%3Ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3E%3Cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3E%3Ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23dc3545%27 stroke=%27none%27/%3E%3C/svg%3E");background-position:right calc(.375em + .1875rem) center;background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem);border-color:#dc3545;padding-right:calc(1.5em + .75rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.25);box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);padding-right:calc(1.5em + .75rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%275%27%3E%3Cpath fill=%27%23343a40%27 d=%27M2 0 0 2h4zm0 5L0 3h4z%27/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23dc3545%27%3E%3Ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3E%3Cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3E%3Ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23dc3545%27 stroke=%27none%27/%3E%3C/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem);border-color:#dc3545;padding-right:calc(.75em + 2.3125rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.25);box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#dc3545}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{background-color:#e4606d;border-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.25);box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.25);box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.form-inline .form-check{width:100%}@media(min-width:576px){.form-inline label{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.form-inline .form-group,.form-inline label{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:0}.form-inline .form-group{-webkit-box-flex:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap}.form-inline .form-control{display:inline-block;vertical-align:middle;width:auto}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-pack:center;-ms-flex-pack:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:center;padding-left:0;width:auto}.form-inline .form-check-input{-ms-flex-negative:0;flex-shrink:0;margin-left:0;margin-right:.25rem;margin-top:0;position:relative}.form-inline .custom-control{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-pack:center;-ms-flex-pack:center;align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{background-color:transparent;border:1px solid transparent;border-radius:.25rem;color:#212529;display:inline-block;font-size:1rem;font-weight:400;line-height:1.5;padding:.375rem .75rem;text-align:center;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}@media(prefers-reduced-motion:reduce){.btn{-webkit-transition:none;transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.25);box-shadow:0 0 0 .2rem rgba(0,123,255,.25);outline:0}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{background-color:#007bff;border-color:#007bff;color:#fff}.btn-primary.focus,.btn-primary:focus,.btn-primary:hover{background-color:#0069d9;border-color:#0062cc;color:#fff}.btn-primary.focus,.btn-primary:focus{-webkit-box-shadow:0 0 0 .2rem rgba(38,143,255,.5);box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{background-color:#007bff;border-color:#007bff;color:#fff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{background-color:#0062cc;border-color:#005cbf;color:#fff}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(38,143,255,.5);box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{background-color:#6c757d;border-color:#6c757d;color:#fff}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:hover{background-color:#5a6268;border-color:#545b62;color:#fff}.btn-secondary.focus,.btn-secondary:focus{-webkit-box-shadow:0 0 0 .2rem hsla(208,6%,54%,.5);box-shadow:0 0 0 .2rem hsla(208,6%,54%,.5)}.btn-secondary.disabled,.btn-secondary:disabled{background-color:#6c757d;border-color:#6c757d;color:#fff}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{background-color:#545b62;border-color:#4e555b;color:#fff}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem hsla(208,6%,54%,.5);box-shadow:0 0 0 .2rem hsla(208,6%,54%,.5)}.btn-success{background-color:#28a745;border-color:#28a745;color:#fff}.btn-success.focus,.btn-success:focus,.btn-success:hover{background-color:#218838;border-color:#1e7e34;color:#fff}.btn-success.focus,.btn-success:focus{-webkit-box-shadow:0 0 0 .2rem rgba(72,180,97,.5);box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{background-color:#28a745;border-color:#28a745;color:#fff}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{background-color:#1e7e34;border-color:#1c7430;color:#fff}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(72,180,97,.5);box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{background-color:#17a2b8;border-color:#17a2b8;color:#fff}.btn-info.focus,.btn-info:focus,.btn-info:hover{background-color:#138496;border-color:#117a8b;color:#fff}.btn-info.focus,.btn-info:focus{-webkit-box-shadow:0 0 0 .2rem rgba(58,176,195,.5);box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{background-color:#17a2b8;border-color:#17a2b8;color:#fff}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{background-color:#117a8b;border-color:#10707f;color:#fff}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(58,176,195,.5);box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{background-color:#ffc107;border-color:#ffc107;color:#212529}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{background-color:#e0a800;border-color:#d39e00;color:#212529}.btn-warning.focus,.btn-warning:focus{-webkit-box-shadow:0 0 0 .2rem rgba(222,170,12,.5);box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{background-color:#ffc107;border-color:#ffc107;color:#212529}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{background-color:#d39e00;border-color:#c69500;color:#212529}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(222,170,12,.5);box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{background-color:#dc3545;border-color:#dc3545;color:#fff}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{background-color:#c82333;border-color:#bd2130;color:#fff}.btn-danger.focus,.btn-danger:focus{-webkit-box-shadow:0 0 0 .2rem rgba(225,83,97,.5);box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{background-color:#dc3545;border-color:#dc3545;color:#fff}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{background-color:#bd2130;border-color:#b21f2d;color:#fff}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(225,83,97,.5);box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-light.focus,.btn-light:focus,.btn-light:hover{background-color:#e2e6ea;border-color:#dae0e5;color:#212529}.btn-light.focus,.btn-light:focus{-webkit-box-shadow:0 0 0 .2rem hsla(220,4%,85%,.5);box-shadow:0 0 0 .2rem hsla(220,4%,85%,.5)}.btn-light.disabled,.btn-light:disabled{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{background-color:#dae0e5;border-color:#d3d9df;color:#212529}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem hsla(220,4%,85%,.5);box-shadow:0 0 0 .2rem hsla(220,4%,85%,.5)}.btn-dark{background-color:#343a40;border-color:#343a40;color:#fff}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{background-color:#23272b;border-color:#1d2124;color:#fff}.btn-dark.focus,.btn-dark:focus{-webkit-box-shadow:0 0 0 .2rem rgba(82,88,93,.5);box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{background-color:#343a40;border-color:#343a40;color:#fff}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{background-color:#1d2124;border-color:#171a1d;color:#fff}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(82,88,93,.5);box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{border-color:#007bff;color:#007bff}.btn-outline-primary:hover{background-color:#007bff;border-color:#007bff;color:#fff}.btn-outline-primary.focus,.btn-outline-primary:focus{-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.5);box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{background-color:transparent;color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{background-color:#007bff;border-color:#007bff;color:#fff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.5);box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{border-color:#6c757d;color:#6c757d}.btn-outline-secondary:hover{background-color:#6c757d;border-color:#6c757d;color:#fff}.btn-outline-secondary.focus,.btn-outline-secondary:focus{-webkit-box-shadow:0 0 0 .2rem hsla(208,7%,46%,.5);box-shadow:0 0 0 .2rem hsla(208,7%,46%,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{background-color:transparent;color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{background-color:#6c757d;border-color:#6c757d;color:#fff}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem hsla(208,7%,46%,.5);box-shadow:0 0 0 .2rem hsla(208,7%,46%,.5)}.btn-outline-success{border-color:#28a745;color:#28a745}.btn-outline-success:hover{background-color:#28a745;border-color:#28a745;color:#fff}.btn-outline-success.focus,.btn-outline-success:focus{-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.5);box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{background-color:transparent;color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{background-color:#28a745;border-color:#28a745;color:#fff}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.5);box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{border-color:#17a2b8;color:#17a2b8}.btn-outline-info:hover{background-color:#17a2b8;border-color:#17a2b8;color:#fff}.btn-outline-info.focus,.btn-outline-info:focus{-webkit-box-shadow:0 0 0 .2rem rgba(23,162,184,.5);box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{background-color:transparent;color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{background-color:#17a2b8;border-color:#17a2b8;color:#fff}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(23,162,184,.5);box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{border-color:#ffc107;color:#ffc107}.btn-outline-warning:hover{background-color:#ffc107;border-color:#ffc107;color:#212529}.btn-outline-warning.focus,.btn-outline-warning:focus{-webkit-box-shadow:0 0 0 .2rem rgba(255,193,7,.5);box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{background-color:transparent;color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{background-color:#ffc107;border-color:#ffc107;color:#212529}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(255,193,7,.5);box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{border-color:#dc3545;color:#dc3545}.btn-outline-danger:hover{background-color:#dc3545;border-color:#dc3545;color:#fff}.btn-outline-danger.focus,.btn-outline-danger:focus{-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.5);box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{background-color:transparent;color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{background-color:#dc3545;border-color:#dc3545;color:#fff}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.5);box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{border-color:#f8f9fa;color:#f8f9fa}.btn-outline-light:hover{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-outline-light.focus,.btn-outline-light:focus{-webkit-box-shadow:0 0 0 .2rem rgba(248,249,250,.5);box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{background-color:transparent;color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(248,249,250,.5);box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{border-color:#343a40;color:#343a40}.btn-outline-dark:hover{background-color:#343a40;border-color:#343a40;color:#fff}.btn-outline-dark.focus,.btn-outline-dark:focus{-webkit-box-shadow:0 0 0 .2rem rgba(52,58,64,.5);box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{background-color:transparent;color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{background-color:#343a40;border-color:#343a40;color:#fff}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(52,58,64,.5);box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{color:#007bff;font-weight:400;text-decoration:none}.btn-link:hover{color:#0056b3}.btn-link.focus,.btn-link:focus,.btn-link:hover{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-lg{border-radius:.3rem;font-size:1.25rem;line-height:1.5;padding:.5rem 1rem}.btn-sm{border-radius:.2rem;font-size:.875rem;line-height:1.5;padding:.25rem .5rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.nav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style:none;margin-bottom:0;padding-left:0}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;cursor:default;pointer-events:none}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{background-color:transparent;border-color:transparent;color:#6c757d}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{background-color:#fff;border-color:#dee2e6 #dee2e6 #fff;color:#495057}.nav-tabs .dropdown-menu{border-top-left-radius:0;border-top-right-radius:0;margin-top:-1px}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{background-color:#007bff;color:#fff}.nav-fill .nav-item,.nav-fill>.nav-link{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.badge{border-radius:.25rem;display:inline-block;font-size:75%;font-weight:700;line-height:1;padding:.25em .4em;text-align:center;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;vertical-align:baseline;white-space:nowrap}@media(prefers-reduced-motion:reduce){.badge{-webkit-transition:none;transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{border-radius:10rem;padding-left:.6em;padding-right:.6em}.badge-primary{background-color:#007bff;color:#fff}a.badge-primary:focus,a.badge-primary:hover{background-color:#0062cc;color:#fff}a.badge-primary.focus,a.badge-primary:focus{-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.5);box-shadow:0 0 0 .2rem rgba(0,123,255,.5);outline:0}.badge-secondary{background-color:#6c757d;color:#fff}a.badge-secondary:focus,a.badge-secondary:hover{background-color:#545b62;color:#fff}a.badge-secondary.focus,a.badge-secondary:focus{-webkit-box-shadow:0 0 0 .2rem hsla(208,7%,46%,.5);box-shadow:0 0 0 .2rem hsla(208,7%,46%,.5);outline:0}.badge-success{background-color:#28a745;color:#fff}a.badge-success:focus,a.badge-success:hover{background-color:#1e7e34;color:#fff}a.badge-success.focus,a.badge-success:focus{-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.5);box-shadow:0 0 0 .2rem rgba(40,167,69,.5);outline:0}.badge-info{background-color:#17a2b8;color:#fff}a.badge-info:focus,a.badge-info:hover{background-color:#117a8b;color:#fff}a.badge-info.focus,a.badge-info:focus{-webkit-box-shadow:0 0 0 .2rem rgba(23,162,184,.5);box-shadow:0 0 0 .2rem rgba(23,162,184,.5);outline:0}.badge-warning{background-color:#ffc107;color:#212529}a.badge-warning:focus,a.badge-warning:hover{background-color:#d39e00;color:#212529}a.badge-warning.focus,a.badge-warning:focus{-webkit-box-shadow:0 0 0 .2rem rgba(255,193,7,.5);box-shadow:0 0 0 .2rem rgba(255,193,7,.5);outline:0}.badge-danger{background-color:#dc3545;color:#fff}a.badge-danger:focus,a.badge-danger:hover{background-color:#bd2130;color:#fff}a.badge-danger.focus,a.badge-danger:focus{-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.5);box-shadow:0 0 0 .2rem rgba(220,53,69,.5);outline:0}.badge-light{background-color:#f8f9fa;color:#212529}a.badge-light:focus,a.badge-light:hover{background-color:#dae0e5;color:#212529}a.badge-light.focus,a.badge-light:focus{-webkit-box-shadow:0 0 0 .2rem rgba(248,249,250,.5);box-shadow:0 0 0 .2rem rgba(248,249,250,.5);outline:0}.badge-dark{background-color:#343a40;color:#fff}a.badge-dark:focus,a.badge-dark:hover{background-color:#1d2124;color:#fff}a.badge-dark.focus,a.badge-dark:focus{-webkit-box-shadow:0 0 0 .2rem rgba(52,58,64,.5);box-shadow:0 0 0 .2rem rgba(52,58,64,.5);outline:0}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spinner-border{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.spinner-border{-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite;border:.25em solid;border-radius:50%;border-right:.25em solid transparent;display:inline-block;height:2rem;vertical-align:text-bottom;width:2rem}.spinner-border-sm{border-width:.2em;height:1rem;width:1rem}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite;background-color:currentColor;border-radius:50%;display:inline-block;height:2rem;opacity:0;vertical-align:text-bottom;width:2rem}.spinner-grow-sm{height:1rem;width:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after{clear:both;content:"";display:block}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}@media(min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media(min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media(min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media(min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{display:block;overflow:hidden;padding:0;position:relative;width:100%}.embed-responsive:before{content:"";display:block}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{border:0;bottom:0;height:100%;left:0;position:absolute;top:0;width:100%}.embed-responsive-21by9:before{padding-top:42.85714%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-column,.flex-row{-webkit-box-direction:normal!important}.flex-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-webkit-box-orient:horizontal!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse,.flex-row-reverse{-webkit-box-direction:reverse!important}.flex-column-reverse{-webkit-box-orient:vertical!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media(min-width:576px){.flex-sm-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column,.flex-sm-row{-webkit-box-direction:normal!important}.flex-sm-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media(min-width:768px){.flex-md-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column,.flex-md-row{-webkit-box-direction:normal!important}.flex-md-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media(min-width:992px){.flex-lg-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column,.flex-lg-row{-webkit-box-direction:normal!important}.flex-lg-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media(min-width:1200px){.flex-xl-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column,.flex-xl-row{-webkit-box-direction:normal!important}.flex-xl-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media(min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media(min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media(min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media(min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.fixed-top{top:0}.fixed-bottom,.fixed-top{left:0;position:fixed;right:0;z-index:1030}.fixed-bottom{bottom:0}@supports(position:sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;overflow:visible;position:static;white-space:normal;width:auto}.shadow-sm{-webkit-box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important;box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{-webkit-box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important;box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{-webkit-box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important;box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{-webkit-box-shadow:none!important;box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media(min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media(min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media(min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media(min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link:after{background-color:transparent;bottom:0;content:"";left:0;pointer-events:auto;position:absolute;right:0;top:0;z-index:1}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media(min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media(min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media(min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media(min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{background-color:transparent;border:0;color:transparent;font:0/0 a;text-shadow:none}.text-decoration-none{text-decoration:none!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.leaflet-control{cursor:pointer}a.polyline-measure-controlOnBgColor,a.polyline-measure-controlOnBgColor:hover{background-color:#8f8}.polyline-measure-unicode-icon{font-size:19px;font-weight:700}a.polyline-measure-clearControl:active{background-color:#f88}.polyline-measure-tooltip{background-color:rgba(255,255,170,.7);border-radius:3px;-webkit-box-shadow:1px 1px 4px #888;box-shadow:1px 1px 4px #888;font:10px Arial,Helvetica,sans-serif;height:auto!important;line-height:10px;margin:0;padding:2px;text-align:right;white-space:nowrap;width:auto!important}.polyline-measure-tooltip-end{background-color:rgba(255,255,40,.7)}.polyline-measure-tooltip-total{color:#006;font-weight:700}.polyline-measure-tooltip-difference{color:#060;font-style:italic}.polyline-measure-popupTooltip{font:11px Arial,Helvetica,sans-serif;line-height:11px}#map_presentation,body,html{height:100%;margin:0}.edoc__map{height:500px;width:100%}.edoc__map.setCrosshair{cursor:crosshair}.edoc__mapadress__input{background-color:#fff;border:2px solid #014179;border-radius:0;height:48px;margin-bottom:15px;padding:14px 10px 13px 15px}.edoc__searchicon{position:absolute;right:26px;top:10px}.edoc__mapcontrols{background-color:#e5ecf1;margin-top:2px;padding:20px}.edoc__mapcontrols__buttons{-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:space-between}.edoc__mapbtn{background:transparent;border:0;color:#014179;display:inline-block;font-family:Roboto;font-size:13px;font-weight:500;line-height:1.46;margin:0;padding:0;text-align:center;width:70px}@media(min-width:576px){.edoc__mapbtn{margin:-10px 10px;padding:10px;width:90px}}.edoc__mapbtn svg{display:inline-block;height:34px;margin-bottom:0;padding:5px;position:relative;width:34px}.edoc__mapbtn.active svg{background:#014179;border-radius:100px}.edoc__mapbtn.active .lines{fill:#fff}.local-mapicon{background:transparent;background-color:var(--map__icon__color,var(--primary__color,red));border-radius:100%;height:25px;width:25px}.local-mapicon:after{background:#fff;border-radius:100%;content:"";height:7px;left:10px;position:absolute;top:9px;width:7px}.local-mapicon:before{border:12.5px solid transparent;border-top:27px solid var(--map__icon__color,var(--primary__color,red));bottom:-30px;content:"";display:block;left:0;position:absolute}.fullwindow .edoc__map{height:960px;width:1280px}.fullwindow .edoc__map .map{height:100%;margin:0;width:100%}
*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}html{-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);font-family:sans-serif;line-height:1.15}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{color:#212529;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,Liberation Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-size:1rem;font-weight:400;line-height:1.5;margin:0;text-align:left}[tabindex="-1"]:focus{outline:0!important}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;margin-top:0}p{margin-bottom:1rem;margin-top:0}abbr[data-original-title],abbr[title]{border-bottom:0;cursor:help;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{background-color:transparent;text-decoration:none}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]),a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}pre{margin-bottom:1rem;margin-top:0;overflow:auto}figure{margin:0 0 1rem}img{border-style:none}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}caption{caption-side:bottom;color:#6c757d;padding-bottom:.75rem;padding-top:.75rem;text-align:left}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;margin:0}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{border:0;margin:0;min-width:0;padding:0}legend{color:inherit;display:block;line-height:inherit;margin-bottom:.5rem;max-width:100%;padding:0;white-space:normal;width:100%}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:none;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}output{display:inline-block}summary{cursor:pointer;display:list-item}template{display:none}[hidden]{display:none!important}.edoc__container{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}@media(min-width:576px){.edoc__container{max-width:540px}}@media(min-width:768px){.edoc__container{max-width:720px}}@media(min-width:992px){.edoc__container{max-width:960px}}@media(min-width:1200px){.edoc__container{max-width:1140px}}.edoc__container-fluid{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}.edoc__row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.edoc__no-gutters{margin-left:0;margin-right:0}.edoc__no-gutters>.edoc__col,.edoc__no-gutters>[class*=edoc__col-]{padding-left:0;padding-right:0}.edoc__col,.edoc__col-1,.edoc__col-10,.edoc__col-11,.edoc__col-12,.edoc__col-2,.edoc__col-3,.edoc__col-4,.edoc__col-5,.edoc__col-6,.edoc__col-7,.edoc__col-8,.edoc__col-9,.edoc__col-auto,.edoc__col-lg,.edoc__col-lg-1,.edoc__col-lg-10,.edoc__col-lg-11,.edoc__col-lg-12,.edoc__col-lg-2,.edoc__col-lg-3,.edoc__col-lg-4,.edoc__col-lg-5,.edoc__col-lg-6,.edoc__col-lg-7,.edoc__col-lg-8,.edoc__col-lg-9,.edoc__col-lg-auto,.edoc__col-md,.edoc__col-md-1,.edoc__col-md-10,.edoc__col-md-11,.edoc__col-md-12,.edoc__col-md-2,.edoc__col-md-3,.edoc__col-md-4,.edoc__col-md-5,.edoc__col-md-6,.edoc__col-md-7,.edoc__col-md-8,.edoc__col-md-9,.edoc__col-md-auto,.edoc__col-sm,.edoc__col-sm-1,.edoc__col-sm-10,.edoc__col-sm-11,.edoc__col-sm-12,.edoc__col-sm-2,.edoc__col-sm-3,.edoc__col-sm-4,.edoc__col-sm-5,.edoc__col-sm-6,.edoc__col-sm-7,.edoc__col-sm-8,.edoc__col-sm-9,.edoc__col-sm-auto,.edoc__col-xl,.edoc__col-xl-1,.edoc__col-xl-10,.edoc__col-xl-11,.edoc__col-xl-12,.edoc__col-xl-2,.edoc__col-xl-3,.edoc__col-xl-4,.edoc__col-xl-5,.edoc__col-xl-6,.edoc__col-xl-7,.edoc__col-xl-8,.edoc__col-xl-9,.edoc__col-xl-auto{padding-left:15px;padding-right:15px;position:relative;width:100%}.edoc__col{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;max-width:100%}.edoc__col-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.edoc__col-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333333%;flex:0 0 8.33333333%;max-width:8.33333333%}.edoc__col-2{-webkit-box-flex:0;-ms-flex:0 0 16.66666667%;flex:0 0 16.66666667%;max-width:16.66666667%}.edoc__col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.edoc__col-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333333%;flex:0 0 33.33333333%;max-width:33.33333333%}.edoc__col-5{-webkit-box-flex:0;-ms-flex:0 0 41.66666667%;flex:0 0 41.66666667%;max-width:41.66666667%}.edoc__col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.edoc__col-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333333%;flex:0 0 58.33333333%;max-width:58.33333333%}.edoc__col-8{-webkit-box-flex:0;-ms-flex:0 0 66.66666667%;flex:0 0 66.66666667%;max-width:66.66666667%}.edoc__col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.edoc__col-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333333%;flex:0 0 83.33333333%;max-width:83.33333333%}.edoc__col-11{-webkit-box-flex:0;-ms-flex:0 0 91.66666667%;flex:0 0 91.66666667%;max-width:91.66666667%}.edoc__col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.edoc__order-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.edoc__order-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.edoc__order-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.edoc__order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.edoc__order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.edoc__order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.edoc__order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.edoc__order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.edoc__order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.edoc__order-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.edoc__order-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.edoc__order-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.edoc__order-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.edoc__order-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.edoc__order-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.edoc__offset-1{margin-left:8.33333333%}.edoc__offset-2{margin-left:16.66666667%}.edoc__offset-3{margin-left:25%}.edoc__offset-4{margin-left:33.33333333%}.edoc__offset-5{margin-left:41.66666667%}.edoc__offset-6{margin-left:50%}.edoc__offset-7{margin-left:58.33333333%}.edoc__offset-8{margin-left:66.66666667%}.edoc__offset-9{margin-left:75%}.edoc__offset-10{margin-left:83.33333333%}.edoc__offset-11{margin-left:91.66666667%}@media(min-width:576px){.edoc__col-sm{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;max-width:100%}.edoc__col-sm-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.edoc__col-sm-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333333%;flex:0 0 8.33333333%;max-width:8.33333333%}.edoc__col-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.66666667%;flex:0 0 16.66666667%;max-width:16.66666667%}.edoc__col-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.edoc__col-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333333%;flex:0 0 33.33333333%;max-width:33.33333333%}.edoc__col-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.66666667%;flex:0 0 41.66666667%;max-width:41.66666667%}.edoc__col-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.edoc__col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333333%;flex:0 0 58.33333333%;max-width:58.33333333%}.edoc__col-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.66666667%;flex:0 0 66.66666667%;max-width:66.66666667%}.edoc__col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.edoc__col-sm-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333333%;flex:0 0 83.33333333%;max-width:83.33333333%}.edoc__col-sm-11{-webkit-box-flex:0;-ms-flex:0 0 91.66666667%;flex:0 0 91.66666667%;max-width:91.66666667%}.edoc__col-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.edoc__order-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.edoc__order-sm-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.edoc__order-sm-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.edoc__order-sm-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.edoc__order-sm-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.edoc__order-sm-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.edoc__order-sm-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.edoc__order-sm-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.edoc__order-sm-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.edoc__order-sm-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.edoc__order-sm-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.edoc__order-sm-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.edoc__order-sm-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.edoc__order-sm-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.edoc__order-sm-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.edoc__offset-sm-0{margin-left:0}.edoc__offset-sm-1{margin-left:8.33333333%}.edoc__offset-sm-2{margin-left:16.66666667%}.edoc__offset-sm-3{margin-left:25%}.edoc__offset-sm-4{margin-left:33.33333333%}.edoc__offset-sm-5{margin-left:41.66666667%}.edoc__offset-sm-6{margin-left:50%}.edoc__offset-sm-7{margin-left:58.33333333%}.edoc__offset-sm-8{margin-left:66.66666667%}.edoc__offset-sm-9{margin-left:75%}.edoc__offset-sm-10{margin-left:83.33333333%}.edoc__offset-sm-11{margin-left:91.66666667%}}@media(min-width:768px){.edoc__col-md{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;max-width:100%}.edoc__col-md-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.edoc__col-md-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333333%;flex:0 0 8.33333333%;max-width:8.33333333%}.edoc__col-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.66666667%;flex:0 0 16.66666667%;max-width:16.66666667%}.edoc__col-md-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.edoc__col-md-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333333%;flex:0 0 33.33333333%;max-width:33.33333333%}.edoc__col-md-5{-webkit-box-flex:0;-ms-flex:0 0 41.66666667%;flex:0 0 41.66666667%;max-width:41.66666667%}.edoc__col-md-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.edoc__col-md-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333333%;flex:0 0 58.33333333%;max-width:58.33333333%}.edoc__col-md-8{-webkit-box-flex:0;-ms-flex:0 0 66.66666667%;flex:0 0 66.66666667%;max-width:66.66666667%}.edoc__col-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.edoc__col-md-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333333%;flex:0 0 83.33333333%;max-width:83.33333333%}.edoc__col-md-11{-webkit-box-flex:0;-ms-flex:0 0 91.66666667%;flex:0 0 91.66666667%;max-width:91.66666667%}.edoc__col-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.edoc__order-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.edoc__order-md-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.edoc__order-md-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.edoc__order-md-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.edoc__order-md-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.edoc__order-md-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.edoc__order-md-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.edoc__order-md-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.edoc__order-md-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.edoc__order-md-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.edoc__order-md-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.edoc__order-md-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.edoc__order-md-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.edoc__order-md-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.edoc__order-md-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.edoc__offset-md-0{margin-left:0}.edoc__offset-md-1{margin-left:8.33333333%}.edoc__offset-md-2{margin-left:16.66666667%}.edoc__offset-md-3{margin-left:25%}.edoc__offset-md-4{margin-left:33.33333333%}.edoc__offset-md-5{margin-left:41.66666667%}.edoc__offset-md-6{margin-left:50%}.edoc__offset-md-7{margin-left:58.33333333%}.edoc__offset-md-8{margin-left:66.66666667%}.edoc__offset-md-9{margin-left:75%}.edoc__offset-md-10{margin-left:83.33333333%}.edoc__offset-md-11{margin-left:91.66666667%}}@media(min-width:992px){.edoc__col-lg{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;max-width:100%}.edoc__col-lg-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.edoc__col-lg-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333333%;flex:0 0 8.33333333%;max-width:8.33333333%}.edoc__col-lg-2{-webkit-box-flex:0;-ms-flex:0 0 16.66666667%;flex:0 0 16.66666667%;max-width:16.66666667%}.edoc__col-lg-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.edoc__col-lg-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333333%;flex:0 0 33.33333333%;max-width:33.33333333%}.edoc__col-lg-5{-webkit-box-flex:0;-ms-flex:0 0 41.66666667%;flex:0 0 41.66666667%;max-width:41.66666667%}.edoc__col-lg-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.edoc__col-lg-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333333%;flex:0 0 58.33333333%;max-width:58.33333333%}.edoc__col-lg-8{-webkit-box-flex:0;-ms-flex:0 0 66.66666667%;flex:0 0 66.66666667%;max-width:66.66666667%}.edoc__col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.edoc__col-lg-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333333%;flex:0 0 83.33333333%;max-width:83.33333333%}.edoc__col-lg-11{-webkit-box-flex:0;-ms-flex:0 0 91.66666667%;flex:0 0 91.66666667%;max-width:91.66666667%}.edoc__col-lg-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.edoc__order-lg-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.edoc__order-lg-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.edoc__order-lg-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.edoc__order-lg-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.edoc__order-lg-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.edoc__order-lg-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.edoc__order-lg-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.edoc__order-lg-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.edoc__order-lg-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.edoc__order-lg-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.edoc__order-lg-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.edoc__order-lg-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.edoc__order-lg-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.edoc__order-lg-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.edoc__order-lg-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.edoc__offset-lg-0{margin-left:0}.edoc__offset-lg-1{margin-left:8.33333333%}.edoc__offset-lg-2{margin-left:16.66666667%}.edoc__offset-lg-3{margin-left:25%}.edoc__offset-lg-4{margin-left:33.33333333%}.edoc__offset-lg-5{margin-left:41.66666667%}.edoc__offset-lg-6{margin-left:50%}.edoc__offset-lg-7{margin-left:58.33333333%}.edoc__offset-lg-8{margin-left:66.66666667%}.edoc__offset-lg-9{margin-left:75%}.edoc__offset-lg-10{margin-left:83.33333333%}.edoc__offset-lg-11{margin-left:91.66666667%}}@media(min-width:1200px){.edoc__col-xl{-ms-flex-preferred-size:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-basis:0;flex-grow:1;max-width:100%}.edoc__col-xl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.edoc__col-xl-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333333%;flex:0 0 8.33333333%;max-width:8.33333333%}.edoc__col-xl-2{-webkit-box-flex:0;-ms-flex:0 0 16.66666667%;flex:0 0 16.66666667%;max-width:16.66666667%}.edoc__col-xl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.edoc__col-xl-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333333%;flex:0 0 33.33333333%;max-width:33.33333333%}.edoc__col-xl-5{-webkit-box-flex:0;-ms-flex:0 0 41.66666667%;flex:0 0 41.66666667%;max-width:41.66666667%}.edoc__col-xl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.edoc__col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333333%;flex:0 0 58.33333333%;max-width:58.33333333%}.edoc__col-xl-8{-webkit-box-flex:0;-ms-flex:0 0 66.66666667%;flex:0 0 66.66666667%;max-width:66.66666667%}.edoc__col-xl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.edoc__col-xl-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333333%;flex:0 0 83.33333333%;max-width:83.33333333%}.edoc__col-xl-11{-webkit-box-flex:0;-ms-flex:0 0 91.66666667%;flex:0 0 91.66666667%;max-width:91.66666667%}.edoc__col-xl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.edoc__order-xl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.edoc__order-xl-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.edoc__order-xl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.edoc__order-xl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.edoc__order-xl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.edoc__order-xl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.edoc__order-xl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.edoc__order-xl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.edoc__order-xl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.edoc__order-xl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.edoc__order-xl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.edoc__order-xl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.edoc__order-xl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.edoc__order-xl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.edoc__order-xl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.edoc__offset-xl-0{margin-left:0}.edoc__offset-xl-1{margin-left:8.33333333%}.edoc__offset-xl-2{margin-left:16.66666667%}.edoc__offset-xl-3{margin-left:25%}.edoc__offset-xl-4{margin-left:33.33333333%}.edoc__offset-xl-5{margin-left:41.66666667%}.edoc__offset-xl-6{margin-left:50%}.edoc__offset-xl-7{margin-left:58.33333333%}.edoc__offset-xl-8{margin-left:66.66666667%}.edoc__offset-xl-9{margin-left:75%}.edoc__offset-xl-10{margin-left:83.33333333%}.edoc__offset-xl-11{margin-left:91.66666667%}}:root{--k247-button-color:var(--k247-text-color);--k247-button-font-size:16px;--k247-button-bg:#fff;--k247-button-border-color:#fff;--k247-button-border-radius:2px;--k247-button-hover-bg:#e2e6ea;--k247-button-hover-border-color:#e2e6ea;--k247-button-disabled-bg:#f3f3f3;--k247-button-disabled-border-color:#f3f3f3;--k247-button-disabled-color:grey;--k247-button-primary-bg:var(--k247-main-color);--k247-button-primary-color:#fff;--k247-button-primary-hover-bg:#1b5b93;--k247-button-primary-hover-color:#fff;--k247-button-primary-border-bg:#fff;--k247-button-primary-border-font-size:18px;--k247-button-primary-border-color:var(--k247-main-color);--k247-button-primary-border-border-color:var(--k247-main-color);--k247-button-primary-border-hover-bg:var(--k247-main-color);--k247-button-primary-border-hover-color:#fff;--k247-button-primary-border-hover-border-color:var(--k247-main-color);--k247-button-success-bg:#008a00;--k247-button-success-color:#fff;--k247-button-success-hover-bg:#1aa41a;--k247-button-success-hover-color:#fff;--k247-button-action-bg:#1e1e1e;--k247-button-action-color:#fff;--k247-button-action-hover-bg:#fff;--k247-button-action-hover-color:#1e1e1e;--k247-button-danger-bg:#bd4f4e;--k247-button-danger-color:#fff;--k247-button-danger-hover-bg:#d76968;--k247-button-danger-hover-color:#fff;--k247-login-button-bg:#d5d5d5;--k247-login-button-color:var(--k247-text-color);--k247-login-button-hover-color:var(--k247-text-color);--k247-login-button-active-bg:var(--k247-main-color);--k247-login-button-active-color:#fff;--k247-login-button-active-hover-color:#fff;--k247-login-button-active-white-bg:#fff;--k247-login-button-active-white-color:var(--k247-text-color);--k247-help-button-color:var(--k247-main-color);--k247-calculation-sum-bg:#024179;--k247-calculation-sum-color:#fff;--k247-calculation-sum-input-bg:#285e8d;--k247-checkbox-focus-color:var(--k247-main-color);--k247-checkbox-fill-color:var(--k247-main-color);--k247-checkbox-stroke-color:var(--k247-main-color);--k247-checkbox-toggle-icon-border-color:#757575;--k247-checkbox-toggle-icon-bg:#fff;--k247-checkbox-toggle-icon-color:#757575;--k247-checkbox-toggle-icon-url:url(images/xmark..svg);--k247-checkbox-toggle-icon-checked-url:url(images/chechmark..svg);--k247-checkbox-toggle-bg-bg:#fff;--k247-checkbox-toggle-bg-border-color:#757575;--k247-checkbox-toggle-bg-active:#61b209;--k247-circle-button-color:var(--k247-main-color);--k247-circle-button-border-color:#004179;--k247-circle-button-hover-color:#0056b3;--k247-circle-button-remove-color:#004179;--k247-circle-button-remove-hover-bg:#004179;--k247-circle-button-remove-hover-color:#fff;--k247-circle-button-disabled-color:#979797;--k247-circle-button-disabled-bg:#fff;--k247-circle-button-add-bg:#004179;--k247-circle-button-add-color:#fff;--k247-circle-button-add-hover-bg:transparent;--k247-circle-button-add-hover-color:#004179;--k247-form-part-bg:#fff;--k247-form-part-border-color:#d8d8d8;--k247-form-part-shadow-color:rgba(0,0,0,.1);--k247-form-part-hover-border-color:var(--k247-main-color);--k247-form-anchor-color:var(--k247-main-color);--k247-form-part-active-border-color:var(--k247-main-color);--k247-form-part-active-shadow-color:rgba(0,0,0,.3);--k247-form-part-active-anchor-color:var(--k247-main-color);--k247-form-part-icon-sim-bg:var(--k247-main-color);--k247-form-part-icon-sim-color:#fff;--k247-form-part-icon-sim-hover-color:#7990ba;--k247-form-part-icon-sim-focus-color:#bd4f4e;--k247-form-part-content-dotted-color:#8f8f8f;--k247-data-grid-table-color:#212529;--k247-data-grid-table-border-color:#dee2e6;--k247-datepicker-icon-bg:#fff;--k247-datepicker-border-color:#ddd;--k247-error-border-color:red;--k247-error-bg:#fff;--k247-explain-bg:#e2f4fa;--k247-explain-color:var(--k247-text-color);--k247-fake-file-input-bg:#fff;--k247-fake-file-input-color:grey;--k247-fake-file-input-submit-bg:var(--k247-main-color);--k247-fake-file-input-submit-color:#fff;--k247-footer-color:var(--k247-text-color);--k247-footer-button-anchor-color:var(--k247-text-color);--k247-footer-button-anchor-hover-border-color:var(--k247-main-color);--k247-footer-button-anchor-hover-focus-shadow-color:#bd4f4e;--k247-form-group-bg:#fff;--k247-form-group-border-color:#979797;--k247-form-group-active-bg:#024179;--k247-form-group-active-border-color:#024179;--k247-form-group-active-shadow-color:rgba(0,0,0,.5);--k247-form-group-header-color:var(--k247-text-color);--k247-form-group-header-icon-color:#979797;--k247-form-group-header-active-color:#fff;--k247-form-group-header-active-icon-color:#fff;--k247-form-group-action-bg:#e2f4fa;--k247-form-group-content-border-color:#ccc;--k247-form-group-row-title-bg:#e2f4fa;--k247-form-group-row-title-border-color:#ccc;--k247-form-group-row-title-active-bg:#fff;--k247-form-group-row-title-active-border-color:#ccc;--k247-form-group-toggle-color:var(--k247-text-color);--k247-form-group-toggle-arrow-color:#024179;--k247-form-group-delete-border-color:rgba(2,65,121,.1);--k247-form-group-delete-color:#024179;--k247-form-group-delete-disabled-color:grey;--k247-form-group-row-content-bg:#fff;--k247-form-group-form-part-bg:#fafafa;--k247-form-group-form-part-border-color:#ccc;--k247-form-group-summary-bg:#024179;--k247-form-group-summary-panel-title-color:#fff;--k247-form-group-page-bg:#fafafa;--k247-form-group-page-title-color:var(--k247-text-color);--k247-form-group-page-title-border-color:#024179;--k247-forms-header-title-color:#252525;--k247-forms-header-title-hover-color:#252525;--k247-forms-header-title-icon-color:#979797;--k247-forms-field-error-bg:#fff;--k247-forms-field-error-border-color:#dc3545;--k247-forms-input-border-color:#0257a1;--k247-forms-input-color:var(--k247-text-color);--k247-forms-input-textarea-placeholder-color:#757575;--k247-forms-input-placeholder-color:#6c757d;--k247-forms-input-disabled-bg:#e9ecef;--k247-forms-input-disabled-border-color:var(--k247-forms-input-border-color);--k247-forms-input-hover-focus-border-color:var(--k247-main-color);--k247-form-title-color:#252525;--k247-field-label-color:#212529;--k247-header-bg:#fff;--k247-header-lang-color:var(--k247-text-color);--k247-header-lang-border-color:var(--k247-main-color);--k247-header-lang-hover-border-color:#888;--k247-header-lang-focus-color:#222;--k247-header-lang-focus-shadow-color:rgba(59,153,252,.7);--k247-header-lang-container-icon-color:var(--k247-main-color);--k247-header-logo-anchor-focus-shadow-color:#bd4f4e;--k247-header-logo-text-color:var(--k247-text-color);--k247-header-drop-down-bg:#fff;--k247-header-drop-down-border-color:var(--k247-main-color);--k247-header-drop-down-color:var(--k247-main-color);--k247-header-drop-down-content-bg:#fff;--k247-header-drop-down-content-shadow-color:rgba(0,0,0,.5);--k247-header-anchor-color:var(--k247-text-color);--k247-header-help-icon-color:var(--k247-main-color);--k247-header-global-icon-color:var(--k247-main-color);--k247-header-burger-path-color:var(--k247-main-color);--k247-header-mobile-lang-color:var(--k247-text-color);--k247-header-mobile-anchor-color:var(--k247-text-color);--k247-header-mobile-global-icon-color:var(--k247-main-color);--k247-header-mobile-help-icon-color:var(--k247-main-color);--k247-header-login-color:#252525;--k247-head-link-color:#252525;--k247-head-link-title-color:var(--k247-text-color);--k247-head-link-icon-color:var(--k247-main-color);--k247-help-panel-bg:#e2f4fa;--k247-help-panel-shadow-color:rgba(0,0,0,.3);--k247-help-panel-close-bg:#fff;--k247-help-panel-title-color:var(--k247-text-color);--k247-help-panel-toggle-bg:#fff;--k247-help-panel-toggle-color:var(--k247-text-color);--k247-help-panel-toggle-border-color:#e2f4fa;--k247-help-panel-active-bg:var(--k247-main-color);--k247-help-panel-active-color:#fff;--k247-help-panel-toggle-content-bg:#fff;--k247-help-panel-toggle-content-color:var(--k247-text-color);--k247-id-port-top-bar-bg:#3a3a3a;--k247-id-port-top-bar-color:#d9d8d3;--k247-id-port-top-bar-shadow-color:rgba(0,0,0,.1);--k247-id-por-logout-color:#d9d8d3;--k247-my-cases-panel-bg:hsla(0,0%,100%,.5);--k247-my-cases-panel-border-color:#fff;--k247-my-cases-panel-title-color:#252525;--k247-my-cases-help-content-bg:#e2f4fa;--k247-my-cases-help-content-border-color:#fff;--k247-my-cases-help-content-color:var(--k247-text-color);--k247-my-cases-hr-bg:rgba(2,65,121,.1);--k247-my-cases-panel-anchor-color:var(--k247-main-color);--k247-my-cases-td-bar-bg:#fff;--k247-my-cases-td-bar-shadow-color:rgba(0,0,0,.1);--k247-my-cases-help-icon-bg:var(--k247-main-color);--k247-my-cases-help-icon-question-invert-color:var(--k247-main-color);--k247-my-cases-help-icon-question-color:#fff;--k247-my-cases-help-icon-invert-bg:#fff;--k247-my-cases-mobile-panel-border-color:#e5e5e5;--k247-my-cases-mobile-panel-bg:hsla(0,0%,100%,.4);--k247-my-cases-mobile-panel-color:var(--k247-text-color);--k247-my-cases-mobile-panel-label-color:var(--k247-text-color);--k247-my-cases-mobile-card-shadow-color:rgba(0,0,0,.1);--k247-my-cases-mobile-card-bg:#fff;--k247-overview-title-color:#252525;--k247-overview-search-color:#555;--k247-overview-search-border-color:var(--k247-main-color);--k247-overview-search-hover-focus-border-color:var(--k247-main-color);--k247-overview-search-button-bg:var(--k247-main-color);--k247-overview-search-button-color:#fff;--k247-overview-color:var(--k247-main-color);--k247-overview-text-color:var(--k247-text-color);--k247-overview-no-hit-bg:#fff;--k247-overview-result-item-bg:#fff;--k247-overview-result-item-shadow:#eee;--k247-overview-result-link-color:var(--k247-text-color);--k247-overview-result-link-hover-bg:#f4f4f4;--k247-panel-bg:#e2f4fa;--k247-panel-text-color:var(--k247-text-color);--k247-panel-border-color:#2383d7;--k247-panel-nested-bg:#fff;--k247-panel-nested-border-color:#92bfe7;--k247-panel-nested-nested-bg:rgba(226,244,250,.25);--k247-panel-nested-nested-border-color:#92bfe7;--k247-panel-blue-bg:#e2f4fa;--k247-part-bg:#fff;--k247-part-header-color:var(--k247-main-color);--k247-link-list-bg:#f2f2f2;--k247-link-list-nth-bg:#fff;--k247-link-list-color:#000;--k247-link-list-focus-color:#bd4f4e;--k247-link-list-hover-bg:#b7bfdb;--k247-payment-info-border-color:var(--k247-main-color);--k247-payment-info-bg:#fff;--k247-radio-focus-color:var(--k247-main-color);--k247-radio-stroke-color:#979797;--k247-radio-fill-color:#004179;--k247-read-more-toggle-color:var(--k247-main-color);--k247-read-more-content-bg:#fff;--k247-read-more-content-shadow:rgba(0,0,0,.3);--k247-read-more-link-row-border-color:#eee;--k247-read-more-link-color:var(--k247-main-color);--k247-response-text-color:#b32040;--k247-sign-bg:#b32040;--k247-sign-color:#fff}:root .error-message-text{font-size:16px;font-weight:400}[class*=response-text]:has([data-i18n-backend-options*=isContainer]){margin-top:-6px}:root{--k247-section-top-bg:#fff;--k247-section-top-shadow:rgba(0,0,0,.1);--k247-section-top-hover-border-color:var(--k247-main-color);--k247-section-top-active-border-color:var(--k247-main-color);--k247-section-top-active-shadow:rgba(0,0,0,.3);--k247-section-top-active-head-link-bg:#fff;--k247-section-top-active-head-link-color:var(--k247-main-color);--k247-section-top-li-border-color:#eee;--k247-section-top-li-first-child-border-color:#8f8f8f;--k247-section-top-anchor-color:var(--k247-text-color);--k247-section-top-anchor-hover-bg:#f4f4f4;--k247-section-top-icon-color:var(--k247-main-color);--k247-select-holder-bg:#fff;--k247-select-holder-selector-bg:var(--k247-main-color);--k247-select-holder-selector-icon-color:#fff;--k247-summary-odd-bg:#fff;--k247-summary-even-bg:#f5f5f5;--k247-summary-error-border-color:#bd4f4e;--k247-summary-panel-bg:var(--k247-panel-bg);--k247-summary-panel-odd:var(--k247-panel-bg);--k247-summary-panel-even:#fff;--k247-user-information-anchor-color:#333;--k247-user-information-section-title-color:var(--k247-main-color);--k247-user-information-section-border-color:#979797;--k247-user-information-section-label-value-color:var(--k247-text-color);--k247-main-color:#014179;--k247-text-color:#1e1e1e;--k247-global-bg:#ebebeb;--k247-global-font:"Roboto",sans-serif;--k247-global-anchor-color:var(--k247-main-color);--k247-global-anchor-hover-color:var(--k247-main-color);--k247-std-secondary-color:#e3f4fa}.edoc__form-header__calc-size-title,.edoc__form-header__title{background:transparent;border:0;color:var(--k247-forms-header-title-color);display:block;font-size:18px;font-stretch:normal;font-style:normal;font-weight:700;letter-spacing:normal;line-height:1.5;padding-right:85px;position:relative;text-align:left;text-decoration:none;-webkit-transition:all .25s ease-out;transition:all .25s ease-out;word-break:break-word}.edoc__form-header__calc-size-title:hover,.edoc__form-header__title:hover{color:var(--k247-forms-header-title-hover-color);text-decoration:none}.edoc__form-header__calc-size-title:focus,.edoc__form-header__title:focus{text-decoration:none}.edoc__form-header__calc-size-title:after,.edoc__form-header__title:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--k247-forms-header-title-icon-color);content:"";display:inline-block;font-family:bud_basis;font-size:25px;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;position:absolute;right:0;text-align:center;text-decoration:inherit;text-transform:none;width:1em}@media screen and (min-width:768px){.edoc__form-header__calc-size-title,.edoc__form-header__title{font-size:20px}}.edoc__button,.edoc__header__button,.edoc__print-button{background-color:var(--k247-button-bg);border:1px solid var(--k247-button-border-color);border-radius:var(--k247-button-border-radius);color:var(--k247-button-color);display:inline-block;font-size:var(--k247-button-font-size);padding:8px 15px;text-align:center;-webkit-transition:.3s;transition:.3s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}.edoc__button:hover,.edoc__header__button:hover,.edoc__print-button:hover{background-color:var(--k247-button-hover-bg);border-color:var(--k247-button-hover-border-color);text-decoration:none}.edoc__button:focus,.edoc__header__button:focus,.edoc__print-button:focus{-webkit-box-shadow:0 0 0 .2rem hsla(220,4%,85%,.5);box-shadow:0 0 0 .2rem hsla(220,4%,85%,.5)}[disabled].edoc__button,[disabled].edoc__button:hover,[disabled].edoc__header__button,[disabled].edoc__header__button:hover,[disabled].edoc__print-button,[disabled].edoc__print-button:hover{background-color:var(--k247-button-disabled-bg);border-color:var(--k247-button-disabled-border-color);color:var(--k247-button-disabled-color)}@media screen and (min-width:992px){.edoc__button,.edoc__header__button,.edoc__print-button{padding:8px 30px}}.edoc__button--primary,.edoc__header__button{background-color:var(--k247-button-primary-bg);color:var(--k247-button-primary-color)}.edoc__button--primary:hover,.edoc__header__button:hover{background-color:var(--k247-button-primary-hover-bg);color:var(--k247-button-primary-hover-color)}.l-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.l-justify-content-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.l-justify-content-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.l-flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.l-block{display:block!important}.l-none{display:none!important}.l-inline-block{display:inline-block!important}.l-inline{display:inline!important}.l-relative{position:relative!important}.l-absolute{position:absolute!important}.l-float-right{float:right!important}.s-mb-60{margin-bottom:60px!important}.s-mb-40{margin-bottom:40px!important}.s-mb-25{margin-bottom:25px!important}.s-mb-20{margin-bottom:20px!important}.s-mb-15{margin-bottom:15px!important}.s-mb-5{margin-bottom:5px!important}.s-mt-50{margin-top:50px!important}.s-mt-20{margin-top:20px!important}.s-mt-10{margin-top:10px!important}.s-mt-5{margin-top:5px!important}.s-mr-8{margin-right:8px!important}.dropzone{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:transparent;display:-webkit-box;display:-ms-flexbox;display:flex;height:34px;max-width:100px;min-height:0!important;min-width:100px;padding:0;position:relative;width:100%;z-index:1}.dropzone .dz-message .dz-button{background:none;border:none;color:inherit;cursor:pointer;font:inherit;outline:inherit;padding:0}.custom-dropzone{position:relative}.custom-dropzone:focus,.custom-dropzone:hover{outline:0}.custom-dropzone:focus .dropzone,.custom-dropzone:hover .dropzone{border-color:var(--k247-main-color)}.custom-dropzone:focus,.custom-dropzone:hover{outline:3px solid #98177e!important;outline-offset:2px!important;text-decoration:none}.custom-dropzone{max-width:100%}.duet-date__input{border:1px solid var(--k247-forms-input-border-color);border-radius:3px;font-weight:400;height:auto;line-height:1.5;max-width:200px;padding:6px}.duet-date__input:disabled{background-color:var(--k247-forms-input-disabled-bg);border-color:var(--k247-forms-input-disabled-border-color)}.duet-date__input-wrapper{max-width:200px}.duet-date__toggle{--duet-color-button:#fff}.duet-date__toggle:focus,.duet-date__toggle:hover{background:var(--k247-form-part-active-border-color);color:#fff}.duet-date__toggle:disabled,.duet-date__toggle:disabled:hover{background-color:var(--k247-forms-input-disabled-bg);border-color:var(--k247-forms-input-disabled-border-color)}.duet-date__toggle:disabled:hover{color:initial}@font-face{font-family:Roboto;font-style:normal;font-weight:300;src:local("Roboto Light"),local("Roboto-Light"),url(fonts/roboto-v20-latin-300..woff2) format("woff2"),url(fonts/roboto-v20-latin-300..woff) format("woff")}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local("Roboto"),local("Roboto-Regular"),url(fonts/roboto-v20-latin-regular..woff2) format("woff2"),url(fonts/roboto-v20-latin-regular..woff) format("woff")}@font-face{font-family:Roboto;font-style:normal;font-weight:500;src:local("Roboto Medium"),local("Roboto-Medium"),url(fonts/roboto-v20-latin-500..woff2) format("woff2"),url(fonts/roboto-v20-latin-500..woff) format("woff")}@font-face{font-family:Roboto;font-style:normal;font-weight:700;src:local("Roboto Bold"),local("Roboto-Bold"),url(fonts/roboto-v20-latin-700..woff2) format("woff2"),url(fonts/roboto-v20-latin-700..woff) format("woff")}body{background:var(--k247-global-bg);font-family:var(--k247-global-font);padding-bottom:150px}.loadingPrefill{background:url(images/progress..gif) no-repeat 100%;background-size:20px 20px}a{color:var(--k247-global-anchor-color);text-decoration:underline}a:focus,a:hover{color:var(--k247-global-anchor-hover-color)}.edoc__header__button:focus{color:#fff}.edoc__anchor__blank:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width=%2718%27 height=%2718%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.8 1.05v5.6a.35.35 0 1 1-.7 0V1.895l-8.502 8.502a.35.35 0 0 1-.496-.495L15.605 1.4H10.85a.35.35 0 1 1 0-.7h5.6a.35.35 0 0 1 .35.35zM15.05 9.1a.35.35 0 0 0-.35.35v6.3a.35.35 0 0 1-.35.35H1.75a.35.35 0 0 1-.35-.35V3.15a.35.35 0 0 1 .35-.35h6.3a.35.35 0 1 0 0-.7h-6.3A1.05 1.05 0 0 0 .7 3.15v12.6a1.05 1.05 0 0 0 1.05 1.05h12.6a1.05 1.05 0 0 0 1.05-1.05v-6.3a.35.35 0 0 0-.35-.35z%27 fill=%27%23004179%27/%3E%3C/svg%3E");background-repeat:no-repeat;content:"";display:inline-block;height:18px;margin-left:10px;position:relative;top:3px;width:18px}.edoc__button:focus,.edoc__button:hover{text-decoration:none}.edoc__button--abort:focus,.edoc__button--save:focus,.edoc__button--submit:focus,.edoc__button:focus,.edoc__button:hover{outline:3px solid #98177e!important;outline-offset:2px!important}.edoc__button--submit:hover{background:#007000!important}.edoc__button--full{width:100%}.edoc__button--transparent,.edoc__button--transparent:hover{background:transparent;border:0}.edoc__button--primary-border{background-color:var(--k247-button-primary-border-bg);border:2px solid var(--k247-button-primary-border-border-color);color:var(--k247-button-primary-border-color);font-size:var(--k247-button-primary-border-font-size);font-stretch:normal;font-style:normal;font-weight:700;letter-spacing:normal;line-height:1.5;padding:6px 14px;text-align:center}.edoc__button--primary-border:hover{background-color:var(--k247-button-primary-border-hover-bg);border-color:var(--k247-button-primary-border-hover-border-color);color:var(--k247-button-primary-border-hover-color)}@media screen and (min-width:992px){.edoc__button--primary-border{padding:8px 28px}}.edoc__button--success{background-color:var(--k247-button-success-bg);color:var(--k247-button-success-color)}.edoc__button--success:hover{background-color:var(--k247-button-success-hover-bg);color:var(--k247-button-success-hover-color)}.edoc__button--action{background-color:var(--k247-button-action-bg);color:var(--k247-button-action-color)}.edoc__button--action:hover{background-color:var(--k247-button-action-hover-bg);color:var(--k247-button-action-hover-color)}.edoc__button--danger{background-color:var(--k247-button-danger-bg);color:var(--k247-button-danger-color)}.edoc__button--danger:hover{background-color:var(--k247-button-danger-hover-bg);color:var(--k247-button-danger-hover-color)}.edoc__button--large{font-size:16px}@media screen and (min-width:768px){.edoc__button--large{font-size:18px}}.edoc__button--anchor{background:transparent;border:0;color:var(--k247-global-anchor-color)}.edoc__button--anchor:focus,.edoc__button--anchor:hover{background:transparent;border:0;-webkit-box-shadow:none;box-shadow:none;outline:none;text-decoration:underline}.edoc__button--text-decoration-underline{text-decoration:underline}.edoc__button--letter-spacing-large{letter-spacing:1.6px}.edoc__login-button{background:var(--k247-login-button-bg);border:0;border-radius:2px;color:var(--k247-login-button-color);display:block;margin-bottom:10px;padding:15px 0;text-align:center;text-decoration:none;width:100%}.edoc__login-button:focus,.edoc__login-button:hover{color:var(--k247-login-button-hover-color);outline:3px solid #98177e!important;outline-offset:2px!important;text-decoration:none}.edoc__login-button:last-child{margin-bottom:0}@media screen and (min-width:768px){.edoc__login-button{margin:0 auto 10px;width:400px}.edoc__login-button:last-child{margin-bottom:0}}.edoc__login-button--active-white{background:var(--k247-login-button-active-white-bg);color:var(--k247-login-button-active-white-color)}.edoc__login-button--active{background:var(--k247-login-button-active-bg);color:var(--k247-login-button-active-color)}.edoc__login-button--active:focus,.edoc__login-button--active:hover{color:var(--k247-login-button-active-hover-color)}.edoc__help-button{background:transparent;border:0;display:inline-block;height:24px;margin-left:5px;padding:0;position:relative;width:20px}.edoc__help-button:hover{cursor:pointer}.edoc__help-button[aria-expanded=true]:before{background-color:var(--k247-explain-bg);border-radius:100%;border-bottom-left-radius:0;border-bottom-right-radius:0;content:"";height:30px;left:-5px;position:absolute;top:-5px;width:30px;z-index:0}.edoc__help-button[aria-expanded=true] svg{z-index:10}.edoc__help-button__icon-path{fill:var(--k247-help-button-color)}.edoc__help-button--large{height:21px;width:21px}.edoc__print-button{font-size:18px}.edoc__print-button:hover .edoc__print-button__text{text-decoration:underline}.edoc__print-button__icon:before{font-size:22px}.edoc__delete-attachment-button{padding:0 4px}.edoc__blackout{background:rgba(0,0,0,.6);height:100%;left:0;position:fixed;top:0;width:100%;z-index:20000}.edoc__datepicker-icon{background:var(--k247-datepicker-icon-bg);border:0;padding:0;position:absolute;right:2px;top:8px}.edoc__datepicker-icon:focus{outline:0}.edoc__datepicker-icon:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border-left:1px solid var(--k247-datepicker-border-color);content:"";display:inline-block;font-family:bud_basis;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;padding:4px 10px;text-align:center;text-decoration:inherit;text-transform:none;width:1em;width:auto;z-index:800}.edoc__datepicker-wrapper{max-width:200px;position:relative;z-index:10}.edoc__datepicker-wrapper input{display:inline-block}.edoc__datepicker-wrapper--readonly{position:relative}.edoc__datepicker-wrapper--readonly:after{content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1000}.edoc__datepicker-wrapper--readonly .edoc__datepicker-icon,.edoc__datepicker-wrapper--readonly input{background:var(--k247-forms-input-disabled-bg)!important}.edoc__calculation-sum{background:var(--k247-calculation-sum-bg);color:var(--k247-calculation-sum-color);font-size:18px;font-stretch:normal;font-style:normal;font-weight:700;letter-spacing:normal;line-height:1.28;padding:5px 15px}.edoc__calculation-sum__input{background-color:var(--k247-calculation-sum-input-bg);border:0;border-radius:2px;color:#fff;max-width:540px;min-width:30px;padding:5px 10px}.edoc__calculation-sum__input::-webkit-inner-spin-button,.edoc__calculation-sum__input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.edoc__calculation-sum__input.edoc__form__field-error{color:red}.edoc__checkbox-custom{position:relative}.edoc__checkbox-custom__input{height:16px;left:0;opacity:0;position:absolute;top:3px;width:16px}.edoc__checkbox-custom__label{display:block;font-size:16px;font-weight:400;margin-bottom:0;padding:0 0 0 26px}.edoc__checkbox-custom input+label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg data-edoc-uitype=%27check-enabled-unchecked%27 width=%2716%27 height=%2716%27 aria-hidden=%27true%27 preserveAspectRatio=%27none%27 viewBox=%270 0 20 20%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%2762.5%27 y=%27195.5%27 width=%2719%27 height=%2719%27 rx=%271%27 transform=%27translate%28-62 -195%29%27 stroke=%27%237285A7%27 fill=%27%23fff%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E")}.edoc__checkbox-custom input+label:after,.edoc__checkbox-custom input+label:before{background-repeat:no-repeat;content:"";height:16px;left:0;position:absolute;top:3px;width:16px}.edoc__checkbox-custom input+label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg data-edoc-uitype=%27check-enabled-checked%27 width=%2716%27 height=%2716%27 aria-hidden=%27true%27 preserveAspectRatio=%27none%27 viewBox=%270 0 20 20%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg fill=%27none%27 fill-rule=%27evenodd%27%3E%3Crect class=%27edoc__checkbox-custom__checked-svg__fill%27 x=%27.5%27 y=%27.5%27 width=%2719%27 height=%2719%27 rx=%271%27 fill=%27%23004179%27 stroke=%27%23004179%27/%3E%3Cpath d=%27M14.963 6.188 8.59 12.961 5.002 9.725a.6.6 0 1 0-.804.89l4.025 3.63a.6.6 0 0 0 .838-.033l6.776-7.2a.6.6 0 0 0-.874-.824z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E");opacity:0;-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.edoc__checkbox-custom input:disabled+label:after,.edoc__checkbox-custom input:disabled+label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg data-edoc-uitype=%27check-disabled-unchecked%27 width=%2716%27 height=%2716%27 aria-hidden=%27true%27 viewBox=%270 0 20 20%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%27.5%27 y=%27.5%27 width=%2719%27 height=%2719%27 rx=%271%27 fill=%27%23D8D8D8%27 stroke=%27%237285A7%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E")}.edoc__checkbox-custom input:disabled:checked+label:after,.edoc__checkbox-custom input:disabled:checked+label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg data-edoc-uitype=%27check-disabled-checked%27 width=%2716%27 height=%2716%27 aria-hidden=%27true%27 preserveAspectRatio=%27none%27 viewBox=%270 0 20 20%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg fill=%27none%27 fill-rule=%27evenodd%27%3E%3Crect class=%27edoc__checkbox-custom__checked-svg__fill%27 x=%27.5%27 y=%27.5%27 width=%2719%27 height=%2719%27 rx=%271%27 fill=%27%23D8D8D8%27 stroke=%27%23004179%27/%3E%3Cpath d=%27M14.963 6.188 8.59 12.961 5.002 9.725a.6.6 0 1 0-.804.89l4.025 3.63a.6.6 0 0 0 .838-.033l6.776-7.2a.6.6 0 0 0-.874-.824z%27 fill=%27%23000%27/%3E%3C/g%3E%3C/svg%3E")}.edoc__checkbox-custom input:checked+label:after{opacity:1}.edoc__checkbox-custom input:focus+label:before{-webkit-box-shadow:0 0 0 2px var(--k247-checkbox-focus-color);box-shadow:0 0 0 2px var(--k247-checkbox-focus-color);outline:3px solid transparent}.edoc__checkbox.box{border:2px solid #b3b3b3;border-radius:2px;display:inline-block;margin-bottom:8px;margin-right:8px;position:relative;text-align:center;width:100%}@media screen and (min-width:768px){.edoc__checkbox.box{width:auto}}.edoc__checkbox.box label{padding:15px 30px;text-align:center}.edoc__checkbox.box label input{position:absolute;right:-9px;top:-9px}.edoc__checkbox.ischecked{border-color:var(--k247-checkbox-border-color)}.edoc__checkbox--readonly label:before{background:var(--k247-forms-input-disabled-bg)!important;border:1px solid var(--k247-checkbox-stroke-color)!important}.edoc__checkbox-toggle{height:25px;position:relative;width:57px}.edoc__checkbox-toggle:hover{cursor:pointer}.edoc__checkbox-toggle__input,.edoc__checkbox-toggle__text{opacity:0;position:absolute}.edoc__checkbox-toggle__input:focus+.edoc__checkbox-toggle__bg,.edoc__checkbox-toggle__input:focus+.edoc__checkbox-toggle__bg+.edoc__checkbox-toggle__icon{border:2px solid #000}.edoc__checkbox-toggle__icon{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:var(--k247-checkbox-toggle-icon-bg);border:1px solid var(--k247-checkbox-toggle-icon-border-color);border-radius:100%;color:var(--k247-checkbox-toggle-icon-color);display:-webkit-box;display:-ms-flexbox;display:flex;height:27px;justify-content:center;left:-2px;position:absolute;top:-1px;-webkit-transition:left .2s;transition:left .2s;width:27px}.edoc__checkbox-toggle__icon:before{background:var(--k247-checkbox-toggle-icon-url) no-repeat center center;content:"";display:block;height:14px;width:14px}.edoc__checkbox-toggle__bg{background-color:var(--k247-checkbox-toggle-bg-bg);border:1px solid var(--k247-checkbox-toggle-bg-border-color);border-radius:20px;bottom:0;left:0;position:absolute;right:0;top:0;-webkit-transition:background-color .2s;transition:background-color .2s}.edoc__checkbox-toggle__input:checked+.edoc__checkbox-toggle__bg{background-color:var(--k247-checkbox-toggle-bg-active)}.edoc__checkbox-toggle__input:checked+.edoc__checkbox-toggle__bg+.edoc__checkbox-toggle__icon{left:32px}.edoc__checkbox-toggle__input:checked+.edoc__checkbox-toggle__bg+.edoc__checkbox-toggle__icon:before{background:var(--k247-checkbox-toggle-icon-checked-url) no-repeat center center}.edoc__confirmation-box__button-wrapper{-webkit-box-pack:justify;-ms-flex-pack:justify;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:space-between}.edoc__content-collection{-webkit-box-flex:1;-ms-flex:1;flex:1}.edoc__form-part{background:var(--k247-form-part-bg);border-left:7px solid var(--k247-form-part-border-color);-webkit-box-shadow:2px 2px 1px 0 var(--k247-form-part-shadow-color);box-shadow:2px 2px 1px 0 var(--k247-form-part-shadow-color);font-size:16px;margin-bottom:16px;padding:15px 30px;position:relative}.edoc__form-part .edoc__form-header .edoc__form-header__title:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--k247-form-anchor-color);content:"";display:inline-block;font-family:bud_basis;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;text-align:center;text-decoration:inherit;text-transform:none;top:5px;width:1em;width:auto}.edoc__form-part:hover{border-left-color:var(--k247-form-part-hover-border-color)}.edoc__form-part.active{border-left-color:var(--k247-form-part-active-border-color);-webkit-box-shadow:2px 2px 1px 0 var(--k247-form-part-active-shadow-color);box-shadow:2px 2px 1px 0 var(--k247-form-part-active-shadow-color)}.edoc__form-part.active .edoc__form-content{display:block}.edoc__form-part.active .edoc__form-header .edoc__form-header__title:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--k247-form-part-active-anchor-color);content:"";display:inline-block;font-family:bud_basis;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;text-align:center;text-decoration:inherit;text-transform:none;width:1em}.edoc__form-part.edoc__form-part--no-side-color{border-left-color:#fff}.edoc__form-part a .edoc__iconsim{background:var(--k247-form-part-icon-sim-bg);border-radius:100%;color:var(--k247-form-part-icon-sim-color);display:inline-block;font-size:13px;height:15px;text-align:center;width:15px}.edoc__form-part a:hover .edoc__iconsim{background-color:var(--k247-form-part-icon-sim-hover-color);text-decoration:none}.edoc__form-part a:focus .edoc__iconsim{background-color:var(--k247-form-part-icon-sim-focus-color);text-decoration:none}.edoc__form-content{border-top:1px dotted var(--k247-form-part-content-dotted-color);display:none;margin-top:15px;padding-top:30px}.edoc__form-end{margin-top:30px}.edoc__circle-button{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:transparent;border:0;color:var(--k247-circle-button-color);display:-webkit-box;display:-ms-flexbox;display:flex;font-size:16px;font-stretch:normal;font-style:normal;font-weight:400;letter-spacing:normal;line-height:normal;padding:0}.edoc__circle-button:focus,.edoc__circle-button:hover{color:var(--k247-circle-button-hover-color);text-decoration:none}.edoc__circle-button:after,.edoc__circle-button:before{border:1px solid var(--k247-circle-button-border-color);border-radius:100%;padding:4px}.edoc__circle-button--remove:hover:after{background:var(--k247-circle-button-remove-hover-bg);color:var(--k247-circle-button-remove-hover-color)}.edoc__circle-button--remove[disabled]{color:var(--k247-circle-button-disabled-color)}.edoc__circle-button--remove[disabled]:after{background:var(--k247-circle-button-disabled-bg)}.edoc__circle-button--remove[disabled]:after,.edoc__circle-button--remove[disabled]:hover{border-color:var(--k247-circle-button-disabled-color);color:var(--k247-circle-button-disabled-color)}.edoc__circle-button--remove[disabled]:hover{background:transparent}.edoc__circle-button--remove:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--k247-circle-button-remove-color);content:"";display:inline-block;font-family:bud_basis;font-size:20px;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:10px;margin-right:.2em;text-align:center;text-decoration:inherit;text-transform:none;width:1em;width:auto}.edoc__circle-button--add:hover:before{background:var(--k247-circle-button-add-hover-bg);color:var(--k247-circle-button-add-hover-color)}.edoc__circle-button--add:before{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:var(--k247-circle-button-add-bg);color:var(--k247-circle-button-add-color);content:"";display:inline-block;font-family:bud_basis;font-size:20px;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:10px;text-align:center;text-decoration:inherit;text-transform:none;width:1em;width:auto}.edoc__circle-button--add[disabled]{color:var(--k247-circle-button-disabled-color)}.edoc__circle-button--add[disabled]:before{background:var(--k247-circle-button-disabled-bg)}.edoc__circle-button--add[disabled]:before,.edoc__circle-button--add[disabled]:hover{border-color:var(--k247-circle-button-disabled-color);color:var(--k247-circle-button-disabled-color)}.edoc__circle-button--add[disabled]:hover{background:transparent}.edoc__circle-button__align-left{-webkit-box-pack:start;-ms-flex-pack:start;clear:both;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:flex-start}.edoc__circle-button__align-right{-webkit-box-pack:end;-ms-flex-pack:end;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:flex-end}.edoc__data-grid__table{background:inherit;color:var(--k247-data-grid-table-color);margin-bottom:0;width:100%}.edoc__data-grid__row{-webkit-transition:opacity .5s;transition:opacity .5s}.edoc__data-grid__row--collapsed{opacity:0}.edoc__data-grid__td,.edoc__data-grid__th{border-top:1px solid var(--k247-data-grid-table-border-color);padding:.75rem;vertical-align:top}.edoc__data-grid__th{background:inherit}.edoc__error__boxed-message{background:var(--k247-error-bg);border:2px solid var(--k247-error-border-color);font-weight:500;margin-bottom:10px;padding:20px}.edoc__error__text{color:var(--k247-response-text-color)}.edoc__success__boxed-message{background:#fff;border:2px solid #14a44d;font-weight:500;margin-bottom:10px;padding:20px}.edoc__explain{background-color:var(--k247-explain-bg);border-radius:2px;color:var(--k247-explain-color);display:block;font-size:16px;font-weight:400;margin-bottom:15px;padding:15px;text-align:left}.edoc__form-header__title{width:100%}.edoc__form-header__calc-size-title{position:absolute;top:0;visibility:hidden}.edoc__form__field-error{background:var(--k247-forms-field-error-bg);border:2px solid var(--k247-forms-field-error-border-color)}.datepicker,.edoc__form__input,.edoc__form__select,.edoc__form__textarea{background-clip:padding-box;border:1px solid var(--k247-forms-input-border-color);border-radius:3px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;font-weight:400;height:auto;line-height:1.5;padding:6px;width:100%}.datepicker::-ms-expand,.edoc__form__input::-ms-expand,.edoc__form__select::-ms-expand,.edoc__form__textarea::-ms-expand{background-color:transparent;border:0}.datepicker::-webkit-input-placeholder,.edoc__form__input::-webkit-input-placeholder,.edoc__form__select::-webkit-input-placeholder,.edoc__form__textarea::-webkit-input-placeholder{color:var(--k247-forms-input-placeholder-color);opacity:1}.datepicker::-moz-placeholder,.edoc__form__input::-moz-placeholder,.edoc__form__select::-moz-placeholder,.edoc__form__textarea::-moz-placeholder{color:var(--k247-forms-input-placeholder-color);opacity:1}.datepicker:-ms-input-placeholder,.edoc__form__input:-ms-input-placeholder,.edoc__form__select:-ms-input-placeholder,.edoc__form__textarea:-ms-input-placeholder{color:var(--k247-forms-input-placeholder-color);opacity:1}.datepicker::-ms-input-placeholder,.edoc__form__input::-ms-input-placeholder,.edoc__form__select::-ms-input-placeholder,.edoc__form__textarea::-ms-input-placeholder{color:var(--k247-forms-input-placeholder-color);opacity:1}.datepicker::placeholder,.edoc__form__input::placeholder,.edoc__form__select::placeholder,.edoc__form__textarea::placeholder{color:var(--k247-forms-input-placeholder-color);opacity:1}.datepicker:focus,.datepicker:hover,.edoc__form__input:focus,.edoc__form__input:hover,.edoc__form__select:focus,.edoc__form__select:hover,.edoc__form__textarea:focus,.edoc__form__textarea:hover{-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:border-box;box-sizing:border-box;outline:2px solid var(--k247-forms-input-hover-focus-border-color)}.datepicker:-moz-read-only,.edoc__form__input:-moz-read-only,.edoc__form__select:-moz-read-only,.edoc__form__textarea:-moz-read-only{background-color:var(--k247-forms-input-disabled-bg);border-color:var(--k247-forms-input-disabled-border-color);opacity:1}.datepicker:disabled,.datepicker:read-only,.edoc__form__input:disabled,.edoc__form__input:read-only,.edoc__form__select:disabled,.edoc__form__select:read-only,.edoc__form__textarea:disabled,.edoc__form__textarea:read-only{background-color:var(--k247-forms-input-disabled-bg);border-color:var(--k247-forms-input-disabled-border-color);opacity:1}.datepicker.date,.edoc__form__input.date,.edoc__form__select.date,.edoc__form__textarea.date{position:relative}.datepicker.length-xs,.edoc__form__input.length-xs,.edoc__form__select.length-xs,.edoc__form__textarea.length-xs{max-width:200px}.edoc__form__select{font-size:16px;min-height:38px}.edoc__form__input,.edoc__form__textarea{color:var(--k247-forms-input-color);font-size:16px}.edoc__form__input:focus,.edoc__form__textarea:focus{color:var(--k247-forms-input-color)}.edoc__form__input::-webkit-input-placeholder,.edoc__form__textarea::-webkit-input-placeholder{color:var(--k247-forms-input-textarea-placeholder-color)}.edoc__form__input::-moz-placeholder,.edoc__form__textarea::-moz-placeholder{color:var(--k247-forms-input-textarea-placeholder-color)}.edoc__form__input:-ms-input-placeholder,.edoc__form__textarea:-ms-input-placeholder{color:var(--k247-forms-input-textarea-placeholder-color)}.edoc__form__input::-ms-input-placeholder,.edoc__form__textarea::-ms-input-placeholder{color:var(--k247-forms-input-textarea-placeholder-color)}.edoc__form__input::placeholder,.edoc__form__textarea::placeholder{color:var(--k247-forms-input-textarea-placeholder-color)}.edoc__form__input[type=number]::-webkit-inner-spin-button,.edoc__form__input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.edoc__form__input[type=number]{appearance:none;-webkit-appearance:none;-moz-appearance:textfield;margin:0}.edoc__form-title{color:var(--k247-form-title-color);font-size:26px;margin:0 0 40px}@media screen and (min-width:768px){.edoc__form-title{font-size:30px}}.edoc__form-group{background:var(--k247-form-group-bg);border-left:7px solid var(--k247-form-group-border-color);margin-bottom:20px;padding:15px 0}.edoc__form-group--active{background:var(--k247-form-group-active-bg);border-color:var(--k247-form-group-active-border-color);-webkit-box-shadow:0 1px 5px 0 var(--k247-form-group-active-shadow-color);box-shadow:0 1px 5px 0 var(--k247-form-group-active-shadow-color);padding:15px 0 0}.edoc__form-group__action,.edoc__form-group__header{padding-left:30px;padding-right:30px}.edoc__form-group__header-title{background:transparent;border:0;color:var(--k247-form-group-header-color);display:block;font-size:24px;font-weight:500;padding-left:0;padding-right:50px;position:relative;text-align:left;text-decoration:none;-webkit-transition:all .25s ease-out;transition:all .25s ease-out;width:100%}.edoc__form-group__header-title:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--k247-form-group-header-icon-color);content:"";display:inline-block;font-family:bud_basis;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;position:absolute;right:0;text-align:center;text-decoration:inherit;text-transform:none;width:1em}.edoc__form-group__header-title--active{color:var(--k247-form-group-header-active-color)}.edoc__form-group__header-title--active:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--k247-form-group-header-active-icon-color);content:"";display:inline-block;font-family:bud_basis;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;text-align:center;text-decoration:inherit;text-transform:none;width:1em;width:auto}.edoc__form-group__action{background-color:var(--k247-form-group-action-bg);padding-bottom:15px;padding-top:15px}.edoc__form-group__content{border-bottom:1px solid var(--k247-form-group-content-border-color);padding-top:15px}.edoc__form-group__row-title{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-pack:end;-ms-flex-pack:end;align-items:center;background-color:var(--k247-form-group-row-title-bg);border-bottom:1px solid var(--k247-form-group-row-title-border-color);display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:flex-end;padding:15px 30px;position:relative;width:100%}.edoc__form-group__row-title--active{background:var(--k247-form-group-row-title-active-bg);border-top:1px solid var(--k247-form-group-row-title-active-border-color);position:sticky;top:0;z-index:11}.edoc__form-group__toggle{-webkit-box-flex:1;-ms-flex-positive:1;background:transparent;border:0;color:var(--k247-form-group-toggle-color);flex-grow:1;font-size:18px;line-height:1.67;text-align:left}.edoc__form-group__toggle-arrow{background:transparent;border:0;color:var(--k247-form-group-toggle-arrow-color);font-size:24px;line-height:1.67;padding:0}.edoc__form-group__delete{background:transparent;border:0;border-right:1px solid var(--k247-form-group-delete-border-color);color:var(--k247-form-group-delete-color);font-size:14px;line-height:1.71;margin-right:30px;padding-right:30px}.edoc__form-group__delete[disabled]{color:var(--k247-form-group-delete-disabled-color)}.edoc__form-group__row-content{background:var(--k247-form-group-row-content-bg);padding:30px}.edoc__form-group .edoc__form-part{background-color:var(--k247-form-group-form-part-bg);border-color:var(--k247-form-group-form-part-border-color);border-bottom:1px solid var(--k247-form-group-form-part-border-color);border-right:1px solid var(--k247-form-group-form-part-border-color);border-top:1px solid var(--k247-form-group-form-part-border-color)}.edoc__form-group .active{-webkit-box-shadow:none;box-shadow:none}.edoc__form-group__summary-group{background:var(--k247-form-group-summary-bg);margin-bottom:10px;padding:10px}.edoc__form-group__summary-group .edoc____summary-panel__title,.edoc__form-group__summary-group>strong,.edoc__form-group__summary-title{color:var(--k247-form-group-summary-panel-title-color)}.edoc__form-group__summary-title{font-size:16px;font-stretch:normal;font-style:normal;font-weight:900;letter-spacing:normal;line-height:2.63;margin:0}.edoc__form-group__page{background:var(--k247-form-group-page-bg);padding:10px}.edoc__form-group__page-title{border-bottom:2px solid var(--k247-form-group-page-title-border-color);color:var(--k247-form-group-page-title-color);display:inline-block;font-size:16px;margin-bottom:15px}.k247-footer{color:var(--k247-footer-color);font-size:13px;margin-top:40px}.k247-footer a,.k247-footer button{background:transparent;border:0;color:var(--k247-footer-button-anchor-color);line-height:1;padding:0;text-decoration:underline}.k247-footer a:hover,.k247-footer button:hover{border-bottom:3px solid var(--k247-footer-button-anchor-hover-border-color);text-decoration:none}.k247-footer a:focus,.k247-footer button:focus{-webkit-box-shadow:0 3px 0 0 var(--k247-footer-button-anchor-hover-focus-shadow-color);box-shadow:0 3px 0 0 var(--k247-footer-button-anchor-hover-focus-shadow-color);display:inline-block;text-decoration:none}.edoc__fake-file-input{display:-webkit-box;display:-ms-flexbox;display:flex;left:0;position:absolute;top:2px;width:100%;z-index:0}.edoc__fake-file-input__text{background:var(--k247-fake-file-input-bg);color:var(--k247-fake-file-input-color);cursor:pointer!important;padding:4px 8px;width:70%}.edoc__fake-file-input__submit{background-color:var(--k247-fake-file-input-submit-bg);color:var(--k247-fake-file-input-submit-color);cursor:pointer!important;padding:4px;text-align:center;width:100px}.edoc__disabledattachment{cursor:no-drop;opacity:1;position:relative}.edoc__disabledattachment:after{content:"";display:block;height:101%;left:0;position:absolute;top:0;width:101%;z-index:1000}.edoc__disabledattachment .dz-clickable{cursor:not-allowed;position:relative}.edoc__disabledattachment .dz-clickable:before{content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1000}.edoc__disabledattachment .edoc__fake-file-input__text{background-color:var(--k247-forms-input-disabled-bg)!important}.edoc__disabledattachment .edoc__fake-file-input__submit{background-color:var(--k247-button-disabled-color)!important}.edoc__field-wrapper{margin-bottom:20px;padding-top:5px}.edoc__field-wrapper__field-label{border-bottom:0;color:var(--k247-field-label-color);display:block;font-size:16px;font-weight:500;margin:0 0 4px}.edoc__field-wrapper__fieldset{margin-bottom:15px;padding:0}.edoc__field-wrapper__fieldset i{speak:initial;font-family:inherit!important;font-style:italic;font-weight:inherit}.edoc__head-link{background:transparent;border:0;color:var(--k247-head-link-color);display:-webkit-box;display:-ms-flexbox;display:flex;padding:16px;position:relative;text-align:left;width:100%}.edoc__head-link:hover{color:var(--k247-head-link-color);text-decoration:none}.edoc__head-link:focus{background-color:var(--k247-std-secondary-color);outline:5px solid var(--k247-main-color)}@media screen and (min-width:768px){.edoc__head-link{padding:24px}}.edoc__head-link__category{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:var(--k247-section-top-anchor-color);display:-webkit-box;display:-ms-flexbox;display:flex;font-size:16px;line-height:1.5;padding:16px 16px 16px 24px;text-decoration:none;width:100%;word-break:break-word}.edoc__head-link__category:hover{background:var(--k247-section-top-anchor-hover-bg);text-decoration:none}.edoc__head-link__category:hover .link-text{text-decoration:underline}.edoc__head-link__image{height:auto;margin-right:25px;max-height:30px;max-width:59px}@media screen and (min-width:768px){.edoc__head-link__image{max-width:30px}}.edoc__head-link__title{color:var(--k247-head-link-title-color);display:block;font-size:18px;font-stretch:normal;font-style:normal;font-weight:700;letter-spacing:normal;line-height:1.5;margin:0;word-break:break-word}@media screen and (min-width:768px){.edoc__head-link__title{font-size:20px}}.edoc__head-link__desc{font-size:16px;font-weight:400;margin-bottom:0;max-height:43px;overflow:hidden}.edoc__head-link__icon{font-size:30px;margin-right:25px}.edoc__head-link__icon,.edoc__head-link__icon:hover{color:var(--k247-head-link-icon-color)}.edoc__header{background:var(--k247-header-bg);left:0;margin-bottom:60px;padding:20px 0;position:relative;right:0;top:0;z-index:3}@media screen and (min-width:992px){.edoc__header{padding:20px}}.edoc__header__container{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.edoc__header__container,.edoc__header__nav-items{display:-webkit-box;display:-ms-flexbox;display:flex}.edoc__header__nav-items{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.edoc__header__hidden-for-mobile{display:none}@media screen and (min-width:992px){.edoc__header__hidden-for-mobile{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}}.edoc__header__languages-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}.edoc__header__languages{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:transparent;border:0;border-bottom:1px solid var(--k247-header-lang-border-color);border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--k247-header-lang-color);font-size:16px;font-stretch:normal;font-style:normal;font-weight:400;letter-spacing:normal;line-height:normal;margin:0;padding-bottom:2px}.edoc__header__languages::-ms-expand{display:none}.edoc__header__languages:hover{border-color:var(--k247-header-lang-hover-border-color);cursor:pointer}.edoc__header__languages:focus{background:var(--k247-std-secondary-color);outline:5px solid var(--k247-main-color)}.edoc__header__languages option{font-weight:400}.edoc__header__logo-anchor{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;text-decoration:none}.edoc__header__logo-anchor:hover .edoc__header__logo-text{text-decoration:underline}.edoc__header__logo-anchor:focus{background-color:var(--k247-std-secondary-color);outline:5px solid var(--k247-main-color)}.edoc__header__logo{height:65px;margin-right:5px;max-width:100%}@media screen and (min-width:992px){.edoc__header__logo{margin-right:10px}}.edoc__header__logo-text{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:var(--k247-header-logo-text-color);display:-webkit-box;display:-ms-flexbox;display:flex;font-size:18px}.edoc__header__dropdown{margin-left:10px;position:relative}@media screen and (min-width:992px){.edoc__header__dropdown{margin-left:60px}}.edoc__header__dropdown-button{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:var(--k247-header-drop-down-bg);border:2px solid var(--k247-header-drop-down-border-color);border-radius:2px;color:var(--k247-header-drop-down-color);display:-webkit-box;display:-ms-flexbox;display:flex;font-size:19px;font-weight:700;line-height:1;padding:12px 15px;text-align:right;width:112px}.edoc__header__dropdown-button:focus{background-color:var(--k247-std-secondary-color);outline:5px solid var(--k247-main-color)}.edoc__header-dropdown-button__svg{height:20px;margin-right:8px;width:20px}.edoc__header__dropdown-button__burger-path,.edoc__header__dropdown-button__close-path{fill:var(--k247-header-burger-path-color)}.edoc__header__dropdown__drop-content{background:#fff;-webkit-box-shadow:0 1px 5px 0 var(--k247-header-drop-down-content-shadow-color);box-shadow:0 1px 5px 0 var(--k247-header-drop-down-content-shadow-color);display:none;padding:20px;position:absolute;right:0;top:60px}.edoc__header__dropdown__drop-list{margin-bottom:0}.edoc__header__dropdown__drop-list__anchor{text-decoration:none}.edoc__header__dropdown__drop-list--mobile{padding:0 15px!important;width:100%}.edoc__header__anchor{background:transparent;border:0;color:var(--k247-header-anchor-color);font-size:16px;line-height:1.5;padding:0}.edoc__header__anchor:focus{background-color:var(--k247-std-secondary-color);outline:5px solid var(--k247-main-color)}.edoc__header__global-icon:before{color:var(--k247-header-global-icon-color);content:"";margin-left:0}.edoc__header__global-icon:before,.edoc__header__help-icon:before{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;display:block;font-family:bud_basis;font-size:20px;font-style:normal;font-variant:normal;font-weight:400;height:20px;line-height:1em;margin-right:5px;text-align:center;text-decoration:inherit;text-transform:none;width:1em;width:20px}.edoc__header__help-icon:before{color:var(--k247-header-help-icon-color);content:"";margin-left:.2em}.edoc__header__button{font-size:18px;font-weight:700;padding:15px 0;width:100%}.edoc__mobile-menu__layout .edoc__header__languages-container:after{right:0}.edoc__mobile-menu__layout .edoc__header__languages{color:var(--k247-header-mobile-lang-color)}.edoc__mobile-menu__layout .edoc__header__anchor{color:var(--k247-header-mobile-anchor-color)}.edoc__mobile-menu__layout .edoc__header__global-icon:before{color:var(--k247-header-mobile-global-icon-color)}.edoc__mobile-menu__layout .edoc__header__languages-container:after{color:var(--k247-header-mobile-lang-color)}.edoc__mobile-menu__layout .edoc__header__help-icon:before{color:var(--k247-header-mobile-help-icon-color)}.edoc__help-panel{position:absolute}.edoc__help-panel,.edoc__help-panel__bg{bottom:0;right:0;top:0;-webkit-transition:width .3s;transition:width .3s;width:0}.edoc__help-panel__bg{background:var(--k247-help-panel-bg);-webkit-box-shadow:3px 0 15px 0 var(--k247-help-panel-shadow-color);box-shadow:3px 0 15px 0 var(--k247-help-panel-shadow-color);position:fixed}.edoc__help-panel--open{width:533px;z-index:100}.edoc__help-panel__content{left:0;padding:30px 20px;position:absolute;right:0;top:105px}.edoc__help-panel__close-container{-webkit-box-pack:end;-ms-flex-pack:end;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:flex-end}.edoc__help-panel__close{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-pack:center;-ms-flex-pack:center;align-items:center;background-color:var(--k247-help-panel-close-bg);border:0;border-radius:100%;display:-webkit-box;display:-ms-flexbox;display:flex;height:55px;justify-content:center;min-width:0;width:55px}.edoc__help-panel__svg-path{fill:var(--k247-main-color)}.edoc__help-panel__title{font-size:30px;line-height:1.5;margin-bottom:20px}.edoc__help-panel__section-title,.edoc__help-panel__title{color:var(--k247-help-panel-title-color);font-stretch:normal;font-style:normal;font-weight:700;letter-spacing:normal}.edoc__help-panel__section-title{font-size:18px;line-height:1.33;margin-bottom:10px}.edoc__help-panel__toggle{background-color:var(--k247-help-panel-toggle-bg);border:0;color:var(--k247-help-panel-toggle-color);font-size:16px;font-weight:500;line-height:1.5;padding:12px 30px 12px 20px;position:relative;text-align:left;width:100%}.edoc__help-panel__toggle:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--k247-main-color);content:"";display:inline-block;display:block;font-family:bud_basis;font-size:22px;font-style:normal;font-variant:normal;font-weight:400;height:25px;line-height:1em;margin:0;position:absolute;right:16px;text-align:center;text-decoration:inherit;text-transform:none;top:10px;width:1em;width:25px}.edoc__help-panel__toggle--bordered{border:1px solid var(--k247-help-panel-toggle-border-color)}.edoc__help-panel__toggle--active{background:var(--k247-help-panel-active-bg);color:var(--k247-help-panel-active-color)}.edoc__help-panel__toggle--active:after{background:url(images/chevron-bottom-white..svg) no-repeat;content:"";display:block;height:25px;-webkit-transform:rotate(180deg);transform:rotate(180deg);width:25px}.edoc__help-panel__toggle-content{background:var(--k247-help-panel-toggle-content-bg);color:var(--k247-help-panel-toggle-content-color);display:none;font-size:16px;line-height:1.5;padding:20px}.edoc__help-panel__toggle-content--active{display:block}.header__login{color:var(--k247-header-login-color);font-family:Roboto,"sans-serif";font-size:22px;font-weight:700;line-height:normal;text-align:center}.header__login,.idport-topbar{font-stretch:normal;font-style:normal;letter-spacing:normal}.idport-topbar{background:var(--k247-id-port-top-bar-bg);-webkit-box-shadow:0 3px 3px 0 var(--k247-id-port-top-bar-shadow-color);box-shadow:0 3px 3px 0 var(--k247-id-port-top-bar-shadow-color);color:var(--k247-id-port-top-bar-color);font-size:14px;font-weight:400;line-height:1.54;padding:10px 13px;position:relative;z-index:2}.idport-topbar__container,.idport-topbar__logo{display:-webkit-box;display:-ms-flexbox;display:flex}.idport-topbar__logo{-webkit-box-align:center;-ms-flex-align:center;-ms-flex-negative:0;align-items:center;flex-shrink:0;margin-right:7px}.idport-topbar__logo-img{display:block;height:auto;margin-right:6px;width:25px}.idport-topbar__user{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:auto;overflow:auto;padding-left:26px;position:relative}.idport-topbar__user:before{background:url(images/user-b..svg) no-repeat;content:"";display:block;height:19px;margin-right:7px;min-width:19px;width:19px}.idport-topbar__logout{-ms-flex-negative:0;background:transparent;border:1px solid var(--k247-id-por-logout-color);border-radius:15px;color:var(--k247-id-por-logout-color);flex-shrink:0;height:30px;margin-left:20px;padding:4px 13px}.idport-topbar__logout:hover{cursor:pointer}.edoc__icon.big{font-size:52px}.edoc__img{height:auto;width:100%}.edoc__loader{-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite;border:4px solid #f3f3f3;border-radius:50%;border-top-color:#000;height:20px;width:20px}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.edoc__loader-ellipsis{display:inline-block;height:18px;position:relative;width:64px}.edoc__loader-ellipsis div{-webkit-animation-timing-function:cubic-bezier(0,1,1,0);animation-timing-function:cubic-bezier(0,1,1,0);background:#fff;border-radius:50%;height:11px;position:absolute;top:8px;width:11px}.edoc__loader-ellipsis div:first-child{-webkit-animation:loader-ellipsis1 .6s infinite;animation:loader-ellipsis1 .6s infinite;left:6px}.edoc__loader-ellipsis div:nth-child(2){left:6px}.edoc__loader-ellipsis div:nth-child(2),.edoc__loader-ellipsis div:nth-child(3){-webkit-animation:loader-ellipsis2 .6s infinite;animation:loader-ellipsis2 .6s infinite}.edoc__loader-ellipsis div:nth-child(3){left:26px}.edoc__loader-ellipsis div:nth-child(4){-webkit-animation:loader-ellipsis3 .6s infinite;animation:loader-ellipsis3 .6s infinite;left:45px}@-webkit-keyframes loader-ellipsis1{0%{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes loader-ellipsis1{0%{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes loader-ellipsis3{0%{-webkit-transform:scale(1);transform:scale(1)}to{-webkit-transform:scale(0);transform:scale(0)}}@keyframes loader-ellipsis3{0%{-webkit-transform:scale(1);transform:scale(1)}to{-webkit-transform:scale(0);transform:scale(0)}}@-webkit-keyframes loader-ellipsis2{0%{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translate(19px);transform:translate(19px)}}@keyframes loader-ellipsis2{0%{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translate(19px);transform:translate(19px)}}.edoc__list-unstyled{list-style:none;padding-left:0}.edoc__mobile-menu{background:#fff;bottom:0;display:none;left:0;overflow:auto;padding-top:105px;position:fixed;right:0;top:0;z-index:2}.edoc__mobile-menu--visible{display:block}.edoc__mobile-menu__layout{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;margin-top:60px}.edoc__modal{background:rgba(0,0,0,.5);bottom:0;display:none;left:0;padding-top:100px;position:fixed;right:0;top:0;z-index:3}.edoc__modal--payment{overflow:auto}.edoc__modal__content{margin:60px auto;position:relative;width:90%}@media screen and (min-width:992px){.edoc__modal__content{width:600px}}.edoc__modal__content--payment{background:#fff;margin:0 auto}.edoc__modal__button{background:transparent;border:0;font-weight:700;position:absolute;right:13px;top:7px}.edoc__overview__title{color:var(--k247-overview-title-color);font-size:26px;margin:0 0 20px}@media screen and (min-width:768px){.edoc__overview__title{font-size:30px}}.edoc__overview__search{margin-bottom:20px;position:relative}@media screen and (min-width:768px){.edoc__overview__search{margin-bottom:60px}}.edoc__overview__search-input{border:3px solid var(--k247-overview-search-border-color);border-radius:2px;color:var(--k247-overview-search-color);font-size:18px;font-stretch:normal;font-style:normal;font-weight:400;letter-spacing:normal;line-height:1.67;padding:16px 20px;width:100%}.edoc__overview__search-input:focus,.edoc__overview__search-input:hover{border:5px solid var(--k247-overview-search-hover-focus-border-color);padding:14px 14px 14px 22px}.edoc__overview__search-input:focus::-webkit-input-placeholder{color:transparent}.edoc__overview__search-input:focus::-moz-placeholder{color:transparent}.edoc__overview__search-input:focus:-ms-input-placeholder{color:transparent}.edoc__overview__search-input:focus::-ms-input-placeholder{color:transparent}.edoc__overview__search-input:focus::placeholder{color:transparent}@media screen and (min-width:768px){.edoc__overview__search-input{font-size:20px;line-height:1.5;padding:16px 24px}}.edoc__overview__search-button{background:var(--k247-overview-search-button-bg);border:0;bottom:0;color:var(--k247-overview-search-button-color);padding:0 24px;position:absolute;right:0;top:0}.edoc__overview__search-button:before{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"";display:inline-block;font-family:bud_basis;font-size:22px;font-style:normal;font-variant:normal;font-weight:400;font-weight:700;line-height:1em;margin-left:.2em;margin-right:.2em;text-align:center;text-decoration:inherit;text-transform:none;width:1em}.edoc__overview__to-overview{color:var(--k247-overview-color);font-size:20px;font-stretch:normal;font-style:normal;font-weight:400;letter-spacing:normal;line-height:1.5}.edoc__overview__to-overview:hover{text-decoration:underline}.edoc__overview__to-overview-arrow{color:var(--k247-overview-color);font-size:26px}.edoc__overview__to-overview-arrow-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:30px;margin-left:auto}@media screen and (min-width:768px){.edoc__overview__to-overview-arrow-wrapper{margin-bottom:0;margin-left:0}}.edoc__overview__result-container{-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-box-orient:vertical;-webkit-box-direction:reverse;display:none;-ms-flex-direction:column-reverse;flex-direction:column-reverse;justify-content:space-between;margin-bottom:20px}@media screen and (min-width:768px){.edoc__overview__result-container{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin-bottom:30px}}.edoc__overview__result-text{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;font-size:20px}.edoc__overview__no-hit,.edoc__overview__result-text{color:var(--k247-overview-text-color);font-stretch:normal;font-style:normal;font-weight:400;letter-spacing:normal;line-height:1.5}.edoc__overview__no-hit{background:var(--k247-overview-no-hit-bg);font-size:16px;margin-bottom:120px;padding:16px 30px}.edoc__overview__result-item{background:var(--k247-overview-result-item-bg);-webkit-box-shadow:0 1px 0 0 var(--k247-overview-result-item-shadow);box-shadow:0 1px 0 0 var(--k247-overview-result-item-shadow);display:block;margin-bottom:1px}.edoc__overview__result-item:last-child{margin-bottom:120px}.edoc__overview__result-link{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:var(--k247-overview-result-link-color);display:-webkit-box;display:-ms-flexbox;display:flex;font-size:16px;font-stretch:normal;font-style:normal;font-weight:400;letter-spacing:normal;line-height:1.5;padding:16px 30px;width:100%}.edoc__overview__result-link:hover{background:var(--k247-overview-result-link-hover-bg);color:var(--k247-overview-result-link-color);text-decoration:none}.edoc__overview__result-link:hover .link-text{text-decoration:underline}.part{background:var(--k247-part-bg);padding:30px}.part h2{color:var(--k247-part-header-color)}.part .link-list li{background-color:var(--k247-link-list-bg)}.part .link-list li a{color:var(--k247-link-list-color);display:block;padding:14px}.part .link-list li a:hover{background:var(--k247-link-list-hover-bg)}.part .link-list li a:focus{border-bottom:3px solid var(--k247-link-list-focus-color);text-decoration:none}.part .link-list li:nth-child(odd){background-color:var(--k247-link-list-nth-bg)}.edoc__payment-info{background:var(--k247-payment-info-bg);border:4px solid var(--k247-payment-info-border-color);font-weight:700;margin-bottom:10px;padding:15px}.edoc__panel{background-color:var(--k247-panel-bg);border:1px solid var(--k247-panel-border-color);border-radius:2px;padding-top:20px}.edoc__panel .edoc__panel{background-color:var(--k247-panel-nested-bg);border:1px solid var(--k247-panel-nested-border-color)}.edoc__panel .edoc__panel .edoc__panel{background-color:var(--k247-panel-nested-nested-bg);border:1px solid var(--k247-panel-nested-nested-border-color)}.edoc__panel .edoc__panel--blue{background-color:var(--k247-panel-blue-bg)}.edoc__panel--transition-opacity{-webkit-transition:opacity .5s;transition:opacity .5s}.edoc__panel--collapsed{opacity:0}.edoc__panel--expanded{opacity:1}.edoc__panel--no-border{border:none!important}.edoc__panel--white{background-color:#fff!important}.edoc__panel--blue{background-color:var(--k247-panel-blue-bg)!important}.edoc__panel--light-blue{background-color:#f8fcfe!important}.edoc__panel__title{background:transparent;border:0;display:block;min-height:43px;overflow:hidden;padding:0 50px 20px 20px;position:relative;width:100%}.edoc__panel__title,.edoc__panel__title label{color:var(--k247-panel-text-color);font-size:18px;font-stretch:normal;font-style:normal;font-weight:900;letter-spacing:normal;line-height:1.28;text-align:left}.edoc__panel__title label{width:auto}.edoc__panel__title--no-padding{padding:0 0 20px}.edoc__panel__title--collapsible:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;bottom:0;content:"";display:inline-block;display:-webkit-box;display:-ms-flexbox;display:flex;font-family:bud_basis;font-size:25px;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;position:absolute;right:20px;text-align:center;text-decoration:inherit;text-transform:none;top:0;width:1em;width:auto}.edoc__panel__title--collapsible:hover{cursor:pointer}.edoc__panel__title--chevron-down:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"";display:inline-block;font-family:bud_basis;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;text-align:center;text-decoration:inherit;text-transform:none;width:1em}.edoc__panel__content{padding:0 20px 20px}.edoc__panel__content--no-padding{padding:0}.edoc__panel__content--no-padding>div{overflow:hidden;padding-left:0;padding-right:0}.edoc__privacy__h2{display:inline-block;font-size:24px}.edoc__privacy__h3{display:inline-block;font-size:18px}.edoc__privacy__h4{display:inline-block;font-size:16px}.edoc__response-text{color:var(--k247-response-text-color);display:inline-block;padding-top:5px}.edoc__sign{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-ms-flex-negative:0;align-items:center;background:var(--k247-sign-bg);border-radius:100%;color:var(--k247-sign-color);display:-webkit-box;display:-ms-flexbox;display:flex;flex-shrink:0;font-size:13px;height:20px;justify-content:center;line-height:16px;margin-right:5px;position:relative;top:0;width:20px}.edoc__read-more{margin-bottom:20px;margin-top:-20px;position:relative}.edoc__read-more__toggle{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:transparent;border:0;color:var(--k247-read-more-toggle-color);display:-webkit-box;display:-ms-flexbox;display:flex;font-size:16px;font-stretch:normal;font-style:normal;font-weight:400;letter-spacing:normal;line-height:1.88;margin-bottom:10px;padding:0}.edoc__read-more__toggle:before{background:url(images/chevron-bottom..svg) no-repeat;content:"";display:block;height:20px;margin-right:8px;width:20px}.edoc__read-more__toggle--active:before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.edoc__read-more__content{background:var(--k247-read-more-content-bg);-webkit-box-shadow:2px 2px 1px 0 var(--k247-read-more-content-shadow);box-shadow:2px 2px 1px 0 var(--k247-read-more-content-shadow);display:none}.edoc__read-more__content--active{display:block}.edoc__read-more__link-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-bottom:1px solid var(--k247-read-more-link-row-border-color);display:-webkit-box;display:-ms-flexbox;display:flex;padding:16px 20px}.edoc__read-more__link-row:last-child{border-bottom:0}.edoc__read-more__link{font-size:16px;line-height:1.5;margin-right:8px;text-decoration:underline}.edoc__read-more__link,.edoc__read-more__link-icon{color:var(--k247-read-more-link-color)}.edoc__select-holder{background:var(--k247-select-holder-bg);display:block;overflow:hidden;position:relative;width:100%;z-index:1}.edoc__select-holder .edoc__form__select,.edoc__select-holder select{-webkit-padding-end:40px;-moz-appearance:none;-webkit-appearance:none;appearance:none;background-color:transparent;font-size:19px;padding-right:40px;position:relative;z-index:100}.edoc__select-holder select::-ms-expand{display:none}.edoc__select-holder .edoc__selector{background:var(--k247-select-holder-selector-bg);content:"";display:inline-block;height:100%;padding:8px;position:absolute;right:1px;top:1px;width:30px;z-index:20}.edoc__select-holder .edoc__selector:after{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--k247-select-holder-selector-icon-color);content:"";display:inline-block;font-family:bud_basis;font-size:18px;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin:0;text-align:center;text-decoration:inherit;text-transform:none;width:1em}.edoc__select-holder--readonly select{background:var(--k247-forms-input-disabled-bg)!important}.edoc__select-holder--readonly{position:realtive}.edoc__select-holder--readonly:after{content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1000}.edoc__select-holder--readonly .edoc__selector{background-color:var(--k247-button-disabled-color)!important}.edoc__section-top{background:var(--k247-section-top-bg);border-left:7px solid transparent;-webkit-box-shadow:2px 2px 1px 0 var(--k247-section-top-shadow);box-shadow:2px 2px 1px 0 var(--k247-section-top-shadow);margin-bottom:16px}.edoc__section-top:hover{border-left:7px solid var(--k247-section-top-hover-border-color)}.edoc__section-top.active{border-left:7px solid var(--k247-section-top-active-border-color);-webkit-box-shadow:2px 2px 1px 0 var(--k247-section-top-active-shadow);box-shadow:2px 2px 1px 0 var(--k247-section-top-active-shadow)}.edoc__section-top.active .edoc__head-link:hover{background:var(--k247-section-top-active-head-link-bg)}.edoc__section-top.active .edoc__head-link:hover,.edoc__section-top.active .edoc__head-link:hover *{color:var(--k247-section-top-active-head-link-color)}.edoc__section-top.active .edoc__section-top__icon:before{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.edoc__section-top ul{display:none;margin:0}.edoc__section-top ul li{border-top:1px solid var(--k247-section-top-li-border-color)}.edoc__section-top ul li:first-child{border-top:1px dotted var(--k247-section-top-li-first-child-border-color)}.edoc__section-top:last-child .edoc__head-link{border-bottom:0}.edoc__section-top__icon{color:var(--k247-section-top-icon-color);font-size:25px;margin-left:auto;margin-top:3px}.edoc__section-top__icon:before{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"";display:inline-block;display:block;font-family:bud_basis;font-style:normal;font-variant:normal;font-weight:400;height:24px;line-height:1em;margin-left:.2em;margin-right:.2em;text-align:center;text-decoration:inherit;text-transform:none;width:1em;width:24px}@media screen and (min-width:768px){.edoc__section-top__icon{margin-top:0}}.edoc__summary-row{padding:10px}.edoc__summary-row:nth-child(odd){background-color:var(--k247-summary-odd-bg)}.edoc__summary-row:nth-child(2n){background-color:var(--k247-summary-even-bg)}.edoc__summary-row__error{border-bottom:2px solid var(--k247-summary-error-border-color);display:inline;position:relative}.edoc__summary-panel{background-color:var(--k247-summary-panel-bg);margin-bottom:16px;padding:10px}.edoc__summary-panel .edoc__summary-row:nth-child(odd){background-color:var(--k247-summary-panel-odd)}.edoc__summary-panel .edoc__summary-row:nth-child(2n){background-color:var(--k247-summary-panel-even)}.edoc__summary-panel__title{display:block;margin:10px 0 10px 10px}.edoc__summary-page__summary-text{color:#252525;font-size:18px;font-stretch:normal;font-style:normal;font-weight:400;letter-spacing:normal;line-height:1.5}.edoc__summary-page__summary-text--hidden-when-empty:empty{display:none}.edoc__radio-custom{position:relative}.edoc__radio-custom__input{height:16px;left:0;opacity:0;position:absolute;top:0;width:16px}.edoc__radio-custom__label{display:block;font-size:16px;font-weight:400;margin-bottom:0;padding:0 0 0 26px}.edoc__radio-custom input+label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg data-edoc-uitype=%27radio-enabled-unchecked%27 width=%2716%27 height=%2716%27 aria-hidden=%27true%27 preserveAspectRatio=%27none%27 viewBox=%270 0 22 22%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%2772%27 cy=%27162%27 r=%2710%27 class=%27edoc__radio-custom__radio-svg__stroke%27 transform=%27translate%28-61 -151%29%27 stroke=%27%237285A7%27 fill=%27%23fff%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E")}.edoc__radio-custom input+label:after,.edoc__radio-custom input+label:before{background-repeat:no-repeat;content:"";height:16px;left:0;position:absolute;top:3px;width:16px}.edoc__radio-custom input+label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg data-edoc-uitype=%27radio-enabled-checked%27 width=%2716%27 height=%2716%27 aria-hidden=%27true%27 preserveAspectRatio=%27none%27 viewBox=%270 0 22 22%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg transform=%27translate%281 1%29%27 fill=%27none%27 fill-rule=%27evenodd%27%3E%3Ccircle class=%27edoc__radio-custom__radio-svg__stroke%27 cx=%2710%27 cy=%2710%27 r=%2710%27 stroke=%27%237285A7%27/%3E%3Ccircle class=%27edoc__radio-custom__radio-svg__fill%27 cx=%2710%27 cy=%2710%27 r=%276%27 fill=%27%23004179%27/%3E%3C/g%3E%3C/svg%3E");opacity:0;-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.edoc__radio-custom input:disabled+label:after,.edoc__radio-custom input:disabled+label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg data-edoc-uitype=%27radio-disabled-unchecked%27 width=%2716%27 height=%2716%27 aria-hidden=%27true%27 preserveAspectRatio=%27none%27 viewBox=%270 0 22 22%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%2710%27 cy=%2710%27 r=%2710%27 transform=%27translate%281 1%29%27 fill=%27%23D8D8D8%27 stroke=%27%237285A7%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E")}.edoc__radio-custom input:disabled:checked+label:after,.edoc__radio-custom input:disabled:checked+label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg data-edoc-uitype=%27radio-disabled-checked%27 width=%2716%27 height=%2716%27 aria-hidden=%27true%27 preserveAspectRatio=%27none%27 viewBox=%270 0 22 22%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg transform=%27translate%281 1%29%27 fill=%27%23D8D8D8%27 fill-rule=%27evenodd%27%3E%3Ccircle class=%27edoc__radio-custom__radio-svg__stroke%27 cx=%2710%27 cy=%2710%27 r=%2710%27 stroke=%27%237285A7%27/%3E%3Ccircle class=%27edoc__radio-custom__radio-svg__fill%27 cx=%2710%27 cy=%2710%27 r=%276%27 fill=%27%23004179%27/%3E%3C/g%3E%3C/svg%3E")}.edoc__radio-custom input:checked+label:after{opacity:1}.edoc__radio-custom input:focus+label:before{-webkit-box-shadow:0 0 0 2px var(--k247-radio-focus-color);box-shadow:0 0 0 2px var(--k247-radio-focus-color);outline:3px solid transparent}.edoc__radio-custom--readonly label:before{background:var(--k247-forms-input-disabled-bg)!important;border:1px solid var(--k247-checkbox-stroke-color)!important;border-radius:100%}.edoc__user-information__anchor{color:var(--k247-user-information-anchor-color);display:inline-block;font-size:18px;font-stretch:normal;font-style:normal;font-weight:500;letter-spacing:normal;line-height:normal;text-decoration:underline}.edoc__user-information__section-title{border-bottom:1px solid var(--k247-user-information-section-border-color);color:var(--k247-user-information-section-title-color);font-size:20px;line-height:1.6;margin-bottom:20px;padding-bottom:4px}.edoc__user-information__label,.edoc__user-information__section-title{font-stretch:normal;font-style:normal;font-weight:700;letter-spacing:normal}.edoc__user-information__label,.edoc__user-information__value{color:var(--k247-user-information-section-label-value-color);font-size:16px;line-height:1.75}.edoc__user-information__value{font-stretch:normal;font-style:normal;letter-spacing:normal}.edoc__userform__title{color:var(--k247-global-font);display:block;font-size:28px;font-weight:700;margin:50px 0 45px}.edoc__userform__back-anchor{left:25px;position:relative;top:-40px}.edoc__userform__anchor,.edoc__userform__back-anchor{color:var(--k247-global-font)}.edoc__userform__container{margin:0 auto;padding:0 20px;width:100%}@media screen and (min-width:992px){.edoc__userform__container{padding:0;width:460px}}.edoc__userform__label{color:var(--k247-global-font);display:block;font-size:16px;font-stretch:normal;font-style:normal;font-weight:500;letter-spacing:normal;line-height:normal;margin-bottom:8px}.edoc__userform__input{background-color:#fff;border:1px solid var(--k247-main-color);border-radius:1px;display:block;max-width:460px;padding:8px 11px;width:100%}.edoc__timeout-message{font-size:20px}.edoc__skip-link__ul{list-style-type:none;margin-bottom:0}.edoc__skip-link__link{left:-2000px;position:absolute;top:-100px}.edoc__skip-link__link:focus{background-color:var(--k247-main-color);color:#fff;font-size:2rem;left:42.5%;padding:18px 10px 8px;text-decoration:none;top:0;z-index:1000}.edoc__mt-15{margin-top:15px!important}.edoc__mt-20{margin-top:20px!important}.edoc__mt-30{margin-top:30px!important}.edoc__mr-0{margin-right:0!important}.edoc__mr-5{margin-right:5px!important}.edoc__mr-10{margin-right:10px!important}@media screen and (min-width:992px){.edoc__mr-md-10{margin-right:10px!important}}.edoc__mr-20{margin-right:20px!important}@media screen and (min-width:992px){.edoc__mr-md-20{margin-right:20px!important}}.edoc__mr-30{margin-right:30px!important}.edoc__ml-10{margin-left:10px!important}.edoc__mb-0{margin-bottom:0!important}.edoc__mb-5{margin-bottom:5px!important}.edoc__mb-10{margin-bottom:10px!important}.edoc__mb-20{margin-bottom:20px!important}.edoc__mb-30{margin-bottom:30px!important}.edoc__mb-40{margin-bottom:40px!important}.edoc__mb-50{margin-bottom:50px!important}.edoc__mb-60{margin-bottom:60px!important}.edoc__pl-5{padding-left:5px!important}.edoc__pb-60{padding-bottom:60px!important}.clear-both{clear:both!important}.less-padding{padding:0 5px}.space-top{margin-top:30px}.edoc__full-width{width:100%!important}.edoc__width-180{width:180px!important}.edoc__text-bold{font-weight:700!important}.edoc__text-italic{font-style:italic!important}.edoc__text-underline{text-decoration:underline!important}.edoc__white-space__pre-line{white-space:pre-line!important}.edoc__white-space__nowrap{white-space:nowrap!important}.edoc__text-ellipsis{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.edoc__text-center{text-align:center!important}.edoc__text-right{text-align:right!important}.no-opacity{opacity:1!important}.edoc__d-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.edoc__justify-content-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.edoc__justify-content-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.edoc__align-items-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.edoc__align-items-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.edoc__d-none{display:none!important}.edoc__d-block{display:block!important}.edoc__d-inline-block{display:inline-block!important}@media screen and (min-width:992px){.edoc__d-md-inline{display:inline!important}}.edoc__height-110{height:110px!important}.edoc__visibility-hidden{visibility:hidden!important}
