

/* Start:/local/templates/ronc.site/app/vendors/@alterastro/protocss@1.0.0/protocss.min.css?17303799883531*/
*,:after,:before{background-repeat:no-repeat;box-sizing:border-box}:after,:before{text-decoration:inherit;vertical-align:inherit}*{margin:0;padding:0}:root{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-tap-highlight-color:rgb(0,0,0,0);-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;text-rendering:optimizeLegibility}body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,Liberation Sans,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji,sans-serif;font-size:1rem;font-weight:400;line-height:1.5}hr{color:inherit;height:0}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}abbr[title]{cursor:help;text-decoration:underline;text-decoration:underline dotted;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}ol,ul{list-style:none}b,dt,strong{font-weight:700}small{font-size:.875em}sub,sup{font-size:.75em;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a:active,a:hover{outline-width:0}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{direction:ltr;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em;unicode-bidi:bidi-override}pre{display:block;overflow:auto}pre code{color:inherit;font-size:inherit;word-break:normal}code{word-wrap:break-word}a>code{color:inherit}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}iframe{border-style:none}img,video{height:auto;max-width:100%}table{border-collapse:collapse;border-color:inherit;text-indent:0}th{text-align:inherit;text-align:-webkit-match-parent}button,input,optgroup,select,textarea{background-color:transparent;border-style:none;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}button{border-radius:0}button:focus:not(:focus-visible){outline-width:0}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[role=button],[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[role=button]{color:inherit}select{word-wrap:normal;-moz-appearance:none;-webkit-appearance:none}select:disabled{opacity:1}input{border-radius:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1}label{display:inline-block}fieldset{border:0;min-width:0}legend{float:left;font-size:inherit;font-weight:inherit;line-height:inherit;padding:0;width:100%}legend+*{clear:left}[list]::-webkit-calendar-picker-indicator{display:none}:-moz-ui-invalid{box-shadow:none}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}::-webkit-search-cancel-button,::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{-webkit-appearance:button;color:inherit;font:inherit}[type=search]{-webkit-appearance:textfield;outline-offset:-.125rem}output{display:inline-block}summary{cursor:pointer;display:list-item}progress{vertical-align:baseline}[disabled]{cursor:default}[hidden]{display:none!important}[aria-busy=true]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled=true]{cursor:default}
/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/plugins/focus-ring/focus-ring.css?17303799882117*/
.x-focus-ring {
	--x-focus-ring-active-width: var(--x-comp-focus-ring-active-width, 0.5rem);
	--x-focus-ring-color: var(--x-comp-focus-ring-color, rgb(var(--x-sys-color-secondary)));
	--x-focus-ring-motion-duration: var(--x-comp-focus-ring-motion-duration, var(--x-sys-motion-duration-long4, 600ms));
	--x-focus-ring-motion-easing: var(--x-comp-focus-ring-motion-easing, var(--x-sys-motion-easing-emphasized, cubic-bezier(0.2, 0, 0, 1)));
	--x-focus-ring-inward-offset: var(--x-comp-focus-ring-inward-offset, 0);
	--x-focus-ring-outward-offset: var(--x-comp-focus-ring-outward-offset, 0.125rem);
	--x-focus-ring-shape: var(--x-comp-focus-ring-shape, inherit);
	--x-focus-ring-width: var(--x-comp-focus-ring-width, 0.1875rem);
}

.x-focus-ring {
	animation-delay: 0s, calc(var(--x-focus-ring-motion-duration) * 0.25);
	animation-duration: calc(var(--x-focus-ring-motion-duration) * 0.25), calc(var(--x-focus-ring-motion-duration) * 0.75);
	animation-timing-function: var(--x-focus-ring-motion-easing);
	border-radius: inherit;
	box-sizing: border-box;
	color: var(--x-focus-ring-color);
	display: flex;
	pointer-events: none;
	position: absolute;
}

@media (prefers-reduced-motion: reduce) {
	.x-focus-ring {
		animation: none;
	}
}

.x-focus-ring:not(.x-focus-ring--inward) {
	animation-name: x-outward-grow, x-outward-shrink;
	inset: calc(-1 * var(--x-focus-ring-outward-offset));
	outline: var(--x-focus-ring-width) solid currentColor;
}

.x-focus-ring--inward {
	animation-name: x-inward-grow, x-inward-shrink;
	border: var(--x-focus-ring-width) solid currentColor;
	inset: var(--x-focus-ring-inward-offset);
}

@keyframes x-outward-grow {
	from {
		outline-width: 0;
	}

	to {
		outline-width: var(--x-focus-ring-active-width);
	}
}

@keyframes x-outward-shrink {
	from {
		outline-width: var(--x-focus-ring-active-width);
	}
}

@keyframes x-inward-grow {
	from {
		border-width: 0;
	}

	to {
		border-width: var(--x-focus-ring-active-width);
	}
}

@keyframes x-inward-shrink {
	from {
		border-width: var(--x-focus-ring-active-width);
	}
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/plugins/ripple/ripple.css?1730379988998*/
.x-ripple {
	--x-ripple-motion-duration: var(--x-comp-ripple-motion-duration, 375ms);
	--x-ripple-pressed-color: var(--x-comp-ripple-pressed-color, currentColor);
	--x-ripple-pressed-motion-duration: var(--x-comp-ripple-pressed-motion-duration, 105ms);
	--x-ripple-pressed-opacity: var(--x-comp-ripple-pressed-opacity, var(--x-sys-state-pressed-state-layer-opacity, 0.12));
}

.x-ripple {
	border-radius: inherit;
	display: flex;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	-webkit-tap-highlight-color: transparent;
}

.x-ripple::after {
	background: radial-gradient(closest-side, var(--x-ripple-pressed-color) max(100% - 4.5rem, 65%), transparent 100%);
	content: "";
	opacity: 0;
	position: absolute;
	transform-origin: center center;
	transition: opacity var(--x-ripple-motion-duration) linear;
}

.x-ripple--pressed::after {
	opacity: var(--x-ripple-pressed-opacity);
	transition-duration: var(--x-ripple-pressed-motion-duration);
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/app/app.css?1730379988488*/
.x-app {
	--x-app-container-color: rgb(var(--x-sys-color-background, 255, 255, 255));
	--x-app-text-color: rgb(var(--x-sys-color-on-background, 0, 0, 0));
}

.x-app {
	background-color: var(--x-app-container-color);
	color: var(--x-app-text-color);
	display: flex;
}

.x-app__wrap {
	backface-visibility: hidden;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	max-inline-size: 100%;
	min-block-size: 100vh;
	min-block-size: 100dvh;
	position: relative;
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/app-bar/app-bar.css?1730379988320*/
.x-app-bar.x-toolbar {
	background-color: var(
        --x-comp-app-bar-background,
		rgb(var(--x-sys-color-surface))
    );
	color: var(
        --x-comp-app-bar-color,
		rgb(var(--x-sys-color-on-surface))
    );
}

.x-app-bar:not(.x-toolbar--absolute) {
	padding-inline-end: var(--x-scrollbar-offset);
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/button/button.css?173037998827615*/
.x-button {
	--x-button-container-color: var(--x-comp-button-container-color, rgba(var(--x-sys-color-surface), var(--x-sys-container-opacity)));
	--x-button-container-block-size: var(--x-comp-button-container-block-size, 2.5rem);
	--x-button-container-block-size-reducer: var(--x-comp-button-container-block-size-reducer, 0.5rem);
	--x-button-container-min-inline-size: var(--x-comp-button-container-min-inline-size, 4rem);
	--x-button-container-min-inline-size-reducer: var(--x-comp-button-container-min-inline-size-reducer, 0.5rem);
	--x-button-container-motion-duration: var(--x-comp-button-container-motion-duration, var(--x-sys-motion-duration-short4, 200ms));
	--x-button-container-motion-easing: var(--x-comp-button-container-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
	--x-button-container-motion-property: var(--x-comp-button-container-motion-property, background, border-color, box-shadow, color, opacity, transform);
	--x-button-container-opacity: var(--x-comp-button-container-opacity, 1);
	--x-button-container-shadow-color: var(--x-comp-button-container-shadow-color, var(--x-sys-color-shadow));
	--x-button-container-shape: var(--x-comp-button-container-shape, var(--x-sys-shape-corner-full, 624.9375rem));
	--x-button-density-compact-multiplier: var(--x-comp-button-density-compact-multiplier, -3);
	--x-button-density-comfortable-multiplier: var(--x-comp-button-density-comfortable-multiplier, -2);
	--x-button-density-default-multiplier: var(--x-comp-button-density-default-multiplier, 0);
	--x-button-density-reducer: var(--x-comp-button-density-reducer, 0.25rem);
	--x-button-disabled-container-color: var(--x-comp-button-disabled-container-color, var(--x-sys-color-on-surface));
	--x-button-disabled-container-elevation-level: var(--x-comp-button-disabled-container-elevation-level, 0);
	--x-button-disabled-container-opacity: var(--x-comp-button-disabled-container-opacity, var(--x-sys-state-disabled-container-opacity, 0.12));
	--x-button-disabled-outline-color: var(--x-comp-button-disabled-outline-color, rgb(var(--x-sys-color-on-surface)));
	--x-button-disabled-outline-opacity: var(--x-comp-button-disabled-outline-opacity, var(--x-sys-state-disabled-outline-opacity, 0.12));
	--x-button-disabled-label-text-color: var(--x-comp-button-disabled-label-text-color, var(--x-sys-color-on-surface));
	--x-button-disabled-label-text-opacity: var(--x-comp-button-disabled-label-text-opacity, var(--x-sys-state-disabled-text-opacity, 0.38));
	--x-button-elevated-container-elevation-level: var(--x-comp-button-elevated-container-elevation-level, 1);
	--x-button-elevated-hover-container-elevation-level: var(--x-comp-button-elevated-hover-container-elevation-level, 2);
	--x-button-elevated-focus-container-elevation-level: var(--x-comp-button-elevated-focus-container-elevation-level, 1);
	--x-button-elevated-pressed-container-elevation-level: var(--x-comp-button-elevated-pressed-container-elevation-level, 1);
	--x-button-fab-container-size: var(--x-comp-button-fab-container-size, 3.5rem);
	--x-button-fab-container-size-reducer: var(--x-comp-button-fab-container-size-reducer, 1rem);
	--x-button-fab-container-motion-property: var(--x-comp-button-fab-container-motion-property, background-color, border-color, box-shadow, color, grid-template-columns, block-size, max-inline-size, opacity, transform);
	--x-button-fab-container-shape: var(--x-comp-button-fab-container-shape, var(--x-sys-shape-corner-medium, 0.75rem));
	--x-button-fab-elevated-container-elevation-level: var(--x-comp-button-fab-elevated-container-elevation-level, 3);
	--x-button-fab-elevated-hover-container-elevation-level: var(--x-comp-button-fab-elevated-hover-container-elevation-level, 4);
	--x-button-fab-elevated-focus-container-elevation-level: var(--x-comp-button-fab-elevated-focus-container-elevation-level, 3);
	--x-button-fab-elevated-pressed-container-elevation-level: var(--x-comp-button-fab-elevated-pressed-container-elevation-level, 3);
	--x-button-fab-icon-size: var(--x-comp-button-fab-icon-size, 1.5rem);
	--x-button-fab-icon-size-reducer: var(--x-comp-button-fab-icon-size-reducer, 0.25rem);
	--x-button-fab-icon-size-multiplier: var(--x-comp-button-fab-icon-size-multiplier, 1);
	--x-button-fab-space-between: var(--x-comp-button-fab-space-between, 0.75rem);
	--x-button-fab-space-between-reducer: var(--x-comp-button-fab-space-between-reducer, 0.25rem);
	--x-button-fab-space-between-compensation: var(--x-comp-button-fab-space-between-compensation, -0.25rem);
	--x-button-fab-space-between-compensation-reducer: var(--x-comp-button-fab-space-between-compensation-reducer, 0.125rem);
	--x-button-fab-inline-space: var(--x-comp-button-fab-inline-space, 1.25rem);
	--x-button-fab-inline-space-reducer: var(--x-comp-button-fab-inline-space-reducer, 0.25rem);
	--x-button-filled-container-elevation-level: var(--x-comp-button-filled-container-elevation-level, 0);
	--x-button-filled-hover-container-elevation-level: var(--x-comp-button-filled-hover-container-elevation-level, 1);
	--x-button-filled-focus-container-elevation-level: var(--x-comp-button-filled-focus-container-elevation-level, 0);
	--x-button-filled-pressed-container-elevation-level: var(--x-comp-button-filled-pressed-container-elevation-level, 0);
	--x-button-focus-outline-color: var(--x-comp-button-focus-outline-color, currentColor);
	--x-button-hover-outline-color: var(--x-comp-button-hover-outline-color, rgb(var(--x-sys-color-outline)));
	--x-button-icon-container-shape: var(--x-comp-button-icon-container-shape, var(--x-sys-shape-corner-full, 624.9375rem));
	--x-button-icon-icon-size: var(--x-comp-button-icon-icon-size, 1.5rem);
	--x-button-icon-icon-size-reducer: var(--x-comp-button-icon-icon-size-reducer, 0.25rem);
	--x-button-icon-icon-size-multiplier: var(--x-comp-button-icon-icon-size-multiplier, 1);
	--x-button-icon-size: var(--x-comp-button-icon-size, 1.125rem);
	--x-button-icon-size-reducer: var(--x-comp-button-icon-size-reducer, 0.1875rem);
	--x-button-icon-size-multiplier: var(--x-comp-button-icon-size-multiplier, 0.8571428571);
	--x-button-inline-space: var(--x-comp-button-inline-space, 1.5rem);
	--x-button-inline-space-reducer: var(--x-comp-button-inline-space-reducer, 0.25rem);
	--x-button-label-text-color: var(--x-comp-button-label-text-color, rgb(var(--x-sys-color-on-surface)));
	--x-button-label-text-font: var(--x-comp-button-label-text-font, inherit);
	--x-button-label-text-letter-case: var(--x-comp-button-label-text-letter-case, var(--x-sys-typescale-label-large-letter-case, none));
	--x-button-label-text-line-height: var(--x-comp-button-label-text-line-height, normal);
	--x-button-label-text-motion-duration: var(--x-comp-button-label-text-motion-duration, var(--x-sys-motion-duration-short4, 200ms));
	--x-button-label-text-motion-easing: var(--x-comp-button-label-text-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
	--x-button-label-text-size: var(--x-comp-button-label-text-size, var(--x-sys-typescale-label-large-size, 0.875rem));
	--x-button-label-text-size-reducer: var(--x-comp-button-label-text-size-reducer, 0.125rem);
	--x-button-label-text-weight: var(--x-comp-button-label-text-weight, var(--x-sys-typescale-label-large-weight, 500));
	--x-button-label-text-tracking: var(--x-comp-button-label-text-tracking, var(--x-sys-typescale-label-large-tracking, 0.00625rem));
	--x-button-label-text-white-space: var(--x-comp-button-label-text-white-space, nowrap);
	--x-button-loading-content-opacity: var(--x-comp-button-loading-content-opacity, 0);
	--x-button-outline-color: var(--x-comp-button-outline-color, rgb(var(--x-sys-color-outline)));
	--x-button-outline-style: var(--x-comp-button-outline-style, solid);
	--x-button-outline-width: var(--x-comp-button-outline-width, 0);
	--x-button-outlined-outline-color: var(--x-comp-button-outlined-outline-color, rgb(var(--x-sys-color-outline)));
	--x-button-outlined-outline-width: var(--x-comp-button-outlined-outline-width, 0.0625rem);
	--x-button-outlined-hover-outline-color: var(--x-comp-button-outlined-hover-outline-color, rgb(var(--x-sys-color-outline)));
	--x-button-outlined-focus-outline-color: var(--x-comp-button-outlined-focus-outline-color, currentColor);
	--x-button-plain-opacity: var(--x-comp-button-plain-opacity, 0.72);
	--x-button-pressed-outline-color: var(--x-comp-button-pressed-outline-color, rgb(var(--x-sys-color-outline)));
	--x-button-rounded-container-shape: var(--x-comp-button-rounded-container-shape, var(--x-sys-shape-corner-medium, 0.75rem));
	--x-button-size-x-small-multiplier: var(--x-comp-button-size-x-small-multiplier, -2);
	--x-button-size-small-multiplier: var(--x-comp-button-size-small-multiplier, -1);
	--x-button-size-default-multiplier: var(--x-comp-button-size-default-multiplier, 0);
	--x-button-size-large-multiplier: var(--x-comp-button-size-large-multiplier, 1);
	--x-button-size-x-large-multiplier: var(--x-comp-button-size-x-large-multiplier, 2);
	--x-button-space-between: var(--x-comp-button-space-between, 0.5rem);
	--x-button-space-between-reducer: var(--x-comp-button-space-between-reducer, 0.125rem);
	--x-button-space-between-compensation: var(--x-comp-button-space-between-compensation, -0.5rem);
	--x-button-space-between-compensation-reducer: var(--x-comp-button-space-between-compensation-reducer, -0.125rem);
	--x-button-stacked-container-block-size: var(--x-comp-button-stacked-container-block-size, 5rem);
	--x-button-stacked-container-min-inline-size: var(--x-comp-button-stacked-container-min-inline-size, 5rem);
	--x-button-stacked-icon-size: var(--x-comp-button-stacked-icon-size, 1.5rem);
	--x-button-stacked-icon-size-multiplier: var(--x-comp-button-stacked-icon-size-multiplier, 1.1428571429);
	--x-button-stacked-icon-size-reducer: var(--x-comp-button-stacked-icon-size-reducer, 0.25rem);
	--x-button-stacked-label-text-size: var(--x-comp-button-stacked-label-text-size, var(--x-sys-typescale-label-large-size, 0.875rem));
	--x-button-stacked-inline-space: var(--x-comp-button-stacked-inline-space, 1.5rem);
	--x-button-stacked-label-text-line-height: var(--x-comp-button-stacked-label-text-line-height, 1.5);
	--x-button-stacked-space-between: var(--x-comp-button-stacked-space-between, 0.25rem);
	--x-button-state-layer-motion-duration: var(--x-comp-button-state-layer-motion-duration, var(--x-sys-motion-duration-short4, 200ms));
	--x-button-state-layer-motion-easing: var(--x-comp-button-state-layer-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
	--x-button-tonal-container-opacity: var(--x-comp-button-tonal-container-opacity, var(--x-sys-state-pressed-state-layer-opacity, 0.1));
}

.x-button {
	align-items: center;
	box-sizing: border-box;
	display: inline-grid;
	flex-shrink: 0;
	font-family: var(--x-button-label-text-font);
	font-size: calc(var(--x-button-label-text-size) + var(--x-button-label-text-size-reducer) * var(--_x-button-size-multiplier));
	font-weight: var(--x-button-label-text-weight);
	grid-template-areas: "start content end";
	grid-template-columns: max-content auto max-content;
	justify-content: center;
	letter-spacing: var(--x-button-label-text-tracking);
	line-height: var(--x-button-label-text-line-height);
	max-inline-size: 100%;
	min-inline-size: calc(var(--x-button-container-min-inline-size) + var(--x-button-container-min-inline-size-reducer) * var(--_x-button-size-multiplier));
	outline: none;
	padding-block: 0;
	padding-inline: calc(var(--x-button-inline-space) + var(--x-button-inline-space-reducer) * var(--_x-button-size-multiplier));
	position: relative;
	text-decoration: none;
	text-indent: var(--x-button-label-text-tracking);
	text-transform: var(--x-button-label-text-letter-case);
	transition-duration: var(--x-button-container-motion-duration);
	transition-property: var(--x-button-container-motion-property);
	transition-timing-function: var(--x-button-container-motion-easing);
	user-select: none;
	vertical-align: middle;
	border-color: var(--x-button-outline-color);
	border-style: var(--x-button-outline-style);
	border-width: var(--x-button-outline-width);
	border-radius: var(--x-button-container-shape);
}

.x-button:where(button) {
	-webkit-appearance: button;
}

.x-button:where(a:where([href]), button) {
	cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
	.x-button {
		transition: none;
	}
}

.x-button .x-icon {
	--x-icon-size-multiplier: var(--x-button-icon-size-multiplier);
}

.x-button .x-icon--size-default {
	font-size: calc(var(--x-button-icon-size) + var(--x-button-icon-size-reducer) * var(--_x-button-size-multiplier));
}

.x-button__start,
.x-button__end,
.x-button__content {
	align-items: center;
	display: flex;
	transition-duration: var(--x-button-label-text-motion-duration);
	transition-property: opacity, transform;
	transition-timing-function: var(--x-button-label-text-motion-easing);
	z-index: 1;
}

@media (prefers-reduced-motion: reduce) {

	.x-button__start,
	.x-button__end,
	.x-button__content {
		transition: none;
	}
}

.x-button__start {
	grid-area: start;
	margin-inline-end: calc(var(--x-button-space-between) + var(--x-button-space-between-reducer) * var(--_x-button-size-multiplier));
	margin-inline-start: calc(var(--x-button-space-between-compensation) + var(--x-button-space-between-compensation-reducer) * var(--_x-button-size-multiplier));
}

.x-button__end {
	grid-area: end;
	margin-inline-end: calc(var(--x-button-space-between-compensation) + var(--x-button-space-between-compensation-reducer) * var(--_x-button-size-multiplier));
	margin-inline-start: calc(var(--x-button-space-between) + var(--x-button-space-between-reducer) * var(--_x-button-size-multiplier));
}

.x-button__content {
	grid-area: content;
	justify-content: center;
	white-space: var(--x-button-label-text-white-space);
}

.x-button__content > .x-icon--start {
	margin-inline-end: calc(var(--x-button-space-between) + var(--x-button-space-between-reducer) * var(--_x-button-size-multiplier));
	margin-inline-start: calc(var(--x-button-space-between-compensation) + var(--x-button-space-between-compensation-reducer) * var(--_x-button-size-multiplier));
}

.x-button__content > .x-icon--end {
	margin-inline-end: calc(var(--x-button-space-between-compensation) + var(--x-button-space-between-compensation-reducer) * var(--_x-button-size-multiplier));
	margin-inline-start: calc(var(--x-button-space-between) + var(--x-button-space-between-reducer) * var(--_x-button-size-multiplier));
}

.x-button--stacked > .x-button__content {
	white-space: normal;
}

.x-button__loader {
	align-items: center;
	display: flex;
	justify-content: center;
	z-index: 2;
	inset: 0;
	position: absolute;
}

@media (hover: hover) {
	.x-button:hover > .x-state-layer {
		--x-state-layer-opacity: calc(var(--x-sys-state-hover-state-layer-opacity, 0.08) * var(--x-sys-state-layer-opacity-multiplier, 1));
	}
}

.x-button:focus-visible > .x-state-layer {
	--x-state-layer-opacity: calc(var(--x-sys-state-focus-state-layer-opacity, 0.1) * var(--x-sys-state-layer-opacity-multiplier, 1));
}

@supports not selector(:focus-visible) {
	.x-button:focus > .x-state-layer {
		--x-state-layer-opacity: calc(var(--x-sys-state-focus-state-layer-opacity, 0.1) * var(--x-sys-state-layer-opacity-multiplier, 1));
	}
}

.x-button > .x-state-layer {
	--x-comp-state-layer-motion-duration: var(--x-button-state-layer-motion-duration);
	--x-comp-state-layer-motion-easing: var(--x-button-state-layer-motion-easing);
}

.x-button--disabled {
	cursor: default;
	opacity: 1;
	pointer-events: none;
}

.x-button--disabled.x-button {
	color: rgba(var(--x-button-disabled-label-text-color), var(--x-button-disabled-label-text-opacity)) !important;
}

.x-button--disabled.x-button img {
	filter: grayscale(1);
	opacity: var(--x-card-disabled-text-opacity);
}

.x-button--disabled.x-button--variant-elevated,
.x-button--disabled.x-button--variant-filled {
	--x-elevation-level: var(--x-button-disabled-container-elevation-level);
	background: rgba(var(--x-button-disabled-container-color), var(--x-button-disabled-container-opacity)) !important;
}

.x-button--disabled.x-button--variant-outlined,
.x-button--disabled.x-button--outlined {
	border-color: rgba(var(--x-button-disabled-outline-color), var(--x-button-disabled-outline-opacity));
}

.x-button--loading {
	pointer-events: none;
}

.x-button--loading > .x-button__start,
.x-button--loading > .x-button__end,
.x-button--loading > .x-button__content {
	opacity: var(--x-button-loading-content-opacity);
}

.x-button--size-x-small {
	--_x-button-container-block-size: var(--x-button-container-block-size) + var(--x-button-container-block-size-reducer) * var(--x-button-size-x-small-multiplier);
	--_x-button-size-multiplier: var(--x-button-size-x-small-multiplier);
}

.x-button--size-small {
	--_x-button-container-block-size: var(--x-button-container-block-size) + var(--x-button-container-block-size-reducer) * var(--x-button-size-small-multiplier);
	--_x-button-size-multiplier: var(--x-button-size-small-multiplier);
}

.x-button--size-default {
	--_x-button-container-block-size: var(--x-button-container-block-size) + var(--x-button-container-block-size-reducer) * var(--x-button-size-default-multiplier);
	--_x-button-size-multiplier: var(--x-button-size-default-multiplier);
}

.x-button--size-large {
	--_x-button-container-block-size: var(--x-button-container-block-size) + var(--x-button-container-block-size-reducer) * var(--x-button-size-large-multiplier);
	--_x-button-size-multiplier: var(--x-button-size-large-multiplier);
}

.x-button--size-x-large {
	--_x-button-container-block-size: var(--x-button-container-block-size) + var(--x-button-container-block-size-reducer) * var(--x-button-size-x-large-multiplier);
	--_x-button-size-multiplier: var(--x-button-size-x-large-multiplier);
}

.x-button.x-button--density-default {
	block-size: calc(var(--_x-button-container-block-size) + var(--x-button-density-reducer) * var(--x-button-density-default-multiplier));
}

.x-button.x-button--density-comfortable {
	block-size: calc(var(--_x-button-container-block-size) + var(--x-button-density-reducer) * var(--x-button-density-comfortable-multiplier));
}

.x-button.x-button--density-compact {
	block-size: calc(var(--_x-button-container-block-size) + var(--x-button-density-reducer) * var(--x-button-density-compact-multiplier));
}

.x-button--stacked {
	--x-button-container-block-size: var(--x-button-stacked-container-block-size);
	--x-button-container-min-inline-size: var(--x-button-stacked-container-min-inline-size);
	--x-button-icon-size: var(--x-button-stacked-icon-size);
	--x-button-icon-size-reducer: var(--x-button-stacked-icon-size-reducer);
	--x-button-label-text-size: var(--x-button-stacked-label-text-size);
	--x-button-inline-space: var(--x-button-stacked-inline-space);
	align-content: center;
	grid-template-areas: "start" "content" "end";
	grid-template-columns: auto;
	grid-template-rows: max-content max-content max-content;
	justify-items: center;
}

.x-button--stacked .x-button__content {
	flex-direction: column;
	line-height: var(--x-button-stacked-label-text-line-height);
}

.x-button--stacked .x-button__start,
.x-button--stacked .x-button__end,
.x-button--stacked .x-button__content > .x-icon--start,
.x-button--stacked .x-button__content > .x-icon--end {
	margin-inline-end: 0;
	margin-inline-start: 0;
}

.x-button--stacked .x-button__start,
.x-button--stacked .x-button__content > .x-icon--start {
	margin-bottom: calc(var(--x-button-stacked-space-between));
}

.x-button--stacked .x-button__end,
.x-button--stacked .x-button__content > .x-icon--end {
	margin-top: calc(var(--x-button-stacked-space-between));
}

.x-button--stacked .x-icon {
	--x-icon-size-multiplier: var(--x-button-stacked-icon-size-multiplier);
}

.x-button--block {
	flex: 1 0 auto;
	min-inline-size: 100%;
}

.x-button:where(.x-elevation) {
	--x-elevation-shadow-color: var(--x-button-container-shadow-color);
}

@media (hover: hover) {
	.x-button:where(.x-elevation):where(.x-button--variant-elevated):hover {
		--x-elevation-level: var(--x-button-elevated-hover-container-elevation-level);
	}
}

.x-button:where(.x-elevation):where(.x-button--variant-elevated):focus-visible {
	--x-elevation-level: var(--x-button-elevated-focus-container-elevation-level);
}

@supports not selector(:focus-visible) {
	.x-button:where(.x-elevation):where(.x-button--variant-elevated):focus {
		--x-elevation-level: var(--x-button-elevated-focus-container-elevation-level);
	}
}

.x-button:where(.x-elevation):where(.x-button--variant-elevated):active {
	--x-elevation-level: var(--x-button-elevated-pressed-container-elevation-level);
}

@media (hover: hover) {
	.x-button:where(.x-elevation):where(.x-button--variant-filled):hover {
		--x-elevation-level: var(--x-button-filled-hover-container-elevation-level);
	}
}

.x-button:where(.x-elevation):where(.x-button--variant-filled):focus-visible {
	--x-elevation-level: var(--x-button-filled-focus-container-elevation-level);
}

@supports not selector(:focus-visible) {
	.x-button:where(.x-elevation):where(.x-button--variant-filled):focus {
		--x-elevation-level: var(--x-button-filled-focus-container-elevation-level);
	}
}

.x-button:where(.x-elevation):where(.x-button--variant-filled):active {
	--x-elevation-level: var(--x-button-filled-pressed-container-elevation-level);
}

.x-button--fab {
	--x-button-container-block-size: var(--x-button-fab-container-size);
	--x-button-container-block-size-reducer: var(--x-button-fab-container-size-reducer);
	--x-button-container-motion-property: var(--x-button-fab-container-motion-property);
	--x-button-container-shape: var(--x-button-fab-container-shape);
	--x-button-elevated-container-elevation-level: var(--x-button-fab-elevated-container-elevation-level);
	--x-button-elevated-hover-container-elevation-level: var(--x-button-fab-elevated-hover-container-elevation-level);
	--x-button-elevated-focus-container-elevation-level: var(--x-button-fab-elevated-focus-container-elevation-level);
	--x-button-elevated-pressed-container-elevation-level: var(--x-button-fab-elevated-pressed-container-elevation-level);
	--x-button-icon-size: var(--x-button-fab-icon-size);
	--x-button-icon-size-reducer: var(--x-button-fab-icon-size-reducer);
	--x-button-inline-space: var(--x-button-fab-inline-space);
	--x-button-space-between: var(--x-button-fab-space-between);
	--x-button-space-between-reducer: var(--x-button-fab-space-between-reducer);
	--x-button-space-between-compensation: var(--x-button-fab-space-between-compensation);
	--x-button-space-between-compensation-reducer: var(--x-button-fab-space-between-compensation-reducer);
	justify-content: start;
	min-inline-size: 0;
	overflow-x: clip;
}

.x-button--fab .x-icon {
	--x-icon-size-multiplier: var(--x-button-fab-icon-size-multiplier);
}

.x-button--fab .x-button__start {
	margin-inline-start: calc(var(--x-button-space-between-compensation) + var(--x-button-space-between-compensation-reducer) * var(--_x-button-size-multiplier));
}

.x-button--fab:where(:not(.x-button--fab-extended)) > .x-button__content {
	opacity: 0;
	transition: inherit;
}

.x-button--fab:where(:not(.x-button--fab-extended)).x-button--density-default {
	max-inline-size: calc(var(--_x-button-container-block-size) + var(--x-button-density-reducer) * var(--x-button-density-default-multiplier));
}

.x-button--fab:where(:not(.x-button--fab-extended)).x-button--density-comfortable {
	max-inline-size: calc(var(--_x-button-container-block-size) + var(--x-button-density-reducer) * var(--x-button-density-comfortable-multiplier));
}

.x-button--fab:where(:not(.x-button--fab-extended)).x-button--density-compact {
	max-inline-size: calc(var(--_x-button-container-block-size) + var(--x-button-density-reducer) * var(--x-button-density-compact-multiplier));
}

.x-button--icon {
	--x-button-container-shape: var(--x-button-icon-container-shape);
	--x-button-icon-size: var(--x-button-icon-icon-size);
	--x-button-icon-size-reducer: var(--x-button-icon-icon-size-reducer);
	min-inline-size: 0;
	padding: 0;
}

.x-button--icon .x-icon {
	--x-icon-size-multiplier: var(--x-button-icon-icon-size-multiplier);
}

.x-button--icon.x-button--density-default {
	inline-size: calc(var(--_x-button-container-block-size) + var(--x-button-density-reducer) * var(--x-button-density-default-multiplier));
}

.x-button--icon.x-button--density-comfortable {
	inline-size: calc(var(--_x-button-container-block-size) + var(--x-button-density-reducer) * var(--x-button-density-comfortable-multiplier));
}

.x-button--icon.x-button--density-compact {
	inline-size: calc(var(--_x-button-container-block-size) + var(--x-button-density-reducer) * var(--x-button-density-compact-multiplier));
}

.x-button--outlined {
	border-width: var(--x-button-outlined-outline-width);
}

.x-button--positioning-absolute {
	position: absolute;
}

.x-button--positioning-fixed {
	position: fixed;
}

.x-button--positioning-sticky {
	position: sticky;
}

.x-button--variant-elevated,
.x-button--variant-filled {
	background-color: var(--x-button-container-color);
	color: var(--x-button-label-text-color);
}

.x-button--variant-elevated {
	--x-sys-container-opacity: var(--x-button-container-opacity);
	--x-elevation-level: var(--x-button-elevated-container-elevation-level);
}

.x-button--variant-filled {
	--x-sys-container-opacity: var(--x-button-container-opacity);
	--x-elevation-level: var(--x-button-filled-container-elevation-level);
}

.x-button--variant-outlined,
.x-button--variant-plain,
.x-button--variant-text,
.x-button--variant-tonal {
	background: transparent;
	color: inherit;
}

.x-button--variant-outlined {
	border-color: var(--x-button-outlined-outline-color);
	border-width: var(--x-button-outlined-outline-width);
}

@media (hover: hover) {
	.x-button--variant-outlined:hover {
		border-color: var(--x-button-outlined-hover-outline-color);
	}
}

.x-button--variant-outlined:focus-visible {
	border-color: var(--x-button-outlined-focus-outline-color);
}

@supports not selector(:focus-visible) {
	.x-button--variant-outlined:focus {
		border-color: var(--x-button-outlined-focus-outline-color);
	}
}

.x-button--variant-outlined.x-button--selected,
.x-button[aria-haspopup=menu][aria-expanded=true] {
	border-color: var(--x-button-outlined-pressed-outline-color);
}

.x-button--variant-plain {
	opacity: var(--x-button-plain-opacity);
}

@media (hover: hover) {
	.x-button--variant-plain:hover {
		opacity: 1;
	}
}

.x-button--variant-plain:focus-visible {
	opacity: 1;
}

@supports not selector(:focus-visible) {
	.x-button--variant-plain:focus {
		opacity: 1;
	}
}

.x-button--variant-plain > .x-state-layer {
	display: none;
}

.x-button--variant-plain.x-button--selected,
.x-button[aria-haspopup=menu][aria-expanded=true] {
	opacity: 1;
}

.x-button--variant-tonal {
	--x-sys-container-opacity: var(--x-button-tonal-container-opacity);
}

.x-button--variant-tonal::before {
	background-color: currentColor;
	border-radius: inherit;
	content: "";
	opacity: var(--x-sys-container-opacity);
	pointer-events: none;
	inset: 0;
	position: absolute;
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/card/card.css?173038798218851*/
.x-card {
	--x-card-actions-after-item-block-space-start: var(--x-comp-card-actions-after-item-block-space-start, 0);
	--x-card-actions-button-space-between: var(--x-comp-card-actions-button-space-between, 0.5rem);
	--x-card-actions-block-space: var(--x-comp-card-actions-block-space, 1rem);
	--x-card-actions-inline-space: var(--x-comp-card-actions-inline-space, 1rem);
	--x-card-actions-justify-content: var(--x-comp-card-actions-justify-content, flex-end);
	--x-card-block-space: var(--x-comp-card-block-space, 0);
	--x-card-container-color: var(--x-comp-card-container-color, rgba(var(--x-sys-color-surface), var(--x-sys-container-opacity)));
	--x-card-container-motion-duration: var(--x-comp-card-container-motion-duration, var(--x-sys-motion-duration-short4, 200ms));
	--x-card-container-motion-easing: var(--x-comp-card-container-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
	--x-card-container-motion-property: var(--x-comp-card-container-motion-property, box-shadow, opacity, background);
	--x-card-container-opacity: var(--x-comp-card-container-opacity, 1);
	--x-card-container-shadow-color: var(--x-comp-card-container-shadow-color, var(--x-sys-color-shadow));
	--x-card-container-shape: var(--x-comp-card-container-shape, var(--sys-shape-corner-medium, 0.75rem));
	--x-card-disabled-container-color: var(--x-comp-card-disabled-container-color, var(--x-sys-color-on-surface));
	--x-card-disabled-container-elevation: var(--x-comp-card-disabled-container-elevation, var(--x-elevation-level0));
	--x-card-disabled-container-opacity: var(--x-comp-card-disabled-container-opacity, var(--x-sys-state-disabled-container-opacity, 0.12));
	--x-card-disabled-outline-color: var(--x-comp-card-disabled-outline-color, rgb(var(--x-sys-color-on-surface)));
	--x-card-disabled-outline-opacity: var(--x-comp-card-disabled-outline-opacity, 0.12);
	--x-card-disabled-text-color: var(--x-comp-card-disabled-text-color, var(--x-sys-color-on-surface));
	--x-card-disabled-text-opacity: var(--x-comp-card-disabled-text-opacity, var(--x-sys-state-disabled-text-opacity, 0.38));
	--x-card-elevated-container-elevation-level: var(--x-comp-card-elevated-container-elevation-level, 1);
	--x-card-elevated-hover-container-elevation-level: var(--x-comp-card-elevated-hover-container-elevation-level, 2);
	--x-card-elevated-focus-container-elevation-level: var(--x-comp-card-elevated-focus-container-elevation-level, 1);
	--x-card-elevated-pressed-container-elevation-level: var(--x-comp-card-elevated-pressed-container-elevation-level, 1);
	--x-card-filled-container-elevation-level: var(--x-comp-card-filled-container-elevation-level, 0);
	--x-card-filled-hover-container-elevation-level: var(--x-comp-card-filled-hover-container-elevation-level, 1);
	--x-card-filled-focus-container-elevation-level: var(--x-comp-card-filled-focus-container-elevation-level, 0);
	--x-card-filled-pressed-container-elevation-level: var(--x-comp-card-filled-pressed-container-elevation-level, 0);
	--x-card-focus-outline-color: var(--x-comp-card-focus-outline-color, currentColor);
	--x-card-headline-block-space: var(--x-comp-card-headline-block-space, 0.5rem);
	--x-card-headline-flex: var(--x-comp-card-headline-flex, none);
	--x-card-headline-inline-space: var(--x-comp-card-headline-inline-space, 1rem);
	--x-card-headline-overflow: var(--x-comp-card-headline-overflow, hidden);
	--x-card-headline-overflow-wrap: var(--x-comp-card-headline-overflow-wrap, normal);
	--x-card-headline-text-font: var(--x-comp-card-headline-text-font, inherit);
	--x-card-headline-text-hyphens: var(--x-comp-card-headline-text-hyphens, auto);
	--x-card-headline-text-line-height: var(--x-comp-card-headline-text-line-height, var(--x-sys-typescale-headline-small-line-height, 2rem));
	--x-card-headline-text-overflow: var(--x-comp-card-headline-text-overflow, ellipsis);
	--x-card-headline-text-size: var(--x-comp-card-headline-text-size, var(--x-sys-typescale-headline-small-size, 1.5rem));
	--x-card-headline-text-tracking: var(--x-comp-card-headline-text-tracking, var(--x-sys-typescale-headline-small-tracking, 0));
	--x-card-headline-text-letter-case: var(--x-comp-card-headline-text-letter-case, var(--x-sys-typescale-headline-small-transform, none));
	--x-card-headline-text-weight: var(--x-comp-card-headline-text-weight, var(--x-sys-typescale-headline-small-weight, 400));
	--x-card-headline-text-white-space: var(--x-comp-card-headline-text-white-space, nowrap);
	--x-card-headline-text-word-break: var(--x-comp-card-headline-text-word-break, normal);
	--x-card-headline-text-word-wrap: var(--x-comp-card-headline-text-word-wrap, break-word);
	--x-card-hover-outline-color: var(--x-comp-card-hover-outline-color, rgb(var(--x-sys-color-outline)));
	--x-card-item-before-item-block-space-end: var(--x-comp-card-item-before-item-block-space-end, 0.75rem);
	--x-card-item-after-item-block-space-start: var(--x-comp-card-item-after-item-block-space-start, 0);
	--x-card-item-block-space: var(--x-comp-card-item-block-space, 1rem);
	--x-card-item-inline-space: var(--x-comp-card-item-inline-space, 1rem);
	--x-card-item-space-between: var(--x-comp-card-item-space-between, 1rem);
	--x-card-outline-color: var(--x-comp-card-outline-color, rgb(var(--x-sys-color-outline)));
	--x-card-outline-style: var(--x-comp-card-outline-style, solid);
	--x-card-outline-width: var(--x-comp-card-outline-width, 0);
	--x-card-outlined-outline-color: var(--x-comp-card-outlined-outline-color, rgb(var(--x-sys-color-outline)));
	--x-card-outlined-outline-width: var(--x-comp-card-outlined-outline-width, 0.0625rem);
	--x-card-outlined-hover-outline-color: var(--x-comp-card-outlined-hover-outline-color, rgb(var(--x-sys-color-outline)));
	--x-card-outlined-focus-outline-color: var(--x-comp-card-outlined-focus-outline-color, currentColor);
	--x-card-plain-opacity: var(--x-comp-card-plain-opacity, 0.72);
	--x-card-pressed-outline-color: var(--x-comp-card-pressed-outline-color, rgb(var(--x-sys-color-outline)));
	--x-card-rounded-container-shape: var(--x-comp-card-rounded-container-shape, var(--sys-shape-corner-large, 1rem));
	--x-card-inline-space: var(--x-comp-card-inline-space, 0);
	--x-card-state-layer-motion-duration: var(--x-comp-card-state-layer-motion-duration, var(--x-sys-motion-duration-short4, 200ms));
	--x-card-state-layer-motion-easing: var(--x-comp-card-state-layer-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
	--x-card-subhead-flex: var(--x-comp-card-subhead-flex, none);
	--x-card-subhead-text-font: var(--x-comp-card-subhead-text-font, inherit);
	--x-card-subhead-text-size: var(--x-comp-card-subhead-text-size, var(--x-sys-typescale-title-medium-size, 1rem));
	--x-card-subhead-text-weight: var(--x-comp-card-subhead-text-weight, var(--x-sys-typescale-title-medium-weight, 500));
	--x-card-subhead-block-space: var(--x-comp-card-subhead-block-space, 0);
	--x-card-subhead-inline-space: var(--x-comp-card-subhead-inline-space, 1rem);
	--x-card-subhead-text-tracking: var(--x-comp-card-subhead-text-tracking, var(--x-sys-typescale-title-medium-tracking, 0.009375rem));
	--x-card-subhead-text-line-height: var(--x-comp-card-subhead-text-line-height, var(--x-sys-typescale-title-medium-line-height, 1.5rem));
	--x-card-subhead-opacity: var(--x-comp-card-subhead-opacity, 1);
	--x-card-subhead-overflow: var(--x-comp-card-subhead-overflow, hidden);
	--x-card-subhead-text-overflow: var(--x-comp-card-subhead-text-overflow, ellipsis);
	--x-card-subhead-text-letter-case: var(--x-comp-card-subhead-text-letter-case, var(--x-sys-typescale-title-medium-transform, none));
	--x-card-subhead-text-white-space: var(--x-comp-card-subhead-text-white-space, nowrap);
	--x-card-text-block-space: var(--x-comp-card-text-block-space, 1rem);
	--x-card-text-inline-space: var(--x-comp-card-text-inline-space, 1rem);
	--x-card-text-color: var(--x-comp-card-text-color, rgb(var(--x-sys-color-on-surface)));
	--x-card-text-flex: var(--x-comp-card-text-flex, 1 1 auto);
	--x-card-text-font: var(--x-comp-card-text-font, inherit);
	--x-card-text-size: var(--x-comp-card-text-size, var(--x-sys-typescale-body-medium-size, 0.875rem));
	--x-card-text-weight: var(--x-comp-card-text-weight, var(--x-sys-typescale-body-medium-weight, 400));
	--x-card-text-tracking: var(--x-comp-card-text-tracking, var(--x-sys-typescale-body-medium-tracking, 0.015625rem));
	--x-card-text-line-height: var(--x-comp-card-text-line-height, var(--x-sys-typescale-body-medium-line-height, 1.25rem));
	--x-card-text-transform: var(--x-comp-card-text-transform, var(--x-sys-typescale-body-medium-transform, none));
	--x-card-tonal-container-opacity: var(--x-comp-card-tonal-container-opacity, 0.12);
}

.x-card {
	border-radius: var(--x-card-container-shape);
	box-sizing: border-box;
	display: block;
	outline: none;
	overflow-wrap: break-word;
	padding-block: var(--x-card-block-space);
	padding-inline: var(--x-card-inline-space);
	position: relative;
	text-decoration: none;
	z-index: 0;
	border-color: var(--x-card-outline-color);
	border-style: var(--x-card-outline-style);
	border-width: var(--x-card-outline-width);
}

.x-card__loader {
	bottom: auto;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1;
}

@media (hover: hover) {
	.x-card:hover > .x-state-layer {
		--x-state-layer-opacity: calc(var(--x-sys-state-hover-state-layer-opacity, 0.08) * var(--x-sys-state-layer-opacity-multiplier, 1));
	}
}

.x-card:focus-visible > .x-state-layer {
	--x-state-layer-opacity: calc(var(--x-sys-state-focus-state-layer-opacity, 0.1) * var(--x-sys-state-layer-opacity-multiplier, 1));
}

@supports not selector(:focus-visible) {
	.x-card:focus > .x-state-layer {
		--x-state-layer-opacity: calc(var(--x-sys-state-focus-state-layer-opacity, 0.1) * var(--x-sys-state-layer-opacity-multiplier, 1));
	}
}

.x-card > .x-state-layer {
	--x-comp-state-layer-motion-duration: var(--x-card-state-layer-motion-duration);
	--x-comp-state-layer-motion-easing: var(--x-card-state-layer-motion-easing);
}

.x-card:not(.x-card--interactive) > .x-state-layer {
	display: none;
}

.x-card--interactive {
	cursor: pointer;
	transition-duration: var(--x-card-container-motion-duration);
	transition-property: var(--x-card-container-motion-property);
	transition-timing-function: var(--x-card-container-motion-easing);
	user-select: none;
}

@media (hover: hover) {
	.x-card--interactive.x-elevation.x-card--variant-elevated:hover {
		--x-elevation-level: var(--x-card-elevated-hover-container-elevation-level);
	}
}

.x-card--interactive.x-elevation.x-card--variant-elevated:focus-visible {
	--x-elevation-level: var(--x-card-elevated-focus-container-elevation-level);
}

@supports not selector(:focus-visible) {
	.x-card--interactive.x-elevation.x-card--variant-elevated:focus {
		--x-elevation-level: var(--x-card-elevated-focus-container-elevation-level);
	}
}

.x-card--interactive.x-elevation.x-card--variant-elevated:active {
	--x-elevation-level: var(--x-card-elevated-pressed-container-elevation-level);
}

@media (hover: hover) {
	.x-card--interactive.x-elevation.x-card--variant-filled:hover {
		--x-elevation-level: var(--x-card-filled-hover-container-elevation-level);
	}
}

.x-card--interactive.x-elevation.x-card--variant-filled:focus-visible {
	--x-elevation-level: var(--x-card-filled-focus-container-elevation-level);
}

@supports not selector(:focus-visible) {
	.x-card--interactive.x-elevation.x-card--variant-filled:focus {
		--x-elevation-level: var(--x-card-filled-focus-container-elevation-level);
	}
}

.x-card--interactive.x-elevation.x-card--variant-filled:active {
	--x-elevation-level: var(--x-card-filled-pressed-container-elevation-level);
}

.x-card--disabled {
	opacity: 1;
	pointer-events: none;
	user-select: none;
}

.x-card--disabled.x-card {
	color: rgba(var(--x-card-disabled-text-color), var(--x-card-disabled-text-opacity)) !important;
}

.x-card--disabled.x-card audio,
.x-card--disabled.x-card canvas,
.x-card--disabled.x-card code,
.x-card--disabled.x-card img,
.x-card--disabled.x-card iframe,
.x-card--disabled.x-card video {
	filter: grayscale(1);
	opacity: var(--x-card-disabled-text-opacity);
}

.x-card--disabled.x-card--variant-elevated,
.x-card--disabled.x-card--variant-filled {
	background-color: rgba(var(--x-card-disabled-container-color), var(--x-card-disabled-container-opacity)) !important;
	box-shadow: var(--x-card-disabled-container-elevation);
}

.x-card--disabled.x-card--variant-outlined {
	border-color: rgba(var(--x-card-disabled-outline-color), var(--x-card-disabled-outline-opacity));
}

.x-card:where(.x-elevation) {
	--x-elevation-shadow-color: var(--x-card-container-shadow-color);
}

.x-card--outlined {
	border-width: var(--x-card-outlined-outline-width);
}

.x-card--variant-elevated,
.x-card--variant-filled {
	background-color: var(--x-card-container-color);
	color: var(--x-card-text-color);
}

.x-card--variant-elevated {
	--x-sys-container-opacity: var(--x-card-container-opacity);
	--x-elevation-level: var(--x-card-elevated-container-elevation-level);
}

.x-card--variant-filled {
	--x-sys-container-opacity: var(--x-card-container-opacity);
	--x-elevation-level: var(--x-card-filled-container-elevation-level);
}

.x-card--variant-outlined,
.x-card--variant-plain,
.x-card--variant-text,
.x-card--variant-tonal {
	background: transparent;
	color: inherit;
}

.x-card--variant-outlined {
	border-color: var(--x-card-outlined-outline-color);
	border-width: var(--x-card-outlined-outline-width);
}

@media (hover: hover) {
	.x-card--variant-outlined:hover {
		border-color: var(--x-card-outlined-hover-outline-color);
	}
}

.x-card--variant-outlined:focus-visible {
	border-color: var(--x-card-outlined-focus-outline-color);
}

@supports not selector(:focus-visible) {
	.x-card--variant-outlined:focus {
		border-color: var(--x-card-outlined-focus-outline-color);
	}
}

.x-card--variant-outlined.x-card--selected,
.x-card[aria-haspopup=menu][aria-expanded=true] {
	border-color: var(--x-card-outlined-pressed-outline-color);
}

.x-card--variant-plain {
	opacity: var(--x-card-plain-opacity);
}

@media (hover: hover) {
	.x-card--variant-plain:hover {
		opacity: 1;
	}
}

.x-card--variant-plain:focus-visible {
	opacity: 1;
}

@supports not selector(:focus-visible) {
	.x-card--variant-plain:focus {
		opacity: 1;
	}
}

.x-card--variant-plain > .x-state-layer {
	display: none;
}

.x-card--variant-plain.x-card--selected,
.x-card[aria-haspopup=menu][aria-expanded=true] {
	opacity: 1;
}

.x-card--variant-tonal {
	--x-sys-container-opacity: var(--x-card-tonal-container-opacity);
}

.x-card--variant-tonal::before {
	background-color: currentColor;
	border-radius: inherit;
	content: "";
	opacity: var(--x-sys-container-opacity);
	pointer-events: none;
	inset: 0;
	position: absolute;
}

.x-card-actions {
	align-items: center;
	display: flex;
	flex: none;
	justify-content: var(--x-card-actions-justify-content);
	padding-block: var(--x-card-actions-block-space);
	padding-inline: var(--x-card-actions-inline-space);
}

.x-card-actions > .x-button ~ .x-button {
	margin-inline-start: var(--x-card-actions-button-space-between);
}

.x-card-headline {
	display: block;
	flex: var(--x-card-headline-flex);
	font-family: var(--x-card-headline-text-font);
	font-size: var(--x-card-headline-text-size);
	font-weight: var(--x-card-headline-text-weight);
	hyphens: var(--x-card-headline-text-hyphens);
	letter-spacing: var(--x-card-headline-text-tracking);
	line-height: var(--x-card-headline-text-line-height);
	min-inline-size: 0;
	overflow: var(--x-card-headline-overflow);
	overflow-wrap: var(--x-card-headline-overflow-wrap);
	padding-block: var(--x-card-headline-block-space);
	padding-inline: var(--x-card-headline-inline-space);
	text-overflow: var(--x-card-headline-text-overflow);
	text-transform: var(--x-card-headline-text-letter-case);
	white-space: var(--x-card-headline-text-white-space);
	word-break: var(--x-card-headline-text-word-break);
	word-wrap: var(--x-card-headline-text-word-wrap);
}

.x-card-item .x-card-headline {
	padding: 0;
}

.x-card-headline + .x-card-supporting-text,
.x-card-headline + .x-card-actions {
	padding-block-start: 0;
}

.x-card-item {
	align-items: center;
	display: grid;
	flex: none;
	grid-template-areas: "start content end";
	grid-template-columns: max-content auto max-content;
	padding-block: var(--x-card-item-block-space);
	padding-inline: var(--x-card-item-inline-space);
}

.x-card-item + .x-card-actions {
	padding-block-start: var(--x-card-actions-after-item-block-space-start);
}

.x-card-item:where(:has(+ .x-card-item)),
.x-card-item:where(:has(+ .x-card-supporting-text)) {
	padding-block-end: var(--x-card-item-before-item-block-space-end);
}

.x-card-item + .x-card-item,
.x-card-item + .x-card-supporting-text {
	padding-block-start: var(--x-card-item-after-item-block-space-start);
}

.x-card-item__start {
	grid-area: start;
	margin-inline-end: var(--x-card-item-space-between);
}

.x-card-item__end {
	grid-area: end;
	margin-inline-start: var(--x-card-item-space-between);
}

.x-card-item__content {
	align-self: center;
	grid-area: content;
	overflow: hidden;
}

.x-card-subhead {
	display: block;
	flex: var(--x-card-subhead-flex);
	font-family: var(--x-card-subhead-text-font);
	font-size: var(--x-card-subhead-text-size);
	font-weight: var(--x-card-subhead-text-weight);
	letter-spacing: var(--x-card-subhead-text-tracking);
	line-height: var(--x-card-subhead-text-line-height);
	opacity: var(--x-card-subhead-opacity);
	overflow: var(--x-card-subhead-overflow);
	padding-block: var(--x-card-subhead-block-space);
	padding-inline: var(--x-card-subhead-inline-space);
	text-overflow: var(--x-card-subhead-text-overflow);
	text-transform: var(--x-card-subhead-text-letter-case);
	white-space: var(--x-card-subhead-text-white-space);
}

.x-card-item .x-card-subhead {
	padding: 0;
}

.x-card-supporting-text {
	flex: var(--x-card-text-flex);
	font-family: var(--x-card-text-font);
	font-size: var(--x-card-text-size);
	font-weight: var(--x-card-text-weight);
	letter-spacing: var(--x-card-text-tracking);
	padding-block: var(--x-card-text-block-space);
	padding-inline: var(--x-card-text-inline-space);
	text-transform: var(--x-card-text-letter-case);
}

.x-card-supporting-text + .x-card-actions,
.x-card-supporting-text + .x-card-item,
.x-card-supporting-text + .x-card-supporting-text {
	padding-block-start: 0;
}

.x-card-item .x-card-supporting-text {
	padding: 0;
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/chip/chip.css?173040086620288*/
.x-chip {
	--x-chip-container-color: var(--x-comp-chip-container-color, rgba(var(--x-sys-color-surface), var(--x-sys-container-opacity)));
	--x-chip-container-block-size: var(--x-comp-chip-container-block-size, 2rem);
	--x-chip-container-block-size-reducer: var(--x-comp-chip-container-block-size-reducer, 0.25rem);
	--x-chip-container-motion-duration: var(--x-comp-chip-container-motion-duration, var(--x-sys-motion-duration-short4, 200ms));
	--x-chip-container-motion-easing: var(--x-comp-chip-container-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
	--x-chip-container-motion-property: var(--x-comp-chip-container-motion-property, background, border-color, box-shadow, color, opacity, transform);
	--x-chip-container-opacity: var(--x-comp-chip-container-opacity, 1);
	--x-chip-container-shadow-color: var(--x-comp-chip-container-shadow-color, var(--x-sys-color-shadow));
	--x-chip-container-shape: var(--x-comp-chip-container-shape, var(--x-sys-shape-corner-small, 0.5rem));
	--x-chip-density-compact-multiplier: var(--x-comp-chip-density-compact-multiplier, -3);
	--x-chip-density-comfortable-multiplier: var(--x-comp-chip-density-comfortable-multiplier, -2);
	--x-chip-density-default-multiplier: var(--x-comp-chip-density-default-multiplier, 0);
	--x-chip-density-reducer: var(--x-comp-chip-density-reducer, 0.25rem);
	--x-chip-disabled-container-color: var(--x-comp-chip-disabled-container-color, var(--x-sys-color-on-surface));
	--x-chip-disabled-container-elevation-level: var(--x-comp-chip-disabled-container-elevation-level, 0);
	--x-chip-disabled-container-opacity: var(--x-comp-chip-disabled-container-opacity, var(--x-sys-state-disabled-container-opacity, 0.12));
	--x-chip-disabled-outline-color: var(--x-comp-chip-disabled-outline-color, rgb(var(--x-sys-color-on-surface)));
	--x-chip-disabled-outline-opacity: var(--x-comp-chip-disabled-outline-opacity, var(--x-sys-state-disabled-outline-opacity, 0.12));
	--x-chip-disabled-label-text-color: var(--x-comp-chip-disabled-label-text-color, var(--x-sys-color-on-surface));
	--x-chip-disabled-label-text-opacity: var(--x-comp-chip-disabled-label-text-opacity, var(--x-sys-state-disabled-text-opacity, 0.38));
	--x-chip-elevated-container-elevation-level: var(--x-comp-chip-elevated-container-elevation-level, 1);
	--x-chip-elevated-hover-container-elevation-level: var(--x-comp-chip-elevated-hover-container-elevation-level, 2);
	--x-chip-elevated-focus-container-elevation-level: var(--x-comp-chip-elevated-focus-container-elevation-level, 1);
	--x-chip-elevated-pressed-container-elevation-level: var(--x-comp-chip-elevated-pressed-container-elevation-level, 1);
	--x-chip-filled-container-elevation-level: var(--x-comp-chip-filled-container-elevation-level, 0);
	--x-chip-filled-hover-container-elevation-level: var(--x-comp-chip-filled-hover-container-elevation-level, 1);
	--x-chip-filled-focus-container-elevation-level: var(--x-comp-chip-filled-focus-container-elevation-level, 0);
	--x-chip-filled-pressed-container-elevation-level: var(--x-comp-chip-filled-pressed-container-elevation-level, 0);
	--x-chip-focus-outline-color: var(--x-comp-chip-focus-outline-color, currentColor);
	--x-chip-hover-outline-color: var(--x-comp-chip-hover-outline-color, rgb(var(--x-sys-color-outline)));
	--x-chip-icon-size: var(--x-comp-chip-icon-size, 1.125rem);
	--x-chip-icon-size-reducer: var(--x-comp-chip-icon-size-reducer, 0.1875rem);
	--x-chip-icon-size-multiplier: var(--x-comp-chip-icon-size-multiplier, 0.8571428571);
	--x-chip-inline-space: var(--x-comp-chip-inline-space, 1rem);
	--x-chip-inline-space-reducer: var(--x-comp-chip-inline-space-reducer, 0.25rem);
	--x-chip-label-text-color: var(--x-comp-chip-label-text-color, rgb(var(--x-sys-color-on-surface)));
	--x-chip-label-text-font: var(--x-comp-chip-label-text-font, inherit);
	--x-chip-label-text-letter-case: var(--x-comp-chip-label-text-letter-case, var(--x-sys-typescale-label-large-letter-case, none));
	--x-chip-label-text-line-height: var(--x-comp-chip-label-text-line-height, normal);
	--x-chip-label-text-motion-duration: var(--x-comp-chip-label-text-motion-duration, var(--x-sys-motion-duration-short4, 200ms));
	--x-chip-label-text-motion-easing: var(--x-comp-chip-label-text-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
	--x-chip-label-text-size: var(--x-comp-chip-label-text-size, var(--x-sys-typescale-label-large-size, 0.875rem));
	--x-chip-label-text-size-reducer: var(--x-comp-chip-label-text-size-reducer, 0.125rem);
	--x-chip-label-text-weight: var(--x-comp-chip-label-text-weight, var(--x-sys-typescale-label-large-weight, 500));
	--x-chip-label-text-tracking: var(--x-comp-chip-label-text-tracking, var(--x-sys-typescale-label-large-tracking, 0.00625rem));
	--x-chip-label-text-white-space: var(--x-comp-chip-label-text-white-space, nowrap);
	--x-chip-loading-content-opacity: var(--x-comp-chip-loading-content-opacity, 0);
	--x-chip-outline-color: var(--x-comp-chip-outline-color, rgb(var(--x-sys-color-outline)));
	--x-chip-outline-style: var(--x-comp-chip-outline-style, solid);
	--x-chip-outline-width: var(--x-comp-chip-outline-width, 0);
	--x-chip-outlined-outline-color: var(--x-comp-chip-outlined-outline-color, rgb(var(--x-sys-color-outline)));
	--x-chip-outlined-outline-width: var(--x-comp-chip-outlined-outline-width, 0.0625rem);
	--x-chip-outlined-hover-outline-color: var(--x-comp-chip-outlined-hover-outline-color, rgb(var(--x-sys-color-outline)));
	--x-chip-outlined-focus-outline-color: var(--x-comp-chip-outlined-focus-outline-color, currentColor);
	--x-chip-plain-opacity: var(--x-comp-chip-plain-opacity, 0.72);
	--x-chip-pressed-outline-color: var(--x-comp-chip-pressed-outline-color, rgb(var(--x-sys-color-outline)));
	--x-chip-selected-container-color: var(--x-comp-chip-selected-container-color, unset);
	--x-chip-selected-label-text-color: var(--x-comp-chip-selected-label-text-color, unset);
	--x-chip-selected-outline-color: var(--x-comp-chip-selected-outline-color, unset);
	--x-chip-size-x-small-multiplier: var(--x-comp-chip-size-x-small-multiplier, -2);
	--x-chip-size-small-multiplier: var(--x-comp-chip-size-small-multiplier, -1);
	--x-chip-size-default-multiplier: var(--x-comp-chip-size-default-multiplier, 0);
	--x-chip-size-large-multiplier: var(--x-comp-chip-size-large-multiplier, 1);
	--x-chip-size-x-large-multiplier: var(--x-comp-chip-size-x-large-multiplier, 2);
	--x-chip-space-between: var(--x-comp-chip-space-between, 0.5rem);
	--x-chip-space-between-reducer: var(--x-comp-chip-space-between-reducer, 0.125rem);
	--x-chip-space-between-compensation: var(--x-comp-chip-space-between-compensation, -0.5rem);
	--x-chip-space-between-compensation-reducer: var(--x-comp-chip-space-between-compensation-reducer, -0.125rem);
	--x-chip-state-layer-motion-duration: var(--x-comp-chip-state-layer-motion-duration, var(--x-sys-motion-duration-short4, 200ms));
	--x-chip-state-layer-motion-easing: var(--x-comp-chip-state-layer-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
	--x-chip-tonal-container-opacity: var(--x-comp-chip-tonal-container-opacity, var(--x-sys-state-pressed-state-layer-opacity, 0.1));
}

.x-chip {
	align-items: center;
	box-sizing: border-box;
	display: inline-grid;
	flex-shrink: 0;
	font-family: var(--x-chip-label-text-font);
	font-size: calc(var(--x-chip-label-text-size) + var(--x-chip-label-text-size-reducer) * var(--_x-chip-size-multiplier));
	font-weight: var(--x-chip-label-text-weight);
	grid-template-areas: "start content end";
	grid-template-columns: max-content auto max-content;
	justify-content: start;
	letter-spacing: var(--x-chip-label-text-tracking);
	line-height: var(--x-chip-label-text-line-height);
	max-inline-size: 100%;
	min-inline-size: 0;
	outline: none;
	padding-block: 0;
	padding-inline: calc(var(--x-chip-inline-space) + var(--x-chip-inline-space-reducer) * var(--_x-chip-size-multiplier));
	position: relative;
	text-decoration: none;
	text-indent: var(--x-chip-label-text-tracking);
	text-transform: var(--x-chip-label-text-letter-case);
	transition-duration: var(--x-chip-container-motion-duration);
	transition-property: var(--x-chip-container-motion-property);
	transition-timing-function: var(--x-chip-container-motion-easing);
	user-select: none;
	vertical-align: middle;
	border-color: var(--x-chip-outline-color);
	border-style: var(--x-chip-outline-style);
	border-width: var(--x-chip-outline-width);
	border-radius: var(--x-chip-container-shape);
}

.x-chip:where(button) {
	-webkit-appearance: button;
}

.x-chip:where(a:where([href]), button) {
	cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
	.x-chip {
		transition: none;
	}
}

.x-chip .x-icon {
	--x-icon-size-multiplier: var(--x-chip-icon-size-multiplier);
}

.x-chip .x-icon--size-default {
	font-size: calc(var(--x-chip-icon-size) + var(--x-chip-icon-size-reducer) * var(--_x-chip-size-multiplier));
}

.x-chip__start,
.x-chip__end,
.x-chip__content {
	align-items: center;
	display: flex;
	transition-duration: var(--x-chip-label-text-motion-duration);
	transition-property: opacity, transform;
	transition-timing-function: var(--x-chip-label-text-motion-easing);
	z-index: 1;
}

@media (prefers-reduced-motion: reduce) {

	.x-chip__start,
	.x-chip__end,
	.x-chip__content {
		transition: none;
	}
}

.x-chip__start {
	grid-area: start;
	margin-inline-end: calc(var(--x-chip-space-between) + var(--x-chip-space-between-reducer) * var(--_x-chip-size-multiplier));
	margin-inline-start: calc(var(--x-chip-space-between-compensation) + var(--x-chip-space-between-compensation-reducer) * var(--_x-chip-size-multiplier));
}

.x-chip__end {
	grid-area: end;
	margin-inline-end: calc(var(--x-chip-space-between-compensation) + var(--x-chip-space-between-compensation-reducer) * var(--_x-chip-size-multiplier));
	margin-inline-start: calc(var(--x-chip-space-between) + var(--x-chip-space-between-reducer) * var(--_x-chip-size-multiplier));
}

.x-chip__content {
	grid-area: content;
	justify-content: center;
	white-space: var(--x-chip-label-text-white-space);
}

.x-chip__content > .x-icon--start {
	margin-inline-end: calc(var(--x-chip-space-between) + var(--x-chip-space-between-reducer) * var(--_x-chip-size-multiplier));
	margin-inline-start: calc(var(--x-chip-space-between-compensation) + var(--x-chip-space-between-compensation-reducer) * var(--_x-chip-size-multiplier));
}

.x-chip__content > .x-icon--end {
	margin-inline-end: calc(var(--x-chip-space-between-compensation) + var(--x-chip-space-between-compensation-reducer) * var(--_x-chip-size-multiplier));
	margin-inline-start: calc(var(--x-chip-space-between) + var(--x-chip-space-between-reducer) * var(--_x-chip-size-multiplier));
}

.x-chip--stacked > .x-chip__content {
	white-space: normal;
}

.x-chip__loader {
	align-items: center;
	display: flex;
	justify-content: center;
	z-index: 2;
	inset: 0;
	position: absolute;
}

@media (hover: hover) {
	.x-chip:hover > .x-state-layer {
		--x-state-layer-opacity: calc(var(--x-sys-state-hover-state-layer-opacity, 0.08) * var(--x-sys-state-layer-opacity-multiplier, 1));
	}
}

.x-chip:focus-visible > .x-state-layer {
	--x-state-layer-opacity: calc(var(--x-sys-state-focus-state-layer-opacity, 0.1) * var(--x-sys-state-layer-opacity-multiplier, 1));
}

@supports not selector(:focus-visible) {
	.x-chip:focus > .x-state-layer {
		--x-state-layer-opacity: calc(var(--x-sys-state-focus-state-layer-opacity, 0.1) * var(--x-sys-state-layer-opacity-multiplier, 1));
	}
}

.x-chip > .x-state-layer {
	--x-comp-state-layer-motion-duration: var(--x-chip-state-layer-motion-duration);
	--x-comp-state-layer-motion-easing: var(--x-chip-state-layer-motion-easing);
}

.x-chip:not(.x-chip--interactive) > .x-state-layer {
	display: none;
}

.x-chip--interactive {
	cursor: pointer;
	transition-duration: var(--x-chip-container-motion-duration);
	transition-property: var(--x-chip-container-motion-property);
	transition-timing-function: var(--x-chip-container-motion-easing);
	user-select: none;
}

@media (hover: hover) {
	.x-chip--interactive.x-elevation.x-chip--variant-elevated:hover {
		--x-elevation-level: var(--x-chip-elevated-hover-container-elevation-level);
	}
}

.x-chip--interactive.x-elevation.x-chip--variant-elevated:focus-visible {
	--x-elevation-level: var(--x-chip-elevated-focus-container-elevation-level);
}

@supports not selector(:focus-visible) {
	.x-chip--interactive.x-elevation.x-chip--variant-elevated:focus {
		--x-elevation-level: var(--x-chip-elevated-focus-container-elevation-level);
	}
}

.x-chip--interactive.x-elevation.x-chip--variant-elevated:active {
	--x-elevation-level: var(--x-chip-elevated-pressed-container-elevation-level);
}

@media (hover: hover) {
	.x-chip--interactive.x-elevation.x-chip--variant-filled:hover {
		--x-elevation-level: var(--x-chip-filled-hover-container-elevation-level);
	}
}

.x-chip--interactive.x-elevation.x-chip--variant-filled:focus-visible {
	--x-elevation-level: var(--x-chip-filled-focus-container-elevation-level);
}

@supports not selector(:focus-visible) {
	.x-chip--interactive.x-elevation.x-chip--variant-filled:focus {
		--x-elevation-level: var(--x-chip-filled-focus-container-elevation-level);
	}
}

.x-chip--interactive.x-elevation.x-chip--variant-filled:active {
	--x-elevation-level: var(--x-chip-filled-pressed-container-elevation-level);
}

.x-chip--disabled {
	cursor: default;
	opacity: 1;
	pointer-events: none;
}

.x-chip--disabled.x-chip {
	color: rgba(var(--x-chip-disabled-label-text-color), var(--x-chip-disabled-label-text-opacity)) !important;
}

.x-chip--disabled.x-chip img {
	filter: grayscale(1);
	opacity: var(--x-chip-disabled-text-opacity);
}

.x-chip--disabled.x-chip--variant-elevated,
.x-chip--disabled.x-chip--variant-filled {
	--x-elevation-level: var(--x-chip-disabled-container-elevation-level);
	background: rgba(var(--x-chip-disabled-container-color), var(--x-chip-disabled-container-opacity)) !important;
}

.x-chip--disabled.x-chip--variant-outlined,
.x-chip--disabled.x-chip--outlined {
	border-color: rgba(var(--x-chip-disabled-outline-color), var(--x-chip-disabled-outline-opacity));
}

.x-chip--loading {
	pointer-events: none;
}

.x-chip--loading > .x-chip__start,
.x-chip--loading > .x-chip__end,
.x-chip--loading > .x-chip__content {
	opacity: var(--x-chip-loading-content-opacity);
}

.x-chip--size-x-small {
	--_x-chip-container-block-size: var(--x-chip-container-block-size) + var(--x-chip-container-block-size-reducer) * var(--x-chip-size-x-small-multiplier);
	--_x-chip-size-multiplier: var(--x-chip-size-x-small-multiplier);
}

.x-chip--size-small {
	--_x-chip-container-block-size: var(--x-chip-container-block-size) + var(--x-chip-container-block-size-reducer) * var(--x-chip-size-small-multiplier);
	--_x-chip-size-multiplier: var(--x-chip-size-small-multiplier);
}

.x-chip--size-default {
	--_x-chip-container-block-size: var(--x-chip-container-block-size) + var(--x-chip-container-block-size-reducer) * var(--x-chip-size-default-multiplier);
	--_x-chip-size-multiplier: var(--x-chip-size-default-multiplier);
}

.x-chip--size-large {
	--_x-chip-container-block-size: var(--x-chip-container-block-size) + var(--x-chip-container-block-size-reducer) * var(--x-chip-size-large-multiplier);
	--_x-chip-size-multiplier: var(--x-chip-size-large-multiplier);
}

.x-chip--size-x-large {
	--_x-chip-container-block-size: var(--x-chip-container-block-size) + var(--x-chip-container-block-size-reducer) * var(--x-chip-size-x-large-multiplier);
	--_x-chip-size-multiplier: var(--x-chip-size-x-large-multiplier);
}

.x-chip.x-chip--density-default {
	block-size: calc(var(--_x-chip-container-block-size) + var(--x-chip-density-reducer) * var(--x-chip-density-default-multiplier));
}

.x-chip.x-chip--density-comfortable {
	block-size: calc(var(--_x-chip-container-block-size) + var(--x-chip-density-reducer) * var(--x-chip-density-comfortable-multiplier));
}

.x-chip.x-chip--density-compact {
	block-size: calc(var(--_x-chip-container-block-size) + var(--x-chip-density-reducer) * var(--x-chip-density-compact-multiplier));
}

.x-chip:where(.x-elevation) {
	--x-elevation-shadow-color: var(--x-chip-container-shadow-color);
}

@media (hover: hover) {
	.x-chip:where(.x-elevation):where(.x-chip--variant-elevated):hover {
		--x-elevation-level: var(--x-chip-elevated-hover-container-elevation-level);
	}
}

.x-chip:where(.x-elevation):where(.x-chip--variant-elevated):focus-visible {
	--x-elevation-level: var(--x-chip-elevated-focus-container-elevation-level);
}

@supports not selector(:focus-visible) {
	.x-chip:where(.x-elevation):where(.x-chip--variant-elevated):focus {
		--x-elevation-level: var(--x-chip-elevated-focus-container-elevation-level);
	}
}

.x-chip:where(.x-elevation):where(.x-chip--variant-elevated):active {
	--x-elevation-level: var(--x-chip-elevated-pressed-container-elevation-level);
}

@media (hover: hover) {
	.x-chip:where(.x-elevation):where(.x-chip--variant-filled):hover {
		--x-elevation-level: var(--x-chip-filled-hover-container-elevation-level);
	}
}

.x-chip:where(.x-elevation):where(.x-chip--variant-filled):focus-visible {
	--x-elevation-level: var(--x-chip-filled-focus-container-elevation-level);
}

@supports not selector(:focus-visible) {
	.x-chip:where(.x-elevation):where(.x-chip--variant-filled):focus {
		--x-elevation-level: var(--x-chip-filled-focus-container-elevation-level);
	}
}

.x-chip:where(.x-elevation):where(.x-chip--variant-filled):active {
	--x-elevation-level: var(--x-chip-filled-pressed-container-elevation-level);
}

.x-chip--outlined {
	border-width: var(--x-chip-outlined-outline-width);
}

.x-chip--positioning-absolute {
	position: absolute;
}

.x-chip--positioning-fixed {
	position: fixed;
}

.x-chip--positioning-sticky {
	position: sticky;
}

.x-chip--variant-elevated,
.x-chip--variant-filled {
	background-color: var(--x-chip-container-color);
	color: var(--x-chip-label-text-color);
}

.x-chip--variant-elevated {
	--x-sys-container-opacity: var(--x-chip-container-opacity);
	--x-elevation-level: var(--x-chip-elevated-container-elevation-level);
}

.x-chip--variant-filled {
	--x-sys-container-opacity: var(--x-chip-container-opacity);
	--x-elevation-level: var(--x-chip-filled-container-elevation-level);
}

.x-chip--variant-outlined,
.x-chip--variant-plain,
.x-chip--variant-text,
.x-chip--variant-tonal {
	background: transparent;
	color: inherit;
}

.x-chip--variant-outlined {
	border-color: var(--x-chip-outlined-outline-color);
	border-width: var(--x-chip-outlined-outline-width);
}

@media (hover: hover) {
	.x-chip--variant-outlined:hover {
		border-color: var(--x-chip-outlined-hover-outline-color);
	}
}

.x-chip--variant-outlined:focus-visible {
	border-color: var(--x-chip-outlined-focus-outline-color);
}

@supports not selector(:focus-visible) {
	.x-chip--variant-outlined:focus {
		border-color: var(--x-chip-outlined-focus-outline-color);
	}
}

.x-chip--variant-outlined.x-chip--selected,
.x-chip[aria-haspopup=menu][aria-expanded=true] {
	border-color: var(--x-chip-outlined-pressed-outline-color);
}

.x-chip--variant-plain {
	opacity: var(--x-chip-plain-opacity);
}

@media (hover: hover) {
	.x-chip--variant-plain:hover {
		opacity: 1;
	}
}

.x-chip--variant-plain:focus-visible {
	opacity: 1;
}

@supports not selector(:focus-visible) {
	.x-chip--variant-plain:focus {
		opacity: 1;
	}
}

.x-chip--variant-plain > .x-state-layer {
	display: none;
}

.x-chip--variant-plain.x-chip--selected,
.x-chip[aria-haspopup=menu][aria-expanded=true] {
	opacity: 1;
}

.x-chip--variant-tonal {
	--x-sys-container-opacity: var(--x-chip-tonal-container-opacity);
}

.x-chip--variant-tonal::before {
	background-color: currentColor;
	border-radius: inherit;
	content: "";
	opacity: var(--x-sys-container-opacity);
	pointer-events: none;
	inset: 0;
	position: absolute;
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/container/container.css?1730379988492*/
.x-container {
	--x-container-block-space: var(--x-comp-container-block-space, 0);
	--x-container-inline-space: var(--x-comp-container-inline-space, 1rem);
	--x-container-max-width: var(--x-comp-container-max-width, 100%);
}

.x-container {
	inline-size: 100%;
	margin-left: auto;
	margin-right: auto;
	max-inline-size: var(--x-container-max-width);
	padding: var(--x-container-block-space) var(--x-container-inline-space);
}

.x-container--fluid {
	max-inline-size: 100%;
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/dialog/dialog.css?17303799889170*/
@charset "UTF-8";

.x-dialog {
	--x-dialog-actions-after-item-block-space-start: var(--x-comp-dialog-actions-after-item-block-space-start, 0);
	--x-dialog-actions-button-space-between: var(--x-comp-dialog-actions-button-space-between, 0.5rem);
	--x-dialog-actions-block-space: var(--x-comp-dialog-actions-block-space, 1.5rem);
	--x-dialog-actions-inline-space: var(--x-comp-dialog-actions-inline-space, 1.5rem);
	--x-dialog-actions-justify-content: var(--x-comp-dialog-actions-justify-content, flex-end);
	--x-dialog-block-size: var(--x-comp-dialog-block-size, fit-content);
	--x-dialog-block-space: var(--x-comp-dialog-block-space, 0);
	--x-dialog-close-animation-name: var(--x-comp-dialog-close-animation-name, x-dialog-close-animation);
	--x-dialog-close-motion-duration: var(--x-comp-dialog-close-motion-duration, var(--x-sys-motion-duration-short3, 150ms));
	--x-dialog-close-motion-easing: var(--x-comp-dialog-close-motion-easing, var(--x-sys-motion-easing-emphasized-accelerate, cubic-bezier(0.3, 0, 0.8, 0.15)));
	--x-dialog-close-scrim-animation-name: var(--x-comp-dialog-close-scrim-animation-name, x-dialog-close-scrim-animation);
	--x-dialog-close-scrim-motion-duration: var(--x-comp-dialog-close-scrim-motion-duration, var(--x-sys-motion-duration-short3, 150ms));
	--x-dialog-close-scrim-motion-easing: var(--x-comp-dialog-close-scrim-motion-easing, var(--x-sys-motion-easing-linear, cubic-bezier(0, 0, 1, 1)));
	--x-dialog-close-transform-origin: var(--x-comp-dialog-close-transform-origin, top);
	--x-dialog-container-color: var(--x-comp-dialog-container-color, rgba(var(--x-sys-color-surface, 255, 255, 255), var(--x-sys-container-opacity, 1)));
	--x-dialog-container-elevation-level: var(--x-comp-dialog-container-elevation-level, 3);
	--x-dialog-container-shadow-color: var(--x-comp-dialog-container-shadow-color, var(--x-sys-color-shadow, 0, 0, 0));
	--x-dialog-container-shape: var(--x-comp-dialog-container-shape, var(--x-sys-shape-corner-x-large, 1.75rem));
	--x-dialog-content-color: var(--x-comp-dialog-content-color, rgb(var(--x-sys-color-on-surface), 0, 0, 0));
	--x-dialog-fullscreen-container-elevation-level: var(--x-comp-dialog-fullscreen-container-elevation-level, 0);
	--x-dialog-fullscreen-container-shape: var(--x-comp-dialog-fullscreen-container-shape, var(--x-sys-shape-corner-none, 0));
	--x-dialog-inline-size: var(--x-comp-dialog-inline-size, fit-content);
	--x-dialog-inline-space: var(--x-comp-dialog-inline-space, 0);
	--x-dialog-item-before-item-block-space-end: var(--x-comp-dialog-item-before-item-block-space-end, 1rem);
	--x-dialog-item-after-item-block-space-start: var(--x-comp-dialog-item-after-item-block-space-start, 0);
	--x-dialog-item-block-space: var(--x-comp-dialog-item-block-space, 1.5rem);
	--x-dialog-item-inline-space: var(--x-comp-dialog-item-inline-space, 1.5rem);
	--x-dialog-item-space-between: var(--x-comp-dialog-item-space-between, 1rem);
	--x-dialog-margin-block: var(--x-comp-dialog-margin-block, auto);
	--x-dialog-margin-inline: var(--x-comp-dialog-margin-inline, auto);
	--x-dialog-max-block-size: var(--x-comp-dialog-max-block-size, min(35rem, 100% - 3rem));
	--x-dialog-max-inline-size: var(--x-comp-dialog-max-inline-size, min(35rem, 100% - 3rem));
	--x-dialog-min-block-size: var(--x-comp-dialog-min-block-size, 8.75rem);
	--x-dialog-min-inline-size: var(--x-comp-dialog-min-inline-size, 17.5rem);
	--x-dialog-open-animation-name: var(--x-comp-dialog-open-animation-name, x-dialog-open-animation);
	--x-dialog-open-motion-duration: var(--x-comp-dialog-open-motion-duration, var(--x-sys-motion-duration-long2, 500ms));
	--x-dialog-open-motion-easing: var(--x-comp-dialog-open-motion-easing, var(--x-sys-motion-easing-emphasized, cubic-bezier(0.2, 0, 0, 1)));
	--x-dialog-open-scrim-animation-name: var(--x-comp-dialog-open-scrim-animation-name, x-dialog-open-scrim-animation);
	--x-dialog-open-scrim-motion-duration: var(--x-comp-dialog-open-scrim-motion-duration, var(--x-sys-motion-duration-long2, 500ms));
	--x-dialog-open-scrim-motion-easing: var(--x-comp-dialog-open-scrim-motion-easing, var(--x-sys-motion-easing-linear, cubic-bezier(0, 0, 1, 1)));
	--x-dialog-open-transform-origin: var(--x-comp-dialog-open-transform-origin, top);
	--x-dialog-outline-color: var(--x-comp-dialog-outline-color, rgb(var(--x-sys-color-outline)));
	--x-dialog-outline-style: var(--x-comp-dialog-outline-style, solid);
	--x-dialog-outline-width: var(--x-comp-dialog-outline-width, 0);
	--x-dialog-outlined-outline-width: var(--x-comp-dialog-outlined-outline-width, 0.0625rem);
	--x-dialog-scrim-color: var(--x-comp-dialog-scrim-color, rgb(var(--x-sys-color-scrim, 0, 0, 0)));
	--x-dialog-scrim-opacity: var(--x-comp-dialog-scrim-opacity, 0.32);
}

/**
 * К сожалению, мы не можем повторно использовать ту же анимацию,
 * но воспроизвести ее в обратном порядке, так как невозможно изменить
 * animation-direction не начав при этом новую анимацию с другим именем.
 */
@keyframes x-dialog-open-animation {
	from {
		opacity: 0;
		transform: scaleY(0.6) translateY(-3rem);
	}
}

@keyframes x-dialog-open-scrim-animation {
	from {
		opacity: 0;
	}
}

@keyframes x-dialog-close-animation {
	to {
		opacity: 0;
		transform: scaleY(0.6) translateY(-3rem);
	}
}

@keyframes x-dialog-close-scrim-animation {
	to {
		opacity: 0;
	}
}

.x-dialog {
	animation-duration: var(--x-dialog-close-motion-duration);
	animation-fill-mode: forwards;
	animation-name: var(--x-dialog-close-animation-name);
	animation-timing-function: var(--x-dialog-close-motion-easing);
	background-color: var(--x-dialog-container-color);
	block-size: var(--x-dialog-block-size);
	box-sizing: border-box;
	color: var(--x-dialog-content-color);
	contain: layout;
	display: none;
	inline-size: var(--x-dialog-inline-size);
	inset: 0;
	margin-block: var(--x-dialog-margin-block);
	margin-inline: var(--x-dialog-margin-inline);
	max-block-size: var(--x-dialog-max-block-size);
	max-inline-size: var(--x-dialog-max-inline-size);
	min-block-size: var(--x-dialog-min-block-size);
	min-inline-size: var(--x-dialog-min-inline-size);
	outline: none;
	overflow-x: hidden;
	overflow-y: auto;
	padding-block: var(--x-dialog-block-space);
	padding-inline: var(--x-dialog-inline-space);
	position: absolute;
	transform-origin: var(--x-dialog-close-transform-origin);
	transition-behavior: allow-discrete, allow-discrete;
	transition-duration: var(--x-dialog-close-motion-duration);
	transition-property: display, overlay;
	border-color: var(--x-dialog-outline-color);
	border-style: var(--x-dialog-outline-style);
	border-width: var(--x-dialog-outline-width);
	border-radius: var(--x-dialog-container-shape);
}

@media (prefers-reduced-motion: reduce) {
	.x-dialog {
		animation: none;
		transition: none;
	}
}

.x-dialog:where(.x-elevation) {
	--x-elevation-level: var(--x-dialog-container-elevation-level);
	--x-elevation-shadow-color: var(--x-dialog-container-shadow-color);
}

.x-dialog::backdrop {
	animation-duration: var(--x-dialog-close-scrim-motion-duration);
	animation-name: var(--x-dialog-close-scrim-animation-name);
	animation-timing-function: var(--x-dialog-close-scrim-motion-easing);
	background-color: var(--x-dialog-scrim-color);
	opacity: var(--x-dialog-scrim-opacity);
	transition-behavior: allow-discrete, allow-discrete;
	transition-duration: var(--x-dialog-close-scrim-motion-duration);
	transition-property: display, overlay;
}

@media (prefers-reduced-motion: reduce) {
	.x-dialog::backdrop {
		animation: none;
		transition: none;
	}
}

.x-dialog:where([open]) {
	animation-duration: var(--x-dialog-open-motion-duration);
	animation-name: var(--x-dialog-open-animation-name);
	animation-timing-function: var(--x-dialog-open-motion-easing);
	display: block;
	transform-origin: var(--x-dialog-open-transform-origin);
	transition-duration: var(--x-dialog-open-motion-duration);
}

.x-dialog:where([open])::backdrop {
	animation-duration: var(--x-dialog-open-scrim-motion-duration);
	animation-name: var(--x-dialog-open-scrim-animation-name);
	animation-timing-function: var(--x-dialog-open-scrim-motion-easing);
	transition-duration: var(--x-dialog-open-scrim-motion-duration);
}

.x-dialog--fullscreen {
	block-size: 100%;
	inline-size: 100%;
	max-block-size: 100%;
	max-inline-size: 100%;
	border-radius: var(--x-dialog-fullscreen-container-shape);
}

.x-dialog--fullscreen:where(.x-elevation) {
	--x-elevation-level: var(--x-dialog-fullscreen-container-elevation-level);
}

.x-dialog--fullscreen::backdrop {
	display: none;
}

:root:where(:has(.x-dialog--modal[open])) {
	overflow: hidden;
}

.x-dialog--outlined {
	border-width: var(--x-dialog-outlined-outline-width);
}

.x-dialog--positioning-absolute {
	position: absolute;
}

.x-dialog--positioning-fixed {
	position: fixed;
}

.x-dialog--quick,
.x-dialog--quick::backdrop {
	animation-duration: 0ms;
	transition-duration: 0ms;
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/divider/divider.css?17303799882014*/
.x-divider {
	--x-divider-color: var(--x-comp-divider-color, currentColor);
	--x-divider-inset-margin-end: var(--x-comp-divider-inset-margin-end, 1rem);
	--x-divider-inset-margin-start: var(--x-comp-divider-inset-margin-start, 1rem);
	--x-divider-opacity: var(--x-comp-divider-opacity, 1);
	--x-divider-thickness: var(--x-comp-divider-thickness, 0.0625rem);
	--x-divider-vertical-margin-start: var(--x-comp-divider-vertical-margin-start, 0.0625rem);
	--x-divider-vertical-thickness: var(--x-comp-divider-vertical-thickness, 0.0625rem);
	--x-divider-vertical-inset-margin-end: var(--x-comp-divider-vertical-inset-margin-end, 0.5rem);
	--x-divider-vertical-inset-margin-start: var(--x-comp-divider-vertical-inset-margin-start, 0.5rem);
}

.x-divider {
	block-size: 0;
	box-sizing: border-box;
	display: block;
	flex: 1 1 100%;
	margin-block: 0;
	margin-inline: auto;
	max-block-size: 0;
	opacity: var(--x-divider-opacity);
	transition: inherit;
	border-color: var(--x-divider-color);
	border-style: solid;
	border-width: var(--x-divider-thickness) 0 0 0;
}

.x-divider--inset:where(:not(.x-divider--vertical)) {
	margin-inline-end: var(--x-divider-inset-margin-end);
	margin-inline-start: var(--x-divider-inset-margin-start);
	max-inline-size: calc(100% - (var(--x-divider-inset-margin-end) + var(--x-divider-inset-margin-start)));
}

.x-divider--inset:where(.x-divider--vertical) {
	margin-block-end: var(--x-divider-vertical-inset-margin-end);
	margin-block-start: var(--x-divider-vertical-inset-margin-start);
	max-block-size: calc(100% - (var(--x-divider-vertical-inset-margin-end) + var(--x-divider-vertical-inset-margin-start)));
}

.x-divider--vertical {
	align-self: stretch;
	block-size: inherit;
	border-width: 0 var(--x-divider-vertical-thickness) 0 0;
	display: inline-flex;
	inline-size: 0;
	margin-inline-start: var(--x-divider-vertical-margin-start);
	max-block-size: 100%;
	max-inline-size: 0;
	min-block-size: 100%;
	vertical-align: text-bottom;
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/expansion-panel/expansion-panel.css?173059106422726*/
.x-expansion-panel {
	--x-expansion-panel-container-color: var(--x-comp-expansion-panel-container-color, rgba(var(--x-sys-color-surface), var(--x-sys-container-opacity)));
	--x-expansion-panel-container-motion-duration: var(--x-comp-expansion-panel-container-motion-duration, var(--x-sys-motion-duration-medium2, 300ms));
	--x-expansion-panel-container-motion-easing: var(--x-comp-expansion-panel-container-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
	--x-expansion-panel-container-motion-property: var(--x-comp-expansion-panel-container-motion-property, border, border-radius, margin-block-start, max-inline-size);
	--x-expansion-panel-container-opacity: var(--x-comp-expansion-panel-container-opacity, 1);
	--x-expansion-panel-container-shadow-color: var(--x-comp-expansion-panel-container-shadow-color, var(--x-sys-color-shadow));
	--x-expansion-panel-container-shape: var(--x-comp-expansion-panel-container-shape, var(--x-sys-shape-corner-medium, 0.75rem));
	--x-expansion-panel-content-block-space: var(--x-comp-expansion-panel-content-block-space, 0.5rem 1rem);
	--x-expansion-panel-content-color: var(--x-comp-expansion-panel-content-color, rgba(var(--x-sys-color-on-surface)));
	--x-expansion-panel-content-inline-space: var(--x-comp-expansion-panel-content-inline-space, 1.5rem);
	--x-expansion-panel-density-compact-multiplier: var(--x-comp-expansion-panel-density-compact-multiplier, -2);
	--x-expansion-panel-density-comfortable-multiplier: var(--x-comp-expansion-panel-density-comfortable-multiplier, -1);
	--x-expansion-panel-density-default-multiplier: var(--x-comp-expansion-panel-density-default-multiplier, 0);
	--x-expansion-panel-density-reducer: var(--x-comp-expansion-panel-density-reducer, 0.25rem);
	--x-expansion-panel-disabled-container-elevation-level: var(--x-comp-expansion-panel-disabled-container-elevation-level, 0);
	--x-expansion-panel-disabled-summary-container-color: var(--x-comp-expansion-panel-disabled-summary-container-color, var(--x-sys-color-on-surface));
	--x-expansion-panel-disabled-summary-container-opacity: var(--x-comp-expansion-panel-disabled-summary-container-opacity, var(--x-sys-state-disabled-container-opacity, 0.12));
	--x-expansion-panel-disabled-summary-text-color: var(--x-comp-expansion-panel-disabled-summary-text-color, var(--x-sys-color-on-surface));
	--x-expansion-panel-disabled-summary-text-opacity: var(--x-comp-expansion-panel-disabled-summary-text-opacity, var(--x-sys-state-disabled-text-opacity, 0.38));
	--x-expansion-panel-divider-motion-duration: var(--x-comp-expansion-panel-divider-motion-duration, var(--x-sys-motion-duration-medium2, 300ms));
	--x-expansion-panel-divider-motion-easing: var(--x-comp-expansion-panel-divider-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
	--x-expansion-panel-elevated-container-elevation-level: var(--x-comp-expansion-panel-elevated-container-elevation-level, 1);
	--x-expansion-panel-filled-container-elevation-level: var(--x-comp-expansion-panel-filled-container-elevation-level, 0);
	--x-expansion-panel-glass-container-elevation-level: var(--x-comp-expansion-panel-glass-container-elevation-level, 1);
	--x-expansion-panel-glass-container-backdrop-blur: var(--x-comp-expansion-panel-glass-container-backdrop-blur, 1rem);
	--x-expansion-panel-glass-container-backdrop-saturate: var(--x-comp-expansion-panel-glass-container-backdrop-saturate, 180%);
	--x-expansion-panel-glass-container-opacity: var(--x-comp-expansion-panel-glass-container-opacity, 0.72);
	--x-expansion-panel-glass-outline-color: var(--x-comp-expansion-panel-glass-outline-color, rgb(var(--x-sys-color-outline-variant)));
	--x-expansion-panel-glass-outline-width: var(--x-comp-expansion-panel-glass-outline-width, 0.0625rem);
	--x-expansion-panel-indicator-motion-duration: var(--x-comp-expansion-panel-indicator-motion-duration, var(--x-sys-motion-duration-medium2, 300ms));
	--x-expansion-panel-indicator-motion-easing: var(--x-comp-expansion-panel-indicator-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
	--x-expansion-panel-inset-max-inline-size: var(--x-comp-expansion-panel-inset-max-inline-size, 100%);
	--x-expansion-panel-open-block-start: var(--x-comp-expansion-panel-open-block-start, 1rem);
	--x-expansion-panel-open-inset-max-inline-size: var(--x-comp-expansion-panel-open-inset-max-inline-size, calc(100% - var(--x-expansion-panel-open-block-start) * 2));
	--x-expansion-panel-open-pop-out-max-inline-size: var(--x-comp-expansion-panel-open-pop-out-max-inline-size, calc(100% + var(--x-expansion-panel-open-block-start)));
	--x-expansion-panel-open-summary-container-min-block-size: var(--x-comp-expansion-panel-open-summary-container-min-block-size, 4rem);
	--x-expansion-panel-outline-color: var(--x-comp-expansion-panel-outline-color, rgb(var(--x-sys-color-outline-variant)));
	--x-expansion-panel-outline-style: var(--x-comp-expansion-panel-outline-style, solid);
	--x-expansion-panel-outline-width: var(--x-comp-expansion-panel-outline-width, 0);
	--x-expansion-panel-outlined-outline-color: var(--x-comp-expansion-panel-outlined-outline-color, rgb(var(--x-sys-color-outline-variant)));
	--x-expansion-panel-outlined-outline-style: var(--x-comp-expansion-panel-outlined-outline-style, solid);
	--x-expansion-panel-outlined-outline-width: var(--x-comp-expansion-panel-outlined-outline-width, 0.0625rem);
	--x-expansion-panel-pop-out-max-inline-size: var(--x-comp-expansion-panel-pop-out-max-inline-size, calc(100% - var(--x-expansion-panel-open-block-start) * 2));
	--x-expansion-panel-summary-block-space: var(--x-comp-expansion-panel-summary-block-space, 1rem);
	--x-expansion-panel-summary-container-min-block-size: var(--x-comp-expansion-panel-summary-container-min-block-size, 3rem);
	--x-expansion-panel-summary-container-motion-duration: var(--x-comp-expansion-panel-summary-container-motion-duration, var(--x-sys-motion-duration-medium2, 300ms));
	--x-expansion-panel-summary-container-motion-easing: var(--x-comp-expansion-panel-summary-container-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
	--x-expansion-panel-summary-container-motion-property: var(--x-comp-expansion-panel-summary-container-motion-property, background, color, min-block-size);
	--x-expansion-panel-summary-inline-space: var(--x-comp-expansion-panel-summary-inline-space, 1.5rem);
	--x-expansion-panel-summary-space-between: var(--x-comp-expansion-panel-summary-space-between, 0.5rem);
	--x-expansion-panel-summary-space-between-compensation: var(--x-comp-expansion-panel-summary-space-between-compensation, -0.25rem);
	--x-expansion-panel-summary-text-font: var(--x-comp-expansion-panel-summary-text-font, inherit);
	--x-expansion-panel-summary-text-letter-case: var(--x-comp-expansion-panel-summary-text-letter-case, var(--x-sys-typescale-body-large-letter-case, none));
	--x-expansion-panel-summary-text-line-height: var(--x-comp-expansion-panel-summary-text-line-height, normal);
	--x-expansion-panel-summary-text-motion-duration: var(--x-comp-expansion-panel-summary-text-motion-duration, var(--x-sys-motion-duration-short4, 200ms));
	--x-expansion-panel-summary-text-motion-easing: var(--x-comp-expansion-panel-summary-text-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
	--x-expansion-panel-summary-text-size: var(--x-comp-expansion-panel-summary-text-size, var(--x-sys-typescale-body-large-size, 1rem));
	--x-expansion-panel-summary-text-size-reducer: var(--x-comp-expansion-panel-summary-text-size-reducer, 0.125rem);
	--x-expansion-panel-summary-text-weight: var(--x-comp-expansion-panel-summary-text-weight, var(--x-sys-typescale-body-large-weight, 400));
	--x-expansion-panel-summary-text-tracking: var(--x-comp-expansion-panel-summary-text-tracking, var(--x-sys-typescale-body-large-tracking, 0.03125rem));
	--x-expansion-panel-summary-text-white-space: var(--x-comp-expansion-panel-summary-text-white-space, wrap);
}

.x-expansion-panel {
	flex: 1 0 100%;
	max-inline-size: 100%;
	position: relative;
	transition-duration: var(--x-expansion-panel-container-motion-duration);
	transition-property: var(--x-expansion-panel-container-motion-property);
	transition-timing-function: var(--x-expansion-panel-container-motion-easing);
	border-radius: var(--x-expansion-panel-container-shape);
}

.x-expansion-panel:not(:first-of-type):not(.x-expansion-panel--hide-divider):not(.x-expansion-panel--outlined):not(.x-expansion-panel--variant-glass)::after {
	border-block-start-style: solid;
	border-block-start-width: thin;
	border-color: var(--x-expansion-panel-outline-color);
	pointer-events: none;
	transition-duration: var(--x-expansion-panel-divider-motion-duration);
	transition-property: opacity;
	transition-timing-function: var(--x-expansion-panel-divider-motion-easing);
	user-select: none;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.x-expansion-panel > .x-elevation {
	--x-elevation-shadow-color: var(--x-expansion-panel-container-shadow-color);
	border-radius: inherit;
	inset: 0;
	position: absolute;
	transition-duration: var(--x-expansion-panel-container-motion-duration);
	transition-property: box-shadow;
	transition-timing-function: var(--x-expansion-panel-container-motion-easing);
	z-index: -1;
}

.x-expansion-panel--density-default > .x-expansion-panel-summary {
	min-block-size: calc(var(--x-expansion-panel-summary-container-min-block-size) + var(--x-expansion-panel-density-reducer) * var(--x-expansion-panel-density-default-multiplier));
	padding-block: calc(var(--x-expansion-panel-summary-block-space) + var(--x-expansion-panel-density-reducer) * var(--x-expansion-panel-density-default-multiplier));
}

.x-expansion-panel--density-default.x-expansion-panel--open:not(:first-of-type),
.x-expansion-panel--density-default.x-expansion-panel--open + .x-expansion-panel {
	margin-block-start: calc(var(--x-expansion-panel-open-block-start) + var(--x-expansion-panel-density-reducer) * var(--x-expansion-panel-density-default-multiplier));
}

.x-expansion-panel--density-default.x-expansion-panel--open > .x-expansion-panel-summary:not(.x-expansion-panel-summary--static) {
	min-block-size: calc(var(--x-expansion-panel-open-summary-container-min-block-size) + var(--x-expansion-panel-density-reducer) * var(--x-expansion-panel-density-default-multiplier));
}

.x-expansion-panel--density-comfortable > .x-expansion-panel-summary {
	min-block-size: calc(var(--x-expansion-panel-summary-container-min-block-size) + var(--x-expansion-panel-density-reducer) * var(--x-expansion-panel-density-comfortable-multiplier));
	padding-block: calc(var(--x-expansion-panel-summary-block-space) + var(--x-expansion-panel-density-reducer) * var(--x-expansion-panel-density-comfortable-multiplier));
}

.x-expansion-panel--density-comfortable.x-expansion-panel--open:not(:first-of-type),
.x-expansion-panel--density-comfortable.x-expansion-panel--open + .x-expansion-panel {
	margin-block-start: calc(var(--x-expansion-panel-open-block-start) + var(--x-expansion-panel-density-reducer) * var(--x-expansion-panel-density-comfortable-multiplier));
}

.x-expansion-panel--density-comfortable.x-expansion-panel--open > .x-expansion-panel-summary:not(.x-expansion-panel-summary--static) {
	min-block-size: calc(var(--x-expansion-panel-open-summary-container-min-block-size) + var(--x-expansion-panel-density-reducer) * var(--x-expansion-panel-density-comfortable-multiplier));
}

.x-expansion-panel--density-compact > .x-expansion-panel-summary {
	min-block-size: calc(var(--x-expansion-panel-summary-container-min-block-size) + var(--x-expansion-panel-density-reducer) * var(--x-expansion-panel-density-compact-multiplier));
	padding-block: calc(var(--x-expansion-panel-summary-block-space) + var(--x-expansion-panel-density-reducer) * var(--x-expansion-panel-density-compact-multiplier));
}

.x-expansion-panel--density-compact.x-expansion-panel--open:not(:first-of-type),
.x-expansion-panel--density-compact.x-expansion-panel--open + .x-expansion-panel {
	margin-block-start: calc(var(--x-expansion-panel-open-block-start) + var(--x-expansion-panel-density-reducer) * var(--x-expansion-panel-density-compact-multiplier));
}

.x-expansion-panel--density-compact.x-expansion-panel--open > .x-expansion-panel-summary:not(.x-expansion-panel-summary--static) {
	min-block-size: calc(var(--x-expansion-panel-open-summary-container-min-block-size) + var(--x-expansion-panel-density-reducer) * var(--x-expansion-panel-density-compact-multiplier));
}

.x-expansion-panel--disabled > .x-expansion-panel-summary {
	--x-elevation-level: var(--x-expansion-panel-disabled-container-elevation-level);
	background: rgba(var(--x-expansion-panel-disabled-summary-container-color), var(--x-expansion-panel-disabled-summary-container-opacity)) !important;
	color: rgba(var(--x-expansion-panel-disabled-summary-text-color), var(--x-expansion-panel-disabled-summary-text-opacity)) !important;
	pointer-events: none;
}

.x-expansion-panel--disabled img {
	filter: grayscale(1);
	opacity: var(--x-expansion-panel-disabled-summary-text-opacity);
}

.x-expansion-panel--open:not(:first-of-type)::after,
.x-expansion-panel--open + .x-expansion-panel::after {
	opacity: 0;
}

.x-expansion-panel--open > .x-expansion-panel-summary {
	border-end-end-radius: 0;
	border-end-start-radius: 0;
}

.x-expansion-panel--open > .x-expansion-panel-summary .x-expansion-panel-indicator {
	transform: rotate(180deg);
}

.x-expansion-panel--outlined {
	border-color: var(--x-expansion-panel-outlined-outline-color);
	border-style: var(--x-expansion-panel-outlined-outline-style);
	border-width: var(--x-expansion-panel-outlined-outline-width);
}

.x-expansion-panel--outlined:not(.x-expansion-panel--open):not(.x-expansion-panel--before-open) + .x-expansion-panel--outlined {
	margin-block-start: calc(var(--x-expansion-panel-outlined-outline-width) * -1);
}

.x-expansion-panel--quick {
	transition-duration: 0ms !important;
}

.x-expansion-panel--quick > .x-expansion-panel-content {
	transition-duration: 0ms !important;
}

.x-expansion-panel--quick > .x-expansion-panel-summary {
	transition-duration: 0ms !important;
}

.x-expansion-panel--readonly > .x-expansion-panel-summary {
	pointer-events: none;
}

.x-expansion-panel--variant-elevated,
.x-expansion-panel--variant-filled,
.x-expansion-panel--variant-glass {
	background-color: var(--x-expansion-panel-container-color);
	color: var(--x-expansion-panel-content-color);
}

.x-expansion-panel--variant-elevated {
	--x-sys-container-opacity: var(--x-expansion-panel-container-opacity);
	--x-elevation-level: var(--x-expansion-panel-elevated-container-elevation-level);
}

.x-expansion-panel--variant-filled {
	--x-sys-container-opacity: var(--x-expansion-panel-container-opacity);
	--x-elevation-level: var(--x-expansion-panel-filled-container-elevation-level);
}

.x-expansion-panel--variant-glass {
	--x-sys-container-opacity: var(--x-expansion-panel-glass-container-opacity);
	--x-elevation-level: var(--x-expansion-panel-glass-container-elevation-level);
	backdrop-filter: blur(var(--x-expansion-panel-glass-container-backdrop-blur)) saturate(var(--x-expansion-panel-glass-container-backdrop-saturate));
	border-color: var(--x-expansion-panel-glass-outline-color);
	border-width: var(--x-expansion-panel-glass-outline-width);
}

.x-expansion-panel--variant-elevated > .x-elevation,
.x-expansion-panel--variant-filled > .x-elevation,
.x-expansion-panel--variant-glass > .x-elevation {
	--x-elevation-level: inherit;
}

.x-expansion-panel--variant-glass:not(.x-expansion-panel--open):not(.x-expansion-panel--before-open) + .x-expansion-panel--variant-glass {
	margin-block-start: calc(var(--x-expansion-panel-outlined-outline-width) * -1);
}

.x-expansion-panel-content {
	display: flex;
}

@media (prefers-reduced-motion: reduce) {
	.x-expansion-panel-content {
		transition: none;
	}
}

.x-expansion-panel-content__content {
	flex: 1 1 auto;
	max-width: 100%;
	padding-block: var(--x-expansion-panel-content-block-space);
	padding-inline: var(--x-expansion-panel-content-inline-space);
}

.x-expansion-panel-indicator {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	transition-duration: var(--x-expansion-panel-indicator-motion-duration);
	transition-property: transform;
	transition-timing-function: var(--x-expansion-panel-indicator-motion-easing);
	will-change: transform;
}

.x-expansion-panel-summary {
	align-items: center;
	background-color: transparent;
	color: inherit;
	cursor: pointer;
	display: grid;
	flex: none;
	font-family: var(--x-expansion-panel-summary-text-font);
	font-size: var(--x-expansion-panel-summary-text-size);
	font-weight: var(--x-expansion-panel-summary-text-weight);
	grid-template-areas: "start content end";
	grid-template-columns: max-content 1fr auto;
	inline-size: 100%;
	justify-content: space-between;
	letter-spacing: var(--x-expansion-panel-summary-text-tracking);
	line-height: var(--x-expansion-panel-summary-text-line-height);
	outline: none;
	padding-inline: var(--x-expansion-panel-summary-inline-space);
	position: relative;
	text-align: start;
	text-decoration: none;
	text-indent: var(--x-expansion-panel-summary-text-tracking);
	text-transform: var(--x-expansion-panel-summary-text-letter-case);
	transition-duration: var(--x-expansion-panel-summary-container-motion-duration);
	transition-property: var(--x-expansion-panel-summary-container-motion-property);
	transition-timing-function: var(--x-expansion-panel-summary-container-motion-easing);
	user-select: none;
	vertical-align: middle;
	border-color: transparent;
	border-style: solid;
	border-width: 0;
	border-radius: inherit;
}

@media (prefers-reduced-motion: reduce) {
	.x-expansion-panel-summary {
		transition: none;
	}
}

@media (hover: hover) {
	.x-expansion-panel-summary:hover > .x-state-layer {
		--x-state-layer-opacity: calc(var(--x-sys-state-hover-state-layer-opacity, 0.08) * var(--x-sys-state-layer-opacity-multiplier, 1));
	}
}

.x-expansion-panel-summary:focus-visible > .x-state-layer {
	--x-state-layer-opacity: calc(var(--x-sys-state-focus-state-layer-opacity, 0.1) * var(--x-sys-state-layer-opacity-multiplier, 1));
}

@supports not selector(:focus-visible) {
	.x-expansion-panel-summary:focus > .x-state-layer {
		--x-state-layer-opacity: calc(var(--x-sys-state-focus-state-layer-opacity, 0.1) * var(--x-sys-state-layer-opacity-multiplier, 1));
	}
}

.x-expansion-panel-summary__start,
.x-expansion-panel-summary__end {
	align-items: center;
	display: flex;
	z-index: 1;
}

.x-expansion-panel-summary__start {
	grid-area: start;
	margin-inline-end: var(--x-expansion-panel-summary-space-between);
	margin-inline-start: var(--x-expansion-panel-summary-space-between-compensation);
}

.x-expansion-panel-summary__end {
	grid-area: end;
	margin-inline-end: var(--x-expansion-panel-summary-space-between-compensation);
	margin-inline-start: var(--x-expansion-panel-summary-space-between);
}

.x-expansion-panel-summary__content {
	grid-area: content;
	white-space: var(--x-expansion-panel-summary-text-white-space);
	z-index: 1;
}

.x-expansion-panel-summary > .x-state-layer {
	--x-comp-state-layer-motion-duration: var(--x-expansion-panel-summary-state-layer-motion-duration);
	--x-comp-state-layer-motion-easing: var(--x-expansion-panel-summary-state-layer-motion-easing);
}

.x-expansion-panels {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style-type: none;
	padding: 0;
	position: relative;
	width: 100%;
	z-index: 1;
}

.x-expansion-panels:not(.x-expansion-panels--open-behavior-accordion) > :not(:first-child):not(:last-child):not(.x-expansion-panel--open):not(.x-expansion-panel--before-open) {
	border-end-end-radius: 0;
	border-end-start-radius: 0;
}

.x-expansion-panels:not(.x-expansion-panels--open-behavior-accordion) > :not(:first-child):not(:last-child):not(.x-expansion-panel--open):not(.x-expansion-panel--after-open) {
	border-start-end-radius: 0;
	border-start-start-radius: 0;
}

.x-expansion-panels:not(.x-expansion-panels--open-behavior-accordion) > :first-child:not(:last-child):not(.x-expansion-panel--open):not(.x-expansion-panel--before-open) {
	border-end-end-radius: 0;
	border-end-start-radius: 0;
}

.x-expansion-panels:not(.x-expansion-panels--open-behavior-accordion) > :last-child:not(:first-child):not(.x-expansion-panel--open):not(.x-expansion-panel--after-open) {
	border-start-end-radius: 0;
	border-start-start-radius: 0;
}

.x-expansion-panels--open-behavior-accordion > .x-expansion-panel {
	margin-block-start: 0;
}

.x-expansion-panels--open-behavior-accordion > .x-expansion-panel.x-expansion-panel--outlined {
	margin-block-start: calc(var(--x-expansion-panel-outlined-outline-width) * -1);
}

.x-expansion-panels--open-behavior-accordion > .x-expansion-panel::after {
	opacity: 1;
}

.x-expansion-panels--open-behavior-accordion > :first-of-type:not(:last-of-type) {
	border-end-end-radius: 0;
	border-end-start-radius: 0;
}

.x-expansion-panels--open-behavior-accordion > :last-of-type:not(:first-of-type) {
	border-start-end-radius: 0;
	border-start-start-radius: 0;
}

.x-expansion-panels--open-behavior-accordion > :last-of-type:not(:first-of-type) .x-expansion-panel--open {
	border-end-end-radius: initial;
	border-end-start-radius: initial;
}

.x-expansion-panels--open-behavior-accordion > :not(:first-of-type):not(:last-of-type) {
	border-radius: 0;
}

.x-expansion-panels--open-behavior-accordion > .x-expansion-panel > .x-expansion-panel-summary > .x-state-layer {
	transition-duration: var(--x-expansion-panel-summary-container-motion-duration);
	transition-property: border-radius;
	transition-timing-function: var(--x-expansion-panel-summary-container-motion-easing);
}

.x-expansion-panels--open-behavior-inset > .x-expansion-panel {
	max-inline-size: var(--x-expansion-panel-inset-max-inline-size);
}

.x-expansion-panels--open-behavior-inset > .x-expansion-panel--open {
	max-inline-size: var(--x-expansion-panel-open-inset-max-inline-size);
}

.x-expansion-panels--open-behavior-pop-out > .x-expansion-panel {
	max-inline-size: var(--x-expansion-panel-pop-out-max-inline-size);
}

.x-expansion-panels--open-behavior-pop-out > .x-expansion-panel--open {
	max-inline-size: var(--x-expansion-panel-open-pop-out-max-inline-size);
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/footer/footer.css?17303799882054*/
.x-footer {
	--x-footer-block-space: var(--x-comp-footer-block-space, 0.5rem);
	--x-footer-container-color: var(--x-comp-footer-container-color, rgba(var(--x-sys-color-surface), var(--x-sys-container-opacity)));
	--x-footer-container-elevation-level: var(--x-comp-footer-container-elevation-level, 0);
	--x-footer-container-opacity: var(--x-comp-footer-container-opacity, 1);
	--x-footer-container-outline-color: var(--x-comp-footer-container-outline-color, rgb(var(--x-sys-color-outline-variant)));
	--x-footer-container-outline-style: var(--x-comp-footer-container-outline-style, solid);
	--x-footer-container-outline-width: var(--x-comp-footer-container-outline-width, 0);
	--x-footer-container-shadow-color: var(--x-comp-footer-container-shadow-color, rgb(var(--x-sys-color-shadow)));
	--x-footer-container-shape: var(--x-comp-footer-container-shape, var(--sys-shape-corner-none, 0));
	--x-footer-content-text-color: var(--x-comp-footer-content-text-color, rgb(var(--x-sys-color-on-surface)));
	--x-footer-inline-space: var(--x-comp-footer-inline-space, 1rem);
	--x-footer-outlined-container-outline-width: var(--x-comp-footer-outlined-container-outline-width, 0.0625rem);
}

.x-footer {
	--x-sys-container-opacity: var(--x-footer-container-opacity);
	align-items: center;
	box-sizing: border-box;
	display: flex;
	flex: 0 0 auto;
	padding-block: var(--x-footer-block-space);
	padding-inline: var(--x-footer-inline-space);
	position: relative;
	border-color: var(--x-footer-container-outline-color);
	border-style: var(--x-footer-container-outline-style);
	border-width: var(--x-footer-container-outline-width);
	border-radius: var(--x-footer-container-shape);
	background-color: var(--x-footer-container-color);
	color: var(--x-footer-content-text-color);
}

.x-footer.x-elevation {
	--x-elevation-level: var(--x-footer-container-elevation-level);
	--x-elevation-shadow-color: var(--x-footer-container-shadow-color);
}

.x-footer--outlined {
	border-width: var(--x-footer-outlined-container-outline-width);
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/icon/icon.css?17303799882447*/
.x-icon {
	--x-icon-end-offset: var(--x-comp-icon-end-offset, 0.5rem);
	--x-icon-letter-spacing: var(--x-comp-icon-letter-spacing, normal);
	--x-icon-line-height: var(--x-comp-icon-line-height, 1);
	--x-icon-size: var(--x-comp-icon-size, 1em);
	--x-icon-size-reducer: var(--x-comp-icon-size-reducer, 0.25em);
	--x-icon-size-x-small-multiplier: var(--x-comp-icon-size-x-small-multiplier, 0);
	--x-icon-size-small-multiplier: var(--x-comp-icon-size-small-multiplier, 1);
	--x-icon-size-default-multiplier: var(--x-comp-icon-size-default-multiplier, 2);
	--x-icon-size-large-multiplier: var(--x-comp-icon-size-large-multiplier, 3);
	--x-icon-size-x-large-multiplier: var(--x-comp-icon-size-x-large-multiplier, 4);
	--x-icon-start-offset: var(--x-comp-icon-start-offset, 0.5rem);
	--x-icon-text-indent: var(--x-comp-icon-text-indent, 0);
	--x-icon-vertical-align: var(--x-comp-icon-vertical-align, middle);
}

.x-icon {
	--x-icon-size-multiplier: 1;
	align-items: center;
	display: inline-flex;
	font-feature-settings: "liga";
	font-size: inherit;
	height: var(--x-icon-size);
	justify-content: center;
	letter-spacing: var(--x-icon-letter-spacing);
	line-height: var(--x-icon-line-height);
	position: relative;
	text-indent: var(--x-icon-text-indent);
	user-select: none;
	vertical-align: var(--x-icon-vertical-align);
	width: var(--x-icon-size);
}

.x-icon > svg {
	fill: currentColor;
	height: 100%;
	width: 100%;
}

.x-icon--start {
	margin-inline-end: var(--x-icon-start-offset);
}

.x-icon--end {
	margin-inline-start: var(--x-icon-end-offset);
}

.x-icon--size-x-small {
	font-size: calc(var(--x-icon-size-multiplier) * (var(--x-icon-size) + var(--x-icon-size-reducer) * var(--x-icon-size-x-small-multiplier)));
}

.x-icon--size-small {
	font-size: calc(var(--x-icon-size-multiplier) * (var(--x-icon-size) + var(--x-icon-size-reducer) * var(--x-icon-size-small-multiplier)));
}

.x-icon--size-default {
	font-size: calc(var(--x-icon-size-multiplier) * (var(--x-icon-size) + var(--x-icon-size-reducer) * var(--x-icon-size-default-multiplier)));
}

.x-icon--size-large {
	font-size: calc(var(--x-icon-size-multiplier) * (var(--x-icon-size) + var(--x-icon-size-reducer) * var(--x-icon-size-large-multiplier)));
}

.x-icon--size-x-large {
	font-size: calc(var(--x-icon-size-multiplier) * (var(--x-icon-size) + var(--x-icon-size-reducer) * var(--x-icon-size-x-large-multiplier)));
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/image/image.css?1730379988677*/
.x-image {
	--x-image-preload-filter: var(--x-comp-image-preload-filter, blur(0.25rem));
}

.x-image {
	--x-sys-state-multiplier: 3;
	z-index: 0;
}

.x-image--booting > .x-responsive__sizer {
	transition: none;
}

.x-image__img,
.x-image__picture,
.x-image__gradient,
.x-image__placeholder,
.x-image__error {
	z-index: -1;
	inset: 0;
	position: absolute;
}

.x-image__img {
	block-size: 100%;
	inline-size: 100%;
}

.x-image__img--preload {
	filter: var(--x-image-preload-filter);
}

.x-image__img--contain {
	object-fit: contain;
}

.x-image__img--cover {
	object-fit: cover;
}

.x-image__gradient {
	background-repeat: no-repeat;
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/layout/layout.css?1730379988733*/
.x-layout-item {
	--x-layout-item-motion-duration: var(
        --x-comp-layout-item-motion-duration,
		var(--x-sys-motion-duration-short4, 200ms)
    );
	--x-layout-item-motion-easing: var(
        --x-comp-layout-item-motion-easing,
		var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1))
    );
}

.x-layout {
	--x-scrollbar-offset: 0rem;

	display: flex;
	flex: 1 1 auto;
	position: relative;
}

.x-layout--full-height {
	--x-scrollbar-offset: inherit;

	height: 100%;
}

.x-layout-item {
	position: fixed;
	transition-duration: var(--x-layout-item-motion-duration);
	transition-timing-function: var(--x-layout-item-motion-easing);
}

.x-layout-item--absolute {
	position: absolute;
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/list/list-group.css?17303799881461*/
.x-list-group {
	--x-list-group-indicator-motion-duration: var(--x-comp-list-group-indicator-motion-duration, var(--x-sys-motion-duration-medium2, 300ms));
	--x-list-group-indicator-motion-easing: var(--x-comp-list-group-indicator-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
}

.x-list-group {
	--_x-list-parent-indent-size: var(--_x-list-indent-size);
	--_x-list-with-leading-inline-size: 0rem;
	box-sizing: border-box;
}

.x-list-group__items {
	--_x-list-indent-size: calc(var(--_x-list-parent-indent-size) + var(--x-list-indent-size) + var(--_x-list-with-leading-inline-size));
}

.x-list-group--has-start {
	--_x-list-with-leading-inline-size: var(--x-list-with-leading-inline-size);
}

.x-list-group--open > .x-list-group__header .x-list-group-indicator {
	transform: rotate(180deg);
}

.x-list-group--quick > .x-list-group__items {
	transition-duration: 0ms !important;
}

.x-list-group--without-indent:where(.x-list-group--has-start) {
	--_x-list-with-leading-inline-size: 0rem;
}

.x-list-group--without-indent {
	--x-list-indent-size: 0rem;
}

.x-list-group-indicator {
	align-items: center;
	box-sizing: border-box;
	display: inline-flex;
	justify-content: center;
	transition-duration: var(--x-list-group-indicator-motion-duration);
	transition-property: transform;
	transition-timing-function: var(--x-list-group-indicator-motion-easing);
	will-change: transform;
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/list/list-item.css?173037998840372*/
.x-list-item {
	--x-list-item-action-space-between-compensation: var(--x-comp-list-item-action-space-between-compensation, -0.5rem);
	--x-list-item-block-space: var(--x-comp-list-item-block-space, 0.5rem);
	--x-list-item-container-color: var(--x-comp-list-item-container-color, rgba(var(--x-sys-color-surface), var(--x-sys-container-opacity)));
	--x-list-item-container-motion-duration: var(--x-comp-list-item-container-motion-duration, var(--x-sys-motion-duration-short4, 200ms));
	--x-list-item-container-motion-easing: var(--x-comp-list-item-container-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
	--x-list-item-container-motion-property: var(--x-comp-list-item-container-motion-property, background, border-color, box-shadow, color, opacity);
	--x-list-item-container-opacity: var(--x-comp-list-item-container-opacity, 1);
	--x-list-item-density-compact-multiplier: var(--x-comp-list-item-density-compact-multiplier, -2);
	--x-list-item-density-comfortable-multiplier: var(--x-comp-list-item-density-comfortable-multiplier, -1);
	--x-list-item-density-default-multiplier: var(--x-comp-list-item-density-default-multiplier, 0);
	--x-list-item-density-reducer: var(--x-comp-list-item-density-reducer, 0.25rem);
	--x-list-item-disabled-container-color: var(--x-comp-list-item-disabled-container-color, var(--x-sys-color-on-surface));
	--x-list-item-disabled-container-elevation-level: var(--x-comp-list-item-disabled-container-elevation-level, 0);
	--x-list-item-disabled-container-opacity: var(--x-comp-list-item-disabled-container-opacity, var(--x-sys-state-disabled-container-opacity, 0.12));
	--x-list-item-disabled-outline-color: var(--x-comp-list-item-disabled-outline-color, rgb(var(--x-sys-color-on-surface)));
	--x-list-item-disabled-outline-opacity: var(--x-comp-list-item-disabled-outline-opacity, var(--x-sys-state-disabled-outline-opacity, 0.12));
	--x-list-item-disabled-headline-text-color: var(--x-comp-list-item-disabled-headline-text-color, var(--x-sys-color-on-surface));
	--x-list-item-disabled-headline-text-opacity: var(--x-comp-list-item-disabled-headline-text-opacity, var(--x-sys-state-disabled-text-opacity, 0.38));
	--x-list-item-disabled-supporting-text-color: var(--x-comp-list-item-disabled-supporting-text-color, var(--x-sys-color-on-surface-variant));
	--x-list-item-disabled-supporting-text-opacity: var(--x-comp-list-item-disabled-supporting-text-opacity, var(--x-sys-state-disabled-text-opacity, 0.38));
	--x-list-item-elevated-container-elevation-level: var(--x-comp-list-item-elevated-container-elevation-level, 1);
	--x-list-item-elevated-hover-container-elevation-level: var(--x-comp-list-item-elevated-hover-container-elevation-level, 2);
	--x-list-item-elevated-focus-container-elevation-level: var(--x-comp-list-item-elevated-focus-container-elevation-level, 1);
	--x-list-item-elevated-pressed-container-elevation-level: var(--x-comp-list-item-elevated-pressed-container-elevation-level, 1);
	--x-list-item-filled-container-elevation-level: var(--x-comp-list-item-filled-container-elevation-level, 0);
	--x-list-item-filled-hover-container-elevation-level: var(--x-comp-list-item-filled-hover-container-elevation-level, 1);
	--x-list-item-filled-focus-container-elevation-level: var(--x-comp-list-item-filled-focus-container-elevation-level, 0);
	--x-list-item-filled-pressed-container-elevation-level: var(--x-comp-list-item-filled-pressed-container-elevation-level, 0);
	--x-list-item-headline-text-color: var(--x-comp-list-item-headline-text-color, rgb(var(--x-sys-color-on-surface)));
	--x-list-item-headline-text-font: var(--x-comp-list-item-headline-text-font, inherit);
	--x-list-item-headline-text-hyphens: var(--x-comp-list-item-headline-text-hyphens, auto);
	--x-list-item-headline-text-letter-case: var(--x-comp-list-item-headline-text-letter-case, var(--x-sys-typescale-body-large-letter-case, none));
	--x-list-item-headline-text-line-height: var(--x-comp-list-item-headline-text-line-height, var(--x-sys-typescale-body-large-line-height, 1.5rem));
	--x-list-item-headline-text-overflow: var(--x-comp-list-item-headline-text-overflow, ellipsis);
	--x-list-item-headline-text-overflow-wrap: var(--x-comp-list-item-headline-text-overflow-wrap, normal);
	--x-list-item-headline-text-size: var(--x-comp-list-item-headline-text-size, var(--x-sys-typescale-body-large-size, 1rem));
	--x-list-item-headline-text-tracking: var(--x-comp-list-item-headline-text-tracking, var(--x-sys-typescale-body-large-tracking, 0.03125rem));
	--x-list-item-headline-text-weight: var(--x-comp-list-item-headline-text-weight, var(--x-sys-typescale-body-large-weight, 400));
	--x-list-item-headline-text-white-space: var(--x-comp-list-item-headline-text-white-space, nowrap);
	--x-list-item-headline-text-word-break: var(--x-comp-list-item-headline-text-word-break, normal);
	--x-list-item-headline-text-word-wrap: var(--x-comp-list-item-headline-text-word-wrap, break-word);
	--x-list-item-inline-space: var(--x-comp-list-item-inline-space, 1rem);
	--x-list-item-media-space-between-compensation: var(--x-comp-list-item-media-space-between-compensation, -1rem);
	--x-list-item-menu-action-space-between-compensation: var(--x-comp-list-item-menu-action-space-between-compensation, -0.5rem);
	--x-list-item-menu-inline-space: var(--x-comp-list-item-menu-inline-space, 0.75rem);
	--x-list-item-menu-headline-text-letter-case: var(--x-comp-list-item-menu-headline-text-letter-case, var(--x-sys-typescale-headline-large-letter-case, none));
	--x-list-item-menu-headline-text-line-height: var(--x-comp-list-item-menu-headline-text-line-height, var(--x-sys-typescale-headline-large-line-height, 2.5rem));
	--x-list-item-menu-headline-text-size: var(--x-comp-list-item-menu-headline-text-size, var(--x-sys-typescale-headline-large-size, 2rem));
	--x-list-item-menu-headline-text-weight: var(--x-comp-list-item-menu-headline-text-weight, var(--x-sys-typescale-headline-large-weight, 400));
	--x-list-item-menu-headline-text-tracking: var(--x-comp-list-item-menu-headline-text-tracking, var(--x-sys-typescale-headline-large-tracking, 0));
	--x-list-item-menu-media-space-between-compensation: var(--x-comp-list-item-menu-media-space-between-compensation, -0.75rem);
	--x-list-item-menu-space-between: var(--x-comp-list-item-menu-space-between, 0.75rem);
	--x-list-item-menu-supporting-text-letter-case: var(--x-comp-list-item-menu-supporting-text-letter-case, var(--x-sys-typescale-body-small-letter-case, none));
	--x-list-item-menu-supporting-text-line-height: var(--x-comp-list-item-menu-supporting-text-line-height, var(--x-sys-typescale-body-small-line-height, 1rem));
	--x-list-item-menu-supporting-text-size: var(--x-comp-list-item-menu-supporting-text-size, var(--x-sys-typescale-body-small-size, 0.75rem));
	--x-list-item-menu-supporting-text-tracking: var(--x-comp-list-item-menu-supporting-text-tracking, var(--x-sys-typescale-body-small-tracking, 0.025rem));
	--x-list-item-menu-supporting-text-weight: var(--x-comp-list-item-menu-supporting-text-weight, var(--x-sys-typescale-body-small-weight, 400));
	--x-list-item-menu-one-line-block-space: var(--x-comp-list-item-menu-one-line-block-space, 0.5rem);
	--x-list-item-menu-one-line-container-min-block-size: var(--x-comp-list-item-menu-one-line-container-min-block-size, 3rem);
	--x-list-item-menu-two-line-block-space: var(--x-comp-list-item-menu-two-line-block-space, 0.5rem);
	--x-list-item-menu-two-line-container-min-block-size: var(--x-comp-list-item-menu-two-line-container-min-block-size, 3.5rem);
	--x-list-item-menu-three-line-block-space: var(--x-comp-list-item-menu-three-line-block-space, 0.5rem);
	--x-list-item-menu-three-line-container-min-block-size: var(--x-comp-list-item-menu-three-line-container-min-block-size, 4rem);
	--x-list-item-navigation-action-space-between-compensation: var(--x-comp-list-item-navigation-action-space-between-compensation, -0.5rem);
	--x-list-item-navigation-inline-space: var(--x-comp-list-item-navigation-inline-space, 1.5rem);
	--x-list-item-navigation-block-start-margin: var(--x-comp-list-item-navigation-block-start-margin, 0);
	--x-list-item-navigation-headline-text-letter-case: var(--x-comp-list-item-navigation-headline-text-letter-case, var(--x-sys-typescale-headline-large-letter-case, none));
	--x-list-item-navigation-headline-text-line-height: var(--x-comp-list-item-navigation-headline-text-line-height, var(--x-sys-typescale-headline-large-height, 2.5rem));
	--x-list-item-navigation-headline-text-size: var(--x-comp-list-item-navigation-headline-text-size, var(--x-sys-typescale-headline-large-size, 2rem));
	--x-list-item-navigation-headline-text-weight: var(--x-comp-list-item-navigation-headline-text-weight, var(--x-sys-typescale-headline-large-weight, 400));
	--x-list-item-navigation-headline-text-tracking: var(--x-comp-list-item-navigation-headline-text-tracking, var(--x-sys-typescale-headline-large-tracking, 0));
	--x-list-item-navigation-media-space-between-compensation: var(--x-comp-list-item-navigation-media-space-between-compensation, -1.5rem);
	--x-list-item-navigation-space-between: var(--x-comp-list-item-navigation-space-between, 0.75rem);
	--x-list-item-navigation-supporting-text-letter-case: var(--x-comp-list-item-navigation-supporting-text-letter-case, var(--x-sys-typescale-body-small-letter-case, none));
	--x-list-item-navigation-supporting-text-line-height: var(--x-comp-list-item-navigation-supporting-text-line-height, var(--x-sys-typescale-body-small-line-height, 1rem));
	--x-list-item-navigation-supporting-text-size: var(--x-comp-list-item-navigation-supporting-text-size, var(--x-sys-typescale-body-small-size, 0.75rem));
	--x-list-item-navigation-supporting-text-tracking: var(--x-comp-list-item-navigation-supporting-text-tracking, var(--x-sys-typescale-body-small-tracking, 0.025rem));
	--x-list-item-navigation-supporting-text-weight: var(--x-comp-list-item-navigation-supporting-text-weight, var(--x-sys-typescale-body-small-weight, 400));
	--x-list-item-navigation-one-line-block-space: var(--x-comp-list-item-navigation-one-line-block-space, 0.5rem);
	--x-list-item-navigation-one-line-container-min-block-size: var(--x-comp-list-item-navigation-one-line-container-min-block-size, 3.5rem);
	--x-list-item-navigation-two-line-block-space: var(--x-comp-list-item-navigation-two-line-block-space, 0.5rem);
	--x-list-item-navigation-two-line-container-min-block-size: var(--x-comp-list-item-navigation-two-line-container-min-block-size, 4rem);
	--x-list-item-navigation-three-line-block-space: var(--x-comp-list-item-navigation-three-line-block-space, 0.5rem);
	--x-list-item-navigation-three-line-container-min-block-size: var(--x-comp-list-item-navigation-three-line-container-min-block-size, 4.5rem);
	--x-list-item-outline-color: var(--x-comp-list-item-outline-color, rgb(var(--x-sys-color-outline)));
	--x-list-item-outline-style: var(--x-comp-list-item-outline-style, solid);
	--x-list-item-outline-width: var(--x-comp-list-item-outline-width, 0);
	--x-list-item-outlined-outline-color: var(--x-comp-list-item-outlined-outline-color, rgb(var(--x-sys-color-outline)));
	--x-list-item-outlined-outline-width: var(--x-comp-list-item-outlined-outline-width, 0.0625rem);
	--x-list-item-outlined-hover-outline-color: var(--x-comp-list-item-outlined-hover-outline-color, rgb(var(--x-sys-color-outline)));
	--x-list-item-outlined-focus-outline-color: var(--x-comp-list-item-outlined-focus-outline-color, currentColor);
	--x-list-item-plain-opacity: var(--x-comp-list-item-plain-opacity, 0.72);
	--x-list-item-state-layer-motion-duration: var(--x-comp-list-item-state-layer-motion-duration, var(--x-sys-motion-duration-short4, 200ms));
	--x-list-item-state-layer-motion-easing: var(--x-comp-list-item-state-layer-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
	--x-list-item-space-between: var(--x-comp-list-item-space-between, 1rem);
	--x-list-item-supporting-text-color: var(--x-comp-list-item-supporting-text-color, rgb(var(--x-sys-color-on-surface-variant)));
	--x-list-item-supporting-text-font: var(--x-comp-list-item-supporting-text-font, inherit);
	--x-list-item-supporting-text-letter-case: var(--x-comp-list-item-supporting-text-letter-case, var(--x-sys-typescale-body-medium-letter-case, none));
	--x-list-item-supporting-text-line-height: var(--x-comp-list-item-supporting-text-line-height, var(--x-sys-typescale-body-medium-line-height, 1.25rem));
	--x-list-item-supporting-text-opacity: var(--x-comp-list-item-supporting-text-opacity, 1);
	--x-list-item-supporting-text-overflow: var(--x-comp-list-item-supporting-text-overflow, ellipsis);
	--x-list-item-supporting-text-overflow-wrap: var(--x-comp-list-item-supporting-text-overflow-wrap, break-word);
	--x-list-item-supporting-text-size: var(--x-comp-list-item-supporting-text-size, var(--x-sys-typescale-body-medium-size, 0.875rem));
	--x-list-item-supporting-text-tracking: var(--x-comp-list-item-supporting-text-tracking, var(--x-sys-typescale-body-medium-tracking, 0.015625rem));
	--x-list-item-supporting-text-weight: var(--x-comp-list-item-supporting-text-weight, var(--x-sys-typescale-body-medium-weight, 400));
	--x-list-item-supporting-text-word-break: var(--x-comp-list-item-supporting-text-word-break, initial);
	--x-list-item-tonal-container-opacity: var(--x-comp-list-item-tonal-container-opacity, var(--x-sys-state-pressed-state-layer-opacity, 0.1));
	--x-list-item-one-line-block-space: var(--x-comp-list-item-one-line-block-space, 0.5rem);
	--x-list-item-one-line-container-min-block-size: var(--x-comp-list-item-one-line-container-min-block-size, 3.5rem);
	--x-list-item-one-line-media-block-space: var(--x-comp-list-item-one-line-media-block-space, 0.25rem);
	--x-list-item-two-line-block-space: var(--x-comp-list-item-two-line-block-space, 0.5rem);
	--x-list-item-two-line-container-min-block-size: var(--x-comp-list-item-two-line-container-min-block-size, 4.5rem);
	--x-list-item-two-line-media-block-space: var(--x-comp-list-item-two-line-media-block-space, 0.25rem);
	--x-list-item-three-line-block-space: var(--x-comp-list-item-three-line-block-space, 0.75rem);
	--x-list-item-three-line-container-min-block-size: var(--x-comp-list-item-three-line-container-min-block-size, 5.5rem);
	--x-list-item-three-line-media-block-space: var(--x-comp-list-item-three-line-media-block-space, 0rem);
}

.x-list-item {
	align-items: center;
	box-sizing: border-box;
	display: grid;
	flex: none;
	grid-template-areas: "start content end";
	grid-template-columns: max-content 1fr auto;
	min-block-size: calc(var(--_x-list-item-container-min-block-size));
	max-inline-size: 100%;
	outline: none;
	padding-block: var(--_x-list-item-block-space);
	padding-inline: calc(var(--x-list-item-inline-space) + (var(--_x-list-indent-size))) var(--x-list-item-inline-space);
	position: relative;
	text-decoration: none;
	border-color: var(--x-list-item-outline-color);
	border-style: var(--x-list-item-outline-style);
	border-width: var(--x-list-item-outline-width);
	border-radius: var(--x-list-item-container-shape);
}

.x-list-item__start,
.x-list-item__end {
	align-items: center;
	align-self: center;
	display: flex;
}

.x-list-item__start {
	grid-area: start;
	margin-inline-end: var(--x-list-item-space-between);
}

.x-list-item--menu .x-list-item__start {
	margin-inline-end: var(--x-list-item-menu-space-between);
}

.x-list-item--navigation .x-list-item__start {
	margin-inline-end: var(--x-list-item-navigation-space-between);
}

.x-list-item--three-line > .x-list-item__start {
	align-self: start;
}

.x-list-item__end {
	grid-area: end;
	margin-inline-start: var(--x-list-item-space-between);
}

.x-list-item--menu .x-list-item__end {
	margin-inline-start: var(--x-list-item-menu-space-between);
}

.x-list-item--navigation .x-list-item__end {
	margin-inline-start: var(--x-list-item-navigation-space-between);
}

.x-list-item--three-line .x-list-item__end {
	align-self: start;
}

.x-list-item__content {
	align-self: center;
	grid-area: content;
	overflow: hidden;
}

@media (hover: hover) {
	.x-list-item:hover > .x-state-layer {
		--x-state-layer-opacity: calc(var(--x-sys-state-hover-state-layer-opacity, 0.08) * var(--x-sys-state-layer-opacity-multiplier, 1));
	}
}

.x-list-item:focus-visible > .x-state-layer {
	--x-state-layer-opacity: calc(var(--x-sys-state-focus-state-layer-opacity, 0.1) * var(--x-sys-state-layer-opacity-multiplier, 1));
}

@supports not selector(:focus-visible) {
	.x-list-item:focus > .x-state-layer {
		--x-state-layer-opacity: calc(var(--x-sys-state-focus-state-layer-opacity, 0.1) * var(--x-sys-state-layer-opacity-multiplier, 1));
	}
}

.x-list-item--selected:not(.x-list-item--selected-without-state) > .x-state-layer,
.x-list-item[aria-haspopup=menu][aria-expanded=true]:not(.x-list-item--selected-without-state) > .x-state-layer {
	--x-state-layer-opacity: calc(var(--x-sys-state-pressed-state-layer-opacity, 0.1) * var(--x-sys-state-layer-opacity-multiplier, 1));
}

@media (hover: hover) {

	.x-list-item--selected:not(.x-list-item--selected-without-state):hover > .x-state-layer,
	.x-list-item[aria-haspopup=menu][aria-expanded=true]:not(.x-list-item--selected-without-state):hover > .x-state-layer {
		--x-state-layer-opacity: calc((var(--x-sys-state-pressed-state-layer-opacity, 0.1) + var(--x-sys-state-hover-state-layer-opacity, 0.08)) * var(--x-sys-state-layer-opacity-multiplier, 1));
	}
}

.x-list-item--selected:not(.x-list-item--selected-without-state):focus-visible > .x-state-layer,
.x-list-item[aria-haspopup=menu][aria-expanded=true]:not(.x-list-item--selected-without-state):focus-visible > .x-state-layer {
	--x-state-layer-opacity: calc((var(--x-sys-state-pressed-state-layer-opacity, 0.1) + var(--x-sys-state-focus-state-layer-opacity, 0.1)) * var(--x-sys-state-layer-opacity-multiplier, 1));
}

@supports not selector(:focus-visible) {

	.x-list-item--selected:not(.x-list-item--selected-without-state):focus > .x-state-layer,
	.x-list-item[aria-haspopup=menu][aria-expanded=true]:not(.x-list-item--selected-without-state):focus > .x-state-layer {
		--x-state-layer-opacity: calc((var(--x-sys-state-pressed-state-layer-opacity, 0.1) + var(--x-sys-state-focus-state-layer-opacity, 0.1)) * var(--x-sys-state-layer-opacity-multiplier, 1));
	}
}

.x-list-item > .x-state-layer {
	--x-comp-state-layer-motion-duration: var(--x-list-item-state-layer-motion-duration);
	--x-comp-state-layer-motion-easing: var(--x-list-item-state-layer-motion-easing);
}

.x-list-item:where(:not(.x-list-item--interactive)) > .x-state-layer {
	display: none;
}

.x-list-item--one-line.x-list-item--density-default {
	--_x-list-item-block-space: var(--x-list-item-one-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-one-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-default-multiplier));
}

.x-list-item--two-line.x-list-item--density-default {
	--_x-list-item-block-space: var(--x-list-item-two-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-two-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-default-multiplier));
}

.x-list-item--three-line.x-list-item--density-default {
	--_x-list-item-block-space: var(--x-list-item-three-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-three-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-default-multiplier));
}

.x-list-item--one-line.x-list-item--density-comfortable {
	--_x-list-item-block-space: var(--x-list-item-one-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-one-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-comfortable-multiplier));
}

.x-list-item--two-line.x-list-item--density-comfortable {
	--_x-list-item-block-space: var(--x-list-item-two-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-two-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-comfortable-multiplier));
}

.x-list-item--three-line.x-list-item--density-comfortable {
	--_x-list-item-block-space: var(--x-list-item-three-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-three-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-comfortable-multiplier));
}

.x-list-item--one-line.x-list-item--density-compact {
	--_x-list-item-block-space: var(--x-list-item-one-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-one-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-compact-multiplier));
}

.x-list-item--two-line.x-list-item--density-compact {
	--_x-list-item-block-space: var(--x-list-item-two-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-two-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-compact-multiplier));
}

.x-list-item--three-line.x-list-item--density-compact {
	--_x-list-item-block-space: var(--x-list-item-three-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-three-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-compact-multiplier));
}

.x-list-item--disabled {
	opacity: 1;
	pointer-events: none;
	user-select: none;
}

.x-list-item--disabled.x-list-item {
	color: rgba(var(--x-list-item-disabled-headline-text-color), var(--x-list-item-disabled-headline-text-opacity)) !important;
}

.x-list-item--disabled.x-list-item .x-list-item-headline {
	color: rgba(var(--x-list-item-disabled-headline-text-color), var(--x-list-item-disabled-headline-text-opacity)) !important;
}

.x-list-item--disabled.x-list-item .x-list-item-supporting-text {
	color: rgba(var(--x-list-item-disabled-supporting-text-color), var(--x-list-item-disabled-supporting-text-opacity)) !important;
}

.x-list-item--disabled.x-list-item .x-list-item-media {
	filter: grayscale(1);
	opacity: var(--x-list-item-disabled-headline-text-opacity);
}

.x-list-item--disabled.x-list-item--variant-elevated,
.x-list-item--disabled.x-list-item--variant-filled {
	--x-elevation-level: var(--x-list-item-disabled-container-elevation-level);
	background: rgba(var(--x-list-item-disabled-container-color), var(--x-list-item-disabled-container-opacity)) !important;
}

.x-list-item--disabled.x-list-item--variant-outlined {
	border-color: rgba(var(--x-list-item-disabled-outline-color), var(--x-list-item-disabled-outline-opacity));
}

.x-list-item:where(.x-elevation) {
	--x-elevation-shadow-color: var(--x-card-container-shadow-color);
}

.x-list-item--interactive {
	cursor: pointer;
	transition-duration: var(--x-list-item-container-motion-duration);
	transition-property: var(--x-list-item-container-motion-property);
	transition-timing-function: var(--x-list-item-container-motion-easing);
	user-select: none;
}

@media (prefers-reduced-motion: reduce) {
	.x-list-item--interactive {
		transition: none;
	}
}

@media (hover: hover) {
	.x-list-item--interactive:where(.x-elevation).x-list-item--variant-elevated:hover {
		--x-elevation-level: var(--x-list-item-elevated-hover-container-elevation-level);
	}
}

.x-list-item--interactive:where(.x-elevation).x-list-item--variant-elevated:focus-visible {
	--x-elevation-level: var(--x-list-item-elevated-focus-container-elevation-level);
}

@supports not selector(:focus-visible) {
	.x-list-item--interactive:where(.x-elevation).x-list-item--variant-elevated:focus {
		--x-elevation-level: var(--x-list-item-elevated-focus-container-elevation-level);
	}
}

.x-list-item--interactive:where(.x-elevation).x-list-item--variant-elevated:active {
	--x-elevation-level: var(--x-list-item-elevated-pressed-container-elevation-level);
}

@media (hover: hover) {
	.x-list-item--interactive:where(.x-elevation).x-list-item--variant-filled:hover {
		--x-elevation-level: var(--x-list-item-filled-hover-container-elevation-level);
	}
}

.x-list-item--interactive:where(.x-elevation).x-list-item--variant-filled:focus-visible {
	--x-elevation-level: var(--x-list-item-filled-focus-container-elevation-level);
}

@supports not selector(:focus-visible) {
	.x-list-item--interactive:where(.x-elevation).x-list-item--variant-filled:focus {
		--x-elevation-level: var(--x-list-item-filled-focus-container-elevation-level);
	}
}

.x-list-item--interactive:where(.x-elevation).x-list-item--variant-filled:active {
	--x-elevation-level: var(--x-list-item-filled-pressed-container-elevation-level);
}

.x-list-item--menu {
	padding-inline: calc(var(--x-list-item-menu-inline-space) + (var(--_x-list-indent-size))) var(--x-list-item-menu-inline-space);
}

.x-list-item--one-line.x-list-item--density-default.x-list-item--menu {
	--_x-list-item-block-space: var(--x-list-item-menu-one-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-menu-one-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-default-multiplier));
}

.x-list-item--two-line.x-list-item--density-default.x-list-item--menu {
	--_x-list-item-block-space: var(--x-list-item-menu-two-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-menu-two-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-default-multiplier));
}

.x-list-item--three-line.x-list-item--density-default.x-list-item--menu {
	--_x-list-item-block-space: var(--x-list-item-menu-three-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-menu-three-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-default-multiplier));
}

.x-list-item--one-line.x-list-item--density-comfortable.x-list-item--menu {
	--_x-list-item-block-space: var(--x-list-item-menu-one-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-menu-one-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-comfortable-multiplier));
}

.x-list-item--two-line.x-list-item--density-comfortable.x-list-item--menu {
	--_x-list-item-block-space: var(--x-list-item-menu-two-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-menu-two-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-comfortable-multiplier));
}

.x-list-item--three-line.x-list-item--density-comfortable.x-list-item--menu {
	--_x-list-item-block-space: var(--x-list-item-menu-three-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-menu-three-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-comfortable-multiplier));
}

.x-list-item--one-line.x-list-item--density-compact.x-list-item--menu {
	--_x-list-item-block-space: var(--x-list-item-menu-one-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-menu-one-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-compact-multiplier));
}

.x-list-item--two-line.x-list-item--density-compact.x-list-item--menu {
	--_x-list-item-block-space: var(--x-list-item-menu-two-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-menu-two-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-compact-multiplier));
}

.x-list-item--three-line.x-list-item--density-compact.x-list-item--menu {
	--_x-list-item-block-space: var(--x-list-item-menu-three-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-menu-three-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-compact-multiplier));
}

.x-list-item--navigation {
	padding-inline: var(--x-list-item-navigation-inline-space);
}

.x-list-item--one-line.x-list-item--density-default.x-list-item--navigation {
	--_x-list-item-block-space: var(--x-list-item-navigation-one-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-navigation-one-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-default-multiplier));
}

.x-list-item--two-line.x-list-item--density-default.x-list-item--navigation {
	--_x-list-item-block-space: var(--x-list-item-navigation-two-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-navigation-two-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-default-multiplier));
}

.x-list-item--three-line.x-list-item--density-default.x-list-item--navigation {
	--_x-list-item-block-space: var(--x-list-item-navigation-three-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-navigation-three-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-default-multiplier));
}

.x-list-item--one-line.x-list-item--density-comfortable.x-list-item--navigation {
	--_x-list-item-block-space: var(--x-list-item-navigation-one-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-navigation-one-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-comfortable-multiplier));
}

.x-list-item--two-line.x-list-item--density-comfortable.x-list-item--navigation {
	--_x-list-item-block-space: var(--x-list-item-navigation-two-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-navigation-two-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-comfortable-multiplier));
}

.x-list-item--three-line.x-list-item--density-comfortable.x-list-item--navigation {
	--_x-list-item-block-space: var(--x-list-item-navigation-three-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-navigation-three-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-comfortable-multiplier));
}

.x-list-item--one-line.x-list-item--density-compact.x-list-item--navigation {
	--_x-list-item-block-space: var(--x-list-item-navigation-one-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-navigation-one-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-compact-multiplier));
}

.x-list-item--two-line.x-list-item--density-compact.x-list-item--navigation {
	--_x-list-item-block-space: var(--x-list-item-navigation-two-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-navigation-two-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-compact-multiplier));
}

.x-list-item--three-line.x-list-item--density-compact.x-list-item--navigation {
	--_x-list-item-block-space: var(--x-list-item-navigation-three-line-block-space);
	--_x-list-item-container-min-block-size: var(--x-list-item-navigation-three-line-container-min-block-size) + (var(--x-list-item-density-reducer) * var(--x-list-item-density-compact-multiplier));
}

.x-list .x-list-item--navigation:not(:only-child):not(:first-child) {
	margin-block-start: var(--x-list-item-navigation-block-start-margin);
}

.x-list-item--outlined {
	border-width: var(--x-list-item-outlined-outline-width);
}

.x-list-item--variant-elevated,
.x-list-item--variant-filled {
	background-color: var(--x-list-item-container-color);
	color: var(--x-list-item-headline-text-color);
}

.x-list-item--variant-elevated {
	--x-sys-container-opacity: var(--x-list-item-container-opacity);
	--x-elevation-level: var(--x-list-item-elevated-container-elevation-level);
}

.x-list-item--variant-filled {
	--x-sys-container-opacity: var(--x-list-item-container-opacity);
	--x-elevation-level: var(--x-list-item-filled-container-elevation-level);
}

.x-list-item--variant-outlined,
.x-list-item--variant-plain,
.x-list-item--variant-text,
.x-list-item--variant-tonal {
	background: transparent;
	color: inherit;
}

.x-list-item--variant-outlined {
	border-color: var(--x-list-item-outlined-outline-color);
	border-width: var(--x-list-item-outlined-outline-width);
}

@media (hover: hover) {
	.x-list-item--variant-outlined:hover {
		border-color: var(--x-list-item-outlined-hover-outline-color);
	}
}

.x-list-item--variant-outlined:focus-visible {
	border-color: var(--x-list-item-outlined-focus-outline-color);
}

@supports not selector(:focus-visible) {
	.x-list-item--variant-outlined:focus {
		border-color: var(--x-list-item-outlined-focus-outline-color);
	}
}

.x-list-item--variant-outlined.x-list-item--selected,
.x-list-item[aria-haspopup=menu][aria-expanded=true] {
	border-color: var(--x-list-item-outlined-pressed-outline-color);
}

.x-list-item--variant-plain {
	opacity: var(--x-list-item-plain-opacity);
}

@media (hover: hover) {
	.x-list-item--variant-plain:hover {
		opacity: 1;
	}
}

.x-list-item--variant-plain:focus-visible {
	opacity: 1;
}

@supports not selector(:focus-visible) {
	.x-list-item--variant-plain:focus {
		opacity: 1;
	}
}

.x-list-item--variant-plain > .x-state-layer {
	display: none;
}

.x-list-item--variant-plain.x-list-item--selected,
.x-list-item[aria-haspopup=menu][aria-expanded=true] {
	opacity: 1;
}

.x-list-item--variant-tonal {
	--x-sys-container-opacity: var(--x-list-item-tonal-container-opacity);
}

.x-list-item--variant-tonal::before {
	background-color: currentColor;
	border-radius: inherit;
	content: "";
	opacity: var(--x-sys-container-opacity);
	pointer-events: none;
	inset: 0;
	position: absolute;
}

.x-list-item-action {
	align-items: center;
	align-self: center;
	box-sizing: border-box;
	display: flex;
	flex: none;
	margin-inline: var(--x-list-item-action-space-between-compensation);
	transition: inherit;
	transition-property: height, width;
}

.x-list-item--menu .x-list-item-action {
	margin-inline: var(--x-list-item-menu-action-space-between-compensation);
}

.x-list-item--navigation .x-list-item-action {
	margin-inline: var(--x-list-item-navigation-action-space-between-compensation);
}

.x-list-item-headline {
	box-sizing: border-box;
	color: var(--x-list-item-headline-text-color);
	display: block;
	font-family: var(--x-list-item-headline-text-font);
	font-size: var(--x-list-item-headline-text-size);
	font-weight: var(--x-list-item-headline-text-weight);
	hyphens: var(--x-list-item-headline-text-hyphens);
	letter-spacing: var(--x-list-item-headline-text-tracking);
	line-height: var(--x-list-item-headline-text-line-height);
	overflow: hidden;
	overflow-wrap: var(--x-list-item-headline-text-overflow-wrap);
	text-decoration: none;
	text-indent: var(--x-list-item-headline-text-tracking);
	text-overflow: var(--x-list-item-headline-text-overflow);
	text-transform: var(--x-list-item-headline-text-letter-case);
	white-space: var(--x-list-item-headline-text-white-space);
	word-break: var(--x-list-item-headline-text-word-break);
	word-wrap: var(--x-list-item-headline-text-word-wrap);
}

.x-list-item--menu .x-list-item-headline {
	--x-list-item-headline-text-size: var(--x-list-item-menu-headline-text-size);
	--x-list-item-headline-text-weight: var(--x-list-item-menu-headline-text-weight);
	--x-list-item-headline-text-tracking: var(--x-list-item-menu-headline-text-tracking);
	--x-list-item-headline-text-line-height: var(--x-list-item-menu-headline-text-line-height);
	--x-list-item-headline-text-letter-case: var(--x-list-item-menu-headline-text-letter-case);
}

.x-list-item--navigation .x-list-item-headline {
	--x-list-item-headline-text-size: var(--x-list-item-navigation-headline-text-size);
	--x-list-item-headline-text-weight: var(--x-list-item-navigation-headline-text-weight);
	--x-list-item-headline-text-tracking: var(--x-list-item-navigation-headline-text-tracking);
	--x-list-item-headline-text-line-height: var(--x-list-item-navigation-headline-text-line-height);
	--x-list-item-headline-text-letter-case: var(--x-list-item-navigation-headline-text-letter-case);
}

.x-list-item-media {
	box-sizing: border-box;
}

.x-list-item-media--large.x-list-item-media--start {
	margin-inline-start: var(--x-list-item-media-space-between-compensation);
}

.x-list-item--menu .x-list-item-media--large.x-list-item-media--start {
	margin-inline-start: var(--x-list-item-menu-media-space-between-compensation);
}

.x-list-item--navigation .x-list-item-media--large.x-list-item-media--start {
	margin-inline-start: var(--x-list-item-navigation-media-space-between-compensation);
}

.x-list-item-media--large.x-list-item-media--end {
	margin-inline-end: var(--x-list-item-navigation-media-space-between-compensation);
}

.x-list-item--menu .x-list-item-media--large.x-list-item-media--end {
	margin-inline-end: var(--x-list-item-menu-media-space-between-compensation);
}

.x-list-item--navigation .x-list-item-media--large.x-list-item-media--end {
	margin-inline-end: var(--x-list-item-navigation-media-space-between-compensation);
}

.x-list-item--one-line .x-list-item-media--large {
	padding-bottom: var(--x-list-item-one-line-media-block-space);
	padding-top: var(--x-list-item-one-line-media-block-space);
}

.x-list-item--two-line .x-list-item-media--large {
	padding-bottom: var(--x-list-item-two-line-media-block-space);
	padding-top: var(--x-list-item-two-line-media-block-space);
}

.x-list-item--three-line .x-list-item-media--large {
	padding-bottom: var(--x-list-item-three-line-media-block-space);
	padding-top: var(--x-list-item-three-line-media-block-space);
}

.x-list-item-supporting-text {
	-webkit-box-orient: vertical;
	box-sizing: border-box;
	color: var(--x-list-item-supporting-text-color);
	display: -webkit-box;
	font-family: var(--x-list-item-supporting-text-font);
	font-size: var(--x-list-item-supporting-text-size);
	font-weight: var(--x-list-item-supporting-text-weight);
	letter-spacing: var(--x-list-item-supporting-text-tracking);
	line-height: var(--x-list-item-supporting-text-line-height);
	opacity: var(--x-list-item-supporting-text-opacity);
	overflow: hidden;
	overflow-wrap: var(--x-list-item-supporting-text-overflow-wrap);
	text-indent: var(--x-list-item-supporting-text-tracking);
	text-overflow: ellipsis;
	text-transform: var(--x-list-item-supporting-text-letter-case);
	word-break: var(--x-list-item-supporting-text-word-break);
}

.x-list-item--one-line .x-list-item-supporting-text {
	-webkit-line-clamp: 1;
}

.x-list-item--two-line .x-list-item-supporting-text {
	-webkit-line-clamp: 2;
}

.x-list-item--three-line .x-list-item-supporting-text {
	-webkit-line-clamp: 3;
}

.x-list-item--menu .x-list-item-supporting-text {
	--x-list-item-supporting-text-size: var(--x-list-item-menu-supporting-text-size);
	--x-list-item-supporting-text-weight: var(--x-list-item-menu-supporting-text-weight);
	--x-list-item-supporting-text-tracking: var(--x-list-item-menu-supporting-text-tracking);
	--x-list-item-supporting-text-line-height: var(--x-list-item-menu-supporting-text-line-height);
	--x-list-item-supporting-text-letter-case: var(--x-list-item-menu-supporting-text-letter-case);
}

.x-list-item--navigation .x-list-item-supporting-text {
	--x-list-item-supporting-text-size: var(--x-list-item-navigation-supporting-text-size);
	--x-list-item-supporting-text-weight: var(--x-list-item-navigation-supporting-text-weight);
	--x-list-item-supporting-text-tracking: var(--x-list-item-navigation-supporting-text-tracking);
	--x-list-item-supporting-text-line-height: var(--x-list-item-navigation-supporting-text-line-height);
	--x-list-item-supporting-text-letter-case: var(--x-list-item-navigation-supporting-text-letter-case);
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/list/list.css?17303799886587*/
.x-list {
	--x-list-block-space: var(--x-comp-list-block-space, 0.5rem);
	--x-list-container-color: var(--x-comp-list-container-color, rgba(var(--x-sys-color-surface), var(--x-sys-container-opacity)));
	--x-list-container-elevation-level: var(--x-comp-list-container-elevation-level, 0);
	--x-list-container-opacity: var(--x-comp-list-container-opacity, 1);
	--x-list-container-shadow-color: var(--x-comp-list-container-shadow-color, var(--x-sys-color-shadow));
	--x-list-container-shape: var(--x-comp-list-container-shape, var(--x-sys-shape-corner-none, 0));
	--x-list-content-text-color: var(--x-comp-list-content-text-color, rgb(var(--x-sys-color-on-surface)));
	--x-list-density-compact-multiplier: var(--x-comp-list-density-compact-multiplier, -2);
	--x-list-density-comfortable-multiplier: var(--x-comp-list-density-comfortable-multiplier, -1);
	--x-list-density-default-multiplier: var(--x-comp-list-density-default-multiplier, 0);
	--x-list-density-reducer: var(--x-comp-list-density-reducer, 0.25rem);
	--x-list-elevated-container-elevation-level: var(--x-comp-list-elevated-container-elevation-level, 1);
	--x-list-headline-min-block-size: var(--x-comp-list-headline-min-block-size, 2.5rem);
	--x-list-headline-inline-space: var(--x-comp-list-headline-inline-space, 1rem);
	--x-list-headline-inset-inline-start-space: var(--x-comp-list-headline-inset-inline-start-space, 3.5rem);
	--x-list-headline-motion-duration: var(--x-comp-list-headline-motion-duration, var(--x-sys-motion-duration-short4, 200ms));
	--x-list-headline-motion-easing: var(--x-comp-list-headline-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
	--x-list-headline-text-color: var(--x-comp-list-headline-text-color, rgb(var(--x-sys-color-on-surface-variant)));
	--x-list-headline-text-font: var(--x-comp-list-headline-text-font, inherit);
	--x-list-headline-text-letter-case: var(--x-comp-list-headline-text-letter-case, var(--x-sys-typescale-title-small-size, none));
	--x-list-headline-text-line-height: var(--x-comp-list-headline-text-line-height, var(--x-sys-typescale-title-small-size, 1.25rem));
	--x-list-headline-text-opacity: var(--x-comp-list-headline-text-opacity, 1);
	--x-list-headline-text-size: var(--x-comp-list-headline-text-size, var(--x-sys-typescale-title-small-size, 0.875rem));
	--x-list-headline-text-tracking: var(--x-comp-list-headline-text-tracking, var(--x-sys-typescale-title-small-tracking, 0.00625rem));
	--x-list-headline-text-weight: var(--x-comp-list-headline-text-weight, var(--x-sys-typescale-title-small-weight, 500));
	--x-list-indent-size: var(--x-comp-list-indent-size, 1rem);
	--x-list-inline-space: var(--x-comp-list-inline-space, 0);
	--x-list-navigation-inline-space: var(--x-comp-list-navigation-inline-space, 0.75rem);
	--x-list-navigation-headline-inline-space: var(--x-comp-list-navigation-headline-inline-space, 0.75rem);
	--x-list-outline-color: var(--x-comp-list-outline-color, rgb(var(--x-sys-color-outline-variant)));
	--x-list-outline-style: var(--x-comp-list-outline-style, solid);
	--x-list-outline-width: var(--x-comp-list-outline-width, 0);
	--x-list-outlined-outline-width: var(--x-comp-list-outlined-outline-width, 0.0625rem);
	--x-list-with-headline-block-start-space: var(--x-comp-list-with-headline-block-start-space, 0);
	--x-list-with-leading-inline-size: var(--x-comp-list-with-leading-inline-size, 2.5rem);
}

.x-list {
	--x-sys-container-opacity: var(--x-list-container-opacity);
	--_x-list-indent-size: 0rem;
	box-sizing: border-box;
	outline: none;
	overflow: auto;
	padding-block: var(--x-list-block-space);
	padding-inline: var(--x-list-inline-space);
	position: relative;
	border-color: var(--x-list-outline-color);
	border-style: var(--x-list-outline-style);
	border-width: var(--x-list-outline-width);
	border-radius: var(--x-list-container-shape);
	background-color: var(--x-list-container-color);
	color: var(--x-list-content-text-color);
}

.x-list--disabled {
	pointer-events: none;
	user-select: none;
}

.x-list:where(.x-elevation) {
	--x-elevation-level: var(--x-list-container-elevation-level);
	--x-elevation-shadow-color: var(--x-list-container-shadow-color);
}

.x-list--elevated:where(.x-elevation) {
	--x-elevation-level: var(--x-list-elevated-container-elevation-level);
}

.x-list--navigation {
	--_x-list-indent-size: var(--x-list-navigation-inline-space);
	padding-inline: var(--x-list-navigation-inline-space);
}

.x-list--navigation > .x-list-headline {
	--x-list-headline-inline-space: var(--x-list-navigation-headline-inline-space);
}

.x-list--outlined {
	border-width: var(--x-list-outlined-outline-width);
}

.x-list--with-headline {
	padding-block-start: var(--x-list-with-headline-block-start-space);
}

.x-list-headline {
	align-items: center;
	background: inherit;
	box-sizing: border-box;
	color: var(--x-list-headline-text-color);
	display: flex;
	font-family: var(--x-list-headline-text-font);
	font-size: var(--x-list-headline-text-size);
	font-weight: var(--x-list-headline-text-weight);
	letter-spacing: var(--x-list-headline-text-tracking);
	line-height: var(--x-list-headline-text-line-height);
	opacity: var(--x-list-headline-text-opacity);
	padding-inline-end: var(--x-list-headline-inline-space);
	padding-inline-start: calc(var(--x-list-headline-inline-space) + var(--_x-list-indent-size));
	text-indent: var(--x-list-headline-text-tracking);
	text-transform: var(--x-list-headline-text-letter-case);
	transition-duration: var(--x-list-headline-motion-duration);
	transition-property: min-height;
	transition-timing-function: var(--x-list-headline-motion-easing);
}

.x-list-headline__text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.x-list--density-default .x-list-headline {
	min-block-size: calc(var(--x-list-headline-min-block-size) + var(--x-list-density-reducer) * var(--x-list-density-default-multiplier));
}

.x-list--density-comfortable .x-list-headline {
	min-block-size: calc(var(--x-list-headline-min-block-size) + var(--x-list-density-reducer) * var(--x-list-density-comfortable-multiplier));
}

.x-list--density-compact .x-list-headline {
	min-block-size: calc(var(--x-list-headline-min-block-size) + var(--x-list-density-reducer) * var(--x-list-density-compact-multiplier));
}

.x-list-headline--inset {
	--_x-list-indent-size: var(--x-list-headline-inset-inline-start-space);
}

.x-list-headline--sticky {
	background: inherit;
	left: 0;
	position: sticky;
	top: 0;
	z-index: 1;
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/main/main.css?17305872401284*/
.x-main {
	--x-main-block-space-end: var(--x-comp-main-block-space-end, 0rem);
	--x-main-block-space-start: var(--x-comp-main-block-space-start, 0rem);
	--x-main-inline-space-end: var(--x-comp-main-inline-space-end, 0rem);
	--x-main-inline-space-start: var(--x-comp-main-inline-space-start, 0rem);
	--x-main-container-motion-duration: var(--x-sys-motion-duration-short-4, 200ms);
	--x-main-container-motion-easing: var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1));
}

.x-main {
	flex: 1 0 auto;
	max-inline-size: 100%;
	padding-block-end: var(--x-main-block-space-end);
	padding-block-start: var(--x-main-block-space-start);
	padding-inline-end: var(--x-main-inline-space-end);
	padding-inline-start: var(--x-main-inline-space-start);
	transition-duration: var(--x-main-container-motion-duration);
	transition-timing-function: var(--x-main-container-motion-easing);
}

.x-main__scroller {
	max-inline-size: 100%;
	position: relative;
}

.x-main--scrollable {
	display: flex;
	inset: 0;
	position: absolute;
}

.x-main--scrollable > .x-main__scroller {
	--x-main-block-space-end: 0rem;
	--x-main-block-space-start: 0rem;
	--x-main-inline-space-end: 0rem;
	--x-main-inline-space-start: 0rem;

	flex: 1 1 auto;
	overflow-y: auto;
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/native-select/native-select.css?17306047142411*/
.x-native-select__prefix,
.x-native-select__suffix {
	align-items: center;
	color: var(--x-native-select-affix-color,
			rgba(var(--x-sys-color-on-surface), var(--x-sys-opacity-medium-emphasis)));
	cursor: default;
	display: flex;
	opacity: 0;
	padding-top: var(--x-field-padding-top);
	transition: inherit;
	white-space: nowrap;
}

.x-native-select__indicator-icon {
	transition: .2s cubic-bezier(.4, 0, .2, 1);
}

.x-native-select .x-field {
	padding-inline-end: 0;
}

.x-native-select .x-field__append-inner {
	left: auto;
	padding-inline-end: 1rem;
	pointer-events: none;
	position: absolute;
	right: 0;
	user-select: none;
}

.x-field--active .x-native-select__prefix,
.x-field--active .x-native-select__suffix {
	opacity: 1;
}

.x-field--active .x-native-select__indicator-icon {
	transform: rotate(180deg);
}

.x-field--disabled .x-native-select__prefix,
.x-field--disabled .x-native-select__suffix {
	color: var(--x-native-select-disabled-affix-color,
			rgba(var(--x-sys-color-on-surface), var(--x-sys-opacity-disabled)));
}

.x-native-select__prefix {
	padding-inline-start: var(--x-field-padding-start);
}

.x-native-select__suffix {
	padding-inline-end: var(--x-field-padding-end);
}

.x-native-select input {
	color: inherit;
	flex: var(--x-native-select-input-flex, 1);
	opacity: 0;
	transition: var(--x-native-select-input-transition,
			0.15s opacity cubic-bezier(0.4, 0, 0.2, 1));
}

.x-native-select input:focus,
.x-native-select input:active {
	outline: none;
}

.x-native-select input:invalid {
	box-shadow: none;
}

.x-native-select .x-field {
	cursor: text;
}

.x-native-select--prefixed.x-native-select .x-field__input {
	--x-field-padding-start: var(--x-native-select-input-padding-start, 0.375rem);
}

.x-native-select--suffixed.x-native-select .x-field__input {
	--x-field-padding-end: var(--x-native-select-input-padding-end, 0);
}

.x-native-select .x-field--active input {
	opacity: 1;
}

.x-native-select .x-field--single-line input {
	transition: none;
}

.x-native-select .x-input__details {
	padding-inline-start: var(--x-native-select-details-padding-inline, 1rem);
	padding-inline-end: var(--x-native-select-details-padding-inline, 1rem);
}

.x-native-select--flush-details .x-input__details {
	padding: 0;
}

.x-native-select--persistent-placeholder input {
	opacity: 1;
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/responsive/responsive.css?17303799881240*/
.x-responsive {
	--x-responsive-sizer-motion-duration: var(
        --x-comp-responsive-sizer-motion-duration,
		var(--x-sys-motion-duration-short4, 200ms)
    );
	--x-responsive-sizer-motion-easing: var(
        --x-comp-responsive-sizer-motion-easing,
		var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1))
    );
}

.x-responsive {
	display: flex;
	flex: 1 0 auto;
	max-block-size: 100%;
	max-inline-size: 100%;
	overflow: hidden;
	position: relative;
}

.x-responsive__content {
	flex: 1 0 0;
	max-inline-size: 100%;
}

.x-responsive__sizer {
	flex: 1 0 0;
	padding-top: var(--x-aspect-ratio, 0);
	pointer-events: none;
	transition-duration: var(--x-responsive-sizer-motion-duration);
	transition-property: padding-top;
	transition-timing-function: var(--x-responsive-sizer-motion-easing);
}

.x-responsive__sizer ~ .x-responsive__content {
	margin-inline-start: -100%;
}

.x-responsive--ratio-1\/1 {
	--x-aspect-ratio: 100%;
}

.x-responsive--ratio-4\/3 {
	--x-aspect-ratio: 75%;
}

.x-responsive--ratio-16\/9 {
	--x-aspect-ratio: 56.25%;
}

.x-responsive--ratio-16\/10 {
	--x-aspect-ratio: 62.5%;
}

.x-responsive--ratio-21\/9 {
	--x-aspect-ratio: 42.8571428571%;
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/state-layer/state-layer.css?1730379988930*/
.x-state-layer {
	--x-state-layer-color: var(--x-comp-state-layer-color, currentColor);
	--x-state-layer-motion-duration: var(--x-comp-state-layer-motion-duration, var(--x-sys-motion-duration-short4, 200ms));
	--x-state-layer-motion-easing: var(--x-comp-state-layer-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
	--x-state-layer-opacity: var(--x-comp-state-layer-opacity, 0);
}

.x-state-layer {
	background-color: var(--x-state-layer-color);
	border-radius: inherit;
	box-sizing: border-box;
	display: block;
	inset: 0;
	opacity: var(--x-state-layer-opacity);
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	transition-duration: var(--x-state-layer-motion-duration);
	transition-property: opacity;
	transition-timing-function: var(--x-state-layer-motion-easing);
}

@media (prefers-reduced-motion: reduce) {
	.x-state-layer {
		transition: none;
	}
}

/* End */


/* Start:/local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/toolbar/toolbar.css?17304023903528*/
.x-toolbar {
	align-items: flex-start;
	display: flex;
	flex: none;
	flex-direction: column;
	height: var(--x-toolbar-height, auto);
	justify-content: space-between;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	transition-property: height, transform, max-width;
	transition: var(--x-sys-motion-duration-short4, cubic-bezier(0.4, 0, 0.2, 1));
	/* box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.14), 0 0 0 0 rgba(0, 0, 0, 0.12); */
	border-radius: 0;
	background: rgb(var(--x-sys-color-on-surface-variant));
	color: rgba(var(--x-sys-color-on-surface), var(--x-sys-opacity-high-emphasis));
	border-color: rgb(var(--x-sys-color-outline), var(--x-sys-opacity-outline));
	border-style: solid;
	border-width: 0;
}

.x-toolbar__content,
.x-toolbar__extension {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	position: relative;
	transition: inherit;
	width: 100%;
}

.x-toolbar__content {
	height: var(--x-toolbar-content-height, auto);
}

.x-toolbar__extension {
	height: var(--x-toolbar-extension-height, auto);
}

.x-toolbar--density-prominent .x-toolbar__content {
	align-items: flex-start;
}

.x-toolbar__image {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	display: flex;
}

.x-toolbar__prepend,
.x-toolbar__append {
	display: flex;
}

.x-toolbar__prepend {
	margin-inline-end: auto;
}

.x-toolbar__prepend > .x-btn:first-child {
	margin-inline-start: -0.75rem;
}

.x-toolbar__prepend + .x-toolbar-title {
	padding-inline-start: 1.25rem;
}

.x-toolbar__append {
	margin-inline-start: auto;
}

.x-toolbar__append > .x-btn:last-child {
	margin-inline-end: -0.75rem;
}

.x-toolbar--absolute {
	position: absolute;
}

.x-toolbar--fixed {
	position: fixed;
}

.x-toolbar--outlined {
	border-width: thin;
	box-shadow: none;
}

.x-toolbar--collapse {
	max-width: 7rem;
	overflow: hidden;
}

.x-toolbar--collapse .x-toolbar-title {
	display: none;
}

.x-toolbar--collapse.x-locale--ltr,
.x-locale--ltr .x-toolbar--collapse {
	border-bottom-right-radius: 1.5rem;
}

.x-toolbar--collapse.x-locale--rtl,
.x-locale--rtl .x-toolbar--collapse {
	border-bottom-left-radius: 1.5rem;
}

.x-toolbar--density-default .x-toolbar__content {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.x-toolbar--density-comfortable .x-toolbar__content {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

.x-toolbar--density-compact .x-toolbar__content {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.x-toolbar--density-prominent .x-toolbar__content {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.x-toolbar--flat {
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.14),
		0 0 0 0 rgba(0, 0, 0, 0.12);
}

.x-toolbar--floating {
	display: inline-flex;
}

.x-toolbar--rounded {
	border-radius: 0.25rem;
}

.x-toolbar-title {
	flex: 1 1;
	font-size: 1.25rem;
	min-width: 0;
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.75rem;
	text-transform: none;
}

.x-toolbar--density-prominent .x-toolbar-title {
	align-self: flex-end;
	padding-bottom: 0.375rem;
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 2.25rem;
	text-transform: none;
}

.x-toolbar-title__placeholder {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.x-toolbar-items {
	display: flex;
	height: inherit;
}

.x-toolbar-items > .x-btn {
	border-radius: 0;
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/tokens/x-ref-layout.css?17364319042063*/
:root {
	--x-ref-layout-app-bar-content-height: 4rem;
	--x-ref-layout-app-bar-extension-height: 0rem;
	--x-ref-layout-app-bar-z-index: 1030;
	--x-ref-layout-app-bar-height: calc(var(--x-ref-layout-app-bar-content-height) + var(--x-ref-layout-app-bar-extension-height));

	--x-ref-layout-app-bar-floating-content-height: 4rem;
	--x-ref-layout-app-bar-floating-extension-height: 0rem;
	--x-ref-layout-app-bar-floating-z-index: calc(var(--x-ref-layout-app-bar-z-index) + 1);
	--x-ref-layout-app-bar-floating-height: calc(var(--x-ref-layout-app-bar-floating-content-height) + var(--x-ref-layout-app-bar-floating-extension-height));

	--x-ref-layout-app-bar-subnav-content-height: 0rem;
	--x-ref-layout-app-bar-subnav-extension-height: 0rem;
	--x-ref-layout-app-bar-subnav-z-index: calc(var(--x-ref-layout-app-bar-z-index) - 1);
	--x-ref-layout-app-bar-subnav-height: calc(var(--x-ref-layout-app-bar-subnav-content-height) + var(--x-ref-layout-app-bar-subnav-extension-height));

	--x-ref-layout-app-info-bar-content-height: 0rem;
	--x-ref-layout-app-info-bar-height: var(--x-ref-layout-app-info-bar-content-height);
	--x-ref-layout-app-info-bar-z-index: calc(var(--x-ref-layout-app-bar-z-index) + 1);

	--x-ref-layout-app-navigation-bar-height: 3.75rem;
	--x-ref-layout-app-navigation-bar-z-index: calc(var(--x-ref-layout-app-info-bar-z-index) + 1);

	--x-ref-layout-block-space-end: var(--x-ref-layout-app-navigation-bar-height);
	--x-ref-layout-block-space-start: calc(var(--x-ref-layout-app-info-bar-height) + var(--x-ref-layout-app-bar-height) + var(--x-ref-layout-app-bar-subnav-height));
	--x-ref-layout-content-width: 100%;
}

@media (min-width: 75em) {
	:root {
		--x-ref-layout-app-bar-content-height: 5.5rem;
		--x-ref-layout-app-bar-extension-height: 4rem;
		--x-ref-layout-app-bar-floating-content-height: 5.5rem;
		--x-ref-layout-app-bar-subnav-content-height: 3.5rem;
		--x-ref-layout-app-info-bar-content-height: 4rem;
		--x-ref-layout-app-navigation-bar-height: 0rem;
		--x-ref-layout-content-width: 75rem;
	}
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/tokens/x-ref-palette.css?17364319001270*/
:root {
	/* #region Shades */

	/* #000 */
	--x-ref-palette-black: 0, 0, 0;
	/* #fff */
	--x-ref-palette-white: 255, 255, 255;

	/* #endregion Shades */

	/* #region Neutral */

	/* #222222 */
	--x-ref-palette-nero: 34, 34, 34;

	/* #ececeb */
	--x-ref-palette-sugar-cane: 236, 236, 235;

	/* #f4f3f2 */
	--x-ref-palette-hint-of-red: 244, 243, 242;

	/* #endregion Neutral */

	/* #region Primary */

	/* #d8e7ff */
	--x-ref-palette-solitude: 216, 231, 255;

	/* #001b3d */
	--x-ref-palette-tangaroa: 0, 27, 61;

	/* #endregion Primary */

	/* Other */

	/* #c3e1ce */
	--x-ref-palette-granny-apple: 195, 225, 206;

	/* #f6d2dc */
	--x-ref-palette-pink-lace: 255, 223, 234;

	/* #f2e8dd */
	--x-ref-palette-desert-storm: 242, 232, 221;

	/* #f2e8dd */
	--x-ref-palette-venetian-red: 215, 0, 16;

	/* NEW */

	/* #f3f3f3 */
	--x-ref-palette-white-smoke: 243, 243, 243;

	/* #e0e2ec */
	--x-ref-palette-quartz: 224, 226, 236;

	/* #eeeeee */
	--x-ref-palette-whisper: 238, 238, 238;

	/* #e8e8e8 */
	--x-ref-palette-whisper2: 232, 232, 232;

	/* #d9d9d9 */
	--x-ref-palette-gainsboro: 217, 217, 217;

	/* #43474e */
	--x-ref-palette-steel-grey: 67, 71, 78;

	/* #212529 */
	--x-ref-palette-blue-charcoal: 33, 37, 41;

	/* #0054a5 */
	--x-ref-palette-cobalt: 0, 84, 165;
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/tokens/x-ref-typeface.css?1736431896225*/
:root {
	--x-ref-typeface-brand: "Inter", sans-serif;
	--x-ref-typeface-plain: var(--x-ref-typeface-brand);
	--x-ref-typeface-code: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/tokens/x-sys-motion.css?17364319681366*/
:root {
	--x-sys-motion-duration-short1: 50ms;
	--x-sys-motion-duration-short2: 100ms;
	--x-sys-motion-duration-short3: 150ms;
	--x-sys-motion-duration-short4: 200ms;
	--x-sys-motion-duration-medium1: 250ms;
	--x-sys-motion-duration-medium2: 300ms;
	--x-sys-motion-duration-medium3: 350ms;
	--x-sys-motion-duration-medium4: 400ms;
	--x-sys-motion-duration-long1: 450ms;
	--x-sys-motion-duration-long2: 500ms;
	--x-sys-motion-duration-long3: 550ms;
	--x-sys-motion-duration-long4: 600ms;
	--x-sys-motion-duration-x-long1: 700ms;
	--x-sys-motion-duration-x-long2: 800ms;
	--x-sys-motion-duration-x-long3: 400ms;
	--x-sys-motion-duration-x-long4: 1000ms;

	--x-sys-motion-easing-linear: cubic-bezier(0, 0, 1, 1);
	--x-sys-motion-easing-standard: cubic-bezier(0.2, 0, 0, 1);
	--x-sys-motion-easing-standard-accelerate: cubic-bezier(0.3, 0, 1, 1);
	--x-sys-motion-easing-standard-decelerate: cubic-bezier(0, 0, 0, 1);
	--x-sys-motion-easing-emphasized: cubic-bezier(0.2, 0, 0, 1);
	--x-sys-motion-easing-emphasized-decelerate: cubic-bezier(0.05, 0.7, 0.1, 1);
	--x-sys-motion-easing-emphasized-accelerate: cubic-bezier(0.3, 0, 0.8, 0.15);
	--x-sys-motion-easing-legacy: cubic-bezier(0.4, 0, 0.2, 1);
	--x-sys-motion-easing-legacy-decelerate: cubic-bezier(0, 0, 0.2, 1);
	--x-sys-motion-easing-legacy-accelerate: cubic-bezier(0.4, 0, 1, 1);
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/tokens/x-sys-shape.css?1736431972276*/
:root {
	--x-sys-shape-corner-none: 0;
	--x-sys-shape-corner-x-small: 0.25rem;
	--x-sys-shape-corner-small: 0.5rem;
	--x-sys-shape-corner-medium: 0.75rem;
	--x-sys-shape-corner-large: 1rem;
	--x-sys-shape-corner-x-large: 1.5rem;
	--x-sys-shape-corner-full: 999rem;
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/tokens/x-sys-state.css?1736431978597*/
:root {
	--x-sys-state-disabled-container-opacity: 0.12;
	--x-sys-state-disabled-container-variant-opacity: 0.04;
	--x-sys-state-disabled-text-opacity: 0.38;
	--x-sys-state-hover-state-layer-opacity: 0.08;
	--x-sys-state-focus-layer-motion-duration: var(--x-sys-motion-duration-short4, 200ms);
	--x-sys-state-focus-layer-motion-easing: var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1));
	--x-sys-state-focus-state-layer-opacity: 0.1;
	--x-sys-state-pressed-state-layer-opacity: 0.1;
	--x-sys-state-dragged-state-layer-opacity: 0.16;
	--x-sys-state-layer-multiplier: 1;
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/tokens/x-sys-typescale.css?17364320004757*/
:root {
	/* Display */

	--x-sys-typescale-display-large-font: var(--x-ref-typeface-brand);
	--x-sys-typescale-display-large-line-height: 4rem;
	--x-sys-typescale-display-large-size: 3.5rem;
	--x-sys-typescale-display-large-tracking: 0;
	--x-sys-typescale-display-large-transform: none;
	--x-sys-typescale-display-large-weight: 600;

	--x-sys-typescale-display-medium-font: var(--x-ref-typeface-brand);
	--x-sys-typescale-display-medium-line-height: 3.25rem;
	--x-sys-typescale-display-medium-size: 2.75rem;
	--x-sys-typescale-display-medium-tracking: 0;
	--x-sys-typescale-display-medium-transform: none;
	--x-sys-typescale-display-medium-weight: 600;

	--x-sys-typescale-display-small-font: var(--x-ref-typeface-brand);
	--x-sys-typescale-display-small-line-height: 3.25rem;
	--x-sys-typescale-display-small-size: 2.25rem;
	--x-sys-typescale-display-small-tracking: 0;
	--x-sys-typescale-display-small-transform: none;
	--x-sys-typescale-display-small-weight: 600;

	/* Headline */

	--x-sys-typescale-headline-large-font: var(--x-ref-typeface-brand);
	--x-sys-typescale-headline-large-line-height: 2.5rem;
	--x-sys-typescale-headline-large-size: 2rem;
	--x-sys-typescale-headline-large-tracking: 0;
	--x-sys-typescale-headline-large-transform: none;
	--x-sys-typescale-headline-large-weight: 600;

	--x-sys-typescale-headline-medium-font: var(--x-ref-typeface-brand);
	--x-sys-typescale-headline-medium-line-height: 2.25rem;
	--x-sys-typescale-headline-medium-size: 1.75rem;
	--x-sys-typescale-headline-medium-tracking: 0;
	--x-sys-typescale-headline-medium-transform: none;
	--x-sys-typescale-headline-medium-weight: 600;

	--x-sys-typescale-headline-small-font: var(--x-ref-typeface-brand);
	--x-sys-typescale-headline-small-line-height: 2rem;
	--x-sys-typescale-headline-small-size: 1.5rem;
	--x-sys-typescale-headline-small-tracking: 0;
	--x-sys-typescale-headline-small-transform: none;
	--x-sys-typescale-headline-small-weight: 600;

	/* Title */

	--x-sys-typescale-title-large-font: var(--x-ref-typeface-brand);
	--x-sys-typescale-title-large-line-height: 1.75rem;
	--x-sys-typescale-title-large-size: 1.375rem;
	--x-sys-typescale-title-large-tracking: 0;
	--x-sys-typescale-title-large-transform: none;
	--x-sys-typescale-title-large-weight: 600;

	--x-sys-typescale-title-medium-font: var(--x-ref-typeface-brand);
	--x-sys-typescale-title-medium-line-height: 1.5rem;
	--x-sys-typescale-title-medium-size: 1rem;
	--x-sys-typescale-title-medium-tracking: 0.009375rem;
	--x-sys-typescale-title-medium-transform: none;
	--x-sys-typescale-title-medium-weight: 600;

	--x-sys-typescale-title-small-font: var(--x-ref-typeface-brand);
	--x-sys-typescale-title-small-line-height: 1.25rem;
	--x-sys-typescale-title-small-size: 0.875rem;
	--x-sys-typescale-title-small-tracking: 0.00625rem;
	--x-sys-typescale-title-small-transform: none;
	--x-sys-typescale-title-small-weight: 600;

	/* Label */

	--x-sys-typescale-label-large-font: var(--x-ref-typeface-plain);
	--x-sys-typescale-label-large-line-height: 1.25rem;
	--x-sys-typescale-label-large-size: 0.875rem;
	--x-sys-typescale-label-large-tracking: 0.00625rem;
	--x-sys-typescale-label-large-transform: none;
	--x-sys-typescale-label-large-weight: 600;

	--x-sys-typescale-label-medium-font: var(--x-ref-typeface-plain);
	--x-sys-typescale-label-medium-line-height: 1rem;
	--x-sys-typescale-label-medium-size: 0.75rem;
	--x-sys-typescale-label-medium-tracking: 0.03125rem;
	--x-sys-typescale-label-medium-transform: none;
	--x-sys-typescale-label-medium-weight: 600;

	--x-sys-typescale-label-small-font: var(--x-ref-typeface-plain);
	--x-sys-typescale-label-small-line-height: 1rem;
	--x-sys-typescale-label-small-size: 0.6875rem;
	--x-sys-typescale-label-small-tracking: 0.03125rem;
	--x-sys-typescale-label-small-transform: none;
	--x-sys-typescale-label-small-weight: 600;

	/* Body */

	--x-sys-typescale-body-large-font: var(--x-ref-typeface-plain);
	--x-sys-typescale-body-large-line-height: 1.75rem;
	--x-sys-typescale-body-large-size: 1.125rem;
	--x-sys-typescale-body-large-tracking: normal;
	--x-sys-typescale-body-large-transform: none;
	--x-sys-typescale-body-large-weight: 400;

	--x-sys-typescale-body-medium-font: var(--x-ref-typeface-plain);
	--x-sys-typescale-body-medium-line-height: 1.5rem;
	--x-sys-typescale-body-medium-size: 1rem;
	--x-sys-typescale-body-medium-tracking: normal;
	--x-sys-typescale-body-medium-transform: none;
	--x-sys-typescale-body-medium-weight: 400;

	--x-sys-typescale-body-small-font: var(--x-ref-typeface-plain);
	--x-sys-typescale-body-small-line-height: 1.25rem;
	--x-sys-typescale-body-small-size: 0.875rem;
	--x-sys-typescale-body-small-tracking: normal;
	--x-sys-typescale-body-small-transform: none;
	--x-sys-typescale-body-small-weight: 400;
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/tokens/x-comp.css?17389123926965*/
.x-btn {
	--x-comp-btn-container-shape: var(--x-sys-shape-corner-small);
	--x-comp-btn-spacing: 1.25rem;
}

/* #region x-button */
.x-button {
	--x-comp-button-container-shape: var(--x-sys-shape-corner-small);
	--x-comp-button-icon-container-shape: var(--x-sys-shape-corner-small);
	--x-comp-button-inline-space: 1.25rem;
}

/* #endregion x-button */

/* #region x-card */
.x-card {
	--x-comp-card-headline-text-hyphens: none;
	--x-comp-card-subhead-opacity: var(--x-sys-opacity-medium-emphasis);
}

/* #endregion x-card */

/* #region x-container */
.x-container {
	--x-comp-container-inline-space: 1rem;
	--x-comp-container-max-width: var(--x-ref-layout-content-width);
}

@media (min-width: 37.5em) {
	.x-container {
		--x-comp-container-inline-space: 1.5rem;
	}
}

/* #endregion x-container */

/* #region x-divider */
.x-divider {
	--x-comp-divider-color: rgb(var(--x-sys-color-outline));
}

/* #endregion x-divider */

.x-field {
	/* Field */

	--x-field-border-radius: var(--x-sys-shape-corner-x-small);
	/* --x-field-disabled-color: rgba(var(--x-sys-color-on-surface), var(--x-disabled-opacity)); */
	--x-field-font-size: var(--x-ref-root-font-size);
	--x-field-letter-spacing: 0;
	/* --x-field-max-width: 100%; */
	--x-field-transition-timing: 0.15s var(--x-sys-motion-easing-legacy);
	--x-field-subtle-transition-timing: 250ms var(--x-sys-motion-easing-legacy);
	--x-field-clearable-margin: 0;

	/* Field Control */

	--x-field-control-padding-start: 1rem;
	--x-field-control-padding-end: 1rem;
	--x-field-control-padding-top: 0.5rem;
	--x-field-control-padding-bottom: 0.375rem;
	--x-field-control-affixed-padding: 1rem;
	--x-field-control-affixed-inner-padding: 0.375rem;
	--x-field-control-default-filled-height: 3.5rem;
	--x-field-control-default-filled-padding-bottom: 0.375rem;
	--x-field-control-comfortable-filled-height: 3rem;
	--x-field-control-comfortable-filled-padding-bottom: 0.125rem;
	--x-field-control-compact-filled-height: 2.5rem;
	--x-field-control-compact-filled-padding-bottom: -0.125rem;
	--x-field-control-default-underlined-height: 2.5rem;
	--x-field-control-default-underlined-padding-bottom: 0.375rem;
	--x-field-control-comfortable-underlined-height: 2rem;
	--x-field-control-comfortable-underlined-padding-bottom: 0.25rem;
	--x-field-control-compact-underlined-height: 1.5rem;
	--x-field-control-compact-underlined-padding-bottom: 0.125rem;

	/* Field Input */

	--x-field-input-opacity: var(--x-high-emphasis-opacity);

	/* Field Label */

	--x-field-label-floating-scale: 0.75em;

	/* Field Outline */

	--x-field-outline-opacity: 0.38;
	--x-field-outline-border-width: 0.0625rem;
	--x-field-outline-focused-border-width: 0.125rem;

	/* Field Overlay */

	--x-field-overlay-filled-opacity: 0.04;
	--x-field-overlay-filled-hover-opacity: 0.08;
	--x-field-overlay-filled-focus-opacity: 0.16;
}

.x-input {
	/* Input control */

	--x-input-control-default-height: 3.5rem;
	--x-input-control-default-padding-top: 1rem;
	--x-input-control-comfortable-height: 3rem;
	--x-input-control-comfortable-padding-top: 0.75rem;
	--x-input-control-compact-height: 2.5rem;
	--x-input-control-compact-padding-top: 0.5rem;

	/* Input details */

	--x-input-details-font-size: 0.75rem;
	--x-input-details-font-weight: 400;
	--x-input-details-letter-spacing: 0.0333333333em;
	--x-input-details-line-height: normal;
	--x-input-details-margin-bottom: 0.25rem;
	--x-input-details-min-height: 1.25rem;
	--x-input-details-padding-above: 0.375rem;

	/* Input affixes */

	--x-input-affix-margin-inside: 1rem;
}

/* #region x-layout */
.x-layout {
	--x-comp-main-block-space-end: var(--x-ref-layout-block-space-end);
	--x-comp-main-block-space-start: var(--x-ref-layout-block-space-start);
}

/* #endregion x-layout */

/* #region x-pagination */
.x-pagination {
	--x-comp-pagination-button-container-shape: var(--x-sys-shape-corner-small);
}

/* #endregion x-pagination */

.x-prose {
	--x-comp-prose-max-width: 100%;
	--x-comp-prose-text-letter-spacing: 0;
	--x-comp-prose-text-line-height: 1.5;
	/* Параграф */
	--x-comp-prose-paragraph-lead-text-letter-spacing: 0;
	/* Заголовки */
	--x-comp-prose-headline-level1-text-color: rgb(var(--x-sys-color-primary-variant));
	--x-comp-prose-headline-level1-text-weight: 600;
	--x-comp-prose-headline-level2-text-color: rgb(var(--x-sys-color-primary-variant));
	--x-comp-prose-headline-level2-text-weight: 600;
	--x-comp-prose-headline-level3-text-color: rgb(var(--x-sys-color-primary-variant));
	--x-comp-prose-headline-level3-text-weight: 600;
	--x-comp-prose-headline-level4-text-color: rgb(var(--x-sys-color-primary-variant));
	--x-comp-prose-headline-level4-text-weight: 600;
	/* Ссылки */
	--x-comp-prose-link-hover-text-color: rgb(var(--x-sys-color-primary));
	--x-comp-prose-link-text-color: rgb(var(--x-sys-color-primary));
	/* Списки */
	--x-comp-prose-list-bullet-marker-color: rgb(var(--x-sys-color-primary));
	--x-comp-prose-list-padding-inline-start: 1.75em;
	/* Подписи */
	--x-comp-prose-caption-text-letter-spacing: 0;
	/* Таблицы */
	--x-comp-prose-table-tbody-row-outline-color: rgba(var(--x-sys-color-outline), var(--x-sys-opacity-outline));
}

.x-prose.x-prose :where(ul):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	padding-inline-start: 1.25em;
}

.x-prose.x-prose :where(ul > li):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	padding-inline-start: 0.875em;
}

.x-prose :where(table tbody td p):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-bottom: 0.75em;
	margin-top: 0.75em;
}

.x-prose :where(table tbody td p:first-child):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-top: 0;
}

.x-prose :where(table tbody td p:last-child):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-bottom: 0;
}

.x-prose :where(ul > li):not(:where([class~=not-x-prose], [class~=not-x-prose] *))::marker {
	/* font-size: 1.5rem;
	line-height: 1.125; */
	content: "●";
}

.x-prose-ul\:ps-4 :is(:where(ul):not(:where([class~=not-text], [class~=not-text] *))) {
	padding-inline-start: 1rem !important;
}

@media (min-width: 60em) {
	.md\:x-prose-large {
		--x-comp-prose-text-size: var(--x-sys-typescale-body-large-size);
		--x-comp-prose-text-line-height: 1.6;
	}
}

@media (min-width: 80em) {
	.lg\:x-prose-large {
		--x-comp-prose-text-size: var(--x-sys-typescale-body-large-size);
		--x-comp-prose-text-line-height: 1.6;
	}
}

.x-text-field {
	--x-text-field-affix-color: rgba(var(--x-sys-color-on-surface),
			var(--x-medium-emphasis-opacity));
	--x-text-field-border-radius: var(--x-sys-shape-corner-x-small);
	--x-text-field-details-padding-inline: 1.5rem;
	--x-text-field-disabled-affix-color: rgba(var(--x-sys-color-on-surface),
			var(--x-disabled-opacity));
	--x-text-field-input-flex: 1;
	--x-text-field-input-padding-end: 0;
	--x-text-field-input-padding-start: 0.375rem;
	--x-text-field-input-transition: 0.15s opacity var(--x-sys-motion-easing-legacy);
}
/* End */


/* Start:/local/templates/ronc.site/app/styles/generic/fonts.css?17364316904146*/
/* inter-100 - cyrillic_cyrillic-ext_latin */
@font-face {
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-display: swap;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 100;
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	src: url('/local/templates/ronc.site/app/styles/generic/../../assets/fonts/inter-v13-cyrillic_cyrillic-ext_latin/inter-v13-cyrillic_cyrillic-ext_latin-100.woff2') format('woff2');
}

/* inter-200 - cyrillic_cyrillic-ext_latin */
@font-face {
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-display: swap;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 200;
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	src: url('/local/templates/ronc.site/app/styles/generic/../../assets/fonts/inter-v13-cyrillic_cyrillic-ext_latin/inter-v13-cyrillic_cyrillic-ext_latin-200.woff2') format('woff2');
}

/* inter-300 - cyrillic_cyrillic-ext_latin */
@font-face {
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-display: swap;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 300;
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	src: url('/local/templates/ronc.site/app/styles/generic/../../assets/fonts/inter-v13-cyrillic_cyrillic-ext_latin/inter-v13-cyrillic_cyrillic-ext_latin-300.woff2') format('woff2');
}

/* inter-regular - cyrillic_cyrillic-ext_latin */
@font-face {
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-display: swap;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	src: url('/local/templates/ronc.site/app/styles/generic/../../assets/fonts/inter-v13-cyrillic_cyrillic-ext_latin/inter-v13-cyrillic_cyrillic-ext_latin-regular.woff2') format('woff2');
}

/* inter-500 - cyrillic_cyrillic-ext_latin */
@font-face {
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-display: swap;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 500;
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	src: url('/local/templates/ronc.site/app/styles/generic/../../assets/fonts/inter-v13-cyrillic_cyrillic-ext_latin/inter-v13-cyrillic_cyrillic-ext_latin-500.woff2') format('woff2');
}

/* inter-600 - cyrillic_cyrillic-ext_latin */
@font-face {
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-display: swap;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	src: url('/local/templates/ronc.site/app/styles/generic/../../assets/fonts/inter-v13-cyrillic_cyrillic-ext_latin/inter-v13-cyrillic_cyrillic-ext_latin-600.woff2') format('woff2');
}

/* inter-700 - cyrillic_cyrillic-ext_latin */
@font-face {
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-display: swap;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 700;
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	src: url('/local/templates/ronc.site/app/styles/generic/../../assets/fonts/inter-v13-cyrillic_cyrillic-ext_latin/inter-v13-cyrillic_cyrillic-ext_latin-700.woff2') format('woff2');
}

/* inter-800 - cyrillic_cyrillic-ext_latin */
@font-face {
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-display: swap;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 800;
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	src: url('/local/templates/ronc.site/app/styles/generic/../../assets/fonts/inter-v13-cyrillic_cyrillic-ext_latin/inter-v13-cyrillic_cyrillic-ext_latin-800.woff2') format('woff2');
}

/* inter-900 - cyrillic_cyrillic-ext_latin */
@font-face {
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-display: swap;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 900;
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	src: url('/local/templates/ronc.site/app/styles/generic/../../assets/fonts/inter-v13-cyrillic_cyrillic-ext_latin/inter-v13-cyrillic_cyrillic-ext_latin-900.woff2') format('woff2');
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/generic/alpinejs.css?173643166041*/
[x-cloak] {
	display: none !important;
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/generic/bitrix.css?173643167471*/
#bx-panel,
#bx-panel.bx-panel-fixed {
	z-index: 1110 !important;
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/generic/animations.css?1736431668151*/
@keyframes x-shake {
	59% {
		margin-left: 0;
	}

	60%,
	80% {
		margin-left: 0.125rem;
	}

	70%,
	90% {
		margin-left: -0.125rem;
	}
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/generic/selection.css?1736431702168*/
/* Consistent selection style in all browsers */

::selection {
	background-color: rgb(var(--x-sys-color-primary));
	color: rgb(var(--x-sys-color-on-primary));
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/generic/transitions.css?17364317085275*/
.zero-transition {
	transition: 0s cubic-bezier(0, 0, 0, 0);
}

.expand-transition-enter {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.expand-transition-leave {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.expand-x-transition-enter {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.expand-x-transition-leave {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-transition-enter {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-transition-leave {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-transition-enter-start,
.scale-transition-leave-start,
.scale-transition-leave-end {
	opacity: 0;
	transform: scale(0);
}

.scale-rotate-transition-enter {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-rotate-transition-leave {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-rotate-transition-enter-start,
.scale-rotate-transition-leave,
.scale-rotate-transition-leave-end {
	opacity: 0;
	transform: scale(0) rotate(-45deg);
}

.scale-rotate-reverse-transition-enter {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-rotate-reverse-transition-leave {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-rotate-reverse-transition-enter-start,
.scale-rotate-reverse-transition-leave-start,
.scale-rotate-reverse-transition-leave-end {
	opacity: 0;
	transform: scale(0) rotate(45deg);
}

.message-transition-enter {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.message-transition-leave {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.message-transition-enter-start,
.message-transition-leave-end {
	opacity: 0;
	transform: translateY(-0.9375rem);
}

.message-transition-leave-start,
.message-transition-leave-active {
	position: absolute;
}

.slide-y-transition-enter {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-y-transition-leave {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-y-transition-enter-start,
.slide-y-transition-leave-end {
	opacity: 0;
	transform: translateY(-0.9375rem);
}

.slide-y-reverse-transition-enter {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-y-reverse-transition-leave {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-y-reverse-transition-enter-start,
.slide-y-reverse-transition-leave-end {
	opacity: 0;
	transform: translateY(0.9375rem);
}

.scroll-y-transition-enter {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-y-transition-leave {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-y-transition-enter-start,
.scroll-y-transition-leave-end {
	opacity: 0;
}

.scroll-y-transition-enter-start {
	transform: translateY(-0.9375rem);
}

.scroll-y-transition-leave-end {
	transform: translateY(0.9375rem);
}

.scroll-y-reverse-transition-enter {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-y-reverse-transition-leave {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-y-reverse-transition-enter-start,
.scroll-y-reverse-transition-leave-end {
	opacity: 0;
}

.scroll-y-reverse-transition-enter-start {
	transform: translateY(0.9375rem);
}

.scroll-y-reverse-transition-leave-end {
	transform: translateY(-0.9375rem);
}

.scroll-x-transition-enter {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-x-transition-leave {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-x-transition-enter-start,
.scroll-x-transition-leave-end {
	opacity: 0;
}

.scroll-x-transition-enter-start {
	transform: translateX(-0.9375rem);
}

.scroll-x-transition-leave-end {
	transform: translateX(0.9375rem);
}

.scroll-x-reverse-transition-enter {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-x-reverse-transition-leave {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-x-reverse-transition-enter-start,
.scroll-x-reverse-transition-leave-end {
	opacity: 0;
}

.scroll-x-reverse-transition-enter-start {
	transform: translateX(0.9375rem);
}

.scroll-x-reverse-transition-leave-end {
	transform: translateX(-0.9375rem);
}

.slide-x-transition-enter {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-x-transition-leave {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-x-transition-enter-start,
.slide-x-transition-leave-end {
	opacity: 0;
	transform: translateX(-0.9375rem);
}

.slide-x-reverse-transition-enter {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-x-reverse-transition-leave {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-x-reverse-transition-enter-start,
.slide-x-reverse-transition-leave-end {
	opacity: 0;
	transform: translateX(0.9375rem);
}

.fade-transition-enter {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-transition-leave {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-transition-enter-start,
.fade-transition-leave-end {
	opacity: 0 !important;
}

.fab-transition-enter {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-transition-leave {
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-transition-enter-start,
.fab-transition-leave-end {
	transform: scale(0) rotate(-45deg);
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/generic/elevation.css?17364316841327*/
.elevation {
	box-shadow: 0 calc(1px * (clamp(0, var(--x-elevation-level, 0), 1) + clamp(0, var(--x-elevation-level, 0) - 3, 1) + 2 * clamp(0, var(--x-elevation-level, 0) - 4, 1))) calc(1px * (2 * clamp(0, var(--x-elevation-level, 0), 1) + clamp(0, var(--x-elevation-level, 0) - 2, 1) + clamp(0, var(--x-elevation-level, 0) - 4, 1))) 0 rgba(var(--x-elevation-shadow-color, var(--x-sys-color-shadow)), var(--x-elevation-key-shadow-opacity, 0.3)), 0 calc(1px * (clamp(0, var(--x-elevation-level, 0), 1) + clamp(0, var(--x-elevation-level, 0) - 1, 1) + 2 * clamp(0, var(--x-elevation-level, 0) - 2, 3))) calc(1px * (3 * clamp(0, var(--x-elevation-level, 0), 2) + 2 * clamp(0, var(--x-elevation-level, 0) - 2, 3))) calc(1px * (clamp(0, var(--x-elevation-level, 0), 4) + 2 * clamp(0, var(--x-elevation-level, 0) - 4, 1))) rgba(var(--x-elevation-shadow-color, var(--x-sys-color-shadow)), var(--x-elevation-ambient-shadow-opacity, 0.15));
}

.elevation--level-5 {
	--x-elevation-level: 5 !important;
}

.elevation--level-4 {
	--x-elevation-level: 4 !important;
}

.elevation--level-3 {
	--x-elevation-level: 3 !important;
}

.elevation--level-2 {
	--x-elevation-level: 2 !important;
}

.elevation--level-1 {
	--x-elevation-level: 1 !important;
}

.elevation--level-0 {
	--x-elevation-level: 0 !important;
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/elements/bvi.css?17364315821359*/
/*  #region Корректровка стилей интерактивных элементов для совместимости с с плагином */
body .bvi-body .x-button > .x-button__overlay,
body .bvi-body .x-card > .x-card__overlay,
body .bvi-body .x-ripple {
	display: none !important;
}

body .bvi-body .carousel .carousel__controls,
body .bvi-body .x-button > .x-button__content {
	background-color: transparent !important;
	color: inherit !important;
}

body .bvi-body .x-label.x-field-label {
	z-index: 1 !important;
}

/*  #endregion Корректровка стилей интерактивных элементов для совместимости с с плагином */

/*  #region Корректровка стилей изображений для совместимости с с плагином */
body .bvi-body .x-image > .x-responsive__sizer {
	background-color: transparent !important;
}

body .bvi-body .x-image .x-image__img {
	background-color: transparent !important;
}

body .bvi-body .x-image .x-image__img + .x-responsive__content,
body .bvi-body .x-image .x-image__img + .x-responsive__content * {
	background-color: transparent !important;
}

/*  #endregion Корректровка стилей изображений для совместимости с с плагином */

/* End */


/* Start:/local/templates/ronc.site/app/styles/elements/global.css?17364314582399*/
/**
 * Root
 *
 * Base app styles
 */

:root {
	--x-sys-color-background: 255, 255, 255;
	--x-sys-color-on-background: 0, 0, 0;
	--x-sys-color-surface: 255, 255, 255;
	--x-sys-color-on-surface: 0, 0, 0;
	--x-sys-overlay-multiplier: 1;
	--x-sys-color-outline: 0, 0, 0;
	--x-sys-color-scrim: 0, 0, 0;

	--x-sys-opacity-outline: 0.12;
	--x-sys-opacity-high-emphasis: 0.87;
	--x-sys-opacity-medium-emphasis: 0.6;
	--x-sys-opacity-disabled: 0.38;
	--x-sys-opacity-idle: 0.04;
	--x-sys-opacity-hover: 0.04;
	--x-sys-opacity-focus: 0.12;
	--x-sys-opacity-selected: 0.08;
	--x-sys-opacity-activated: 0.12;
	--x-sys-opacity-pressed: 0.12;
	--x-sys-opacity-dragged: 0.08;

	--x-scrollbar-offset: 0rem;
	--x-sys-state-multiplier: 1;
	/* 1 */
}

/**
 * The scroll-behavior property in CSS allows us to define whether the scroll
 * location of the browser jumps to a new location or smoothly animates
 * the transition when a user clicks a link that targets an anchored position
 * within a scrolling box.
 */

@media (prefers-reduced-motion: no-preference) {
	:root {
		scroll-behavior: smooth;
	}
}

:root {
	scroll-padding-block-start: calc(var(--x-ref-layout-app-bar-floating-height) + 1.5rem);
}

:root {
	scrollbar-gutter: stable;
}

/**
 * Body
 *
 * 1. Improve consistency of default fonts in all browsers.
 * 2. Set default typography styles in all browsers.
 * 3. Correct the line height in all browsers.
 */

body {
	/* 1 */
	font-family: var(--x-sys-typescale-body-medium-font);
	/* 2 */
	font-size: var(--x-sys-typescale-body-medium-size);
	/* 2 */
	font-weight: var(--x-sys-typescale-body-medium-weight);
	/* 3 */
	line-height: var(--x-sys-typescale-body-medium-line-height);
}

/**
 * Links
 */

a {
	text-decoration: none;
}

/* #region Custom webKit scrollbar */
/* ! Non-touchscreen devices only */
@media not (pointer: coarse) {
	::-webkit-scrollbar {
		height: 0.5rem;
		width: 0.5rem;
	}

	::-webkit-scrollbar-track {
		background: transparent;
	}

	::-webkit-scrollbar-thumb {
		background: rgba(158, 158, 158, 0.4);
		background-clip: padding-box;
		border-radius: 0.25rem;
	}

	::-webkit-scrollbar-thumb:hover {
		background: rgba(158, 158, 158, 0.6);
	}

	::-webkit-scrollbar-thumb:active {
		background: rgba(158, 158, 158, 0.88);
	}
}

/* #endregion Custom webKit scrollbar */

/* End */


/* Start:/local/templates/ronc.site/app/styles/themes/root.css?17303870403004*/
:root {
	--x-sys-color-background: var(--x-ref-palette-white);
	--x-sys-color-on-background: var(--x-ref-palette-nero);
	--x-sys-color-background-state-layer-multiplier: 1;

	--x-sys-color-surface: var(--x-ref-palette-white);
	--x-sys-color-on-surface: var(--x-ref-palette-nero);
	--x-sys-color-surface-state-layer-multiplier: 1;

	--x-sys-color-surface-variant: var(--x-ref-palette-quartz);
	--x-sys-color-on-surface-variant: var(--x-ref-palette-steel-grey);
	--x-sys-color-surface-variant-state-layer-multiplier: 1;

	--x-sys-color-surface-container-low: var(--x-ref-palette-white-smoke);
	--x-sys-color-on-surface-container-low: var(--x-ref-palette-nero);
	--x-sys-color-surface-container-low-state-layer-multiplier: 1;

	--x-sys-color-surface-container: var(--x-ref-palette-whisper);
	--x-sys-color-on-surface-container: var(--x-ref-palette-nero);
	--x-sys-color-surface-container-state-layer-multiplier: 1;

	--x-sys-color-surface-container-high: var(--x-ref-palette-whisper2);
	--x-sys-color-on-surface-container-high: var(--x-ref-palette-nero);
	--x-sys-color-surface-container-high-state-layer-multiplier: 1;

	--x-sys-color-inverse-surface: var(--x-ref-palette-nero);
	--x-sys-color-on-inverse-surface: var(--x-ref-palette-white);
	--x-sys-color-inverse-surface-state-layer-multiplier: 1;

	--x-sys-color-primary: var(--x-ref-palette-cobalt);
	--x-sys-color-on-primary: var(--x-ref-palette-white-smoke);
	--x-sys-color-primary-state-layer-multiplier: 1;

	--x-sys-color-primary-container: var(--x-ref-palette-solitude);
	--x-sys-color-on-primary-container: var(--x-ref-palette-tangaroa);
	--x-sys-color-primary-container-state-layer-multiplier: 1;

	--x-sys-color-secondary-container: var(--x-ref-palette-pink-lace);
	--x-sys-color-on-secondary-container: var(--x-ref-palette-nero);
	--x-sys-color-secondary-container-state-layer-multiplier: 1;

	--x-sys-color-tertiary-container: var(--x-ref-palette-desert-storm);
	--x-sys-color-on-tertiary-container: var(--x-ref-palette-nero);
	--x-sys-color-tertiary-container-state-layer-multiplier: 1;

	--x-sys-color-error: var(--x-ref-palette-venetian-red);
	--x-sys-color-on-error: var(--x-ref-palette-white);
	--x-sys-color-error-state-layer-multiplier: 2;

	--x-sys-color-outline: var(--x-ref-palette-gainsboro);
	--x-sys-color-outline-variant: var(--x-ref-palette-gainsboro);
	--x-sys-color-scrim: var(--x-ref-palette-black);
	--x-sys-color-shadow: var(--x-ref-palette-black);

	--x-sys-opacity-outline: 1;
	--x-sys-opacity-shadow-umbra: 0.2;
	--x-sys-opacity-shadow-penumbra: 0.14;
	--x-sys-opacity-shadow-ambient: 0.12;
	--x-sys-opacity-high-emphasis: 0.87;
	--x-sys-opacity-medium-emphasis: 0.6;
	--x-sys-opacity-disabled: 0.38;
	--x-sys-opacity-idle: 0.04;
	--x-sys-opacity-hover: 0.04;
	--x-sys-opacity-focus: 0.12;
	--x-sys-opacity-selected: 0.08;
	--x-sys-opacity-activated: 0.12;
	--x-sys-opacity-pressed: 0.12;
	--x-sys-opacity-dragged: 0.08;

	color-scheme: normal;
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/themes/colors.css?17364317788079*/
/* Background */

.bg-background {
	--x-sys-state-layer-multiplier: var(--x-sys-color-background-state-layer-multiplier);

	background-color: rgb(var(--x-sys-color-background)) !important;
	color: rgb(var(--x-sys-color-on-background)) !important;
}

.text-background {
	caret-color: rgb(var(--x-sys-color-background)) !important;
	color: rgb(var(--x-sys-color-background)) !important;
}

.text-on-background {
	caret-color: rgb(var(--x-sys-color-on-background)) !important;
	color: rgb(var(--x-sys-color-on-background)) !important;
}

.border-background {
	--x-sys-color-outline: var(--x-sys-color-background) !important;
}

/* Surface */

.bg-surface {
	--x-sys-state-layer-multiplier: var(--x-sys-color-surface-state-layer-multiplier);

	background-color: rgb(var(--x-sys-color-surface)) !important;
	color: rgb(var(--x-sys-color-on-surface)) !important;
}

.text-surface {
	caret-color: rgb(var(--x-sys-color-surface)) !important;
	color: rgb(var(--x-sys-color-surface)) !important;
}

.bg-on-surface {
	background-color: rgb(var(--x-sys-color-on-surface)) !important;
}

.text-on-surface {
	caret-color: rgb(var(--x-sys-color-on-surface)) !important;
	color: rgb(var(--x-sys-color-on-surface)) !important;
}

.border-surface {
	--x-sys-color-outline: var(--x-sys-color-surface) !important;
}

/* Surface variant */

.bg-surface-variant {
	--x-sys-state-layer-multiplier: var(--x-sys-color-surface-variant-state-layer-multiplier);

	background-color: rgb(var(--x-sys-color-surface-variant)) !important;
	color: rgb(var(--x-sys-color-on-surface-variant)) !important;
}

.text-surface-variant {
	caret-color: rgb(var(--x-sys-color-surface-variant)) !important;
	color: rgb(var(--x-sys-color-surface-variant)) !important;
}

.text-on-surface-variant {
	caret-color: rgb(var(--x-sys-color-on-surface-variant)) !important;
	color: rgb(var(--x-sys-color-on-surface-variant)) !important;
}

.border-surface-variant {
	--x-sys-color-outline: var(--x-sys-color-surface-variant) !important;
}

/* Surface container */

.bg-surface-container {
	--x-sys-state-layer-multiplier: var(--x-sys-color-surface-container-state-layer-multiplier);

	background-color: rgb(var(--x-sys-color-surface-container)) !important;
	color: rgb(var(--x-sys-color-on-surface-container)) !important;
}

.text-surface-container {
	caret-color: rgb(var(--x-sys-color-surface-container)) !important;
	color: rgb(var(--x-sys-color-surface-container)) !important;
}

.text-on-surface-container {
	caret-color: rgb(var(--x-sys-color-on-surface-container)) !important;
	color: rgb(var(--x-sys-color-on-surface-container)) !important;
}

.border-surface-container {
	--x-sys-color-outline: var(--x-sys-color-surface-container) !important;
}

/* Surface container low */

.bg-surface-container-low {
	--x-sys-state-layer-multiplier: var(--x-sys-color-surface-container-low-state-layer-multiplier);

	background-color: rgb(var(--x-sys-color-surface-container-low)) !important;
	color: rgb(var(--x-sys-color-on-surface-container-low)) !important;
}

.text-surface-container-low {
	caret-color: rgb(var(--x-sys-color-surface-container-low)) !important;
	color: rgb(var(--x-sys-color-surface-container-low)) !important;
}

.text-on-surface-container-low {
	caret-color: rgb(var(--x-sys-color-on-surface-container-low)) !important;
	color: rgb(var(--x-sys-color-on-surface-container-low)) !important;
}

.border-surface-container-low {
	--x-sys-color-outline: var(--x-sys-color-surface-container-low) !important;
}

/* Inverse surface */

.bg-inverse-surface {
	--x-sys-state-layer-multiplier: var(--x-sys-color-inverse-surface-state-layer-multiplier);

	background-color: rgb(var(--x-sys-color-inverse-surface)) !important;
	color: rgb(var(--x-sys-color-on-inverse-surface)) !important;
}

.text-inverse-surface {
	caret-color: rgb(var(--x-sys-color-inverse-surface)) !important;
	color: rgb(var(--x-sys-color-inverse-surface)) !important;
}

.text-on-inverse-surface {
	caret-color: rgb(var(--x-sys-color-on-inverse-surface)) !important;
	color: rgb(var(--x-sys-color-on-inverse-surface)) !important;
}

.border-inverse-surface {
	--x-sys-color-outline: var(--x-sys-color-inverse-surface) !important;
}

/* Primary */

.bg-primary {
	--x-sys-state-layer-multiplier: var(--x-sys-color-primary-state-layer-multiplier);

	background-color: rgb(var(--x-sys-color-primary)) !important;
	color: rgb(var(--x-sys-color-on-primary)) !important;
}

.text-primary {
	caret-color: rgb(var(--x-sys-color-primary)) !important;
	color: rgb(var(--x-sys-color-primary)) !important;
}

.text-on-primary {
	caret-color: rgb(var(--x-sys-color-on-primary)) !important;
	color: rgb(var(--x-sys-color-on-primary)) !important;
}

.border-primary {
	--x-sys-color-outline: var(--x-sys-color-primary) !important;
}

/* Primary container */

.bg-primary-container {
	--x-sys-state-layer-multiplier: var(--x-sys-color-primary-container-state-layer-multiplier);

	background-color: rgb(var(--x-sys-color-primary-container)) !important;
	color: rgb(var(--x-sys-color-on-primary-container)) !important;
}

.text-primary-container {
	caret-color: rgb(var(--x-sys-color-primary-container)) !important;
	color: rgb(var(--x-sys-color-primary-container)) !important;
}

.text-on-primary-container {
	caret-color: rgb(var(--x-sys-color-on-primary-container)) !important;
	color: rgb(var(--x-sys-color-on-primary-container)) !important;
}

.border-primary-container {
	--x-sys-color-outline: var(--x-sys-color-primary-container) !important;
}

/* Secondary container */

.bg-secondary-container {
	--x-sys-state-layer-multiplier: var(--x-sys-color-secondary-container-state-layer-multiplier);

	background-color: rgb(var(--x-sys-color-secondary-container)) !important;
	color: rgb(var(--x-sys-color-on-secondary-container)) !important;
}

.text-secondary-container {
	caret-color: rgb(var(--x-sys-color-secondary-container)) !important;
	color: rgb(var(--x-sys-color-secondary-container)) !important;
}

.text-on-secondary-container {
	caret-color: rgb(var(--x-sys-color-on-secondary-container)) !important;
	color: rgb(var(--x-sys-color-on-secondary-container)) !important;
}

.border-secondary-container {
	--x-sys-color-outline: var(--x-sys-color-secondary-container) !important;
}

/* Tertiary container */

.bg-tertiary-container {
	--x-sys-state-layer-multiplier: var(--x-sys-color-secondary-container-state-layer-multiplier);

	background-color: rgb(var(--x-sys-color-tertiary-container)) !important;
	color: rgb(var(--x-sys-color-on-tertiary-container)) !important;
}

.text-tertiary-container {
	caret-color: rgb(var(--x-sys-color-tertiary-container)) !important;
	color: rgb(var(--x-sys-color-tertiary-container)) !important;
}

.text-on-tertiary-container {
	caret-color: rgb(var(--x-sys-color-on-tertiary-container)) !important;
	color: rgb(var(--x-sys-color-on-tertiary-container)) !important;
}

.border-tertiary-container {
	--x-sys-color-outline: var(--x-sys-color-tertiary-container) !important;
}

/* Error */

.bg-error {
	--x-sys-state-layer-multiplier: var(--x-sys-color-error-state-layer-multiplier);

	background-color: rgb(var(--x-sys-color-error)) !important;
	color: rgb(var(--x-sys-color-on-error)) !important;
}

.text-error {
	caret-color: rgb(var(--x-sys-color-error)) !important;
	color: rgb(var(--x-sys-color-error)) !important;
}

.text-on-error {
	caret-color: rgb(var(--x-sys-color-on-error)) !important;
	color: rgb(var(--x-sys-color-on-error)) !important;
}

.border-error {
	--x-sys-color-outline: var(--x-sys-color-error) !important;
}

/* Succes */

.bg-success {
	--x-sys-state-layer-multiplier: var(--x-sys-color-success-state-layer-multiplier);

	background-color: rgb(var(--x-sys-color-success)) !important;
	color: rgb(var(--x-sys-color-on-success)) !important;
}

.text-success {
	caret-color: rgb(var(--x-sys-color-success)) !important;
	color: rgb(var(--x-sys-color-success)) !important;
}

.text-on-success {
	caret-color: rgb(var(--x-sys-color-on-success)) !important;
	color: rgb(var(--x-sys-color-on-success)) !important;
}

.border-success {
	--x-sys-color-outline: var(--x-sys-color-success) !important;
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/align.css?17228803124965*/
/*!
 * Utilities/Align
 */

/* #region sm */
.content-center {
	align-content: center !important;
}

.content-start {
	align-content: flex-start !important;
}

.content-end {
	align-content: flex-end !important;
}

.content-between {
	align-content: space-between !important;
}

.content-around {
	align-content: space-around !important;
}

.content-evenly {
	align-content: space-evenly !important;
}

.items-start {
	align-items: flex-start !important;
}

.items-end {
	align-items: flex-end !important;
}

.items-center {
	align-items: center !important;
}

.items-baseline {
	align-items: baseline !important;
}

.items-stretch {
	align-items: stretch !important;
}

.self-auto {
	align-self: auto !important;
}

.self-start {
	align-self: flex-start !important;
}

.self-end {
	align-self: flex-end !important;
}

.self-center {
	align-self: center !important;
}

.self-stretch {
	align-self: stretch !important;
}

.self-baseline {
	align-self: baseline !important;
}

/* #endregion sm */

/* #region sm, custom */
/* #endregion sm, custom */

/* #region sm */
@media (min-width: 37.5em) {
	.sm\:content-center {
		align-content: center !important;
	}

	.sm\:content-start {
		align-content: flex-start !important;
	}

	.sm\:content-end {
		align-content: flex-end !important;
	}

	.sm\:content-between {
		align-content: space-between !important;
	}

	.sm\:content-around {
		align-content: space-around !important;
	}

	.sm\:content-evenly {
		align-content: space-evenly !important;
	}

	.sm\:items-start {
		align-items: flex-start !important;
	}

	.sm\:items-end {
		align-items: flex-end !important;
	}

	.sm\:items-center {
		align-items: center !important;
	}

	.sm\:items-baseline {
		align-items: baseline !important;
	}

	.sm\:items-stretch {
		align-items: stretch !important;
	}

	.sm\:self-auto {
		align-self: auto !important;
	}

	.sm\:self-start {
		align-self: flex-start !important;
	}

	.sm\:self-end {
		align-self: flex-end !important;
	}

	.sm\:self-center {
		align-self: center !important;
	}

	.sm\:self-stretch {
		align-self: stretch !important;
	}

	.sm\:self-baseline {
		align-self: baseline !important;
	}
}

/* #endregion sm */

/* #region sm, custom */
@media (min-width: 37.5em) {}

/* #endregion sm, custom */

/* #region md */
@media (min-width: 52.5em) {
	.md\:content-center {
		align-content: center !important;
	}

	.md\:content-start {
		align-content: flex-start !important;
	}

	.md\:content-end {
		align-content: flex-end !important;
	}

	.md\:content-between {
		align-content: space-between !important;
	}

	.md\:content-around {
		align-content: space-around !important;
	}

	.md\:content-evenly {
		align-content: space-evenly !important;
	}

	.md\:items-start {
		align-items: flex-start !important;
	}

	.md\:items-end {
		align-items: flex-end !important;
	}

	.md\:items-center {
		align-items: center !important;
	}

	.md\:items-baseline {
		align-items: baseline !important;
	}

	.md\:items-stretch {
		align-items: stretch !important;
	}

	.md\:self-auto {
		align-self: auto !important;
	}

	.md\:self-start {
		align-self: flex-start !important;
	}

	.md\:self-end {
		align-self: flex-end !important;
	}

	.md\:self-center {
		align-self: center !important;
	}

	.md\:self-stretch {
		align-self: stretch !important;
	}

	.md\:self-baseline {
		align-self: baseline !important;
	}
}

/* #endregion md */

/* #region md, custom */
@media (min-width: 52.5em) {}

/* #endregion md, custom */

/* #region lg */
@media (min-width: 75em) {
	.lg\:content-center {
		align-content: center !important;
	}

	.lg\:content-start {
		align-content: flex-start !important;
	}

	.lg\:content-end {
		align-content: flex-end !important;
	}

	.lg\:content-between {
		align-content: space-between !important;
	}

	.lg\:content-around {
		align-content: space-around !important;
	}

	.lg\:content-evenly {
		align-content: space-evenly !important;
	}

	.lg\:items-start {
		align-items: flex-start !important;
	}

	.lg\:items-end {
		align-items: flex-end !important;
	}

	.lg\:items-center {
		align-items: center !important;
	}

	.lg\:items-baseline {
		align-items: baseline !important;
	}

	.lg\:items-stretch {
		align-items: stretch !important;
	}

	.lg\:self-auto {
		align-self: auto !important;
	}

	.lg\:self-start {
		align-self: flex-start !important;
	}

	.lg\:self-end {
		align-self: flex-end !important;
	}

	.lg\:self-center {
		align-self: center !important;
	}

	.lg\:self-stretch {
		align-self: stretch !important;
	}

	.lg\:self-baseline {
		align-self: baseline !important;
	}
}

/* #endregion lg */

/* #region lg, custom */
@media (min-width: 75em) {}

/* #endregion lg, custom */

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/border.css?1722847702735*/
/*!
 * Utilities/Border
 */

/* Border width */

.border-0 {
	border-width: 0 !important;
}

.border {
	border-width: 0.0625rem !important;
}

.border-b {
	border-bottom-width: 0.0625rem !important;
}

/* Border color */

.border-outline {
	border-color: rgba(var(--x-sys-color-outline), var(--x-sys-opacity-outline)) !important;
}

/* Border style */

.border-dashed {
	border-style: dashed !important;
}

.border-dotted {
	border-style: dotted !important;
}

.border-double {
	border-style: double !important;
}

.border-none {
	border-style: none !important;
}

.border-solid {
	border-style: solid !important;
}

.last\:border-b-0:last-child {
	border-bottom-width: 0 !important;
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/colors.css?17228477021296*/
/*!
 * Utilities/Colors
 */

.bg-black {
	background-color: #000 !important;
}

.text-black {
	caret-color: #000 !important;
	color: #000 !important;
}

.border-black {
	--x-sys-color-outline: var(--x-ref-palette-black) !important;
}

.bg-white {
	background-color: #fff !important;
}

.not\:hover\:not\:focus\:bg-white:not(:hover):not(:focus) {
	background-color: #fff !important;
}

.text-white {
	caret-color: #fff !important;
	color: #fff !important;
}

.border-white {
	--x-sys-color-outline: var(--x-ref-palette-white) !important;
}

.bg-transparent {
	background-color: transparent !important;
}

.not\:hover\:not\:focus\:bg-transparent:not(:hover):not(:focus) {
	background-color: transparent !important;
}

.text-transparent {
	caret-color: transparent !important;
	color: transparent !important;
}

.bg-inherit {
	background-color: inherit !important;
}

.text-inherit {
	caret-color: inherit !important;
	color: inherit !important;
}

.not\:hover\:not\:focus\:text-inherit:not(:hover):not(:focus) {
	caret-color: inherit !important;
	color: inherit !important;
}

.bg-gradient-russian-flag {
	background: linear-gradient(-180deg, #fff 33.333333%, #0052b4 33.333333%, #0052b4 66.666666%, #d80027 66.666666%) !important;
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/columns.css?1722880398188*/
/*!
 * Utilities/Columns
 */

@media (min-width: 37.5em) {
	.sm\:columns-2 {
		column-count: 2;
	}
}

@media (min-width: 52.5em) {
	.md\:columns-3 {
		column-count: 3;
	}
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/cursor.css?1722847702151*/
/*!
 * Utilities/Cursor
 */

.cursor-auto {
	cursor: auto
}

.cursor-default {
	cursor: default
}

.cursor-pointer {
	cursor: pointer
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/display.css?17228804925374*/
/*!
 * Utilities/Display
 */

/* #region sm */
.block {
	display: block !important;
}

.inline-block {
	display: inline-block !important;
}

.inline {
	display: inline !important;
}

.flex {
	display: flex !important;
}

.inline-flex {
	display: inline-flex !important;
}

.table {
	display: table !important;
}

.table-caption {
	display: table-caption !important;
}

.table-cell {
	display: table-cell !important;
}

.table-column {
	display: table-column !important;
}

.table-column-group {
	display: table-column-group !important;
}

.table-footer-group {
	display: table-footer-group !important;
}

.table-header-group {
	display: table-header-group !important;
}

.table-row-group {
	display: table-row-group !important;
}

.table-row {
	display: table-row !important;
}

.flow-root {
	display: flow-root !important;
}

.grid {
	display: grid !important;
}

.inline-grid {
	display: inline-grid !important;
}

.contents {
	display: contents !important;
}

.list-item {
	display: list-item !important;
}

.hidden {
	display: none !important;
}

/* #endregion sm */

/* #region sm, custom */
/* #endregion sm, custom */

/* #region sm */
@media (min-width: 37.5em) {
	.sm\:block {
		display: block !important;
	}

	.sm\:inline-block {
		display: inline-block !important;
	}

	.sm\:inline {
		display: inline !important;
	}

	.sm\:flex {
		display: flex !important;
	}

	.sm\:inline-flex {
		display: inline-flex !important;
	}

	.sm\:table {
		display: table !important;
	}

	.sm\:table-caption {
		display: table-caption !important;
	}

	.sm\:table-cell {
		display: table-cell !important;
	}

	.sm\:table-column {
		display: table-column !important;
	}

	.sm\:table-column-group {
		display: table-column-group !important;
	}

	.sm\:table-footer-group {
		display: table-footer-group !important;
	}

	.sm\:table-header-group {
		display: table-header-group !important;
	}

	.sm\:table-row-group {
		display: table-row-group !important;
	}

	.sm\:table-row {
		display: table-row !important;
	}

	.sm\:flow-root {
		display: flow-root !important;
	}

	.sm\:grid {
		display: grid !important;
	}

	.sm\:inline-grid {
		display: inline-grid !important;
	}

	.sm\:contents {
		display: contents !important;
	}

	.sm\:list-item {
		display: list-item !important;
	}

	.sm\:hidden {
		display: none !important;
	}
}

/* #endregion sm */

/* #region sm, custom */
@media (min-width: 37.5em) {}

/* #endregion sm, custom */

/* #region md */
@media (min-width: 52.5em) {
	.md\:block {
		display: block !important;
	}

	.md\:inline-block {
		display: inline-block !important;
	}

	.md\:inline {
		display: inline !important;
	}

	.md\:flex {
		display: flex !important;
	}

	.md\:inline-flex {
		display: inline-flex !important;
	}

	.md\:table {
		display: table !important;
	}

	.md\:table-caption {
		display: table-caption !important;
	}

	.md\:table-cell {
		display: table-cell !important;
	}

	.md\:table-column {
		display: table-column !important;
	}

	.md\:table-column-group {
		display: table-column-group !important;
	}

	.md\:table-footer-group {
		display: table-footer-group !important;
	}

	.md\:table-header-group {
		display: table-header-group !important;
	}

	.md\:table-row-group {
		display: table-row-group !important;
	}

	.md\:table-row {
		display: table-row !important;
	}

	.md\:flow-root {
		display: flow-root !important;
	}

	.md\:grid {
		display: grid !important;
	}

	.md\:inline-grid {
		display: inline-grid !important;
	}

	.md\:contents {
		display: contents !important;
	}

	.md\:list-item {
		display: list-item !important;
	}

	.md\:hidden {
		display: none !important;
	}
}

/* #endregion md */

/* #region md, custom */
@media (min-width: 52.5em) {}

/* #endregion md, custom */

/* #region lg */
@media (min-width: 75em) {
	.lg\:block {
		display: block !important;
	}

	.lg\:inline-block {
		display: inline-block !important;
	}

	.lg\:inline {
		display: inline !important;
	}

	.lg\:flex {
		display: flex !important;
	}

	.lg\:inline-flex {
		display: inline-flex !important;
	}

	.lg\:table {
		display: table !important;
	}

	.lg\:table-caption {
		display: table-caption !important;
	}

	.lg\:table-cell {
		display: table-cell !important;
	}

	.lg\:table-column {
		display: table-column !important;
	}

	.lg\:table-column-group {
		display: table-column-group !important;
	}

	.lg\:table-footer-group {
		display: table-footer-group !important;
	}

	.lg\:table-header-group {
		display: table-header-group !important;
	}

	.lg\:table-row-group {
		display: table-row-group !important;
	}

	.lg\:table-row {
		display: table-row !important;
	}

	.lg\:flow-root {
		display: flow-root !important;
	}

	.lg\:grid {
		display: grid !important;
	}

	.lg\:inline-grid {
		display: inline-grid !important;
	}

	.lg\:contents {
		display: contents !important;
	}

	.lg\:list-item {
		display: list-item !important;
	}

	.lg\:hidden {
		display: none !important;
	}
}

/* #endregion lg */

/* #region lg, custom */
@media (min-width: 75em) {}

/* #endregion lg, custom */

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/flex.css?17228806204101*/
/*!
 * Utilities/Flex
 */

/* #region sm */
.flex-row {
	flex-direction: row !important;
}

.flex-col {
	flex-direction: column !important;
}

.flex-row-reverse {
	flex-direction: row-reverse !important;
}

.flex-col-reverse {
	flex-direction: column-reverse !important;
}

.flex-wrap {
	flex-wrap: wrap !important;
}

.flex-wrap-reverse {
	flex-wrap: wrap-reverse !important;
}

.flex-nowrap {
	flex-wrap: nowrap !important;
}

.flex-1 {
	flex: 1 1 0% !important;
}

.flex-auto {
	flex: 1 1 auto !important;
}

.flex-initial {
	flex: 0 1 auto !important;
}

.flex-none {
	flex: none !important;
}

.grow {
	flex-grow: 1 !important;
}

.grow-0 {
	flex-grow: 0 !important;
}

.shrink {
	flex-shrink: 1 !important;
}

.shrink-0 {
	flex-shrink: 0 !important;
}

/* #endregion sm */

/* #region sm, custom */
/* #endregion sm, custom */

/* #region sm */
@media (min-width: 37.5em) {
	.sm\:flex-row {
		flex-direction: row !important;
	}

	.sm\:flex-col {
		flex-direction: column !important;
	}

	.sm\:flex-row-reverse {
		flex-direction: row-reverse !important;
	}

	.sm\:flex-col-reverse {
		flex-direction: column-reverse !important;
	}

	.sm\:flex-wrap {
		flex-wrap: wrap !important;
	}

	.sm\:flex-wrap-reverse {
		flex-wrap: wrap-reverse !important;
	}

	.sm\:flex-nowrap {
		flex-wrap: nowrap !important;
	}

	.sm\:flex-1 {
		flex: 1 1 0% !important;
	}

	.sm\:flex-auto {
		flex: 1 1 auto !important;
	}

	.sm\:flex-initial {
		flex: 0 1 auto !important;
	}

	.sm\:flex-none {
		flex: none !important;
	}

	.sm\:grow {
		flex-grow: 1 !important;
	}

	.sm\:grow-0 {
		flex-grow: 0 !important;
	}

	.sm\:shrink {
		flex-shrink: 1 !important;
	}

	.sm\:shrink-0 {
		flex-shrink: 0 !important;
	}
}

/* #endregion sm */

/* #region sm, custom */
@media (min-width: 37.5em) {}

/* #endregion sm, custom */

/* #region md */
@media (min-width: 52.5em) {
	.md\:flex-row {
		flex-direction: row !important;
	}

	.md\:flex-col {
		flex-direction: column !important;
	}

	.md\:flex-row-reverse {
		flex-direction: row-reverse !important;
	}

	.md\:flex-col-reverse {
		flex-direction: column-reverse !important;
	}

	.md\:flex-wrap {
		flex-wrap: wrap !important;
	}

	.md\:flex-wrap-reverse {
		flex-wrap: wrap-reverse !important;
	}

	.md\:flex-nowrap {
		flex-wrap: nowrap !important;
	}

	.md\:flex-1 {
		flex: 1 1 0% !important;
	}

	.md\:flex-auto {
		flex: 1 1 auto !important;
	}

	.md\:flex-initial {
		flex: 0 1 auto !important;
	}

	.md\:flex-none {
		flex: none !important;
	}

	.md\:grow {
		flex-grow: 1 !important;
	}

	.md\:grow-0 {
		flex-grow: 0 !important;
	}

	.md\:shrink {
		flex-shrink: 1 !important;
	}

	.md\:shrink-0 {
		flex-shrink: 0 !important;
	}
}

/* #endregion md */

/* #region md, custom */
@media (min-width: 52.5em) {}

/* #endregion md, custom */

/* #region lg */
@media (min-width: 75em) {
	.lg\:flex-row {
		flex-direction: row !important;
	}

	.lg\:flex-col {
		flex-direction: column !important;
	}

	.lg\:flex-row-reverse {
		flex-direction: row-reverse !important;
	}

	.lg\:flex-col-reverse {
		flex-direction: column-reverse !important;
	}

	.lg\:flex-wrap {
		flex-wrap: wrap !important;
	}

	.lg\:flex-wrap-reverse {
		flex-wrap: wrap-reverse !important;
	}

	.lg\:flex-nowrap {
		flex-wrap: nowrap !important;
	}

	.lg\:flex-1 {
		flex: 1 1 0% !important;
	}

	.lg\:flex-auto {
		flex: 1 1 auto !important;
	}

	.lg\:flex-initial {
		flex: 0 1 auto !important;
	}

	.lg\:flex-none {
		flex: none !important;
	}

	.lg\:grow {
		flex-grow: 1 !important;
	}

	.lg\:grow-0 {
		flex-grow: 0 !important;
	}

	.lg\:shrink {
		flex-shrink: 1 !important;
	}

	.lg\:shrink-0 {
		flex-shrink: 0 !important;
	}
}

/* #endregion lg */

/* #region lg, custom */
@media (min-width: 75em) {}

/* #endregion lg, custom */

/* Flex basis */

.basis-full {
	flex-basis: 100% !important;
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/gap.css?173505524413571*/
/* #region sm */
.gap-0 {
	gap: 0 !important;
}

.gap-x-0 {
	column-gap: 0 !important;
}

.gap-y-0 {
	row-gap: 0 !important;
}

.gap-1 {
	gap: 0.25rem !important;
}

.gap-x-1 {
	column-gap: 0.25rem !important;
}

.gap-y-1 {
	row-gap: 0.25rem !important;
}

.gap-2 {
	gap: 0.5rem !important;
}

.gap-x-2 {
	column-gap: 0.5rem !important;
}

.gap-y-2 {
	row-gap: 0.5rem !important;
}

.gap-3 {
	gap: 0.75rem !important;
}

.gap-x-3 {
	column-gap: 0.75rem !important;
}

.gap-y-3 {
	row-gap: 0.75rem !important;
}

.gap-4 {
	gap: 1rem !important;
}

.gap-x-4 {
	column-gap: 1rem !important;
}

.gap-y-4 {
	row-gap: 1rem !important;
}

.gap-5 {
	gap: 1.25rem !important;
}

.gap-x-5 {
	column-gap: 1.25rem !important;
}

.gap-y-5 {
	row-gap: 1.25rem !important;
}

.gap-6 {
	gap: 1.5rem !important;
}

.gap-x-6 {
	column-gap: 1.5rem !important;
}

.gap-y-6 {
	row-gap: 1.5rem !important;
}

.gap-7 {
	gap: 1.75rem !important;
}

.gap-x-7 {
	column-gap: 1.75rem !important;
}

.gap-y-7 {
	row-gap: 1.75rem !important;
}

.gap-8 {
	gap: 2rem !important;
}

.gap-x-8 {
	column-gap: 2rem !important;
}

.gap-y-8 {
	row-gap: 2rem !important;
}

.gap-9 {
	gap: 2.25rem !important;
}

.gap-x-9 {
	column-gap: 2.25rem !important;
}

.gap-y-9 {
	row-gap: 2.25rem !important;
}

.gap-10 {
	gap: 2.5rem !important;
}

.gap-x-10 {
	column-gap: 2.5rem !important;
}

.gap-y-10 {
	row-gap: 2.5rem !important;
}

.gap-11 {
	gap: 2.75rem !important;
}

.gap-x-11 {
	column-gap: 2.75rem !important;
}

.gap-y-11 {
	row-gap: 2.75rem !important;
}

.gap-12 {
	gap: 3rem !important;
}

.gap-x-12 {
	column-gap: 3rem !important;
}

.gap-y-12 {
	row-gap: 3rem !important;
}

.gap-13 {
	gap: 3.25rem !important;
}

.gap-x-13 {
	column-gap: 3.25rem !important;
}

.gap-y-13 {
	row-gap: 3.25rem !important;
}

.gap-14 {
	gap: 3.5rem !important;
}

.gap-x-14 {
	column-gap: 3.5rem !important;
}

.gap-y-14 {
	row-gap: 3.5rem !important;
}

.gap-15 {
	gap: 3.75rem !important;
}

.gap-x-15 {
	column-gap: 3.75rem !important;
}

.gap-y-15 {
	row-gap: 3.75rem !important;
}

.gap-16 {
	gap: 4rem !important;
}

.gap-x-16 {
	column-gap: 4rem !important;
}

.gap-y-16 {
	row-gap: 4rem !important;
}

.gap-17 {
	gap: 4.25rem !important;
}

.gap-x-17 {
	column-gap: 4.25rem !important;
}

.gap-y-17 {
	row-gap: 4.25rem !important;
}

.gap-18 {
	gap: 4.5rem !important;
}

.gap-x-18 {
	column-gap: 4.5rem !important;
}

.gap-y-18 {
	row-gap: 4.5rem !important;
}

.gap-19 {
	gap: 4.75rem !important;
}

.gap-x-19 {
	column-gap: 4.75rem !important;
}

.gap-y-19 {
	row-gap: 4.75rem !important;
}

.gap-20 {
	gap: 5rem !important;
}

.gap-x-20 {
	column-gap: 5rem !important;
}

.gap-y-20 {
	row-gap: 5rem !important;
}

/* #endregion sm */

/* #region sm, custom */
/* #endregion sm, custom */

/* #region sm */
@media (min-width: 37.5em) {
	.sm\:gap-0 {
		gap: 0 !important;
	}

	.sm\:gap-x-0 {
		column-gap: 0 !important;
	}

	.sm\:gap-y-0 {
		row-gap: 0 !important;
	}

	.sm\:gap-1 {
		gap: 0.25rem !important;
	}

	.sm\:gap-x-1 {
		column-gap: 0.25rem !important;
	}

	.sm\:gap-y-1 {
		row-gap: 0.25rem !important;
	}

	.sm\:gap-2 {
		gap: 0.5rem !important;
	}

	.sm\:gap-x-2 {
		column-gap: 0.5rem !important;
	}

	.sm\:gap-y-2 {
		row-gap: 0.5rem !important;
	}

	.sm\:gap-3 {
		gap: 0.75rem !important;
	}

	.sm\:gap-x-3 {
		column-gap: 0.75rem !important;
	}

	.sm\:gap-y-3 {
		row-gap: 0.75rem !important;
	}

	.sm\:gap-4 {
		gap: 1rem !important;
	}

	.sm\:gap-x-4 {
		column-gap: 1rem !important;
	}

	.sm\:gap-y-4 {
		row-gap: 1rem !important;
	}

	.sm\:gap-5 {
		gap: 1.25rem !important;
	}

	.sm\:gap-x-5 {
		column-gap: 1.25rem !important;
	}

	.sm\:gap-y-5 {
		row-gap: 1.25rem !important;
	}

	.sm\:gap-6 {
		gap: 1.5rem !important;
	}

	.sm\:gap-x-6 {
		column-gap: 1.5rem !important;
	}

	.sm\:gap-y-6 {
		row-gap: 1.5rem !important;
	}

	.sm\:gap-7 {
		gap: 1.75rem !important;
	}

	.sm\:gap-x-7 {
		column-gap: 1.75rem !important;
	}

	.sm\:gap-y-7 {
		row-gap: 1.75rem !important;
	}

	.sm\:gap-8 {
		gap: 2rem !important;
	}

	.sm\:gap-x-8 {
		column-gap: 2rem !important;
	}

	.sm\:gap-y-8 {
		row-gap: 2rem !important;
	}

	.sm\:gap-9 {
		gap: 2.25rem !important;
	}

	.sm\:gap-x-9 {
		column-gap: 2.25rem !important;
	}

	.sm\:gap-y-9 {
		row-gap: 2.25rem !important;
	}

	.sm\:gap-10 {
		gap: 2.5rem !important;
	}

	.sm\:gap-x-10 {
		column-gap: 2.5rem !important;
	}

	.sm\:gap-y-10 {
		row-gap: 2.5rem !important;
	}

	.sm\:gap-11 {
		gap: 2.75rem !important;
	}

	.sm\:gap-x-11 {
		column-gap: 2.75rem !important;
	}

	.sm\:gap-y-11 {
		row-gap: 2.75rem !important;
	}

	.sm\:gap-12 {
		gap: 3rem !important;
	}

	.sm\:gap-x-12 {
		column-gap: 3rem !important;
	}

	.sm\:gap-y-12 {
		row-gap: 3rem !important;
	}

	.sm\:gap-13 {
		gap: 3.25rem !important;
	}

	.sm\:gap-x-13 {
		column-gap: 3.25rem !important;
	}

	.sm\:gap-y-13 {
		row-gap: 3.25rem !important;
	}

	.sm\:gap-14 {
		gap: 3.5rem !important;
	}

	.sm\:gap-x-14 {
		column-gap: 3.5rem !important;
	}

	.sm\:gap-y-14 {
		row-gap: 3.5rem !important;
	}

	.sm\:gap-15 {
		gap: 3.75rem !important;
	}

	.sm\:gap-x-15 {
		column-gap: 3.75rem !important;
	}

	.sm\:gap-y-15 {
		row-gap: 3.75rem !important;
	}

	.sm\:gap-16 {
		gap: 4rem !important;
	}

	.sm\:gap-x-16 {
		column-gap: 4rem !important;
	}

	.sm\:gap-y-16 {
		row-gap: 4rem !important;
	}

	.sm\:gap-17 {
		gap: 4.25rem !important;
	}

	.sm\:gap-x-17 {
		column-gap: 4.25rem !important;
	}

	.sm\:gap-y-17 {
		row-gap: 4.25rem !important;
	}

	.sm\:gap-18 {
		gap: 4.5rem !important;
	}

	.sm\:gap-x-18 {
		column-gap: 4.5rem !important;
	}

	.sm\:gap-y-18 {
		row-gap: 4.5rem !important;
	}

	.sm\:gap-19 {
		gap: 4.75rem !important;
	}

	.sm\:gap-x-19 {
		column-gap: 4.75rem !important;
	}

	.sm\:gap-y-19 {
		row-gap: 4.75rem !important;
	}

	.sm\:gap-20 {
		gap: 5rem !important;
	}

	.sm\:gap-x-20 {
		column-gap: 5rem !important;
	}

	.sm\:gap-y-20 {
		row-gap: 5rem !important;
	}
}

/* #endregion sm */

/* #region sm, custom */
@media (min-width: 37.5em) {}

/* #endregion sm, custom */

/* #region md */
@media (min-width: 52.5em) {
	.md\:gap-0 {
		gap: 0 !important;
	}

	.md\:gap-x-0 {
		column-gap: 0 !important;
	}

	.md\:gap-y-0 {
		row-gap: 0 !important;
	}

	.md\:gap-1 {
		gap: 0.25rem !important;
	}

	.md\:gap-x-1 {
		column-gap: 0.25rem !important;
	}

	.md\:gap-y-1 {
		row-gap: 0.25rem !important;
	}

	.md\:gap-2 {
		gap: 0.5rem !important;
	}

	.md\:gap-x-2 {
		column-gap: 0.5rem !important;
	}

	.md\:gap-y-2 {
		row-gap: 0.5rem !important;
	}

	.md\:gap-3 {
		gap: 0.75rem !important;
	}

	.md\:gap-x-3 {
		column-gap: 0.75rem !important;
	}

	.md\:gap-y-3 {
		row-gap: 0.75rem !important;
	}

	.md\:gap-4 {
		gap: 1rem !important;
	}

	.md\:gap-x-4 {
		column-gap: 1rem !important;
	}

	.md\:gap-y-4 {
		row-gap: 1rem !important;
	}

	.md\:gap-5 {
		gap: 1.25rem !important;
	}

	.md\:gap-x-5 {
		column-gap: 1.25rem !important;
	}

	.md\:gap-y-5 {
		row-gap: 1.25rem !important;
	}

	.md\:gap-6 {
		gap: 1.5rem !important;
	}

	.md\:gap-x-6 {
		column-gap: 1.5rem !important;
	}

	.md\:gap-y-6 {
		row-gap: 1.5rem !important;
	}

	.md\:gap-7 {
		gap: 1.75rem !important;
	}

	.md\:gap-x-7 {
		column-gap: 1.75rem !important;
	}

	.md\:gap-y-7 {
		row-gap: 1.75rem !important;
	}

	.md\:gap-8 {
		gap: 2rem !important;
	}

	.md\:gap-x-8 {
		column-gap: 2rem !important;
	}

	.md\:gap-y-8 {
		row-gap: 2rem !important;
	}

	.md\:gap-9 {
		gap: 2.25rem !important;
	}

	.md\:gap-x-9 {
		column-gap: 2.25rem !important;
	}

	.md\:gap-y-9 {
		row-gap: 2.25rem !important;
	}

	.md\:gap-10 {
		gap: 2.5rem !important;
	}

	.md\:gap-x-10 {
		column-gap: 2.5rem !important;
	}

	.md\:gap-y-10 {
		row-gap: 2.5rem !important;
	}

	.md\:gap-11 {
		gap: 2.75rem !important;
	}

	.md\:gap-x-11 {
		column-gap: 2.75rem !important;
	}

	.md\:gap-y-11 {
		row-gap: 2.75rem !important;
	}

	.md\:gap-12 {
		gap: 3rem !important;
	}

	.md\:gap-x-12 {
		column-gap: 3rem !important;
	}

	.md\:gap-y-12 {
		row-gap: 3rem !important;
	}

	.md\:gap-13 {
		gap: 3.25rem !important;
	}

	.md\:gap-x-13 {
		column-gap: 3.25rem !important;
	}

	.md\:gap-y-13 {
		row-gap: 3.25rem !important;
	}

	.md\:gap-14 {
		gap: 3.5rem !important;
	}

	.md\:gap-x-14 {
		column-gap: 3.5rem !important;
	}

	.md\:gap-y-14 {
		row-gap: 3.5rem !important;
	}

	.md\:gap-15 {
		gap: 3.75rem !important;
	}

	.md\:gap-x-15 {
		column-gap: 3.75rem !important;
	}

	.md\:gap-y-15 {
		row-gap: 3.75rem !important;
	}

	.md\:gap-16 {
		gap: 4rem !important;
	}

	.md\:gap-x-16 {
		column-gap: 4rem !important;
	}

	.md\:gap-y-16 {
		row-gap: 4rem !important;
	}

	.md\:gap-17 {
		gap: 4.25rem !important;
	}

	.md\:gap-x-17 {
		column-gap: 4.25rem !important;
	}

	.md\:gap-y-17 {
		row-gap: 4.25rem !important;
	}

	.md\:gap-18 {
		gap: 4.5rem !important;
	}

	.md\:gap-x-18 {
		column-gap: 4.5rem !important;
	}

	.md\:gap-y-18 {
		row-gap: 4.5rem !important;
	}

	.md\:gap-19 {
		gap: 4.75rem !important;
	}

	.md\:gap-x-19 {
		column-gap: 4.75rem !important;
	}

	.md\:gap-y-19 {
		row-gap: 4.75rem !important;
	}

	.md\:gap-20 {
		gap: 5rem !important;
	}

	.md\:gap-x-20 {
		column-gap: 5rem !important;
	}

	.md\:gap-y-20 {
		row-gap: 5rem !important;
	}
}

/* #endregion md */

/* #region md, custom */
@media (min-width: 52.5em) {}

/* #endregion md, custom */

/* #region lg */
@media (min-width: 75em) {
	.lg\:gap-0 {
		gap: 0 !important;
	}

	.lg\:gap-x-0 {
		column-gap: 0 !important;
	}

	.lg\:gap-y-0 {
		row-gap: 0 !important;
	}

	.lg\:gap-1 {
		gap: 0.25rem !important;
	}

	.lg\:gap-x-1 {
		column-gap: 0.25rem !important;
	}

	.lg\:gap-y-1 {
		row-gap: 0.25rem !important;
	}

	.lg\:gap-2 {
		gap: 0.5rem !important;
	}

	.lg\:gap-x-2 {
		column-gap: 0.5rem !important;
	}

	.lg\:gap-y-2 {
		row-gap: 0.5rem !important;
	}

	.lg\:gap-3 {
		gap: 0.75rem !important;
	}

	.lg\:gap-x-3 {
		column-gap: 0.75rem !important;
	}

	.lg\:gap-y-3 {
		row-gap: 0.75rem !important;
	}

	.lg\:gap-4 {
		gap: 1rem !important;
	}

	.lg\:gap-x-4 {
		column-gap: 1rem !important;
	}

	.lg\:gap-y-4 {
		row-gap: 1rem !important;
	}

	.lg\:gap-5 {
		gap: 1.25rem !important;
	}

	.lg\:gap-x-5 {
		column-gap: 1.25rem !important;
	}

	.lg\:gap-y-5 {
		row-gap: 1.25rem !important;
	}

	.lg\:gap-6 {
		gap: 1.5rem !important;
	}

	.lg\:gap-x-6 {
		column-gap: 1.5rem !important;
	}

	.lg\:gap-y-6 {
		row-gap: 1.5rem !important;
	}

	.lg\:gap-7 {
		gap: 1.75rem !important;
	}

	.lg\:gap-x-7 {
		column-gap: 1.75rem !important;
	}

	.lg\:gap-y-7 {
		row-gap: 1.75rem !important;
	}

	.lg\:gap-8 {
		gap: 2rem !important;
	}

	.lg\:gap-x-8 {
		column-gap: 2rem !important;
	}

	.lg\:gap-y-8 {
		row-gap: 2rem !important;
	}

	.lg\:gap-9 {
		gap: 2.25rem !important;
	}

	.lg\:gap-x-9 {
		column-gap: 2.25rem !important;
	}

	.lg\:gap-y-9 {
		row-gap: 2.25rem !important;
	}

	.lg\:gap-10 {
		gap: 2.5rem !important;
	}

	.lg\:gap-x-10 {
		column-gap: 2.5rem !important;
	}

	.lg\:gap-y-10 {
		row-gap: 2.5rem !important;
	}

	.lg\:gap-11 {
		gap: 2.75rem !important;
	}

	.lg\:gap-x-11 {
		column-gap: 2.75rem !important;
	}

	.lg\:gap-y-11 {
		row-gap: 2.75rem !important;
	}

	.lg\:gap-12 {
		gap: 3rem !important;
	}

	.lg\:gap-x-12 {
		column-gap: 3rem !important;
	}

	.lg\:gap-y-12 {
		row-gap: 3rem !important;
	}

	.lg\:gap-13 {
		gap: 3.25rem !important;
	}

	.lg\:gap-x-13 {
		column-gap: 3.25rem !important;
	}

	.lg\:gap-y-13 {
		row-gap: 3.25rem !important;
	}

	.lg\:gap-14 {
		gap: 3.5rem !important;
	}

	.lg\:gap-x-14 {
		column-gap: 3.5rem !important;
	}

	.lg\:gap-y-14 {
		row-gap: 3.5rem !important;
	}

	.lg\:gap-15 {
		gap: 3.75rem !important;
	}

	.lg\:gap-x-15 {
		column-gap: 3.75rem !important;
	}

	.lg\:gap-y-15 {
		row-gap: 3.75rem !important;
	}

	.lg\:gap-16 {
		gap: 4rem !important;
	}

	.lg\:gap-x-16 {
		column-gap: 4rem !important;
	}

	.lg\:gap-y-16 {
		row-gap: 4rem !important;
	}

	.lg\:gap-17 {
		gap: 4.25rem !important;
	}

	.lg\:gap-x-17 {
		column-gap: 4.25rem !important;
	}

	.lg\:gap-y-17 {
		row-gap: 4.25rem !important;
	}

	.lg\:gap-18 {
		gap: 4.5rem !important;
	}

	.lg\:gap-x-18 {
		column-gap: 4.5rem !important;
	}

	.lg\:gap-y-18 {
		row-gap: 4.5rem !important;
	}

	.lg\:gap-19 {
		gap: 4.75rem !important;
	}

	.lg\:gap-x-19 {
		column-gap: 4.75rem !important;
	}

	.lg\:gap-y-19 {
		row-gap: 4.75rem !important;
	}

	.lg\:gap-20 {
		gap: 5rem !important;
	}

	.lg\:gap-x-20 {
		column-gap: 5rem !important;
	}

	.lg\:gap-y-20 {
		row-gap: 5rem !important;
	}
}

/* #endregion lg */

/* #region lg, custom */
@media (min-width: 75em) {}

/* #endregion lg, custom */

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/grid.css?173505678427305*/
/* #region sm */
.grid-flow-row {
	grid-auto-flow: row !important;
}

.grid-flow-col {
	grid-auto-flow: column !important;
}

.grid-flow-row-dense {
	grid-auto-flow: row dense !important;
}

.grid-flow-col-dense {
	grid-auto-flow: column dense !important;
}

.auto-cols-max {
	grid-auto-columns: max-content !important;
}

.auto-cols-min {
	grid-auto-columns: min-content !important;
}

.auto-cols-auto {
	grid-auto-columns: auto !important;
}

.auto-cols-fr {
	grid-auto-columns: minmax(0, 1fr) !important;
}

.auto-rows-max {
	grid-auto-rows: max-content !important;
}

.auto-rows-min {
	grid-auto-rows: min-content !important;
}

.auto-rows-auto {
	grid-auto-rows: auto !important;
}

.auto-rows-fr {
	grid-auto-rows: minmax(0, 1fr) !important;
}

.grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

.grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.grid-cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.grid-cols-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.grid-cols-5 {
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.grid-cols-6 {
	grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.grid-cols-7 {
	grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
}

.grid-cols-8 {
	grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
}

.grid-cols-9 {
	grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
}

.grid-cols-10 {
	grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
}

.grid-cols-11 {
	grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
}

.grid-cols-12 {
	grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
}

.grid-cols-none {
	grid-template-columns: none !important;
}

.grid-rows-1 {
	grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
}

.grid-rows-2 {
	grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
}

.grid-rows-3 {
	grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
}

.grid-rows-4 {
	grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
}

.grid-rows-5 {
	grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
}

.grid-rows-6 {
	grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
}

.grid-rows-none {
	grid-template-rows: none !important;
}

.col-auto {
	grid-column: auto !important;
}

.col-span-1 {
	grid-column: span 1 / span 1 !important;
}

.col-span-2 {
	grid-column: span 2 / span 2 !important;
}

.col-span-3 {
	grid-column: span 3 / span 3 !important;
}

.col-span-4 {
	grid-column: span 4 / span 4 !important;
}

.col-span-5 {
	grid-column: span 5 / span 5 !important;
}

.col-span-6 {
	grid-column: span 6 / span 6 !important;
}

.col-span-7 {
	grid-column: span 7 / span 7 !important;
}

.col-span-8 {
	grid-column: span 8 / span 8 !important;
}

.col-span-9 {
	grid-column: span 9 / span 9 !important;
}

.col-span-10 {
	grid-column: span 10 / span 10 !important;
}

.col-span-11 {
	grid-column: span 11 / span 11 !important;
}

.col-span-12 {
	grid-column: span 12 / span 12 !important;
}

.col-span-full {
	grid-column: 1 / -1 !important;
}

.col-start-1 {
	grid-column-start: 1 !important;
}

.col-start-2 {
	grid-column-start: 2 !important;
}

.col-start-3 {
	grid-column-start: 3 !important;
}

.col-start-4 {
	grid-column-start: 4 !important;
}

.col-start-5 {
	grid-column-start: 5 !important;
}

.col-start-6 {
	grid-column-start: 6 !important;
}

.col-start-7 {
	grid-column-start: 7 !important;
}

.col-start-8 {
	grid-column-start: 8 !important;
}

.col-start-9 {
	grid-column-start: 9 !important;
}

.col-start-10 {
	grid-column-start: 10 !important;
}

.col-start-11 {
	grid-column-start: 11 !important;
}

.col-start-12 {
	grid-column-start: 12 !important;
}

.col-start-13 {
	grid-column-start: 13 !important;
}

.col-start-auto {
	grid-column-start: auto !important;
}

.col-end-1 {
	grid-column-end: 1 !important;
}

.col-end-2 {
	grid-column-end: 2 !important;
}

.col-end-3 {
	grid-column-end: 3 !important;
}

.col-end-4 {
	grid-column-end: 4 !important;
}

.col-end-5 {
	grid-column-end: 5 !important;
}

.col-end-6 {
	grid-column-end: 6 !important;
}

.col-end-7 {
	grid-column-end: 7 !important;
}

.col-end-8 {
	grid-column-end: 8 !important;
}

.col-end-9 {
	grid-column-end: 9 !important;
}

.col-end-10 {
	grid-column-end: 10 !important;
}

.col-end-11 {
	grid-column-end: 11 !important;
}

.col-end-12 {
	grid-column-end: 12 !important;
}

.col-end-13 {
	grid-column-end: 13 !important;
}

.col-end-auto {
	grid-column-end: auto !important;
}

.row-auto {
	grid-row: auto !important;
}

.row-span-1 {
	grid-row: span 1 / span 1 !important;
}

.row-span-2 {
	grid-row: span 2 / span 2 !important;
}

.row-span-3 {
	grid-row: span 3 / span 3 !important;
}

.row-span-4 {
	grid-row: span 4 / span 4 !important;
}

.row-span-5 {
	grid-row: span 5 / span 5 !important;
}

.row-span-6 {
	grid-row: span 6 / span 6 !important;
}

.row-span-full {
	grid-row: 1 / -1 !important;
}

.row-start-1 {
	grid-row-start: 1 !important;
}

.row-start-2 {
	grid-row-start: 2 !important;
}

.row-start-3 {
	grid-row-start: 3 !important;
}

.row-start-4 {
	grid-row-start: 4 !important;
}

.row-start-5 {
	grid-row-start: 5 !important;
}

.row-start-6 {
	grid-row-start: 6 !important;
}

.row-start-7 {
	grid-row-start: 7 !important;
}

.row-start-auto {
	grid-row-start: auto !important;
}

.row-end-1 {
	grid-row-end: 1 !important;
}

.row-end-2 {
	grid-row-end: 2 !important;
}

.row-end-3 {
	grid-row-end: 3 !important;
}

.row-end-4 {
	grid-row-end: 4 !important;
}

.row-end-5 {
	grid-row-end: 5 !important;
}

.row-end-6 {
	grid-row-end: 6 !important;
}

.row-end-7 {
	grid-row-end: 7 !important;
}

.row-end-auto {
	grid-row-end: auto !important;
}

/* #endregion sm */

/* #region sm, custom */
.grid-rows-\[auto\,1fr\] {
	grid-template-rows: auto 1fr !important;
}

/* #endregion sm, custom */

/* #region sm */
@media (min-width: 37.5em) {
	.sm\:grid-flow-row {
		grid-auto-flow: row !important;
	}

	.sm\:grid-flow-col {
		grid-auto-flow: column !important;
	}

	.sm\:grid-flow-row-dense {
		grid-auto-flow: row dense !important;
	}

	.sm\:grid-flow-col-dense {
		grid-auto-flow: column dense !important;
	}

	.sm\:auto-cols-max {
		grid-auto-columns: max-content !important;
	}

	.sm\:auto-cols-min {
		grid-auto-columns: min-content !important;
	}

	.sm\:auto-cols-auto {
		grid-auto-columns: auto !important;
	}

	.sm\:auto-cols-fr {
		grid-auto-columns: minmax(0, 1fr) !important;
	}

	.sm\:auto-rows-max {
		grid-auto-rows: max-content !important;
	}

	.sm\:auto-rows-min {
		grid-auto-rows: min-content !important;
	}

	.sm\:auto-rows-auto {
		grid-auto-rows: auto !important;
	}

	.sm\:auto-rows-fr {
		grid-auto-rows: minmax(0, 1fr) !important;
	}

	.sm\:grid-cols-1 {
		grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
	}

	.sm\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.sm\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}

	.sm\:grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	}

	.sm\:grid-cols-5 {
		grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	}

	.sm\:grid-cols-6 {
		grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
	}

	.sm\:grid-cols-7 {
		grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
	}

	.sm\:grid-cols-8 {
		grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
	}

	.sm\:grid-cols-9 {
		grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
	}

	.sm\:grid-cols-10 {
		grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
	}

	.sm\:grid-cols-11 {
		grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
	}

	.sm\:grid-cols-12 {
		grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
	}

	.sm\:grid-cols-none {
		grid-template-columns: none !important;
	}

	.sm\:grid-rows-1 {
		grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
	}

	.sm\:grid-rows-2 {
		grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
	}

	.sm\:grid-rows-3 {
		grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
	}

	.sm\:grid-rows-4 {
		grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
	}

	.sm\:grid-rows-5 {
		grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
	}

	.sm\:grid-rows-6 {
		grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
	}

	.sm\:grid-rows-none {
		grid-template-rows: none !important;
	}

	.sm\:col-auto {
		grid-column: auto !important;
	}

	.sm\:col-span-1 {
		grid-column: span 1 / span 1 !important;
	}

	.sm\:col-span-2 {
		grid-column: span 2 / span 2 !important;
	}

	.sm\:col-span-3 {
		grid-column: span 3 / span 3 !important;
	}

	.sm\:col-span-4 {
		grid-column: span 4 / span 4 !important;
	}

	.sm\:col-span-5 {
		grid-column: span 5 / span 5 !important;
	}

	.sm\:col-span-6 {
		grid-column: span 6 / span 6 !important;
	}

	.sm\:col-span-7 {
		grid-column: span 7 / span 7 !important;
	}

	.sm\:col-span-8 {
		grid-column: span 8 / span 8 !important;
	}

	.sm\:col-span-9 {
		grid-column: span 9 / span 9 !important;
	}

	.sm\:col-span-10 {
		grid-column: span 10 / span 10 !important;
	}

	.sm\:col-span-11 {
		grid-column: span 11 / span 11 !important;
	}

	.sm\:col-span-12 {
		grid-column: span 12 / span 12 !important;
	}

	.sm\:col-span-full {
		grid-column: 1 / -1 !important;
	}

	.sm\:col-start-1 {
		grid-column-start: 1 !important;
	}

	.sm\:col-start-2 {
		grid-column-start: 2 !important;
	}

	.sm\:col-start-3 {
		grid-column-start: 3 !important;
	}

	.sm\:col-start-4 {
		grid-column-start: 4 !important;
	}

	.sm\:col-start-5 {
		grid-column-start: 5 !important;
	}

	.sm\:col-start-6 {
		grid-column-start: 6 !important;
	}

	.sm\:col-start-7 {
		grid-column-start: 7 !important;
	}

	.sm\:col-start-8 {
		grid-column-start: 8 !important;
	}

	.sm\:col-start-9 {
		grid-column-start: 9 !important;
	}

	.sm\:col-start-10 {
		grid-column-start: 10 !important;
	}

	.sm\:col-start-11 {
		grid-column-start: 11 !important;
	}

	.sm\:col-start-12 {
		grid-column-start: 12 !important;
	}

	.sm\:col-start-13 {
		grid-column-start: 13 !important;
	}

	.sm\:col-start-auto {
		grid-column-start: auto !important;
	}

	.sm\:col-end-1 {
		grid-column-end: 1 !important;
	}

	.sm\:col-end-2 {
		grid-column-end: 2 !important;
	}

	.sm\:col-end-3 {
		grid-column-end: 3 !important;
	}

	.sm\:col-end-4 {
		grid-column-end: 4 !important;
	}

	.sm\:col-end-5 {
		grid-column-end: 5 !important;
	}

	.sm\:col-end-6 {
		grid-column-end: 6 !important;
	}

	.sm\:col-end-7 {
		grid-column-end: 7 !important;
	}

	.sm\:col-end-8 {
		grid-column-end: 8 !important;
	}

	.sm\:col-end-9 {
		grid-column-end: 9 !important;
	}

	.sm\:col-end-10 {
		grid-column-end: 10 !important;
	}

	.sm\:col-end-11 {
		grid-column-end: 11 !important;
	}

	.sm\:col-end-12 {
		grid-column-end: 12 !important;
	}

	.sm\:col-end-13 {
		grid-column-end: 13 !important;
	}

	.sm\:col-end-auto {
		grid-column-end: auto !important;
	}

	.sm\:row-auto {
		grid-row: auto !important;
	}

	.sm\:row-span-1 {
		grid-row: span 1 / span 1 !important;
	}

	.sm\:row-span-2 {
		grid-row: span 2 / span 2 !important;
	}

	.sm\:row-span-3 {
		grid-row: span 3 / span 3 !important;
	}

	.sm\:row-span-4 {
		grid-row: span 4 / span 4 !important;
	}

	.sm\:row-span-5 {
		grid-row: span 5 / span 5 !important;
	}

	.sm\:row-span-6 {
		grid-row: span 6 / span 6 !important;
	}

	.sm\:row-span-full {
		grid-row: 1 / -1 !important;
	}

	.sm\:row-start-1 {
		grid-row-start: 1 !important;
	}

	.sm\:row-start-2 {
		grid-row-start: 2 !important;
	}

	.sm\:row-start-3 {
		grid-row-start: 3 !important;
	}

	.sm\:row-start-4 {
		grid-row-start: 4 !important;
	}

	.sm\:row-start-5 {
		grid-row-start: 5 !important;
	}

	.sm\:row-start-6 {
		grid-row-start: 6 !important;
	}

	.sm\:row-start-7 {
		grid-row-start: 7 !important;
	}

	.sm\:row-start-auto {
		grid-row-start: auto !important;
	}

	.sm\:row-end-1 {
		grid-row-end: 1 !important;
	}

	.sm\:row-end-2 {
		grid-row-end: 2 !important;
	}

	.sm\:row-end-3 {
		grid-row-end: 3 !important;
	}

	.sm\:row-end-4 {
		grid-row-end: 4 !important;
	}

	.sm\:row-end-5 {
		grid-row-end: 5 !important;
	}

	.sm\:row-end-6 {
		grid-row-end: 6 !important;
	}

	.sm\:row-end-7 {
		grid-row-end: 7 !important;
	}

	.sm\:row-end-auto {
		grid-row-end: auto !important;
	}
}

/* #endregion sm */

/* #region sm, custom */
@media (min-width: 37.5em) {
	.sm\:grid-cols-\[repeat\(3\,minmax\(0\,max-content\)\)\] {
		grid-template-columns: repeat(3, minmax(0, max-content)) !important;
	}
}

/* #endregion sm, custom */

/* #region md */
@media (min-width: 52.5em) {
	.md\:grid-flow-row {
		grid-auto-flow: row !important;
	}

	.md\:grid-flow-col {
		grid-auto-flow: column !important;
	}

	.md\:grid-flow-row-dense {
		grid-auto-flow: row dense !important;
	}

	.md\:grid-flow-col-dense {
		grid-auto-flow: column dense !important;
	}

	.md\:auto-cols-max {
		grid-auto-columns: max-content !important;
	}

	.md\:auto-cols-min {
		grid-auto-columns: min-content !important;
	}

	.md\:auto-cols-auto {
		grid-auto-columns: auto !important;
	}

	.md\:auto-cols-fr {
		grid-auto-columns: minmax(0, 1fr) !important;
	}

	.md\:auto-rows-max {
		grid-auto-rows: max-content !important;
	}

	.md\:auto-rows-min {
		grid-auto-rows: min-content !important;
	}

	.md\:auto-rows-auto {
		grid-auto-rows: auto !important;
	}

	.md\:auto-rows-fr {
		grid-auto-rows: minmax(0, 1fr) !important;
	}

	.md\:grid-cols-1 {
		grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
	}

	.md\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.md\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}

	.md\:grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	}

	.md\:grid-cols-5 {
		grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	}

	.md\:grid-cols-6 {
		grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
	}

	.md\:grid-cols-7 {
		grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
	}

	.md\:grid-cols-8 {
		grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
	}

	.md\:grid-cols-9 {
		grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
	}

	.md\:grid-cols-10 {
		grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
	}

	.md\:grid-cols-11 {
		grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
	}

	.md\:grid-cols-12 {
		grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
	}

	.md\:grid-cols-none {
		grid-template-columns: none !important;
	}

	.md\:grid-rows-1 {
		grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
	}

	.md\:grid-rows-2 {
		grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
	}

	.md\:grid-rows-3 {
		grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
	}

	.md\:grid-rows-4 {
		grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
	}

	.md\:grid-rows-5 {
		grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
	}

	.md\:grid-rows-6 {
		grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
	}

	.md\:grid-rows-none {
		grid-template-rows: none !important;
	}

	.md\:col-auto {
		grid-column: auto !important;
	}

	.md\:col-span-1 {
		grid-column: span 1 / span 1 !important;
	}

	.md\:col-span-2 {
		grid-column: span 2 / span 2 !important;
	}

	.md\:col-span-3 {
		grid-column: span 3 / span 3 !important;
	}

	.md\:col-span-4 {
		grid-column: span 4 / span 4 !important;
	}

	.md\:col-span-5 {
		grid-column: span 5 / span 5 !important;
	}

	.md\:col-span-6 {
		grid-column: span 6 / span 6 !important;
	}

	.md\:col-span-7 {
		grid-column: span 7 / span 7 !important;
	}

	.md\:col-span-8 {
		grid-column: span 8 / span 8 !important;
	}

	.md\:col-span-9 {
		grid-column: span 9 / span 9 !important;
	}

	.md\:col-span-10 {
		grid-column: span 10 / span 10 !important;
	}

	.md\:col-span-11 {
		grid-column: span 11 / span 11 !important;
	}

	.md\:col-span-12 {
		grid-column: span 12 / span 12 !important;
	}

	.md\:col-span-full {
		grid-column: 1 / -1 !important;
	}

	.md\:col-start-1 {
		grid-column-start: 1 !important;
	}

	.md\:col-start-2 {
		grid-column-start: 2 !important;
	}

	.md\:col-start-3 {
		grid-column-start: 3 !important;
	}

	.md\:col-start-4 {
		grid-column-start: 4 !important;
	}

	.md\:col-start-5 {
		grid-column-start: 5 !important;
	}

	.md\:col-start-6 {
		grid-column-start: 6 !important;
	}

	.md\:col-start-7 {
		grid-column-start: 7 !important;
	}

	.md\:col-start-8 {
		grid-column-start: 8 !important;
	}

	.md\:col-start-9 {
		grid-column-start: 9 !important;
	}

	.md\:col-start-10 {
		grid-column-start: 10 !important;
	}

	.md\:col-start-11 {
		grid-column-start: 11 !important;
	}

	.md\:col-start-12 {
		grid-column-start: 12 !important;
	}

	.md\:col-start-13 {
		grid-column-start: 13 !important;
	}

	.md\:col-start-auto {
		grid-column-start: auto !important;
	}

	.md\:col-end-1 {
		grid-column-end: 1 !important;
	}

	.md\:col-end-2 {
		grid-column-end: 2 !important;
	}

	.md\:col-end-3 {
		grid-column-end: 3 !important;
	}

	.md\:col-end-4 {
		grid-column-end: 4 !important;
	}

	.md\:col-end-5 {
		grid-column-end: 5 !important;
	}

	.md\:col-end-6 {
		grid-column-end: 6 !important;
	}

	.md\:col-end-7 {
		grid-column-end: 7 !important;
	}

	.md\:col-end-8 {
		grid-column-end: 8 !important;
	}

	.md\:col-end-9 {
		grid-column-end: 9 !important;
	}

	.md\:col-end-10 {
		grid-column-end: 10 !important;
	}

	.md\:col-end-11 {
		grid-column-end: 11 !important;
	}

	.md\:col-end-12 {
		grid-column-end: 12 !important;
	}

	.md\:col-end-13 {
		grid-column-end: 13 !important;
	}

	.md\:col-end-auto {
		grid-column-end: auto !important;
	}

	.md\:row-auto {
		grid-row: auto !important;
	}

	.md\:row-span-1 {
		grid-row: span 1 / span 1 !important;
	}

	.md\:row-span-2 {
		grid-row: span 2 / span 2 !important;
	}

	.md\:row-span-3 {
		grid-row: span 3 / span 3 !important;
	}

	.md\:row-span-4 {
		grid-row: span 4 / span 4 !important;
	}

	.md\:row-span-5 {
		grid-row: span 5 / span 5 !important;
	}

	.md\:row-span-6 {
		grid-row: span 6 / span 6 !important;
	}

	.md\:row-span-full {
		grid-row: 1 / -1 !important;
	}

	.md\:row-start-1 {
		grid-row-start: 1 !important;
	}

	.md\:row-start-2 {
		grid-row-start: 2 !important;
	}

	.md\:row-start-3 {
		grid-row-start: 3 !important;
	}

	.md\:row-start-4 {
		grid-row-start: 4 !important;
	}

	.md\:row-start-5 {
		grid-row-start: 5 !important;
	}

	.md\:row-start-6 {
		grid-row-start: 6 !important;
	}

	.md\:row-start-7 {
		grid-row-start: 7 !important;
	}

	.md\:row-start-auto {
		grid-row-start: auto !important;
	}

	.md\:row-end-1 {
		grid-row-end: 1 !important;
	}

	.md\:row-end-2 {
		grid-row-end: 2 !important;
	}

	.md\:row-end-3 {
		grid-row-end: 3 !important;
	}

	.md\:row-end-4 {
		grid-row-end: 4 !important;
	}

	.md\:row-end-5 {
		grid-row-end: 5 !important;
	}

	.md\:row-end-6 {
		grid-row-end: 6 !important;
	}

	.md\:row-end-7 {
		grid-row-end: 7 !important;
	}

	.md\:row-end-auto {
		grid-row-end: auto !important;
	}
}

/* #endregion md */

/* #region md, custom */
@media (min-width: 52.5em) {}

/* #endregion md, custom */

/* #region lg */
@media (min-width: 75em) {
	.lg\:grid-flow-row {
		grid-auto-flow: row !important;
	}

	.lg\:grid-flow-col {
		grid-auto-flow: column !important;
	}

	.lg\:grid-flow-row-dense {
		grid-auto-flow: row dense !important;
	}

	.lg\:grid-flow-col-dense {
		grid-auto-flow: column dense !important;
	}

	.lg\:auto-cols-max {
		grid-auto-columns: max-content !important;
	}

	.lg\:auto-cols-min {
		grid-auto-columns: min-content !important;
	}

	.lg\:auto-cols-auto {
		grid-auto-columns: auto !important;
	}

	.lg\:auto-cols-fr {
		grid-auto-columns: minmax(0, 1fr) !important;
	}

	.lg\:auto-rows-max {
		grid-auto-rows: max-content !important;
	}

	.lg\:auto-rows-min {
		grid-auto-rows: min-content !important;
	}

	.lg\:auto-rows-auto {
		grid-auto-rows: auto !important;
	}

	.lg\:auto-rows-fr {
		grid-auto-rows: minmax(0, 1fr) !important;
	}

	.lg\:grid-cols-1 {
		grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
	}

	.lg\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.lg\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}

	.lg\:grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	}

	.lg\:grid-cols-5 {
		grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	}

	.lg\:grid-cols-6 {
		grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
	}

	.lg\:grid-cols-7 {
		grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
	}

	.lg\:grid-cols-8 {
		grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
	}

	.lg\:grid-cols-9 {
		grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
	}

	.lg\:grid-cols-10 {
		grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
	}

	.lg\:grid-cols-11 {
		grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
	}

	.lg\:grid-cols-12 {
		grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
	}

	.lg\:grid-cols-none {
		grid-template-columns: none !important;
	}

	.lg\:grid-rows-1 {
		grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
	}

	.lg\:grid-rows-2 {
		grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
	}

	.lg\:grid-rows-3 {
		grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
	}

	.lg\:grid-rows-4 {
		grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
	}

	.lg\:grid-rows-5 {
		grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
	}

	.lg\:grid-rows-6 {
		grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
	}

	.lg\:grid-rows-none {
		grid-template-rows: none !important;
	}

	.lg\:col-auto {
		grid-column: auto !important;
	}

	.lg\:col-span-1 {
		grid-column: span 1 / span 1 !important;
	}

	.lg\:col-span-2 {
		grid-column: span 2 / span 2 !important;
	}

	.lg\:col-span-3 {
		grid-column: span 3 / span 3 !important;
	}

	.lg\:col-span-4 {
		grid-column: span 4 / span 4 !important;
	}

	.lg\:col-span-5 {
		grid-column: span 5 / span 5 !important;
	}

	.lg\:col-span-6 {
		grid-column: span 6 / span 6 !important;
	}

	.lg\:col-span-7 {
		grid-column: span 7 / span 7 !important;
	}

	.lg\:col-span-8 {
		grid-column: span 8 / span 8 !important;
	}

	.lg\:col-span-9 {
		grid-column: span 9 / span 9 !important;
	}

	.lg\:col-span-10 {
		grid-column: span 10 / span 10 !important;
	}

	.lg\:col-span-11 {
		grid-column: span 11 / span 11 !important;
	}

	.lg\:col-span-12 {
		grid-column: span 12 / span 12 !important;
	}

	.lg\:col-span-full {
		grid-column: 1 / -1 !important;
	}

	.lg\:col-start-1 {
		grid-column-start: 1 !important;
	}

	.lg\:col-start-2 {
		grid-column-start: 2 !important;
	}

	.lg\:col-start-3 {
		grid-column-start: 3 !important;
	}

	.lg\:col-start-4 {
		grid-column-start: 4 !important;
	}

	.lg\:col-start-5 {
		grid-column-start: 5 !important;
	}

	.lg\:col-start-6 {
		grid-column-start: 6 !important;
	}

	.lg\:col-start-7 {
		grid-column-start: 7 !important;
	}

	.lg\:col-start-8 {
		grid-column-start: 8 !important;
	}

	.lg\:col-start-9 {
		grid-column-start: 9 !important;
	}

	.lg\:col-start-10 {
		grid-column-start: 10 !important;
	}

	.lg\:col-start-11 {
		grid-column-start: 11 !important;
	}

	.lg\:col-start-12 {
		grid-column-start: 12 !important;
	}

	.lg\:col-start-13 {
		grid-column-start: 13 !important;
	}

	.lg\:col-start-auto {
		grid-column-start: auto !important;
	}

	.lg\:col-end-1 {
		grid-column-end: 1 !important;
	}

	.lg\:col-end-2 {
		grid-column-end: 2 !important;
	}

	.lg\:col-end-3 {
		grid-column-end: 3 !important;
	}

	.lg\:col-end-4 {
		grid-column-end: 4 !important;
	}

	.lg\:col-end-5 {
		grid-column-end: 5 !important;
	}

	.lg\:col-end-6 {
		grid-column-end: 6 !important;
	}

	.lg\:col-end-7 {
		grid-column-end: 7 !important;
	}

	.lg\:col-end-8 {
		grid-column-end: 8 !important;
	}

	.lg\:col-end-9 {
		grid-column-end: 9 !important;
	}

	.lg\:col-end-10 {
		grid-column-end: 10 !important;
	}

	.lg\:col-end-11 {
		grid-column-end: 11 !important;
	}

	.lg\:col-end-12 {
		grid-column-end: 12 !important;
	}

	.lg\:col-end-13 {
		grid-column-end: 13 !important;
	}

	.lg\:col-end-auto {
		grid-column-end: auto !important;
	}

	.lg\:row-auto {
		grid-row: auto !important;
	}

	.lg\:row-span-1 {
		grid-row: span 1 / span 1 !important;
	}

	.lg\:row-span-2 {
		grid-row: span 2 / span 2 !important;
	}

	.lg\:row-span-3 {
		grid-row: span 3 / span 3 !important;
	}

	.lg\:row-span-4 {
		grid-row: span 4 / span 4 !important;
	}

	.lg\:row-span-5 {
		grid-row: span 5 / span 5 !important;
	}

	.lg\:row-span-6 {
		grid-row: span 6 / span 6 !important;
	}

	.lg\:row-span-full {
		grid-row: 1 / -1 !important;
	}

	.lg\:row-start-1 {
		grid-row-start: 1 !important;
	}

	.lg\:row-start-2 {
		grid-row-start: 2 !important;
	}

	.lg\:row-start-3 {
		grid-row-start: 3 !important;
	}

	.lg\:row-start-4 {
		grid-row-start: 4 !important;
	}

	.lg\:row-start-5 {
		grid-row-start: 5 !important;
	}

	.lg\:row-start-6 {
		grid-row-start: 6 !important;
	}

	.lg\:row-start-7 {
		grid-row-start: 7 !important;
	}

	.lg\:row-start-auto {
		grid-row-start: auto !important;
	}

	.lg\:row-end-1 {
		grid-row-end: 1 !important;
	}

	.lg\:row-end-2 {
		grid-row-end: 2 !important;
	}

	.lg\:row-end-3 {
		grid-row-end: 3 !important;
	}

	.lg\:row-end-4 {
		grid-row-end: 4 !important;
	}

	.lg\:row-end-5 {
		grid-row-end: 5 !important;
	}

	.lg\:row-end-6 {
		grid-row-end: 6 !important;
	}

	.lg\:row-end-7 {
		grid-row-end: 7 !important;
	}

	.lg\:row-end-auto {
		grid-row-end: auto !important;
	}
}

/* #endregion lg */

/* #region lg, custom */
@media (min-width: 75em) {}

/* #endregion lg, custom */

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/justify.css?17228808424780*/
/*!
* Components/Justify
*/

/* #region sm */
.justify-start {
	justify-content: flex-start !important;
}

.justify-end {
	justify-content: flex-end !important;
}

.justify-center {
	justify-content: center !important;
}

.justify-between {
	justify-content: space-between !important;
}

.justify-around {
	justify-content: space-around !important;
}

.justify-evenly {
	justify-content: space-evenly !important;
}

.justify-items-start {
	justify-items: start !important;
}

.justify-items-end {
	justify-items: end !important;
}

.justify-items-center {
	justify-items: center !important;
}

.justify-items-stretch {
	justify-items: stretch !important;
}

.justify-self-auto {
	justify-self: auto !important;
}

.justify-self-start {
	justify-self: start !important;
}

.justify-self-end {
	justify-self: end !important;
}

.justify-self-center {
	justify-self: center !important;
}

.justify-self-stretch {
	justify-self: stretch !important;
}

/* #endregion sm */

/* #region sm, custom */
/* #endregion sm, custom */

/* #region sm */
@media (min-width: 37.5em) {
	.sm\:justify-start {
		justify-content: flex-start !important;
	}

	.sm\:justify-end {
		justify-content: flex-end !important;
	}

	.sm\:justify-center {
		justify-content: center !important;
	}

	.sm\:justify-between {
		justify-content: space-between !important;
	}

	.sm\:justify-around {
		justify-content: space-around !important;
	}

	.sm\:justify-evenly {
		justify-content: space-evenly !important;
	}

	.sm\:justify-items-start {
		justify-items: start !important;
	}

	.sm\:justify-items-end {
		justify-items: end !important;
	}

	.sm\:justify-items-center {
		justify-items: center !important;
	}

	.sm\:justify-items-stretch {
		justify-items: stretch !important;
	}

	.sm\:justify-self-auto {
		justify-self: auto !important;
	}

	.sm\:justify-self-start {
		justify-self: start !important;
	}

	.sm\:justify-self-end {
		justify-self: end !important;
	}

	.sm\:justify-self-center {
		justify-self: center !important;
	}

	.sm\:justify-self-stretch {
		justify-self: stretch !important;
	}
}

/* #endregion sm */

/* #region sm, custom */
@media (min-width: 37.5em) {}

/* #endregion sm, custom */

/* #region md */
@media (min-width: 52.5em) {
	.md\:justify-start {
		justify-content: flex-start !important;
	}

	.md\:justify-end {
		justify-content: flex-end !important;
	}

	.md\:justify-center {
		justify-content: center !important;
	}

	.md\:justify-between {
		justify-content: space-between !important;
	}

	.md\:justify-around {
		justify-content: space-around !important;
	}

	.md\:justify-evenly {
		justify-content: space-evenly !important;
	}

	.md\:justify-items-start {
		justify-items: start !important;
	}

	.md\:justify-items-end {
		justify-items: end !important;
	}

	.md\:justify-items-center {
		justify-items: center !important;
	}

	.md\:justify-items-stretch {
		justify-items: stretch !important;
	}

	.md\:justify-self-auto {
		justify-self: auto !important;
	}

	.md\:justify-self-start {
		justify-self: start !important;
	}

	.md\:justify-self-end {
		justify-self: end !important;
	}

	.md\:justify-self-center {
		justify-self: center !important;
	}

	.md\:justify-self-stretch {
		justify-self: stretch !important;
	}
}

/* #endregion md */

/* #region md, custom */
@media (min-width: 52.5em) {}

/* #endregion md, custom */

/* #region lg */
@media (min-width: 75em) {
	.lg\:justify-start {
		justify-content: flex-start !important;
	}

	.lg\:justify-end {
		justify-content: flex-end !important;
	}

	.lg\:justify-center {
		justify-content: center !important;
	}

	.lg\:justify-between {
		justify-content: space-between !important;
	}

	.lg\:justify-around {
		justify-content: space-around !important;
	}

	.lg\:justify-evenly {
		justify-content: space-evenly !important;
	}

	.lg\:justify-items-start {
		justify-items: start !important;
	}

	.lg\:justify-items-end {
		justify-items: end !important;
	}

	.lg\:justify-items-center {
		justify-items: center !important;
	}

	.lg\:justify-items-stretch {
		justify-items: stretch !important;
	}

	.lg\:justify-self-auto {
		justify-self: auto !important;
	}

	.lg\:justify-self-start {
		justify-self: start !important;
	}

	.lg\:justify-self-end {
		justify-self: end !important;
	}

	.lg\:justify-self-center {
		justify-self: center !important;
	}

	.lg\:justify-self-stretch {
		justify-self: stretch !important;
	}
}

/* #endregion lg */

/* #region lg, custom */
@media (min-width: 75em) {}

/* #endregion lg, custom */

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/order.css?17228809223423*/
/*!
 * Utilities/Order
 */

/* #region sm */
.order-1 {
	order: 1 !important;
}

.order-2 {
	order: 2 !important;
}

.order-3 {
	order: 3 !important;
}

.order-4 {
	order: 4 !important;
}

.order-5 {
	order: 5 !important;
}

.order-6 {
	order: 6 !important;
}

.order-7 {
	order: 7 !important;
}

.order-8 {
	order: 8 !important;
}

.order-9 {
	order: 9 !important;
}

.order-10 {
	order: 10 !important;
}

.order-11 {
	order: 11 !important;
}

.order-12 {
	order: 12 !important;
}

.order-last {
	order: 9999 !important;
}

.order-first {
	order: -9999 !important;
}

.order-none {
	order: 0 !important;
}

/* #endregion sm */

/* #region sm, custom */
/* #endregion sm, custom */

/* #region sm */
@media (min-width: 37.5em) {
	.sm\:order-1 {
		order: 1 !important;
	}

	.sm\:order-2 {
		order: 2 !important;
	}

	.sm\:order-3 {
		order: 3 !important;
	}

	.sm\:order-4 {
		order: 4 !important;
	}

	.sm\:order-5 {
		order: 5 !important;
	}

	.sm\:order-6 {
		order: 6 !important;
	}

	.sm\:order-7 {
		order: 7 !important;
	}

	.sm\:order-8 {
		order: 8 !important;
	}

	.sm\:order-9 {
		order: 9 !important;
	}

	.sm\:order-10 {
		order: 10 !important;
	}

	.sm\:order-11 {
		order: 11 !important;
	}

	.sm\:order-12 {
		order: 12 !important;
	}

	.sm\:order-last {
		order: 9999 !important;
	}

	.sm\:order-first {
		order: -9999 !important;
	}

	.sm\:order-none {
		order: 0 !important;
	}
}

/* #endregion sm */

/* #region sm, custom */
@media (min-width: 37.5em) {}

/* #endregion sm, custom */

/* #region md */
@media (min-width: 52.5em) {
	.md\:order-1 {
		order: 1 !important;
	}

	.md\:order-2 {
		order: 2 !important;
	}

	.md\:order-3 {
		order: 3 !important;
	}

	.md\:order-4 {
		order: 4 !important;
	}

	.md\:order-5 {
		order: 5 !important;
	}

	.md\:order-6 {
		order: 6 !important;
	}

	.md\:order-7 {
		order: 7 !important;
	}

	.md\:order-8 {
		order: 8 !important;
	}

	.md\:order-9 {
		order: 9 !important;
	}

	.md\:order-10 {
		order: 10 !important;
	}

	.md\:order-11 {
		order: 11 !important;
	}

	.md\:order-12 {
		order: 12 !important;
	}

	.md\:order-last {
		order: 9999 !important;
	}

	.md\:order-first {
		order: -9999 !important;
	}

	.md\:order-none {
		order: 0 !important;
	}
}

/* #endregion md */

/* #region md, custom */
@media (min-width: 52.5em) {}

/* #endregion md, custom */

/* #region lg */
@media (min-width: 75em) {
	.lg\:order-1 {
		order: 1 !important;
	}

	.lg\:order-2 {
		order: 2 !important;
	}

	.lg\:order-3 {
		order: 3 !important;
	}

	.lg\:order-4 {
		order: 4 !important;
	}

	.lg\:order-5 {
		order: 5 !important;
	}

	.lg\:order-6 {
		order: 6 !important;
	}

	.lg\:order-7 {
		order: 7 !important;
	}

	.lg\:order-8 {
		order: 8 !important;
	}

	.lg\:order-9 {
		order: 9 !important;
	}

	.lg\:order-10 {
		order: 10 !important;
	}

	.lg\:order-11 {
		order: 11 !important;
	}

	.lg\:order-12 {
		order: 12 !important;
	}

	.lg\:order-last {
		order: 9999 !important;
	}

	.lg\:order-first {
		order: -9999 !important;
	}

	.lg\:order-none {
		order: 0 !important;
	}
}

/* #endregion lg */

/* #region lg, custom */
@media (min-width: 75em) {}

/* #endregion lg, custom */

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/opacity.css?1722847702572*/
/*!
 * Utilities/Opacity
 */

.opacity-0 {
	opacity: 0 !important;
}

.opacity-10 {
	opacity: 0.1 !important;
}

.opacity-16 {
	opacity: 0.16 !important;
}

.opacity-20 {
	opacity: 0.2 !important;
}

.opacity-25 {
	opacity: 0.25 !important;
}

.opacity-40 {
	opacity: 0.4 !important;
}

.opacity-50 {
	opacity: 0.5 !important;
}

.opacity-75 {
	opacity: 0.75 !important;
}

.opacity-80 {
	opacity: 0.8 !important;
}

.opacity-100 {
	opacity: 1 !important;
}

.group:hover .group-hover\:opacity-100 {
	opacity: 1!important;
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/overflow.css?17228809924380*/
/*!
* Utilities/Overflow
*/

/* #region sm */
.overflow-auto {
	overflow: auto !important;
}

.overflow-hidden {
	overflow: hidden !important;
}

.overflow-clip {
	overflow: clip !important;
}

.overflow-visible {
	overflow: visible !important;
}

.overflow-scroll {
	overflow: scroll !important;
}

.overflow-x-auto {
	overflow-x: auto !important;
}

.overflow-y-auto {
	overflow-y: auto !important;
}

.overflow-x-hidden {
	overflow-x: hidden !important;
}

.overflow-y-hidden {
	overflow-y: hidden !important;
}

.overflow-x-clip {
	overflow-x: clip !important;
}

.overflow-y-clip {
	overflow-y: clip !important;
}

.overflow-x-visible {
	overflow-x: visible !important;
}

.overflow-y-visible {
	overflow-y: visible !important;
}

.overflow-x-scroll {
	overflow-x: scroll !important;
}

.overflow-y-scroll {
	overflow-y: scroll !important;
}

/* #endregion sm */

/* #region sm, custom */
/* #endregion sm, custom */

/* #region sm */
@media (min-width: 37.5em) {
	.sm\:overflow-auto {
		overflow: auto !important;
	}

	.sm\:overflow-hidden {
		overflow: hidden !important;
	}

	.sm\:overflow-clip {
		overflow: clip !important;
	}

	.sm\:overflow-visible {
		overflow: visible !important;
	}

	.sm\:overflow-scroll {
		overflow: scroll !important;
	}

	.sm\:overflow-x-auto {
		overflow-x: auto !important;
	}

	.sm\:overflow-y-auto {
		overflow-y: auto !important;
	}

	.sm\:overflow-x-hidden {
		overflow-x: hidden !important;
	}

	.sm\:overflow-y-hidden {
		overflow-y: hidden !important;
	}

	.sm\:overflow-x-clip {
		overflow-x: clip !important;
	}

	.sm\:overflow-y-clip {
		overflow-y: clip !important;
	}

	.sm\:overflow-x-visible {
		overflow-x: visible !important;
	}

	.sm\:overflow-y-visible {
		overflow-y: visible !important;
	}

	.sm\:overflow-x-scroll {
		overflow-x: scroll !important;
	}

	.sm\:overflow-y-scroll {
		overflow-y: scroll !important;
	}
}

/* #endregion sm */

/* #region sm, custom */
@media (min-width: 37.5em) {}

/* #endregion sm, custom */

/* #region md */
@media (min-width: 52.5em) {
	.md\:overflow-auto {
		overflow: auto !important;
	}

	.md\:overflow-hidden {
		overflow: hidden !important;
	}

	.md\:overflow-clip {
		overflow: clip !important;
	}

	.md\:overflow-visible {
		overflow: visible !important;
	}

	.md\:overflow-scroll {
		overflow: scroll !important;
	}

	.md\:overflow-x-auto {
		overflow-x: auto !important;
	}

	.md\:overflow-y-auto {
		overflow-y: auto !important;
	}

	.md\:overflow-x-hidden {
		overflow-x: hidden !important;
	}

	.md\:overflow-y-hidden {
		overflow-y: hidden !important;
	}

	.md\:overflow-x-clip {
		overflow-x: clip !important;
	}

	.md\:overflow-y-clip {
		overflow-y: clip !important;
	}

	.md\:overflow-x-visible {
		overflow-x: visible !important;
	}

	.md\:overflow-y-visible {
		overflow-y: visible !important;
	}

	.md\:overflow-x-scroll {
		overflow-x: scroll !important;
	}

	.md\:overflow-y-scroll {
		overflow-y: scroll !important;
	}
}

/* #endregion md */

/* #region md, custom */
@media (min-width: 52.5em) {}

/* #endregion md, custom */

/* #region lg */
@media (min-width: 75em) {
	.lg\:overflow-auto {
		overflow: auto !important;
	}

	.lg\:overflow-hidden {
		overflow: hidden !important;
	}

	.lg\:overflow-clip {
		overflow: clip !important;
	}

	.lg\:overflow-visible {
		overflow: visible !important;
	}

	.lg\:overflow-scroll {
		overflow: scroll !important;
	}

	.lg\:overflow-x-auto {
		overflow-x: auto !important;
	}

	.lg\:overflow-y-auto {
		overflow-y: auto !important;
	}

	.lg\:overflow-x-hidden {
		overflow-x: hidden !important;
	}

	.lg\:overflow-y-hidden {
		overflow-y: hidden !important;
	}

	.lg\:overflow-x-clip {
		overflow-x: clip !important;
	}

	.lg\:overflow-y-clip {
		overflow-y: clip !important;
	}

	.lg\:overflow-x-visible {
		overflow-x: visible !important;
	}

	.lg\:overflow-y-visible {
		overflow-y: visible !important;
	}

	.lg\:overflow-x-scroll {
		overflow-x: scroll !important;
	}

	.lg\:overflow-y-scroll {
		overflow-y: scroll !important;
	}
}

/* #endregion lg */

/* #region lg, custom */
@media (min-width: 75em) {}

/* #endregion lg, custom */

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/placement.css?17228811666314*/
/*!
* Utilities/Placement
*/

/* #region sm */
.inset-0 {
	bottom: 0 !important;
	left: 0 !important;
	right: 0 !important;
	top: 0 !important;
}

.inset-x-0 {
	left: 0 !important;
	right: 0 !important;
}

.inset-y-0 {
	bottom: 0 !important;
	top: 0 !important;
}

.bottom-0 {
	bottom: 0 !important;
}

.left-0 {
	left: 0 !important;
}

.right-0 {
	right: 0 !important;
}

.top-0 {
	top: 0 !important;
}

.inset-auto {
	bottom: auto !important;
	left: auto !important;
	right: auto !important;
	top: auto !important;
}

.inset-x-auto {
	left: auto !important;
	right: auto !important;
}

.inset-y-auto {
	bottom: auto !important;
	top: auto !important;
}

.bottom-auto {
	bottom: auto !important;
}

.left-auto {
	left: auto !important;
}

.right-auto {
	right: auto !important;
}

.top-auto {
	top: auto !important;
}

.inset-full {
	bottom: 100% !important;
	left: 100% !important;
	right: 100% !important;
	top: 100% !important;
}

.inset-x-full {
	left: 100% !important;
	right: 100% !important;
}

.inset-y-full {
	bottom: 100% !important;
	top: 100% !important;
}

.bottom-full {
	bottom: 100% !important;
}

.left-full {
	left: 100% !important;
}

.right-full {
	right: 100% !important;
}

.top-full {
	top: 100% !important;
}

/* #endregion sm */

/* #region sm, custom */
.left-1\/2 {
	left: 50%;
}

.top-1\/2 {
	top: 50%;
}

/* #endregion sm, custom */

/* #region sm */
@media (min-width: 37.5em) {
	.sm\:inset-0 {
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		top: 0 !important;
	}

	.sm\:inset-x-0 {
		left: 0 !important;
		right: 0 !important;
	}

	.sm\:inset-y-0 {
		bottom: 0 !important;
		top: 0 !important;
	}

	.sm\:bottom-0 {
		bottom: 0 !important;
	}

	.sm\:left-0 {
		left: 0 !important;
	}

	.sm\:right-0 {
		right: 0 !important;
	}

	.sm\:top-0 {
		top: 0 !important;
	}

	.sm\:inset-auto {
		bottom: auto !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
	}

	.sm\:inset-x-auto {
		left: auto !important;
		right: auto !important;
	}

	.sm\:inset-y-auto {
		bottom: auto !important;
		top: auto !important;
	}

	.sm\:bottom-auto {
		bottom: auto !important;
	}

	.sm\:left-auto {
		left: auto !important;
	}

	.sm\:right-auto {
		right: auto !important;
	}

	.sm\:top-auto {
		top: auto !important;
	}

	.sm\:inset-full {
		bottom: 100% !important;
		left: 100% !important;
		right: 100% !important;
		top: 100% !important;
	}

	.sm\:inset-x-full {
		left: 100% !important;
		right: 100% !important;
	}

	.sm\:inset-y-full {
		bottom: 100% !important;
		top: 100% !important;
	}

	.sm\:bottom-full {
		bottom: 100% !important;
	}

	.sm\:left-full {
		left: 100% !important;
	}

	.sm\:right-full {
		right: 100% !important;
	}

	.sm\:top-full {
		top: 100% !important;
	}
}

/* #endregion sm */

/* #region sm, custom */
@media (min-width: 37.5em) {}

/* #endregion sm, custom */

/* #region md */
@media (min-width: 52.5em) {
	.md\:inset-0 {
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		top: 0 !important;
	}

	.md\:inset-x-0 {
		left: 0 !important;
		right: 0 !important;
	}

	.md\:inset-y-0 {
		bottom: 0 !important;
		top: 0 !important;
	}

	.md\:bottom-0 {
		bottom: 0 !important;
	}

	.md\:left-0 {
		left: 0 !important;
	}

	.md\:right-0 {
		right: 0 !important;
	}

	.md\:top-0 {
		top: 0 !important;
	}

	.md\:inset-auto {
		bottom: auto !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
	}

	.md\:inset-x-auto {
		left: auto !important;
		right: auto !important;
	}

	.md\:inset-y-auto {
		bottom: auto !important;
		top: auto !important;
	}

	.md\:bottom-auto {
		bottom: auto !important;
	}

	.md\:left-auto {
		left: auto !important;
	}

	.md\:right-auto {
		right: auto !important;
	}

	.md\:top-auto {
		top: auto !important;
	}

	.md\:inset-full {
		bottom: 100% !important;
		left: 100% !important;
		right: 100% !important;
		top: 100% !important;
	}

	.md\:inset-x-full {
		left: 100% !important;
		right: 100% !important;
	}

	.md\:inset-y-full {
		bottom: 100% !important;
		top: 100% !important;
	}

	.md\:bottom-full {
		bottom: 100% !important;
	}

	.md\:left-full {
		left: 100% !important;
	}

	.md\:right-full {
		right: 100% !important;
	}

	.md\:top-full {
		top: 100% !important;
	}
}

/* #endregion md */

/* #region md, custom */
@media (min-width: 52.5em) {}

/* #endregion md, custom */

/* #region lg */
@media (min-width: 75em) {
	.lg\:inset-0 {
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		top: 0 !important;
	}

	.lg\:inset-x-0 {
		left: 0 !important;
		right: 0 !important;
	}

	.lg\:inset-y-0 {
		bottom: 0 !important;
		top: 0 !important;
	}

	.lg\:bottom-0 {
		bottom: 0 !important;
	}

	.lg\:left-0 {
		left: 0 !important;
	}

	.lg\:right-0 {
		right: 0 !important;
	}

	.lg\:top-0 {
		top: 0 !important;
	}

	.lg\:inset-auto {
		bottom: auto !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
	}

	.lg\:inset-x-auto {
		left: auto !important;
		right: auto !important;
	}

	.lg\:inset-y-auto {
		bottom: auto !important;
		top: auto !important;
	}

	.lg\:bottom-auto {
		bottom: auto !important;
	}

	.lg\:left-auto {
		left: auto !important;
	}

	.lg\:right-auto {
		right: auto !important;
	}

	.lg\:top-auto {
		top: auto !important;
	}

	.lg\:inset-full {
		bottom: 100% !important;
		left: 100% !important;
		right: 100% !important;
		top: 100% !important;
	}

	.lg\:inset-x-full {
		left: 100% !important;
		right: 100% !important;
	}

	.lg\:inset-y-full {
		bottom: 100% !important;
		top: 100% !important;
	}

	.lg\:bottom-full {
		bottom: 100% !important;
	}

	.lg\:left-full {
		left: 100% !important;
	}

	.lg\:right-full {
		right: 100% !important;
	}

	.lg\:top-full {
		top: 100% !important;
	}
}

/* #endregion lg */

/* #region lg, custom */
@media (min-width: 75em) {}

/* #endregion lg, custom */

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/position.css?17228812041688*/
/*!
 * Utilities/Position
 */

/* #region sm */
.static {
	position: static !important;
}

.relative {
	position: relative !important;
}

.absolute {
	position: absolute !important;
}

.fixed {
	position: fixed !important;
}

.sticky {
	position: sticky !important;
}

/* #endregion sm */

/* #region sm, custom */
/* #endregion sm, custom */

/* #region sm */
@media (min-width: 37.5em) {
	.sm\:static {
		position: static !important;
	}

	.sm\:relative {
		position: relative !important;
	}

	.sm\:absolute {
		position: absolute !important;
	}

	.sm\:fixed {
		position: fixed !important;
	}

	.sm\:sticky {
		position: sticky !important;
	}
}

/* #endregion sm */

/* #region sm, custom */
@media (min-width: 37.5em) {}

/* #endregion sm, custom */

/* #region md */
@media (min-width: 52.5em) {
	.md\:static {
		position: static !important;
	}

	.md\:relative {
		position: relative !important;
	}

	.md\:absolute {
		position: absolute !important;
	}

	.md\:fixed {
		position: fixed !important;
	}

	.md\:sticky {
		position: sticky !important;
	}
}

/* #endregion md */

/* #region md, custom */
@media (min-width: 52.5em) {}

/* #endregion md, custom */

/* #region lg */
@media (min-width: 75em) {
	.lg\:static {
		position: static !important;
	}

	.lg\:relative {
		position: relative !important;
	}

	.lg\:absolute {
		position: absolute !important;
	}

	.lg\:fixed {
		position: fixed !important;
	}

	.lg\:sticky {
		position: sticky !important;
	}
}

/* #endregion lg */

/* #region lg, custom */
@media (min-width: 75em) {}

/* #endregion lg, custom */

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/rounded.css?17265088487718*/
/*!
 * Utilities/Rounded
 */

.rounded-none {
	border-radius: var(--x-sys-shape-corner-none, 0) !important;
}

.rounded-x-small {
	border-radius: var(--x-sys-shape-corner-x-small, 0.25rem) !important;
}

.rounded-small {
	border-radius: var(--x-sys-shape-corner-small, 0.5rem) !important;
}

.rounded-medium {
	border-radius: var(--x-sys-shape-corner-medium) !important;
}

.rounded-large {
	border-radius: var(--x-sys-shape-corner-large, 1rem) !important;
}

.rounded-x-large {
	border-radius: var(--x-sys-shape-corner-x-large, 1.75rem) !important;
}

.rounded-full {
	border-radius: var(--x-sys-shape-corner-full, 999rem) !important;
}

.rounded-t-none {
	border-start-end-radius: var(--x-sys-shape-corner-none, 0) !important;
	border-start-start-radius: var(--x-sys-shape-corner-none, 0) !important;
}

.rounded-t-x-small {
	border-start-end-radius: var(--x-sys-shape-corner-x-small, 0.25rem) !important;
	border-start-start-radius: var(--x-sys-shape-corner-x-small, 0.25rem) !important;
}

.rounded-t-small {
	border-start-end-radius: var(--x-sys-shape-corner-small, 0.5rem) !important;
	border-start-start-radius: var(--x-sys-shape-corner-small, 0.5rem) !important;
}

.rounded-t-medium {
	border-start-end-radius: var(--x-sys-shape-corner-medium) !important;
	border-start-start-radius: var(--x-sys-shape-corner-medium) !important;
}

.rounded-t-large {
	border-start-end-radius: var(--x-sys-shape-corner-large, 1rem) !important;
	border-start-start-radius: var(--x-sys-shape-corner-large, 1rem) !important;
}

.rounded-t-x-large {
	border-start-end-radius: var(--x-sys-shape-corner-x-large, 1.75rem) !important;
	border-start-start-radius: var(--x-sys-shape-corner-x-large, 1.75rem) !important;
}

.rounded-e-none {
	border-start-end-radius: var(--x-sys-shape-corner-none, 0) !important;
	border-end-end-radius: var(--x-sys-shape-corner-none, 0) !important;
}

.rounded-e-x-small {
	border-start-end-radius: var(--x-sys-shape-corner-x-small, 0.25rem) !important;
	border-end-end-radius: var(--x-sys-shape-corner-x-small,
			0.25rem) !important;
}

.rounded-e-small {
	border-start-end-radius: var(--x-sys-shape-corner-small, 0.5rem) !important;
	border-end-end-radius: var(--x-sys-shape-corner-small, 0.5rem) !important;
}

.rounded-e-medium {
	border-start-end-radius: var(--x-sys-shape-corner-medium) !important;
	border-end-end-radius: var(--x-sys-shape-corner-medium,
			0.75rem) !important;
}

.rounded-e-large {
	border-start-end-radius: var(--x-sys-shape-corner-large, 1rem) !important;
	border-end-end-radius: var(--x-sys-shape-corner-large, 1rem) !important;
}

.rounded-e-x-large {
	border-start-end-radius: var(--x-sys-shape-corner-x-large, 1.75rem) !important;
	border-end-end-radius: var(--x-sys-shape-corner-x-large,
			1.75rem) !important;
}

.rounded-b-none {
	border-end-end-radius: var(--x-sys-shape-corner-none, 0) !important;
	border-end-start-radius: var(--x-sys-shape-corner-none, 0) !important;
}

.rounded-b-x-small {
	border-end-end-radius: var(--x-sys-shape-corner-x-small,
			0.25rem) !important;
	border-end-start-radius: var(--x-sys-shape-corner-x-small,
			0.25rem) !important;
}

.rounded-b-small {
	border-end-end-radius: var(--x-sys-shape-corner-small, 0.5rem) !important;
	border-end-start-radius: var(--x-sys-shape-corner-small, 0.5rem) !important;
}

.rounded-b-medium {
	border-end-end-radius: var(--x-sys-shape-corner-medium,
			0.75rem) !important;
	border-end-start-radius: var(--x-sys-shape-corner-medium) !important;
}

.rounded-b-large {
	border-end-end-radius: var(--x-sys-shape-corner-large, 1rem) !important;
	border-end-start-radius: var(--x-sys-shape-corner-large, 1rem) !important;
}

.rounded-b-x-large {
	border-end-end-radius: var(--x-sys-shape-corner-x-large,
			1.75rem) !important;
	border-end-start-radius: var(--x-sys-shape-corner-x-large,
			1.75rem) !important;
}

.rounded-s-none {
	border-start-start-radius: var(--x-sys-shape-corner-none, 0) !important;
	border-end-start-radius: var(--x-sys-shape-corner-none, 0) !important;
}

.rounded-s-x-small {
	border-start-start-radius: var(--x-sys-shape-corner-x-small, 0.25rem) !important;
	border-end-start-radius: var(--x-sys-shape-corner-x-small,
			0.25rem) !important;
}

.rounded-s-small {
	border-start-start-radius: var(--x-sys-shape-corner-small, 0.5rem) !important;
	border-end-start-radius: var(--x-sys-shape-corner-small, 0.5rem) !important;
}

.rounded-s-medium {
	border-start-start-radius: var(--x-sys-shape-corner-medium) !important;
	border-end-start-radius: var(--x-sys-shape-corner-medium) !important;
}

.rounded-s-large {
	border-start-start-radius: var(--x-sys-shape-corner-large, 1rem) !important;
	border-end-start-radius: var(--x-sys-shape-corner-large, 1rem) !important;
}

.rounded-s-x-large {
	border-start-start-radius: var(--x-sys-shape-corner-x-large, 1.75rem) !important;
	border-end-start-radius: var(--x-sys-shape-corner-x-large,
			1.75rem) !important;
}

.rounded-ts-none {
	border-start-start-radius: var(--x-sys-shape-corner-none, 0) !important;
}

.rounded-ts-x-small {
	border-start-start-radius: var(--x-sys-shape-corner-x-small, 0.25rem) !important;
}

.rounded-ts-small {
	border-start-start-radius: var(--x-sys-shape-corner-small, 0.5rem) !important;
}

.rounded-ts-medium {
	border-start-start-radius: var(--x-sys-shape-corner-medium) !important;
}

.rounded-ts-large {
	border-start-start-radius: var(--x-sys-shape-corner-large, 1rem) !important;
}

.rounded-ts-x-large {
	border-start-start-radius: var(--x-sys-shape-corner-x-large, 1.75rem) !important;
}

.rounded-te-none {
	border-start-end-radius: var(--x-sys-shape-corner-none, 0) !important;
}

.rounded-te-x-small {
	border-start-end-radius: var(--x-sys-shape-corner-x-small, 0.25rem) !important;
}

.rounded-te-small {
	border-start-end-radius: var(--x-sys-shape-corner-small, 0.5rem) !important;
}

.rounded-te-medium {
	border-start-end-radius: var(--x-sys-shape-corner-medium) !important;
}

.rounded-te-large {
	border-start-end-radius: var(--x-sys-shape-corner-large, 1rem) !important;
}

.rounded-te-x-large {
	border-start-end-radius: var(--x-sys-shape-corner-x-large, 1.75rem) !important;
}

.rounded-bs-none {
	border-end-start-radius: var(--x-sys-shape-corner-none, 0) !important;
}

.rounded-bs-x-small {
	border-end-start-radius: var(--x-sys-shape-corner-x-small,
			0.25rem) !important;
}

.rounded-bs-small {
	border-end-start-radius: var(--x-sys-shape-corner-small, 0.5rem) !important;
}

.rounded-bs-medium {
	border-end-start-radius: var(--x-sys-shape-corner-medium) !important;
}

.rounded-bs-large {
	border-end-start-radius: var(--x-sys-shape-corner-large, 1rem) !important;
}

.rounded-bs-x-large {
	border-end-start-radius: var(--x-sys-shape-corner-x-large,
			1.75rem) !important;
}

.rounded-be-none {
	border-end-end-radius: var(--x-sys-shape-corner-none, 0) !important;
}

.rounded-be-x-small {
	border-end-end-radius: var(--x-sys-shape-corner-x-small,
			0.25rem) !important;
}

.rounded-be-small {
	border-end-end-radius: var(--x-sys-shape-corner-small, 0.5rem) !important;
}

.rounded-be-medium {
	border-end-end-radius: var(--x-sys-shape-corner-medium,
			0.75rem) !important;
}

.rounded-be-large {
	border-end-end-radius: var(--x-sys-shape-corner-large, 1rem) !important;
}

.rounded-be-x-large {
	border-end-end-radius: var(--x-sys-shape-corner-x-large,
			1.75rem) !important;
}

@media (min-width: 37.5em) {
	.sm\:rounded-medium {
		border-radius: var(--x-sys-shape-corner-medium) !important;
	}
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/sizing.css?173891245110299*/
/* #region xs */
.h-0 {
	height: 0 !important;
}

.h-auto {
	height: auto !important;
}

.h-full {
	height: 100% !important;
}

.h-screen {
	height: 100vh !important;
}

.h-min {
	height: min-content !important;
}

.h-max {
	height: max-content !important;
}

.h-fit {
	height: fit-content !important;
}

.min-h-0 {
	min-height: 0 !important;
}

.min-h-full {
	min-height: 100% !important;
}

.min-h-screen {
	min-height: 100vh !important;
}

.min-h-min {
	min-height: min-content !important;
}

.min-h-max {
	min-height: max-content !important;
}

.min-h-fit {
	min-height: fit-content !important;
}

.max-h-0 {
	max-height: 0 !important;
}

.max-h-full {
	max-height: 100% !important;
}

.max-h-screen {
	max-height: 100vh !important;
}

.max-h-min {
	max-height: min-content !important;
}

.max-h-max {
	max-height: max-content !important;
}

.max-h-fit {
	max-height: fit-content !important;
}

.w-0 {
	width: 0 !important;
}

.w-auto {
	width: auto !important;
}

.w-full {
	width: 100% !important;
}

.w-screen {
	width: 100vw !important;
}

.w-min {
	width: min-content !important;
}

.w-max {
	width: max-content !important;
}

.w-fit {
	width: fit-content !important;
}

.min-w-0 {
	min-width: 0 !important;
}

.min-w-full {
	min-width: 100% !important;
}

.min-w-screen {
	min-width: 100vw !important;
}

.min-w-min {
	min-width: min-content !important;
}

.min-w-max {
	min-width: max-content !important;
}

.min-w-fit {
	min-width: fit-content !important;
}

.max-w-0 {
	max-width: 0 !important;
}

.max-w-full {
	max-width: 100% !important;
}

.max-w-screen {
	max-width: 100vw !important;
}

.max-w-min {
	max-width: min-content !important;
}

.max-w-max {
	max-width: max-content !important;
}

.max-w-fit {
	max-width: fit-content !important;
}

/* #endregion xs */

/* #region xs, custom */
.h-\[3\.5rem\] {
	height: 3.5rem !important;
}

.h-\[3rem\] {
	height: 3rem !important;
}

.h-\[5rem\] {
	height: 5rem !important;
}

.h-\[20rem\] {
	height: 20rem !important;
}

.h-\[25rem\] {
	height: 25rem !important;
}

.\[\&\>\*\]\:h-full > * {
	height: 100% !important;
}

.min-h-\[12\.5rem\] {
	min-height: 12.5rem !important;
}

.min-h-\[27\.5rem\] {
	min-height: 27.5rem !important;
}

.max-h-\[50vh\] {
	max-height: 50vh !important;
}

.w-\[1\.25rem\] {
	width: 1.25rem !important;
}

.w-\[3rem\] {
	width: 3rem !important;
}

.w-\[5\.5rem\] {
	width: 5.5rem !important;
}

.w-\[8rem\] {
	width: 8rem !important;
}

.w-\[10rem\] {
	width: 10rem !important;
}

.w-\[13\.625rem\] {
	width: 13.625rem !important;
}

.w-\[15rem\] {
	width: 15rem !important;
}

.w-\[20rem\] {
	width: 20rem !important;
}

.\[\&\>\*\]\:w-full > * {
	width: 100% !important;
}

.max-w-\[20rem\] {
	max-width: 20rem !important;
}

.max-w-\[25rem\] {
	max-width: 25rem !important;
}

.max-w-\[47\.5rem\] {
	max-width: 47.5rem !important;
}

/* #endregion xs, custom */

/* #region sm */
@media (min-width: 37.5em) {
	.sm\:h-0 {
		height: 0 !important;
	}

	.sm\:h-full {
		height: 100% !important;
	}

	.sm\:h-screen {
		height: 100vh !important;
	}

	.sm\:h-min {
		height: min-content !important;
	}

	.sm\:h-max {
		height: max-content !important;
	}

	.sm\:h-fit {
		height: fit-content !important;
	}

	.sm\:min-h-0 {
		min-height: 0 !important;
	}

	.sm\:min-h-full {
		min-height: 100% !important;
	}

	.sm\:min-h-screen {
		min-height: 100vh !important;
	}

	.sm\:min-h-min {
		min-height: min-content !important;
	}

	.sm\:min-h-max {
		min-height: max-content !important;
	}

	.sm\:min-h-fit {
		min-height: fit-content !important;
	}

	.sm\:max-h-0 {
		max-height: 0 !important;
	}

	.sm\:max-h-full {
		max-height: 100% !important;
	}

	.sm\:max-h-screen {
		max-height: 100vh !important;
	}

	.sm\:max-h-min {
		max-height: min-content !important;
	}

	.sm\:max-h-max {
		max-height: max-content !important;
	}

	.sm\:max-h-fit {
		max-height: fit-content !important;
	}

	.sm\:w-0 {
		width: 0 !important;
	}

	.sm\:w-auto {
		width: auto !important;
	}

	.sm\:w-full {
		width: 100% !important;
	}

	.sm\:w-screen {
		width: 100vw !important;
	}

	.sm\:w-min {
		width: min-content !important;
	}

	.sm\:w-max {
		width: max-content !important;
	}

	.sm\:w-fit {
		width: fit-content !important;
	}

	.sm\:min-w-0 {
		min-width: 0 !important;
	}

	.sm\:min-w-full {
		min-width: 100% !important;
	}

	.sm\:min-w-screen {
		min-width: 100vw !important;
	}

	.sm\:min-w-min {
		min-width: min-content !important;
	}

	.sm\:min-w-max {
		min-width: max-content !important;
	}

	.sm\:min-w-fit {
		min-width: fit-content !important;
	}

	.sm\:max-w-0 {
		max-width: 0 !important;
	}

	.sm\:max-w-full {
		max-width: 100% !important;
	}

	.sm\:max-w-screen {
		max-width: 100vw !important;
	}

	.sm\:max-w-min {
		max-width: min-content !important;
	}

	.sm\:max-w-max {
		max-width: max-content !important;
	}

	.sm\:max-w-fit {
		max-width: fit-content !important;
	}
}

/* #endregion sm */

/* #region sm, custom */
@media (min-width: 37.5em) {
	.sm\:max-w-\[20rem\] {
		max-width: 20rem !important;
	}

	.sm\:max-w-\[calc\(100\%-\(1\.5rem\*2\)\)\] {
		max-width: calc(100% - (1.5rem * 2)) !important;
	}

	.sm\:max-h-\[calc\(100\%-\(1\.5rem\*2\)\)\] {
		max-height: calc(100% - (1.5rem * 2)) !important;
	}
}

/* #endregion sm, custom */

/* #region md */
@media (min-width: 52.5em) {
	.md\:h-0 {
		height: 0 !important;
	}

	.md\:h-full {
		height: 100% !important;
	}

	.md\:h-screen {
		height: 100vh !important;
	}

	.md\:h-min {
		height: min-content !important;
	}

	.md\:h-max {
		height: max-content !important;
	}

	.md\:h-fit {
		height: fit-content !important;
	}

	.md\:min-h-0 {
		min-height: 0 !important;
	}

	.md\:min-h-full {
		min-height: 100% !important;
	}

	.md\:min-h-screen {
		min-height: 100vh !important;
	}

	.md\:min-h-min {
		min-height: min-content !important;
	}

	.md\:min-h-max {
		min-height: max-content !important;
	}

	.md\:min-h-fit {
		min-height: fit-content !important;
	}

	.md\:max-h-0 {
		max-height: 0 !important;
	}

	.md\:max-h-full {
		max-height: 100% !important;
	}

	.md\:max-h-screen {
		max-height: 100vh !important;
	}

	.md\:max-h-min {
		max-height: min-content !important;
	}

	.md\:max-h-max {
		max-height: max-content !important;
	}

	.md\:max-h-fit {
		max-height: fit-content !important;
	}

	.md\:w-0 {
		width: 0 !important;
	}

	.md\:w-auto {
		width: auto !important;
	}

	.md\:w-full {
		width: 100% !important;
	}

	.md\:w-screen {
		width: 100vw !important;
	}

	.md\:w-min {
		width: min-content !important;
	}

	.md\:w-max {
		width: max-content !important;
	}

	.md\:w-fit {
		width: fit-content !important;
	}

	.md\:min-w-0 {
		min-width: 0 !important;
	}

	.md\:min-w-full {
		min-width: 100% !important;
	}

	.md\:min-w-screen {
		min-width: 100vw !important;
	}

	.md\:min-w-min {
		min-width: min-content !important;
	}

	.md\:min-w-max {
		min-width: max-content !important;
	}

	.md\:min-w-fit {
		min-width: fit-content !important;
	}

	.md\:max-w-0 {
		max-width: 0 !important;
	}

	.md\:max-w-full {
		max-width: 100% !important;
	}

	.md\:max-w-screen {
		max-width: 100vw !important;
	}

	.md\:max-w-min {
		max-width: min-content !important;
	}

	.md\:max-w-max {
		max-width: max-content !important;
	}

	.md\:max-w-fit {
		max-width: fit-content !important;
	}
}

/* #endregion md */

/* #region md, custom */
@media (min-width: 52.5em) {
	.md\:w-\[11\.25rem\] {
		width: 11.25rem !important;
	}

	.md\:max-w-\[22\.5rem\] {
		max-width: 22.5rem !important;
	}

	.md\:max-w-\[calc\(45rem-\(1\.5rem\*2\)\)\] {
		max-width: calc(45rem - (1.5rem * 2)) !important;
	}
}

/* #endregion md, custom */

/* #region lg */
@media (min-width: 75em) {
	.lg\:h-0 {
		height: 0 !important;
	}

	.lg\:h-full {
		height: 100% !important;
	}

	.lg\:h-screen {
		height: 100vh !important;
	}

	.lg\:h-min {
		height: min-content !important;
	}

	.lg\:h-max {
		height: max-content !important;
	}

	.lg\:h-fit {
		height: fit-content !important;
	}

	.lg\:min-h-0 {
		min-height: 0 !important;
	}

	.lg\:min-h-full {
		min-height: 100% !important;
	}

	.lg\:min-h-screen {
		min-height: 100vh !important;
	}

	.lg\:min-h-min {
		min-height: min-content !important;
	}

	.lg\:min-h-max {
		min-height: max-content !important;
	}

	.lg\:min-h-fit {
		min-height: fit-content !important;
	}

	.lg\:max-h-0 {
		max-height: 0 !important;
	}

	.lg\:max-h-full {
		max-height: 100% !important;
	}

	.lg\:max-h-screen {
		max-height: 100vh !important;
	}

	.lg\:max-h-min {
		max-height: min-content !important;
	}

	.lg\:max-h-max {
		max-height: max-content !important;
	}

	.lg\:max-h-fit {
		max-height: fit-content !important;
	}

	.lg\:w-0 {
		width: 0 !important;
	}

	.lg\:w-auto {
		width: auto !important;
	}

	.lg\:w-full {
		width: 100% !important;
	}

	.lg\:w-screen {
		width: 100vw !important;
	}

	.lg\:w-min {
		width: min-content !important;
	}

	.lg\:w-max {
		width: max-content !important;
	}

	.lg\:w-fit {
		width: fit-content !important;
	}

	.lg\:min-w-0 {
		min-width: 0 !important;
	}

	.lg\:min-w-full {
		min-width: 100% !important;
	}

	.lg\:min-w-screen {
		min-width: 100vw !important;
	}

	.lg\:min-w-min {
		min-width: min-content !important;
	}

	.lg\:min-w-max {
		min-width: max-content !important;
	}

	.lg\:min-w-fit {
		min-width: fit-content !important;
	}

	.lg\:max-w-0 {
		max-width: 0 !important;
	}

	.lg\:max-w-full {
		max-width: 100% !important;
	}

	.lg\:max-w-screen {
		max-width: 100vw !important;
	}

	.lg\:max-w-min {
		max-width: min-content !important;
	}

	.lg\:max-w-max {
		max-width: max-content !important;
	}

	.lg\:max-w-fit {
		max-width: fit-content !important;
	}
}

/* #endregion lg */

/* #region lg, custom */
@media (min-width: 75em) {
	.lg\:h-\[4\.5rem\] {
		height: 4.5rem !important;
	}

	.lg\:min-h-\[32\.5rem\] {
		min-height: 32.5rem !important;
	}

	.lg\:w-\[8rem\] {
		width: 8rem !important;
	}

	.lg\:w-\[10\.25rem\] {
		width: 10.25rem !important;
	}

	.lg\:w-\[10\.5rem\] {
		width: 10.5rem !important;
	}

	.lg\:w-\[17\.5rem\] {
		width: 17.5rem !important;
	}

	.lg\:w-\[23\.625rem\] {
		width: 23.625rem !important;
	}

	.lg\:w-\[calc\(100\%\/3-1rem\/1\.5\)\] {
		width: calc(100% / 3 - 1rem / 1.5) !important;
	}

	.lg\:w-\[calc\(100\%\/4-1rem\/1\.3334\)\] {
		width: calc(100% / 4 - 1rem / 1.3334) !important;
	}
}

/* #endregion lg, custom */

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/spacing.css?1736451195114929*/
/* #region sm */
.m-0 {
	margin: 0 !important;
}

.m-1 {
	margin: 0.25rem !important;
}

.m-2 {
	margin: 0.5rem !important;
}

.m-3 {
	margin: 0.75rem !important;
}

.m-4 {
	margin: 1rem !important;
}

.m-5 {
	margin: 1.25rem !important;
}

.m-6 {
	margin: 1.5rem !important;
}

.m-7 {
	margin: 1.75rem !important;
}

.m-8 {
	margin: 2rem !important;
}

.m-9 {
	margin: 2.25rem !important;
}

.m-10 {
	margin: 2.5rem !important;
}

.m-11 {
	margin: 2.75rem !important;
}

.m-12 {
	margin: 3rem !important;
}

.m-13 {
	margin: 3.25rem !important;
}

.m-14 {
	margin: 3.5rem !important;
}

.m-15 {
	margin: 3.75rem !important;
}

.m-16 {
	margin: 4rem !important;
}

.m-17 {
	margin: 4.25rem !important;
}

.m-18 {
	margin: 4.5rem !important;
}

.m-19 {
	margin: 4.75rem !important;
}

.m-20 {
	margin: 5rem !important;
}

.m-auto {
	margin: auto !important;
}

.mx-0 {
	margin-inline-end: 0 !important;
	margin-inline-start: 0 !important;
}

.mx-1 {
	margin-inline-end: 0.25rem !important;
	margin-inline-start: 0.25rem !important;
}

.mx-2 {
	margin-inline-end: 0.5rem !important;
	margin-inline-start: 0.5rem !important;
}

.mx-3 {
	margin-inline-end: 0.75rem !important;
	margin-inline-start: 0.75rem !important;
}

.mx-4 {
	margin-inline-end: 1rem !important;
	margin-inline-start: 1rem !important;
}

.mx-5 {
	margin-inline-end: 1.25rem !important;
	margin-inline-start: 1.25rem !important;
}

.mx-6 {
	margin-inline-end: 1.5rem !important;
	margin-inline-start: 1.5rem !important;
}

.mx-7 {
	margin-inline-end: 1.75rem !important;
	margin-inline-start: 1.75rem !important;
}

.mx-8 {
	margin-inline-end: 2rem !important;
	margin-inline-start: 2rem !important;
}

.mx-9 {
	margin-inline-end: 2.25rem !important;
	margin-inline-start: 2.25rem !important;
}

.mx-10 {
	margin-inline-end: 2.5rem !important;
	margin-inline-start: 2.5rem !important;
}

.mx-11 {
	margin-inline-end: 2.75rem !important;
	margin-inline-start: 2.75rem !important;
}

.mx-12 {
	margin-inline-end: 3rem !important;
	margin-inline-start: 3rem !important;
}

.mx-13 {
	margin-inline-end: 3.25rem !important;
	margin-inline-start: 3.25rem !important;
}

.mx-14 {
	margin-inline-end: 3.5rem !important;
	margin-inline-start: 3.5rem !important;
}

.mx-15 {
	margin-inline-end: 3.75rem !important;
	margin-inline-start: 3.75rem !important;
}

.mx-16 {
	margin-inline-end: 4rem !important;
	margin-inline-start: 4rem !important;
}

.mx-17 {
	margin-inline-end: 4.25rem !important;
	margin-inline-start: 4.25rem !important;
}

.mx-18 {
	margin-inline-end: 4.5rem !important;
	margin-inline-start: 4.5rem !important;
}

.mx-19 {
	margin-inline-end: 4.75rem !important;
	margin-inline-start: 4.75rem !important;
}

.mx-20 {
	margin-inline-end: 5rem !important;
	margin-inline-start: 5rem !important;
}

.mx-auto {
	margin-inline-end: auto !important;
	margin-inline-start: auto !important;
}

.my-0 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.my-1 {
	margin-top: 0.25rem !important;
	margin-bottom: 0.25rem !important;
}

.my-2 {
	margin-top: 0.5rem !important;
	margin-bottom: 0.5rem !important;
}

.my-3 {
	margin-top: 0.75rem !important;
	margin-bottom: 0.75rem !important;
}

.my-4 {
	margin-top: 1rem !important;
	margin-bottom: 1rem !important;
}

.my-5 {
	margin-top: 1.25rem !important;
	margin-bottom: 1.25rem !important;
}

.my-6 {
	margin-top: 1.5rem !important;
	margin-bottom: 1.5rem !important;
}

.my-7 {
	margin-top: 1.75rem !important;
	margin-bottom: 1.75rem !important;
}

.my-8 {
	margin-top: 2rem !important;
	margin-bottom: 2rem !important;
}

.my-9 {
	margin-top: 2.25rem !important;
	margin-bottom: 2.25rem !important;
}

.my-10 {
	margin-top: 2.5rem !important;
	margin-bottom: 2.5rem !important;
}

.my-11 {
	margin-top: 2.75rem !important;
	margin-bottom: 2.75rem !important;
}

.my-12 {
	margin-top: 3rem !important;
	margin-bottom: 3rem !important;
}

.my-13 {
	margin-top: 3.25rem !important;
	margin-bottom: 3.25rem !important;
}

.my-14 {
	margin-top: 3.5rem !important;
	margin-bottom: 3.5rem !important;
}

.my-15 {
	margin-top: 3.75rem !important;
	margin-bottom: 3.75rem !important;
}

.my-16 {
	margin-top: 4rem !important;
	margin-bottom: 4rem !important;
}

.my-17 {
	margin-top: 4.25rem !important;
	margin-bottom: 4.25rem !important;
}

.my-18 {
	margin-top: 4.5rem !important;
	margin-bottom: 4.5rem !important;
}

.my-19 {
	margin-top: 4.75rem !important;
	margin-bottom: 4.75rem !important;
}

.my-20 {
	margin-top: 5rem !important;
	margin-bottom: 5rem !important;
}

.my-auto {
	margin-top: auto !important;
	margin-bottom: auto !important;
}

.mt-0 {
	margin-top: 0 !important;
}

.mt-1 {
	margin-top: 0.25rem !important;
}

.mt-2 {
	margin-top: 0.5rem !important;
}

.mt-3 {
	margin-top: 0.75rem !important;
}

.mt-4 {
	margin-top: 1rem !important;
}

.mt-5 {
	margin-top: 1.25rem !important;
}

.mt-6 {
	margin-top: 1.5rem !important;
}

.mt-7 {
	margin-top: 1.75rem !important;
}

.mt-8 {
	margin-top: 2rem !important;
}

.mt-9 {
	margin-top: 2.25rem !important;
}

.mt-10 {
	margin-top: 2.5rem !important;
}

.mt-11 {
	margin-top: 2.75rem !important;
}

.mt-12 {
	margin-top: 3rem !important;
}

.mt-13 {
	margin-top: 3.25rem !important;
}

.mt-14 {
	margin-top: 3.5rem !important;
}

.mt-15 {
	margin-top: 3.75rem !important;
}

.mt-16 {
	margin-top: 4rem !important;
}

.mt-17 {
	margin-top: 4.25rem !important;
}

.mt-18 {
	margin-top: 4.5rem !important;
}

.mt-19 {
	margin-top: 4.75rem !important;
}

.mt-20 {
	margin-top: 5rem !important;
}

.mt-auto {
	margin-top: auto !important;
}

.me-0 {
	margin-inline-end: 0 !important;
}

.me-1 {
	margin-inline-end: 0.25rem !important;
}

.me-2 {
	margin-inline-end: 0.5rem !important;
}

.me-3 {
	margin-inline-end: 0.75rem !important;
}

.me-4 {
	margin-inline-end: 1rem !important;
}

.me-5 {
	margin-inline-end: 1.25rem !important;
}

.me-6 {
	margin-inline-end: 1.5rem !important;
}

.me-7 {
	margin-inline-end: 1.75rem !important;
}

.me-8 {
	margin-inline-end: 2rem !important;
}

.me-9 {
	margin-inline-end: 2.25rem !important;
}

.me-10 {
	margin-inline-end: 2.5rem !important;
}

.me-11 {
	margin-inline-end: 2.75rem !important;
}

.me-12 {
	margin-inline-end: 3rem !important;
}

.me-13 {
	margin-inline-end: 3.25rem !important;
}

.me-14 {
	margin-inline-end: 3.5rem !important;
}

.me-15 {
	margin-inline-end: 3.75rem !important;
}

.me-16 {
	margin-inline-end: 4rem !important;
}

.me-17 {
	margin-inline-end: 4.25rem !important;
}

.me-18 {
	margin-inline-end: 4.5rem !important;
}

.me-19 {
	margin-inline-end: 4.75rem !important;
}

.me-20 {
	margin-inline-end: 5rem !important;
}

.me-auto {
	margin-inline-end: auto !important;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mb-1 {
	margin-bottom: 0.25rem !important;
}

.mb-2 {
	margin-bottom: 0.5rem !important;
}

.mb-3 {
	margin-bottom: 0.75rem !important;
}

.mb-4 {
	margin-bottom: 1rem !important;
}

.mb-5 {
	margin-bottom: 1.25rem !important;
}

.mb-6 {
	margin-bottom: 1.5rem !important;
}

.mb-7 {
	margin-bottom: 1.75rem !important;
}

.mb-8 {
	margin-bottom: 2rem !important;
}

.mb-9 {
	margin-bottom: 2.25rem !important;
}

.mb-10 {
	margin-bottom: 2.5rem !important;
}

.mb-11 {
	margin-bottom: 2.75rem !important;
}

.mb-12 {
	margin-bottom: 3rem !important;
}

.mb-13 {
	margin-bottom: 3.25rem !important;
}

.mb-14 {
	margin-bottom: 3.5rem !important;
}

.mb-15 {
	margin-bottom: 3.75rem !important;
}

.mb-16 {
	margin-bottom: 4rem !important;
}

.mb-17 {
	margin-bottom: 4.25rem !important;
}

.mb-18 {
	margin-bottom: 4.5rem !important;
}

.mb-19 {
	margin-bottom: 4.75rem !important;
}

.mb-20 {
	margin-bottom: 5rem !important;
}

.mb-auto {
	margin-bottom: auto !important;
}

.ms-0 {
	margin-inline-start: 0 !important;
}

.ms-1 {
	margin-inline-start: 0.25rem !important;
}

.ms-2 {
	margin-inline-start: 0.5rem !important;
}

.ms-3 {
	margin-inline-start: 0.75rem !important;
}

.ms-4 {
	margin-inline-start: 1rem !important;
}

.ms-5 {
	margin-inline-start: 1.25rem !important;
}

.ms-6 {
	margin-inline-start: 1.5rem !important;
}

.ms-7 {
	margin-inline-start: 1.75rem !important;
}

.ms-8 {
	margin-inline-start: 2rem !important;
}

.ms-9 {
	margin-inline-start: 2.25rem !important;
}

.ms-10 {
	margin-inline-start: 2.5rem !important;
}

.ms-11 {
	margin-inline-start: 2.75rem !important;
}

.ms-12 {
	margin-inline-start: 3rem !important;
}

.ms-13 {
	margin-inline-start: 3.25rem !important;
}

.ms-14 {
	margin-inline-start: 3.5rem !important;
}

.ms-15 {
	margin-inline-start: 3.75rem !important;
}

.ms-16 {
	margin-inline-start: 4rem !important;
}

.ms-17 {
	margin-inline-start: 4.25rem !important;
}

.ms-18 {
	margin-inline-start: 4.5rem !important;
}

.ms-19 {
	margin-inline-start: 4.75rem !important;
}

.ms-20 {
	margin-inline-start: 5rem !important;
}

.ms-auto {
	margin-inline-start: auto !important;
}

.-m-1 {
	margin: -0.25rem !important;
}

.-m-2 {
	margin: -0.5rem !important;
}

.-m-3 {
	margin: -0.75rem !important;
}

.-m-4 {
	margin: -1rem !important;
}

.-m-5 {
	margin: -1.25rem !important;
}

.-m-6 {
	margin: -1.5rem !important;
}

.-m-7 {
	margin: -1.75rem !important;
}

.-m-8 {
	margin: -2rem !important;
}

.-m-9 {
	margin: -2.25rem !important;
}

.-m-10 {
	margin: -2.5rem !important;
}

.-m-11 {
	margin: -2.75rem !important;
}

.-m-12 {
	margin: -3rem !important;
}

.-m-13 {
	margin: -3.25rem !important;
}

.-m-14 {
	margin: -3.5rem !important;
}

.-m-15 {
	margin: -3.75rem !important;
}

.-m-16 {
	margin: -4rem !important;
}

.-m-17 {
	margin: -4.25rem !important;
}

.-m-18 {
	margin: -4.5rem !important;
}

.-m-19 {
	margin: -4.75rem !important;
}

.-m-20 {
	margin: -5rem !important;
}

.-mx-1 {
	margin-inline-end: -0.25rem !important;
	margin-inline-start: -0.25rem !important;
}

.-mx-2 {
	margin-inline-end: -0.5rem !important;
	margin-inline-start: -0.5rem !important;
}

.-mx-3 {
	margin-inline-end: -0.75rem !important;
	margin-inline-start: -0.75rem !important;
}

.-mx-4 {
	margin-inline-end: -1rem !important;
	margin-inline-start: -1rem !important;
}

.-mx-5 {
	margin-inline-end: -1.25rem !important;
	margin-inline-start: -1.25rem !important;
}

.-mx-6 {
	margin-inline-end: -1.5rem !important;
	margin-inline-start: -1.5rem !important;
}

.-mx-7 {
	margin-inline-end: -1.75rem !important;
	margin-inline-start: -1.75rem !important;
}

.-mx-8 {
	margin-inline-end: -2rem !important;
	margin-inline-start: -2rem !important;
}

.-mx-9 {
	margin-inline-end: -2.25rem !important;
	margin-inline-start: -2.25rem !important;
}

.-mx-10 {
	margin-inline-end: -2.5rem !important;
	margin-inline-start: -2.5rem !important;
}

.-mx-11 {
	margin-inline-end: -2.75rem !important;
	margin-inline-start: -2.75rem !important;
}

.-mx-12 {
	margin-inline-end: -3rem !important;
	margin-inline-start: -3rem !important;
}

.-mx-13 {
	margin-inline-end: -3.25rem !important;
	margin-inline-start: -3.25rem !important;
}

.-mx-14 {
	margin-inline-end: -3.5rem !important;
	margin-inline-start: -3.5rem !important;
}

.-mx-15 {
	margin-inline-end: -3.75rem !important;
	margin-inline-start: -3.75rem !important;
}

.-mx-16 {
	margin-inline-end: -4rem !important;
	margin-inline-start: -4rem !important;
}

.-mx-17 {
	margin-inline-end: -4.25rem !important;
	margin-inline-start: -4.25rem !important;
}

.-mx-18 {
	margin-inline-end: -4.5rem !important;
	margin-inline-start: -4.5rem !important;
}

.-mx-19 {
	margin-inline-end: -4.75rem !important;
	margin-inline-start: -4.75rem !important;
}

.-mx-20 {
	margin-inline-end: -5rem !important;
	margin-inline-start: -5rem !important;
}

.-my-1 {
	margin-top: -0.25rem !important;
	margin-bottom: -0.25rem !important;
}

.-my-2 {
	margin-top: -0.5rem !important;
	margin-bottom: -0.5rem !important;
}

.-my-3 {
	margin-top: -0.75rem !important;
	margin-bottom: -0.75rem !important;
}

.-my-4 {
	margin-top: -1rem !important;
	margin-bottom: -1rem !important;
}

.-my-5 {
	margin-top: -1.25rem !important;
	margin-bottom: -1.25rem !important;
}

.-my-6 {
	margin-top: -1.5rem !important;
	margin-bottom: -1.5rem !important;
}

.-my-7 {
	margin-top: -1.75rem !important;
	margin-bottom: -1.75rem !important;
}

.-my-8 {
	margin-top: -2rem !important;
	margin-bottom: -2rem !important;
}

.-my-9 {
	margin-top: -2.25rem !important;
	margin-bottom: -2.25rem !important;
}

.-my-10 {
	margin-top: -2.5rem !important;
	margin-bottom: -2.5rem !important;
}

.-my-11 {
	margin-top: -2.75rem !important;
	margin-bottom: -2.75rem !important;
}

.-my-12 {
	margin-top: -3rem !important;
	margin-bottom: -3rem !important;
}

.-my-13 {
	margin-top: -3.25rem !important;
	margin-bottom: -3.25rem !important;
}

.-my-14 {
	margin-top: -3.5rem !important;
	margin-bottom: -3.5rem !important;
}

.-my-15 {
	margin-top: -3.75rem !important;
	margin-bottom: -3.75rem !important;
}

.-my-16 {
	margin-top: -4rem !important;
	margin-bottom: -4rem !important;
}

.-my-17 {
	margin-top: -4.25rem !important;
	margin-bottom: -4.25rem !important;
}

.-my-18 {
	margin-top: -4.5rem !important;
	margin-bottom: -4.5rem !important;
}

.-my-19 {
	margin-top: -4.75rem !important;
	margin-bottom: -4.75rem !important;
}

.-my-20 {
	margin-top: -5rem !important;
	margin-bottom: -5rem !important;
}

.-mt-1 {
	margin-top: -0.25rem !important;
}

.-mt-2 {
	margin-top: -0.5rem !important;
}

.-mt-3 {
	margin-top: -0.75rem !important;
}

.-mt-4 {
	margin-top: -1rem !important;
}

.-mt-5 {
	margin-top: -1.25rem !important;
}

.-mt-6 {
	margin-top: -1.5rem !important;
}

.-mt-7 {
	margin-top: -1.75rem !important;
}

.-mt-8 {
	margin-top: -2rem !important;
}

.-mt-9 {
	margin-top: -2.25rem !important;
}

.-mt-10 {
	margin-top: -2.5rem !important;
}

.-mt-11 {
	margin-top: -2.75rem !important;
}

.-mt-12 {
	margin-top: -3rem !important;
}

.-mt-13 {
	margin-top: -3.25rem !important;
}

.-mt-14 {
	margin-top: -3.5rem !important;
}

.-mt-15 {
	margin-top: -3.75rem !important;
}

.-mt-16 {
	margin-top: -4rem !important;
}

.-mt-17 {
	margin-top: -4.25rem !important;
}

.-mt-18 {
	margin-top: -4.5rem !important;
}

.-mt-19 {
	margin-top: -4.75rem !important;
}

.-mt-20 {
	margin-top: -5rem !important;
}

.-me-1 {
	margin-inline-end: -0.25rem !important;
}

.-me-2 {
	margin-inline-end: -0.5rem !important;
}

.-me-3 {
	margin-inline-end: -0.75rem !important;
}

.-me-4 {
	margin-inline-end: -1rem !important;
}

.-me-5 {
	margin-inline-end: -1.25rem !important;
}

.-me-6 {
	margin-inline-end: -1.5rem !important;
}

.-me-7 {
	margin-inline-end: -1.75rem !important;
}

.-me-8 {
	margin-inline-end: -2rem !important;
}

.-me-9 {
	margin-inline-end: -2.25rem !important;
}

.-me-10 {
	margin-inline-end: -2.5rem !important;
}

.-me-11 {
	margin-inline-end: -2.75rem !important;
}

.-me-12 {
	margin-inline-end: -3rem !important;
}

.-me-13 {
	margin-inline-end: -3.25rem !important;
}

.-me-14 {
	margin-inline-end: -3.5rem !important;
}

.-me-15 {
	margin-inline-end: -3.75rem !important;
}

.-me-16 {
	margin-inline-end: -4rem !important;
}

.-me-17 {
	margin-inline-end: -4.25rem !important;
}

.-me-18 {
	margin-inline-end: -4.5rem !important;
}

.-me-19 {
	margin-inline-end: -4.75rem !important;
}

.-me-20 {
	margin-inline-end: -5rem !important;
}

.-mb-1 {
	margin-bottom: -0.25rem !important;
}

.-mb-2 {
	margin-bottom: -0.5rem !important;
}

.-mb-3 {
	margin-bottom: -0.75rem !important;
}

.-mb-4 {
	margin-bottom: -1rem !important;
}

.-mb-5 {
	margin-bottom: -1.25rem !important;
}

.-mb-6 {
	margin-bottom: -1.5rem !important;
}

.-mb-7 {
	margin-bottom: -1.75rem !important;
}

.-mb-8 {
	margin-bottom: -2rem !important;
}

.-mb-9 {
	margin-bottom: -2.25rem !important;
}

.-mb-10 {
	margin-bottom: -2.5rem !important;
}

.-mb-11 {
	margin-bottom: -2.75rem !important;
}

.-mb-12 {
	margin-bottom: -3rem !important;
}

.-mb-13 {
	margin-bottom: -3.25rem !important;
}

.-mb-14 {
	margin-bottom: -3.5rem !important;
}

.-mb-15 {
	margin-bottom: -3.75rem !important;
}

.-mb-16 {
	margin-bottom: -4rem !important;
}

.-mb-17 {
	margin-bottom: -4.25rem !important;
}

.-mb-18 {
	margin-bottom: -4.5rem !important;
}

.-mb-19 {
	margin-bottom: -4.75rem !important;
}

.-mb-20 {
	margin-bottom: -5rem !important;
}

.-ms-1 {
	margin-inline-start: -0.25rem !important;
}

.-ms-2 {
	margin-inline-start: -0.5rem !important;
}

.-ms-3 {
	margin-inline-start: -0.75rem !important;
}

.-ms-4 {
	margin-inline-start: -1rem !important;
}

.-ms-5 {
	margin-inline-start: -1.25rem !important;
}

.-ms-6 {
	margin-inline-start: -1.5rem !important;
}

.-ms-7 {
	margin-inline-start: -1.75rem !important;
}

.-ms-8 {
	margin-inline-start: -2rem !important;
}

.-ms-9 {
	margin-inline-start: -2.25rem !important;
}

.-ms-10 {
	margin-inline-start: -2.5rem !important;
}

.-ms-11 {
	margin-inline-start: -2.75rem !important;
}

.-ms-12 {
	margin-inline-start: -3rem !important;
}

.-ms-13 {
	margin-inline-start: -3.25rem !important;
}

.-ms-14 {
	margin-inline-start: -3.5rem !important;
}

.-ms-15 {
	margin-inline-start: -3.75rem !important;
}

.-ms-16 {
	margin-inline-start: -4rem !important;
}

.-ms-17 {
	margin-inline-start: -4.25rem !important;
}

.-ms-18 {
	margin-inline-start: -4.5rem !important;
}

.-ms-19 {
	margin-inline-start: -4.75rem !important;
}

.-ms-20 {
	margin-inline-start: -5rem !important;
}

.p-0 {
	padding: 0 !important;
}

.p-1 {
	padding: 0.25rem !important;
}

.p-2 {
	padding: 0.5rem !important;
}

.p-3 {
	padding: 0.75rem !important;
}

.p-4 {
	padding: 1rem !important;
}

.p-5 {
	padding: 1.25rem !important;
}

.p-6 {
	padding: 1.5rem !important;
}

.p-7 {
	padding: 1.75rem !important;
}

.p-8 {
	padding: 2rem !important;
}

.p-9 {
	padding: 2.25rem !important;
}

.p-10 {
	padding: 2.5rem !important;
}

.p-11 {
	padding: 2.75rem !important;
}

.p-12 {
	padding: 3rem !important;
}

.p-13 {
	padding: 3.25rem !important;
}

.p-14 {
	padding: 3.5rem !important;
}

.p-15 {
	padding: 3.75rem !important;
}

.p-16 {
	padding: 4rem !important;
}

.p-17 {
	padding: 4.25rem !important;
}

.p-18 {
	padding: 4.5rem !important;
}

.p-19 {
	padding: 4.75rem !important;
}

.p-20 {
	padding: 5rem !important;
}

.px-0 {
	padding-inline-end: 0 !important;
	padding-inline-start: 0 !important;
}

.px-1 {
	padding-inline-end: 0.25rem !important;
	padding-inline-start: 0.25rem !important;
}

.px-2 {
	padding-inline-end: 0.5rem !important;
	padding-inline-start: 0.5rem !important;
}

.px-3 {
	padding-inline-end: 0.75rem !important;
	padding-inline-start: 0.75rem !important;
}

.px-4 {
	padding-inline-end: 1rem !important;
	padding-inline-start: 1rem !important;
}

.px-5 {
	padding-inline-end: 1.25rem !important;
	padding-inline-start: 1.25rem !important;
}

.px-6 {
	padding-inline-end: 1.5rem !important;
	padding-inline-start: 1.5rem !important;
}

.px-7 {
	padding-inline-end: 1.75rem !important;
	padding-inline-start: 1.75rem !important;
}

.px-8 {
	padding-inline-end: 2rem !important;
	padding-inline-start: 2rem !important;
}

.px-9 {
	padding-inline-end: 2.25rem !important;
	padding-inline-start: 2.25rem !important;
}

.px-10 {
	padding-inline-end: 2.5rem !important;
	padding-inline-start: 2.5rem !important;
}

.px-11 {
	padding-inline-end: 2.75rem !important;
	padding-inline-start: 2.75rem !important;
}

.px-12 {
	padding-inline-end: 3rem !important;
	padding-inline-start: 3rem !important;
}

.px-13 {
	padding-inline-end: 3.25rem !important;
	padding-inline-start: 3.25rem !important;
}

.px-14 {
	padding-inline-end: 3.5rem !important;
	padding-inline-start: 3.5rem !important;
}

.px-15 {
	padding-inline-end: 3.75rem !important;
	padding-inline-start: 3.75rem !important;
}

.px-16 {
	padding-inline-end: 4rem !important;
	padding-inline-start: 4rem !important;
}

.px-17 {
	padding-inline-end: 4.25rem !important;
	padding-inline-start: 4.25rem !important;
}

.px-18 {
	padding-inline-end: 4.5rem !important;
	padding-inline-start: 4.5rem !important;
}

.px-19 {
	padding-inline-end: 4.75rem !important;
	padding-inline-start: 4.75rem !important;
}

.px-20 {
	padding-inline-end: 5rem !important;
	padding-inline-start: 5rem !important;
}

.py-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.py-1 {
	padding-top: 0.25rem !important;
	padding-bottom: 0.25rem !important;
}

.py-2 {
	padding-top: 0.5rem !important;
	padding-bottom: 0.5rem !important;
}

.py-3 {
	padding-top: 0.75rem !important;
	padding-bottom: 0.75rem !important;
}

.py-4 {
	padding-top: 1rem !important;
	padding-bottom: 1rem !important;
}

.py-5 {
	padding-top: 1.25rem !important;
	padding-bottom: 1.25rem !important;
}

.py-6 {
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important;
}

.py-7 {
	padding-top: 1.75rem !important;
	padding-bottom: 1.75rem !important;
}

.py-8 {
	padding-top: 2rem !important;
	padding-bottom: 2rem !important;
}

.py-9 {
	padding-top: 2.25rem !important;
	padding-bottom: 2.25rem !important;
}

.py-10 {
	padding-top: 2.5rem !important;
	padding-bottom: 2.5rem !important;
}

.py-11 {
	padding-top: 2.75rem !important;
	padding-bottom: 2.75rem !important;
}

.py-12 {
	padding-top: 3rem !important;
	padding-bottom: 3rem !important;
}

.py-13 {
	padding-top: 3.25rem !important;
	padding-bottom: 3.25rem !important;
}

.py-14 {
	padding-top: 3.5rem !important;
	padding-bottom: 3.5rem !important;
}

.py-15 {
	padding-top: 3.75rem !important;
	padding-bottom: 3.75rem !important;
}

.py-16 {
	padding-top: 4rem !important;
	padding-bottom: 4rem !important;
}

.py-17 {
	padding-top: 4.25rem !important;
	padding-bottom: 4.25rem !important;
}

.py-18 {
	padding-top: 4.5rem !important;
	padding-bottom: 4.5rem !important;
}

.py-19 {
	padding-top: 4.75rem !important;
	padding-bottom: 4.75rem !important;
}

.py-20 {
	padding-top: 5rem !important;
	padding-bottom: 5rem !important;
}

.pt-0 {
	padding-top: 0 !important;
}

.pt-1 {
	padding-top: 0.25rem !important;
}

.pt-2 {
	padding-top: 0.5rem !important;
}

.pt-3 {
	padding-top: 0.75rem !important;
}

.pt-4 {
	padding-top: 1rem !important;
}

.pt-5 {
	padding-top: 1.25rem !important;
}

.pt-6 {
	padding-top: 1.5rem !important;
}

.pt-7 {
	padding-top: 1.75rem !important;
}

.pt-8 {
	padding-top: 2rem !important;
}

.pt-9 {
	padding-top: 2.25rem !important;
}

.pt-10 {
	padding-top: 2.5rem !important;
}

.pt-11 {
	padding-top: 2.75rem !important;
}

.pt-12 {
	padding-top: 3rem !important;
}

.pt-13 {
	padding-top: 3.25rem !important;
}

.pt-14 {
	padding-top: 3.5rem !important;
}

.pt-15 {
	padding-top: 3.75rem !important;
}

.pt-16 {
	padding-top: 4rem !important;
}

.pt-17 {
	padding-top: 4.25rem !important;
}

.pt-18 {
	padding-top: 4.5rem !important;
}

.pt-19 {
	padding-top: 4.75rem !important;
}

.pt-20 {
	padding-top: 5rem !important;
}

.pe-0 {
	padding-inline-end: 0 !important;
}

.pe-1 {
	padding-inline-end: 0.25rem !important;
}

.pe-2 {
	padding-inline-end: 0.5rem !important;
}

.pe-3 {
	padding-inline-end: 0.75rem !important;
}

.pe-4 {
	padding-inline-end: 1rem !important;
}

.pe-5 {
	padding-inline-end: 1.25rem !important;
}

.pe-6 {
	padding-inline-end: 1.5rem !important;
}

.pe-7 {
	padding-inline-end: 1.75rem !important;
}

.pe-8 {
	padding-inline-end: 2rem !important;
}

.pe-9 {
	padding-inline-end: 2.25rem !important;
}

.pe-10 {
	padding-inline-end: 2.5rem !important;
}

.pe-11 {
	padding-inline-end: 2.75rem !important;
}

.pe-12 {
	padding-inline-end: 3rem !important;
}

.pe-13 {
	padding-inline-end: 3.25rem !important;
}

.pe-14 {
	padding-inline-end: 3.5rem !important;
}

.pe-15 {
	padding-inline-end: 3.75rem !important;
}

.pe-16 {
	padding-inline-end: 4rem !important;
}

.pe-17 {
	padding-inline-end: 4.25rem !important;
}

.pe-18 {
	padding-inline-end: 4.5rem !important;
}

.pe-19 {
	padding-inline-end: 4.75rem !important;
}

.pe-20 {
	padding-inline-end: 5rem !important;
}

.pb-0 {
	padding-bottom: 0 !important;
}

.pb-1 {
	padding-bottom: 0.25rem !important;
}

.pb-2 {
	padding-bottom: 0.5rem !important;
}

.pb-3 {
	padding-bottom: 0.75rem !important;
}

.pb-4 {
	padding-bottom: 1rem !important;
}

.pb-5 {
	padding-bottom: 1.25rem !important;
}

.pb-6 {
	padding-bottom: 1.5rem !important;
}

.pb-7 {
	padding-bottom: 1.75rem !important;
}

.pb-8 {
	padding-bottom: 2rem !important;
}

.pb-9 {
	padding-bottom: 2.25rem !important;
}

.pb-10 {
	padding-bottom: 2.5rem !important;
}

.pb-11 {
	padding-bottom: 2.75rem !important;
}

.pb-12 {
	padding-bottom: 3rem !important;
}

.pb-13 {
	padding-bottom: 3.25rem !important;
}

.pb-14 {
	padding-bottom: 3.5rem !important;
}

.pb-15 {
	padding-bottom: 3.75rem !important;
}

.pb-16 {
	padding-bottom: 4rem !important;
}

.pb-17 {
	padding-bottom: 4.25rem !important;
}

.pb-18 {
	padding-bottom: 4.5rem !important;
}

.pb-19 {
	padding-bottom: 4.75rem !important;
}

.pb-20 {
	padding-bottom: 5rem !important;
}

.ps-0 {
	padding-inline-start: 0 !important;
}

.ps-1 {
	padding-inline-start: 0.25rem !important;
}

.ps-2 {
	padding-inline-start: 0.5rem !important;
}

.ps-3 {
	padding-inline-start: 0.75rem !important;
}

.ps-4 {
	padding-inline-start: 1rem !important;
}

.ps-5 {
	padding-inline-start: 1.25rem !important;
}

.ps-6 {
	padding-inline-start: 1.5rem !important;
}

.ps-7 {
	padding-inline-start: 1.75rem !important;
}

.ps-8 {
	padding-inline-start: 2rem !important;
}

.ps-9 {
	padding-inline-start: 2.25rem !important;
}

.ps-10 {
	padding-inline-start: 2.5rem !important;
}

.ps-11 {
	padding-inline-start: 2.75rem !important;
}

.ps-12 {
	padding-inline-start: 3rem !important;
}

.ps-13 {
	padding-inline-start: 3.25rem !important;
}

.ps-14 {
	padding-inline-start: 3.5rem !important;
}

.ps-15 {
	padding-inline-start: 3.75rem !important;
}

.ps-16 {
	padding-inline-start: 4rem !important;
}

.ps-17 {
	padding-inline-start: 4.25rem !important;
}

.ps-18 {
	padding-inline-start: 4.5rem !important;
}

.ps-19 {
	padding-inline-start: 4.75rem !important;
}

.ps-20 {
	padding-inline-start: 5rem !important;
}

/* #endregion sm */

/* #region sm, custom */
.\[\&\:not\(\:last-of-type\)\]\:me-2:not(:last-of-type) {
	margin-inline-end: 0.5rem !important;
}

.\[\&\:not\(\:last-of-type\)\]\:me-4:not(:last-of-type) {
	margin-inline-end: 1rem !important;
}

.\[\&\:not\(\:first-child\)\]\:mt-8:not(:first-child) {
	margin-top: 2rem !important;
}

.\[\&\:not\(\:last-child\)\]\:mb-8:not(:last-child) {
	margin-bottom: 2rem !important;
}

.-mt-\[var\(--x-ref-app-bar-height\)\] {
	margin-top: calc(var(--x-ref-app-bar-height) * -1);
}

.pt-\[var\(--x-ref-app-bar-height\)\] {
	padding-top: var(--x-ref-app-bar-height);
}

.last\:pb-8:last-child {
	padding-bottom: 2rem !important;
}

.last\:pb-12:last-child {
	padding-bottom: 3rem !important;
}

/* #endregion sm, custom */

/* #region sm */
@media (min-width: 37.5em) {
	.sm\:m-0 {
		margin: 0 !important;
	}

	.sm\:m-1 {
		margin: 0.25rem !important;
	}

	.sm\:m-2 {
		margin: 0.5rem !important;
	}

	.sm\:m-3 {
		margin: 0.75rem !important;
	}

	.sm\:m-4 {
		margin: 1rem !important;
	}

	.sm\:m-5 {
		margin: 1.25rem !important;
	}

	.sm\:m-6 {
		margin: 1.5rem !important;
	}

	.sm\:m-7 {
		margin: 1.75rem !important;
	}

	.sm\:m-8 {
		margin: 2rem !important;
	}

	.sm\:m-9 {
		margin: 2.25rem !important;
	}

	.sm\:m-10 {
		margin: 2.5rem !important;
	}

	.sm\:m-11 {
		margin: 2.75rem !important;
	}

	.sm\:m-12 {
		margin: 3rem !important;
	}

	.sm\:m-13 {
		margin: 3.25rem !important;
	}

	.sm\:m-14 {
		margin: 3.5rem !important;
	}

	.sm\:m-15 {
		margin: 3.75rem !important;
	}

	.sm\:m-16 {
		margin: 4rem !important;
	}

	.sm\:m-17 {
		margin: 4.25rem !important;
	}

	.sm\:m-18 {
		margin: 4.5rem !important;
	}

	.sm\:m-19 {
		margin: 4.75rem !important;
	}

	.sm\:m-20 {
		margin: 5rem !important;
	}

	.sm\:m-auto {
		margin: auto !important;
	}

	.sm\:mx-0 {
		margin-inline-end: 0 !important;
		margin-inline-start: 0 !important;
	}

	.sm\:mx-1 {
		margin-inline-end: 0.25rem !important;
		margin-inline-start: 0.25rem !important;
	}

	.sm\:mx-2 {
		margin-inline-end: 0.5rem !important;
		margin-inline-start: 0.5rem !important;
	}

	.sm\:mx-3 {
		margin-inline-end: 0.75rem !important;
		margin-inline-start: 0.75rem !important;
	}

	.sm\:mx-4 {
		margin-inline-end: 1rem !important;
		margin-inline-start: 1rem !important;
	}

	.sm\:mx-5 {
		margin-inline-end: 1.25rem !important;
		margin-inline-start: 1.25rem !important;
	}

	.sm\:mx-6 {
		margin-inline-end: 1.5rem !important;
		margin-inline-start: 1.5rem !important;
	}

	.sm\:mx-7 {
		margin-inline-end: 1.75rem !important;
		margin-inline-start: 1.75rem !important;
	}

	.sm\:mx-8 {
		margin-inline-end: 2rem !important;
		margin-inline-start: 2rem !important;
	}

	.sm\:mx-9 {
		margin-inline-end: 2.25rem !important;
		margin-inline-start: 2.25rem !important;
	}

	.sm\:mx-10 {
		margin-inline-end: 2.5rem !important;
		margin-inline-start: 2.5rem !important;
	}

	.sm\:mx-11 {
		margin-inline-end: 2.75rem !important;
		margin-inline-start: 2.75rem !important;
	}

	.sm\:mx-12 {
		margin-inline-end: 3rem !important;
		margin-inline-start: 3rem !important;
	}

	.sm\:mx-13 {
		margin-inline-end: 3.25rem !important;
		margin-inline-start: 3.25rem !important;
	}

	.sm\:mx-14 {
		margin-inline-end: 3.5rem !important;
		margin-inline-start: 3.5rem !important;
	}

	.sm\:mx-15 {
		margin-inline-end: 3.75rem !important;
		margin-inline-start: 3.75rem !important;
	}

	.sm\:mx-16 {
		margin-inline-end: 4rem !important;
		margin-inline-start: 4rem !important;
	}

	.sm\:mx-17 {
		margin-inline-end: 4.25rem !important;
		margin-inline-start: 4.25rem !important;
	}

	.sm\:mx-18 {
		margin-inline-end: 4.5rem !important;
		margin-inline-start: 4.5rem !important;
	}

	.sm\:mx-19 {
		margin-inline-end: 4.75rem !important;
		margin-inline-start: 4.75rem !important;
	}

	.sm\:mx-20 {
		margin-inline-end: 5rem !important;
		margin-inline-start: 5rem !important;
	}

	.sm\:mx-auto {
		margin-inline-end: auto !important;
		margin-inline-start: auto !important;
	}

	.sm\:my-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.sm\:my-1 {
		margin-top: 0.25rem !important;
		margin-bottom: 0.25rem !important;
	}

	.sm\:my-2 {
		margin-top: 0.5rem !important;
		margin-bottom: 0.5rem !important;
	}

	.sm\:my-3 {
		margin-top: 0.75rem !important;
		margin-bottom: 0.75rem !important;
	}

	.sm\:my-4 {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important;
	}

	.sm\:my-5 {
		margin-top: 1.25rem !important;
		margin-bottom: 1.25rem !important;
	}

	.sm\:my-6 {
		margin-top: 1.5rem !important;
		margin-bottom: 1.5rem !important;
	}

	.sm\:my-7 {
		margin-top: 1.75rem !important;
		margin-bottom: 1.75rem !important;
	}

	.sm\:my-8 {
		margin-top: 2rem !important;
		margin-bottom: 2rem !important;
	}

	.sm\:my-9 {
		margin-top: 2.25rem !important;
		margin-bottom: 2.25rem !important;
	}

	.sm\:my-10 {
		margin-top: 2.5rem !important;
		margin-bottom: 2.5rem !important;
	}

	.sm\:my-11 {
		margin-top: 2.75rem !important;
		margin-bottom: 2.75rem !important;
	}

	.sm\:my-12 {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important;
	}

	.sm\:my-13 {
		margin-top: 3.25rem !important;
		margin-bottom: 3.25rem !important;
	}

	.sm\:my-14 {
		margin-top: 3.5rem !important;
		margin-bottom: 3.5rem !important;
	}

	.sm\:my-15 {
		margin-top: 3.75rem !important;
		margin-bottom: 3.75rem !important;
	}

	.sm\:my-16 {
		margin-top: 4rem !important;
		margin-bottom: 4rem !important;
	}

	.sm\:my-17 {
		margin-top: 4.25rem !important;
		margin-bottom: 4.25rem !important;
	}

	.sm\:my-18 {
		margin-top: 4.5rem !important;
		margin-bottom: 4.5rem !important;
	}

	.sm\:my-19 {
		margin-top: 4.75rem !important;
		margin-bottom: 4.75rem !important;
	}

	.sm\:my-20 {
		margin-top: 5rem !important;
		margin-bottom: 5rem !important;
	}

	.sm\:my-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}

	.sm\:mt-0 {
		margin-top: 0 !important;
	}

	.sm\:mt-1 {
		margin-top: 0.25rem !important;
	}

	.sm\:mt-2 {
		margin-top: 0.5rem !important;
	}

	.sm\:mt-3 {
		margin-top: 0.75rem !important;
	}

	.sm\:mt-4 {
		margin-top: 1rem !important;
	}

	.sm\:mt-5 {
		margin-top: 1.25rem !important;
	}

	.sm\:mt-6 {
		margin-top: 1.5rem !important;
	}

	.sm\:mt-7 {
		margin-top: 1.75rem !important;
	}

	.sm\:mt-8 {
		margin-top: 2rem !important;
	}

	.sm\:mt-9 {
		margin-top: 2.25rem !important;
	}

	.sm\:mt-10 {
		margin-top: 2.5rem !important;
	}

	.sm\:mt-11 {
		margin-top: 2.75rem !important;
	}

	.sm\:mt-12 {
		margin-top: 3rem !important;
	}

	.sm\:mt-13 {
		margin-top: 3.25rem !important;
	}

	.sm\:mt-14 {
		margin-top: 3.5rem !important;
	}

	.sm\:mt-15 {
		margin-top: 3.75rem !important;
	}

	.sm\:mt-16 {
		margin-top: 4rem !important;
	}

	.sm\:mt-17 {
		margin-top: 4.25rem !important;
	}

	.sm\:mt-18 {
		margin-top: 4.5rem !important;
	}

	.sm\:mt-19 {
		margin-top: 4.75rem !important;
	}

	.sm\:mt-20 {
		margin-top: 5rem !important;
	}

	.sm\:mt-auto {
		margin-top: auto !important;
	}

	.sm\:me-0 {
		margin-inline-end: 0 !important;
	}

	.sm\:me-1 {
		margin-inline-end: 0.25rem !important;
	}

	.sm\:me-2 {
		margin-inline-end: 0.5rem !important;
	}

	.sm\:me-3 {
		margin-inline-end: 0.75rem !important;
	}

	.sm\:me-4 {
		margin-inline-end: 1rem !important;
	}

	.sm\:me-5 {
		margin-inline-end: 1.25rem !important;
	}

	.sm\:me-6 {
		margin-inline-end: 1.5rem !important;
	}

	.sm\:me-7 {
		margin-inline-end: 1.75rem !important;
	}

	.sm\:me-8 {
		margin-inline-end: 2rem !important;
	}

	.sm\:me-9 {
		margin-inline-end: 2.25rem !important;
	}

	.sm\:me-10 {
		margin-inline-end: 2.5rem !important;
	}

	.sm\:me-11 {
		margin-inline-end: 2.75rem !important;
	}

	.sm\:me-12 {
		margin-inline-end: 3rem !important;
	}

	.sm\:me-13 {
		margin-inline-end: 3.25rem !important;
	}

	.sm\:me-14 {
		margin-inline-end: 3.5rem !important;
	}

	.sm\:me-15 {
		margin-inline-end: 3.75rem !important;
	}

	.sm\:me-16 {
		margin-inline-end: 4rem !important;
	}

	.sm\:me-17 {
		margin-inline-end: 4.25rem !important;
	}

	.sm\:me-18 {
		margin-inline-end: 4.5rem !important;
	}

	.sm\:me-19 {
		margin-inline-end: 4.75rem !important;
	}

	.sm\:me-20 {
		margin-inline-end: 5rem !important;
	}

	.sm\:me-auto {
		margin-inline-end: auto !important;
	}

	.sm\:mb-0 {
		margin-bottom: 0 !important;
	}

	.sm\:mb-1 {
		margin-bottom: 0.25rem !important;
	}

	.sm\:mb-2 {
		margin-bottom: 0.5rem !important;
	}

	.sm\:mb-3 {
		margin-bottom: 0.75rem !important;
	}

	.sm\:mb-4 {
		margin-bottom: 1rem !important;
	}

	.sm\:mb-5 {
		margin-bottom: 1.25rem !important;
	}

	.sm\:mb-6 {
		margin-bottom: 1.5rem !important;
	}

	.sm\:mb-7 {
		margin-bottom: 1.75rem !important;
	}

	.sm\:mb-8 {
		margin-bottom: 2rem !important;
	}

	.sm\:mb-9 {
		margin-bottom: 2.25rem !important;
	}

	.sm\:mb-10 {
		margin-bottom: 2.5rem !important;
	}

	.sm\:mb-11 {
		margin-bottom: 2.75rem !important;
	}

	.sm\:mb-12 {
		margin-bottom: 3rem !important;
	}

	.sm\:mb-13 {
		margin-bottom: 3.25rem !important;
	}

	.sm\:mb-14 {
		margin-bottom: 3.5rem !important;
	}

	.sm\:mb-15 {
		margin-bottom: 3.75rem !important;
	}

	.sm\:mb-16 {
		margin-bottom: 4rem !important;
	}

	.sm\:mb-17 {
		margin-bottom: 4.25rem !important;
	}

	.sm\:mb-18 {
		margin-bottom: 4.5rem !important;
	}

	.sm\:mb-19 {
		margin-bottom: 4.75rem !important;
	}

	.sm\:mb-20 {
		margin-bottom: 5rem !important;
	}

	.sm\:mb-auto {
		margin-bottom: auto !important;
	}

	.sm\:ms-0 {
		margin-inline-start: 0 !important;
	}

	.sm\:ms-1 {
		margin-inline-start: 0.25rem !important;
	}

	.sm\:ms-2 {
		margin-inline-start: 0.5rem !important;
	}

	.sm\:ms-3 {
		margin-inline-start: 0.75rem !important;
	}

	.sm\:ms-4 {
		margin-inline-start: 1rem !important;
	}

	.sm\:ms-5 {
		margin-inline-start: 1.25rem !important;
	}

	.sm\:ms-6 {
		margin-inline-start: 1.5rem !important;
	}

	.sm\:ms-7 {
		margin-inline-start: 1.75rem !important;
	}

	.sm\:ms-8 {
		margin-inline-start: 2rem !important;
	}

	.sm\:ms-9 {
		margin-inline-start: 2.25rem !important;
	}

	.sm\:ms-10 {
		margin-inline-start: 2.5rem !important;
	}

	.sm\:ms-11 {
		margin-inline-start: 2.75rem !important;
	}

	.sm\:ms-12 {
		margin-inline-start: 3rem !important;
	}

	.sm\:ms-13 {
		margin-inline-start: 3.25rem !important;
	}

	.sm\:ms-14 {
		margin-inline-start: 3.5rem !important;
	}

	.sm\:ms-15 {
		margin-inline-start: 3.75rem !important;
	}

	.sm\:ms-16 {
		margin-inline-start: 4rem !important;
	}

	.sm\:ms-17 {
		margin-inline-start: 4.25rem !important;
	}

	.sm\:ms-18 {
		margin-inline-start: 4.5rem !important;
	}

	.sm\:ms-19 {
		margin-inline-start: 4.75rem !important;
	}

	.sm\:ms-20 {
		margin-inline-start: 5rem !important;
	}

	.sm\:ms-auto {
		margin-inline-start: auto !important;
	}

	.sm\:-m-1 {
		margin: -0.25rem !important;
	}

	.sm\:-m-2 {
		margin: -0.5rem !important;
	}

	.sm\:-m-3 {
		margin: -0.75rem !important;
	}

	.sm\:-m-4 {
		margin: -1rem !important;
	}

	.sm\:-m-5 {
		margin: -1.25rem !important;
	}

	.sm\:-m-6 {
		margin: -1.5rem !important;
	}

	.sm\:-m-7 {
		margin: -1.75rem !important;
	}

	.sm\:-m-8 {
		margin: -2rem !important;
	}

	.sm\:-m-9 {
		margin: -2.25rem !important;
	}

	.sm\:-m-10 {
		margin: -2.5rem !important;
	}

	.sm\:-m-11 {
		margin: -2.75rem !important;
	}

	.sm\:-m-12 {
		margin: -3rem !important;
	}

	.sm\:-m-13 {
		margin: -3.25rem !important;
	}

	.sm\:-m-14 {
		margin: -3.5rem !important;
	}

	.sm\:-m-15 {
		margin: -3.75rem !important;
	}

	.sm\:-m-16 {
		margin: -4rem !important;
	}

	.sm\:-m-17 {
		margin: -4.25rem !important;
	}

	.sm\:-m-18 {
		margin: -4.5rem !important;
	}

	.sm\:-m-19 {
		margin: -4.75rem !important;
	}

	.sm\:-m-20 {
		margin: -5rem !important;
	}

	.sm\:-mx-1 {
		margin-inline-end: -0.25rem !important;
		margin-inline-start: -0.25rem !important;
	}

	.sm\:-mx-2 {
		margin-inline-end: -0.5rem !important;
		margin-inline-start: -0.5rem !important;
	}

	.sm\:-mx-3 {
		margin-inline-end: -0.75rem !important;
		margin-inline-start: -0.75rem !important;
	}

	.sm\:-mx-4 {
		margin-inline-end: -1rem !important;
		margin-inline-start: -1rem !important;
	}

	.sm\:-mx-5 {
		margin-inline-end: -1.25rem !important;
		margin-inline-start: -1.25rem !important;
	}

	.sm\:-mx-6 {
		margin-inline-end: -1.5rem !important;
		margin-inline-start: -1.5rem !important;
	}

	.sm\:-mx-7 {
		margin-inline-end: -1.75rem !important;
		margin-inline-start: -1.75rem !important;
	}

	.sm\:-mx-8 {
		margin-inline-end: -2rem !important;
		margin-inline-start: -2rem !important;
	}

	.sm\:-mx-9 {
		margin-inline-end: -2.25rem !important;
		margin-inline-start: -2.25rem !important;
	}

	.sm\:-mx-10 {
		margin-inline-end: -2.5rem !important;
		margin-inline-start: -2.5rem !important;
	}

	.sm\:-mx-11 {
		margin-inline-end: -2.75rem !important;
		margin-inline-start: -2.75rem !important;
	}

	.sm\:-mx-12 {
		margin-inline-end: -3rem !important;
		margin-inline-start: -3rem !important;
	}

	.sm\:-mx-13 {
		margin-inline-end: -3.25rem !important;
		margin-inline-start: -3.25rem !important;
	}

	.sm\:-mx-14 {
		margin-inline-end: -3.5rem !important;
		margin-inline-start: -3.5rem !important;
	}

	.sm\:-mx-15 {
		margin-inline-end: -3.75rem !important;
		margin-inline-start: -3.75rem !important;
	}

	.sm\:-mx-16 {
		margin-inline-end: -4rem !important;
		margin-inline-start: -4rem !important;
	}

	.sm\:-mx-17 {
		margin-inline-end: -4.25rem !important;
		margin-inline-start: -4.25rem !important;
	}

	.sm\:-mx-18 {
		margin-inline-end: -4.5rem !important;
		margin-inline-start: -4.5rem !important;
	}

	.sm\:-mx-19 {
		margin-inline-end: -4.75rem !important;
		margin-inline-start: -4.75rem !important;
	}

	.sm\:-mx-20 {
		margin-inline-end: -5rem !important;
		margin-inline-start: -5rem !important;
	}

	.sm\:-my-1 {
		margin-top: -0.25rem !important;
		margin-bottom: -0.25rem !important;
	}

	.sm\:-my-2 {
		margin-top: -0.5rem !important;
		margin-bottom: -0.5rem !important;
	}

	.sm\:-my-3 {
		margin-top: -0.75rem !important;
		margin-bottom: -0.75rem !important;
	}

	.sm\:-my-4 {
		margin-top: -1rem !important;
		margin-bottom: -1rem !important;
	}

	.sm\:-my-5 {
		margin-top: -1.25rem !important;
		margin-bottom: -1.25rem !important;
	}

	.sm\:-my-6 {
		margin-top: -1.5rem !important;
		margin-bottom: -1.5rem !important;
	}

	.sm\:-my-7 {
		margin-top: -1.75rem !important;
		margin-bottom: -1.75rem !important;
	}

	.sm\:-my-8 {
		margin-top: -2rem !important;
		margin-bottom: -2rem !important;
	}

	.sm\:-my-9 {
		margin-top: -2.25rem !important;
		margin-bottom: -2.25rem !important;
	}

	.sm\:-my-10 {
		margin-top: -2.5rem !important;
		margin-bottom: -2.5rem !important;
	}

	.sm\:-my-11 {
		margin-top: -2.75rem !important;
		margin-bottom: -2.75rem !important;
	}

	.sm\:-my-12 {
		margin-top: -3rem !important;
		margin-bottom: -3rem !important;
	}

	.sm\:-my-13 {
		margin-top: -3.25rem !important;
		margin-bottom: -3.25rem !important;
	}

	.sm\:-my-14 {
		margin-top: -3.5rem !important;
		margin-bottom: -3.5rem !important;
	}

	.sm\:-my-15 {
		margin-top: -3.75rem !important;
		margin-bottom: -3.75rem !important;
	}

	.sm\:-my-16 {
		margin-top: -4rem !important;
		margin-bottom: -4rem !important;
	}

	.sm\:-my-17 {
		margin-top: -4.25rem !important;
		margin-bottom: -4.25rem !important;
	}

	.sm\:-my-18 {
		margin-top: -4.5rem !important;
		margin-bottom: -4.5rem !important;
	}

	.sm\:-my-19 {
		margin-top: -4.75rem !important;
		margin-bottom: -4.75rem !important;
	}

	.sm\:-my-20 {
		margin-top: -5rem !important;
		margin-bottom: -5rem !important;
	}

	.sm\:-mt-1 {
		margin-top: -0.25rem !important;
	}

	.sm\:-mt-2 {
		margin-top: -0.5rem !important;
	}

	.sm\:-mt-3 {
		margin-top: -0.75rem !important;
	}

	.sm\:-mt-4 {
		margin-top: -1rem !important;
	}

	.sm\:-mt-5 {
		margin-top: -1.25rem !important;
	}

	.sm\:-mt-6 {
		margin-top: -1.5rem !important;
	}

	.sm\:-mt-7 {
		margin-top: -1.75rem !important;
	}

	.sm\:-mt-8 {
		margin-top: -2rem !important;
	}

	.sm\:-mt-9 {
		margin-top: -2.25rem !important;
	}

	.sm\:-mt-10 {
		margin-top: -2.5rem !important;
	}

	.sm\:-mt-11 {
		margin-top: -2.75rem !important;
	}

	.sm\:-mt-12 {
		margin-top: -3rem !important;
	}

	.sm\:-mt-13 {
		margin-top: -3.25rem !important;
	}

	.sm\:-mt-14 {
		margin-top: -3.5rem !important;
	}

	.sm\:-mt-15 {
		margin-top: -3.75rem !important;
	}

	.sm\:-mt-16 {
		margin-top: -4rem !important;
	}

	.sm\:-mt-17 {
		margin-top: -4.25rem !important;
	}

	.sm\:-mt-18 {
		margin-top: -4.5rem !important;
	}

	.sm\:-mt-19 {
		margin-top: -4.75rem !important;
	}

	.sm\:-mt-20 {
		margin-top: -5rem !important;
	}

	.sm\:-me-1 {
		margin-inline-end: -0.25rem !important;
	}

	.sm\:-me-2 {
		margin-inline-end: -0.5rem !important;
	}

	.sm\:-me-3 {
		margin-inline-end: -0.75rem !important;
	}

	.sm\:-me-4 {
		margin-inline-end: -1rem !important;
	}

	.sm\:-me-5 {
		margin-inline-end: -1.25rem !important;
	}

	.sm\:-me-6 {
		margin-inline-end: -1.5rem !important;
	}

	.sm\:-me-7 {
		margin-inline-end: -1.75rem !important;
	}

	.sm\:-me-8 {
		margin-inline-end: -2rem !important;
	}

	.sm\:-me-9 {
		margin-inline-end: -2.25rem !important;
	}

	.sm\:-me-10 {
		margin-inline-end: -2.5rem !important;
	}

	.sm\:-me-11 {
		margin-inline-end: -2.75rem !important;
	}

	.sm\:-me-12 {
		margin-inline-end: -3rem !important;
	}

	.sm\:-me-13 {
		margin-inline-end: -3.25rem !important;
	}

	.sm\:-me-14 {
		margin-inline-end: -3.5rem !important;
	}

	.sm\:-me-15 {
		margin-inline-end: -3.75rem !important;
	}

	.sm\:-me-16 {
		margin-inline-end: -4rem !important;
	}

	.sm\:-me-17 {
		margin-inline-end: -4.25rem !important;
	}

	.sm\:-me-18 {
		margin-inline-end: -4.5rem !important;
	}

	.sm\:-me-19 {
		margin-inline-end: -4.75rem !important;
	}

	.sm\:-me-20 {
		margin-inline-end: -5rem !important;
	}

	.sm\:-mb-1 {
		margin-bottom: -0.25rem !important;
	}

	.sm\:-mb-2 {
		margin-bottom: -0.5rem !important;
	}

	.sm\:-mb-3 {
		margin-bottom: -0.75rem !important;
	}

	.sm\:-mb-4 {
		margin-bottom: -1rem !important;
	}

	.sm\:-mb-5 {
		margin-bottom: -1.25rem !important;
	}

	.sm\:-mb-6 {
		margin-bottom: -1.5rem !important;
	}

	.sm\:-mb-7 {
		margin-bottom: -1.75rem !important;
	}

	.sm\:-mb-8 {
		margin-bottom: -2rem !important;
	}

	.sm\:-mb-9 {
		margin-bottom: -2.25rem !important;
	}

	.sm\:-mb-10 {
		margin-bottom: -2.5rem !important;
	}

	.sm\:-mb-11 {
		margin-bottom: -2.75rem !important;
	}

	.sm\:-mb-12 {
		margin-bottom: -3rem !important;
	}

	.sm\:-mb-13 {
		margin-bottom: -3.25rem !important;
	}

	.sm\:-mb-14 {
		margin-bottom: -3.5rem !important;
	}

	.sm\:-mb-15 {
		margin-bottom: -3.75rem !important;
	}

	.sm\:-mb-16 {
		margin-bottom: -4rem !important;
	}

	.sm\:-mb-17 {
		margin-bottom: -4.25rem !important;
	}

	.sm\:-mb-18 {
		margin-bottom: -4.5rem !important;
	}

	.sm\:-mb-19 {
		margin-bottom: -4.75rem !important;
	}

	.sm\:-mb-20 {
		margin-bottom: -5rem !important;
	}

	.sm\:-ms-1 {
		margin-inline-start: -0.25rem !important;
	}

	.sm\:-ms-2 {
		margin-inline-start: -0.5rem !important;
	}

	.sm\:-ms-3 {
		margin-inline-start: -0.75rem !important;
	}

	.sm\:-ms-4 {
		margin-inline-start: -1rem !important;
	}

	.sm\:-ms-5 {
		margin-inline-start: -1.25rem !important;
	}

	.sm\:-ms-6 {
		margin-inline-start: -1.5rem !important;
	}

	.sm\:-ms-7 {
		margin-inline-start: -1.75rem !important;
	}

	.sm\:-ms-8 {
		margin-inline-start: -2rem !important;
	}

	.sm\:-ms-9 {
		margin-inline-start: -2.25rem !important;
	}

	.sm\:-ms-10 {
		margin-inline-start: -2.5rem !important;
	}

	.sm\:-ms-11 {
		margin-inline-start: -2.75rem !important;
	}

	.sm\:-ms-12 {
		margin-inline-start: -3rem !important;
	}

	.sm\:-ms-13 {
		margin-inline-start: -3.25rem !important;
	}

	.sm\:-ms-14 {
		margin-inline-start: -3.5rem !important;
	}

	.sm\:-ms-15 {
		margin-inline-start: -3.75rem !important;
	}

	.sm\:-ms-16 {
		margin-inline-start: -4rem !important;
	}

	.sm\:-ms-17 {
		margin-inline-start: -4.25rem !important;
	}

	.sm\:-ms-18 {
		margin-inline-start: -4.5rem !important;
	}

	.sm\:-ms-19 {
		margin-inline-start: -4.75rem !important;
	}

	.sm\:-ms-20 {
		margin-inline-start: -5rem !important;
	}

	.sm\:p-0 {
		padding: 0 !important;
	}

	.sm\:p-1 {
		padding: 0.25rem !important;
	}

	.sm\:p-2 {
		padding: 0.5rem !important;
	}

	.sm\:p-3 {
		padding: 0.75rem !important;
	}

	.sm\:p-4 {
		padding: 1rem !important;
	}

	.sm\:p-5 {
		padding: 1.25rem !important;
	}

	.sm\:p-6 {
		padding: 1.5rem !important;
	}

	.sm\:p-7 {
		padding: 1.75rem !important;
	}

	.sm\:p-8 {
		padding: 2rem !important;
	}

	.sm\:p-9 {
		padding: 2.25rem !important;
	}

	.sm\:p-10 {
		padding: 2.5rem !important;
	}

	.sm\:p-11 {
		padding: 2.75rem !important;
	}

	.sm\:p-12 {
		padding: 3rem !important;
	}

	.sm\:p-13 {
		padding: 3.25rem !important;
	}

	.sm\:p-14 {
		padding: 3.5rem !important;
	}

	.sm\:p-15 {
		padding: 3.75rem !important;
	}

	.sm\:p-16 {
		padding: 4rem !important;
	}

	.sm\:p-17 {
		padding: 4.25rem !important;
	}

	.sm\:p-18 {
		padding: 4.5rem !important;
	}

	.sm\:p-19 {
		padding: 4.75rem !important;
	}

	.sm\:p-20 {
		padding: 5rem !important;
	}

	.sm\:px-0 {
		padding-inline-end: 0 !important;
		padding-inline-start: 0 !important;
	}

	.sm\:px-1 {
		padding-inline-end: 0.25rem !important;
		padding-inline-start: 0.25rem !important;
	}

	.sm\:px-2 {
		padding-inline-end: 0.5rem !important;
		padding-inline-start: 0.5rem !important;
	}

	.sm\:px-3 {
		padding-inline-end: 0.75rem !important;
		padding-inline-start: 0.75rem !important;
	}

	.sm\:px-4 {
		padding-inline-end: 1rem !important;
		padding-inline-start: 1rem !important;
	}

	.sm\:px-5 {
		padding-inline-end: 1.25rem !important;
		padding-inline-start: 1.25rem !important;
	}

	.sm\:px-6 {
		padding-inline-end: 1.5rem !important;
		padding-inline-start: 1.5rem !important;
	}

	.sm\:px-7 {
		padding-inline-end: 1.75rem !important;
		padding-inline-start: 1.75rem !important;
	}

	.sm\:px-8 {
		padding-inline-end: 2rem !important;
		padding-inline-start: 2rem !important;
	}

	.sm\:px-9 {
		padding-inline-end: 2.25rem !important;
		padding-inline-start: 2.25rem !important;
	}

	.sm\:px-10 {
		padding-inline-end: 2.5rem !important;
		padding-inline-start: 2.5rem !important;
	}

	.sm\:px-11 {
		padding-inline-end: 2.75rem !important;
		padding-inline-start: 2.75rem !important;
	}

	.sm\:px-12 {
		padding-inline-end: 3rem !important;
		padding-inline-start: 3rem !important;
	}

	.sm\:px-13 {
		padding-inline-end: 3.25rem !important;
		padding-inline-start: 3.25rem !important;
	}

	.sm\:px-14 {
		padding-inline-end: 3.5rem !important;
		padding-inline-start: 3.5rem !important;
	}

	.sm\:px-15 {
		padding-inline-end: 3.75rem !important;
		padding-inline-start: 3.75rem !important;
	}

	.sm\:px-16 {
		padding-inline-end: 4rem !important;
		padding-inline-start: 4rem !important;
	}

	.sm\:px-17 {
		padding-inline-end: 4.25rem !important;
		padding-inline-start: 4.25rem !important;
	}

	.sm\:px-18 {
		padding-inline-end: 4.5rem !important;
		padding-inline-start: 4.5rem !important;
	}

	.sm\:px-19 {
		padding-inline-end: 4.75rem !important;
		padding-inline-start: 4.75rem !important;
	}

	.sm\:px-20 {
		padding-inline-end: 5rem !important;
		padding-inline-start: 5rem !important;
	}

	.sm\:py-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.sm\:py-1 {
		padding-top: 0.25rem !important;
		padding-bottom: 0.25rem !important;
	}

	.sm\:py-2 {
		padding-top: 0.5rem !important;
		padding-bottom: 0.5rem !important;
	}

	.sm\:py-3 {
		padding-top: 0.75rem !important;
		padding-bottom: 0.75rem !important;
	}

	.sm\:py-4 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}

	.sm\:py-5 {
		padding-top: 1.25rem !important;
		padding-bottom: 1.25rem !important;
	}

	.sm\:py-6 {
		padding-top: 1.5rem !important;
		padding-bottom: 1.5rem !important;
	}

	.sm\:py-7 {
		padding-top: 1.75rem !important;
		padding-bottom: 1.75rem !important;
	}

	.sm\:py-8 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}

	.sm\:py-9 {
		padding-top: 2.25rem !important;
		padding-bottom: 2.25rem !important;
	}

	.sm\:py-10 {
		padding-top: 2.5rem !important;
		padding-bottom: 2.5rem !important;
	}

	.sm\:py-11 {
		padding-top: 2.75rem !important;
		padding-bottom: 2.75rem !important;
	}

	.sm\:py-12 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}

	.sm\:py-13 {
		padding-top: 3.25rem !important;
		padding-bottom: 3.25rem !important;
	}

	.sm\:py-14 {
		padding-top: 3.5rem !important;
		padding-bottom: 3.5rem !important;
	}

	.sm\:py-15 {
		padding-top: 3.75rem !important;
		padding-bottom: 3.75rem !important;
	}

	.sm\:py-16 {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
	}

	.sm\:py-17 {
		padding-top: 4.25rem !important;
		padding-bottom: 4.25rem !important;
	}

	.sm\:py-18 {
		padding-top: 4.5rem !important;
		padding-bottom: 4.5rem !important;
	}

	.sm\:py-19 {
		padding-top: 4.75rem !important;
		padding-bottom: 4.75rem !important;
	}

	.sm\:py-20 {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important;
	}

	.sm\:pt-0 {
		padding-top: 0 !important;
	}

	.sm\:pt-1 {
		padding-top: 0.25rem !important;
	}

	.sm\:pt-2 {
		padding-top: 0.5rem !important;
	}

	.sm\:pt-3 {
		padding-top: 0.75rem !important;
	}

	.sm\:pt-4 {
		padding-top: 1rem !important;
	}

	.sm\:pt-5 {
		padding-top: 1.25rem !important;
	}

	.sm\:pt-6 {
		padding-top: 1.5rem !important;
	}

	.sm\:pt-7 {
		padding-top: 1.75rem !important;
	}

	.sm\:pt-8 {
		padding-top: 2rem !important;
	}

	.sm\:pt-9 {
		padding-top: 2.25rem !important;
	}

	.sm\:pt-10 {
		padding-top: 2.5rem !important;
	}

	.sm\:pt-11 {
		padding-top: 2.75rem !important;
	}

	.sm\:pt-12 {
		padding-top: 3rem !important;
	}

	.sm\:pt-13 {
		padding-top: 3.25rem !important;
	}

	.sm\:pt-14 {
		padding-top: 3.5rem !important;
	}

	.sm\:pt-15 {
		padding-top: 3.75rem !important;
	}

	.sm\:pt-16 {
		padding-top: 4rem !important;
	}

	.sm\:pt-17 {
		padding-top: 4.25rem !important;
	}

	.sm\:pt-18 {
		padding-top: 4.5rem !important;
	}

	.sm\:pt-19 {
		padding-top: 4.75rem !important;
	}

	.sm\:pt-20 {
		padding-top: 5rem !important;
	}

	.sm\:pe-0 {
		padding-inline-end: 0 !important;
	}

	.sm\:pe-1 {
		padding-inline-end: 0.25rem !important;
	}

	.sm\:pe-2 {
		padding-inline-end: 0.5rem !important;
	}

	.sm\:pe-3 {
		padding-inline-end: 0.75rem !important;
	}

	.sm\:pe-4 {
		padding-inline-end: 1rem !important;
	}

	.sm\:pe-5 {
		padding-inline-end: 1.25rem !important;
	}

	.sm\:pe-6 {
		padding-inline-end: 1.5rem !important;
	}

	.sm\:pe-7 {
		padding-inline-end: 1.75rem !important;
	}

	.sm\:pe-8 {
		padding-inline-end: 2rem !important;
	}

	.sm\:pe-9 {
		padding-inline-end: 2.25rem !important;
	}

	.sm\:pe-10 {
		padding-inline-end: 2.5rem !important;
	}

	.sm\:pe-11 {
		padding-inline-end: 2.75rem !important;
	}

	.sm\:pe-12 {
		padding-inline-end: 3rem !important;
	}

	.sm\:pe-13 {
		padding-inline-end: 3.25rem !important;
	}

	.sm\:pe-14 {
		padding-inline-end: 3.5rem !important;
	}

	.sm\:pe-15 {
		padding-inline-end: 3.75rem !important;
	}

	.sm\:pe-16 {
		padding-inline-end: 4rem !important;
	}

	.sm\:pe-17 {
		padding-inline-end: 4.25rem !important;
	}

	.sm\:pe-18 {
		padding-inline-end: 4.5rem !important;
	}

	.sm\:pe-19 {
		padding-inline-end: 4.75rem !important;
	}

	.sm\:pe-20 {
		padding-inline-end: 5rem !important;
	}

	.sm\:pb-0 {
		padding-bottom: 0 !important;
	}

	.sm\:pb-1 {
		padding-bottom: 0.25rem !important;
	}

	.sm\:pb-2 {
		padding-bottom: 0.5rem !important;
	}

	.sm\:pb-3 {
		padding-bottom: 0.75rem !important;
	}

	.sm\:pb-4 {
		padding-bottom: 1rem !important;
	}

	.sm\:pb-5 {
		padding-bottom: 1.25rem !important;
	}

	.sm\:pb-6 {
		padding-bottom: 1.5rem !important;
	}

	.sm\:pb-7 {
		padding-bottom: 1.75rem !important;
	}

	.sm\:pb-8 {
		padding-bottom: 2rem !important;
	}

	.sm\:pb-9 {
		padding-bottom: 2.25rem !important;
	}

	.sm\:pb-10 {
		padding-bottom: 2.5rem !important;
	}

	.sm\:pb-11 {
		padding-bottom: 2.75rem !important;
	}

	.sm\:pb-12 {
		padding-bottom: 3rem !important;
	}

	.sm\:pb-13 {
		padding-bottom: 3.25rem !important;
	}

	.sm\:pb-14 {
		padding-bottom: 3.5rem !important;
	}

	.sm\:pb-15 {
		padding-bottom: 3.75rem !important;
	}

	.sm\:pb-16 {
		padding-bottom: 4rem !important;
	}

	.sm\:pb-17 {
		padding-bottom: 4.25rem !important;
	}

	.sm\:pb-18 {
		padding-bottom: 4.5rem !important;
	}

	.sm\:pb-19 {
		padding-bottom: 4.75rem !important;
	}

	.sm\:pb-20 {
		padding-bottom: 5rem !important;
	}

	.sm\:ps-0 {
		padding-inline-start: 0 !important;
	}

	.sm\:ps-1 {
		padding-inline-start: 0.25rem !important;
	}

	.sm\:ps-2 {
		padding-inline-start: 0.5rem !important;
	}

	.sm\:ps-3 {
		padding-inline-start: 0.75rem !important;
	}

	.sm\:ps-4 {
		padding-inline-start: 1rem !important;
	}

	.sm\:ps-5 {
		padding-inline-start: 1.25rem !important;
	}

	.sm\:ps-6 {
		padding-inline-start: 1.5rem !important;
	}

	.sm\:ps-7 {
		padding-inline-start: 1.75rem !important;
	}

	.sm\:ps-8 {
		padding-inline-start: 2rem !important;
	}

	.sm\:ps-9 {
		padding-inline-start: 2.25rem !important;
	}

	.sm\:ps-10 {
		padding-inline-start: 2.5rem !important;
	}

	.sm\:ps-11 {
		padding-inline-start: 2.75rem !important;
	}

	.sm\:ps-12 {
		padding-inline-start: 3rem !important;
	}

	.sm\:ps-13 {
		padding-inline-start: 3.25rem !important;
	}

	.sm\:ps-14 {
		padding-inline-start: 3.5rem !important;
	}

	.sm\:ps-15 {
		padding-inline-start: 3.75rem !important;
	}

	.sm\:ps-16 {
		padding-inline-start: 4rem !important;
	}

	.sm\:ps-17 {
		padding-inline-start: 4.25rem !important;
	}

	.sm\:ps-18 {
		padding-inline-start: 4.5rem !important;
	}

	.sm\:ps-19 {
		padding-inline-start: 4.75rem !important;
	}

	.sm\:ps-20 {
		padding-inline-start: 5rem !important;
	}
}

/* #endregion sm */

/* #region sm, custom */
@media (min-width: 37.5em) {}

/* #endregion sm, custom */

/* #region md */
@media (min-width: 52.5em) {
	.md\:m-0 {
		margin: 0 !important;
	}

	.md\:m-1 {
		margin: 0.25rem !important;
	}

	.md\:m-2 {
		margin: 0.5rem !important;
	}

	.md\:m-3 {
		margin: 0.75rem !important;
	}

	.md\:m-4 {
		margin: 1rem !important;
	}

	.md\:m-5 {
		margin: 1.25rem !important;
	}

	.md\:m-6 {
		margin: 1.5rem !important;
	}

	.md\:m-7 {
		margin: 1.75rem !important;
	}

	.md\:m-8 {
		margin: 2rem !important;
	}

	.md\:m-9 {
		margin: 2.25rem !important;
	}

	.md\:m-10 {
		margin: 2.5rem !important;
	}

	.md\:m-11 {
		margin: 2.75rem !important;
	}

	.md\:m-12 {
		margin: 3rem !important;
	}

	.md\:m-13 {
		margin: 3.25rem !important;
	}

	.md\:m-14 {
		margin: 3.5rem !important;
	}

	.md\:m-15 {
		margin: 3.75rem !important;
	}

	.md\:m-16 {
		margin: 4rem !important;
	}

	.md\:m-17 {
		margin: 4.25rem !important;
	}

	.md\:m-18 {
		margin: 4.5rem !important;
	}

	.md\:m-19 {
		margin: 4.75rem !important;
	}

	.md\:m-20 {
		margin: 5rem !important;
	}

	.md\:m-auto {
		margin: auto !important;
	}

	.md\:mx-0 {
		margin-inline-end: 0 !important;
		margin-inline-start: 0 !important;
	}

	.md\:mx-1 {
		margin-inline-end: 0.25rem !important;
		margin-inline-start: 0.25rem !important;
	}

	.md\:mx-2 {
		margin-inline-end: 0.5rem !important;
		margin-inline-start: 0.5rem !important;
	}

	.md\:mx-3 {
		margin-inline-end: 0.75rem !important;
		margin-inline-start: 0.75rem !important;
	}

	.md\:mx-4 {
		margin-inline-end: 1rem !important;
		margin-inline-start: 1rem !important;
	}

	.md\:mx-5 {
		margin-inline-end: 1.25rem !important;
		margin-inline-start: 1.25rem !important;
	}

	.md\:mx-6 {
		margin-inline-end: 1.5rem !important;
		margin-inline-start: 1.5rem !important;
	}

	.md\:mx-7 {
		margin-inline-end: 1.75rem !important;
		margin-inline-start: 1.75rem !important;
	}

	.md\:mx-8 {
		margin-inline-end: 2rem !important;
		margin-inline-start: 2rem !important;
	}

	.md\:mx-9 {
		margin-inline-end: 2.25rem !important;
		margin-inline-start: 2.25rem !important;
	}

	.md\:mx-10 {
		margin-inline-end: 2.5rem !important;
		margin-inline-start: 2.5rem !important;
	}

	.md\:mx-11 {
		margin-inline-end: 2.75rem !important;
		margin-inline-start: 2.75rem !important;
	}

	.md\:mx-12 {
		margin-inline-end: 3rem !important;
		margin-inline-start: 3rem !important;
	}

	.md\:mx-13 {
		margin-inline-end: 3.25rem !important;
		margin-inline-start: 3.25rem !important;
	}

	.md\:mx-14 {
		margin-inline-end: 3.5rem !important;
		margin-inline-start: 3.5rem !important;
	}

	.md\:mx-15 {
		margin-inline-end: 3.75rem !important;
		margin-inline-start: 3.75rem !important;
	}

	.md\:mx-16 {
		margin-inline-end: 4rem !important;
		margin-inline-start: 4rem !important;
	}

	.md\:mx-17 {
		margin-inline-end: 4.25rem !important;
		margin-inline-start: 4.25rem !important;
	}

	.md\:mx-18 {
		margin-inline-end: 4.5rem !important;
		margin-inline-start: 4.5rem !important;
	}

	.md\:mx-19 {
		margin-inline-end: 4.75rem !important;
		margin-inline-start: 4.75rem !important;
	}

	.md\:mx-20 {
		margin-inline-end: 5rem !important;
		margin-inline-start: 5rem !important;
	}

	.md\:mx-auto {
		margin-inline-end: auto !important;
		margin-inline-start: auto !important;
	}

	.md\:my-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.md\:my-1 {
		margin-top: 0.25rem !important;
		margin-bottom: 0.25rem !important;
	}

	.md\:my-2 {
		margin-top: 0.5rem !important;
		margin-bottom: 0.5rem !important;
	}

	.md\:my-3 {
		margin-top: 0.75rem !important;
		margin-bottom: 0.75rem !important;
	}

	.md\:my-4 {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important;
	}

	.md\:my-5 {
		margin-top: 1.25rem !important;
		margin-bottom: 1.25rem !important;
	}

	.md\:my-6 {
		margin-top: 1.5rem !important;
		margin-bottom: 1.5rem !important;
	}

	.md\:my-7 {
		margin-top: 1.75rem !important;
		margin-bottom: 1.75rem !important;
	}

	.md\:my-8 {
		margin-top: 2rem !important;
		margin-bottom: 2rem !important;
	}

	.md\:my-9 {
		margin-top: 2.25rem !important;
		margin-bottom: 2.25rem !important;
	}

	.md\:my-10 {
		margin-top: 2.5rem !important;
		margin-bottom: 2.5rem !important;
	}

	.md\:my-11 {
		margin-top: 2.75rem !important;
		margin-bottom: 2.75rem !important;
	}

	.md\:my-12 {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important;
	}

	.md\:my-13 {
		margin-top: 3.25rem !important;
		margin-bottom: 3.25rem !important;
	}

	.md\:my-14 {
		margin-top: 3.5rem !important;
		margin-bottom: 3.5rem !important;
	}

	.md\:my-15 {
		margin-top: 3.75rem !important;
		margin-bottom: 3.75rem !important;
	}

	.md\:my-16 {
		margin-top: 4rem !important;
		margin-bottom: 4rem !important;
	}

	.md\:my-17 {
		margin-top: 4.25rem !important;
		margin-bottom: 4.25rem !important;
	}

	.md\:my-18 {
		margin-top: 4.5rem !important;
		margin-bottom: 4.5rem !important;
	}

	.md\:my-19 {
		margin-top: 4.75rem !important;
		margin-bottom: 4.75rem !important;
	}

	.md\:my-20 {
		margin-top: 5rem !important;
		margin-bottom: 5rem !important;
	}

	.md\:my-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}

	.md\:mt-0 {
		margin-top: 0 !important;
	}

	.md\:mt-1 {
		margin-top: 0.25rem !important;
	}

	.md\:mt-2 {
		margin-top: 0.5rem !important;
	}

	.md\:mt-3 {
		margin-top: 0.75rem !important;
	}

	.md\:mt-4 {
		margin-top: 1rem !important;
	}

	.md\:mt-5 {
		margin-top: 1.25rem !important;
	}

	.md\:mt-6 {
		margin-top: 1.5rem !important;
	}

	.md\:mt-7 {
		margin-top: 1.75rem !important;
	}

	.md\:mt-8 {
		margin-top: 2rem !important;
	}

	.md\:mt-9 {
		margin-top: 2.25rem !important;
	}

	.md\:mt-10 {
		margin-top: 2.5rem !important;
	}

	.md\:mt-11 {
		margin-top: 2.75rem !important;
	}

	.md\:mt-12 {
		margin-top: 3rem !important;
	}

	.md\:mt-13 {
		margin-top: 3.25rem !important;
	}

	.md\:mt-14 {
		margin-top: 3.5rem !important;
	}

	.md\:mt-15 {
		margin-top: 3.75rem !important;
	}

	.md\:mt-16 {
		margin-top: 4rem !important;
	}

	.md\:mt-17 {
		margin-top: 4.25rem !important;
	}

	.md\:mt-18 {
		margin-top: 4.5rem !important;
	}

	.md\:mt-19 {
		margin-top: 4.75rem !important;
	}

	.md\:mt-20 {
		margin-top: 5rem !important;
	}

	.md\:mt-auto {
		margin-top: auto !important;
	}

	.md\:me-0 {
		margin-inline-end: 0 !important;
	}

	.md\:me-1 {
		margin-inline-end: 0.25rem !important;
	}

	.md\:me-2 {
		margin-inline-end: 0.5rem !important;
	}

	.md\:me-3 {
		margin-inline-end: 0.75rem !important;
	}

	.md\:me-4 {
		margin-inline-end: 1rem !important;
	}

	.md\:me-5 {
		margin-inline-end: 1.25rem !important;
	}

	.md\:me-6 {
		margin-inline-end: 1.5rem !important;
	}

	.md\:me-7 {
		margin-inline-end: 1.75rem !important;
	}

	.md\:me-8 {
		margin-inline-end: 2rem !important;
	}

	.md\:me-9 {
		margin-inline-end: 2.25rem !important;
	}

	.md\:me-10 {
		margin-inline-end: 2.5rem !important;
	}

	.md\:me-11 {
		margin-inline-end: 2.75rem !important;
	}

	.md\:me-12 {
		margin-inline-end: 3rem !important;
	}

	.md\:me-13 {
		margin-inline-end: 3.25rem !important;
	}

	.md\:me-14 {
		margin-inline-end: 3.5rem !important;
	}

	.md\:me-15 {
		margin-inline-end: 3.75rem !important;
	}

	.md\:me-16 {
		margin-inline-end: 4rem !important;
	}

	.md\:me-17 {
		margin-inline-end: 4.25rem !important;
	}

	.md\:me-18 {
		margin-inline-end: 4.5rem !important;
	}

	.md\:me-19 {
		margin-inline-end: 4.75rem !important;
	}

	.md\:me-20 {
		margin-inline-end: 5rem !important;
	}

	.md\:me-auto {
		margin-inline-end: auto !important;
	}

	.md\:mb-0 {
		margin-bottom: 0 !important;
	}

	.md\:mb-1 {
		margin-bottom: 0.25rem !important;
	}

	.md\:mb-2 {
		margin-bottom: 0.5rem !important;
	}

	.md\:mb-3 {
		margin-bottom: 0.75rem !important;
	}

	.md\:mb-4 {
		margin-bottom: 1rem !important;
	}

	.md\:mb-5 {
		margin-bottom: 1.25rem !important;
	}

	.md\:mb-6 {
		margin-bottom: 1.5rem !important;
	}

	.md\:mb-7 {
		margin-bottom: 1.75rem !important;
	}

	.md\:mb-8 {
		margin-bottom: 2rem !important;
	}

	.md\:mb-9 {
		margin-bottom: 2.25rem !important;
	}

	.md\:mb-10 {
		margin-bottom: 2.5rem !important;
	}

	.md\:mb-11 {
		margin-bottom: 2.75rem !important;
	}

	.md\:mb-12 {
		margin-bottom: 3rem !important;
	}

	.md\:mb-13 {
		margin-bottom: 3.25rem !important;
	}

	.md\:mb-14 {
		margin-bottom: 3.5rem !important;
	}

	.md\:mb-15 {
		margin-bottom: 3.75rem !important;
	}

	.md\:mb-16 {
		margin-bottom: 4rem !important;
	}

	.md\:mb-17 {
		margin-bottom: 4.25rem !important;
	}

	.md\:mb-18 {
		margin-bottom: 4.5rem !important;
	}

	.md\:mb-19 {
		margin-bottom: 4.75rem !important;
	}

	.md\:mb-20 {
		margin-bottom: 5rem !important;
	}

	.md\:mb-auto {
		margin-bottom: auto !important;
	}

	.md\:ms-0 {
		margin-inline-start: 0 !important;
	}

	.md\:ms-1 {
		margin-inline-start: 0.25rem !important;
	}

	.md\:ms-2 {
		margin-inline-start: 0.5rem !important;
	}

	.md\:ms-3 {
		margin-inline-start: 0.75rem !important;
	}

	.md\:ms-4 {
		margin-inline-start: 1rem !important;
	}

	.md\:ms-5 {
		margin-inline-start: 1.25rem !important;
	}

	.md\:ms-6 {
		margin-inline-start: 1.5rem !important;
	}

	.md\:ms-7 {
		margin-inline-start: 1.75rem !important;
	}

	.md\:ms-8 {
		margin-inline-start: 2rem !important;
	}

	.md\:ms-9 {
		margin-inline-start: 2.25rem !important;
	}

	.md\:ms-10 {
		margin-inline-start: 2.5rem !important;
	}

	.md\:ms-11 {
		margin-inline-start: 2.75rem !important;
	}

	.md\:ms-12 {
		margin-inline-start: 3rem !important;
	}

	.md\:ms-13 {
		margin-inline-start: 3.25rem !important;
	}

	.md\:ms-14 {
		margin-inline-start: 3.5rem !important;
	}

	.md\:ms-15 {
		margin-inline-start: 3.75rem !important;
	}

	.md\:ms-16 {
		margin-inline-start: 4rem !important;
	}

	.md\:ms-17 {
		margin-inline-start: 4.25rem !important;
	}

	.md\:ms-18 {
		margin-inline-start: 4.5rem !important;
	}

	.md\:ms-19 {
		margin-inline-start: 4.75rem !important;
	}

	.md\:ms-20 {
		margin-inline-start: 5rem !important;
	}

	.md\:ms-auto {
		margin-inline-start: auto !important;
	}

	.md\:-m-1 {
		margin: -0.25rem !important;
	}

	.md\:-m-2 {
		margin: -0.5rem !important;
	}

	.md\:-m-3 {
		margin: -0.75rem !important;
	}

	.md\:-m-4 {
		margin: -1rem !important;
	}

	.md\:-m-5 {
		margin: -1.25rem !important;
	}

	.md\:-m-6 {
		margin: -1.5rem !important;
	}

	.md\:-m-7 {
		margin: -1.75rem !important;
	}

	.md\:-m-8 {
		margin: -2rem !important;
	}

	.md\:-m-9 {
		margin: -2.25rem !important;
	}

	.md\:-m-10 {
		margin: -2.5rem !important;
	}

	.md\:-m-11 {
		margin: -2.75rem !important;
	}

	.md\:-m-12 {
		margin: -3rem !important;
	}

	.md\:-m-13 {
		margin: -3.25rem !important;
	}

	.md\:-m-14 {
		margin: -3.5rem !important;
	}

	.md\:-m-15 {
		margin: -3.75rem !important;
	}

	.md\:-m-16 {
		margin: -4rem !important;
	}

	.md\:-m-17 {
		margin: -4.25rem !important;
	}

	.md\:-m-18 {
		margin: -4.5rem !important;
	}

	.md\:-m-19 {
		margin: -4.75rem !important;
	}

	.md\:-m-20 {
		margin: -5rem !important;
	}

	.md\:-mx-1 {
		margin-inline-end: -0.25rem !important;
		margin-inline-start: -0.25rem !important;
	}

	.md\:-mx-2 {
		margin-inline-end: -0.5rem !important;
		margin-inline-start: -0.5rem !important;
	}

	.md\:-mx-3 {
		margin-inline-end: -0.75rem !important;
		margin-inline-start: -0.75rem !important;
	}

	.md\:-mx-4 {
		margin-inline-end: -1rem !important;
		margin-inline-start: -1rem !important;
	}

	.md\:-mx-5 {
		margin-inline-end: -1.25rem !important;
		margin-inline-start: -1.25rem !important;
	}

	.md\:-mx-6 {
		margin-inline-end: -1.5rem !important;
		margin-inline-start: -1.5rem !important;
	}

	.md\:-mx-7 {
		margin-inline-end: -1.75rem !important;
		margin-inline-start: -1.75rem !important;
	}

	.md\:-mx-8 {
		margin-inline-end: -2rem !important;
		margin-inline-start: -2rem !important;
	}

	.md\:-mx-9 {
		margin-inline-end: -2.25rem !important;
		margin-inline-start: -2.25rem !important;
	}

	.md\:-mx-10 {
		margin-inline-end: -2.5rem !important;
		margin-inline-start: -2.5rem !important;
	}

	.md\:-mx-11 {
		margin-inline-end: -2.75rem !important;
		margin-inline-start: -2.75rem !important;
	}

	.md\:-mx-12 {
		margin-inline-end: -3rem !important;
		margin-inline-start: -3rem !important;
	}

	.md\:-mx-13 {
		margin-inline-end: -3.25rem !important;
		margin-inline-start: -3.25rem !important;
	}

	.md\:-mx-14 {
		margin-inline-end: -3.5rem !important;
		margin-inline-start: -3.5rem !important;
	}

	.md\:-mx-15 {
		margin-inline-end: -3.75rem !important;
		margin-inline-start: -3.75rem !important;
	}

	.md\:-mx-16 {
		margin-inline-end: -4rem !important;
		margin-inline-start: -4rem !important;
	}

	.md\:-mx-17 {
		margin-inline-end: -4.25rem !important;
		margin-inline-start: -4.25rem !important;
	}

	.md\:-mx-18 {
		margin-inline-end: -4.5rem !important;
		margin-inline-start: -4.5rem !important;
	}

	.md\:-mx-19 {
		margin-inline-end: -4.75rem !important;
		margin-inline-start: -4.75rem !important;
	}

	.md\:-mx-20 {
		margin-inline-end: -5rem !important;
		margin-inline-start: -5rem !important;
	}

	.md\:-my-1 {
		margin-top: -0.25rem !important;
		margin-bottom: -0.25rem !important;
	}

	.md\:-my-2 {
		margin-top: -0.5rem !important;
		margin-bottom: -0.5rem !important;
	}

	.md\:-my-3 {
		margin-top: -0.75rem !important;
		margin-bottom: -0.75rem !important;
	}

	.md\:-my-4 {
		margin-top: -1rem !important;
		margin-bottom: -1rem !important;
	}

	.md\:-my-5 {
		margin-top: -1.25rem !important;
		margin-bottom: -1.25rem !important;
	}

	.md\:-my-6 {
		margin-top: -1.5rem !important;
		margin-bottom: -1.5rem !important;
	}

	.md\:-my-7 {
		margin-top: -1.75rem !important;
		margin-bottom: -1.75rem !important;
	}

	.md\:-my-8 {
		margin-top: -2rem !important;
		margin-bottom: -2rem !important;
	}

	.md\:-my-9 {
		margin-top: -2.25rem !important;
		margin-bottom: -2.25rem !important;
	}

	.md\:-my-10 {
		margin-top: -2.5rem !important;
		margin-bottom: -2.5rem !important;
	}

	.md\:-my-11 {
		margin-top: -2.75rem !important;
		margin-bottom: -2.75rem !important;
	}

	.md\:-my-12 {
		margin-top: -3rem !important;
		margin-bottom: -3rem !important;
	}

	.md\:-my-13 {
		margin-top: -3.25rem !important;
		margin-bottom: -3.25rem !important;
	}

	.md\:-my-14 {
		margin-top: -3.5rem !important;
		margin-bottom: -3.5rem !important;
	}

	.md\:-my-15 {
		margin-top: -3.75rem !important;
		margin-bottom: -3.75rem !important;
	}

	.md\:-my-16 {
		margin-top: -4rem !important;
		margin-bottom: -4rem !important;
	}

	.md\:-my-17 {
		margin-top: -4.25rem !important;
		margin-bottom: -4.25rem !important;
	}

	.md\:-my-18 {
		margin-top: -4.5rem !important;
		margin-bottom: -4.5rem !important;
	}

	.md\:-my-19 {
		margin-top: -4.75rem !important;
		margin-bottom: -4.75rem !important;
	}

	.md\:-my-20 {
		margin-top: -5rem !important;
		margin-bottom: -5rem !important;
	}

	.md\:-mt-1 {
		margin-top: -0.25rem !important;
	}

	.md\:-mt-2 {
		margin-top: -0.5rem !important;
	}

	.md\:-mt-3 {
		margin-top: -0.75rem !important;
	}

	.md\:-mt-4 {
		margin-top: -1rem !important;
	}

	.md\:-mt-5 {
		margin-top: -1.25rem !important;
	}

	.md\:-mt-6 {
		margin-top: -1.5rem !important;
	}

	.md\:-mt-7 {
		margin-top: -1.75rem !important;
	}

	.md\:-mt-8 {
		margin-top: -2rem !important;
	}

	.md\:-mt-9 {
		margin-top: -2.25rem !important;
	}

	.md\:-mt-10 {
		margin-top: -2.5rem !important;
	}

	.md\:-mt-11 {
		margin-top: -2.75rem !important;
	}

	.md\:-mt-12 {
		margin-top: -3rem !important;
	}

	.md\:-mt-13 {
		margin-top: -3.25rem !important;
	}

	.md\:-mt-14 {
		margin-top: -3.5rem !important;
	}

	.md\:-mt-15 {
		margin-top: -3.75rem !important;
	}

	.md\:-mt-16 {
		margin-top: -4rem !important;
	}

	.md\:-mt-17 {
		margin-top: -4.25rem !important;
	}

	.md\:-mt-18 {
		margin-top: -4.5rem !important;
	}

	.md\:-mt-19 {
		margin-top: -4.75rem !important;
	}

	.md\:-mt-20 {
		margin-top: -5rem !important;
	}

	.md\:-me-1 {
		margin-inline-end: -0.25rem !important;
	}

	.md\:-me-2 {
		margin-inline-end: -0.5rem !important;
	}

	.md\:-me-3 {
		margin-inline-end: -0.75rem !important;
	}

	.md\:-me-4 {
		margin-inline-end: -1rem !important;
	}

	.md\:-me-5 {
		margin-inline-end: -1.25rem !important;
	}

	.md\:-me-6 {
		margin-inline-end: -1.5rem !important;
	}

	.md\:-me-7 {
		margin-inline-end: -1.75rem !important;
	}

	.md\:-me-8 {
		margin-inline-end: -2rem !important;
	}

	.md\:-me-9 {
		margin-inline-end: -2.25rem !important;
	}

	.md\:-me-10 {
		margin-inline-end: -2.5rem !important;
	}

	.md\:-me-11 {
		margin-inline-end: -2.75rem !important;
	}

	.md\:-me-12 {
		margin-inline-end: -3rem !important;
	}

	.md\:-me-13 {
		margin-inline-end: -3.25rem !important;
	}

	.md\:-me-14 {
		margin-inline-end: -3.5rem !important;
	}

	.md\:-me-15 {
		margin-inline-end: -3.75rem !important;
	}

	.md\:-me-16 {
		margin-inline-end: -4rem !important;
	}

	.md\:-me-17 {
		margin-inline-end: -4.25rem !important;
	}

	.md\:-me-18 {
		margin-inline-end: -4.5rem !important;
	}

	.md\:-me-19 {
		margin-inline-end: -4.75rem !important;
	}

	.md\:-me-20 {
		margin-inline-end: -5rem !important;
	}

	.md\:-mb-1 {
		margin-bottom: -0.25rem !important;
	}

	.md\:-mb-2 {
		margin-bottom: -0.5rem !important;
	}

	.md\:-mb-3 {
		margin-bottom: -0.75rem !important;
	}

	.md\:-mb-4 {
		margin-bottom: -1rem !important;
	}

	.md\:-mb-5 {
		margin-bottom: -1.25rem !important;
	}

	.md\:-mb-6 {
		margin-bottom: -1.5rem !important;
	}

	.md\:-mb-7 {
		margin-bottom: -1.75rem !important;
	}

	.md\:-mb-8 {
		margin-bottom: -2rem !important;
	}

	.md\:-mb-9 {
		margin-bottom: -2.25rem !important;
	}

	.md\:-mb-10 {
		margin-bottom: -2.5rem !important;
	}

	.md\:-mb-11 {
		margin-bottom: -2.75rem !important;
	}

	.md\:-mb-12 {
		margin-bottom: -3rem !important;
	}

	.md\:-mb-13 {
		margin-bottom: -3.25rem !important;
	}

	.md\:-mb-14 {
		margin-bottom: -3.5rem !important;
	}

	.md\:-mb-15 {
		margin-bottom: -3.75rem !important;
	}

	.md\:-mb-16 {
		margin-bottom: -4rem !important;
	}

	.md\:-mb-17 {
		margin-bottom: -4.25rem !important;
	}

	.md\:-mb-18 {
		margin-bottom: -4.5rem !important;
	}

	.md\:-mb-19 {
		margin-bottom: -4.75rem !important;
	}

	.md\:-mb-20 {
		margin-bottom: -5rem !important;
	}

	.md\:-ms-1 {
		margin-inline-start: -0.25rem !important;
	}

	.md\:-ms-2 {
		margin-inline-start: -0.5rem !important;
	}

	.md\:-ms-3 {
		margin-inline-start: -0.75rem !important;
	}

	.md\:-ms-4 {
		margin-inline-start: -1rem !important;
	}

	.md\:-ms-5 {
		margin-inline-start: -1.25rem !important;
	}

	.md\:-ms-6 {
		margin-inline-start: -1.5rem !important;
	}

	.md\:-ms-7 {
		margin-inline-start: -1.75rem !important;
	}

	.md\:-ms-8 {
		margin-inline-start: -2rem !important;
	}

	.md\:-ms-9 {
		margin-inline-start: -2.25rem !important;
	}

	.md\:-ms-10 {
		margin-inline-start: -2.5rem !important;
	}

	.md\:-ms-11 {
		margin-inline-start: -2.75rem !important;
	}

	.md\:-ms-12 {
		margin-inline-start: -3rem !important;
	}

	.md\:-ms-13 {
		margin-inline-start: -3.25rem !important;
	}

	.md\:-ms-14 {
		margin-inline-start: -3.5rem !important;
	}

	.md\:-ms-15 {
		margin-inline-start: -3.75rem !important;
	}

	.md\:-ms-16 {
		margin-inline-start: -4rem !important;
	}

	.md\:-ms-17 {
		margin-inline-start: -4.25rem !important;
	}

	.md\:-ms-18 {
		margin-inline-start: -4.5rem !important;
	}

	.md\:-ms-19 {
		margin-inline-start: -4.75rem !important;
	}

	.md\:-ms-20 {
		margin-inline-start: -5rem !important;
	}

	.md\:p-0 {
		padding: 0 !important;
	}

	.md\:p-1 {
		padding: 0.25rem !important;
	}

	.md\:p-2 {
		padding: 0.5rem !important;
	}

	.md\:p-3 {
		padding: 0.75rem !important;
	}

	.md\:p-4 {
		padding: 1rem !important;
	}

	.md\:p-5 {
		padding: 1.25rem !important;
	}

	.md\:p-6 {
		padding: 1.5rem !important;
	}

	.md\:p-7 {
		padding: 1.75rem !important;
	}

	.md\:p-8 {
		padding: 2rem !important;
	}

	.md\:p-9 {
		padding: 2.25rem !important;
	}

	.md\:p-10 {
		padding: 2.5rem !important;
	}

	.md\:p-11 {
		padding: 2.75rem !important;
	}

	.md\:p-12 {
		padding: 3rem !important;
	}

	.md\:p-13 {
		padding: 3.25rem !important;
	}

	.md\:p-14 {
		padding: 3.5rem !important;
	}

	.md\:p-15 {
		padding: 3.75rem !important;
	}

	.md\:p-16 {
		padding: 4rem !important;
	}

	.md\:p-17 {
		padding: 4.25rem !important;
	}

	.md\:p-18 {
		padding: 4.5rem !important;
	}

	.md\:p-19 {
		padding: 4.75rem !important;
	}

	.md\:p-20 {
		padding: 5rem !important;
	}

	.md\:px-0 {
		padding-inline-end: 0 !important;
		padding-inline-start: 0 !important;
	}

	.md\:px-1 {
		padding-inline-end: 0.25rem !important;
		padding-inline-start: 0.25rem !important;
	}

	.md\:px-2 {
		padding-inline-end: 0.5rem !important;
		padding-inline-start: 0.5rem !important;
	}

	.md\:px-3 {
		padding-inline-end: 0.75rem !important;
		padding-inline-start: 0.75rem !important;
	}

	.md\:px-4 {
		padding-inline-end: 1rem !important;
		padding-inline-start: 1rem !important;
	}

	.md\:px-5 {
		padding-inline-end: 1.25rem !important;
		padding-inline-start: 1.25rem !important;
	}

	.md\:px-6 {
		padding-inline-end: 1.5rem !important;
		padding-inline-start: 1.5rem !important;
	}

	.md\:px-7 {
		padding-inline-end: 1.75rem !important;
		padding-inline-start: 1.75rem !important;
	}

	.md\:px-8 {
		padding-inline-end: 2rem !important;
		padding-inline-start: 2rem !important;
	}

	.md\:px-9 {
		padding-inline-end: 2.25rem !important;
		padding-inline-start: 2.25rem !important;
	}

	.md\:px-10 {
		padding-inline-end: 2.5rem !important;
		padding-inline-start: 2.5rem !important;
	}

	.md\:px-11 {
		padding-inline-end: 2.75rem !important;
		padding-inline-start: 2.75rem !important;
	}

	.md\:px-12 {
		padding-inline-end: 3rem !important;
		padding-inline-start: 3rem !important;
	}

	.md\:px-13 {
		padding-inline-end: 3.25rem !important;
		padding-inline-start: 3.25rem !important;
	}

	.md\:px-14 {
		padding-inline-end: 3.5rem !important;
		padding-inline-start: 3.5rem !important;
	}

	.md\:px-15 {
		padding-inline-end: 3.75rem !important;
		padding-inline-start: 3.75rem !important;
	}

	.md\:px-16 {
		padding-inline-end: 4rem !important;
		padding-inline-start: 4rem !important;
	}

	.md\:px-17 {
		padding-inline-end: 4.25rem !important;
		padding-inline-start: 4.25rem !important;
	}

	.md\:px-18 {
		padding-inline-end: 4.5rem !important;
		padding-inline-start: 4.5rem !important;
	}

	.md\:px-19 {
		padding-inline-end: 4.75rem !important;
		padding-inline-start: 4.75rem !important;
	}

	.md\:px-20 {
		padding-inline-end: 5rem !important;
		padding-inline-start: 5rem !important;
	}

	.md\:py-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.md\:py-1 {
		padding-top: 0.25rem !important;
		padding-bottom: 0.25rem !important;
	}

	.md\:py-2 {
		padding-top: 0.5rem !important;
		padding-bottom: 0.5rem !important;
	}

	.md\:py-3 {
		padding-top: 0.75rem !important;
		padding-bottom: 0.75rem !important;
	}

	.md\:py-4 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}

	.md\:py-5 {
		padding-top: 1.25rem !important;
		padding-bottom: 1.25rem !important;
	}

	.md\:py-6 {
		padding-top: 1.5rem !important;
		padding-bottom: 1.5rem !important;
	}

	.md\:py-7 {
		padding-top: 1.75rem !important;
		padding-bottom: 1.75rem !important;
	}

	.md\:py-8 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}

	.md\:py-9 {
		padding-top: 2.25rem !important;
		padding-bottom: 2.25rem !important;
	}

	.md\:py-10 {
		padding-top: 2.5rem !important;
		padding-bottom: 2.5rem !important;
	}

	.md\:py-11 {
		padding-top: 2.75rem !important;
		padding-bottom: 2.75rem !important;
	}

	.md\:py-12 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}

	.md\:py-13 {
		padding-top: 3.25rem !important;
		padding-bottom: 3.25rem !important;
	}

	.md\:py-14 {
		padding-top: 3.5rem !important;
		padding-bottom: 3.5rem !important;
	}

	.md\:py-15 {
		padding-top: 3.75rem !important;
		padding-bottom: 3.75rem !important;
	}

	.md\:py-16 {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
	}

	.md\:py-17 {
		padding-top: 4.25rem !important;
		padding-bottom: 4.25rem !important;
	}

	.md\:py-18 {
		padding-top: 4.5rem !important;
		padding-bottom: 4.5rem !important;
	}

	.md\:py-19 {
		padding-top: 4.75rem !important;
		padding-bottom: 4.75rem !important;
	}

	.md\:py-20 {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important;
	}

	.md\:pt-0 {
		padding-top: 0 !important;
	}

	.md\:pt-1 {
		padding-top: 0.25rem !important;
	}

	.md\:pt-2 {
		padding-top: 0.5rem !important;
	}

	.md\:pt-3 {
		padding-top: 0.75rem !important;
	}

	.md\:pt-4 {
		padding-top: 1rem !important;
	}

	.md\:pt-5 {
		padding-top: 1.25rem !important;
	}

	.md\:pt-6 {
		padding-top: 1.5rem !important;
	}

	.md\:pt-7 {
		padding-top: 1.75rem !important;
	}

	.md\:pt-8 {
		padding-top: 2rem !important;
	}

	.md\:pt-9 {
		padding-top: 2.25rem !important;
	}

	.md\:pt-10 {
		padding-top: 2.5rem !important;
	}

	.md\:pt-11 {
		padding-top: 2.75rem !important;
	}

	.md\:pt-12 {
		padding-top: 3rem !important;
	}

	.md\:pt-13 {
		padding-top: 3.25rem !important;
	}

	.md\:pt-14 {
		padding-top: 3.5rem !important;
	}

	.md\:pt-15 {
		padding-top: 3.75rem !important;
	}

	.md\:pt-16 {
		padding-top: 4rem !important;
	}

	.md\:pt-17 {
		padding-top: 4.25rem !important;
	}

	.md\:pt-18 {
		padding-top: 4.5rem !important;
	}

	.md\:pt-19 {
		padding-top: 4.75rem !important;
	}

	.md\:pt-20 {
		padding-top: 5rem !important;
	}

	.md\:pe-0 {
		padding-inline-end: 0 !important;
	}

	.md\:pe-1 {
		padding-inline-end: 0.25rem !important;
	}

	.md\:pe-2 {
		padding-inline-end: 0.5rem !important;
	}

	.md\:pe-3 {
		padding-inline-end: 0.75rem !important;
	}

	.md\:pe-4 {
		padding-inline-end: 1rem !important;
	}

	.md\:pe-5 {
		padding-inline-end: 1.25rem !important;
	}

	.md\:pe-6 {
		padding-inline-end: 1.5rem !important;
	}

	.md\:pe-7 {
		padding-inline-end: 1.75rem !important;
	}

	.md\:pe-8 {
		padding-inline-end: 2rem !important;
	}

	.md\:pe-9 {
		padding-inline-end: 2.25rem !important;
	}

	.md\:pe-10 {
		padding-inline-end: 2.5rem !important;
	}

	.md\:pe-11 {
		padding-inline-end: 2.75rem !important;
	}

	.md\:pe-12 {
		padding-inline-end: 3rem !important;
	}

	.md\:pe-13 {
		padding-inline-end: 3.25rem !important;
	}

	.md\:pe-14 {
		padding-inline-end: 3.5rem !important;
	}

	.md\:pe-15 {
		padding-inline-end: 3.75rem !important;
	}

	.md\:pe-16 {
		padding-inline-end: 4rem !important;
	}

	.md\:pe-17 {
		padding-inline-end: 4.25rem !important;
	}

	.md\:pe-18 {
		padding-inline-end: 4.5rem !important;
	}

	.md\:pe-19 {
		padding-inline-end: 4.75rem !important;
	}

	.md\:pe-20 {
		padding-inline-end: 5rem !important;
	}

	.md\:pb-0 {
		padding-bottom: 0 !important;
	}

	.md\:pb-1 {
		padding-bottom: 0.25rem !important;
	}

	.md\:pb-2 {
		padding-bottom: 0.5rem !important;
	}

	.md\:pb-3 {
		padding-bottom: 0.75rem !important;
	}

	.md\:pb-4 {
		padding-bottom: 1rem !important;
	}

	.md\:pb-5 {
		padding-bottom: 1.25rem !important;
	}

	.md\:pb-6 {
		padding-bottom: 1.5rem !important;
	}

	.md\:pb-7 {
		padding-bottom: 1.75rem !important;
	}

	.md\:pb-8 {
		padding-bottom: 2rem !important;
	}

	.md\:pb-9 {
		padding-bottom: 2.25rem !important;
	}

	.md\:pb-10 {
		padding-bottom: 2.5rem !important;
	}

	.md\:pb-11 {
		padding-bottom: 2.75rem !important;
	}

	.md\:pb-12 {
		padding-bottom: 3rem !important;
	}

	.md\:pb-13 {
		padding-bottom: 3.25rem !important;
	}

	.md\:pb-14 {
		padding-bottom: 3.5rem !important;
	}

	.md\:pb-15 {
		padding-bottom: 3.75rem !important;
	}

	.md\:pb-16 {
		padding-bottom: 4rem !important;
	}

	.md\:pb-17 {
		padding-bottom: 4.25rem !important;
	}

	.md\:pb-18 {
		padding-bottom: 4.5rem !important;
	}

	.md\:pb-19 {
		padding-bottom: 4.75rem !important;
	}

	.md\:pb-20 {
		padding-bottom: 5rem !important;
	}

	.md\:ps-0 {
		padding-inline-start: 0 !important;
	}

	.md\:ps-1 {
		padding-inline-start: 0.25rem !important;
	}

	.md\:ps-2 {
		padding-inline-start: 0.5rem !important;
	}

	.md\:ps-3 {
		padding-inline-start: 0.75rem !important;
	}

	.md\:ps-4 {
		padding-inline-start: 1rem !important;
	}

	.md\:ps-5 {
		padding-inline-start: 1.25rem !important;
	}

	.md\:ps-6 {
		padding-inline-start: 1.5rem !important;
	}

	.md\:ps-7 {
		padding-inline-start: 1.75rem !important;
	}

	.md\:ps-8 {
		padding-inline-start: 2rem !important;
	}

	.md\:ps-9 {
		padding-inline-start: 2.25rem !important;
	}

	.md\:ps-10 {
		padding-inline-start: 2.5rem !important;
	}

	.md\:ps-11 {
		padding-inline-start: 2.75rem !important;
	}

	.md\:ps-12 {
		padding-inline-start: 3rem !important;
	}

	.md\:ps-13 {
		padding-inline-start: 3.25rem !important;
	}

	.md\:ps-14 {
		padding-inline-start: 3.5rem !important;
	}

	.md\:ps-15 {
		padding-inline-start: 3.75rem !important;
	}

	.md\:ps-16 {
		padding-inline-start: 4rem !important;
	}

	.md\:ps-17 {
		padding-inline-start: 4.25rem !important;
	}

	.md\:ps-18 {
		padding-inline-start: 4.5rem !important;
	}

	.md\:ps-19 {
		padding-inline-start: 4.75rem !important;
	}

	.md\:ps-20 {
		padding-inline-start: 5rem !important;
	}
}

/* #endregion md */

/* #region md, custom */
@media (min-width: 52.5em) {}

/* #endregion md, custom */

/* #region lg */
@media (min-width: 75em) {
	.lg\:m-0 {
		margin: 0 !important;
	}

	.lg\:m-1 {
		margin: 0.25rem !important;
	}

	.lg\:m-2 {
		margin: 0.5rem !important;
	}

	.lg\:m-3 {
		margin: 0.75rem !important;
	}

	.lg\:m-4 {
		margin: 1rem !important;
	}

	.lg\:m-5 {
		margin: 1.25rem !important;
	}

	.lg\:m-6 {
		margin: 1.5rem !important;
	}

	.lg\:m-7 {
		margin: 1.75rem !important;
	}

	.lg\:m-8 {
		margin: 2rem !important;
	}

	.lg\:m-9 {
		margin: 2.25rem !important;
	}

	.lg\:m-10 {
		margin: 2.5rem !important;
	}

	.lg\:m-11 {
		margin: 2.75rem !important;
	}

	.lg\:m-12 {
		margin: 3rem !important;
	}

	.lg\:m-13 {
		margin: 3.25rem !important;
	}

	.lg\:m-14 {
		margin: 3.5rem !important;
	}

	.lg\:m-15 {
		margin: 3.75rem !important;
	}

	.lg\:m-16 {
		margin: 4rem !important;
	}

	.lg\:m-17 {
		margin: 4.25rem !important;
	}

	.lg\:m-18 {
		margin: 4.5rem !important;
	}

	.lg\:m-19 {
		margin: 4.75rem !important;
	}

	.lg\:m-20 {
		margin: 5rem !important;
	}

	.lg\:m-auto {
		margin: auto !important;
	}

	.lg\:mx-0 {
		margin-inline-end: 0 !important;
		margin-inline-start: 0 !important;
	}

	.lg\:mx-1 {
		margin-inline-end: 0.25rem !important;
		margin-inline-start: 0.25rem !important;
	}

	.lg\:mx-2 {
		margin-inline-end: 0.5rem !important;
		margin-inline-start: 0.5rem !important;
	}

	.lg\:mx-3 {
		margin-inline-end: 0.75rem !important;
		margin-inline-start: 0.75rem !important;
	}

	.lg\:mx-4 {
		margin-inline-end: 1rem !important;
		margin-inline-start: 1rem !important;
	}

	.lg\:mx-5 {
		margin-inline-end: 1.25rem !important;
		margin-inline-start: 1.25rem !important;
	}

	.lg\:mx-6 {
		margin-inline-end: 1.5rem !important;
		margin-inline-start: 1.5rem !important;
	}

	.lg\:mx-7 {
		margin-inline-end: 1.75rem !important;
		margin-inline-start: 1.75rem !important;
	}

	.lg\:mx-8 {
		margin-inline-end: 2rem !important;
		margin-inline-start: 2rem !important;
	}

	.lg\:mx-9 {
		margin-inline-end: 2.25rem !important;
		margin-inline-start: 2.25rem !important;
	}

	.lg\:mx-10 {
		margin-inline-end: 2.5rem !important;
		margin-inline-start: 2.5rem !important;
	}

	.lg\:mx-11 {
		margin-inline-end: 2.75rem !important;
		margin-inline-start: 2.75rem !important;
	}

	.lg\:mx-12 {
		margin-inline-end: 3rem !important;
		margin-inline-start: 3rem !important;
	}

	.lg\:mx-13 {
		margin-inline-end: 3.25rem !important;
		margin-inline-start: 3.25rem !important;
	}

	.lg\:mx-14 {
		margin-inline-end: 3.5rem !important;
		margin-inline-start: 3.5rem !important;
	}

	.lg\:mx-15 {
		margin-inline-end: 3.75rem !important;
		margin-inline-start: 3.75rem !important;
	}

	.lg\:mx-16 {
		margin-inline-end: 4rem !important;
		margin-inline-start: 4rem !important;
	}

	.lg\:mx-17 {
		margin-inline-end: 4.25rem !important;
		margin-inline-start: 4.25rem !important;
	}

	.lg\:mx-18 {
		margin-inline-end: 4.5rem !important;
		margin-inline-start: 4.5rem !important;
	}

	.lg\:mx-19 {
		margin-inline-end: 4.75rem !important;
		margin-inline-start: 4.75rem !important;
	}

	.lg\:mx-20 {
		margin-inline-end: 5rem !important;
		margin-inline-start: 5rem !important;
	}

	.lg\:mx-auto {
		margin-inline-end: auto !important;
		margin-inline-start: auto !important;
	}

	.lg\:my-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.lg\:my-1 {
		margin-top: 0.25rem !important;
		margin-bottom: 0.25rem !important;
	}

	.lg\:my-2 {
		margin-top: 0.5rem !important;
		margin-bottom: 0.5rem !important;
	}

	.lg\:my-3 {
		margin-top: 0.75rem !important;
		margin-bottom: 0.75rem !important;
	}

	.lg\:my-4 {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important;
	}

	.lg\:my-5 {
		margin-top: 1.25rem !important;
		margin-bottom: 1.25rem !important;
	}

	.lg\:my-6 {
		margin-top: 1.5rem !important;
		margin-bottom: 1.5rem !important;
	}

	.lg\:my-7 {
		margin-top: 1.75rem !important;
		margin-bottom: 1.75rem !important;
	}

	.lg\:my-8 {
		margin-top: 2rem !important;
		margin-bottom: 2rem !important;
	}

	.lg\:my-9 {
		margin-top: 2.25rem !important;
		margin-bottom: 2.25rem !important;
	}

	.lg\:my-10 {
		margin-top: 2.5rem !important;
		margin-bottom: 2.5rem !important;
	}

	.lg\:my-11 {
		margin-top: 2.75rem !important;
		margin-bottom: 2.75rem !important;
	}

	.lg\:my-12 {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important;
	}

	.lg\:my-13 {
		margin-top: 3.25rem !important;
		margin-bottom: 3.25rem !important;
	}

	.lg\:my-14 {
		margin-top: 3.5rem !important;
		margin-bottom: 3.5rem !important;
	}

	.lg\:my-15 {
		margin-top: 3.75rem !important;
		margin-bottom: 3.75rem !important;
	}

	.lg\:my-16 {
		margin-top: 4rem !important;
		margin-bottom: 4rem !important;
	}

	.lg\:my-17 {
		margin-top: 4.25rem !important;
		margin-bottom: 4.25rem !important;
	}

	.lg\:my-18 {
		margin-top: 4.5rem !important;
		margin-bottom: 4.5rem !important;
	}

	.lg\:my-19 {
		margin-top: 4.75rem !important;
		margin-bottom: 4.75rem !important;
	}

	.lg\:my-20 {
		margin-top: 5rem !important;
		margin-bottom: 5rem !important;
	}

	.lg\:my-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}

	.lg\:mt-0 {
		margin-top: 0 !important;
	}

	.lg\:mt-1 {
		margin-top: 0.25rem !important;
	}

	.lg\:mt-2 {
		margin-top: 0.5rem !important;
	}

	.lg\:mt-3 {
		margin-top: 0.75rem !important;
	}

	.lg\:mt-4 {
		margin-top: 1rem !important;
	}

	.lg\:mt-5 {
		margin-top: 1.25rem !important;
	}

	.lg\:mt-6 {
		margin-top: 1.5rem !important;
	}

	.lg\:mt-7 {
		margin-top: 1.75rem !important;
	}

	.lg\:mt-8 {
		margin-top: 2rem !important;
	}

	.lg\:mt-9 {
		margin-top: 2.25rem !important;
	}

	.lg\:mt-10 {
		margin-top: 2.5rem !important;
	}

	.lg\:mt-11 {
		margin-top: 2.75rem !important;
	}

	.lg\:mt-12 {
		margin-top: 3rem !important;
	}

	.lg\:mt-13 {
		margin-top: 3.25rem !important;
	}

	.lg\:mt-14 {
		margin-top: 3.5rem !important;
	}

	.lg\:mt-15 {
		margin-top: 3.75rem !important;
	}

	.lg\:mt-16 {
		margin-top: 4rem !important;
	}

	.lg\:mt-17 {
		margin-top: 4.25rem !important;
	}

	.lg\:mt-18 {
		margin-top: 4.5rem !important;
	}

	.lg\:mt-19 {
		margin-top: 4.75rem !important;
	}

	.lg\:mt-20 {
		margin-top: 5rem !important;
	}

	.lg\:mt-auto {
		margin-top: auto !important;
	}

	.lg\:me-0 {
		margin-inline-end: 0 !important;
	}

	.lg\:me-1 {
		margin-inline-end: 0.25rem !important;
	}

	.lg\:me-2 {
		margin-inline-end: 0.5rem !important;
	}

	.lg\:me-3 {
		margin-inline-end: 0.75rem !important;
	}

	.lg\:me-4 {
		margin-inline-end: 1rem !important;
	}

	.lg\:me-5 {
		margin-inline-end: 1.25rem !important;
	}

	.lg\:me-6 {
		margin-inline-end: 1.5rem !important;
	}

	.lg\:me-7 {
		margin-inline-end: 1.75rem !important;
	}

	.lg\:me-8 {
		margin-inline-end: 2rem !important;
	}

	.lg\:me-9 {
		margin-inline-end: 2.25rem !important;
	}

	.lg\:me-10 {
		margin-inline-end: 2.5rem !important;
	}

	.lg\:me-11 {
		margin-inline-end: 2.75rem !important;
	}

	.lg\:me-12 {
		margin-inline-end: 3rem !important;
	}

	.lg\:me-13 {
		margin-inline-end: 3.25rem !important;
	}

	.lg\:me-14 {
		margin-inline-end: 3.5rem !important;
	}

	.lg\:me-15 {
		margin-inline-end: 3.75rem !important;
	}

	.lg\:me-16 {
		margin-inline-end: 4rem !important;
	}

	.lg\:me-17 {
		margin-inline-end: 4.25rem !important;
	}

	.lg\:me-18 {
		margin-inline-end: 4.5rem !important;
	}

	.lg\:me-19 {
		margin-inline-end: 4.75rem !important;
	}

	.lg\:me-20 {
		margin-inline-end: 5rem !important;
	}

	.lg\:me-auto {
		margin-inline-end: auto !important;
	}

	.lg\:mb-0 {
		margin-bottom: 0 !important;
	}

	.lg\:mb-1 {
		margin-bottom: 0.25rem !important;
	}

	.lg\:mb-2 {
		margin-bottom: 0.5rem !important;
	}

	.lg\:mb-3 {
		margin-bottom: 0.75rem !important;
	}

	.lg\:mb-4 {
		margin-bottom: 1rem !important;
	}

	.lg\:mb-5 {
		margin-bottom: 1.25rem !important;
	}

	.lg\:mb-6 {
		margin-bottom: 1.5rem !important;
	}

	.lg\:mb-7 {
		margin-bottom: 1.75rem !important;
	}

	.lg\:mb-8 {
		margin-bottom: 2rem !important;
	}

	.lg\:mb-9 {
		margin-bottom: 2.25rem !important;
	}

	.lg\:mb-10 {
		margin-bottom: 2.5rem !important;
	}

	.lg\:mb-11 {
		margin-bottom: 2.75rem !important;
	}

	.lg\:mb-12 {
		margin-bottom: 3rem !important;
	}

	.lg\:mb-13 {
		margin-bottom: 3.25rem !important;
	}

	.lg\:mb-14 {
		margin-bottom: 3.5rem !important;
	}

	.lg\:mb-15 {
		margin-bottom: 3.75rem !important;
	}

	.lg\:mb-16 {
		margin-bottom: 4rem !important;
	}

	.lg\:mb-17 {
		margin-bottom: 4.25rem !important;
	}

	.lg\:mb-18 {
		margin-bottom: 4.5rem !important;
	}

	.lg\:mb-19 {
		margin-bottom: 4.75rem !important;
	}

	.lg\:mb-20 {
		margin-bottom: 5rem !important;
	}

	.lg\:mb-auto {
		margin-bottom: auto !important;
	}

	.lg\:ms-0 {
		margin-inline-start: 0 !important;
	}

	.lg\:ms-1 {
		margin-inline-start: 0.25rem !important;
	}

	.lg\:ms-2 {
		margin-inline-start: 0.5rem !important;
	}

	.lg\:ms-3 {
		margin-inline-start: 0.75rem !important;
	}

	.lg\:ms-4 {
		margin-inline-start: 1rem !important;
	}

	.lg\:ms-5 {
		margin-inline-start: 1.25rem !important;
	}

	.lg\:ms-6 {
		margin-inline-start: 1.5rem !important;
	}

	.lg\:ms-7 {
		margin-inline-start: 1.75rem !important;
	}

	.lg\:ms-8 {
		margin-inline-start: 2rem !important;
	}

	.lg\:ms-9 {
		margin-inline-start: 2.25rem !important;
	}

	.lg\:ms-10 {
		margin-inline-start: 2.5rem !important;
	}

	.lg\:ms-11 {
		margin-inline-start: 2.75rem !important;
	}

	.lg\:ms-12 {
		margin-inline-start: 3rem !important;
	}

	.lg\:ms-13 {
		margin-inline-start: 3.25rem !important;
	}

	.lg\:ms-14 {
		margin-inline-start: 3.5rem !important;
	}

	.lg\:ms-15 {
		margin-inline-start: 3.75rem !important;
	}

	.lg\:ms-16 {
		margin-inline-start: 4rem !important;
	}

	.lg\:ms-17 {
		margin-inline-start: 4.25rem !important;
	}

	.lg\:ms-18 {
		margin-inline-start: 4.5rem !important;
	}

	.lg\:ms-19 {
		margin-inline-start: 4.75rem !important;
	}

	.lg\:ms-20 {
		margin-inline-start: 5rem !important;
	}

	.lg\:ms-auto {
		margin-inline-start: auto !important;
	}

	.lg\:-m-1 {
		margin: -0.25rem !important;
	}

	.lg\:-m-2 {
		margin: -0.5rem !important;
	}

	.lg\:-m-3 {
		margin: -0.75rem !important;
	}

	.lg\:-m-4 {
		margin: -1rem !important;
	}

	.lg\:-m-5 {
		margin: -1.25rem !important;
	}

	.lg\:-m-6 {
		margin: -1.5rem !important;
	}

	.lg\:-m-7 {
		margin: -1.75rem !important;
	}

	.lg\:-m-8 {
		margin: -2rem !important;
	}

	.lg\:-m-9 {
		margin: -2.25rem !important;
	}

	.lg\:-m-10 {
		margin: -2.5rem !important;
	}

	.lg\:-m-11 {
		margin: -2.75rem !important;
	}

	.lg\:-m-12 {
		margin: -3rem !important;
	}

	.lg\:-m-13 {
		margin: -3.25rem !important;
	}

	.lg\:-m-14 {
		margin: -3.5rem !important;
	}

	.lg\:-m-15 {
		margin: -3.75rem !important;
	}

	.lg\:-m-16 {
		margin: -4rem !important;
	}

	.lg\:-m-17 {
		margin: -4.25rem !important;
	}

	.lg\:-m-18 {
		margin: -4.5rem !important;
	}

	.lg\:-m-19 {
		margin: -4.75rem !important;
	}

	.lg\:-m-20 {
		margin: -5rem !important;
	}

	.lg\:-mx-1 {
		margin-inline-end: -0.25rem !important;
		margin-inline-start: -0.25rem !important;
	}

	.lg\:-mx-2 {
		margin-inline-end: -0.5rem !important;
		margin-inline-start: -0.5rem !important;
	}

	.lg\:-mx-3 {
		margin-inline-end: -0.75rem !important;
		margin-inline-start: -0.75rem !important;
	}

	.lg\:-mx-4 {
		margin-inline-end: -1rem !important;
		margin-inline-start: -1rem !important;
	}

	.lg\:-mx-5 {
		margin-inline-end: -1.25rem !important;
		margin-inline-start: -1.25rem !important;
	}

	.lg\:-mx-6 {
		margin-inline-end: -1.5rem !important;
		margin-inline-start: -1.5rem !important;
	}

	.lg\:-mx-7 {
		margin-inline-end: -1.75rem !important;
		margin-inline-start: -1.75rem !important;
	}

	.lg\:-mx-8 {
		margin-inline-end: -2rem !important;
		margin-inline-start: -2rem !important;
	}

	.lg\:-mx-9 {
		margin-inline-end: -2.25rem !important;
		margin-inline-start: -2.25rem !important;
	}

	.lg\:-mx-10 {
		margin-inline-end: -2.5rem !important;
		margin-inline-start: -2.5rem !important;
	}

	.lg\:-mx-11 {
		margin-inline-end: -2.75rem !important;
		margin-inline-start: -2.75rem !important;
	}

	.lg\:-mx-12 {
		margin-inline-end: -3rem !important;
		margin-inline-start: -3rem !important;
	}

	.lg\:-mx-13 {
		margin-inline-end: -3.25rem !important;
		margin-inline-start: -3.25rem !important;
	}

	.lg\:-mx-14 {
		margin-inline-end: -3.5rem !important;
		margin-inline-start: -3.5rem !important;
	}

	.lg\:-mx-15 {
		margin-inline-end: -3.75rem !important;
		margin-inline-start: -3.75rem !important;
	}

	.lg\:-mx-16 {
		margin-inline-end: -4rem !important;
		margin-inline-start: -4rem !important;
	}

	.lg\:-mx-17 {
		margin-inline-end: -4.25rem !important;
		margin-inline-start: -4.25rem !important;
	}

	.lg\:-mx-18 {
		margin-inline-end: -4.5rem !important;
		margin-inline-start: -4.5rem !important;
	}

	.lg\:-mx-19 {
		margin-inline-end: -4.75rem !important;
		margin-inline-start: -4.75rem !important;
	}

	.lg\:-mx-20 {
		margin-inline-end: -5rem !important;
		margin-inline-start: -5rem !important;
	}

	.lg\:-my-1 {
		margin-top: -0.25rem !important;
		margin-bottom: -0.25rem !important;
	}

	.lg\:-my-2 {
		margin-top: -0.5rem !important;
		margin-bottom: -0.5rem !important;
	}

	.lg\:-my-3 {
		margin-top: -0.75rem !important;
		margin-bottom: -0.75rem !important;
	}

	.lg\:-my-4 {
		margin-top: -1rem !important;
		margin-bottom: -1rem !important;
	}

	.lg\:-my-5 {
		margin-top: -1.25rem !important;
		margin-bottom: -1.25rem !important;
	}

	.lg\:-my-6 {
		margin-top: -1.5rem !important;
		margin-bottom: -1.5rem !important;
	}

	.lg\:-my-7 {
		margin-top: -1.75rem !important;
		margin-bottom: -1.75rem !important;
	}

	.lg\:-my-8 {
		margin-top: -2rem !important;
		margin-bottom: -2rem !important;
	}

	.lg\:-my-9 {
		margin-top: -2.25rem !important;
		margin-bottom: -2.25rem !important;
	}

	.lg\:-my-10 {
		margin-top: -2.5rem !important;
		margin-bottom: -2.5rem !important;
	}

	.lg\:-my-11 {
		margin-top: -2.75rem !important;
		margin-bottom: -2.75rem !important;
	}

	.lg\:-my-12 {
		margin-top: -3rem !important;
		margin-bottom: -3rem !important;
	}

	.lg\:-my-13 {
		margin-top: -3.25rem !important;
		margin-bottom: -3.25rem !important;
	}

	.lg\:-my-14 {
		margin-top: -3.5rem !important;
		margin-bottom: -3.5rem !important;
	}

	.lg\:-my-15 {
		margin-top: -3.75rem !important;
		margin-bottom: -3.75rem !important;
	}

	.lg\:-my-16 {
		margin-top: -4rem !important;
		margin-bottom: -4rem !important;
	}

	.lg\:-my-17 {
		margin-top: -4.25rem !important;
		margin-bottom: -4.25rem !important;
	}

	.lg\:-my-18 {
		margin-top: -4.5rem !important;
		margin-bottom: -4.5rem !important;
	}

	.lg\:-my-19 {
		margin-top: -4.75rem !important;
		margin-bottom: -4.75rem !important;
	}

	.lg\:-my-20 {
		margin-top: -5rem !important;
		margin-bottom: -5rem !important;
	}

	.lg\:-mt-1 {
		margin-top: -0.25rem !important;
	}

	.lg\:-mt-2 {
		margin-top: -0.5rem !important;
	}

	.lg\:-mt-3 {
		margin-top: -0.75rem !important;
	}

	.lg\:-mt-4 {
		margin-top: -1rem !important;
	}

	.lg\:-mt-5 {
		margin-top: -1.25rem !important;
	}

	.lg\:-mt-6 {
		margin-top: -1.5rem !important;
	}

	.lg\:-mt-7 {
		margin-top: -1.75rem !important;
	}

	.lg\:-mt-8 {
		margin-top: -2rem !important;
	}

	.lg\:-mt-9 {
		margin-top: -2.25rem !important;
	}

	.lg\:-mt-10 {
		margin-top: -2.5rem !important;
	}

	.lg\:-mt-11 {
		margin-top: -2.75rem !important;
	}

	.lg\:-mt-12 {
		margin-top: -3rem !important;
	}

	.lg\:-mt-13 {
		margin-top: -3.25rem !important;
	}

	.lg\:-mt-14 {
		margin-top: -3.5rem !important;
	}

	.lg\:-mt-15 {
		margin-top: -3.75rem !important;
	}

	.lg\:-mt-16 {
		margin-top: -4rem !important;
	}

	.lg\:-mt-17 {
		margin-top: -4.25rem !important;
	}

	.lg\:-mt-18 {
		margin-top: -4.5rem !important;
	}

	.lg\:-mt-19 {
		margin-top: -4.75rem !important;
	}

	.lg\:-mt-20 {
		margin-top: -5rem !important;
	}

	.lg\:-me-1 {
		margin-inline-end: -0.25rem !important;
	}

	.lg\:-me-2 {
		margin-inline-end: -0.5rem !important;
	}

	.lg\:-me-3 {
		margin-inline-end: -0.75rem !important;
	}

	.lg\:-me-4 {
		margin-inline-end: -1rem !important;
	}

	.lg\:-me-5 {
		margin-inline-end: -1.25rem !important;
	}

	.lg\:-me-6 {
		margin-inline-end: -1.5rem !important;
	}

	.lg\:-me-7 {
		margin-inline-end: -1.75rem !important;
	}

	.lg\:-me-8 {
		margin-inline-end: -2rem !important;
	}

	.lg\:-me-9 {
		margin-inline-end: -2.25rem !important;
	}

	.lg\:-me-10 {
		margin-inline-end: -2.5rem !important;
	}

	.lg\:-me-11 {
		margin-inline-end: -2.75rem !important;
	}

	.lg\:-me-12 {
		margin-inline-end: -3rem !important;
	}

	.lg\:-me-13 {
		margin-inline-end: -3.25rem !important;
	}

	.lg\:-me-14 {
		margin-inline-end: -3.5rem !important;
	}

	.lg\:-me-15 {
		margin-inline-end: -3.75rem !important;
	}

	.lg\:-me-16 {
		margin-inline-end: -4rem !important;
	}

	.lg\:-me-17 {
		margin-inline-end: -4.25rem !important;
	}

	.lg\:-me-18 {
		margin-inline-end: -4.5rem !important;
	}

	.lg\:-me-19 {
		margin-inline-end: -4.75rem !important;
	}

	.lg\:-me-20 {
		margin-inline-end: -5rem !important;
	}

	.lg\:-mb-1 {
		margin-bottom: -0.25rem !important;
	}

	.lg\:-mb-2 {
		margin-bottom: -0.5rem !important;
	}

	.lg\:-mb-3 {
		margin-bottom: -0.75rem !important;
	}

	.lg\:-mb-4 {
		margin-bottom: -1rem !important;
	}

	.lg\:-mb-5 {
		margin-bottom: -1.25rem !important;
	}

	.lg\:-mb-6 {
		margin-bottom: -1.5rem !important;
	}

	.lg\:-mb-7 {
		margin-bottom: -1.75rem !important;
	}

	.lg\:-mb-8 {
		margin-bottom: -2rem !important;
	}

	.lg\:-mb-9 {
		margin-bottom: -2.25rem !important;
	}

	.lg\:-mb-10 {
		margin-bottom: -2.5rem !important;
	}

	.lg\:-mb-11 {
		margin-bottom: -2.75rem !important;
	}

	.lg\:-mb-12 {
		margin-bottom: -3rem !important;
	}

	.lg\:-mb-13 {
		margin-bottom: -3.25rem !important;
	}

	.lg\:-mb-14 {
		margin-bottom: -3.5rem !important;
	}

	.lg\:-mb-15 {
		margin-bottom: -3.75rem !important;
	}

	.lg\:-mb-16 {
		margin-bottom: -4rem !important;
	}

	.lg\:-mb-17 {
		margin-bottom: -4.25rem !important;
	}

	.lg\:-mb-18 {
		margin-bottom: -4.5rem !important;
	}

	.lg\:-mb-19 {
		margin-bottom: -4.75rem !important;
	}

	.lg\:-mb-20 {
		margin-bottom: -5rem !important;
	}

	.lg\:-ms-1 {
		margin-inline-start: -0.25rem !important;
	}

	.lg\:-ms-2 {
		margin-inline-start: -0.5rem !important;
	}

	.lg\:-ms-3 {
		margin-inline-start: -0.75rem !important;
	}

	.lg\:-ms-4 {
		margin-inline-start: -1rem !important;
	}

	.lg\:-ms-5 {
		margin-inline-start: -1.25rem !important;
	}

	.lg\:-ms-6 {
		margin-inline-start: -1.5rem !important;
	}

	.lg\:-ms-7 {
		margin-inline-start: -1.75rem !important;
	}

	.lg\:-ms-8 {
		margin-inline-start: -2rem !important;
	}

	.lg\:-ms-9 {
		margin-inline-start: -2.25rem !important;
	}

	.lg\:-ms-10 {
		margin-inline-start: -2.5rem !important;
	}

	.lg\:-ms-11 {
		margin-inline-start: -2.75rem !important;
	}

	.lg\:-ms-12 {
		margin-inline-start: -3rem !important;
	}

	.lg\:-ms-13 {
		margin-inline-start: -3.25rem !important;
	}

	.lg\:-ms-14 {
		margin-inline-start: -3.5rem !important;
	}

	.lg\:-ms-15 {
		margin-inline-start: -3.75rem !important;
	}

	.lg\:-ms-16 {
		margin-inline-start: -4rem !important;
	}

	.lg\:-ms-17 {
		margin-inline-start: -4.25rem !important;
	}

	.lg\:-ms-18 {
		margin-inline-start: -4.5rem !important;
	}

	.lg\:-ms-19 {
		margin-inline-start: -4.75rem !important;
	}

	.lg\:-ms-20 {
		margin-inline-start: -5rem !important;
	}

	.lg\:p-0 {
		padding: 0 !important;
	}

	.lg\:p-1 {
		padding: 0.25rem !important;
	}

	.lg\:p-2 {
		padding: 0.5rem !important;
	}

	.lg\:p-3 {
		padding: 0.75rem !important;
	}

	.lg\:p-4 {
		padding: 1rem !important;
	}

	.lg\:p-5 {
		padding: 1.25rem !important;
	}

	.lg\:p-6 {
		padding: 1.5rem !important;
	}

	.lg\:p-7 {
		padding: 1.75rem !important;
	}

	.lg\:p-8 {
		padding: 2rem !important;
	}

	.lg\:p-9 {
		padding: 2.25rem !important;
	}

	.lg\:p-10 {
		padding: 2.5rem !important;
	}

	.lg\:p-11 {
		padding: 2.75rem !important;
	}

	.lg\:p-12 {
		padding: 3rem !important;
	}

	.lg\:p-13 {
		padding: 3.25rem !important;
	}

	.lg\:p-14 {
		padding: 3.5rem !important;
	}

	.lg\:p-15 {
		padding: 3.75rem !important;
	}

	.lg\:p-16 {
		padding: 4rem !important;
	}

	.lg\:p-17 {
		padding: 4.25rem !important;
	}

	.lg\:p-18 {
		padding: 4.5rem !important;
	}

	.lg\:p-19 {
		padding: 4.75rem !important;
	}

	.lg\:p-20 {
		padding: 5rem !important;
	}

	.lg\:px-0 {
		padding-inline-end: 0 !important;
		padding-inline-start: 0 !important;
	}

	.lg\:px-1 {
		padding-inline-end: 0.25rem !important;
		padding-inline-start: 0.25rem !important;
	}

	.lg\:px-2 {
		padding-inline-end: 0.5rem !important;
		padding-inline-start: 0.5rem !important;
	}

	.lg\:px-3 {
		padding-inline-end: 0.75rem !important;
		padding-inline-start: 0.75rem !important;
	}

	.lg\:px-4 {
		padding-inline-end: 1rem !important;
		padding-inline-start: 1rem !important;
	}

	.lg\:px-5 {
		padding-inline-end: 1.25rem !important;
		padding-inline-start: 1.25rem !important;
	}

	.lg\:px-6 {
		padding-inline-end: 1.5rem !important;
		padding-inline-start: 1.5rem !important;
	}

	.lg\:px-7 {
		padding-inline-end: 1.75rem !important;
		padding-inline-start: 1.75rem !important;
	}

	.lg\:px-8 {
		padding-inline-end: 2rem !important;
		padding-inline-start: 2rem !important;
	}

	.lg\:px-9 {
		padding-inline-end: 2.25rem !important;
		padding-inline-start: 2.25rem !important;
	}

	.lg\:px-10 {
		padding-inline-end: 2.5rem !important;
		padding-inline-start: 2.5rem !important;
	}

	.lg\:px-11 {
		padding-inline-end: 2.75rem !important;
		padding-inline-start: 2.75rem !important;
	}

	.lg\:px-12 {
		padding-inline-end: 3rem !important;
		padding-inline-start: 3rem !important;
	}

	.lg\:px-13 {
		padding-inline-end: 3.25rem !important;
		padding-inline-start: 3.25rem !important;
	}

	.lg\:px-14 {
		padding-inline-end: 3.5rem !important;
		padding-inline-start: 3.5rem !important;
	}

	.lg\:px-15 {
		padding-inline-end: 3.75rem !important;
		padding-inline-start: 3.75rem !important;
	}

	.lg\:px-16 {
		padding-inline-end: 4rem !important;
		padding-inline-start: 4rem !important;
	}

	.lg\:px-17 {
		padding-inline-end: 4.25rem !important;
		padding-inline-start: 4.25rem !important;
	}

	.lg\:px-18 {
		padding-inline-end: 4.5rem !important;
		padding-inline-start: 4.5rem !important;
	}

	.lg\:px-19 {
		padding-inline-end: 4.75rem !important;
		padding-inline-start: 4.75rem !important;
	}

	.lg\:px-20 {
		padding-inline-end: 5rem !important;
		padding-inline-start: 5rem !important;
	}

	.lg\:py-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.lg\:py-1 {
		padding-top: 0.25rem !important;
		padding-bottom: 0.25rem !important;
	}

	.lg\:py-2 {
		padding-top: 0.5rem !important;
		padding-bottom: 0.5rem !important;
	}

	.lg\:py-3 {
		padding-top: 0.75rem !important;
		padding-bottom: 0.75rem !important;
	}

	.lg\:py-4 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}

	.lg\:py-5 {
		padding-top: 1.25rem !important;
		padding-bottom: 1.25rem !important;
	}

	.lg\:py-6 {
		padding-top: 1.5rem !important;
		padding-bottom: 1.5rem !important;
	}

	.lg\:py-7 {
		padding-top: 1.75rem !important;
		padding-bottom: 1.75rem !important;
	}

	.lg\:py-8 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}

	.lg\:py-9 {
		padding-top: 2.25rem !important;
		padding-bottom: 2.25rem !important;
	}

	.lg\:py-10 {
		padding-top: 2.5rem !important;
		padding-bottom: 2.5rem !important;
	}

	.lg\:py-11 {
		padding-top: 2.75rem !important;
		padding-bottom: 2.75rem !important;
	}

	.lg\:py-12 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}

	.lg\:py-13 {
		padding-top: 3.25rem !important;
		padding-bottom: 3.25rem !important;
	}

	.lg\:py-14 {
		padding-top: 3.5rem !important;
		padding-bottom: 3.5rem !important;
	}

	.lg\:py-15 {
		padding-top: 3.75rem !important;
		padding-bottom: 3.75rem !important;
	}

	.lg\:py-16 {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
	}

	.lg\:py-17 {
		padding-top: 4.25rem !important;
		padding-bottom: 4.25rem !important;
	}

	.lg\:py-18 {
		padding-top: 4.5rem !important;
		padding-bottom: 4.5rem !important;
	}

	.lg\:py-19 {
		padding-top: 4.75rem !important;
		padding-bottom: 4.75rem !important;
	}

	.lg\:py-20 {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important;
	}

	.lg\:pt-0 {
		padding-top: 0 !important;
	}

	.lg\:pt-1 {
		padding-top: 0.25rem !important;
	}

	.lg\:pt-2 {
		padding-top: 0.5rem !important;
	}

	.lg\:pt-3 {
		padding-top: 0.75rem !important;
	}

	.lg\:pt-4 {
		padding-top: 1rem !important;
	}

	.lg\:pt-5 {
		padding-top: 1.25rem !important;
	}

	.lg\:pt-6 {
		padding-top: 1.5rem !important;
	}

	.lg\:pt-7 {
		padding-top: 1.75rem !important;
	}

	.lg\:pt-8 {
		padding-top: 2rem !important;
	}

	.lg\:pt-9 {
		padding-top: 2.25rem !important;
	}

	.lg\:pt-10 {
		padding-top: 2.5rem !important;
	}

	.lg\:pt-11 {
		padding-top: 2.75rem !important;
	}

	.lg\:pt-12 {
		padding-top: 3rem !important;
	}

	.lg\:pt-13 {
		padding-top: 3.25rem !important;
	}

	.lg\:pt-14 {
		padding-top: 3.5rem !important;
	}

	.lg\:pt-15 {
		padding-top: 3.75rem !important;
	}

	.lg\:pt-16 {
		padding-top: 4rem !important;
	}

	.lg\:pt-17 {
		padding-top: 4.25rem !important;
	}

	.lg\:pt-18 {
		padding-top: 4.5rem !important;
	}

	.lg\:pt-19 {
		padding-top: 4.75rem !important;
	}

	.lg\:pt-20 {
		padding-top: 5rem !important;
	}

	.lg\:pe-0 {
		padding-inline-end: 0 !important;
	}

	.lg\:pe-1 {
		padding-inline-end: 0.25rem !important;
	}

	.lg\:pe-2 {
		padding-inline-end: 0.5rem !important;
	}

	.lg\:pe-3 {
		padding-inline-end: 0.75rem !important;
	}

	.lg\:pe-4 {
		padding-inline-end: 1rem !important;
	}

	.lg\:pe-5 {
		padding-inline-end: 1.25rem !important;
	}

	.lg\:pe-6 {
		padding-inline-end: 1.5rem !important;
	}

	.lg\:pe-7 {
		padding-inline-end: 1.75rem !important;
	}

	.lg\:pe-8 {
		padding-inline-end: 2rem !important;
	}

	.lg\:pe-9 {
		padding-inline-end: 2.25rem !important;
	}

	.lg\:pe-10 {
		padding-inline-end: 2.5rem !important;
	}

	.lg\:pe-11 {
		padding-inline-end: 2.75rem !important;
	}

	.lg\:pe-12 {
		padding-inline-end: 3rem !important;
	}

	.lg\:pe-13 {
		padding-inline-end: 3.25rem !important;
	}

	.lg\:pe-14 {
		padding-inline-end: 3.5rem !important;
	}

	.lg\:pe-15 {
		padding-inline-end: 3.75rem !important;
	}

	.lg\:pe-16 {
		padding-inline-end: 4rem !important;
	}

	.lg\:pe-17 {
		padding-inline-end: 4.25rem !important;
	}

	.lg\:pe-18 {
		padding-inline-end: 4.5rem !important;
	}

	.lg\:pe-19 {
		padding-inline-end: 4.75rem !important;
	}

	.lg\:pe-20 {
		padding-inline-end: 5rem !important;
	}

	.lg\:pb-0 {
		padding-bottom: 0 !important;
	}

	.lg\:pb-1 {
		padding-bottom: 0.25rem !important;
	}

	.lg\:pb-2 {
		padding-bottom: 0.5rem !important;
	}

	.lg\:pb-3 {
		padding-bottom: 0.75rem !important;
	}

	.lg\:pb-4 {
		padding-bottom: 1rem !important;
	}

	.lg\:pb-5 {
		padding-bottom: 1.25rem !important;
	}

	.lg\:pb-6 {
		padding-bottom: 1.5rem !important;
	}

	.lg\:pb-7 {
		padding-bottom: 1.75rem !important;
	}

	.lg\:pb-8 {
		padding-bottom: 2rem !important;
	}

	.lg\:pb-9 {
		padding-bottom: 2.25rem !important;
	}

	.lg\:pb-10 {
		padding-bottom: 2.5rem !important;
	}

	.lg\:pb-11 {
		padding-bottom: 2.75rem !important;
	}

	.lg\:pb-12 {
		padding-bottom: 3rem !important;
	}

	.lg\:pb-13 {
		padding-bottom: 3.25rem !important;
	}

	.lg\:pb-14 {
		padding-bottom: 3.5rem !important;
	}

	.lg\:pb-15 {
		padding-bottom: 3.75rem !important;
	}

	.lg\:pb-16 {
		padding-bottom: 4rem !important;
	}

	.lg\:pb-17 {
		padding-bottom: 4.25rem !important;
	}

	.lg\:pb-18 {
		padding-bottom: 4.5rem !important;
	}

	.lg\:pb-19 {
		padding-bottom: 4.75rem !important;
	}

	.lg\:pb-20 {
		padding-bottom: 5rem !important;
	}

	.lg\:ps-0 {
		padding-inline-start: 0 !important;
	}

	.lg\:ps-1 {
		padding-inline-start: 0.25rem !important;
	}

	.lg\:ps-2 {
		padding-inline-start: 0.5rem !important;
	}

	.lg\:ps-3 {
		padding-inline-start: 0.75rem !important;
	}

	.lg\:ps-4 {
		padding-inline-start: 1rem !important;
	}

	.lg\:ps-5 {
		padding-inline-start: 1.25rem !important;
	}

	.lg\:ps-6 {
		padding-inline-start: 1.5rem !important;
	}

	.lg\:ps-7 {
		padding-inline-start: 1.75rem !important;
	}

	.lg\:ps-8 {
		padding-inline-start: 2rem !important;
	}

	.lg\:ps-9 {
		padding-inline-start: 2.25rem !important;
	}

	.lg\:ps-10 {
		padding-inline-start: 2.5rem !important;
	}

	.lg\:ps-11 {
		padding-inline-start: 2.75rem !important;
	}

	.lg\:ps-12 {
		padding-inline-start: 3rem !important;
	}

	.lg\:ps-13 {
		padding-inline-start: 3.25rem !important;
	}

	.lg\:ps-14 {
		padding-inline-start: 3.5rem !important;
	}

	.lg\:ps-15 {
		padding-inline-start: 3.75rem !important;
	}

	.lg\:ps-16 {
		padding-inline-start: 4rem !important;
	}

	.lg\:ps-17 {
		padding-inline-start: 4.25rem !important;
	}

	.lg\:ps-18 {
		padding-inline-start: 4.5rem !important;
	}

	.lg\:ps-19 {
		padding-inline-start: 4.75rem !important;
	}

	.lg\:ps-20 {
		padding-inline-start: 5rem !important;
	}
}

/* #endregion lg */

/* #region lg, custom */
@media (min-width: 75em) {
	.lg\:mt-\[7\.5rem\] {
		margin-top: 7.5rem !important;
	}

	.lg\:me-container {
		margin-inline-end: calc((100% - 75rem) / 2 + 1rem) !important;
	}

	.lg\:ms-container {
		margin-inline-start: calc((100% - 75rem) / 2 + 1rem) !important;
	}

	.lg\:px-container {
		padding-inline-end: calc((100% - 75rem) / 2 + 1rem) !important;
		padding-inline-start: calc((100% - 75rem) / 2 + 1rem) !important;
	}

	.lg\:pb-\[6rem\] {
		padding-bottom: 6rem !important;
	}

	.lg\:last\:pb-\[6rem\]:last-child {
		padding-bottom: 6rem !important;
	}

	.lg\:pt-\[7\.5rem\] {
		padding-top: 7.5rem !important;
	}

	.lg\:pb-\[7\.5rem\] {
		padding-bottom: 7.5rem !important;
	}

	.lg\:pe-container {
		padding-inline-end: calc((100% - 75rem) / 2 + 1rem) !important;
	}

	.lg\:ps-container {
		padding-inline-start: calc((100% - 75rem) / 2 + 1rem) !important;
	}

	.lg\:\[\&\:not\(\:last-of-type\)\]\:me-10:not(:last-of-type) {
		margin-inline-end: 2.5rem !important;
	}

	.lg\:\[\&\:not\(\:first-child\)\]\:mt-12:not(:first-child) {
		margin-top: 3rem !important;
	}

	.lg\:\[\&\:not\(\:last-child\)\]\:mb-12:not(:last-child) {
		margin-bottom: 3rem !important;
	}
}

/* #endregion lg, custom */

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/stretched-link.css?1722847702166*/
/*!
 * Generic/Stretched link
 */

.stretched-link::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	content: "";
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/transform.css?1730996698307*/
/*!
 * Utilities/Transforms
 */

.translate-x-0 {
	transform: translateX(0) !important;
}

.-translate-x-1\/2 {
	transform: translateX(-50%) !important;
}

.-translate-y-1\/2 {
	transform: translateY(-50%) !important;
}

.-translate-1\/2 {
	transform: translate(-50%, -50%) !important;
}

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/typescale.css?172288176828327*/
/*!
 * Utilities/Typescale
 */

/* #region sm */
.text-display-large {
	font-family: var(--x-sys-typescale-display-large-font) !important;
	font-size: var(--x-sys-typescale-display-large-size) !important;
	font-weight: var(--x-sys-typescale-display-large-weight) !important;
	letter-spacing: var(--x-sys-typescale-display-large-tracking) !important;
	line-height: var(--x-sys-typescale-display-large-line-height) !important;
	text-transform: var(--x-sys-typescale-display-large-transform) !important;
}

.text-display-medium {
	font-family: var(--x-sys-typescale-display-medium-font) !important;
	font-size: var(--x-sys-typescale-display-medium-size) !important;
	font-weight: var(--x-sys-typescale-display-medium-weight) !important;
	letter-spacing: var(--x-sys-typescale-display-medium-tracking) !important;
	line-height: var(--x-sys-typescale-display-medium-line-height) !important;
	text-transform: var(--x-sys-typescale-display-medium-transform) !important;
}

.text-display-small {
	font-family: var(--x-sys-typescale-display-small-font) !important;
	font-size: var(--x-sys-typescale-display-small-size) !important;
	font-weight: var(--x-sys-typescale-display-small-weight) !important;
	letter-spacing: var(--x-sys-typescale-display-small-tracking) !important;
	line-height: var(--x-sys-typescale-display-small-line-height) !important;
	text-transform: var(--x-sys-typescale-display-small-transform) !important;
}

.text-headline-large {
	font-family: var(--x-sys-typescale-headline-large-font) !important;
	font-size: var(--x-sys-typescale-headline-large-size) !important;
	font-weight: var(--x-sys-typescale-headline-large-weight) !important;
	letter-spacing: var(--x-sys-typescale-headline-large-tracking) !important;
	line-height: var(--x-sys-typescale-headline-large-line-height) !important;
	text-transform: var(--x-sys-typescale-headline-large-transform) !important;
}

.text-headline-medium {
	font-family: var(--x-sys-typescale-headline-medium-font) !important;
	font-size: var(--x-sys-typescale-headline-medium-size) !important;
	font-weight: var(--x-sys-typescale-headline-medium-weight) !important;
	letter-spacing: var(--x-sys-typescale-headline-medium-tracking) !important;
	line-height: var(--x-sys-typescale-headline-medium-line-height) !important;
	text-transform: var(--x-sys-typescale-headline-medium-transform) !important;
}

.text-headline-small {
	font-family: var(--x-sys-typescale-headline-small-font) !important;
	font-size: var(--x-sys-typescale-headline-small-size) !important;
	font-weight: var(--x-sys-typescale-headline-small-weight) !important;
	letter-spacing: var(--x-sys-typescale-headline-small-tracking) !important;
	line-height: var(--x-sys-typescale-headline-small-line-height) !important;
	text-transform: var(--x-sys-typescale-headline-small-transform) !important;
}

.text-title-large {
	font-family: var(--x-sys-typescale-title-large-font) !important;
	font-size: var(--x-sys-typescale-title-large-size) !important;
	font-weight: var(--x-sys-typescale-title-large-weight) !important;
	letter-spacing: var(--x-sys-typescale-title-large-tracking) !important;
	line-height: var(--x-sys-typescale-title-large-line-height) !important;
	text-transform: var(--x-sys-typescale-title-large-transform) !important;
}

.text-title-medium {
	font-family: var(--x-sys-typescale-title-medium-font) !important;
	font-size: var(--x-sys-typescale-title-medium-size) !important;
	font-weight: var(--x-sys-typescale-title-medium-weight) !important;
	letter-spacing: var(--x-sys-typescale-title-medium-tracking) !important;
	line-height: var(--x-sys-typescale-title-medium-line-height) !important;
	text-transform: var(--x-sys-typescale-title-medium-transform) !important;
}

.text-title-small {
	font-family: var(--x-sys-typescale-title-small-font) !important;
	font-size: var(--x-sys-typescale-title-small-size) !important;
	font-weight: var(--x-sys-typescale-title-small-weight) !important;
	letter-spacing: var(--x-sys-typescale-title-small-tracking) !important;
	line-height: var(--x-sys-typescale-title-small-line-height) !important;
	text-transform: var(--x-sys-typescale-title-small-transform) !important;
}

.text-label-large {
	font-family: var(--x-sys-typescale-label-large-font) !important;
	font-size: var(--x-sys-typescale-label-large-size) !important;
	font-weight: var(--x-sys-typescale-label-large-weight) !important;
	letter-spacing: var(--x-sys-typescale-label-large-tracking) !important;
	line-height: var(--x-sys-typescale-label-large-line-height) !important;
	text-transform: var(--x-sys-typescale-label-large-transform) !important;
}

.text-label-medium {
	font-family: var(--x-sys-typescale-label-medium-font) !important;
	font-size: var(--x-sys-typescale-label-medium-size) !important;
	font-weight: var(--x-sys-typescale-label-medium-weight) !important;
	letter-spacing: var(--x-sys-typescale-label-medium-tracking) !important;
	line-height: var(--x-sys-typescale-label-medium-line-height) !important;
	text-transform: var(--x-sys-typescale-label-medium-transform) !important;
}

.text-label-small {
	font-family: var(--x-sys-typescale-label-small-font) !important;
	font-size: var(--x-sys-typescale-label-small-size) !important;
	font-weight: var(--x-sys-typescale-label-small-weight) !important;
	letter-spacing: var(--x-sys-typescale-label-small-tracking) !important;
	line-height: var(--x-sys-typescale-label-small-line-height) !important;
	text-transform: var(--x-sys-typescale-label-small-transform) !important;
}

.text-body-large {
	font-family: var(--x-sys-typescale-body-large-font) !important;
	font-size: var(--x-sys-typescale-body-large-size) !important;
	font-weight: var(--x-sys-typescale-body-large-weight) !important;
	letter-spacing: var(--x-sys-typescale-body-large-tracking) !important;
	line-height: var(--x-sys-typescale-body-large-line-height) !important;
	text-transform: var(--x-sys-typescale-body-large-transform) !important;
}

.text-body-medium {
	font-family: var(--x-sys-typescale-body-medium-font) !important;
	font-size: var(--x-sys-typescale-body-medium-size) !important;
	font-weight: var(--x-sys-typescale-body-medium-weight) !important;
	letter-spacing: var(--x-sys-typescale-body-medium-tracking) !important;
	line-height: var(--x-sys-typescale-body-medium-line-height) !important;
	text-transform: var(--x-sys-typescale-body-medium-transform) !important;
}

.text-body-small {
	font-family: var(--x-sys-typescale-body-small-font) !important;
	font-size: var(--x-sys-typescale-body-small-size) !important;
	font-weight: var(--x-sys-typescale-body-small-weight) !important;
	letter-spacing: var(--x-sys-typescale-body-small-tracking) !important;
	line-height: var(--x-sys-typescale-body-small-line-height) !important;
	text-transform: var(--x-sys-typescale-body-small-transform) !important;
}

/* #endregion sm */

/* #region sm, custom */
@media (min-width: 37.5em) {
	.sm\:text-display-large {
		font-family: var(--x-sys-typescale-display-large-font) !important;
		font-size: var(--x-sys-typescale-display-large-size) !important;
		font-weight: var(--x-sys-typescale-display-large-weight) !important;
		letter-spacing: var(--x-sys-typescale-display-large-tracking) !important;
		line-height: var(--x-sys-typescale-display-large-line-height) !important;
		text-transform: var(--x-sys-typescale-display-large-transform) !important;
	}

	.sm\:text-display-medium {
		font-family: var(--x-sys-typescale-display-medium-font) !important;
		font-size: var(--x-sys-typescale-display-medium-size) !important;
		font-weight: var(--x-sys-typescale-display-medium-weight) !important;
		letter-spacing: var(--x-sys-typescale-display-medium-tracking) !important;
		line-height: var(--x-sys-typescale-display-medium-line-height) !important;
		text-transform: var(--x-sys-typescale-display-medium-transform) !important;
	}

	.sm\:text-display-small {
		font-family: var(--x-sys-typescale-display-small-font) !important;
		font-size: var(--x-sys-typescale-display-small-size) !important;
		font-weight: var(--x-sys-typescale-display-small-weight) !important;
		letter-spacing: var(--x-sys-typescale-display-small-tracking) !important;
		line-height: var(--x-sys-typescale-display-small-line-height) !important;
		text-transform: var(--x-sys-typescale-display-small-transform) !important;
	}

	.sm\:text-headline-large {
		font-family: var(--x-sys-typescale-headline-large-font) !important;
		font-size: var(--x-sys-typescale-headline-large-size) !important;
		font-weight: var(--x-sys-typescale-headline-large-weight) !important;
		letter-spacing: var(--x-sys-typescale-headline-large-tracking) !important;
		line-height: var(--x-sys-typescale-headline-large-line-height) !important;
		text-transform: var(--x-sys-typescale-headline-large-transform) !important;
	}

	.sm\:text-headline-medium {
		font-family: var(--x-sys-typescale-headline-medium-font) !important;
		font-size: var(--x-sys-typescale-headline-medium-size) !important;
		font-weight: var(--x-sys-typescale-headline-medium-weight) !important;
		letter-spacing: var(--x-sys-typescale-headline-medium-tracking) !important;
		line-height: var(--x-sys-typescale-headline-medium-line-height) !important;
		text-transform: var(--x-sys-typescale-headline-medium-transform) !important;
	}

	.sm\:text-headline-small {
		font-family: var(--x-sys-typescale-headline-small-font) !important;
		font-size: var(--x-sys-typescale-headline-small-size) !important;
		font-weight: var(--x-sys-typescale-headline-small-weight) !important;
		letter-spacing: var(--x-sys-typescale-headline-small-tracking) !important;
		line-height: var(--x-sys-typescale-headline-small-line-height) !important;
		text-transform: var(--x-sys-typescale-headline-small-transform) !important;
	}

	.sm\:text-title-large {
		font-family: var(--x-sys-typescale-title-large-font) !important;
		font-size: var(--x-sys-typescale-title-large-size) !important;
		font-weight: var(--x-sys-typescale-title-large-weight) !important;
		letter-spacing: var(--x-sys-typescale-title-large-tracking) !important;
		line-height: var(--x-sys-typescale-title-large-line-height) !important;
		text-transform: var(--x-sys-typescale-title-large-transform) !important;
	}

	.sm\:text-title-medium {
		font-family: var(--x-sys-typescale-title-medium-font) !important;
		font-size: var(--x-sys-typescale-title-medium-size) !important;
		font-weight: var(--x-sys-typescale-title-medium-weight) !important;
		letter-spacing: var(--x-sys-typescale-title-medium-tracking) !important;
		line-height: var(--x-sys-typescale-title-medium-line-height) !important;
		text-transform: var(--x-sys-typescale-title-medium-transform) !important;
	}

	.sm\:text-title-small {
		font-family: var(--x-sys-typescale-title-small-font) !important;
		font-size: var(--x-sys-typescale-title-small-size) !important;
		font-weight: var(--x-sys-typescale-title-small-weight) !important;
		letter-spacing: var(--x-sys-typescale-title-small-tracking) !important;
		line-height: var(--x-sys-typescale-title-small-line-height) !important;
		text-transform: var(--x-sys-typescale-title-small-transform) !important;
	}

	.sm\:text-label-large {
		font-family: var(--x-sys-typescale-label-large-font) !important;
		font-size: var(--x-sys-typescale-label-large-size) !important;
		font-weight: var(--x-sys-typescale-label-large-weight) !important;
		letter-spacing: var(--x-sys-typescale-label-large-tracking) !important;
		line-height: var(--x-sys-typescale-label-large-line-height) !important;
		text-transform: var(--x-sys-typescale-label-large-transform) !important;
	}

	.sm\:text-label-medium {
		font-family: var(--x-sys-typescale-label-medium-font) !important;
		font-size: var(--x-sys-typescale-label-medium-size) !important;
		font-weight: var(--x-sys-typescale-label-medium-weight) !important;
		letter-spacing: var(--x-sys-typescale-label-medium-tracking) !important;
		line-height: var(--x-sys-typescale-label-medium-line-height) !important;
		text-transform: var(--x-sys-typescale-label-medium-transform) !important;
	}

	.sm\:text-label-small {
		font-family: var(--x-sys-typescale-label-small-font) !important;
		font-size: var(--x-sys-typescale-label-small-size) !important;
		font-weight: var(--x-sys-typescale-label-small-weight) !important;
		letter-spacing: var(--x-sys-typescale-label-small-tracking) !important;
		line-height: var(--x-sys-typescale-label-small-line-height) !important;
		text-transform: var(--x-sys-typescale-label-small-transform) !important;
	}

	.sm\:text-body-large {
		font-family: var(--x-sys-typescale-body-large-font) !important;
		font-size: var(--x-sys-typescale-body-large-size) !important;
		font-weight: var(--x-sys-typescale-body-large-weight) !important;
		letter-spacing: var(--x-sys-typescale-body-large-tracking) !important;
		line-height: var(--x-sys-typescale-body-large-line-height) !important;
		text-transform: var(--x-sys-typescale-body-large-transform) !important;
	}

	.sm\:text-body-medium {
		font-family: var(--x-sys-typescale-body-medium-font) !important;
		font-size: var(--x-sys-typescale-body-medium-size) !important;
		font-weight: var(--x-sys-typescale-body-medium-weight) !important;
		letter-spacing: var(--x-sys-typescale-body-medium-tracking) !important;
		line-height: var(--x-sys-typescale-body-medium-line-height) !important;
		text-transform: var(--x-sys-typescale-body-medium-transform) !important;
	}

	.sm\:text-body-small {
		font-family: var(--x-sys-typescale-body-small-font) !important;
		font-size: var(--x-sys-typescale-body-small-size) !important;
		font-weight: var(--x-sys-typescale-body-small-weight) !important;
		letter-spacing: var(--x-sys-typescale-body-small-tracking) !important;
		line-height: var(--x-sys-typescale-body-small-line-height) !important;
		text-transform: var(--x-sys-typescale-body-small-transform) !important;
	}
}

/* #endregion sm, custom */

/* #region md */
@media (min-width: 52.5em) {
	.md\:text-display-large {
		font-family: var(--x-sys-typescale-display-large-font) !important;
		font-size: var(--x-sys-typescale-display-large-size) !important;
		font-weight: var(--x-sys-typescale-display-large-weight) !important;
		letter-spacing: var(--x-sys-typescale-display-large-tracking) !important;
		line-height: var(--x-sys-typescale-display-large-line-height) !important;
		text-transform: var(--x-sys-typescale-display-large-transform) !important;
	}

	.md\:text-display-medium {
		font-family: var(--x-sys-typescale-display-medium-font) !important;
		font-size: var(--x-sys-typescale-display-medium-size) !important;
		font-weight: var(--x-sys-typescale-display-medium-weight) !important;
		letter-spacing: var(--x-sys-typescale-display-medium-tracking) !important;
		line-height: var(--x-sys-typescale-display-medium-line-height) !important;
		text-transform: var(--x-sys-typescale-display-medium-transform) !important;
	}

	.md\:text-display-small {
		font-family: var(--x-sys-typescale-display-small-font) !important;
		font-size: var(--x-sys-typescale-display-small-size) !important;
		font-weight: var(--x-sys-typescale-display-small-weight) !important;
		letter-spacing: var(--x-sys-typescale-display-small-tracking) !important;
		line-height: var(--x-sys-typescale-display-small-line-height) !important;
		text-transform: var(--x-sys-typescale-display-small-transform) !important;
	}

	.md\:text-headline-large {
		font-family: var(--x-sys-typescale-headline-large-font) !important;
		font-size: var(--x-sys-typescale-headline-large-size) !important;
		font-weight: var(--x-sys-typescale-headline-large-weight) !important;
		letter-spacing: var(--x-sys-typescale-headline-large-tracking) !important;
		line-height: var(--x-sys-typescale-headline-large-line-height) !important;
		text-transform: var(--x-sys-typescale-headline-large-transform) !important;
	}

	.md\:text-headline-medium {
		font-family: var(--x-sys-typescale-headline-medium-font) !important;
		font-size: var(--x-sys-typescale-headline-medium-size) !important;
		font-weight: var(--x-sys-typescale-headline-medium-weight) !important;
		letter-spacing: var(--x-sys-typescale-headline-medium-tracking) !important;
		line-height: var(--x-sys-typescale-headline-medium-line-height) !important;
		text-transform: var(--x-sys-typescale-headline-medium-transform) !important;
	}

	.md\:text-headline-small {
		font-family: var(--x-sys-typescale-headline-small-font) !important;
		font-size: var(--x-sys-typescale-headline-small-size) !important;
		font-weight: var(--x-sys-typescale-headline-small-weight) !important;
		letter-spacing: var(--x-sys-typescale-headline-small-tracking) !important;
		line-height: var(--x-sys-typescale-headline-small-line-height) !important;
		text-transform: var(--x-sys-typescale-headline-small-transform) !important;
	}

	.md\:text-title-large {
		font-family: var(--x-sys-typescale-title-large-font) !important;
		font-size: var(--x-sys-typescale-title-large-size) !important;
		font-weight: var(--x-sys-typescale-title-large-weight) !important;
		letter-spacing: var(--x-sys-typescale-title-large-tracking) !important;
		line-height: var(--x-sys-typescale-title-large-line-height) !important;
		text-transform: var(--x-sys-typescale-title-large-transform) !important;
	}

	.md\:text-title-medium {
		font-family: var(--x-sys-typescale-title-medium-font) !important;
		font-size: var(--x-sys-typescale-title-medium-size) !important;
		font-weight: var(--x-sys-typescale-title-medium-weight) !important;
		letter-spacing: var(--x-sys-typescale-title-medium-tracking) !important;
		line-height: var(--x-sys-typescale-title-medium-line-height) !important;
		text-transform: var(--x-sys-typescale-title-medium-transform) !important;
	}

	.md\:text-title-small {
		font-family: var(--x-sys-typescale-title-small-font) !important;
		font-size: var(--x-sys-typescale-title-small-size) !important;
		font-weight: var(--x-sys-typescale-title-small-weight) !important;
		letter-spacing: var(--x-sys-typescale-title-small-tracking) !important;
		line-height: var(--x-sys-typescale-title-small-line-height) !important;
		text-transform: var(--x-sys-typescale-title-small-transform) !important;
	}

	.md\:text-label-large {
		font-family: var(--x-sys-typescale-label-large-font) !important;
		font-size: var(--x-sys-typescale-label-large-size) !important;
		font-weight: var(--x-sys-typescale-label-large-weight) !important;
		letter-spacing: var(--x-sys-typescale-label-large-tracking) !important;
		line-height: var(--x-sys-typescale-label-large-line-height) !important;
		text-transform: var(--x-sys-typescale-label-large-transform) !important;
	}

	.md\:text-label-medium {
		font-family: var(--x-sys-typescale-label-medium-font) !important;
		font-size: var(--x-sys-typescale-label-medium-size) !important;
		font-weight: var(--x-sys-typescale-label-medium-weight) !important;
		letter-spacing: var(--x-sys-typescale-label-medium-tracking) !important;
		line-height: var(--x-sys-typescale-label-medium-line-height) !important;
		text-transform: var(--x-sys-typescale-label-medium-transform) !important;
	}

	.md\:text-label-small {
		font-family: var(--x-sys-typescale-label-small-font) !important;
		font-size: var(--x-sys-typescale-label-small-size) !important;
		font-weight: var(--x-sys-typescale-label-small-weight) !important;
		letter-spacing: var(--x-sys-typescale-label-small-tracking) !important;
		line-height: var(--x-sys-typescale-label-small-line-height) !important;
		text-transform: var(--x-sys-typescale-label-small-transform) !important;
	}

	.md\:text-body-large {
		font-family: var(--x-sys-typescale-body-large-font) !important;
		font-size: var(--x-sys-typescale-body-large-size) !important;
		font-weight: var(--x-sys-typescale-body-large-weight) !important;
		letter-spacing: var(--x-sys-typescale-body-large-tracking) !important;
		line-height: var(--x-sys-typescale-body-large-line-height) !important;
		text-transform: var(--x-sys-typescale-body-large-transform) !important;
	}

	.md\:text-body-medium {
		font-family: var(--x-sys-typescale-body-medium-font) !important;
		font-size: var(--x-sys-typescale-body-medium-size) !important;
		font-weight: var(--x-sys-typescale-body-medium-weight) !important;
		letter-spacing: var(--x-sys-typescale-body-medium-tracking) !important;
		line-height: var(--x-sys-typescale-body-medium-line-height) !important;
		text-transform: var(--x-sys-typescale-body-medium-transform) !important;
	}

	.md\:text-body-small {
		font-family: var(--x-sys-typescale-body-small-font) !important;
		font-size: var(--x-sys-typescale-body-small-size) !important;
		font-weight: var(--x-sys-typescale-body-small-weight) !important;
		letter-spacing: var(--x-sys-typescale-body-small-tracking) !important;
		line-height: var(--x-sys-typescale-body-small-line-height) !important;
		text-transform: var(--x-sys-typescale-body-small-transform) !important;
	}
}

/* #endregion md */

/* #region lg */
@media (min-width: 75em) {
	.lg\:text-display-large {
		font-family: var(--x-sys-typescale-display-large-font) !important;
		font-size: var(--x-sys-typescale-display-large-size) !important;
		font-weight: var(--x-sys-typescale-display-large-weight) !important;
		letter-spacing: var(--x-sys-typescale-display-large-tracking) !important;
		line-height: var(--x-sys-typescale-display-large-line-height) !important;
		text-transform: var(--x-sys-typescale-display-large-transform) !important;
	}

	.lg\:text-display-medium {
		font-family: var(--x-sys-typescale-display-medium-font) !important;
		font-size: var(--x-sys-typescale-display-medium-size) !important;
		font-weight: var(--x-sys-typescale-display-medium-weight) !important;
		letter-spacing: var(--x-sys-typescale-display-medium-tracking) !important;
		line-height: var(--x-sys-typescale-display-medium-line-height) !important;
		text-transform: var(--x-sys-typescale-display-medium-transform) !important;
	}

	.lg\:text-display-small {
		font-family: var(--x-sys-typescale-display-small-font) !important;
		font-size: var(--x-sys-typescale-display-small-size) !important;
		font-weight: var(--x-sys-typescale-display-small-weight) !important;
		letter-spacing: var(--x-sys-typescale-display-small-tracking) !important;
		line-height: var(--x-sys-typescale-display-small-line-height) !important;
		text-transform: var(--x-sys-typescale-display-small-transform) !important;
	}

	.lg\:text-headline-large {
		font-family: var(--x-sys-typescale-headline-large-font) !important;
		font-size: var(--x-sys-typescale-headline-large-size) !important;
		font-weight: var(--x-sys-typescale-headline-large-weight) !important;
		letter-spacing: var(--x-sys-typescale-headline-large-tracking) !important;
		line-height: var(--x-sys-typescale-headline-large-line-height) !important;
		text-transform: var(--x-sys-typescale-headline-large-transform) !important;
	}

	.lg\:text-headline-medium {
		font-family: var(--x-sys-typescale-headline-medium-font) !important;
		font-size: var(--x-sys-typescale-headline-medium-size) !important;
		font-weight: var(--x-sys-typescale-headline-medium-weight) !important;
		letter-spacing: var(--x-sys-typescale-headline-medium-tracking) !important;
		line-height: var(--x-sys-typescale-headline-medium-line-height) !important;
		text-transform: var(--x-sys-typescale-headline-medium-transform) !important;
	}

	.lg\:text-headline-small {
		font-family: var(--x-sys-typescale-headline-small-font) !important;
		font-size: var(--x-sys-typescale-headline-small-size) !important;
		font-weight: var(--x-sys-typescale-headline-small-weight) !important;
		letter-spacing: var(--x-sys-typescale-headline-small-tracking) !important;
		line-height: var(--x-sys-typescale-headline-small-line-height) !important;
		text-transform: var(--x-sys-typescale-headline-small-transform) !important;
	}

	.lg\:text-title-large {
		font-family: var(--x-sys-typescale-title-large-font) !important;
		font-size: var(--x-sys-typescale-title-large-size) !important;
		font-weight: var(--x-sys-typescale-title-large-weight) !important;
		letter-spacing: var(--x-sys-typescale-title-large-tracking) !important;
		line-height: var(--x-sys-typescale-title-large-line-height) !important;
		text-transform: var(--x-sys-typescale-title-large-transform) !important;
	}

	.lg\:text-title-medium {
		font-family: var(--x-sys-typescale-title-medium-font) !important;
		font-size: var(--x-sys-typescale-title-medium-size) !important;
		font-weight: var(--x-sys-typescale-title-medium-weight) !important;
		letter-spacing: var(--x-sys-typescale-title-medium-tracking) !important;
		line-height: var(--x-sys-typescale-title-medium-line-height) !important;
		text-transform: var(--x-sys-typescale-title-medium-transform) !important;
	}

	.lg\:text-title-small {
		font-family: var(--x-sys-typescale-title-small-font) !important;
		font-size: var(--x-sys-typescale-title-small-size) !important;
		font-weight: var(--x-sys-typescale-title-small-weight) !important;
		letter-spacing: var(--x-sys-typescale-title-small-tracking) !important;
		line-height: var(--x-sys-typescale-title-small-line-height) !important;
		text-transform: var(--x-sys-typescale-title-small-transform) !important;
	}

	.lg\:text-label-large {
		font-family: var(--x-sys-typescale-label-large-font) !important;
		font-size: var(--x-sys-typescale-label-large-size) !important;
		font-weight: var(--x-sys-typescale-label-large-weight) !important;
		letter-spacing: var(--x-sys-typescale-label-large-tracking) !important;
		line-height: var(--x-sys-typescale-label-large-line-height) !important;
		text-transform: var(--x-sys-typescale-label-large-transform) !important;
	}

	.lg\:text-label-medium {
		font-family: var(--x-sys-typescale-label-medium-font) !important;
		font-size: var(--x-sys-typescale-label-medium-size) !important;
		font-weight: var(--x-sys-typescale-label-medium-weight) !important;
		letter-spacing: var(--x-sys-typescale-label-medium-tracking) !important;
		line-height: var(--x-sys-typescale-label-medium-line-height) !important;
		text-transform: var(--x-sys-typescale-label-medium-transform) !important;
	}

	.lg\:text-label-small {
		font-family: var(--x-sys-typescale-label-small-font) !important;
		font-size: var(--x-sys-typescale-label-small-size) !important;
		font-weight: var(--x-sys-typescale-label-small-weight) !important;
		letter-spacing: var(--x-sys-typescale-label-small-tracking) !important;
		line-height: var(--x-sys-typescale-label-small-line-height) !important;
		text-transform: var(--x-sys-typescale-label-small-transform) !important;
	}

	.lg\:text-body-large {
		font-family: var(--x-sys-typescale-body-large-font) !important;
		font-size: var(--x-sys-typescale-body-large-size) !important;
		font-weight: var(--x-sys-typescale-body-large-weight) !important;
		letter-spacing: var(--x-sys-typescale-body-large-tracking) !important;
		line-height: var(--x-sys-typescale-body-large-line-height) !important;
		text-transform: var(--x-sys-typescale-body-large-transform) !important;
	}

	.lg\:text-body-medium {
		font-family: var(--x-sys-typescale-body-medium-font) !important;
		font-size: var(--x-sys-typescale-body-medium-size) !important;
		font-weight: var(--x-sys-typescale-body-medium-weight) !important;
		letter-spacing: var(--x-sys-typescale-body-medium-tracking) !important;
		line-height: var(--x-sys-typescale-body-medium-line-height) !important;
		text-transform: var(--x-sys-typescale-body-medium-transform) !important;
	}

	.lg\:text-body-small {
		font-family: var(--x-sys-typescale-body-small-font) !important;
		font-size: var(--x-sys-typescale-body-small-size) !important;
		font-weight: var(--x-sys-typescale-body-small-weight) !important;
		letter-spacing: var(--x-sys-typescale-body-small-tracking) !important;
		line-height: var(--x-sys-typescale-body-small-line-height) !important;
		text-transform: var(--x-sys-typescale-body-small-transform) !important;
	}
}

/* #endregion lg */

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/text.css?17310229344978*/
/*!
 * Utilities/Typography
 */

/* #region Text align */

/* #region sm */
.text-left {
	text-align: left !important;
}

.text-center {
	text-align: center !important;
}

.text-right {
	text-align: right !important;
}

.text-justify {
	text-align: justify !important;
}

.text-start {
	text-align: start !important;
}

.text-end {
	text-align: end !important;
}

/* #endregion sm */

/* #region sm, custom */
/* #endregion sm, custom */

/* #region sm */
@media (min-width: 37.5em) {
	.sm\:text-left {
		text-align: left !important;
	}

	.sm\:text-center {
		text-align: center !important;
	}

	.sm\:text-right {
		text-align: right !important;
	}

	.sm\:text-justify {
		text-align: justify !important;
	}

	.sm\:text-start {
		text-align: start !important;
	}

	.sm\:text-end {
		text-align: end !important;
	}
}

/* #endregion sm */

/* #region sm, custom */
@media (min-width: 37.5em) {}

/* #endregion sm, custom */

/* #region md */
@media (min-width: 52.5em) {
	.md\:text-left {
		text-align: left !important;
	}

	.md\:text-center {
		text-align: center !important;
	}

	.md\:text-right {
		text-align: right !important;
	}

	.md\:text-justify {
		text-align: justify !important;
	}

	.md\:text-start {
		text-align: start !important;
	}

	.md\:text-end {
		text-align: end !important;
	}
}

/* #endregion md */

/* #region md, custom */
@media (min-width: 52.5em) {}

/* #endregion md, custom */

/* #region lg */
@media (min-width: 75em) {
	.lg\:text-left {
		text-align: left !important;
	}

	.lg\:text-center {
		text-align: center !important;
	}

	.lg\:text-right {
		text-align: right !important;
	}

	.lg\:text-justify {
		text-align: justify !important;
	}

	.lg\:text-start {
		text-align: start !important;
	}

	.lg\:text-end {
		text-align: end !important;
	}
}

/* #endregion lg */

/* #region lg, custom */
@media (min-width: 75em) {}

/* #endregion lg, custom */

/* #endregion Text align */

/* #region Text decoration */

.underline {
	text-decoration-line: underline;
}

.overline {
	text-decoration-line: overline;
}

.line-through {
	text-decoration-line: line-through;
}

.no-underline {
	text-decoration-line: none;
}

/* #endregion Text decoration */

/* #region Text emphasis */

.text-high-emphasis {
	opacity: var(--x-sys-opacity-high-emphasis) !important;
}

.text-medium-emphasis {
	opacity: var(--x-sys-opacity-medium-emphasis) !important;
}

.text-disabled {
	opacity: var(--x-sys-opacity-disabled) !important;
}

/* #endregion Text emphasis */

/* #region Text transform */

.uppercase {
	text-transform: uppercase !important;
}

.lowercase {
	text-transform: lowercase !important;
}

.capitalize {
	text-transform: capitalize !important;
}

.normal-case {
	text-transform: none !important;
}

/* #endregion Text transform */

/* #region Font family */

.font-brand {
	font-family: var(--x-ref-typeface-brand) !important;
}

.font-plain {
	font-family: var(--x-ref-typeface-plain) !important;
}

.font-\[rammetto-one\] {
	font-family: 'Rammetto One' !important;
}

/* #endregion Font family */

/* #region Font size */
.text-\[3\.75rem\] {
	font-size: 3.75rem !important;
}

@media (min-width: 75em) {
	.lg\:text-\[5rem\] {
		font-size: 5rem !important;
	}
}

/* #endregion Font size */

/* #region Font style */
.italic {
	font-style: italic !important;
}

.not-italic {
	font-style: normal !important;
}

/* #endregion Font style */

/* #region Font weight */
.font-thin {
	font-weight: 100 !important;
}

.font-light {
	font-weight: 300 !important;
}

.font-normal {
	font-weight: 400 !important;
}

.font-medium {
	font-weight: 500 !important;
}

.font-semibold {
	font-weight: 600 !important;
}

.font-bold {
	font-weight: 700 !important;
}

.font-black {
	font-weight: 900 !important;
}

/* #endregion Font weight */

/* #region Line clamp */
.line-clamp-4 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

/* #endregion Line clamp */

/* #region Line height */
.leading-4 {
	line-height: 1rem !important;
}

.leading-5 {
	line-height: 1.25rem !important;
}

.leading-6 {
	line-height: 1.5rem !important;
}

.leading-7 {
	line-height: 1.75rem !important;
}

.leading-8 {
	line-height: 2rem !important;
}

.leading-9 {
	line-height: 2.25rem !important;
}

.leading-\[1\] {
	line-height: 1 !important;
}

/* #endregion Line height */

/* #region Text truncate */
.text-truncate {
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

/* #endregion Text truncate */

/* #region Whitespace */
.whitespace-normal {
	white-space: normal !important;
}

.whitespace-nowrap {
	white-space: nowrap !important;
}

/* #endregion Whitespace */

/* #region Word Break */
.break-words {
	overflow-wrap: break-word !important;
}

/* #endregion Word Break */

/* #region Hyphens */
.hyphens-none {
	hyphens: none !important;
}

.hyphens-manual {
	hyphens: manual !important;
}

.hyphens-auto {
	hyphens: auto !important;
}

/* #endregion Hyphens */

/* End */


/* Start:/local/templates/ronc.site/app/styles/utils/z-index.css?17228818981696*/
/*!
 * Utilities/Z-index
 */

/* #region sm */
.-z-2 {
	z-index: -2 !important;
}

.-z-1 {
	z-index: -1 !important;
}

.z-0 {
	z-index: 0 !important;
}

.z-1 {
	z-index: 1 !important;
}

.z-2 {
	z-index: 2 !important;
}

.z-auto {
	z-index: auto !important;
}

/* #endregion sm */

/* #region sm, custom */
/* #endregion sm, custom */

/* #region sm */
@media (min-width: 37.5em) {
	.sm\:-z-2 {
		z-index: -2 !important;
	}

	.sm\:-z-1 {
		z-index: -1 !important;
	}

	.sm\:z-0 {
		z-index: 0 !important;
	}

	.sm\:z-1 {
		z-index: 1 !important;
	}

	.sm\:z-2 {
		z-index: 2 !important;
	}

	.sm\:z-auto {
		z-index: auto !important;
	}
}

/* #endregion sm */

/* #region sm, custom */
@media (min-width: 37.5em) {}

/* #endregion sm, custom */

/* #region md */
@media (min-width: 52.5em) {
	.md\:-z-2 {
		z-index: -2 !important;
	}

	.md\:-z-1 {
		z-index: -1 !important;
	}

	.md\:z-0 {
		z-index: 0 !important;
	}

	.md\:z-1 {
		z-index: 1 !important;
	}

	.md\:z-2 {
		z-index: 2 !important;
	}

	.md\:z-auto {
		z-index: auto !important;
	}
}

/* #endregion md */

/* #region md, custom */
@media (min-width: 52.5em) {}

/* #endregion md, custom */

/* #region lg */
@media (min-width: 75em) {
	.lg\:-z-2 {
		z-index: -2 !important;
	}

	.lg\:-z-1 {
		z-index: -1 !important;
	}

	.lg\:z-0 {
		z-index: 0 !important;
	}

	.lg\:z-1 {
		z-index: 1 !important;
	}

	.lg\:z-2 {
		z-index: 2 !important;
	}

	.lg\:z-auto {
		z-index: auto !important;
	}
}

/* #endregion lg */

/* #region lg, custom */
@media (min-width: 75em) {}

/* #endregion lg, custom */

/* End */


/* Start:/local/templates/ronc.site/app/styles/_trumps.css?1736430878709*/
/* #region Временные стили, разрешающие конфликты bootstrap И нового дизайна */

.btn {
	font-weight: var(--x-sys-typescale-label-large-weight);
}

.btn.btn-light.btn-spoiler {
	border-left-color: #3EA3DC;
	border-left-width: 4px;
}

.btn.btn-light.btn-spoiler:hover {
	border-color: #dae0e5;
}

p:not(:where([class])) {
	margin-bottom: 1rem;
}

ol:not(:where([class])),
ul:not(:where([class])) {
	padding-inline-start: 2.5rem;
}

ol:not(:where([class])) {
	list-style: decimal;
}

ul:not(:where([class])) {
	list-style: disc;
}

/* #endregion Временные стили, разрешающие конфликты bootstrap И нового дизайна */

/* End */


/* Start:/local/templates/ronc.site/app/plugins/lightbox/lightbox.css?1730992436586*/
.pswp--lightbox {
	--pswp-bg: rgb(var(--x-sys-color-scrim));
	--pswp-placeholder-bg: rgb(var(--x-sys-color-scrim));
	--pswp-root-z-index: 2500;
	--pswp-preloader-color: rgb(var(--x-sys-color-surface));
	--pswp-preloader-color-secondary: rgb(var(--x-sys-color-surface));
	--pswp-icon-color: rgb(var(--x-sys-color-surface));
	--pswp-icon-color-secondary: rgb(var(--x-sys-color-on-surface));
	--pswp-icon-stroke-color: rgb(var(--x-sys-color-on-surface));
	--pswp-icon-stroke-width: 0.125rem;
	--pswp-error-text-color: rgb(var(--x-sys-color-error));

	pointer-events: auto;
}

/* End */


/* Start:/local/templates/ronc.site/app/components/carousel/carousel.css?17310873063361*/
.carousel {
	--swiper-theme-color: rgb(var(--x-sys-color-primary));
	--swiper-wrapper-transition-timing-function: var(--x-sys-motion-easing-standard);
	--swiper-pagination-color: rgb(var(--x-sys-color-tertiary));
	--swiper-pagination-bullet-border-radius: var(--x-sys-shape-corner-full);
	--swiper-pagination-bullet-horizontal-gap: 0.375rem;
	--swiper-pagination-bullet-inactive-color: rgb(204, 204, 204);
	--swiper-pagination-bullet-inactive-opacity: 1;
	--swiper-pagination-bullet-height: 0.875rem;
	--swiper-pagination-bullet-width: 0.875rem;
}

.carousel-controls {
	align-items: center;
	display: flex;
	inset: 0;
	justify-content: space-between;
	list-style-type: none;
	pointer-events: none;
	position: absolute;
	width: 100%;
	z-index: 1;
}

.carousel-controls--positioning-static {
	position: static;
}

.carousel-controls > * {
	pointer-events: auto;
}

.carousel__prev.x-button--lock,
.carousel__next.x-button--lock {
	display: none !important;
}

.carousel__prev.x-button--disabled,
.carousel__next.x-button--disabled {
	pointer-events: none !important;
}

.carousel__prev--translucent:where(:not(.x-button--disabled):not(:hover)),
.carousel__next--translucent:where(:not(.x-button--disabled):not(:hover)) {
	opacity: 50%;
}

.carousel__pagination.swiper-pagination-bullets.swiper-pagination-horizontal,
.carousel__pagination.swiper-pagination-custom {
	bottom: 1.25rem;
}

.carousel__pagination.swiper-pagination-bullets {
	line-height: 1;
	min-height: var(--swiper-pagination-bullet-height);
}

.carousel__pagination--positioning-static.swiper-pagination {
	position: static;
}

.carousel__pagination.carousel__pagination--placement-bottom-center.carousel__pagination--positioning-static.swiper-pagination {
	margin-inline-end: auto;
	margin-inline-start: auto;
	transform: none;
}

.carousel--positioning-static.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	margin-top: 1.25rem;
	text-align: start;
	transform: none;
}

.carousel__pagination > .swiper-pagination-bullet {
	transition-duration: var(--x-sys-motion-duration-short4, 200ms);
	transition-property: background-color, border-color, opacity;
	transition-timing-function: var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1));
}

.carousel__pagination > .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
	color: rgb(var(--x-sys-color-on-surface-variant));
}

.carousel__pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
	color: rgb(var(--x-sys-color-on-primary));
}

.carousel__pagination > .swiper-pagination-bullet::after {
	background-color: currentColor;
	border-radius: inherit;
	box-sizing: border-box;
	content: "";
	display: block;
	inset: 0;
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	transition-duration: var(--x-comp-state-layer-motion-duration, var(--x-sys-motion-duration-short4, 200ms));
	transition-property: opacity;
	transition-timing-function: var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1));
}

@media (hover: hover) {
	.carousel__pagination > .swiper-pagination-bullet:where(:hover)::after {
		opacity: calc(var(--x-sys-state-hover-state-layer-opacity, 0.08) * var(--x-sys-state-layer-opacity-multiplier, 1));
	}
}

/* End */


/* Start:/local/templates/ronc.site/app/components/choices-select/choices-select.css?17429300034355*/
.choices-select .choices {
	border-radius: 0.25rem;
	contain: layout;
	font-size: 1rem;
	letter-spacing: 0;
	z-index: 1;
}

.choices-select .choices::before {
	border: 0.0625rem solid currentColor;
	border-radius: 0.25rem;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.38;
	pointer-events: none;
	position: absolute;
	top: 0;
	transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
	user-select: none;
	width: 100%;
}

@media (hover: hover) {
	.choices-select .choices:hover::before {
		opacity: 0.87;
	}
}

.choices-select .choices.is-focused,
.choices-select .choices.is-open {
	z-index: 10;
}

.choices-select .choices.is-focused::before {
	border-width: 0.125rem;
	color: rgb(var(--x-sys-color-primary));
	opacity: 1;
}

.choices-select .choices__inner {
	align-items: center;
	background-color: transparent;
	border: none;
	border-radius: inherit;
	display: inline-flex;
	font-size: 1rem;
	line-height: normal;
}

.choices-select .choices__placeholder {
	opacity: 0.6;
}

.choices-select .choices__list--single {
	display: grid;
	grid-auto-columns: minmax(0, 1fr);
}

.choices-select .choices[data-type*=select-one]:after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 24 24'%3E%3Cpath fill='%231c1d1a' d='M12 16c-.3 0-.5-.1-.7-.3l-6-6c-.4-.4-.4-1 0-1.4s1-.4 1.4 0l5.3 5.3 5.3-5.3c.4-.4 1-.4 1.4 0s.4 1 0 1.4l-6 6c-.2.2-.4.3-.7.3z'/%3E%3C/svg%3E%0A");
	border: none;
	height: 1.5rem;
	margin-top: 0;
	right: 0.75rem;
	top: calc(50% - (1.5rem / 2));
	transition-duration: 0.2s;
	transition-property: transform;
	transition-timing-function: var(--x-standard-easing);
	width: 1.5rem;
}

.choices-select .choices[data-type*=select-one].is-open:after {
	transform: rotate(180deg);
}

.choices-select .choices__list--dropdown {
	background: rgb(var(--x-sys-color-surface));
	border: none;
	border-radius: 0.25rem;
	box-shadow: var(--x-shadow-key-8, 0 0.3125rem 0.3125rem -0.1875rem rgba(0, 0, 0, 0.12), 0 0.5rem 0.625rem 0.0625rem rgba(0, 0, 0, 0.06), 0 0.1875rem 0.875rem 0.125rem rgba(0, 0, 0, 0.04));
	margin-top: 0;
	opacity: 0;
	transform: translateY(-0.9375rem);
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	word-break: break-word;
}

.choices-select .choices__list--dropdown.is-active {
	opacity: 1;
	transform: translateY(0);
}

.choices-select .choices__list--dropdown .choices__item {
	font-size: 1rem;
	padding-block: 1rem;
	padding-inline: 1rem;
}

.choices-select .choices__list--dropdown .choices__item--selectable {
	padding-right: 0.5rem;
}

.choices-select .choices__list--dropdown .choices__item--selectable.is-highlighted {
	background-color: rgb(var(--x-sys-color-primary-container));
	color: rgb(var(--x-sys-color-on-primary-container));
	opacity: 1;
}

.choices-select .choices__list--single .choices__item {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.choices-select .choices__list::-webkit-scrollbar {
	height: 0.5rem;
	width: 0.5rem;
}

.choices-select .choices__list::-webkit-scrollbar-track {
	background: transparent;
}

.choices-select .choices__list::-webkit-scrollbar-thumb {
	background: rgba(158, 158, 158, 0.4);
	background-clip: padding-box;
	border-radius: 0.25rem;
}

.choices-select .choices__list::-webkit-scrollbar-thumb:hover {
	background: rgba(158, 158, 158, 0.6);
}

.choices-select .choices__list::-webkit-scrollbar-thumb:active {
	background: rgba(158, 158, 158, 0.88);
}

.choices-select--density-default,
.choices-select--density-default .choices__inner {
	min-height: 3.5rem;
}

.choices-select--density-default .choices__inner {
	padding-block: 1rem;
	padding-inline: 1rem;
}

.choices-select--density-default .choices[data-type*=select-one] .choices__inner {
	padding-bottom: 1rem;
}

.choices-select--density-comfortable,
.choices-select--density-comfortable .choices__inner {
	min-height: 3rem;
}

.choices-select--density-comfortable .choices__inner {
	padding-block: 0.5rem;
	padding-inline: 0.5rem;
}

.choices-select--density-comfortable .choices[data-type*=select-one] .choices__inner {
	padding-bottom: 0.5rem;
}

.choices-select--density-compact,
.choices-select--density-compact .choices__inner {
	min-height: 2.5rem;
}

.choices-select--density-compact .choices__inner {
	padding: 0.5rem 0.75rem;
}

.choices-select--density-compact .choices__list--single {
	padding: 0 1.5rem 0 0;
}
/* End */


/* Start:/local/templates/ronc.site/app/components/main-layout/main-layout.css?17364444181026*/
.main-layout__wrapper {
	align-items: flex-start;
	column-gap: 2rem;
	display: grid;
	grid-auto-columns: minmax(0, 1fr);
}

@media (min-width: 75em) {
	.main-layout__wrapper {
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}
}

@media (min-width: 75em) {
	.main-layout__sidebar {
		grid-column: span 3 / span 3;
	}
}

@media (min-width: 75em) {
	.main-layout__content {
		grid-column-end: -1;
		grid-column-start: 1;
	}
}

@media (min-width: 75em) {
	.main-layout__sidebar + .main-layout__content {
		grid-column-start: 4;
	}
}

.main-layout--inset .main-layout__sidebar {
	margin-bottom: 1.25rem;
}

@media (min-width: 75em) {
	.main-layout--inset .main-layout__sidebar {
		margin-bottom: 2.5rem;
	}
}

.main-layout--inset .main-layout__content,
.main-layout--legacy .main-layout__content {
	padding-bottom: 2rem;
}

@media (min-width: 75em) {

	.main-layout--inset .main-layout__content,
	.main-layout--legacy .main-layout__content {
		padding-bottom: 4rem;
	}
}

/* End */


/* Start:/local/templates/ronc.site/app/components/SCarousel/SCarousel.css?17228477021696*/
/*!
* Components/SwiperCarousel
*/

.s-carousel {
	--swiper-theme-color: rgb(var(--x-sys-color-primary));
	--swiper-pagination-bullet-height: 0.875rem;
	--swiper-pagination-bullet-width: 0.875rem;
}

.s-carousel .s-carousel__controls {
	align-items: center;
	bottom: 0;
	display: flex;
	height: 100%;
	justify-content: space-between;
	left: 0;
	list-style-type: none;
	pointer-events: none;
	position: absolute;
	width: 100%;
	z-index: 10;
}

.s-carousel .s-carousel__controls > * {
	pointer-events: auto;
}

.s-carousel .s-carousel__prev.x-btn--lock,
.s-carousel .s-carousel__next.x-btn--lock {
	display: none !important;
}

.s-carousel-control.x-btn--disabled,
.s-carousel-control.x-btn--disabled,
.s-carousel .s-carousel__prev.x-btn--disabled,
.s-carousel .s-carousel__next.x-btn--disabled {
	opacity: 0;
}

.s-carousel .swiper-horizontal > .swiper-pagination-bullets,
.s-carousel .swiper-pagination-bullets.swiper-pagination-horizontal,
.s-carousel .swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 1.25rem;
}

.s-carousel .swiper-pagination-bullets {
	line-height: 1;
}

.s-carousel.s-carousel--pagination-bottom-center > .swiper-pagination {
	margin-inline-end: auto;
	margin-inline-start: auto;
}

.s-carousel.s-carousel--pagination-static > .swiper-pagination {
	position: static;
}

.s-carousel.s-carousel--pagination-static.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.s-carousel.s-carousel--pagination-static > .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	margin-top: 1.25rem;
	text-align: start;
	transform: none;
}

/* End */


/* Start:/local/templates/ronc.site/app/components/XBtn/XBtn.css?172284770222892*/
/*!
* Components/XBtn
*/

.x-btn {
	--x-btn-container-color: var(--x-comp-btn-container-color, var(--x-sys-color-surface));
	--x-btn-container-height: var(--x-comp-btn-container-height, 2.5rem);
	--x-btn-container-height-reducer: var(--x-comp-btn-container-height-reducer, 0.5rem);
	--x-btn-container-min-width: var(--x-comp-btn-container-min-width, 4rem);
	--x-btn-container-min-width-reducer: var(--x-comp-btn-container-min-width-reducer, 0.5rem);
	--x-btn-container-motion-duration: var(--x-comp-btn-container-motion-duration, var(--x-sys-motion-duration-short4, 200ms));
	--x-btn-container-motion-easing: var(--x-comp-btn-container-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
	--x-btn-container-outline-color: var(--x-comp-btn-container-outline-color, rgb(var(--x-sys-color-outline)));
	--x-btn-container-outline-style: var(--x-comp-btn-container-outline-style, solid);
	--x-btn-container-outline-width: var(--x-comp-btn-container-outline-width, 0);
	--x-btn-container-underlay-opacity: var(--x-comp-btn-container-underlay-opacity, var(--x-sys-state-pressed-state-layer-opacity, 0.12));
	--x-btn-container-shadow-color: var(--x-comp-btn-container-shadow-color, var(--x-sys-color-shadow));
	--x-btn-container-shape: var(--x-comp-btn-container-shape, var(--x-sys-shape-corner-full, 999rem));
	--x-btn-density-compact-multiplier: var(--x-comp-btn-density-compact-multiplier, -3);
	--x-btn-density-comfortable-multiplier: var(--x-comp-btn-density-comfortable-multiplier, -2);
	--x-btn-density-default-multiplier: var(--x-comp-btn-density-default-multiplier, 0);
	--x-btn-density-reducer: var(--x-comp-btn-density-reducer, 0.25rem);
	--x-btn-disabled-container-color: var(--x-comp-btn-disabled-container-color, var(--x-sys-color-on-surface));
	--x-btn-disabled-container-elevation: var(--x-comp-btn-disabled-container-elevation, var(--x-elevation-level0));
	--x-btn-disabled-container-opacity: var(--x-comp-btn-disabled-container-opacity, var(--x-sys-state-disabled-container-opacity, 0.12));
	--x-btn-disabled-container-outline-color: var(--x-comp-btn-disabled-container-outline-color, rgb(var(--x-sys-color-on-surface)));
	--x-btn-disabled-container-outline-opacity: var(--x-comp-btn-disabled-container-outline-opacity, 0.12);
	--x-btn-disabled-label-text-color: var(--x-comp-btn-disabled-label-text-color, var(--x-sys-color-on-surface));
	--x-btn-disabled-label-text-opacity: var(--x-comp-btn-disabled-label-text-opacity, var(--x-sys-state-disabled-text-opacity, 0.38));
	--x-btn-elevated-container-elevation-level: var(--x-comp-btn-elevated-container-elevation-level, 1);
	--x-btn-elevated-hover-container-elevation-level: var(--x-comp-btn-elevated-hover-container-elevation-level, 2);
	--x-btn-elevated-focus-container-elevation-level: var(--x-comp-btn-elevated-focus-container-elevation-level, 1);
	--x-btn-elevated-pressed-container-elevation-level: var(--x-comp-btn-elevated-pressed-container-elevation-level, 1);
	--x-btn-filled-container-elevation-level: var(--x-comp-btn-filled-container-elevation-level, 0);
	--x-btn-filled-hover-container-elevation-level: var(--x-comp-btn-filled-hover-container-elevation-level, 1);
	--x-btn-filled-focus-container-elevation-level: var(--x-comp-btn-filled-focus-container-elevation-level, 0);
	--x-btn-filled-pressed-container-elevation-level: var(--x-comp-btn-filled-pressed-container-elevation-level, 0);
	--x-btn-focus-container-outline-color: var(--x-comp-btn-focus-container-outline-color, currentColor);
	--x-btn-hover-container-outline-color: var(--x-comp-btn-hover-container-outline-color, rgb(var(--x-sys-color-outline)));
	--x-btn-icon-container-shape: var(--x-comp-btn-icon-container-shape, var(--x-sys-shape-corner-full, 999rem));
	--x-btn-icon-icon-size: var(--x-comp-btn-icon-icon-size, 1.5rem);
	--x-btn-icon-icon-size-reducer: var(--x-comp-btn-icon-icon-size-reducer, 0.25rem);
	--x-btn-icon-icon-size-multiplier: var(--x-comp-btn-icon-icon-size-multiplier, 1);
	--x-btn-icon-size: var(--x-comp-btn-icon-size, 1.125rem);
	--x-btn-icon-size-reducer: var(--x-comp-btn-icon-size-reducer, 0.1875rem);
	--x-btn-icon-size-multiplier: var(--x-comp-btn-icon-size-multiplier, 0.8571428571);
	--x-btn-label-text-color: var(--x-comp-btn-label-text-color, var(--x-sys-color-on-surface));
	--x-btn-label-text-font: var(--x-comp-btn-label-text-font, inherit);
	--x-btn-label-text-motion-duration: var(--x-comp-btn-label-text-motion-duration, var(--x-sys-motion-duration-short4, 200ms));
	--x-btn-label-text-motion-easing: var(--x-comp-btn-label-text-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
	--x-btn-label-text-size: var(--x-comp-btn-label-text-size, var(--x-sys-typescale-label-large-size, 0.875rem));
	--x-btn-label-text-size-reducer: var(--x-comp-btn-label-text-size-reducer, 0.125rem);
	--x-btn-label-text-weight: var(--x-comp-btn-label-text-weight, var(--x-sys-typescale-label-large-weight, 500));
	--x-btn-label-text-tracking: var(--x-comp-btn-label-text-tracking, var(--x-sys-typescale-label-large-tracking, 0.00625rem));
	--x-btn-label-text-line-height: var(--x-comp-btn-label-text-line-height, var(--x-sys-typescale-label-large-line-height, normal));
	--x-btn-label-text-transform: var(--x-comp-btn-label-text-transform, var(--x-sys-typescale-label-large-transform, none));
	--x-btn-label-text-white-space: var(--x-comp-btn-label-text-white-space, nowrap);
	--x-btn-outlined-container-outline-width: var(--x-comp-btn-outlined-container-outline-width, 0.0625rem);
	--x-btn-plain-container-opacity: var(--x-comp-btn-plain-container-opacity, 0.62);
	--x-btn-pressed-container-outline-color: var(--x-comp-btn-pressed-container-outline-color, rgb(var(--x-sys-color-outline)));
	--x-btn-rounded-container-shape: var(--x-comp-btn-rounded-container-shape, var(--x-sys-shape-corner-medium, 0.75rem));
	--x-btn-size-x-small-multiplier: var(--x-comp-btn-size-x-small-multiplier, -2);
	--x-btn-size-small-multiplier: var(--x-comp-btn-size-small-multiplier, -1);
	--x-btn-size-default-multiplier: var(--x-comp-btn-size-default-multiplier, 0);
	--x-btn-size-large-multiplier: var(--x-comp-btn-size-large-multiplier, 1);
	--x-btn-size-x-large-multiplier: var(--x-comp-btn-size-x-large-multiplier, 2);
	--x-btn-space-between: var(--x-comp-btn-space-between, 0.5rem);
	--x-btn-space-between-reducer: var(--x-comp-btn-space-between-reducer, 0.125rem);
	--x-btn-space-between-compensation: var(--x-comp-btn-space-between-compensation, -0.5rem);
	--x-btn-space-between-compensation-reducer: var(--x-comp-btn-space-between-compensation-reducer, -0.125rem);
	--x-btn-spacing: var(--x-comp-btn-spacing, 1.5rem);
	--x-btn-spacing-reducer: var(--x-comp-btn-spacing-reducer, 0.25rem);
	--x-btn-stacked-container-height: var(--x-comp-btn-stacked-container-height, 5rem);
	--x-btn-stacked-container-min-width: var(--x-comp-btn-stacked-container-min-width, 5rem);
	--x-btn-stacked-icon-size: var(--x-comp-btn-stacked-icon-size, 1.5rem);
	--x-btn-stacked-icon-size-multiplier: var(--x-comp-btn-stacked-icon-size-multiplier, 1.1428571429);
	--x-btn-stacked-icon-size-reducer: var(--x-comp-btn-stacked-icon-size-reducer, 0.25rem);
	--x-btn-stacked-label-text-size: var(--x-comp-btn-stacked-label-text-size, var(--x-sys-typescale-label-large-size, 0.875rem));
	--x-btn-stacked-spacing: var(--x-comp-btn-stacked-spacing, 1.5rem);
	--x-btn-stacked-label-text-line-height: var(--x-comp-btn-stacked-label-text-line-height, 1.5);
	--x-btn-stacked-space-between: var(--x-comp-btn-stacked-space-between, 0.25rem);
	--x-btn-state-layer-motion-duration: var(--x-comp-btn-state-layer-motion-duration, var(--x-sys-motion-duration-short4, 200ms));
	--x-btn-state-layer-motion-easing: var(--x-comp-btn-state-layer-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
}

.x-btn {
	align-items: center;
	border-radius: var(--x-btn-container-shape);
	display: inline-grid;
	flex-shrink: 0;
	font-family: var(--x-btn-label-text-font);
	font-size: calc(var(--x-btn-label-text-size) + var(--x-btn-label-text-size-reducer) * var(--_x-btn-size-multiplier));
	font-weight: var(--x-btn-label-text-weight);
	grid-template-areas: "prepend content append";
	grid-template-columns: max-content auto max-content;
	justify-content: center;
	letter-spacing: var(--x-btn-label-text-tracking);
	line-height: var(--x-btn-label-text-line-height);
	max-inline-size: 100%;
	min-width: calc(var(--x-btn-container-min-width) + var(--x-btn-container-min-width-reducer) * var(--_x-btn-size-multiplier));
	outline: none;
	padding: 0 calc(var(--x-btn-spacing) + var(--x-btn-spacing-reducer) * var(--_x-btn-size-multiplier));
	position: relative;
	text-decoration: none;
	text-indent: var(--x-btn-label-text-tracking);
	text-transform: var(--x-btn-label-text-transform);
	transition-duration: var(--x-btn-container-motion-duration);
	transition-property: background, border-color, box-shadow, color, opacity, transform;
	transition-timing-function: var(--x-btn-container-motion-easing);
	user-select: none;
	vertical-align: middle;
	border-color: var(--x-btn-container-outline-color);
	border-style: var(--x-btn-container-outline-style);
	border-width: var(--x-btn-container-outline-width);
}

@media (prefers-reduced-motion: reduce) {
	.x-btn {
		transition-delay: 0s;
		transition-duration: 0s;
	}
}

.x-btn .x-icon {
	--x-icon-size-multiplier: var(--x-btn-icon-size-multiplier);
}

.x-btn .x-icon--size-default {
	font-size: calc(var(--x-btn-icon-size) + var(--x-btn-icon-size-reducer) * var(--_x-btn-size-multiplier));
}

.x-btn__prepend,
.x-btn__append,
.x-btn__content {
	align-items: center;
	display: flex;
	transition-duration: var(--x-btn-label-text-motion-duration);
	transition-property: opacity, transform;
	transition-timing-function: var(--x-btn-label-text-motion-easing);
}

@media (prefers-reduced-motion: reduce) {

	.x-btn__prepend,
	.x-btn__append,
	.x-btn__content {
		transition-delay: 0s;
		transition-duration: 0s;
	}
}

.x-btn__prepend {
	grid-area: prepend;
	margin-inline-end: calc(var(--x-btn-space-between) + var(--x-btn-space-between-reducer) * var(--_x-btn-size-multiplier));
	margin-inline-start: calc(var(--x-btn-space-between-compensation) + var(--x-btn-space-between-compensation-reducer) * var(--_x-btn-size-multiplier));
}

.x-btn__append {
	grid-area: append;
	margin-inline-end: calc(var(--x-btn-space-between-compensation) + var(--x-btn-space-between-compensation-reducer) * var(--_x-btn-size-multiplier));
	margin-inline-start: calc(var(--x-btn-space-between) + var(--x-btn-space-between-reducer) * var(--_x-btn-size-multiplier));
}

.x-btn__content {
	grid-area: content;
	justify-content: center;
	white-space: var(--x-btn-label-text-white-space);
}

.x-btn__content > .x-icon--start {
	margin-inline-end: calc(var(--x-btn-space-between) + var(--x-btn-space-between-reducer) * var(--_x-btn-size-multiplier));
	margin-inline-start: calc(var(--x-btn-space-between-compensation) + var(--x-btn-space-between-compensation-reducer) * var(--_x-btn-size-multiplier));
}

.x-btn__content > .x-icon--end {
	margin-inline-end: calc(var(--x-btn-space-between-compensation) + var(--x-btn-space-between-compensation-reducer) * var(--_x-btn-size-multiplier));
	margin-inline-start: calc(var(--x-btn-space-between) + var(--x-btn-space-between-reducer) * var(--_x-btn-size-multiplier));
}

.x-btn--stacked > .x-btn__content {
	white-space: normal;
}

.x-btn__loader {
	align-items: center;
	display: flex;
	justify-content: center;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.x-btn__overlay,
.x-btn__underlay {
	pointer-events: none;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.x-btn__overlay {
	background-color: currentColor;
	border-radius: inherit;
	opacity: 0;
	transition-duration: var(--x-btn-state-layer-motion-duration);
	transition-timing-function: var(--x-btn-state-layer-motion-easing);
}

@media (prefers-reduced-motion: reduce) {
	.x-btn__overlay {
		transition-delay: 0s;
		transition-duration: 0s;
	}
}

@media (hover: hover) {
	.x-btn:hover > .x-btn__overlay {
		opacity: calc(var(--x-sys-state-hover-state-layer-opacity, 0.08) * var(--x-sys-state-layer-multiplier));
	}
}

.x-btn:focus-visible > .x-btn__overlay {
	opacity: calc(var(--x-sys-state-focus-state-layer-opacity, 0.12) * var(--x-sys-state-layer-multiplier));
}

@supports not selector(:focus-visible) {
	.x-btn:focus > .x-btn__overlay {
		opacity: calc(var(--x-sys-state-focus-state-layer-opacity, 0.12) * var(--x-sys-state-layer-multiplier));
	}
}

.x-btn--active > .x-btn__overlay,
.x-btn[aria-haspopup=menu][aria-expanded=true] > .x-btn__overlay {
	opacity: calc(var(--x-sys-state-pressed-state-layer-opacity, 0.12) * var(--x-sys-state-layer-multiplier));
}

.x-btn--active:hover > .x-btn__overlay,
.x-btn[aria-haspopup=menu][aria-expanded=true]:hover > .x-btn__overlay {
	opacity: calc((var(--x-sys-state-pressed-state-layer-opacity, 0.12) + var(--x-sys-state-hover-state-layer-opacity, 0.08)) * var(--x-sys-state-layer-multiplier));
}

.x-btn--active:focus-visible > .x-btn__overlay,
.x-btn[aria-haspopup=menu][aria-expanded=true]:focus-visible > .x-btn__overlay {
	opacity: calc((var(--x-sys-state-pressed-state-layer-opacity, 0.12) + var(--x-sys-state-focus-state-layer-opacity, 0.12)) * var(--x-sys-state-layer-multiplier));
}

@supports not selector(:focus-visible) {

	.x-btn--active:focus > .x-btn__overlay,
	.x-btn[aria-haspopup=menu][aria-expanded=true]:focus > .x-btn__overlay {
		opacity: calc((var(--x-sys-state-pressed-state-layer-opacity, 0.12) + var(--x-sys-state-focus-state-layer-opacity, 0.12)) * var(--x-sys-state-layer-multiplier));
	}
}

@supports selector(:focus-visible) {
	.x-btn::after {
		border: 0.125rem solid currentColor;
		border-radius: inherit;
		opacity: 0;
		pointer-events: none;
		transition-duration: var(--x-sys-state-focus-layer-motion-duration, var(--x-sys-motion-duration-short4, 200ms));
		transition-property: opacity;
		transition-timing-function: var(--x-sys-state-focus-layer-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
		content: "";
		height: 100%;
		left: 0;
		position: absolute;
		top: 0;
		width: 100%;
	}

	@media (prefers-reduced-motion: reduce) {
		.x-btn::after {
			transition-delay: 0s;
			transition-duration: 0s;
		}
	}

	.x-btn:focus-visible::after {
		opacity: calc(0.25 * var(--x-sys-state-layer-multiplier));
	}
}

.x-btn--border {
	border-width: var(--x-btn-outlined-container-outline-width);
}

.x-btn--disabled {
	opacity: 1;
	pointer-events: none;
}

.x-btn--disabled.x-btn {
	color: rgba(var(--x-btn-disabled-label-text-color), var(--x-btn-disabled-label-text-opacity)) !important;
}

.x-btn--disabled.x-btn--variant-elevated,
.x-btn--disabled.x-btn--variant-filled {
	background: rgba(var(--x-btn-disabled-container-color), var(--x-btn-disabled-container-opacity)) !important;
	box-shadow: var(--x-btn-disabled-container-elevation);
}

.x-btn--disabled.x-btn--variant-outlined {
	border-color: rgba(var(--x-btn-disabled-container-outline-color), var(--x-btn-disabled-container-outline-opacity));
}

.x-btn--loading {
	pointer-events: none;
}

.x-btn--loading > .x-btn__prepend,
.x-btn--loading > .x-btn__append,
.x-btn--loading > .x-btn__content {
	opacity: 0;
}

.x-btn--size-x-small {
	--_x-btn-container-height: var(--x-btn-container-height) + var(--x-btn-container-height-reducer) * var(--x-btn-size-x-small-multiplier);
	--_x-btn-size-multiplier: var(--x-btn-size-x-small-multiplier);
}

.x-btn--size-small {
	--_x-btn-container-height: var(--x-btn-container-height) + var(--x-btn-container-height-reducer) * var(--x-btn-size-small-multiplier);
	--_x-btn-size-multiplier: var(--x-btn-size-small-multiplier);
}

.x-btn--size-default {
	--_x-btn-container-height: var(--x-btn-container-height) + var(--x-btn-container-height-reducer) * var(--x-btn-size-default-multiplier);
	--_x-btn-size-multiplier: var(--x-btn-size-default-multiplier);
}

.x-btn--size-large {
	--_x-btn-container-height: var(--x-btn-container-height) + var(--x-btn-container-height-reducer) * var(--x-btn-size-large-multiplier);
	--_x-btn-size-multiplier: var(--x-btn-size-large-multiplier);
}

.x-btn--size-x-large {
	--_x-btn-container-height: var(--x-btn-container-height) + var(--x-btn-container-height-reducer) * var(--x-btn-size-x-large-multiplier);
	--_x-btn-size-multiplier: var(--x-btn-size-x-large-multiplier);
}

.x-btn.x-btn--density-default {
	height: calc(var(--_x-btn-container-height) + var(--x-btn-density-reducer) * var(--x-btn-density-default-multiplier));
}

.x-btn.x-btn--density-comfortable {
	height: calc(var(--_x-btn-container-height) + var(--x-btn-density-reducer) * var(--x-btn-density-comfortable-multiplier));
}

.x-btn.x-btn--density-compact {
	height: calc(var(--_x-btn-container-height) + var(--x-btn-density-reducer) * var(--x-btn-density-compact-multiplier));
}

.x-btn--stacked {
	--x-btn-container-height: var(--x-btn-stacked-container-height);
	--x-btn-container-min-width: var(--x-btn-stacked-container-min-width);
	--x-btn-icon-size: var(--x-btn-stacked-icon-size);
	--x-btn-icon-size-reducer: var(--x-btn-stacked-icon-size-reducer);
	--x-btn-label-text-size: var(--x-btn-stacked-label-text-size);
	--x-btn-spacing: var(--x-btn-stacked-spacing);
	align-content: center;
	grid-template-areas: "prepend" "content" "append";
	grid-template-columns: auto;
	grid-template-rows: max-content max-content max-content;
	justify-items: center;
}

.x-btn--stacked .x-btn__content {
	flex-direction: column;
	line-height: var(--x-btn-stacked-label-text-line-height);
}

.x-btn--stacked .x-btn__prepend,
.x-btn--stacked .x-btn__append,
.x-btn--stacked .x-btn__content > .x-icon--start,
.x-btn--stacked .x-btn__content > .x-icon--end {
	margin-inline-end: 0;
	margin-inline-start: 0;
}

.x-btn--stacked .x-btn__prepend,
.x-btn--stacked .x-btn__content > .x-icon--start {
	margin-bottom: calc(var(--x-btn-stacked-space-between));
}

.x-btn--stacked .x-btn__append,
.x-btn--stacked .x-btn__content > .x-icon--end {
	margin-top: calc(var(--x-btn-stacked-space-between));
}

.x-btn--stacked .x-icon {
	--x-icon-size-multiplier: var(--x-btn-stacked-icon-size-multiplier);
}

.x-btn--absolute {
	position: absolute;
}

.x-btn--fixed {
	position: fixed;
}

.x-btn--variant-elevated,
.x-btn--variant-filled {
	background: var(--x-btn-container-color);
	color: var(--x-btn-label-text-color);
}

.x-btn--variant-elevated {
	--x-elevation-level: var(--x-btn-elevated-container-elevation-level);
}

.x-btn--variant-filled {
	--x-elevation-level: var(--x-btn-filled-container-elevation-level);
}

.x-btn--variant-outlined,
.x-btn--variant-plain,
.x-btn--variant-text,
.x-btn--variant-tonal {
	background: transparent;
	color: inherit;
}

.x-btn--variant-outlined {
	border: var(--x-btn-outlined-container-outline-width) solid var(--x-btn-container-outline-color);
}

@media (hover: hover) {
	.x-btn--variant-outlined:hover {
		border-color: var(--x-btn-hover-container-outline-color);
	}
}

.x-btn--variant-outlined:focus-visible {
	border-color: var(--x-btn-focus-container-outline-color);
}

@supports not selector(:focus-visible) {
	.x-btn--variant-outlined:focus {
		border-color: var(--x-btn-focus-container-outline-color);
	}
}

.x-btn--variant-outlined.x-btn--active,
.x-btn[aria-haspopup=menu][aria-expanded=true] {
	border-color: var(--x-btn-pressed-container-outline-color);
}

.x-btn--variant-plain {
	opacity: var(--x-btn-plain-container-opacity);
}

@media (hover: hover) {
	.x-btn--variant-plain:hover {
		opacity: 1;
	}
}

.x-btn--variant-plain:focus-visible {
	opacity: 1;
}

@supports not selector(:focus-visible) {
	.x-btn--variant-plain:focus {
		opacity: 1;
	}
}

.x-btn--variant-plain > .x-btn__overlay {
	display: none;
}

.x-btn--variant-plain.x-btn--active,
.x-btn[aria-haspopup=menu][aria-expanded=true] {
	opacity: 1;
}

.x-btn--variant-text > .x-btn__overlay {
	background: currentColor;
}

.x-btn--variant-tonal > .x-btn__underlay {
	background: currentColor;
	border-radius: inherit;
	opacity: var(--x-sys-state-pressed-state-layer-opacity);
	pointer-events: none;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.x-btn--block {
	flex: 1 0 auto;
	min-width: 100%;
}

.x-btn.elevation {
	--x-elevation-shadow-color: var(--x-btn-container-shadow-color);
}

@media (hover: hover) {
	.x-btn.elevation.x-btn--variant-elevated:hover {
		--x-elevation-level: var(--x-btn-elevated-hover-container-elevation-level);
	}
}

.x-btn.elevation.x-btn--variant-elevated:focus-visible {
	--x-elevation-level: var(--x-btn-elevated-focus-container-elevation-level);
}

@supports not selector(:focus-visible) {
	.x-btn.elevation.x-btn--variant-elevated:focus {
		--x-elevation-level: var(--x-btn-elevated-focus-container-elevation-level);
	}
}

.x-btn.elevation.x-btn--variant-elevated:active {
	--x-elevation-level: var(--x-btn-elevated-pressed-container-elevation-level);
}

@media (hover: hover) {
	.x-btn.elevation.x-btn--variant-filled:hover {
		--x-elevation-level: var(--x-btn-filled-hover-container-elevation-level);
	}
}

.x-btn.elevation.x-btn--variant-filled:focus-visible {
	--x-elevation-level: var(--x-btn-filled-focus-container-elevation-level);
}

@supports not selector(:focus-visible) {
	.x-btn.elevation.x-btn--variant-filled:focus {
		--x-elevation-level: var(--x-btn-filled-focus-container-elevation-level);
	}
}

.x-btn.elevation.x-btn--variant-filled:active {
	--x-elevation-level: var(--x-btn-filled-pressed-container-elevation-level);
}

.x-btn--icon {
	--x-btn-container-shape: var(--x-btn-icon-container-shape);
	--x-btn-icon-size: var(--x-btn-icon-icon-size);
	--x-btn-icon-size-reducer: var(--x-btn-icon-icon-size-reducer);
	min-width: 0;
	padding: 0;
}

.x-btn--icon .x-icon {
	--x-icon-size-multiplier: var(--x-btn-icon-icon-size-multiplier);
}

.x-btn--icon.x-btn--density-default {
	width: calc(var(--_x-btn-container-height) + var(--x-btn-density-reducer) * var(--x-btn-density-default-multiplier));
}

.x-btn--icon.x-btn--density-comfortable {
	width: calc(var(--_x-btn-container-height) + var(--x-btn-density-reducer) * var(--x-btn-density-comfortable-multiplier));
}

.x-btn--icon.x-btn--density-compact {
	width: calc(var(--_x-btn-container-height) + var(--x-btn-density-reducer) * var(--x-btn-density-compact-multiplier));
}

.x-btn--rounded {
	border-radius: var(--x-btn-rounded-container-shape);
}

/* End */


/* Start:/local/templates/ronc.site/app/components/XCounter/XCounter.css?1722847702413*/
/*!
* Components/XCounter
*/

.x-counter {
	color: var(
		--x-comp-counter-color,
		rgba(
			var(--x-sys-color-on-surface),
			var(--x-sys-opacity-medium-emphasis)
		)
	);
	flex: var(--x-comp-counter-flex, 0 1 auto);
	font-size: var(--x-comp-counter-font-size, 0.75rem);
	line-height: var(--x-comp-counter-font-size, 0.75rem);
	transition-duration: var(--x-sys-motion-duration-short-3, 150ms);
}

/* End */


/* Start:/local/templates/ronc.site/app/components/XDropdown/XDropdown.css?1722847702689*/
/*!
* Components/Dropdown
*/

.x-dropdown {
	--x-dropdown-menu-divide-size: 0;

	position: relative;
}

.x-dropdown-menu {
	background: rgb(var(--x-sys-color-background));
	border-width: 0;
	border-radius: var(--x-sys-shape-corner-small);
	display: block;
	left: 0;
	margin: 0;
	position: absolute;
	z-index: 2000;
}

.x-dropdown-menu--divided::before {
	bottom: auto;
	content: "";
	height: var(--x-dropdown-menu-divide-size);
	left: 0;
	position: absolute;
	right: 0;
	top: calc(var(--x-dropdown-menu-divide-size) * -1);
}

.x-dropdown-menu--top-left {
	left: 0;
	top: 100%;
}

.x-dropdown-menu--top-right {
	left: auto;
	right: 0;
	top: 100%;
}

/* End */


/* Start:/local/templates/ronc.site/app/components/XField/XField.css?174292335413259*/
/*!
* Components/XField
*/

.x-field {
	--x-field-padding-start: var(--x-field-control-padding-start, 1rem);
	--x-field-padding-end: var(--x-field-control-padding-end, 1rem);
	--x-field-padding-top: var(--x-field-control-padding-top, 0.5rem);
	--x-field-padding-bottom: var(--x-field-control-padding-bottom, 0.375rem);

	display: grid;
	grid-template-areas: "prepend-inner field clear append-inner";
	grid-template-columns: min-content auto min-content min-content;
	font-size: var(--x-field-font-size, 1rem);
	letter-spacing: var(--x-field-letter-spacing, 0.009375em);
	max-width: var(--x-field-max-width, 100%);
	border-radius: var(--x-field-border-radius, 0.25rem);
	contain: layout;
	flex: 1 0;
	grid-area: control;
	position: relative;
}

.x-field__loader {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	width: 100%;
}

.x-field__prepend-inner {
	grid-area: prepend-inner;
	padding-inline-end: var(--x-field-padding-after);
}

.x-field__field {
	align-items: flex-start;
	display: flex;
	flex: 1 0;
	grid-area: field;
	position: relative;
}

.x-field__clearable {
	cursor: pointer;
	grid-area: clear;
	opacity: 0;
	margin-inline-start: var(--x-field-clearable-margin, 0.25rem);
	margin-inline-end: var(--x-field-clearable-margin, 0.25rem);
	transition: var(--x-field-transition-timing,
			0.15s cubic-bezier(0.4, 0, 0.2, 1));
	transition-property: opacity, transform, width;
}

.x-field--focused > .x-field__clearable,
.x-field--persistent-clear > .x-field__clearable {
	opacity: 1;
}

@media (hover: hover) {
	.x-field:hover > .x-field__clearable {
		opacity: 1;
	}
}

.x-field__append-inner {
	grid-area: append-inner;
	padding-inline-start: var(--x-field-padding-after);
}

.x-field__prepend-inner,
.x-field__append-inner,
.x-field__clearable {
	align-items: flex-start;
	display: flex;
	padding-top: var(--x-input-padding-top, 0.625rem);
}

.x-field--focused > .x-field__prepend-inner,
.x-field--focused > .x-field__append-inner {
	opacity: 1;
}

.x-field__prepend-inner > .x-icon,
.x-field__append-inner > .x-icon,
.x-field__clearable > .x-icon {
	opacity: var(--x-sys-opacity-medium-emphasis);
}

.x-field__prepend-inner .x-field--disabled > .x-icon,
.x-field__prepend-inner .x-field--error > .x-icon,
.x-field__append-inner .x-field--disabled > .x-icon,
.x-field__append-inner .x-field--error > .x-icon,
.x-field__clearable .x-field--disabled > .x-icon,
.x-field__clearable .x-field--error > .x-icon {
	opacity: 1;
}

.x-field--error:not(.x-field--disabled) > .x-field__prepend-inner > .x-icon,
.x-field--error:not(.x-field--disabled) > .x-field__append-inner > .x-icon,
.x-field--error:not(.x-field--disabled) > .x-field__clearable > .x-icon {
	color: rgb(var(--x-sys-color-error));
}

.x-field__input {
	color: inherit;
	display: flex;
	flex-wrap: wrap;
	letter-spacing: var(--x-field-letter-spacing, 0.009375em);
	min-height: var(--x-input-control-height, 3.5rem);
	opacity: var(--x-field-input-opacity, var(--x-sys-opacity-high-emphasis));
	padding-bottom: var(--x-field-padding-bottom, 0.375rem);
	padding-inline-end: var(--x-field-padding-end);
	padding-inline-start: var(--x-field-padding-start);
	padding-top: calc(var(--x-field-padding-top, 0.625rem) + var(--x-input-padding-top, 0rem));
	width: 100%;
}

.x-field__input > input {
	letter-spacing: inherit;
}

.x-field__input > input:focus,
.x-field__input > input:active {
	outline: none;
}

.x-field__input > input:invalid {
	box-shadow: none;
}

.x-field__outline {
	--x-field-border-width: var(--x-field-outline-border-width, 0.0625rem);
	--x-field-border-opacity: var(--x-field-outline-opacity, 0.38);

	align-items: stretch;
	contain: layout;
	display: flex;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	width: 100%;
}

@media (hover: hover) {
	.x-field:hover > .x-field__outline {
		--x-field-border-opacity: var(--x-sys-opacity-high-emphasis);
	}
}

.x-field--error:not(.x-field--disabled) > .x-field__outline {
	color: rgb(var(--x-sys-color-error));
}

.x-field.x-field--focused > .x-field__outline,
.x-input.x-input--error .x-field__outline {
	--x-field-border-opacity: 1;
}

.x-field--variant-outlined.x-field--focused .x-field__outline {
	--x-field-border-width: var(--x-field-outline-focused-border-width,
			0.125rem);
}

.x-field--variant-filled > .x-field__outline::before,
.x-field--variant-underlined > .x-field__outline::before {
	border-style: solid;
	border-width: 0 0 var(--x-field-border-width);
	opacity: var(--x-field-border-opacity);
	transition: opacity var(--x-field-subtle-transition-timing,
			250ms cubic-bezier(0.4, 0, 0.2, 1));
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.x-field--variant-filled > .x-field__outline::after,
.x-field--variant-underlined > .x-field__outline::after {
	border-color: currentColor;
	border-style: solid;
	border-width: 0 0 0.125rem;
	transform: scaleX(0);
	transition: transform var(--x-field-transition-timing, 0.15s cubic-bezier(0.4, 0, 0.2, 1));
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.x-field--focused.x-field--variant-filled > .x-field__outline::after,
.x-field--focused.x-field--variant-underlined > .x-field__outline::after {
	transform: scaleX(1);
}

.x-field--variant-outlined > .x-field__outline {
	border-radius: inherit;
}

.x-field--variant-outlined > .x-field__outline > .x-field__outline-start,
.x-field--variant-outlined > .x-field__outline > .x-field__outline-notch::before,
.x-field--variant-outlined > .x-field__outline > .x-field__outline-notch::after,
.x-field--variant-outlined > .x-field__outline > .x-field__outline-end {
	border: 0 solid currentColor;
	opacity: var(--x-field-border-opacity);
	transition: opacity var(--x-field-subtle-transition-timing,
			250ms cubic-bezier(0.4, 0, 0.2, 1));
}

.x-field--variant-outlined > .x-field__outline > .x-field__outline-start {
	border-bottom-width: var(--x-field-border-width);
	border-inline-start-width: var(--x-field-border-width);
	border-end-start-radius: var(--x-field-border-radius, 0.25rem);
	border-start-start-radius: var(--x-field-border-radius, 0.25rem);
	border-top-width: var(--x-field-border-width);
	flex: 0 0 var(--x-field-control-affixed-padding, 0.75rem);
}

.x-field--variant-outlined > .x-field__outline > .x-field__outline-notch {
	flex: none;
	position: relative;
	border-width: 0 0 var(--x-field-border-width);
}

.x-field--variant-outlined > .x-field__outline > .x-field__outline-notch::before,
.x-field--variant-outlined > .x-field__outline > .x-field__outline-notch::after {
	opacity: var(--x-field-border-opacity);
	transition: opacity var(--x-field-subtle-transition-timing,
			250ms cubic-bezier(0.4, 0, 0.2, 1));
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.x-field--variant-outlined > .x-field__outline > .x-field__outline-notch::before {
	border-width: var(--x-field-border-width) 0 0;
}

.x-field--variant-outlined > .x-field__outline > .x-field__outline-notch::after {
	bottom: 0;
	border-width: 0 0 var(--x-field-border-width);
}

.x-field--active.x-field--variant-outlined > .x-field__outline > .x-field__outline-notch::before {
	opacity: 0;
}

.x-field--variant-outlined > .x-field__outline > .x-field__outline-end {
	flex: 1;
	border-bottom-width: var(--x-field-border-width);
	border-end-end-radius: var(--x-field-border-radius, 0.25rem);
	border-inline-end-width: var(--x-field-border-width);
	border-start-end-radius: var(--x-field-border-radius, 0.25rem);
	border-top-width: var(--x-field-border-width);
}

.x-field--disabled {
	opacity: var(--x-sys-opacity-disabled);
	pointer-events: none;
}

.x-field--loading > .x-field__outline::after,
.x-field--loading > .x-field__outline::before {
	opacity: 0;
}

.x-field--prepended {
	--x-field-padding-start: var(--x-field-control-affixed-inner-padding,
			0.375rem);
	--x-field-padding-end: var(--x-field-control-affixed-inner-padding,
			0.375rem);

	padding-inline-start: var(--x-field-control-affixed-padding, 0.75rem);
}

.x-field--appended {
	padding-inline-end: var(--x-field-control-affixed-padding, 0.75rem);
}

.x-field--reverse .x-field__input {
	text-align: right;
	text-align: left;
}

.x-field--variant-filled {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.x-field--variant-filled .x-field__overlay {
	background-color: currentColor;
	border-radius: inherit;
	opacity: var(--x-field-overlay-filled-opacity, 0.04);
	pointer-events: none;
	transition: opacity var(--x-field-subtle-transition-timing,
			250ms cubic-bezier(0.4, 0, 0.2, 1));
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.x-field--variant-filled.x-field--has-background > .x-field__overlay {
	opacity: 0;
}

@media (hover: hover) {
	.x-field--variant-filled:hover > .x-field--variant-filled__overlay {
		opacity: calc(var(--x-field-overlay-filled-hover-opacity, 0.08) * var(--x-sys-overlay-multiplier));
	}
}

.x-field--variant-filled.x-field--focused > .x-field__overlay {
	opacity: calc(var(--x-field-overlay-filled-focus-opacity, 0.16) * var(--x-sys-overlay-multiplier));
}

.x-input--density-default .x-field--variant-filled {
	--x-input-control-height: var(--x-field-control-default-filled-height,
			3.5rem);
	--x-field-padding-bottom: var(--x-field-control-default-filled-padding-bottom,
			0.375rem);
}

.x-input--density-comfortable .x-field--variant-filled {
	--x-input-control-height: var(--x-field-control-comfortable-filled-height,
			3rem);
	--x-field-padding-bottom: var(--x-field-control-comfortable-filled-padding-bottom,
			0.125rem);
}

.x-input--density-compact .x-field--variant-filled {
	--x-input-control-height: var(--x-field-control-compact-filled-height,
			2.5rem);
	--x-field-padding-bottom: var(--x-field-control-compact-filled-padding-bottom,
			-0.125rem);
}

.x-input--disabled .x-field--variant-filled > .x-field__outline::before,
.x-input--disabled .x-field--variant-underlined > .x-field__outline::before {
	border-image: repeating-linear-gradient(to right,
			rgba(var(--x-sys-color-on-surface), var(--x-sys-opacity-disabled)) 0,
			rgba(var(--x-sys-color-on-surface), var(--x-sys-opacity-disabled)) 0.125rem,
			transparent 0.125rem,
			transparent 0.25rem) 1 repeat;
}

.x-field--variant-plain,
.x-field--variant-underlined {
	--x-field-padding-top: 0rem;
	--x-field-padding-start: 0rem;
	--x-field-padding-end: 0rem;
	--x-field-padding-top: 0.375rem;
	--x-field-padding-bottom: 0.125rem;
	border-radius: 0;
	padding: 0;
}

.x-field--variant-outlined,
.x-field--single-line {
	--x-field-padding-top: 0rem;
}

.x-input--density-default .x-field--variant-outlined,
.x-input--density-default .x-field--single-line {
	--x-field-padding-bottom: 1rem;
}

.x-input--density-comfortable .x-field--variant-outlined,
.x-input--density-comfortable .x-field--single-line {
	--x-field-padding-bottom: 0.75rem;
}

.x-input--density-compact .x-field--variant-outlined,
.x-input--density-compact .x-field--single-line {
	--x-field-padding-bottom: 0.5rem;
}

.x-input--density-default .x-field--variant-plain,
.x-input--density-default .x-field--variant-underlined {
	--x-input-control-height: 2.5rem;
}

.x-input--density-comfortable .x-field--variant-plain,
.x-input--density-comfortable .x-field--variant-underlined {
	--x-input-control-height: 2rem;
}

.x-input--density-compact .x-field--variant-plain,
.x-input--density-compact .x-field--variant-underlined {
	--x-input-control-height: 1.5rem;
}

.x-field--prepended {
	--x-field-padding-start: 0.375rem;
}

.x-field--appended {
	--x-field-padding-end: 0.375rem;
}

.x-label.x-field-label {
	contain: layout paint;
	margin-inline-start: var(--x-field-padding-start);
	margin-inline-end: var(--x-field-padding-end);
	max-width: calc(100% - var(--x-field-padding-start) - var(--x-field-padding-end));
	pointer-events: none;
	position: absolute;
	top: var(--x-input-padding-top, 0.625rem);
	transform-origin: left center;
	transition: var(--x-field-transition-timing,
			0.15s cubic-bezier(0.4, 0, 0.2, 1));
	transition-property: color, opacity, transform;
}

.x-field--active .x-label.x-field-label {
	visibility: hidden;
}

.x-field--disabled .x-label.x-field-label,
.x-field--focused .x-label.x-field-label,
.x-field--error .x-label.x-field-label {
	opacity: 1;
}

.x-field--error:not(.x-field--disabled) .x-label.x-field-label {
	color: rgb(var(--x-sys-color-error));
}

.x-label.x-field-label--floating {
	--x-field-label-scale: var(--x-field-label-floating-scale, 0.75em);

	font-size: var(--x-field-label-scale);
	visibility: hidden;
	max-width: 100%;
}

.x-field--active .x-label.x-field-label--floating {
	visibility: visible;
}

.x-input--density-default .x-field--variant-filled .x-label.x-field-label--floating {
	top: 0.4375rem;
}

.x-input--density-comfortable .x-field--variant-filled .x-label.x-field-label--floating {
	top: 0.3125rem;
}

.x-input--density-compact .x-field--variant-filled .x-label.x-field-label--floating {
	top: 0.1875rem;
}

.x-field--variant-plain .x-label.x-field-label--floating,
.x-field--variant-underlined .x-label.x-field-label--floating {
	transform: translateY(-0.375rem);
	margin: 0;
}

.x-field--variant-outlined .x-label.x-field-label--floating {
	transform: translateY(-50%);
	transform-origin: center;
	position: static;
	margin: 0 0.25rem;
}

/* End */


/* Start:/local/templates/ronc.site/app/components/XInput/XInput.css?17424263013614*/
/*!
* Components/XInput
*/

.x-input {
	display: grid;
	flex: 1 1 auto;
}

.x-input__prepend,
.x-input__append {
	display: flex;
	padding-top: var(--x-input-padding-top);
}

.x-input__prepend {
	grid-area: prepend;
}

.x-input__append {
	grid-area: append;
}

.x-input__control {
	grid-area: control;
}

.x-input__details {
	align-items: flex-end;
	display: flex;
	font-size: var(--x-input-details-font-size, 0.75rem);
	font-weight: var(--x-input-details-font-weight, 400);
	grid-area: messages;
	letter-spacing: var(--x-input-details-letter-spacing, 0.0333333333em);
	line-height: var(--x-input-details-line-height, normal);
	margin-bottom: var(--x-input-details-margin-bottom, 1rem);
	min-height: var(--x-input-details-min-height, 1.25rem);
	padding-top: var(--x-input-details-padding-above, 0.375rem);
	overflow: hidden;
	justify-content: space-between;
}

.x-input__details > .x-icon,
.x-input__prepend > .x-icon,
.x-input__append > .x-icon {
	opacity: var(--x-sys-opacity-medium-emphasis);
}

.x-input--disabled > .x-input__details > .x-icon,
.x-input--disabled > .x-input__details .x-messages,
.x-input--error > .x-input__details > .x-icon,
.x-input--error > .x-input__details .x-messages,
.x-input--disabled > .x-input__prepend > .x-icon,
.x-input--disabled > .x-input__prepend .x-messages,
.x-input--error > .x-input__prepend > .x-icon,
.x-input--error > .x-input__prepend .x-messages,
.x-input--disabled > .x-input__append > .x-icon,
.x-input--disabled > .x-input__append .x-messages,
.x-input--error > .x-input__append > .x-icon,
.x-input--error > .x-input__append .x-messages {
	opacity: 1;
}

.x-input--disabled > .x-input__details,
.x-input--disabled > .x-input__prepend,
.x-input--disabled > .x-input__append {
	opacity: var(--x-sys-opacity-disabled);
}

.x-input--error:not(.x-input--disabled) > .x-input__details > .x-icon,
.x-input--error:not(.x-input--disabled) > .x-input__details .x-messages,
.x-input--error:not(.x-input--disabled) > .x-input__prepend > .x-icon,
.x-input--error:not(.x-input--disabled) > .x-input__prepend .x-messages,
.x-input--error:not(.x-input--disabled) > .x-input__append > .x-icon,
.x-input--error:not(.x-input--disabled) > .x-input__append .x-messages {
	color: rgb(var(--x-sys-color-error));
}

.x-input--density-default {
	--x-input-control-height: var(--x-input-control-default-height, 3.5rem);
	--x-input-padding-top: var(--x-input-control-default-padding-top, 1rem);
}

.x-input--density-comfortable {
	--x-input-control-height: var(--x-input-control-comfortable-height, 3rem);
	--x-input-padding-top: var(
		--x-input-control-comfortable-padding-top,
		0.75rem
	);
}

.x-input--density-compact {
	--x-input-control-height: var(--x-input-control-compact-height, 2.5rem);
	--x-input-padding-top: var(--x-input-control-compact-padding-top, 0.5rem);
}

.x-input--disabled {
	pointer-events: none;
}

.x-input--horizontal {
	grid-template-areas: "prepend control append" "a messages b";
	grid-template-columns: max-content 100% max-content;
	grid-template-rows: auto auto;
}

.x-input--horizontal > .x-input__prepend {
	margin-inline-end: var(--x-input-affix-margin-inside, 1rem);
}

.x-input--horizontal > .x-input__append {
	margin-inline-start: var(--x-input-affix-margin-inside, 1rem);
}

.x-input--vertical {
	grid-template-areas: "append" "control" "prepend";
	grid-template-rows: max-content auto max-content;
	grid-template-columns: min-content;
}

.x-input--vertical > .x-input__prepend {
	margin-block-start: var(--x-input-affix-margin-inside, 1rem);
}

.x-input--vertical > .x-input__append {
	margin-block-end: var(--x-input-affix-margin-inside, 1rem);
}

/* End */


/* Start:/local/templates/ronc.site/app/components/XLabel/XLabel.css?1722847702392*/
/*!
* Components/XLabel
*/

.x-label {
	align-items: center;
	cursor: pointer;
	display: var(--x-comp-label-display, inline-flex);
	font-size: var(--x-comp-label-font-size, 1rem);
	letter-spacing: var(--x-comp-label-letter-spacing, 0.03125em);
	min-width: 0;
	opacity: var(--x-sys-opacity-medium-emphasis);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* End */


/* Start:/local/templates/ronc.site/app/components/XMessages/XMessages.css?1722847702585*/
/*!
* Components/XMessages
*/

.x-messages {
	flex: 1 1 auto;
	font-size: var(--x-messages-font-size, 0.75rem);
	min-height: var(--x-messages-min-height, 0.875rem);
	min-width: 0.0625rem; /* Ensure takes up space with no messages and inside of flex */
	opacity: var(--x-sys-opacity-medium-emphasis);
	position: relative;
}

.x-messages__message {
	line-height: var(--x-messages-line-height, 0.75rem);
	word-break: break-word;
	overflow-wrap: break-word;
	word-wrap: break-word;
	hyphens: auto;
	transition-duration: var(--x-messages-transition-duration, 150ms);
}

/* End */


/* Start:/local/templates/ronc.site/app/components/XSheet/XSheet.css?17228477021041*/
/*!
* Components/XSheet
*/

.x-sheet {
    --x-sheet-container-color: var(--x-comp-sheet-container-color, rgb(var(--x-sys-color-surface)));
    --x-sheet-text-color: var(--x-comp-sheet-text-color, rgb(var(--x-sys-color-on-surface)));
    --x-sheet-rounded-container-shape: var(--x-comp-sheet-rounded-container-shape, var(--sys-shape-corner-medium, 0.75rem));
}

.x-sheet {
    display: block;
    border-color: rgb(var(--x-sys-color-outline-variant));
    border-style: solid;
    border-width: 0;
    border-radius: 0;
    background-color: var(--x-sheet-container-color, rgb(var(--x-sys-color-surface)));
    color: var(--x-sheet-text-color, rgb(var(--x-sys-color-on-surface)));
}

.x-sheet--border {
    border-width: 0.0625rem;
}

.x-sheet--absolute {
    position: absolute;
}

.x-sheet--fixed {
    position: fixed;
}

.x-sheet--relative {
    position: relative;
}

.x-sheet--sticky {
    position: sticky;
}

.x-sheet--rounded {
    border-radius: var(--x-sheet-rounded-container-shape);
}

/* End */


/* Start:/local/templates/ronc.site/app/components/XTextField/XTextField.css?17228477021973*/
/*!
* Components/XTextField
*/

.x-text-field__prefix,
.x-text-field__suffix {
	align-items: center;
	color: var(
		--x-text-field-affix-color,
		rgba(var(--x-sys-color-on-surface), var(--x-sys-opacity-medium-emphasis))
	);
	cursor: default;
	display: flex;
	opacity: 0;
	padding-top: var(--x-field-padding-top);
	transition: inherit;
	white-space: nowrap;
}

.x-field--active .x-text-field__prefix,
.x-field--active .x-text-field__suffix {
	opacity: 1;
}

.x-field--disabled .x-text-field__prefix,
.x-field--disabled .x-text-field__suffix {
	color: var(
		--x-text-field-disabled-affix-color,
		rgba(var(--x-sys-color-on-surface), var(--x-sys-opacity-disabled))
	);
}

.x-text-field__prefix {
	padding-inline-start: var(--x-field-padding-start);
}

.x-text-field__suffix {
	padding-inline-end: var(--x-field-padding-end);
}

.x-text-field input {
	color: inherit;
	flex: var(--x-text-field-input-flex, 1);
	opacity: 0;
	transition: var(
		--x-text-field-input-transition,
		0.15s opacity cubic-bezier(0.4, 0, 0.2, 1)
	);
}

.x-text-field input:focus,
.x-text-field input:active {
	outline: none;
}

.x-text-field input:invalid {
	box-shadow: none;
}

.x-text-field .x-field {
	cursor: text;
}

.x-text-field--prefixed.x-text-field .x-field__input {
	--x-field-padding-start: var(--x-text-field-input-padding-start, 0.375rem);
}

.x-text-field--suffixed.x-text-field .x-field__input {
	--x-field-padding-end: var(--x-text-field-input-padding-end, 0);
}

.x-text-field .x-field--active input {
	opacity: 1;
}

.x-text-field .x-field--single-line input {
	transition: none;
}

.x-text-field .x-input__details {
	padding-inline-start: var(--x-text-field-details-padding-inline, 1rem);
	padding-inline-end: var(--x-text-field-details-padding-inline, 1rem);
}

.x-text-field--flush-details .x-input__details {
	padding: 0;
}

.x-text-field--persistent-placeholder input {
	opacity: 1;
}

/* End */


/* Start:/local/templates/ronc.site/fonts/ptrootui.css?17228477001117*/
@font-face {
    font-family: 'PT Root UI';
    src: local('PT Root UI Medium'), local('PTRootUI-Medium'), url('/local/templates/ronc.site/fonts/Ptrootuimedium.woff2') format('woff2'), url('/local/templates/ronc.site/fonts/Ptrootuimedium.woff') format('woff'), url('/local/templates/ronc.site/fonts/Ptrootuimedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'PT Root UI';
    src: local('PT Root UI Light'), local('PTRootUI-Light'), url('/local/templates/ronc.site/fonts/Ptrootuilight.woff2') format('woff2'), url('/local/templates/ronc.site/fonts/Ptrootuilight.woff') format('woff'), url('/local/templates/ronc.site/fonts/Ptrootuilight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'PT Root UI';
    src: local('PT Root UI'), local('PTRootUI-Regular'), url('/local/templates/ronc.site/fonts/Ptrootui.woff2') format('woff2'), url('/local/templates/ronc.site/fonts/Ptrootui.woff') format('woff'), url('/local/templates/ronc.site/fonts/Ptrootui.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'PT Root UI';
    src: local('PT Root UI Bold'), local('PTRootUI-Bold'), url('/local/templates/ronc.site/fonts/Ptrootuibold.woff2') format('woff2'), url('/local/templates/ronc.site/fonts/Ptrootuibold.woff') format('woff'), url('/local/templates/ronc.site/fonts/Ptrootuibold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* End */


/* Start:/local/templates/ronc.site/fontawesome.css/all.min.css?172284770079956*/
/*!
 * Font Awesome Pro 5.8.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-abacus:before{content:"\f640"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acorn:before{content:"\f6ae"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adobe:before{content:"\f778"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-alarm-clock:before{content:"\f34e"}.fa-algolia:before{content:"\f36c"}.fa-alicorn:before{content:"\f6b0"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-analytics:before{content:"\f643"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angel:before{content:"\f779"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-crate:before{content:"\f6b1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-alt-down:before{content:"\f354"}.fa-arrow-alt-from-bottom:before{content:"\f346"}.fa-arrow-alt-from-left:before{content:"\f347"}.fa-arrow-alt-from-right:before{content:"\f348"}.fa-arrow-alt-from-top:before{content:"\f349"}.fa-arrow-alt-left:before{content:"\f355"}.fa-arrow-alt-right:before{content:"\f356"}.fa-arrow-alt-square-down:before{content:"\f350"}.fa-arrow-alt-square-left:before{content:"\f351"}.fa-arrow-alt-square-right:before{content:"\f352"}.fa-arrow-alt-square-up:before{content:"\f353"}.fa-arrow-alt-to-bottom:before{content:"\f34a"}.fa-arrow-alt-to-left:before{content:"\f34b"}.fa-arrow-alt-to-right:before{content:"\f34c"}.fa-arrow-alt-to-top:before{content:"\f34d"}.fa-arrow-alt-up:before{content:"\f357"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-from-bottom:before{content:"\f342"}.fa-arrow-from-left:before{content:"\f343"}.fa-arrow-from-right:before{content:"\f344"}.fa-arrow-from-top:before{content:"\f345"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-square-down:before{content:"\f339"}.fa-arrow-square-left:before{content:"\f33a"}.fa-arrow-square-right:before{content:"\f33b"}.fa-arrow-square-up:before{content:"\f33c"}.fa-arrow-to-bottom:before{content:"\f33d"}.fa-arrow-to-left:before{content:"\f33e"}.fa-arrow-to-right:before{content:"\f340"}.fa-arrow-to-top:before{content:"\f341"}.fa-arrow-up:before{content:"\f062"}.fa-arrows:before{content:"\f047"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-arrows-h:before{content:"\f07e"}.fa-arrows-v:before{content:"\f07d"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-atom-alt:before{content:"\f5d3"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-axe:before{content:"\f6b2"}.fa-axe-battle:before{content:"\f6b3"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backpack:before{content:"\f5d4"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-badge:before{content:"\f335"}.fa-badge-check:before{content:"\f336"}.fa-badge-dollar:before{content:"\f645"}.fa-badge-percent:before{content:"\f646"}.fa-badger-honey:before{content:"\f6b4"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ball-pile:before{content:"\f77e"}.fa-ballot:before{content:"\f732"}.fa-ballot-check:before{content:"\f733"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-barcode-alt:before{content:"\f463"}.fa-barcode-read:before{content:"\f464"}.fa-barcode-scan:before{content:"\f465"}.fa-bars:before{content:"\f0c9"}.fa-baseball:before{content:"\f432"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-basketball-hoop:before{content:"\f435"}.fa-bat:before{content:"\f6b5"}.fa-bath:before{content:"\f2cd"}.fa-battery-bolt:before{content:"\f376"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-slash:before{content:"\f377"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-school:before{content:"\f5d5"}.fa-bell-school-slash:before{content:"\f5d6"}.fa-bell-slash:before{content:"\f1f6"}.fa-bells:before{content:"\f77f"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blanket:before{content:"\f498"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bone-break:before{content:"\f5d8"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-alt:before{content:"\f5d9"}.fa-book-dead:before{content:"\f6b7"}.fa-book-heart:before{content:"\f499"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-book-spells:before{content:"\f6b8"}.fa-book-user:before{content:"\f7e7"}.fa-bookmark:before{content:"\f02e"}.fa-books:before{content:"\f5db"}.fa-books-medical:before{content:"\f7e8"}.fa-boot:before{content:"\f782"}.fa-booth-curtain:before{content:"\f734"}.fa-bootstrap:before{content:"\f836"}.fa-bow-arrow:before{content:"\f6b9"}.fa-bowling-ball:before{content:"\f436"}.fa-bowling-pins:before{content:"\f437"}.fa-box:before{content:"\f466"}.fa-box-alt:before{content:"\f49a"}.fa-box-ballot:before{content:"\f735"}.fa-box-check:before{content:"\f467"}.fa-box-fragile:before{content:"\f49b"}.fa-box-full:before{content:"\f49c"}.fa-box-heart:before{content:"\f49d"}.fa-box-open:before{content:"\f49e"}.fa-box-up:before{content:"\f49f"}.fa-box-usd:before{content:"\f4a0"}.fa-boxes:before{content:"\f468"}.fa-boxes-alt:before{content:"\f4a1"}.fa-boxing-glove:before{content:"\f438"}.fa-brackets:before{content:"\f7e9"}.fa-brackets-curly:before{content:"\f7ea"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-loaf:before{content:"\f7eb"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-browser:before{content:"\f37e"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-bullseye-arrow:before{content:"\f648"}.fa-bullseye-pointer:before{content:"\f649"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-burrito:before{content:"\f7ed"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-bus-school:before{content:"\f5dd"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-cabinet-filing:before{content:"\f64b"}.fa-calculator:before{content:"\f1ec"}.fa-calculator-alt:before{content:"\f64c"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-edit:before{content:"\f333"}.fa-calendar-exclamation:before{content:"\f334"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-star:before{content:"\f736"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-alt:before{content:"\f332"}.fa-camera-retro:before{content:"\f083"}.fa-campfire:before{content:"\f6ba"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candle-holder:before{content:"\f6bc"}.fa-candy-cane:before{content:"\f786"}.fa-candy-corn:before{content:"\f6bd"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-bump:before{content:"\f5e0"}.fa-car-crash:before{content:"\f5e1"}.fa-car-garage:before{content:"\f5e2"}.fa-car-mechanic:before{content:"\f5e3"}.fa-car-side:before{content:"\f5e4"}.fa-car-tilt:before{content:"\f5e5"}.fa-car-wash:before{content:"\f5e6"}.fa-caret-circle-down:before{content:"\f32d"}.fa-caret-circle-left:before{content:"\f32e"}.fa-caret-circle-right:before{content:"\f330"}.fa-caret-circle-up:before{content:"\f331"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cauldron:before{content:"\f6bf"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chair-office:before{content:"\f6c1"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-line-down:before{content:"\f64d"}.fa-chart-network:before{content:"\f78a"}.fa-chart-pie:before{content:"\f200"}.fa-chart-pie-alt:before{content:"\f64e"}.fa-chart-scatter:before{content:"\f7ee"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-cheese-swiss:before{content:"\f7f0"}.fa-cheeseburger:before{content:"\f7f1"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-bishop-alt:before{content:"\f43b"}.fa-chess-board:before{content:"\f43c"}.fa-chess-clock:before{content:"\f43d"}.fa-chess-clock-alt:before{content:"\f43e"}.fa-chess-king:before{content:"\f43f"}.fa-chess-king-alt:before{content:"\f440"}.fa-chess-knight:before{content:"\f441"}.fa-chess-knight-alt:before{content:"\f442"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-pawn-alt:before{content:"\f444"}.fa-chess-queen:before{content:"\f445"}.fa-chess-queen-alt:before{content:"\f446"}.fa-chess-rook:before{content:"\f447"}.fa-chess-rook-alt:before{content:"\f448"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-double-down:before{content:"\f322"}.fa-chevron-double-left:before{content:"\f323"}.fa-chevron-double-right:before{content:"\f324"}.fa-chevron-double-up:before{content:"\f325"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-square-down:before{content:"\f329"}.fa-chevron-square-left:before{content:"\f32a"}.fa-chevron-square-right:before{content:"\f32b"}.fa-chevron-square-up:before{content:"\f32c"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chimney:before{content:"\f78b"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-claw-marks:before{content:"\f6c2"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clipboard-list-check:before{content:"\f737"}.fa-clipboard-prescription:before{content:"\f5e8"}.fa-clipboard-user:before{content:"\f7f3"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-drizzle:before{content:"\f738"}.fa-cloud-hail:before{content:"\f739"}.fa-cloud-hail-mixed:before{content:"\f73a"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-rainbow:before{content:"\f73e"}.fa-cloud-showers:before{content:"\f73f"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sleet:before{content:"\f741"}.fa-cloud-snow:before{content:"\f742"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload:before{content:"\f0ee"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-clouds:before{content:"\f744"}.fa-clouds-moon:before{content:"\f745"}.fa-clouds-sun:before{content:"\f746"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-club:before{content:"\f327"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-code-commit:before{content:"\f386"}.fa-code-merge:before{content:"\f387"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-coffee-togo:before{content:"\f6c5"}.fa-coffin:before{content:"\f6c6"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-alt-check:before{content:"\f4a2"}.fa-comment-alt-dollar:before{content:"\f650"}.fa-comment-alt-dots:before{content:"\f4a3"}.fa-comment-alt-edit:before{content:"\f4a4"}.fa-comment-alt-exclamation:before{content:"\f4a5"}.fa-comment-alt-lines:before{content:"\f4a6"}.fa-comment-alt-medical:before{content:"\f7f4"}.fa-comment-alt-minus:before{content:"\f4a7"}.fa-comment-alt-plus:before{content:"\f4a8"}.fa-comment-alt-slash:before{content:"\f4a9"}.fa-comment-alt-smile:before{content:"\f4aa"}.fa-comment-alt-times:before{content:"\f4ab"}.fa-comment-check:before{content:"\f4ac"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-edit:before{content:"\f4ae"}.fa-comment-exclamation:before{content:"\f4af"}.fa-comment-lines:before{content:"\f4b0"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-minus:before{content:"\f4b1"}.fa-comment-plus:before{content:"\f4b2"}.fa-comment-slash:before{content:"\f4b3"}.fa-comment-smile:before{content:"\f4b4"}.fa-comment-times:before{content:"\f4b5"}.fa-comments:before{content:"\f086"}.fa-comments-alt:before{content:"\f4b6"}.fa-comments-alt-dollar:before{content:"\f652"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compass-slash:before{content:"\f5e9"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-compress-wide:before{content:"\f326"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-container-storage:before{content:"\f4b7"}.fa-contao:before{content:"\f26d"}.fa-conveyor-belt:before{content:"\f46e"}.fa-conveyor-belt-alt:before{content:"\f46f"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-corn:before{content:"\f6c7"}.fa-couch:before{content:"\f4b8"}.fa-cow:before{content:"\f6c8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-credit-card-blank:before{content:"\f389"}.fa-credit-card-front:before{content:"\f38a"}.fa-cricket:before{content:"\f449"}.fa-critical-role:before{content:"\f6c9"}.fa-croissant:before{content:"\f7f6"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-crutches:before{content:"\f7f8"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-curling:before{content:"\f44a"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dagger:before{content:"\f6cb"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-debug:before{content:"\f7f9"}.fa-deer:before{content:"\f78e"}.fa-deer-rudolph:before{content:"\f78f"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-desktop-alt:before{content:"\f390"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dewpoint:before{content:"\f748"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diamond:before{content:"\f219"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d10:before{content:"\f6cd"}.fa-dice-d12:before{content:"\f6ce"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d4:before{content:"\f6d0"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-d8:before{content:"\f6d2"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-diploma:before{content:"\f5ea"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-disease:before{content:"\f7fa"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-do-not-enter:before{content:"\f5ec"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dog-leashed:before{content:"\f6d4"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-empty:before{content:"\f473"}.fa-dolly-flatbed:before{content:"\f474"}.fa-dolly-flatbed-alt:before{content:"\f475"}.fa-dolly-flatbed-empty:before{content:"\f476"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-circle:before{content:"\f5ed"}.fa-draw-polygon:before{content:"\f5ee"}.fa-draw-square:before{content:"\f5ef"}.fa-dreidel:before{content:"\f792"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick:before{content:"\f6d6"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-duck:before{content:"\f6d8"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-ear:before{content:"\f5f0"}.fa-ear-muffs:before{content:"\f795"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-eclipse:before{content:"\f749"}.fa-eclipse-alt:before{content:"\f74a"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-egg-fried:before{content:"\f7fc"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-elephant:before{content:"\f6da"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-h-alt:before{content:"\f39b"}.fa-ellipsis-v:before{content:"\f142"}.fa-ellipsis-v-alt:before{content:"\f39c"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-empty-set:before{content:"\f656"}.fa-engine-warning:before{content:"\f5f2"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-dollar:before{content:"\f657"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange:before{content:"\f0ec"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-square:before{content:"\f321"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows:before{content:"\f31d"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expand-wide:before{content:"\f320"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link:before{content:"\f08e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square:before{content:"\f14c"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-evil:before{content:"\f6db"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-field-hockey:before{content:"\f44c"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-certificate:before{content:"\f5f3"}.fa-file-chart-line:before{content:"\f659"}.fa-file-chart-pie:before{content:"\f65a"}.fa-file-check:before{content:"\f316"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-edit:before{content:"\f31c"}.fa-file-excel:before{content:"\f1c3"}.fa-file-exclamation:before{content:"\f31a"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-minus:before{content:"\f318"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-plus:before{content:"\f319"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-spreadsheet:before{content:"\f65b"}.fa-file-times:before{content:"\f317"}.fa-file-upload:before{content:"\f574"}.fa-file-user:before{content:"\f65c"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-files-medical:before{content:"\f7fd"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-film-alt:before{content:"\f3a0"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-fire-smoke:before{content:"\f74b"}.fa-firefox:before{content:"\f269"}.fa-fireplace:before{content:"\f79a"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fish-cooked:before{content:"\f7fe"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-alt:before{content:"\f74c"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flame:before{content:"\f6df"}.fa-flask:before{content:"\f0c3"}.fa-flask-poison:before{content:"\f6e0"}.fa-flask-potion:before{content:"\f6e1"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flower:before{content:"\f7ff"}.fa-flower-daffodil:before{content:"\f800"}.fa-flower-tulip:before{content:"\f801"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-fog:before{content:"\f74e"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-folder-times:before{content:"\f65f"}.fa-folder-tree:before{content:"\f802"}.fa-folders:before{content:"\f660"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-football-helmet:before{content:"\f44f"}.fa-forklift:before{content:"\f47a"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-fragile:before{content:"\f4bb"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-french-fries:before{content:"\f803"}.fa-frog:before{content:"\f52e"}.fa-frosty-head:before{content:"\f79b"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-function:before{content:"\f661"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gas-pump-slash:before{content:"\f5f4"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gift-card:before{content:"\f663"}.fa-gifts:before{content:"\f79c"}.fa-gingerbread-man:before{content:"\f79d"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass:before{content:"\f804"}.fa-glass-champagne:before{content:"\f79e"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glass-whiskey-rocks:before{content:"\f7a1"}.fa-glasses:before{content:"\f530"}.fa-glasses-alt:before{content:"\f5f5"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-globe-snow:before{content:"\f7a3"}.fa-globe-stand:before{content:"\f5f6"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-golf-club:before{content:"\f451"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-h1:before{content:"\f313"}.fa-h2:before{content:"\f314"}.fa-h3:before{content:"\f315"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hammer-war:before{content:"\f6e4"}.fa-hamsa:before{content:"\f665"}.fa-hand-heart:before{content:"\f4bc"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-box:before{content:"\f47b"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-magic:before{content:"\f6e5"}.fa-hand-holding-seedling:before{content:"\f4bf"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-receiving:before{content:"\f47c"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-heart:before{content:"\f4c3"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-usd:before{content:"\f4c5"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt:before{content:"\f4c6"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-santa:before{content:"\f7a7"}.fa-hat-winter:before{content:"\f7a8"}.fa-hat-witch:before{content:"\f6e7"}.fa-hat-wizard:before{content:"\f6e8"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-head-side:before{content:"\f6e9"}.fa-head-side-brain:before{content:"\f808"}.fa-head-side-medical:before{content:"\f809"}.fa-head-vr:before{content:"\f6ea"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heart-circle:before{content:"\f4c7"}.fa-heart-rate:before{content:"\f5f8"}.fa-heart-square:before{content:"\f4c8"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-helmet-battle:before{content:"\f6eb"}.fa-hexagon:before{content:"\f312"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-mask:before{content:"\f6ee"}.fa-hockey-puck:before{content:"\f453"}.fa-hockey-sticks:before{content:"\f454"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-home-alt:before{content:"\f80a"}.fa-home-heart:before{content:"\f4c9"}.fa-home-lg:before{content:"\f80b"}.fa-home-lg-alt:before{content:"\f80c"}.fa-hood-cloak:before{content:"\f6ef"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hospital-user:before{content:"\f80d"}.fa-hospitals:before{content:"\f80e"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-flood:before{content:"\f74f"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-humidity:before{content:"\f750"}.fa-hurricane:before{content:"\f751"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-ice-skate:before{content:"\f7ac"}.fa-icicles:before{content:"\f7ad"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-inbox-in:before{content:"\f310"}.fa-inbox-out:before{content:"\f311"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-industry-alt:before{content:"\f3b3"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-info-square:before{content:"\f30f"}.fa-inhaler:before{content:"\f5f9"}.fa-instagram:before{content:"\f16d"}.fa-integral:before{content:"\f667"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-intersection:before{content:"\f668"}.fa-inventory:before{content:"\f480"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-island-tropical:before{content:"\f811"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-jack-o-lantern:before{content:"\f30e"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-key-skeleton:before{content:"\f6f3"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-keynote:before{content:"\f66c"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kidneys:before{content:"\f5fb"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kite:before{content:"\f6f4"}.fa-kiwi-bird:before{content:"\f535"}.fa-knife-kitchen:before{content:"\f6f5"}.fa-korvue:before{content:"\f42f"}.fa-lambda:before{content:"\f66e"}.fa-lamp:before{content:"\f4ca"}.fa-landmark:before{content:"\f66f"}.fa-landmark-alt:before{content:"\f752"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-layer-minus:before{content:"\f5fe"}.fa-layer-plus:before{content:"\f5ff"}.fa-leaf:before{content:"\f06c"}.fa-leaf-heart:before{content:"\f4cb"}.fa-leaf-maple:before{content:"\f6f6"}.fa-leaf-oak:before{content:"\f6f7"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down:before{content:"\f149"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up:before{content:"\f148"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-lightbulb-dollar:before{content:"\f670"}.fa-lightbulb-exclamation:before{content:"\f671"}.fa-lightbulb-on:before{content:"\f672"}.fa-lightbulb-slash:before{content:"\f673"}.fa-lights-holiday:before{content:"\f7b2"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lips:before{content:"\f600"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location:before{content:"\f601"}.fa-location-arrow:before{content:"\f124"}.fa-location-circle:before{content:"\f602"}.fa-location-slash:before{content:"\f603"}.fa-lock:before{content:"\f023"}.fa-lock-alt:before{content:"\f30d"}.fa-lock-open:before{content:"\f3c1"}.fa-lock-open-alt:before{content:"\f3c2"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-long-arrow-up:before{content:"\f176"}.fa-loveseat:before{content:"\f4cc"}.fa-low-vision:before{content:"\f2a8"}.fa-luchador:before{content:"\f455"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lyft:before{content:"\f3c3"}.fa-mace:before{content:"\f6f8"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailbox:before{content:"\f813"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-mandolin:before{content:"\f6f9"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-marker-alt-slash:before{content:"\f605"}.fa-map-marker-check:before{content:"\f606"}.fa-map-marker-edit:before{content:"\f607"}.fa-map-marker-exclamation:before{content:"\f608"}.fa-map-marker-minus:before{content:"\f609"}.fa-map-marker-plus:before{content:"\f60a"}.fa-map-marker-question:before{content:"\f60b"}.fa-map-marker-slash:before{content:"\f60c"}.fa-map-marker-smile:before{content:"\f60d"}.fa-map-marker-times:before{content:"\f60e"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-meat:before{content:"\f814"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaphone:before{content:"\f675"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-mind-share:before{content:"\f677"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-hexagon:before{content:"\f307"}.fa-minus-octagon:before{content:"\f308"}.fa-minus-square:before{content:"\f146"}.fa-mistletoe:before{content:"\f7b4"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-mobile-android:before{content:"\f3ce"}.fa-mobile-android-alt:before{content:"\f3cf"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monitor-heart-rate:before{content:"\f611"}.fa-monkey:before{content:"\f6fb"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-moon-cloud:before{content:"\f754"}.fa-moon-stars:before{content:"\f755"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mountains:before{content:"\f6fd"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-mug-marshmallows:before{content:"\f7b7"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-narwhal:before{content:"\f6fe"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octagon:before{content:"\f306"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-oil-temp:before{content:"\f614"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-omega:before{content:"\f67a"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-ornament:before{content:"\f7b8"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-brush-alt:before{content:"\f5a9"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-pallet-alt:before{content:"\f483"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-parking-circle:before{content:"\f615"}.fa-parking-circle-slash:before{content:"\f616"}.fa-parking-slash:before{content:"\f617"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paw-alt:before{content:"\f701"}.fa-paw-claws:before{content:"\f702"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pegasus:before{content:"\f703"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil:before{content:"\f040"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-paintbrush:before{content:"\f618"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-pennant:before{content:"\f456"}.fa-penny-arcade:before{content:"\f704"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-person-carry:before{content:"\f4cf"}.fa-person-dolly:before{content:"\f4d0"}.fa-person-dolly-empty:before{content:"\f4d1"}.fa-person-sign:before{content:"\f757"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-office:before{content:"\f67d"}.fa-phone-plus:before{content:"\f4d2"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pi:before{content:"\f67e"}.fa-pie:before{content:"\f705"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pig:before{content:"\f706"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza:before{content:"\f817"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-alt:before{content:"\f3de"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-hexagon:before{content:"\f300"}.fa-plus-octagon:before{content:"\f301"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-podium:before{content:"\f680"}.fa-podium-star:before{content:"\f758"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poll-people:before{content:"\f759"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-popcorn:before{content:"\f819"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-presentation:before{content:"\f685"}.fa-print:before{content:"\f02f"}.fa-print-search:before{content:"\f81a"}.fa-print-slash:before{content:"\f686"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pumpkin:before{content:"\f707"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-question-square:before{content:"\f2fd"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-rabbit:before{content:"\f708"}.fa-rabbit-fast:before{content:"\f709"}.fa-racquet:before{content:"\f45a"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-raindrops:before{content:"\f75c"}.fa-ram:before{content:"\f70a"}.fa-ramp-loading:before{content:"\f4d4"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-rectangle-landscape:before{content:"\f2fa"}.fa-rectangle-portrait:before{content:"\f2fb"}.fa-rectangle-wide:before{content:"\f2fc"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-renren:before{content:"\f18b"}.fa-repeat:before{content:"\f363"}.fa-repeat-1:before{content:"\f365"}.fa-repeat-1-alt:before{content:"\f366"}.fa-repeat-alt:before{content:"\f364"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-retweet-alt:before{content:"\f361"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-rings-wedding:before{content:"\f81b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-route-highway:before{content:"\f61a"}.fa-route-interstate:before{content:"\f61b"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-triangle:before{content:"\f61c"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rv:before{content:"\f7be"}.fa-sack:before{content:"\f81c"}.fa-sack-dollar:before{content:"\f81d"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salad:before{content:"\f81e"}.fa-salesforce:before{content:"\f83b"}.fa-sandwich:before{content:"\f81f"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-sausage:before{content:"\f820"}.fa-save:before{content:"\f0c7"}.fa-scalpel:before{content:"\f61d"}.fa-scalpel-path:before{content:"\f61e"}.fa-scanner:before{content:"\f488"}.fa-scanner-keyboard:before{content:"\f489"}.fa-scanner-touchscreen:before{content:"\f48a"}.fa-scarecrow:before{content:"\f70d"}.fa-scarf:before{content:"\f7c1"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-scroll-old:before{content:"\f70f"}.fa-scrubber:before{content:"\f2f8"}.fa-scythe:before{content:"\f710"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-all:before{content:"\f367"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-sheep:before{content:"\f711"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield:before{content:"\f132"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-check:before{content:"\f2f7"}.fa-shield-cross:before{content:"\f712"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shipping-timed:before{content:"\f48c"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shish-kebab:before{content:"\f821"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shovel:before{content:"\f713"}.fa-shovel-snow:before{content:"\f7c3"}.fa-shower:before{content:"\f2cc"}.fa-shredder:before{content:"\f68a"}.fa-shuttle-van:before{content:"\f5b6"}.fa-shuttlecock:before{content:"\f45b"}.fa-sickle:before{content:"\f822"}.fa-sigma:before{content:"\f68b"}.fa-sign:before{content:"\f4d9"}.fa-sign-in:before{content:"\f090"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out:before{content:"\f08b"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signal-1:before{content:"\f68c"}.fa-signal-2:before{content:"\f68d"}.fa-signal-3:before{content:"\f68e"}.fa-signal-4:before{content:"\f68f"}.fa-signal-alt:before{content:"\f690"}.fa-signal-alt-1:before{content:"\f691"}.fa-signal-alt-2:before{content:"\f692"}.fa-signal-alt-3:before{content:"\f693"}.fa-signal-alt-slash:before{content:"\f694"}.fa-signal-slash:before{content:"\f695"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-skeleton:before{content:"\f620"}.fa-sketch:before{content:"\f7c6"}.fa-ski-jump:before{content:"\f7c7"}.fa-ski-lift:before{content:"\f7c8"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sledding:before{content:"\f7cb"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-sliders-h-square:before{content:"\f3f0"}.fa-sliders-v:before{content:"\f3f1"}.fa-sliders-v-square:before{content:"\f3f2"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-plus:before{content:"\f5b9"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoke:before{content:"\f760"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snake:before{content:"\f716"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snow-blowing:before{content:"\f761"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowflakes:before{content:"\f7cf"}.fa-snowman:before{content:"\f7d0"}.fa-snowmobile:before{content:"\f7d1"}.fa-snowplow:before{content:"\f7d2"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-soup:before{content:"\f823"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-spade:before{content:"\f2f4"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spider:before{content:"\f717"}.fa-spider-black-widow:before{content:"\f718"}.fa-spider-web:before{content:"\f719"}.fa-spinner:before{content:"\f110"}.fa-spinner-third:before{content:"\f3f4"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root:before{content:"\f697"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-squirrel:before{content:"\f71a"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-staff:before{content:"\f71b"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-christmas:before{content:"\f7d4"}.fa-star-exclamation:before{content:"\f2f3"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-stars:before{content:"\f762"}.fa-staylinked:before{content:"\f3f5"}.fa-steak:before{content:"\f824"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-steering-wheel:before{content:"\f622"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stocking:before{content:"\f7d5"}.fa-stomach:before{content:"\f623"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-stretcher:before{content:"\f825"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-sun-cloud:before{content:"\f763"}.fa-sun-dust:before{content:"\f764"}.fa-sun-haze:before{content:"\f765"}.fa-sunrise:before{content:"\f766"}.fa-sunset:before{content:"\f767"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-sword:before{content:"\f71c"}.fa-swords:before{content:"\f71d"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablet-android:before{content:"\f3fb"}.fa-tablet-android-alt:before{content:"\f3fc"}.fa-tablet-rugged:before{content:"\f48f"}.fa-tablets:before{content:"\f490"}.fa-tachometer:before{content:"\f0e4"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tachometer-alt-average:before{content:"\f624"}.fa-tachometer-alt-fast:before{content:"\f625"}.fa-tachometer-alt-fastest:before{content:"\f626"}.fa-tachometer-alt-slow:before{content:"\f627"}.fa-tachometer-alt-slowest:before{content:"\f628"}.fa-tachometer-average:before{content:"\f629"}.fa-tachometer-fast:before{content:"\f62a"}.fa-tachometer-fastest:before{content:"\f62b"}.fa-tachometer-slow:before{content:"\f62c"}.fa-tachometer-slowest:before{content:"\f62d"}.fa-taco:before{content:"\f826"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tally:before{content:"\f69c"}.fa-tanakh:before{content:"\f827"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-tasks-alt:before{content:"\f828"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-frigid:before{content:"\f768"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-hot:before{content:"\f76a"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-tennis-ball:before{content:"\f45e"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-theta:before{content:"\f69e"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-thunderstorm:before{content:"\f76c"}.fa-thunderstorm-moon:before{content:"\f76d"}.fa-thunderstorm-sun:before{content:"\f76e"}.fa-ticket:before{content:"\f145"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tilde:before{content:"\f69f"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-times-hexagon:before{content:"\f2ee"}.fa-times-octagon:before{content:"\f2f0"}.fa-times-square:before{content:"\f2d3"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tire:before{content:"\f631"}.fa-tire-flat:before{content:"\f632"}.fa-tire-pressure-warning:before{content:"\f633"}.fa-tire-rugged:before{content:"\f634"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-alt:before{content:"\f71f"}.fa-tombstone:before{content:"\f720"}.fa-tombstone-alt:before{content:"\f721"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-toothbrush:before{content:"\f635"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tornado:before{content:"\f76f"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-cone:before{content:"\f636"}.fa-traffic-light:before{content:"\f637"}.fa-traffic-light-go:before{content:"\f638"}.fa-traffic-light-slow:before{content:"\f639"}.fa-traffic-light-stop:before{content:"\f63a"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-treasure-chest:before{content:"\f723"}.fa-tree:before{content:"\f1bb"}.fa-tree-alt:before{content:"\f400"}.fa-tree-christmas:before{content:"\f7db"}.fa-tree-decorated:before{content:"\f7dc"}.fa-tree-large:before{content:"\f7dd"}.fa-tree-palm:before{content:"\f82b"}.fa-trees:before{content:"\f724"}.fa-trello:before{content:"\f181"}.fa-triangle:before{content:"\f2ec"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-trophy-alt:before{content:"\f2eb"}.fa-truck:before{content:"\f0d1"}.fa-truck-container:before{content:"\f4dc"}.fa-truck-couch:before{content:"\f4dd"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-truck-plow:before{content:"\f7de"}.fa-truck-ramp:before{content:"\f4e0"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-turkey:before{content:"\f725"}.fa-turtle:before{content:"\f726"}.fa-tv:before{content:"\f26c"}.fa-tv-retro:before{content:"\f401"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-unicorn:before{content:"\f727"}.fa-union:before{content:"\f6a2"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-usd-circle:before{content:"\f2e8"}.fa-usd-square:before{content:"\f2e9"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-chart:before{content:"\f6a3"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-crown:before{content:"\f6a4"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-hard-hat:before{content:"\f82c"}.fa-user-headset:before{content:"\f82d"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-md-chat:before{content:"\f82e"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-class:before{content:"\f63d"}.fa-users-cog:before{content:"\f509"}.fa-users-crown:before{content:"\f6a5"}.fa-users-medical:before{content:"\f830"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-fork:before{content:"\f2e3"}.fa-utensil-knife:before{content:"\f2e4"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-utensils-alt:before{content:"\f2e6"}.fa-vaadin:before{content:"\f408"}.fa-value-absolute:before{content:"\f6a6"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-plus:before{content:"\f4e1"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volcano:before{content:"\f770"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume:before{content:"\f6a8"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-slash:before{content:"\f2e2"}.fa-volume-up:before{content:"\f028"}.fa-vote-nay:before{content:"\f771"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walker:before{content:"\f831"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-wand:before{content:"\f72a"}.fa-wand-magic:before{content:"\f72b"}.fa-warehouse:before{content:"\f494"}.fa-warehouse-alt:before{content:"\f495"}.fa-watch:before{content:"\f2e1"}.fa-watch-fitness:before{content:"\f63e"}.fa-water:before{content:"\f773"}.fa-water-lower:before{content:"\f774"}.fa-water-rise:before{content:"\f775"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-webcam:before{content:"\f832"}.fa-webcam-slash:before{content:"\f833"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whale:before{content:"\f72c"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheat:before{content:"\f72d"}.fa-wheelchair:before{content:"\f193"}.fa-whistle:before{content:"\f460"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wifi-1:before{content:"\f6aa"}.fa-wifi-2:before{content:"\f6ab"}.fa-wifi-slash:before{content:"\f6ac"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-wind-warning:before{content:"\f776"}.fa-window:before{content:"\f40e"}.fa-window-alt:before{content:"\f40f"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-windsock:before{content:"\f777"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wreath:before{content:"\f7e2"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;font-display:auto;src:url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-brands-400.eot);src:url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-brands-400.woff2) format("woff2"),url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-brands-400.woff) format("woff"),url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-brands-400.ttf) format("truetype"),url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:300;font-display:auto;src:url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-light-300.eot);src:url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-light-300.eot?#iefix) format("embedded-opentype"),url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-light-300.woff2) format("woff2"),url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-light-300.woff) format("woff"),url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-light-300.ttf) format("truetype"),url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-light-300.svg#fontawesome) format("svg")}.fal{font-weight:300}@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:400;font-display:auto;src:url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-regular-400.eot);src:url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-regular-400.woff2) format("woff2"),url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-regular-400.woff) format("woff"),url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-regular-400.ttf) format("truetype"),url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.fal,.far{font-family:"Font Awesome 5 Pro"}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:900;font-display:auto;src:url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-solid-900.eot);src:url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-solid-900.woff2) format("woff2"),url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-solid-900.woff) format("woff"),url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-solid-900.ttf) format("truetype"),url(/local/templates/ronc.site/fontawesome.css/../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Pro";font-weight:900}
/* End */


/* Start:/local/templates/ronc.site/css/slick.css?17228477001776*/
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* End */


/* Start:/local/templates/ronc.site/css/jquery.fancybox.min.css?172284770013735*/
@charset "UTF-8";body.fancybox-active{overflow:hidden}body.fancybox-iosfix{position:fixed;left:0;right:0}.fancybox-is-hidden{position:absolute;top:-9999px;left:-9999px;visibility:hidden}.fancybox-container{position:fixed;top:0;left:0;width:100%;height:100%;z-index:99992;-webkit-tap-highlight-color:transparent;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translateZ(0);transform:translateZ(0);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{position:absolute;top:0;right:0;bottom:0;left:0}.fancybox-outer{overflow-y:auto;-webkit-overflow-scrolling:touch}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.87;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption-wrap,.fancybox-infobar,.fancybox-toolbar{position:absolute;direction:ltr;z-index:99997;opacity:0;visibility:hidden;transition:opacity .25s,visibility 0s linear .25s;box-sizing:border-box}.fancybox-show-caption .fancybox-caption-wrap,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;visibility:visible;transition:opacity .25s,visibility 0s}.fancybox-infobar{top:0;left:0;font-size:13px;padding:0 10px;height:44px;min-width:44px;line-height:44px;color:#ccc;text-align:center;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-font-smoothing:subpixel-antialiased;mix-blend-mode:exclusion}.fancybox-toolbar{top:0;right:0;margin:0;padding:0}.fancybox-stage{overflow:hidden;direction:ltr;z-index:99994;-webkit-transform:translateZ(0)}.fancybox-is-closing .fancybox-stage{overflow:visible}.fancybox-slide{position:absolute;top:0;left:0;width:100%;height:100%;margin:0;padding:0;overflow:auto;outline:none;white-space:normal;box-sizing:border-box;text-align:center;z-index:99994;-webkit-overflow-scrolling:touch;display:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform}.fancybox-slide:before{content:"";display:inline-block;vertical-align:middle;height:100%;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:visible}.fancybox-slide--image:before{display:none}.fancybox-slide--video .fancybox-content,.fancybox-slide--video iframe{background:#000}.fancybox-slide--map .fancybox-content,.fancybox-slide--map iframe{background:#e5e3df}.fancybox-slide--next{z-index:99995}.fancybox-slide>*{display:inline-block;position:relative;padding:24px;margin:44px 0;border-width:0;vertical-align:middle;text-align:left;background-color:#fff;overflow:auto;box-sizing:border-box}.fancybox-slide>base,.fancybox-slide>link,.fancybox-slide>meta,.fancybox-slide>script,.fancybox-slide>style,.fancybox-slide>title{display:none}.fancybox-slide .fancybox-image-wrap{position:absolute;top:0;left:0;margin:0;padding:0;border:0;z-index:99995;background:transparent;cursor:default;overflow:visible;-webkit-transform-origin:top left;transform-origin:top left;background-size:100% 100%;background-repeat:no-repeat;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform}.fancybox-can-zoomOut .fancybox-image-wrap{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-image-wrap{cursor:zoom-in}.fancybox-can-drag .fancybox-image-wrap{cursor:-webkit-grab;cursor:grab}.fancybox-is-dragging .fancybox-image-wrap{cursor:-webkit-grabbing;cursor:grabbing}.fancybox-image,.fancybox-spaceball{position:absolute;top:0;left:0;width:100%;height:100%;margin:0;padding:0;border:0;max-width:none;max-height:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content{padding:0;width:80%;height:80%;max-width:calc(100% - 100px);max-height:calc(100% - 88px);overflow:visible;background:#fff}.fancybox-iframe{display:block;padding:0;border:0;height:100%}.fancybox-error,.fancybox-iframe{margin:0;width:100%;background:#fff}.fancybox-error{padding:40px;max-width:380px;cursor:default}.fancybox-error p{margin:0;padding:0;color:#444;font-size:16px;line-height:20px}.fancybox-button{box-sizing:border-box;display:inline-block;vertical-align:top;width:44px;height:44px;margin:0;padding:10px;border:0;border-radius:0;background:rgba(30,30,30,.6);transition:color .3s ease;cursor:pointer;outline:none}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:focus,.fancybox-button:hover{color:#fff}.fancybox-button[disabled]{color:#ccc;cursor:default;opacity:.6}.fancybox-button svg{display:block;position:relative;overflow:visible;shape-rendering:geometricPrecision}.fancybox-button svg path{fill:currentColor;stroke:currentColor;stroke-linejoin:round;stroke-width:3}.fancybox-button--share svg path{stroke-width:1}.fancybox-button--pause svg path:nth-child(1),.fancybox-button--play svg path:nth-child(2){display:none}.fancybox-button--zoom svg path{fill:transparent}.fancybox-navigation{display:none}.fancybox-show-nav .fancybox-navigation{display:block}.fancybox-navigation button{position:absolute;top:50%;margin:-50px 0 0;z-index:99997;background:transparent;width:60px;height:100px;padding:17px}.fancybox-navigation button:before{content:"";position:absolute;top:30px;right:10px;width:40px;height:40px;background:rgba(30,30,30,.6)}.fancybox-navigation .fancybox-button--arrow_left{left:0}.fancybox-navigation .fancybox-button--arrow_right{right:0}.fancybox-close-small{position:absolute;top:0;right:0;width:40px;height:40px;padding:0;margin:0;border:0;border-radius:0;background:transparent;z-index:10;cursor:pointer}.fancybox-close-small:after{content:"×";position:absolute;top:5px;right:5px;width:30px;height:30px;font:22px/30px Arial,Helvetica Neue,Helvetica,sans-serif;color:#888;font-weight:300;text-align:center;border-radius:50%;border-width:0;background-color:transparent;transition:background-color .25s;box-sizing:border-box;z-index:2}.fancybox-close-small:focus{outline:none}.fancybox-close-small:focus:after{outline:1px dotted #888}.fancybox-close-small:hover:after{color:#555;background:#eee}.fancybox-slide--iframe .fancybox-close-small,.fancybox-slide--image .fancybox-close-small{top:0;right:-40px}.fancybox-slide--iframe .fancybox-close-small:after,.fancybox-slide--image .fancybox-close-small:after{font-size:35px;color:#aaa}.fancybox-slide--iframe .fancybox-close-small:hover:after,.fancybox-slide--image .fancybox-close-small:hover:after{color:#fff;background:transparent}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small{display:none}.fancybox-caption-wrap{bottom:0;left:0;right:0;padding:60px 2vw 0;background:linear-gradient(180deg,transparent 0,rgba(0,0,0,.1) 20%,rgba(0,0,0,.2) 40%,rgba(0,0,0,.6) 80%,rgba(0,0,0,.8));pointer-events:none}.fancybox-caption{padding:30px 0;border-top:1px solid hsla(0,0%,100%,.4);font-size:14px;color:#fff;line-height:20px;-webkit-text-size-adjust:none}.fancybox-caption a,.fancybox-caption button,.fancybox-caption select{pointer-events:all;position:relative}.fancybox-caption a{color:#fff;text-decoration:underline}.fancybox-slide>.fancybox-loading{border:6px solid hsla(0,0%,39%,.4);border-top:6px solid hsla(0,0%,100%,.6);border-radius:100%;height:50px;width:50px;-webkit-animation:a .8s infinite linear;animation:a .8s infinite linear;background:transparent;position:absolute;top:50%;left:50%;margin-top:-30px;margin-left:-30px;z-index:99999}@-webkit-keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);opacity:0}.fancybox-fx-slide.fancybox-slide--next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);opacity:0}.fancybox-fx-slide.fancybox-slide--current{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{-webkit-transform:scale3d(1.5,1.5,1.5);transform:scale3d(1.5,1.5,1.5);opacity:0}.fancybox-fx-zoom-in-out.fancybox-slide--next{-webkit-transform:scale3d(.5,.5,.5);transform:scale3d(.5,.5,.5);opacity:0}.fancybox-fx-zoom-in-out.fancybox-slide--current{-webkit-transform:scaleX(1);transform:scaleX(1);opacity:1}.fancybox-fx-rotate.fancybox-slide--previous{-webkit-transform:rotate(-1turn);transform:rotate(-1turn);opacity:0}.fancybox-fx-rotate.fancybox-slide--next{-webkit-transform:rotate(1turn);transform:rotate(1turn);opacity:0}.fancybox-fx-rotate.fancybox-slide--current{-webkit-transform:rotate(0deg);transform:rotate(0deg);opacity:1}.fancybox-fx-circular.fancybox-slide--previous{-webkit-transform:scale3d(0,0,0) translate3d(-100%,0,0);transform:scale3d(0,0,0) translate3d(-100%,0,0);opacity:0}.fancybox-fx-circular.fancybox-slide--next{-webkit-transform:scale3d(0,0,0) translate3d(100%,0,0);transform:scale3d(0,0,0) translate3d(100%,0,0);opacity:0}.fancybox-fx-circular.fancybox-slide--current{-webkit-transform:scaleX(1) translateZ(0);transform:scaleX(1) translateZ(0);opacity:1}.fancybox-fx-tube.fancybox-slide--previous{-webkit-transform:translate3d(-100%,0,0) scale(.1) skew(-10deg);transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{-webkit-transform:translate3d(100%,0,0) scale(.1) skew(10deg);transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{-webkit-transform:translateZ(0) scale(1);transform:translateZ(0) scale(1)}.fancybox-share{padding:30px;border-radius:3px;background:#f4f4f4;max-width:90%;text-align:center}.fancybox-share h1{color:#222;margin:0 0 20px;font-size:35px;font-weight:700}.fancybox-share p{margin:0;padding:0}p.fancybox-share__links{margin-right:-10px}.fancybox-share__button{display:inline-block;text-decoration:none;margin:0 10px 10px 0;padding:0 15px;min-width:130px;border:0;border-radius:3px;background:#fff;white-space:nowrap;font-size:14px;font-weight:700;line-height:40px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#fff;transition:all .2s}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{position:relative;top:-1px;width:25px;height:25px;margin-right:7px;vertical-align:middle}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{box-sizing:border-box;width:100%;margin:10px 0 0;padding:10px 15px;background:transparent;color:#5d5b5b;font-size:14px;outline:none;border:0;border-bottom:2px solid #d7d7d7}.fancybox-thumbs{display:none;position:absolute;top:0;bottom:0;right:0;width:212px;margin:0;padding:2px 2px 4px;background:#fff;-webkit-tap-highlight-color:transparent;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;box-sizing:border-box;z-index:99995}.fancybox-thumbs-x{overflow-y:hidden;overflow-x:auto}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs>ul{list-style:none;position:absolute;position:relative;width:100%;height:100%;margin:0;padding:0;overflow-x:hidden;overflow-y:auto;font-size:0;white-space:nowrap}.fancybox-thumbs-x>ul{overflow:hidden}.fancybox-thumbs-y>ul::-webkit-scrollbar{width:7px}.fancybox-thumbs-y>ul::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y>ul::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs>ul>li{float:left;overflow:hidden;padding:0;margin:2px;width:100px;height:75px;max-width:calc(50% - 4px);max-height:calc(100% - 8px);position:relative;cursor:pointer;outline:none;-webkit-tap-highlight-color:transparent;-webkit-backface-visibility:hidden;backface-visibility:hidden;box-sizing:border-box}li.fancybox-thumbs-loading{background:rgba(0,0,0,.1)}.fancybox-thumbs>ul>li>img{position:absolute;top:0;left:0;max-width:none;max-height:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-thumbs>ul>li:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border:4px solid #4ea7f9;z-index:99991;opacity:0;transition:all .2s cubic-bezier(.25,.46,.45,.94)}.fancybox-thumbs>ul>li.fancybox-thumbs-active:before{opacity:1}@media (max-width:800px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs>ul>li{max-width:calc(100% - 10px)}}
/* End */


/* Start:/local/templates/ronc.site/css/bootstrap-select.min.css?172284770011120*/
/*!
 * Bootstrap-select v1.13.14 (https://developer.snapappointments.com/bootstrap-select)
 *
 * Copyright 2012-2020 SnapAppointments, LLC
 * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)
 */@-webkit-keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}@-o-keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}@keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}.bootstrap-select>select.bs-select-hidden,select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select{width:220px\0;vertical-align:middle}.bootstrap-select>.dropdown-toggle{position:relative;width:100%;text-align:right;white-space:nowrap;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.bootstrap-select>.dropdown-toggle:after{margin-top:-1px}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:#999}.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:hover{color:rgba(255,255,255,.5)}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none;z-index:0!important}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2!important}.bootstrap-select.is-invalid .dropdown-toggle,.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle,.was-validated .bootstrap-select select:invalid+.dropdown-toggle{border-color:#b94a48}.bootstrap-select.is-valid .dropdown-toggle,.was-validated .bootstrap-select select:valid+.dropdown-toggle{border-color:#28a745}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus,.bootstrap-select>select.mobile-device:focus+.dropdown-toggle{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none;height:auto}:not(.input-group)>.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{float:none;z-index:auto}.form-inline .bootstrap-select,.form-inline .bootstrap-select.form-control:not([class*=col-]){width:auto}.bootstrap-select:not(.input-group-btn),.bootstrap-select[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.dropdown-menu-right,.bootstrap-select[class*=col-].dropdown-menu-right,.row .bootstrap-select[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select,.form-horizontal .bootstrap-select,.form-inline .bootstrap-select{margin-bottom:0}.form-group-lg .bootstrap-select.form-control,.form-group-sm .bootstrap-select.form-control{padding:0}.form-group-lg .bootstrap-select.form-control .dropdown-toggle,.form-group-sm .bootstrap-select.form-control .dropdown-toggle{height:100%;font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-lg .dropdown-toggle,.bootstrap-select.form-control-sm .dropdown-toggle{font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-sm .dropdown-toggle{padding:.25rem .5rem}.bootstrap-select.form-control-lg .dropdown-toggle{padding:.5rem 1rem}.form-inline .bootstrap-select .form-control{width:100%}.bootstrap-select.disabled,.bootstrap-select>.disabled{cursor:not-allowed}.bootstrap-select.disabled:focus,.bootstrap-select>.disabled:focus{outline:0!important}.bootstrap-select.bs-container{position:absolute;top:0;left:0;height:0!important;padding:0!important}.bootstrap-select.bs-container .dropdown-menu{z-index:1060}.bootstrap-select .dropdown-toggle .filter-option{position:static;top:0;left:0;float:left;height:100%;width:100%;text-align:left;overflow:hidden;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}.bs3.bootstrap-select .dropdown-toggle .filter-option{padding-right:inherit}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option{position:absolute;padding-top:inherit;padding-bottom:inherit;padding-left:inherit;float:none}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner{padding-right:inherit}.bootstrap-select .dropdown-toggle .filter-option-inner-inner{overflow:hidden}.bootstrap-select .dropdown-toggle .filter-expand{width:0!important;float:left;opacity:0!important;overflow:hidden}.bootstrap-select .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.input-group .bootstrap-select.form-control .dropdown-toggle{border-radius:inherit}.bootstrap-select[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select .dropdown-menu{min-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu>.inner:focus{outline:0!important}.bootstrap-select .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-select .dropdown-menu li{position:relative}.bootstrap-select .dropdown-menu li.active small{color:rgba(255,255,255,.5)!important}.bootstrap-select .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select .dropdown-menu li a{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bootstrap-select .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select .dropdown-menu li a span.check-mark{display:none}.bootstrap-select .dropdown-menu li a span.text{display:inline-block}.bootstrap-select .dropdown-menu li small{padding-left:.5em}.bootstrap-select .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu .notify.fadeOut{-webkit-animation:.3s linear 750ms forwards bs-notify-fadeOut;-o-animation:.3s linear 750ms forwards bs-notify-fadeOut;animation:.3s linear 750ms forwards bs-notify-fadeOut}.bootstrap-select .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.fit-width .dropdown-toggle .filter-option{position:static;display:inline;padding:0}.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner{display:inline}.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before{content:'\00a0'}.bootstrap-select.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark{position:absolute;display:inline-block;right:15px;top:5px}.bootstrap-select.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select .bs-ok-default:after{content:'';display:block;width:.5em;height:1em;border-style:solid;border-width:0 .26em .26em 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before{content:'';border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after{content:'';border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before{bottom:auto;top:-4px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after{bottom:auto;top:-4px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:before,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none}
/* End */


/* Start:/local/templates/ronc.site/include/app/app.brand/style.css?1738912257382*/
.app-brand {
	--x-comp-button-plain-opacity: 1;
}

@media (hover: hover) {
	.app-brand.x-button--variant-plain:where([href]):hover {
		opacity: 0.8;
	}
}

.app-brand.x-button {
	grid-template-columns: auto 1fr auto;
}

.app-brand.x-button > .x-button__content {
	width: 100%;
}

.app-brand svg {
	block-size: 100%;
	fill: currentColor;
	inline-size: 100%;
	max-inline-size: 100%;
}

/* End */


/* Start:/local/templates/ronc.site/components/bitrix/menu/mmenu/style.css?1722847702846*/
.mobile-menu {
    margin: 0;
    padding: 0;
    overflow: auto;
    flex-shrink: 2;
}
.mobile-menu > li {
    display: flex;
    padding: 2px 15px 2px 0;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.mobile-menu a {
    font-size: 18px;
    /*line-height: 16px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 700;*/
    flex-grow: 2;
}
.btn-mmenu-submenu {
    /*background: no-repeat url(/images/ico-mmenu-arrow.svg) right center;*/
    min-height: 20px;
    min-width: 20px;
    text-align: right;
}
.btn-mmenu-submenu.mmenu-submenu-open > img {
    transform: rotate(  90deg);
}
.mobile-menu ul {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 10px 0 0 15px;
}
.mobile-menu ul > li {
    padding: 7px 0;
}





/* End */


/* Start:/local/templates/ronc.site/include/app/app.bar.floating/style.css?17228477021259*/
/*!
* Components/AppBar
*/

.app-bar.x-app-bar.x-toolbar {
	--x-toolbar-height: var(--x-ref-layout-app-bar-height);
	--x-toolbar-content-height: var(--x-ref-layout-app-bar-content-height);
	--x-toolbar-extension-height: var(--x-ref-layout-app-bar-extension-height);

	top: var(--x-ref-layout-app-info-bar-height);
	width: 100%;
	z-index: var(--x-ref-layout-app-bar-z-index);
}

.app-bar.app-bar--floating.x-app-bar.x-toolbar {
	--x-toolbar-height: var(--x-ref-layout-app-bar-floating-height);
	--x-toolbar-content-height: var(--x-ref-layout-app-bar-floating-content-height);
	--x-toolbar-extension-height: var(--x-ref-layout-app-bar-floating-extension-height);

	opacity: 0;
	top: 0;
	transform: translateY(-100%);
	width: 100%;
	z-index: var(--x-ref-layout-app-bar-floating-z-index);
}

.app-bar.app-bar--subnav.x-app-bar.x-toolbar {
	--x-toolbar-height: var(--x-ref-layout-app-bar-subnav-height);
	--x-toolbar-content-height: var(--x-ref-layout-app-bar-subnav-content-height);
	--x-toolbar-extension-height: var(--x-ref-layout-app-bar-subnav-extension-height);

	top: calc(var(--x-ref-layout-app-info-bar-height) + var(--x-ref-layout-app-bar-height));
	width: 100%;
	z-index: var(--x-ref-layout-app-bar-subnav-z-index);
}

/* End */


/* Start:/local/templates/ronc.site/include/main/main.header/style.css?17364402101618*/
.main-header {
	padding-block: 0.75rem;
}

@media (min-width: 75em) {
	.main-header {
		padding-block: 1.5rem;
	}
}

.main-header__breadcrumbs {
	align-items: baseline;
	display: flex;
	height: 1.25rem;
	margin-inline: -1rem;
	overflow-y: hidden;
	position: relative;
}

@media (min-width: 52.5em) {
	.main-header__breadcrumbs {
		margin-inline: -1.5rem;
	}
}

.main-header__breadcrumbs .x-breadcrumbs {
	--x-comp-breadcrumbs-block-space: 0;
	--x-comp-breadcrumbs-inline-space: 1rem;
	--x-comp-breadcrumbs-item-label-text-white-space: nowrap;

	margin-bottom: 0;
	overflow-x: auto;
}

.main-header__breadcrumbs .x-breadcrumbs-divider {
	--x-comp-breadcrumbs-divider-inline-space: 0.25rem;
	--x-comp-breadcrumbs-divider-text-line-height: var(--x-sys-typescale-body-small-line-height);
	--x-comp-breadcrumbs-divider-text-size: var(--x-sys-typescale-body-small-size);
}

.main-header__breadcrumbs .x-breadcrumbs-item {
	--x-comp-breadcrumbs-item-disabled-label-text-opacity: 0.62;
	--x-comp-breadcrumbs-item-label-text-line-height: var(--x-sys-typescale-body-small-line-height);
	--x-comp-breadcrumbs-item-label-text-size: var(--x-sys-typescale-body-small-size);
	--x-comp-breadcrumbs-item-label-text-tracking: var(--x-sys-typescale-body-small-tracking);
	--x-comp-breadcrumbs-item-label-text-letter-case: var(--x-sys-typescale-body-small-letter-case);
	--x-comp-breadcrumbs-item-label-text-weight: var(--x-sys-typescale-body-small-weight);
}

@media (min-width: 52.5em) {
	.main-header__breadcrumbs .x-breadcrumbs {
		--x-comp-breadcrumbs-inline-space: 1.5rem;
	}
}

/* End */


/* Start:/local/templates/ronc.site/components/bitrix/breadcrumb/x-breadcrumbs/style.css?17229591947786*/
.x-breadcrumbs {
	--x-breadcrumbs-block-space: var(--x-comp-breadcrumbs-block-space, 1rem);
	--x-breadcrumbs-block-space-reducer: var(--x-comp-breadcrumbs-block-space-reducer, 0.25rem);
	--x-breadcrumbs-container-shape: var(--x-comp-breadcrumbs-container-shape, var(--sys-shape-corner-none, 0));
	--x-breadcrumbs-density-compact-multiplier: var(--x-comp-breadcrumbs-density-compact-multiplier, -2);
	--x-breadcrumbs-density-comfortable-multiplier: var(--x-comp-breadcrumbs-density-comfortable-multiplier, -1);
	--x-breadcrumbs-density-default-multiplier: var(--x-comp-breadcrumbs-density-default-multiplier, 0);
	--x-breadcrumbs-density-reducer: var(--x-comp-breadcrumbs-density-reducer, 0.25rem);
	--x-breadcrumbs-inline-space: var(--x-comp-breadcrumbs-inline-space, 0.75rem);
}

.x-breadcrumbs-divider {
	--x-breadcrumbs-divider-inline-space: var(--x-comp-breadcrumbs-divider-inline-space, 0.5rem);
	--x-breadcrumbs-divider-text-line-height: var(--x-comp-breadcrumbs-divider-text-line-height, var(--x-sys-typescale-body-large-line-height, 1.5rem));
	--x-breadcrumbs-divider-text-size: var(--x-comp-breadcrumbs-divider-text-size, var(--x-sys-typescale-body-large-size, 1rem));
	--x-breadcrumbs-divider-vertical-align: var(--x-comp-breadcrumbs-divider-vertical-align, middle);
}

.x-breadcrumbs-item {
	--x-breadcrumbs-item-container-motion-duration: var(--x-comp-breadcrumbs-item-container-motion-duration, var(--x-sys-motion-duration-short4, 200ms));
	--x-breadcrumbs-item-container-motion-easing: var(--x-comp-breadcrumbs-item-container-motion-easing, var(--x-sys-motion-easing-standard, cubic-bezier(0.2, 0, 0, 1)));
	--x-breadcrumbs-item-container-motion-property: var(--x-comp-breadcrumbs-item-container-motion-property, color, opacity);
	--x-breadcrumbs-item-container-shape: var(--x-comp-breadcrumbs-item-container-shape, var(--sys-shape-corner-x-small, 0.25rem));
	--x-breadcrumbs-item-disabled-label-text-color: var(--x-comp-breadcrumbs-item-disabled-label-text-color, inherit);
	--x-breadcrumbs-item-disabled-label-text-opacity: var(--x-comp-breadcrumbs-item-disabled-label-text-opacity, var(--x-sys-state-disabled-text-opacity, 0.38));
	--x-breadcrumbs-item-hover-label-text-opacity: var(--x-comp-breadcrumbs-item-hover-label-text-opacity, 1);
	--x-breadcrumbs-item-icon-inline-end-space: var(--x-comp-breadcrumbs-item-icon-inline-end-space, 0.125rem);
	--x-breadcrumbs-item-icon-inline-start-space: var(--x-comp-breadcrumbs-item-icon-inline-start-space, -0.25rem);
	--x-breadcrumbs-item-inline-space: var(--x-comp-breadcrumbs-item-inline-space, 0.25rem);
	--x-breadcrumbs-item-label-text-color: var(--x-comp-breadcrumbs-item-label-text-color, inherit);
	--x-breadcrumbs-item-label-text-font: var(--x-comp-breadcrumbs-item-label-text-font, inherit);
	--x-breadcrumbs-item-label-text-line-height: var(--x-comp-breadcrumbs-item-label-text-line-height, var(--x-sys-typescale-body-large-line-height, 1.5rem));
	--x-breadcrumbs-item-label-text-opacity: var(--x-comp-breadcrumbs-item-label-text-opacity, 1);
	--x-breadcrumbs-item-label-text-size: var(--x-comp-breadcrumbs-item-label-text-size, var(--x-sys-typescale-body-large-size, 1rem));
	--x-breadcrumbs-item-label-text-tracking: var(--x-comp-breadcrumbs-item-label-text-tracking, var(--x-sys-typescale-body-large-tracking, 0.03125rem));
	--x-breadcrumbs-item-label-text-letter-case: var(--x-comp-breadcrumbs-item-label-text-letter-case, var(--x-sys-typescale-body-large-letter-case, none));
	--x-breadcrumbs-item-label-text-vertical-align: var(--x-comp-breadcrumbs-item-label-text-vertical-align, middle);
	--x-breadcrumbs-item-label-text-weight: var(--x-comp-breadcrumbs-item-label-text-weight, var(--x-sys-typescale-body-large-weight, 400));
	--x-breadcrumbs-item-label-text-white-space: var(--x-comp-breadcrumbs-item-label-text-white-space, wrap);
}

.x-breadcrumbs {
	align-items: center;
	border-radius: var(--x-breadcrumbs-container-shape);
	display: flex;
	padding-inline: var(--x-breadcrumbs-inline-space);
}

.x-breadcrumbs__start {
	align-items: center;
	display: inline-flex;
}

.x-breadcrumbs--density-default {
	padding-bottom: calc(var(--x-breadcrumbs-block-space) + var(--x-breadcrumbs-density-reducer) * var(--x-breadcrumbs-density-default-multiplier));
	padding-top: calc(var(--x-breadcrumbs-block-space) + var(--x-breadcrumbs-density-reducer) * var(--x-breadcrumbs-density-default-multiplier));
}

.x-breadcrumbs--density-comfortable {
	padding-bottom: calc(var(--x-breadcrumbs-block-space) + var(--x-breadcrumbs-density-reducer) * var(--x-breadcrumbs-density-comfortable-multiplier));
	padding-top: calc(var(--x-breadcrumbs-block-space) + var(--x-breadcrumbs-density-reducer) * var(--x-breadcrumbs-density-comfortable-multiplier));
}

.x-breadcrumbs--density-compact {
	padding-bottom: calc(var(--x-breadcrumbs-block-space) + var(--x-breadcrumbs-density-reducer) * var(--x-breadcrumbs-density-compact-multiplier));
	padding-top: calc(var(--x-breadcrumbs-block-space) + var(--x-breadcrumbs-density-reducer) * var(--x-breadcrumbs-density-compact-multiplier));
}

.x-breadcrumbs-divider {
	display: inline-block;
	font-size: var(--x-breadcrumbs-divider-text-size);
	line-height: var(--x-breadcrumbs-divider-text-line-height);
	padding-block: 0;
	padding-inline: var(--x-breadcrumbs-divider-inline-space);
	vertical-align: var(--x-breadcrumbs-divider-vertical-align);
}

.x-breadcrumbs-item {
	align-items: center;
	border-radius: var(--x-breadcrumbs-item-container-shape);
	color: var(--x-breadcrumbs-item-label-text-color);
	display: inline-flex;
	font-family: var(--x-breadcrumbs-item-label-text-font);
	font-size: var(--x-breadcrumbs-item-label-text-size);
	font-weight: var(--x-breadcrumbs-item-label-text-weight);
	letter-spacing: var(--x-breadcrumbs-item-label-text-tracking);
	line-height: var(--x-breadcrumbs-item-label-text-line-height);
	padding-block: 0;
	padding-inline: var(--x-breadcrumbs-item-inline-space);
	position: relative;
	text-decoration: none;
	text-indent: var(--x-breadcrumbs-item-label-text-tracking);
	text-transform: var(--x-breadcrumbs-item-label-text-letter-case);
	vertical-align: var(--x-breadcrumbs-item-label-text-vertical-align);
	white-space: var(--x-breadcrumbs-item-label-text-white-space);
}

.x-breadcrumbs-item__link {
	border-radius: inherit;
	color: inherit;
	opacity: var(--x-breadcrumbs-item-label-text-opacity);
	outline: none;
	transition-duration: var(--x-breadcrumbs-item-container-motion-duration);
	transition-property: var(--x-breadcrumbs-item-container-motion-property);
	transition-timing-function: var(--x-breadcrumbs-item-container-motion-easing);
}

@media (hover: hover) {
	.x-breadcrumbs-item__link:hover>.x-state-layer {
		--x-state-layer-opacity: calc(var(--x-sys-state-hover-state-layer-opacity, 0.08) * var(--x-sys-state-multiplier));
	}
}

.x-breadcrumbs-item__link:focus-visible>.x-state-layer {
	--x-state-layer-opacity: calc(var(--x-sys-state-focus-state-layer-opacity, 0.1) * var(--x-sys-state-multiplier));
}

@supports not selector(:focus-visible) {
	.x-breadcrumbs-item__link:focus>.x-state-layer {
		--x-state-layer-opacity: calc(var(--x-sys-state-focus-state-layer-opacity, 0.1) * var(--x-sys-state-multiplier));
	}
}

.x-breadcrumbs-item__link:hover {
	opacity: var(--x-breadcrumbs-item-hover-label-text-opacity);
}

.x-breadcrumbs-item--disabled {
	color: var(--x-breadcrumbs-item-disabled-label-text-color);
	opacity: var(--x-breadcrumbs-item-disabled-label-text-opacity);
	pointer-events: none;
}

.x-breadcrumbs-item .x-icon {
	font-size: inherit;
	margin-inline-end: var(--x-breadcrumbs-item-icon-inline-end-space);
	margin-inline-start: var(--x-breadcrumbs-item-icon-inline-start-space);
}

/* End */


/* Start:/local/templates/ronc.site/include/app/app.navigation.bar/style.css?1730588044982*/
.app-navigation-bar {
	background-color: rgb(var(--x-sys-color-surface));
	border-color: rgba(var(--x-sys-color-outline), var(--x-sys-opacity-outline));
	border-style: solid;
	border-width: 0;
	border-radius: 0;
	bottom: 0;
	color: rgb(var(--x-sys-color-on-surface));
	display: flex;
	height: var(--x-ref-layout-app-navigation-bar-height);
	left: 0;
	max-width: 100%;
	overflow: hidden;
	position: fixed !important;
	transition: transform, color 0.2s, 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
	z-index: var(--x-ref-layout-app-navigation-bar-z-index);
}

.app-navigation-bar__content {
	display: flex;
	flex: none;
	font-size: 0.75rem;
	justify-content: center;
	transition: inherit;
	width: 100%;
}

.app-navigation-bar > .app-navigation-bar__content > .x-button {
	font-size: inherit;
	flex-grow: 1;
	height: 100%;
	max-width: 10.5rem;
	min-width: 5rem;
	text-transform: none;
	transition: inherit;
	width: auto;
	border-radius: 0;
}

/* End */


/* Start:/local/templates/ronc.site/components/bitrix/search.title/app.search.dialog.search/style.css?172284770260*/
div.title-search-result {
	display: none;
	z-index: 1000;
}

/* End */


/* Start:/local/templates/ronc.site/include/app/cookie.consent.popup/style.css?17472286741236*/
.app-cookie-consent-popup {
	border-color: transparent;
	border-radius: var(--x-sys-shape-corner-medium, 0.75rem) var(--x-sys-shape-corner-medium, 0.75rem) 0 0;
	border-style: none;
	border-width: 0;
	flex-direction: column;
	inline-size: auto;
	inset-block: auto 0;
	inset-inline: 0;
	max-inline-size: 46.25rem;
	padding: 1rem;
	position: fixed;
	row-gap: 1rem;
	z-index: calc(var(--x-ref-layout-app-navigation-bar-z-index, 1030) + 1);
}

.app-cookie-consent-popup:where(:open) {
	display: flex;
}

.app-cookie-consent-popup:where(:not(:open)) {
	display: none;
}

@media (min-width: 37.5em) {
	.app-cookie-consent-popup {
		border-radius: var(--x-sys-shape-corner-medium, 0.75rem);
		inset-block: auto calc(var(--x-ref-layout-app-navigation-bar-height, 3.75rem) + 1rem);
		inset-inline: 1rem;
		margin-inline: 0 auto;
	}
}

@media (min-width: 75em) {
	.app-cookie-consent-popup {
		inset-block: auto 1rem;
		margin-inline: calc((100vw - var(--x-ref-layout-content-width, 75rem)) / 2 + 0.25rem) auto;
	}
}

.app-cookie-consent-popup__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.app-cookie-consent-popup__actions > .x-button {
	flex: 1 0 auto;
}

/* End */


/* Start:/local/templates/ronc.site/styles.css?173098349433952*/
body[contenteditable="true"] .btn-spoiler {
	display: block;
	border: 1px solid lightgrey;
	width: 100%;
	text-align: left;
}

body[contenteditable="true"] .spoiler-content {
	display: block !important;
	border: 1px solid lightgrey;
	padding: 15px;
}


/* !!! НОВЫЕ СТИЛИ */

.x-prose {
	--x-prose-max-width: var(--x-comp-prose-max-width, 65ch);
	--x-prose-text-bold-color: var(--x-comp-prose-text-bold-color, inherit);
	--x-prose-text-bold-weight: var(--x-comp-prose-text-bold-weight, 600);
	--x-prose-text-color: var(--x-comp-prose-text-color, inherit);
	--x-prose-text-font: var(--x-comp-prose-text-font, inherit);
	--x-prose-text-letter-spacing: var(--x-comp-prose-text-letter-spacing, 0.03125em);
	--x-prose-text-line-height: var(--x-comp-prose-text-line-height, 1.75);
	--x-prose-text-size: var(--x-comp-prose-text-size, 1rem);
	--x-prose-paragraph-lead-margin-bottom: var(--x-comp-prose-paragraph-lead-margin-bottom, 1.2em);
	--x-prose-paragraph-lead-margin-top: var(--x-comp-prose-paragraph-lead-margin-top, 1.2em);
	--x-prose-paragraph-lead-opacity: var(--x-comp-prose-paragraph-lead-opacity, 0.87);
	--x-prose-paragraph-lead-text-color: var(--x-comp-prose-paragraph-lead-text-color, inherit);
	--x-prose-paragraph-lead-text-size: var(--x-comp-prose-paragraph-lead-text-size, 1.25em);
	--x-prose-paragraph-lead-text-letter-spacing: var(--x-comp-prose-paragraph-lead-text-letter-spacing, 0.025em);
	--x-prose-paragraph-lead-text-line-height: var(--x-comp-prose-paragraph-lead-text-line-height, 1.6);
	--x-prose-paragraph-lead-text-weight: var(--x-comp-prose-paragraph-lead-text-weight, inherit);
	--x-prose-paragraph-margin-bottom: var(--x-comp-prose-paragraph-margin-bottom, 1.25em);
	--x-prose-paragraph-margin-top: var(--x-comp-prose-paragraph-margin-top, 1.25em);
	--x-prose-link-hover-text-color: var(--x-comp-prose-link-hover-text-color, blue);
	--x-prose-link-hover-text-decoration: var(--x-comp-prose-link-hover-text-decoration, underline);
	--x-prose-link-text-color: var(--x-comp-prose-link-text-color, blue);
	--x-prose-link-text-decoration: var(--x-comp-prose-link-text-decoration, none);
	--x-prose-link-text-weight: var(--x-comp-prose-link-text-weight, 500);
	--x-prose-dt-text-color: var(--x-comp-prose-dt-text-color, inherit);
	--x-prose-dt-text-weight: var(--x-comp-prose-dt-text-weight, 600);
	--x-prose-dt-margin-top: var(--x-comp-prose-dt-margin-top, 1.25em);
	--x-prose-list-bullet-marker-color: var(--x-comp-prose-list-bullet-marker-color, inherit);
	--x-prose-list-counter-marker-color: var(--x-comp-prose-list-counter-marker-color, inherit);
	--x-prose-list-counter-marker-weight: var(--x-comp-prose-list-counter-marker-weight, 400);
	--x-prose-list-item-margin-bottom: var(--x-comp-prose-list-item-margin-bottom, 0.5em);
	--x-prose-list-item-margin-top: var(--x-comp-prose-list-item-margin-top, 0.5em);
	--x-prose-list-item-padding-inline-start: var(--x-comp-prose-list-item-padding-inline-start, 0.375em);
	--x-prose-list-margin-bottom: var(--x-comp-prose-list-margin-bottom, 1.25em);
	--x-prose-list-margin-top: var(--x-comp-prose-list-margin-top, 1.25em);
	--x-prose-list-padding-inline-start: var(--x-comp-prose-list-padding-inline-start, 1.625em);
	--x-prose-divider-color: var(--x-comp-prose-divider-color, inherit);
	--x-prose-divider-margin-bottom: var(--x-comp-prose-divider-margin-bottom, 3em);
	--x-prose-divider-margin-top: var(--x-comp-prose-divider-margin-top, 3em);
	--x-prose-divider-opacity: var(--x-comp-prose-divider-opacity, 1);
	--x-prose-divider-outline-style: var(--x-comp-prose-divider-outline-style, solid);
	--x-prose-divider-outline-width: var(--x-comp-prose-divider-outline-width, 0.0625em 0 0 0);
	--x-prose-blockquote-margin-bottom: var(--x-comp-prose-blockquote-margin-bottom, 1.5em);
	--x-prose-blockquote-margin-top: var(--x-comp-prose-blockquote-margin-top, 1.5em);
	--x-prose-blockquote-outline-color: var(--x-comp-prose-blockquote-outline-color, currentColor);
	--x-prose-blockquote-outline-style: var(--x-comp-prose-blockquote-outline-style, solid);
	--x-prose-blockquote-outline-width: var(--x-comp-prose-blockquote-outline-width, 0.25rem);
	--x-prose-blockquote-padding-inline-start: var(--x-comp-prose-blockquote-padding-inline-start, 1em);
	--x-prose-blockquote-quotes: var(--x-comp-prose-blockquote-quotes, « » “ ”);
	--x-prose-blockquote-text-color: var(--x-comp-prose-blockquote-text-color, inherit);
	--x-prose-blockquote-text-font: var(--x-comp-prose-blockquote-text-font, inherit);
	--x-prose-blockquote-text-style: var(--x-comp-prose-blockquote-text-style, italic);
	--x-prose-blockquote-text-weight: var(--x-comp-prose-blockquote-text-weight, 500);
	--x-prose-headline-level1-margin-bottom: var(--x-comp-prose-headline-level1-margin-bottom, 0.75em);
	--x-prose-headline-level1-margin-top: var(--x-comp-prose-headline-level1-margin-top, 0);
	--x-prose-headline-level1-strong-text-weight: var(--x-comp-prose-headline-level1-strong-text-weight, 900);
	--x-prose-headline-level1-text-color: var(--x-comp-prose-headline-level1-text-color, inherit);
	--x-prose-headline-level1-text-font: var(--x-comp-prose-headline-level1-text-font, inherit);
	--x-prose-headline-level1-text-letter-spacing: var(--x-comp-prose-headline-level1-text-letter-spacing, 0);
	--x-prose-headline-level1-text-line-height: var(--x-comp-prose-headline-level1-text-line-height, 1.25);
	--x-prose-headline-level1-text-size: var(--x-comp-prose-headline-level1-text-size, 2em);
	--x-prose-headline-level1-text-letter-case: var(--x-comp-prose-headline-level1-text-letter-case, none);
	--x-prose-headline-level1-text-weight: var(--x-comp-prose-headline-level1-text-weight, 400);
	--x-prose-headline-level2-margin-bottom: var(--x-comp-prose-headline-level2-margin-bottom, 0.85713em);
	--x-prose-headline-level2-margin-top: var(--x-comp-prose-headline-level2-margin-top, 1.7143em);
	--x-prose-headline-level2-strong-text-weight: var(--x-comp-prose-headline-level2-strong-text-weight, 800);
	--x-prose-headline-level2-text-color: var(--x-comp-prose-headline-level2-text-color, inherit);
	--x-prose-headline-level2-text-font: var(--x-comp-prose-headline-level2-text-font, inherit);
	--x-prose-headline-level2-text-letter-spacing: var(--x-comp-prose-headline-level2-text-letter-spacing, 0);
	--x-prose-headline-level2-text-line-height: var(--x-comp-prose-headline-level2-text-line-height, 1.285715);
	--x-prose-headline-level2-text-size: var(--x-comp-prose-headline-level2-text-size, 1.75em);
	--x-prose-headline-level2-text-letter-case: var(--x-comp-prose-headline-level2-text-letter-case, none);
	--x-prose-headline-level2-text-weight: var(--x-comp-prose-headline-level2-text-weight, 400);
	--x-prose-headline-level3-margin-bottom: var(--x-comp-prose-headline-level3-margin-bottom, 0.5em);
	--x-prose-headline-level3-margin-top: var(--x-comp-prose-headline-level3-margin-top, 1.33334em);
	--x-prose-headline-level3-strong-text-weight: var(--x-comp-prose-headline-level3-strong-text-weight, 700);
	--x-prose-headline-level3-text-color: var(--x-comp-prose-headline-level3-text-color, inherit);
	--x-prose-headline-level3-text-font: var(--x-comp-prose-headline-level3-text-font, inherit);
	--x-prose-headline-level3-text-letter-spacing: var(--x-comp-prose-headline-level3-text-letter-spacing, 0);
	--x-prose-headline-level3-text-line-height: var(--x-comp-prose-headline-level3-text-line-height, 1.3334);
	--x-prose-headline-level3-text-size: var(--x-comp-prose-headline-level3-text-size, 1.5em);
	--x-prose-headline-level3-text-letter-case: var(--x-comp-prose-headline-level3-text-letter-case, none);
	--x-prose-headline-level3-text-weight: var(--x-comp-prose-headline-level3-text-weight, 400);
	--x-prose-headline-level4-margin-bottom: var(--x-comp-prose-headline-level4-margin-bottom, 0.5em);
	--x-prose-headline-level4-margin-top: var(--x-comp-prose-headline-level4-margin-top, 1.33334em);
	--x-prose-headline-level4-strong-text-weight: var(--x-comp-prose-headline-level4-strong-text-weight, 700);
	--x-prose-headline-level4-text-color: var(--x-comp-prose-headline-level4-text-color, inherit);
	--x-prose-headline-level4-text-font: var(--x-comp-prose-headline-level4-text-font, inherit);
	--x-prose-headline-level4-text-letter-spacing: var(--x-comp-prose-headline-level4-text-letter-spacing, 0);
	--x-prose-headline-level4-text-line-height: var(--x-comp-prose-headline-level4-text-line-height, 1.273);
	--x-prose-headline-level4-text-size: var(--x-comp-prose-headline-level4-text-size, 1.375em);
	--x-prose-headline-level4-text-letter-case: var(--x-comp-prose-headline-level4-text-letter-case, none);
	--x-prose-headline-level4-text-weight: var(--x-comp-prose-headline-level4-text-weight, 400);
	--x-prose-media-margin-bottom: var(--x-comp-prose-media-margin-bottom, 2em);
	--x-prose-media-margin-top: var(--x-comp-prose-media-margin-top, 2em);
	--x-prose-caption-opacity: var(--x-comp-prose-caption-opacity, 0.6);
	--x-prose-caption-text-color: var(--x-comp-prose-caption-text-color, inherit);
	--x-prose-caption-text-letter-spacing: var(--x-comp-prose-caption-text-letter-spacing, 0.00625em);
	--x-prose-caption-text-line-height: var(--x-comp-prose-caption-text-line-height, 1.714288em);
	--x-prose-caption-text-margin-top: var(--x-comp-prose-caption-text-margin-top, 0.85712em);
	--x-prose-caption-text-size: var(--x-comp-prose-caption-text-size, 0.875em);
	--x-prose-caption-text-weight: var(--x-comp-prose-caption-text-weight, 500);
	--x-prose-table-cell-last-padding-inline-end: var(--x-comp-prose-table-cell-last-padding-inline-end, 0);
	--x-prose-table-cell-first-padding-inline-start: var(--x-comp-prose-table-cell-first-padding-inline-start, 0);
	--x-prose-table-cell-outline-width: var(--x-comp-prose-table-cell-outline-width, 0.0625rem);
	--x-prose-table-cell-padding: var(--x-comp-prose-table-cell-padding, 0.5714286em);
	--x-prose-table-margin-bottom: var(--x-comp-prose-table-margin-bottom, 2em);
	--x-prose-table-margin-top: var(--x-comp-prose-table-margin-top, 2em);
	--x-prose-table-text-align: var(--x-comp-prose-table-text-align, left);
	--x-prose-table-text-size: var(--x-comp-prose-table-text-size, 0.875em);
	--x-prose-table-text-line-height: var(--x-comp-prose-table-text-line-height, 1.7142857);
	--x-prose-table-thead-cell-first-padding-inline-start: var(--x-comp-prose-table-thead-cell-first-padding-inline-start, var(--x-prose-table-cell-first-padding-inline-start));
	--x-prose-table-thead-cell-last-padding-inline-end: var(--x-comp-prose-table-thead-cell-last-padding-inline-end, var(--x-prose-table-cell-last-padding-inline-end));
	--x-prose-table-thead-cell-text-color: var(--x-comp-prose-table-thead-cell-text-color, inherit);
	--x-prose-table-thead-cell-text-weight: var(--x-comp-prose-table-thead-cell-text-weight, 600);
	--x-prose-table-thead-cell-padding-bottom: var(--x-comp-prose-table-thead-cell-padding-bottom, var(--x-prose-table-cell-padding));
	--x-prose-table-thead-cell-padding-inline-end: var(--x-comp-prose-table-thead-cell-padding-inline-end, var(--x-prose-table-cell-padding));
	--x-prose-table-thead-cell-padding-inline-start: var(--x-comp-prose-table-thead-cell-padding-inline-start, var(--x-prose-table-cell-padding));
	--x-prose-table-thead-cell-padding-top: var(--x-comp-prose-table-thead-cell-padding-top, 0);
	--x-prose-table-thead-cell-vertical-align: var(--x-comp-prose-table-thead-cell-vertical-align, bottom);
	--x-prose-table-thead-outline-bottom-width: var(--x-comp-prose-table-thead-outline-bottom-width, var(--x-prose-table-cell-outline-width));
	--x-prose-table-thead-outline-color: var(--x-comp-prose-table-thead-outline-color, currentColor);
	--x-prose-table-thead-outline-inline-end-width: var(--x-comp-prose-table-thead-outline-inline-end-width, 0);
	--x-prose-table-thead-outline-inline-start-width: var(--x-comp-prose-table-thead-outline-inline-start-width, 0);
	--x-prose-table-thead-outline-style: var(--x-comp-prose-table-thead-outline-style, solid);
	--x-prose-table-thead-outline-top-width: var(--x-comp-prose-table-thead-outline-top-width, 0);
	--x-prose-table-tbody-row-last-outline-bottom-width: var(--x-comp-prose-table-tbody-row-last-outline-bottom-width, 0);
	--x-prose-table-tbody-row-outline-bottom-width: var(--x-comp-prose-table-tbody-row-outline-bottom-width, var(--x-prose-table-cell-outline-width));
	--x-prose-table-tbody-row-outline-color: var(--x-comp-prose-table-tbody-row-outline-color, currentColor);
	--x-prose-table-tbody-row-outline-inline-end-width: var(--x-comp-prose-table-tbody-row-outline-inline-end-width, 0);
	--x-prose-table-tbody-row-outline-inline-start-width: var(--x-comp-prose-table-tbody-row-outline-inline-start-width, 0);
	--x-prose-table-tbody-row-outline-style: var(--x-comp-prose-table-tbody-row-outline-style, solid);
	--x-prose-table-tbody-row-outline-top-width: var(--x-comp-prose-table-tbody-row-outline-top-width, 0);
	--x-prose-table-tbody-cell-padding-bottom: var(--x-comp-prose-table-tbody-cell-padding-bottom, var(--x-prose-table-cell-padding));
	--x-prose-table-tbody-cell-padding-inline-end: var(--x-comp-prose-table-tbody-cell-padding-inline-end, var(--x-prose-table-cell-padding));
	--x-prose-table-tbody-cell-padding-inline-start: var(--x-comp-prose-table-tbody-cell-padding-inline-start, var(--x-prose-table-cell-padding));
	--x-prose-table-tbody-cell-padding-top: var(--x-comp-prose-table-tbody-cell-padding-top, var(--x-prose-table-cell-padding));
	--x-prose-table-tbody-cell-first-padding-inline-start: var(--x-comp-prose-table-tbody-cell-first-padding-inline-start, var(--x-prose-table-cell-first-padding-inline-start));
	--x-prose-table-tbody-cell-last-padding-inline-end: var(--x-comp-prose-table-tbody-cell-last-padding-inline-end, var(--x-prose-table-cell-last-padding-inline-end));
	--x-prose-table-tbody-cell-vertical-align: var(--x-comp-prose-table-tbody-cell-vertical-align, baseline);
	--x-prose-table-tfoot-cell-vertical-align: var(--x-comp-prose-table-tfoot-cell-vertical-align, top);
	--x-prose-table-tfoot-outline-color: var(--x-comp-prose-table-tfoot-outline-color, currentColor);
	--x-prose-table-tfoot-outline-style: var(--x-comp-prose-table-tfoot-outline-style, solid);
	--x-prose-table-tfoot-outline-bottom-width: var(--x-comp-prose-table-tfoot-outline-bottom-width, 0);
	--x-prose-table-tfoot-outline-inline-end-width: var(--x-comp-prose-table-tfoot-outline-inline-end-width, 0);
	--x-prose-table-tfoot-outline-inline-start-width: var(--x-comp-prose-table-tfoot-outline-inline-start-width, 0);
	--x-prose-table-tfoot-outline-top-width: var(--x-comp-prose-table-tfoot-outline-top-width, var(--x-prose-table-cell-outline-width));
}

.x-prose {
	color: var(--x-prose-text-color);
	font-family: var(--x-prose-text-font);
	font-size: var(--x-prose-text-size);
	letter-spacing: var(--x-prose-text-letter-spacing);
	line-height: var(--x-prose-text-line-height);
	max-width: var(--x-prose-max-width);
}

.x-prose :where(p):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-bottom: var(--x-prose-paragraph-margin-bottom);
	margin-top: var(--x-prose-paragraph-margin-top);
}

.x-prose :where([class~=lead]):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: var(--x-prose-paragraph-lead-text-color);
	font-size: var(--x-prose-paragraph-lead-text-size);
	font-weight: var(--x-prose-paragraph-lead-text-weight);
	letter-spacing: var(--x-prose-paragraph-lead-text-letter-spacing);
	line-height: var(--x-prose-paragraph-lead-text-line-height);
	margin-bottom: var(--x-prose-paragraph-lead-margin-bottom);
	margin-top: var(--x-prose-paragraph-lead-margin-top);
	opacity: var(--x-prose-paragraph-lead-opacity);
}

.x-prose :where(a):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: var(--x-prose-link-text-color);
	font-weight: var(--x-prose-link-text-weight);
	text-decoration: var(--x-prose-link-text-decoration);
}

.x-prose :where(a):not(:where([class~=not-x-prose], [class~=not-x-prose] *)):hover {
	color: var(--x-prose-link-hover-text-color);
	text-decoration: var(--x-prose-link-hover-text-decoration);
}

.x-prose :where(strong):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: var(--x-prose-text-bold-color);
	font-weight: var(--x-prose-text-bold-weight);
}

.x-prose :where(a strong):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: inherit;
}

.x-prose :where(blockquote strong):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: inherit;
}

.x-prose :where(thead th strong):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: inherit;
}

.x-prose :where(ol):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	list-style-type: decimal;
	margin-bottom: var(--x-prose-list-margin-bottom);
	margin-top: var(--x-prose-list-margin-top);
	padding-inline-start: var(--x-prose-list-padding-inline-start);
}

.x-prose :where(ol[type=A]):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	list-style-type: upper-alpha;
}

.x-prose :where(ol[type=a]):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	list-style-type: lower-alpha;
}

.x-prose :where(ol[type=A s]):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	list-style-type: upper-alpha;
}

.x-prose :where(ol[type=a s]):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	list-style-type: lower-alpha;
}

.x-prose :where(ol[type=I]):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	list-style-type: upper-roman;
}

.x-prose :where(ol[type=i]):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	list-style-type: lower-roman;
}

.x-prose :where(ol[type=I s]):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	list-style-type: upper-roman;
}

.x-prose :where(ol[type=i s]):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	list-style-type: lower-roman;
}

.x-prose :where(ol[type="1"]):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	list-style-type: decimal;
}

.x-prose :where(ul):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	list-style-type: disc;
	margin-bottom: var(--x-prose-list-margin-bottom);
	margin-top: var(--x-prose-list-margin-top);
	padding-inline-start: var(--x-prose-list-padding-inline-start);
}

.x-prose :where(ol > li):not(:where([class~=not-x-prose], [class~=not-x-prose] *))::marker {
	color: var(--x-prose-list-counter-marker-color);
	font-weight: var(--x-prose-list-counter-marker-weight);
}

.x-prose :where(ul > li):not(:where([class~=not-x-prose], [class~=not-x-prose] *))::marker {
	color: var(--x-prose-list-bullet-marker-color);
}

.x-prose :where(dt):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: var(--x-prose-dt-text-color);
	font-weight: var(--x-prose-dt-text-weight);
	margin-top: var(--x-prose-dt-margin-top);
}

.x-prose :where(li):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-bottom: var(--x-prose-list-item-margin-bottom);
	margin-top: var(--x-prose-list-item-margin-top);
}

.x-prose :where(ol > li):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	padding-inline-start: var(--x-prose-list-item-padding-inline-start);
}

.x-prose :where(ul > li):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	padding-inline-start: var(--x-prose-list-item-padding-inline-start);
}

.x-prose :where(.x-prose > ul > li p):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-bottom: 0.75em;
	margin-top: 0.75em;
}

.x-prose :where(.x-prose > ul > li > *:first-child):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-top: var(--x-prose-list-margin-top);
}

.x-prose :where(.x-prose > ul > li > *:last-child):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-bottom: var(--x-prose-list-margin-bottom);
}

.x-prose :where(.x-prose > ol > li > *:first-child):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-top: var(--x-prose-list-margin-top);
}

.x-prose :where(.x-prose > ol > li > *:last-child):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-bottom: var(--x-prose-list-margin-bottom);
}

.x-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-bottom: calc(var(--x-prose-list-margin-bottom) - var(--x-prose-list-item-margin-bottom));
	margin-top: calc(var(--x-prose-list-margin-top) - var(--x-prose-list-item-margin-top));
}

.x-prose :where(dl):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-bottom: var(--x-prose-list-margin-bottom);
	margin-top: var(--x-prose-list-margin-top);
}

.x-prose :where(dd):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-top: var(--x-prose-list-item-margin-top);
	padding-inline-start: var(--x-prose-list-padding-inline-start);
}

.x-prose :where(hr):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	border-style: var(--x-prose-divider-outline-style);
	border-width: var(--x-prose-divider-outline-width);
	color: var(--x-prose-divider-color);
	margin-bottom: var(--x-prose-divider-margin-bottom);
	margin-top: var(--x-prose-divider-margin-top);
	max-height: 0;
	opacity: var(--x-prose-divider-opacity);
}

.x-prose :where(blockquote):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	border-inline-start-color: var(--x-prose-blockquote-outline-color);
	border-inline-start-style: var(--x-prose-blockquote-outline-style);
	border-inline-start-width: var(--x-prose-blockquote-outline-width);
	color: var(--x-prose-blockquote-text-color);
	font-family: var(--x-prose-blockquote-text-font);
	font-style: var(--x-prose-blockquote-text-style);
	font-weight: var(--x-prose-blockquote-text-weight);
	margin-bottom: var(--x-prose-blockquote-margin-bottom);
	margin-top: var(--x-prose-blockquote-margin-top);
	padding-inline-start: var(--x-prose-blockquote-padding-inline-start);
	quotes: var(--x-prose-blockquote-quotes);
}

.x-prose :where(blockquote p:first-of-type):not(:where([class~=not-x-prose], [class~=not-x-prose] *))::before {
	content: open-quote;
}

.x-prose :where(blockquote p:last-of-type):not(:where([class~=not-x-prose], [class~=not-x-prose] *))::after {
	content: close-quote;
}

.x-prose :where(h1):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: var(--x-prose-headline-level1-text-color);
	font-family: var(--x-prose-headline-level1-text-font);
	font-size: var(--x-prose-headline-level1-text-size);
	font-weight: var(--x-prose-headline-level1-text-weight);
	letter-spacing: var(--x-prose-headline-level1-text-letter-spacing);
	line-height: var(--x-prose-headline-level1-text-line-height);
	margin-bottom: var(--x-prose-headline-level1-margin-bottom);
	margin-top: var(--x-prose-headline-level1-margin-top);
	text-transform: var(--x-prose-headline-level1-text-letter-case);
}

.x-prose :where(h1 strong):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: inherit;
	font-weight: var(--x-prose-headline-level1-strong-text-weight);
}

.x-prose :where(h2):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: var(--x-prose-headline-level2-text-color);
	font-family: var(--x-prose-headline-level2-text-font);
	font-size: var(--x-prose-headline-level2-text-size);
	font-weight: var(--x-prose-headline-level2-text-weight);
	letter-spacing: var(--x-prose-headline-level2-text-letter-spacing);
	line-height: var(--x-prose-headline-level2-text-line-height);
	margin-bottom: var(--x-prose-headline-level2-margin-bottom);
	margin-top: var(--x-prose-headline-level2-margin-top);
	text-transform: var(--x-prose-headline-level2-text-letter-case);
}

.x-prose :where(h2 strong):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: inherit;
	font-weight: var(--x-prose-headline-level2-strong-text-weight);
}

.x-prose :where(h3):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: var(--x-prose-headline-level3-text-color);
	font-family: var(--x-prose-headline-level3-text-font);
	font-size: var(--x-prose-headline-level3-text-size);
	font-weight: var(--x-prose-headline-level3-text-weight);
	letter-spacing: var(--x-prose-headline-level3-text-letter-spacing);
	line-height: var(--x-prose-headline-level3-text-line-height);
	margin-bottom: var(--x-prose-headline-level3-margin-bottom);
	margin-top: var(--x-prose-headline-level3-margin-top);
	text-transform: var(--x-prose-headline-level3-text-letter-case);
}

.x-prose :where(h3 strong):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: inherit;
	font-weight: var(--x-prose-headline-level3-strong-text-weight);
}

.x-prose :where(h4):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: var(--x-prose-headline-level4-text-color);
	font-family: var(--x-prose-headline-level4-text-font);
	font-size: var(--x-prose-headline-level4-text-size);
	font-weight: var(--x-prose-headline-level4-text-weight);
	letter-spacing: var(--x-prose-headline-level4-text-letter-spacing);
	line-height: var(--x-prose-headline-level4-text-line-height);
	margin-bottom: var(--x-prose-headline-level4-margin-bottom);
	margin-top: var(--x-prose-headline-level4-margin-top);
	text-transform: var(--x-prose-headline-level4-text-letter-case);
}

.x-prose :where(h4 strong):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: inherit;
	font-weight: var(--x-prose-headline-level4-strong-text-weight);
}

.x-prose :where(img):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-bottom: var(--x-prose-media-margin-bottom);
	margin-top: var(--x-prose-media-margin-top);
}

.x-prose :where(picture):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	display: block;
	margin-bottom: var(--x-prose-media-margin-bottom);
	margin-top: var(--x-prose-media-margin-top);
}

.x-prose :where(picture > img):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-bottom: 0;
	margin-top: 0;
}

.x-prose :where(video):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-bottom: var(--x-prose-media-margin-bottom);
	margin-top: var(--x-prose-media-margin-top);
}

.x-prose :where(figure):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-bottom: var(--x-prose-media-margin-bottom);
	margin-top: var(--x-prose-media-margin-top);
}

.x-prose :where(figure > *):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-bottom: 0;
	margin-top: 0;
}

.x-prose :where(figcaption):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: var(--x-prose-caption-text-color);
	font-size: var(--x-prose-caption-text-size);
	font-weight: var(--x-prose-caption-text-weight);
	letter-spacing: var(--x-prose-caption-text-letter-spacing);
	line-height: var(--x-prose-caption-text-line-height);
	margin-top: var(--x-prose-caption-text-margin-top);
	opacity: var(--x-prose-caption-opacity);
}

.x-prose :where(kbd):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	border-radius: 0.3125rem;
	box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows)/0.1), 0 3px 0 rgb(var(--tw-prose-kbd-shadows)/0.1);
	color: var(--tw-prose-kbd);
	font-family: inherit;
	font-size: 0.875em;
	font-weight: 500;
	padding-bottom: 0.1875em;
	padding-left: 0.375em;
	padding-right: 0.375em;
	padding-top: 0.1875em;
}

.x-prose :where(code):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: var(--tw-prose-code);
	font-size: 0.875em;
	font-weight: 600;
}

.x-prose :where(code):not(:where([class~=not-x-prose], [class~=not-x-prose] *))::before {
	content: "`";
}

.x-prose :where(code):not(:where([class~=not-x-prose], [class~=not-x-prose] *))::after {
	content: "`";
}

.x-prose :where(a code):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: inherit;
}

.x-prose :where(h1 code):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: inherit;
}

.x-prose :where(h2 code):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: inherit;
	font-size: 0.875em;
}

.x-prose :where(h3 code):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: inherit;
	font-size: 0.9em;
}

.x-prose :where(h4 code):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: inherit;
}

.x-prose :where(blockquote code):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: inherit;
}

.x-prose :where(thead th code):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: inherit;
}

.x-prose :where(pre):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	background-color: var(--tw-prose-pre-bg);
	border-radius: 0.375rem;
	color: var(--tw-prose-pre-code);
	font-size: 0.875em;
	font-weight: 400;
	line-height: 1.7142857;
	margin-bottom: 1.7142857em;
	margin-top: 1.7142857em;
	overflow-x: auto;
	padding-bottom: 0.8571429em;
	padding-left: 1.1428571em;
	padding-right: 1.1428571em;
	padding-top: 0.8571429em;
}

.x-prose :where(pre code):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	background-color: transparent;
	border-radius: 0;
	border-width: 0;
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	padding: 0;
}

.x-prose :where(pre code):not(:where([class~=not-x-prose], [class~=not-x-prose] *))::before {
	content: none;
}

.x-prose :where(pre code):not(:where([class~=not-x-prose], [class~=not-x-prose] *))::after {
	content: none;
}

.x-prose :where(table):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	font-size: var(--x-prose-table-text-size);
	line-height: var(--x-prose-table-text-line-height);
	margin-bottom: var(--x-prose-table-margin-bottom);
	margin-top: var(--x-prose-table-margin-top);
	table-layout: auto;
	text-align: var(--x-prose-table-text-align);
	width: 100%;
}

.x-prose :where(thead):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	border-bottom-width: var(--x-prose-table-thead-outline-bottom-width);
	border-color: var(--x-prose-table-thead-outline-color);
	border-inline-end-width: var(--x-prose-table-thead-outline-inline-end-width);
	border-inline-start-width: var(--x-prose-table-thead-outline-inline-start-width);
	border-style: var(--x-prose-table-thead-outline-style);
	border-top-width: var(--x-prose-table-thead-outline-top-width);
}

.x-prose :where(thead th):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	color: var(--x-prose-table-thead-cell-text-color);
	font-weight: var(--x-prose-table-thead-cell-text-weight);
	padding-bottom: var(--x-prose-table-thead-cell-padding-bottom);
	padding-inline-end: var(--x-prose-table-thead-cell-padding-inline-end);
	padding-inline-start: var(--x-prose-table-thead-cell-padding-inline-start);
	padding-top: var(--x-prose-table-thead-cell-padding-top);
	vertical-align: var(--x-prose-table-thead-cell-vertical-align);
}

.x-prose :where(thead th:first-child):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	padding-inline-start: var(--x-prose-table-thead-cell-first-padding-inline-start);
}

.x-prose :where(thead th:last-child):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	padding-inline-end: var(--x-prose-table-thead-cell-last-padding-inline-end);
}

.x-prose :where(tbody tr):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	border-bottom-width: var(--x-prose-table-tbody-row-outline-bottom-width);
	border-color: var(--x-prose-table-tbody-row-outline-color);
	border-inline-end-width: var(--x-prose-table-tbody-row-outline-inline-end-width);
	border-inline-start-width: var(--x-prose-table-tbody-row-outline-inline-start-width);
	border-style: var(--x-prose-table-tbody-row-outline-style);
	border-top-width: var(--x-prose-table-tbody-row-outline-top-width);
}

.x-prose :where(tbody tr:last-child):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	border-bottom-width: var(--x-prose-table-tbody-row-last-outline-bottom-width);
}

.x-prose :where(tbody td):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	vertical-align: var(--x-prose-table-tbody-cell-vertical-align);
}

.x-prose :where(tfoot):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	border-bottom-width: var(--x-prose-table-tfoot-outline-bottom-width);
	border-color: var(--x-prose-table-tfoot-outline-color);
	border-inline-end-width: var(--x-prose-table-tfoot-outline-inline-end-width);
	border-inline-start-width: var(--x-prose-table-tfoot-outline-inline-start-width);
	border-style: var(--x-prose-table-tfoot-outline-style);
	border-top-width: var(--x-prose-table-tfoot-outline-top-width);
}

.x-prose :where(tfoot td):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	vertical-align: var(--x-prose-table-tfoot-cell-vertical-align);
}

.x-prose :where(tbody td, tfoot td):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	padding-bottom: var(--x-prose-table-tbody-cell-padding-bottom);
	padding-inline-end: var(--x-prose-table-tbody-cell-padding-inline-end);
	padding-inline-start: var(--x-prose-table-tbody-cell-padding-inline-start);
	padding-top: var(--x-prose-table-tbody-cell-padding-top);
}

.x-prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	padding-inline-start: var(--x-prose-table-tbody-cell-first-padding-inline-start);
}

.x-prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	padding-inline-end: var(--x-prose-table-tbody-cell-last-padding-inline-end);
}

.x-prose :where(hr + *):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-top: 0;
}

.x-prose :where(h1 + *):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-top: 0;
}

.x-prose :where(h2 + *):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-top: 0;
}

.x-prose :where(h3 + *):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-top: 0;
}

.x-prose :where(h4 + *):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-top: 0;
}

.x-prose :where(.x-prose > :first-child):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-top: 0;
}

.x-prose :where(.x-prose > :last-child):not(:where([class~=not-x-prose], [class~=not-x-prose] *)) {
	margin-bottom: 0;
}

/* End */


/* Start:/local/templates/ronc.site/template_styles.css?175285065428665*/
/*html {
    -webkit-font-smoothing: antialiased;
}*/
/*body {
    font-family: 'PT Root UI', 'PT Sans';
    color: #220F24;
    line-height: 1.3;
    font-size: 16px;

    /~display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    min-height: 100vh;
    height: 1px;~/
}*/

/***** google translate panel ********/
a.gflag {
	vertical-align: middle;
	font-size: 24px;
	padding: 0px 0;
	background-repeat: no-repeat;
	background-image: url(//gtranslate.net/flags/24.png);
}

a.gflag img {
	border: 0;
}

a.gflag:hover {
	background-image: url(//gtranslate.net/flags/24a.png);
}

#goog-gt-tt {
	display: none !important;
}

.goog-te-banner-frame {
	display: none !important;
}

.goog-te-menu-value:hover {
	text-decoration: none !important;
}

body {
	top: 0 !important;
}

#google_translate_element2 {
	display: none !important;
}

h1,
.h1 {
	font-size: 26px;
	font-weight: 700;
	/*line-height: 100%;*/
	margin-bottom: 24px;
}

h2,
.h2 {
	font-weight: 500;
	font-size: 22px;
	/*line-height: 100%;*/
	margin-bottom: 16px;
}

h3 {
	font-weight: 500;
	font-size: 20px;
	margin-bottom: 11px;
}

.content h3 {
	margin-top: 30px;
	margin-bottom: 20px;
}

h4 {
	font-size: 24px;
	line-height: 29px;
	margin-bottom: 5px;
}

a,
a:hover,
a:focus {
	color: inherit;
	text-decoration: none;
}

p a {
	color: #135A9E;
}

*,
*:hover,
*:focus {
	outline: none !important;
}

.content {
	font-size: 16px;
	line-height: 1.5;
}

blockquote {
	padding: 0 30px 0 70px;
	font-style: italic;
	margin: 0;
	line-height: 1.5em;
	border-left: 2px solid #000;
	padding-left: 18px;
	margin-top: 28px;
	margin-bottom: 28px;
}

.gray {
	opacity: 0.6;
}

.black {
	color: #000 !important;
}

.white {
	color: #fff;
}

.pink {
	color: #EC6555;
}

.lightgray {
	opacity: 0.32;
}

.green {
	color: #02B23E;
}

.blue {
	color: #3EA3DC;
}

a.blue {
	color: #3EA3DC !important;
}

.red {
	color: #ff0000;
}

.font-8 {
	font-size: 8px;
}

.font-10 {
	font-size: 10px;
}

.font-11 {
	font-size: 11px;
}

.font-12 {
	font-size: 12px !important;
}

.font-13 {
	font-size: 13px;
}

.font-14 {
	font-size: 14px;
}

.font-16 {
	font-size: 16px;
}

.font-18 {
	font-size: 18px;
}

.font-20 {
	font-size: 20px;
}

.font-24 {
	font-size: 24px;
}

.font-32 {
	font-size: 32px !important;
}

.font-48 {
	font-size: 48px !important;
}

.font-88 {
	font-size: 88px;
}

.strong,
.weight-700 {
	font-weight: 700;
}

.weight-600 {
	font-weight: 600;
}

.weight-500 {
	font-weight: 500;
}

.weight-400 {
	font-weight: 400;
}

.weight-100 {
	font-weight: 100;
}

.uppercase {
	text-transform: uppercase;
}

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

.socnet {
	align-items: center;
	flex-wrap: wrap;
	margin-left: -4px;
	margin-right: -4px;
}

.socnet > a {
	display: inline-block;
	background: rgba(28, 43, 67, 0.08);
	width: 28px;
	height: 28px;
	border-radius: 18px;
	color: rgba(28, 43, 67, 0.48);
	text-align: center;
	line-height: 28px;
	margin: 4px;
	font-size: 14px;
}

/*
.socnet > a.m {
    background-color: #3b5998;
}
.socnet > a.f {
    background-color: #3b5998;
}
.socnet > a.v {
    background-color: #4c6c91;
}
.socnet > a.o {
    background-color: #f68634;
}
.socnet > a.t {
    background-color: #55acee;
}
.socnet > a.i {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.socnet > a.tg {background-color: #0088cc;}
.socnet > a.y {background-color: #ff0000;}
.socnet > a.l {background-color: #0077b5;}
.socnet > a.p {background-color: #bd081c;}
.socnet > a.r {background-color: #ff4500;}
*/
.slick-dots {
	position: absolute;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
	bottom: 15px;
	flex-wrap: wrap;
	height: 8px;
	overflow: hidden;
}

.slick-dots > li {
	width: 8px;
	height: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #d6d6d6;
	margin: 0 4px;
	border-radius: 5px;
}

.slick-dots > li > button {
	text-indent: -9999px;
	background: #ffffff;
	width: 6px;
	border: none;
	margin: 0;
	height: 6px;
	border-radius: 10px;
	font-size: 0;
	display: block;
	padding: 0;
	cursor: pointer;
}

.slick-dots > li.slick-active > button {
	background: #3ea3dc;
	border-color: #3489b9;
}

.slick-prev.slick-arrow,
.slick-next.slick-arrow {
	position: absolute;
	top: 50%;
	background: transparent;
	height: 48px;
	width: 48px;
	margin-top: -24px;
	border: none;
	z-index: 9;
	text-indent: -9999px;
	cursor: pointer;
	border-radius: 30px;
	/*box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);*/
	outline: none !important;
}

.dark-theme .slick-prev.slick-arrow,
.dark-theme .slick-next.slick-arrow {
	background: rgba(0, 0, 0, 0.2);
}

.slick-prev.slick-arrow {
	left: -30px;
}

.slick-next.slick-arrow {
	right: -30px;
}

.slick-prev.slick-arrow:after,
.slick-next.slick-arrow:after {
	content: '';
	display: block;
	border-left: 3px solid rgba(0, 0, 0, 0.16);
	border-top: 3px solid rgba(0, 0, 0, 0.16);
	;
	width: 32px;
	height: 32px;
	position: absolute;
	top: 8px;
	left: 8px;
}

.slick-prev.slick-arrow:after {
	transform: rotate(315deg);
}

.slick-next.slick-arrow:after {
	transform: rotate(135deg);
}

[class*=border-] {
	border-color: rgba(0, 0, 0, 0.16) !important;
}

.gray-bg {
	background: #f6f6f6;
}

.gray-area {
	border-radius: 16px;
	background: #f6f6f6;
}

.lightgray-bg {
	background: rgba(28, 43, 67, 0.04);
}

.darkgray-bg {
	background: rgba(28, 43, 67, 0.16);
}

.white-bg {
	background: #FFFFFF;
}

.bx-breadcrumb {
	/*display: flex;
    flex-wrap: nowrap;
    */
	padding: 0px 0 8px;
	font-size: 14px;
	font-weight: 400;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
}

.bx-breadcrumb-item {
	margin-right: 5px;
	/*overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;*/
	display: inline;
}

.bx-breadcrumb-item > a,
.bx-breadcrumb-item > span {
	color: #3EA3DC;
	white-space: nowrap;
}

/*.ymaps-layers-pane{
    filter: grayscale(100%);
    filter: url(/img/filters.svg#grayscale);
    -webkit-filter: grayscale(1);
}
.ymaps-point-overlay > ymaps > .ymaps-image-with-content {
    background-image: url(/images/ico-map-point.png) !important;
}*/

.btn-light {
	background-color: #fff;
	border-color: #EBEBEB;
}

.white .btn-light {
	background-color: transparent;
	border-color: rgba(255, 255, 255, 0.32);
	color: #fff;
}

.btn-lightgray {
	color: #2C69DE;
	background: #EBEBEB;
	border-color: #EBEBEB;
}

.btn-primary {
	background-color: #3EA3DC;
	border-color: #3EA3DC;
}

.btn-primary1 {
	background-color: #EC6555;
	border-color: #EC6555;
	color: #FFFFFF;
}





.btn-outline-primary {
	color: #3EA3DC;
	border-color: #3EA3DC;
}

.btn-outline-primary:hover {
	background-color: #3EA3DC;
	border-color: #3EA3DC;
}

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

.api_error {
	color: red;
	font-size: 14px;
	margin-bottom: 5px;
}

.white-area {
	background: #FFFFFF;
	box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.16);
	border-radius: 8px;
	padding: 32px;
}


.dropdown-select-lang .dropdown-menu {
	min-width: 50px;
	width: 100%;
}

.dropdown-select-lang .btn {
	box-shadow: none !important;
}

.dropdown-select-lang .dropdown-item {
	padding: .375rem .75rem;
}

.header-search-form {
	width: 32px;
	height: 32px;
	position: relative;
}

.header-search-text {
	height: 32px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	background: none !important;
	z-index: 1;
	background-clip: padding-box !important;
}

.header-search-submit {
	height: 100%;
	position: absolute;
	left: 0;
	right: 0;
	padding: 3px;
	border: none;
	background: none;
}

.header-search-text,
.header-search-submit {
	border: none !important;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.header-search-text:focus {
	left: -260px;
	width: 292px;
	background: #fff !important;
}

.header-search-text:focus + .header-search-submit,
.header-search-submit:focus {
	z-index: 2;
}

.switch-lang {
	height: 24px;
	background: rgba(28, 43, 67, 0.08);
	border: none;
	border-radius: 3px;
	font-size: 13px;
	font-weight: 500;
	padding: 0 5px 0 7px;
}

.search-form {
	display: flex;
	align-items: center;
}

.search-text {
	height: 33px;
	border: none;
	background: none !important;
	box-shadow: none !important;
	z-index: 1;
	background-clip: padding-box !important;
	flex-grow: 2;
	padding-left: 10px;
	inline-size: 50px;
}

.search-submit {
	height: 100%;
	border: none;
	background: none;
	font-size: 16px;
}

.search-text,
.search-submit {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.mw-50vw {
	max-width: 50vw;
}

.popover {
	max-width: 50vw;
}

/*****************************************/
.menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

#old-header {
	background: #fff;
	box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.08);
	font-size: 13px;
	/*  -webkit-transition: all 0.3s ease-out ;
    -moz-transition: all 0.3s ease-out ;
    -o-transition: all 0.3s ease-out ;
    transition: all 0.3s ease-out ;*/
	position: relative;
	z-index: 1000;
}

body.is-scrolled #old-header {
	position: -webkit-sticky;
	position: sticky !important;
	top: 0;
	z-index: 9999;
}

body.is-scrolled .header-top,
body.is-scrolled .header-bottom {
	display: none !important;
}

.navbar-collapse {
	padding: 16px;
	max-height: calc(100vh - 96px);
	overflow: auto;
}

.navbar-collapse .menu,
.navbar-collapse .menu ul {
	list-style: none;
	font-size: 18px;
}

.navbar-collapse .menu.secondary-menu {
	flex-direction: column;
	align-items: start;
	margin-top: 15px;
	margin-bottom: 15px;
	line-height: 1.2em;
}

.navbar-collapse li > a {
	padding-top: 2px;
	padding-bottom: 3px;
	display: block;
}

.header-top {
	background: #EDEEF0;
	padding: 12px 0;
	font-size: 13px;
	color: #1C2B43;
}

.bvi-open > img {
	vertical-align: text-top;
}

.dropdown-select-lang > .btn {
	background: rgba(28, 43, 67, 0.08);
	padding: 2px 5px;
	line-height: 18px;
}

.header-top {}

.header-bottom {
	box-shadow: inset 0px 1px 0px rgba(0, 0, 0, 0.08);
}

.navbar-nav {
	flex-direction: row;
	justify-content: space-around;
	padding-bottom: 20px;
}

.navbar-nav .nav-link {
	font-weight: bold;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 15px 30px;
}

.navbar-nav .nav-item > ul {
	display: none;
	position: absolute;
	background: #FFFFFF;
	box-shadow: 0px 16px 48px rgba(28, 43, 67, 0.32);
	border-radius: 4px;
	padding: 8px 0;
	list-style: none;
	margin: 0px;
	border-radius: 4px;
	z-index: 99;

}




.navbar-nav .nav-item:hover > ul {
	display: block;
}

.navbar-nav .nav-item > ul .nav-link {
	padding: 7px 24px;
	text-transform: none;
	font-weight: 500;
	font-size: 16px;
}

.navbar-nav .nav-item > ul .nav-link.promo {
	color: #000;
}

.navbar-nav .nav-item > ul .nav-link:hover {
	background: rgba(62, 163, 220, 0.16);
}

.navbar-light .navbar-toggler {
	border-color: transparent !important;
}

.navbar-nav > li > a {

	box-shadow: 0px 12px 20px #d1d8dd;
	border-radius: 10px;
	color: #0054a5;

}

/*
.stretched-link::after {

	box-shadow: 0px 12px 20px #d1d8dd;
} */






.menu.secondary-menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.menu.secondary-menu a {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	background: no-repeat url(/images/ico-bottom-menu-1.svg) left center;
	padding-left: 20px;
}

.menu.secondary-menu > li:nth-child(1) > a {
	background-image: url(/images/ico-bottom-menu-1.svg);
}

.menu.secondary-menu > li:nth-child(2) > a {
	background-image: url(/images/ico-bottom-menu-2.svg);
}

.menu.secondary-menu > li:nth-child(3) > a {
	background-image: url(/images/ico-bottom-menu-3.svg);
}

.menu.secondary-menu > li:nth-child(4) > a {
	background-image: url(/images/ico-bottom-menu-4.svg);
}

.menu.secondary-menu > li:nth-child(5) > a {
	/* Телемедицина */
	/* background-image: url(/images/ico-bottom-menu-5.svg); */
	/* Вылечено в России */
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbDpzcGFjZT0icHJlc2VydmUiIHZpZXdCb3g9IjAgMCAyNCAyNCI+CiAgPHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZWM2NTU1IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41IiBkPSJtNy4zIDcuOC0yLjEtLjZoLS4xTDMgOC41bC0uMS4xLTEuMSA0LjVjMCAuMSAwIC4yLjEuMmwuOC4zYy4xIDAgLjIuMS4xLjNMMi4zIDE1di4xbC41IDEuOWMwIC4xLjIuMi4zLjFsMS40LTEuNC4xLS4xdi0uNWMwLS4xLjEtLjIuMi0uMmwyLjcuMmMuMSAwIC4xIDAgLjEuMWwuOCAxYzAgLjEuMS4xLjIuMWwxLjctLjRjLjEgMCAuMSAwIC4yLjFsMi41IDIuNnMuMS4xLjIuMWw1LTFjLjEgMCAuMS0uMS4xLS4xbC41LTEuMmMwLS4xLjEtLjEuMS0uMWwxLS4yYy4xIDAgLjEgMCAuMi4xbC45IDEuM2MuMS4xLjMuMS4zIDBsLjQtLjh2LS4xbC0uNy0yYzAtLjEtLjEtLjEtLjItLjFsLTEuMi0uMWMtLjEgMC0uMi0uMS0uMi0uMmwtLjEtMS44YzAtLjEgMC0uMS4xLS4ybDEuNy0xLjJzMCAwIDAgMGwxLTEuMXMuMS0uMSAwLS4xbC0uNS0zLjRjMC0uMi0uMi0uMi0uMy0uMWwtMS45IDItLjEuMS0zLjguNU03LjMgNi44YzAtMi44IDMuMy0zIDQuMi0uOC45LTIuMiA0LjItMS45IDQuMi44cy00LjIgNi4xLTQuMiA2LjEtNC4yLTMuMy00LjItNi4xeiIvPgo8L3N2Zz4K);
	background-size: 1rem;
}

.menu.secondary-menu > li:nth-child(6) > a {
	background-image: url(/images/ico-bottom-menu-6.svg);
}

.menu.secondary-menu > li:nth-child(7) > a {
	background-image: url(/images/ico-bottom-menu-7.svg);
}

.menu.secondary-menu > li:nth-child(8) > a {
	background-image: url(/images/ico-bottom-menu-8.svg);
}

.page-main {
	padding-top: 34px;
}




footer {
	background: #131d2d;
	font-size: 13px;
	text-align: center;
	color: rgba(255, 255, 255, 0.32);
}

.bottom-contacts-area {
	background: #1C2B43;
	color: #fff;
}

.bottom-contacts-area a {

	color: #fff;
}

.bottom-contacts-area a:hover {

	color: #bdbdbd;
}


.contact-map .bx-yandex-map,
.contact-map .ymaps-map {
	width: 100% !important;
}

.index-slider {
	display: flex;
}

.index-slider.slick-slider {
	display: block;
}

.index-slider-item {
	height: 470px;
	background-position: center;
	background-size: cover;
	display: flex !important;
	align-items: center;
}

.index-slide-item-html {}

.slide-label {
	background: #EC6555;
	display: inline-block;
	padding: 8px 16px 7px;
	font-weight: 500;
	font-size: 16px;
	line-height: 106%;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: #FFFFFF;
	margin-bottom: 14px;
}

.slide-title {
	font-size: 40px;
	line-height: 106%;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.slide-ul {
	font-weight: 500;
	font-size: 14px;
	line-height: 106%;
	text-transform: uppercase;
	list-style: none;
	margin: 0;
	padding: 0;
}

.slide-ul > li {
	padding-left: 15px;
	position: relative;
	margin-bottom: 10px;
}

.slide-ul > li:before {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	background: #EC6555;
	border-radius: 5px;
	top: 3px;
	left: 0;
}

.index-slide-item-html,
.index-slide-item-text {
	margin-bottom: 20px;
}

.secondary-slider {
	display: flex;
	margin: 0 -12px;
	padding: 0 12px;
}

.secondary-slider.slick-slider {
	display: block;
}

.secondary-slider-item {
	padding: 0 12px;
}

.secondary-slider-img {
	display: block;
	margin-bottom: 10px;
	width: 100%;
}

.secondary-slider-title {
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0.02em;
}

.secondary-slider .slick-dots {
	bottom: -24px;
}

.blueblock-arrow-slider.slick-slider {
	position: static;
}

.blueblock-arrow-slider .slick-arrow {
	background: #3EA3DC;
	width: 57px;
	height: 128px;
	border-radius: 0;
	margin-top: 0;
	top: 31px;
	transform: scaleX(0.7);
}

.blueblock-arrow-slider .slick-prev.slick-arrow {
	left: 0px;
	transform-origin: left center;
}

.blueblock-arrow-slider .slick-next.slick-arrow {
	right: 0px;
	transform-origin: right center;
}

.slick-prev.slick-arrow:after,
.slick-next.slick-arrow:after {
	border-left: 1px solid #fff;
	border-top: 1px solid #fff;
	width: 32px;
	height: 32px;
	position: absolute;
	top: 49px;
	left: 8px;
}

.slick-next.slick-arrow:after {
	transform: rotate(135deg);
}

.slick-prev.slick-arrow:after {
	transform: rotate(315deg);
	left: 16px;
}

.news-list-item {}

.news-list-img {
	display: block;
	margin-bottom: 8px;
	width: 100%;
}

.news-list-date {
	ont-size: 14px;
	line-height: 16px;
	color: rgba(28, 43, 67, 0.48);
	margin-bottom: 8px;
}

.news-list-name {
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 8px;
	display: block;
}

.news-list-more {
	font-weight: 500;
	font-size: 16px;
	line-height: 16px;
	color: #3EA3DC;
}

.index-director {
	padding: 76px 0;
	background-image: url(/images/director.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	text-shadow: 0 0 3px #fff;
}

.index-director-title {
	font-weight: 500;
	font-size: 24px;
	margin-bottom: 15px;
	position: relative;
}

.index-director-title:before {
	content: '\201C';
	color: #EC6555;
	font-size: 92px;
	font-weight: 900;
	line-height: 0;
	display: block;
	position: absolute;
	left: -64px;
	top: 29px;
}

.news-detail-date {
	font-size: 14px;
	opacity: 0.5;
	margin-bottom: 16px;
}

.news-detail-slider {
	display: flex;
}

.news-detail-slider-item {
	display: block;
}

.news-detail-tharea {
	background: rgba(14, 22, 36, 0.08);
	padding: 16px 0;
}

.news-detail-thslider-item {
	padding-left: 16px;
}

.news-list-side-item {
	border-top: 1px solid rgba(28, 43, 67, 0.08);
	padding: 16px 0;
}

.news-list-item-date {
	font-size: 14px;
	opacity: 0.5;
	margin-bottom: 7px;
}

.news-list-item-name {
	display: block;
	font-size: 16px;
	line-height: 125%;
}

.news-detail-slider-item > img {
	max-width: 100%;
	margin: 0 auto;
}

.news-detail-thslider {
	display: flex;
}

.news-detail-thslider.slick-slider {
	display: block;
}

.news-detail-thslider .slick-prev.slick-arrow {
	display: none;
}

.news-detail-thslider .slick-next.slick-arrow {
	right: 0;
	background: rgba(236, 237, 238, 0);
	background: linear-gradient(270deg, #ECEDEE 28.41%, rgba(236, 237, 238, 0) 100%);
	top: 0;
	bottom: 0;
	margin: 0;
	border-radius: 0;
	height: auto;
	width: 90px;
}

.news-detail-thslider .slick-next.slick-arrow:after {
	top: 50%;
	margin-top: -15px;
	left: auto;
	right: 16px;
	border-color: #1C2B43;
}

.index-doctors-area {
	background: #3475d1;
	background-image: url(/images/index-doctors-bg.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: auto 100%;
	padding: 86px 0;
	color: #fff;
}

.doctors-indexlist {
	display: flex;
	margin: 0 -12px;
}

.doctors-indexlist.slick-slider {
	display: block;
}

.doctors-indexlist-item {
	display: block;
	background: #fff;
	color: #1C2B43 !important;
	padding: 16px;
	margin: 0 12px;
	min-height: 100%;
	height: unset
}

.doctors-indexlist .slick-track {
	display: flex;
	align-items: stretch;
}

.doctors-indexlist .slick-dots {
	bottom: -35px;
}

.reviews-slider {
	height: 200px;
	overflow: hidden;
}

.reviews-slider.slick-slider {
	height: auto;
	overflow: hidden;
}

.reviews-slider-item {
	background: #FFFFFF;
	box-shadow: 0px 8px 30px rgba(28, 43, 67, 0.08);
	padding: 30px 30px 30px 37px;
	margin: 10px 30px 35px;
}

.reviews-slider .slick-list {
	margin: 0 -30px;
}

.reviews-slider-text {
	font-size: 18px;
	margin-bottom: 30px;
}

.reviews-slider-title {
	opacity: 0.64;
	font-weight: 500;
	font-size: 16px;
}

.friends-slider-item {
	padding: 0 10px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	height: 100px;
	position: relative;
}

.friends-slider-item > img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

.friends-slider-sections {
	border-bottom: 1px solid rgba(28, 43, 67, 0.08);
	margin-bottom: 50px;
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
}

.friends-slider-sections-item {
	padding-bottom: 11px;
	margin-bottom: -1px;
	font-weight: 500;
	font-size: 18px;
	line-height: 23px;
	color: #1C2B43;
	opacity: 0.64;
	margin-right: 32px;
	border-bottom: 2px solid rgba(0, 0, 0, 0);
	white-space: nowrap;
}

.friends-slider-sections-item:hover {
	color: #3EA3DC;
}

.friends-slider-sections-item.active {
	color: #3EA3DC;
	border-color: #3EA3DC;
}

.section-menu {
	list-style: none;
	margin: 0;
	padding: 8px 0;
	background: rgba(28, 43, 67, 0.04);
}

.section-menu > li > a.active {
	background: rgba(28, 43, 67, 0.08);
	box-shadow: inset 4px 0px 0px #EC6555;
}

.section-menu > li > a:hover {
	background: rgba(28, 43, 67, 0.08);
}

.section-menu ul {
	list-style: none;
	padding: 0 0 0 16px;
	margin: 10px 0;
	border-left: 1px solid rgba(0, 0, 0, 0.16);
	display: none;
}

.section-menu > li > a {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	padding: 8px 30px 8px 24px;
	display: block;
}

/*.section-menu a.active + a + ul,*/
.section-menu a.expand + a + ul {
	display: block;
}

.section-menu ul.level-2 {
	margin-left: 24px;
}

.section-menu li {
	position: relative;
}

.section-menu ul > li {}

.section-menu ul > li + li {
	margin-top: 10px;
}

.section-menu ul > li > a {
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	opacity: 0.6;
	padding: 0 30px 0 0;
	display: block;
}

.section-menu ul > li > a.active {
	opacity: 1;
}

.mainmenu-btn-sublevel {
	position: absolute;
	width: 16px;
	height: 16px;
	right: 20px;
	top: 3px;
	padding: 0 !important;
	cursor: pointer;
	background: none !important;
}

.mainmenu-btn-sublevel:before {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	right: 4px;
	top: 2px;
	padding: 0 !important;
	border-style: solid;
	border-width: 1px 1px 0 0;
	border-color: inherit;
	transform: rotate(135deg);
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.section-menu > li > .mainmenu-btn-sublevel {
	top: 13px;
}

.mainmenu-btn-sublevel:hover {
	border-color: #3EA3DC !important;
}

/*a.active + .mainmenu-btn-sublevel:before,*/
a.expand + .mainmenu-btn-sublevel:before {
	transform: rotate(-45deg);
	margin-top: 4px;
}

.content img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 15px auto;
}

.editor_dialog .content img {
	display: inline;
	max-width: none;
	margin: 0;
}

.content img[align="left"] {
	margin-right: 24px;
	margin-left: 0;
	display: inline;
}

.content img[align="right"] {
	margin-left: 24px;
	margin-right: 0;
	display: inline;
}

.content img[src^="/upload/icons/"] {
	display: inline;
	max-width: 100%;
	margin: inherit;
}

.content table,
.content td {
	border: none;
}

.content ul {
	margin: 0;
	padding: 0;
	list-style-position: inside;
}

.content li {
	margin-bottom: 1rem;
}

.structure-root-item {
	background: #fff;
	box-shadow: 0px 4px 16px rgba(28, 43, 67, 0.04);
	padding: 24px 24px 16px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;
	min-height: 100%;
	position: relative;
}

.structure-root-title {
	margin: 0 -24px 30px;
	padding: 0 24px;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	position: relative;
	border-left: 4px solid #519ABA;
	;
}

.structure-root-item-1 .structure-root-title {
	border-color: #8DC149;
}

.structure-root-item-2 .structure-root-title {
	border-color: #E37933;
}

.structure-root-item-3 .structure-root-title {
	border-color: #F55385;
}

.structure-root-item-4 .structure-root-title {
	border-color: #CC3E44;
}

.structure-root-item-5 .structure-root-title {
	border-color: #7494A3;
}

.structure-root-item-6 .structure-root-title {
	border-color: #CBCB41;
}

.docs-list {
	border-top: 1px solid rgba(28, 43, 67, 0.08);
	margin-bottom: 32px;
	font-size: 14px;
}

.doc-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 11px 0;
	border-bottom: 1px solid rgba(28, 43, 67, 0.08);
}

.docs-list-filter .input-group-text {
	padding-left: 0;
	background: none;
	border: none;
}

.docs-list-filter .custom-select {
	padding-left: 0;
	border: none;
}

.docs-list-filter input,
.docs-list-filter select {
	box-shadow: none !important;
}

.form-wrap {
	background: rgba(28, 43, 67, 0.04);
	padding: 26px 64px;
}

.form-title {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	position: relative;
	margin-bottom: 16px;
}

.form-title-icon {
	position: absolute;
	left: -36px;
}

.form-wrap label {
	font-weight: 500;
	font-size: 13px;
	line-height: 16px;
	opacity: 0.6;
}

.form-control {
	border-radius: 0;
	border: 1px solid rgba(28, 43, 67, 0.16);
}

.bootstrap-select.form-control {
	border-radius: 0;
	border: 1px solid rgba(28, 43, 67, 0.16);
}

.bootstrap-select > .dropdown-toggle {
	border: none;
	border-radius: 0;
}

.form-wrap .form-control {
	font-size: 14px;
	line-height: 16px;
}

.error {
	color: red;
}

.success {
	color: green;
}

.popup {
	padding: 0;
	max-width: 98vw;
}

.vakansii-list-item {
	display: block;
	padding: 32px 32px 0;
	background: #FFFFFF;
	box-shadow: 0px 4px 16px rgba(28, 43, 67, 0.04);
	margin-bottom: 24px;
}

.vakansii-list-title {
	font-weight: 500;
	font-size: 24px;
	line-height: 32px;
	min-height: 60px;
	margin-bottom: 8px;
}

.vakansii-list-prop-name {
	font-size: 14px;
	opacity: 0.6;
	margin-bottom: 6px;
}

.vakansii-list-prop-value {
	font-size: 16px;
}

.vakansii-list-item hr {
	margin-left: -32px;
	margin-right: -32px;
}

.vakansii-detail h1 + hr {
	display: none;
}

.vakansii-detail hr {
	margin: 24px 0;
}

.reviews-list-item {
	background: #FFFFFF;
	box-shadow: 0px 4px 16px rgba(28, 43, 67, 0.04);
	padding: 30px;
	margin-bottom: 24px;
	display: block;
}

.post-edit-preview .adm-fileinput-btn-panel,
.post-edit-file .adm-fileinput-btn-panel {
	display: none;
}

.post-edit-preview .adm-fileinput-wrapper-single,
.post-edit-file .adm-fileinput-wrapper-single {
	display: block;
	width: 100%;
}

.post-edit-preview .adm-fileinput-wrapper .adm-fileinput-area,
.post-edit-file .adm-fileinput-wrapper .adm-fileinput-area {
	width: 100%;
	text-align: center;
	box-sizing: border-box;
	/*min-height: 223px;*/
}

.post-edit-file .adm-fileinput-item-preview {
	max-width: 100%;
}

.captchaImg {
	cursor: pointer;
}

.lenta-list {
	position: relative;
}

.lenta-list-day {
	position: relative;
	padding: 32px 0;
}

.lenta-list-day:nth-child(even) {
	background: rgba(28, 43, 67, 0.04);
}

.lenta-list-item {
	position: relative;
	padding: 6px 0 6px 82px;
}

.lenta-list-date {
	position: absolute;
	width: 48px;
	height: 48px;
	border-radius: 25px;
	background: #3EA3DC;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	left: 0;
	top: 6px;
	z-index: 2;
}

.lenta-list-date-day {
	font-size: 18px;
	line-height: 16px;
}

.lenta-list-date-mon {
	font-size: 13px;
	line-height: 16px;
}

.lenta-list-vline {
	display: block;
	position: absolute;
	bottom: 0;
	top: 0;
	border-right: 3px solid rgba(28, 43, 67, 0.16);
	width: 25px;
}

.lenta-list-img-wrap {
	max-width: 360px;
}

.input-date-widget {
	background-image: url(/images/ico-date_to.png);
	background-repeat: no-repeat;
	background-position: right 5px center;
}

.doctors-item {
	display: block;
}

.bootstrap-select .select-structure-level-1 {
	font-weight: 700;
	padding-left: 8px;
}

.bootstrap-select .select-structure-level-2 {
	font-weight: 400;
	font-size: 14px;
	padding-left: 24px;
}

.bootstrap-select .select-structure-level-3 {
	font-weight: 400;
	font-size: 13px;
	font-style: italic;
	padding-left: 32px;
}

.section-select-item {
	font-weight: 500;
	font-size: 16px;
	padding-bottom: 4px;
	border-bottom: 2px solid rgba(255, 255, 255, 0);
}

.section-select-item.active {
	color: #3EA3DC;
	border-color: #3EA3DC;
}

.section-select-item:hover {
	color: #3EA3DC;
}

.search-page a {
	color: #3EA3DC;
}

.price-section-item {
	cursor: pointer;
}

.price-section-item .fa-plus {
	display: none;
}

.price-section-item.collapsed .fa-plus {
	display: inline-block;
}

.price-section-item.collapsed .fa-minus {
	display: none;
}

#price-area.loading {
	opacity: 0.3;
}

.btn-spoiler {
	justify-content: space-between;
	display: flex;
	align-self: center
}

.btn-spoiler:after {
	content: '\f107';
	font-family: 'Font Awesome 5 Pro';
}

.spoiler-content {
	padding: 15px;
	margin-top: -1px;
	border-radius: 0 0 .25rem .25rem;
}

.drag_n_drop-wrap .file-input {
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 15px 30px 32px;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.02);
}

select.form-control {
	cursor: pointer;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' %3E%3Cpath d='m12 15.4-6-6L7.4 8l4.6 4.6L16.6 8 18 9.4l-6 6z' fill='currentColor'%3E%3C/path%3E%3C/svg%3E") center right no-repeat;
}

/* End */


/* Start:/local/templates/ronc.site/components/vision/vision.special/.default/style/css/style.css?172284770270*/
#bvi-panel-close{display:none}.bvi-body > .bvi.bvi-panel{display:none}
/* End */


/* Start:/local/templates/ronc.site/components/vision/vision.special/.default/style/css/bvi-font.min.css?17228477021612*/
.bvi-icon{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.bvi-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.bvi-xs{font-size:.75em !important}.bvi-sm{font-size:.875em !important}.bvi-1x{font-size:1em !important}.bvi-2x{font-size:2em !important}.bvi-3x{font-size:3em !important}.bvi-4x{font-size:4em !important}.bvi-5x{font-size:5em !important}.bvi-6x{font-size:6em !important}.bvi-7x{font-size:7em !important}.bvi-8x{font-size:8em !important}.bvi-9x{font-size:9em !important}.bvi-10x{font-size:10em !important}.bvi-font:before{content:"\f031"}.bvi-plus:before{content:"\f067"}.bvi-minus:before{content:"\f068"}.bvi-circle:before{content:"\f111"}.bvi-circle-notch:before{content:"\f1ce"}.bvi-adjust:before{content:"\f042"}.bvi-volume-up:before{content:"\f028"}.bvi-volume-off:before{content:"\f026"}.bvi-cogs:before{content:"\f085"}.bvi-low-vision:before{content:"\f2a8"}.bvi-chevron-circle-up:before{content:"\f139"}.bvi-eye:before{content:"\f06e"}.bvi-sync-alt:before{content:"\f2f1"}.bvi-times-circle:before{content:"\f057"}.bvi-bolt:before{content:"\f0e7"}@font-face{font-family:'Font Awesome 5 Free';font-style:normal;font-weight:900;font-display:auto;src:url("/local/templates/ronc.site/components/vision/vision.special/.default/style/css/../fonts/fa-solid-900.eot");src:url("/local/templates/ronc.site/components/vision/vision.special/.default/style/css/../fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"),url("/local/templates/ronc.site/components/vision/vision.special/.default/style/css/../fonts/fa-solid-900.woff2") format("woff2"),url("/local/templates/ronc.site/components/vision/vision.special/.default/style/css/../fonts/fa-solid-900.woff") format("woff"),url("/local/templates/ronc.site/components/vision/vision.special/.default/style/css/../fonts/fa-solid-900.ttf") format("truetype")}.bvi-icon{font-family:'Font Awesome 5 Free';font-weight:900}
/* End */


/* Start:/local/templates/ronc.site/components/vision/vision.special/.default/style/css/bvi.min.css?1722847702127805*/
/*!
 * Button visually impaired v1.0.8
 */html:not(.bvi-panel){font-size:16px !important}html body a.bvi-link{padding:10px 10px;font-size:12px;border-color:transparent}html body .bvi{font-family:Arial,sans-serif !important}html body .bvi .bvi-btn{font-weight:bold !important}html body .bvi .bvi-eye-link{position:fixed;top:1rem;right:1rem;opacity:.75;z-index:999999 !important}html body .bvi .bvi-container{width:100%;padding-right:0;padding-left:0;margin-right:auto;margin-left:auto}@media(min-width:576px){html body .bvi .bvi-container{max-width:540px}}@media(min-width:768px){html body .bvi .bvi-container{max-width:720px}}@media(min-width:992px){html body .bvi .bvi-container{max-width:960px}}@media(min-width:1200px){html body .bvi .bvi-container{max-width:1140px}}html body .bvi .bvi-container-fluid{width:100%;padding-right:0;padding-left:0;margin-right:auto;margin-left:auto}html body .bvi .bvi-row{display:flex;flex-wrap:wrap;margin-right:0;margin-left:0}html body .bvi .bvi-no-gutters{margin-right:0;margin-left:0}html body .bvi .bvi-no-gutters>.bvi-col,html body .bvi .bvi-no-gutters>[class*="bvi-col-"]{padding-right:0;padding-left:0}html body .bvi .bvi-col-1,html body .bvi .bvi-col-2,html body .bvi .bvi-col-3,html body .bvi .bvi-col-4,html body .bvi .bvi-col-5,html body .bvi .bvi-col-6,html body .bvi .bvi-col-7,html body .bvi .bvi-col-8,html body .bvi .bvi-col-9,html body .bvi .bvi-col-10,html body .bvi .bvi-col-11,html body .bvi .bvi-col-12,html body .bvi .bvi-col,html body .bvi .bvi-col-auto,html body .bvi .bvi-col-sm-1,html body .bvi .bvi-col-sm-2,html body .bvi .bvi-col-sm-3,html body .bvi .bvi-col-sm-4,html body .bvi .bvi-col-sm-5,html body .bvi .bvi-col-sm-6,html body .bvi .bvi-col-sm-7,html body .bvi .bvi-col-sm-8,html body .bvi .bvi-col-sm-9,html body .bvi .bvi-col-sm-10,html body .bvi .bvi-col-sm-11,html body .bvi .bvi-col-sm-12,html body .bvi .bvi-col-sm,html body .bvi .bvi-col-sm-auto,html body .bvi .bvi-col-md-1,html body .bvi .bvi-col-md-2,html body .bvi .bvi-col-md-3,html body .bvi .bvi-col-md-4,html body .bvi .bvi-col-md-5,html body .bvi .bvi-col-md-6,html body .bvi .bvi-col-md-7,html body .bvi .bvi-col-md-8,html body .bvi .bvi-col-md-9,html body .bvi .bvi-col-md-10,html body .bvi .bvi-col-md-11,html body .bvi .bvi-col-md-12,html body .bvi .bvi-col-md,html body .bvi .bvi-col-md-auto,html body .bvi .bvi-col-lg-1,html body .bvi .bvi-col-lg-2,html body .bvi .bvi-col-lg-3,html body .bvi .bvi-col-lg-4,html body .bvi .bvi-col-lg-5,html body .bvi .bvi-col-lg-6,html body .bvi .bvi-col-lg-7,html body .bvi .bvi-col-lg-8,html body .bvi .bvi-col-lg-9,html body .bvi .bvi-col-lg-10,html body .bvi .bvi-col-lg-11,html body .bvi .bvi-col-lg-12,html body .bvi .bvi-col-lg,html body .bvi .bvi-col-lg-auto,html body .bvi .bvi-col-xl-1,html body .bvi .bvi-col-xl-2,html body .bvi .bvi-col-xl-3,html body .bvi .bvi-col-xl-4,html body .bvi .bvi-col-xl-5,html body .bvi .bvi-col-xl-6,html body .bvi .bvi-col-xl-7,html body .bvi .bvi-col-xl-8,html body .bvi .bvi-col-xl-9,html body .bvi .bvi-col-xl-10,html body .bvi .bvi-col-xl-11,html body .bvi .bvi-col-xl-12,html body .bvi .bvi-col-xl,html body .bvi .bvi-col-xl-auto{position:relative;width:100%;min-height:1px;padding-right:0;padding-left:0}html body .bvi .bvi-col{flex-basis:0;flex-grow:1;max-width:100%}html body .bvi .bvi-col-auto{flex:0 0 auto;width:auto;max-width:none}html body .bvi .bvi-col-1{flex:0 0 8.33333%;max-width:8.33333%}html body .bvi .bvi-col-2{flex:0 0 16.66667%;max-width:16.66667%}html body .bvi .bvi-col-3{flex:0 0 25%;max-width:25%}html body .bvi .bvi-col-4{flex:0 0 33.33333%;max-width:33.33333%}html body .bvi .bvi-col-5{flex:0 0 41.66667%;max-width:41.66667%}html body .bvi .bvi-col-6{flex:0 0 50%;max-width:50%}html body .bvi .bvi-col-7{flex:0 0 58.33333%;max-width:58.33333%}html body .bvi .bvi-col-8{flex:0 0 66.66667%;max-width:66.66667%}html body .bvi .bvi-col-9{flex:0 0 75%;max-width:75%}html body .bvi .bvi-col-10{flex:0 0 83.33333%;max-width:83.33333%}html body .bvi .bvi-col-11{flex:0 0 91.66667%;max-width:91.66667%}html body .bvi .bvi-col-12{flex:0 0 100%;max-width:100%}html body .bvi .order-first{order:-1}html body .bvi .order-last{order:13}html body .bvi .order-0{order:0}html body .bvi .order-1{order:1}html body .bvi .order-2{order:2}html body .bvi .order-3{order:3}html body .bvi .order-4{order:4}html body .bvi .order-5{order:5}html body .bvi .order-6{order:6}html body .bvi .order-7{order:7}html body .bvi .order-8{order:8}html body .bvi .order-9{order:9}html body .bvi .order-10{order:10}html body .bvi .order-11{order:11}html body .bvi .order-12{order:12}html body .bvi .offset-1{margin-left:8.33333%}html body .bvi .offset-2{margin-left:16.66667%}html body .bvi .offset-3{margin-left:25%}html body .bvi .offset-4{margin-left:33.33333%}html body .bvi .offset-5{margin-left:41.66667%}html body .bvi .offset-6{margin-left:50%}html body .bvi .offset-7{margin-left:58.33333%}html body .bvi .offset-8{margin-left:66.66667%}html body .bvi .offset-9{margin-left:75%}html body .bvi .offset-10{margin-left:83.33333%}html body .bvi .offset-11{margin-left:91.66667%}@media(min-width:576px){html body .bvi .bvi-col-sm{flex-basis:0;flex-grow:1;max-width:100%}html body .bvi .bvi-col-sm-auto{flex:0 0 auto;width:auto;max-width:none}html body .bvi .bvi-col-sm-1{flex:0 0 8.33333%;max-width:8.33333%}html body .bvi .bvi-col-sm-2{flex:0 0 16.66667%;max-width:16.66667%}html body .bvi .bvi-col-sm-3{flex:0 0 25%;max-width:25%}html body .bvi .bvi-col-sm-4{flex:0 0 33.33333%;max-width:33.33333%}html body .bvi .bvi-col-sm-5{flex:0 0 41.66667%;max-width:41.66667%}html body .bvi .bvi-col-sm-6{flex:0 0 50%;max-width:50%}html body .bvi .bvi-col-sm-7{flex:0 0 58.33333%;max-width:58.33333%}html body .bvi .bvi-col-sm-8{flex:0 0 66.66667%;max-width:66.66667%}html body .bvi .bvi-col-sm-9{flex:0 0 75%;max-width:75%}html body .bvi .bvi-col-sm-10{flex:0 0 83.33333%;max-width:83.33333%}html body .bvi .bvi-col-sm-11{flex:0 0 91.66667%;max-width:91.66667%}html body .bvi .bvi-col-sm-12{flex:0 0 100%;max-width:100%}html body .bvi .order-sm-first{order:-1}html body .bvi .order-sm-last{order:13}html body .bvi .order-sm-0{order:0}html body .bvi .order-sm-1{order:1}html body .bvi .order-sm-2{order:2}html body .bvi .order-sm-3{order:3}html body .bvi .order-sm-4{order:4}html body .bvi .order-sm-5{order:5}html body .bvi .order-sm-6{order:6}html body .bvi .order-sm-7{order:7}html body .bvi .order-sm-8{order:8}html body .bvi .order-sm-9{order:9}html body .bvi .order-sm-10{order:10}html body .bvi .order-sm-11{order:11}html body .bvi .order-sm-12{order:12}html body .bvi .offset-sm-0{margin-left:0}html body .bvi .offset-sm-1{margin-left:8.33333%}html body .bvi .offset-sm-2{margin-left:16.66667%}html body .bvi .offset-sm-3{margin-left:25%}html body .bvi .offset-sm-4{margin-left:33.33333%}html body .bvi .offset-sm-5{margin-left:41.66667%}html body .bvi .offset-sm-6{margin-left:50%}html body .bvi .offset-sm-7{margin-left:58.33333%}html body .bvi .offset-sm-8{margin-left:66.66667%}html body .bvi .offset-sm-9{margin-left:75%}html body .bvi .offset-sm-10{margin-left:83.33333%}html body .bvi .offset-sm-11{margin-left:91.66667%}}@media(min-width:768px){html body .bvi .bvi-col-md{flex-basis:0;flex-grow:1;max-width:100%}html body .bvi .bvi-col-md-auto{flex:0 0 auto;width:auto;max-width:none}html body .bvi .bvi-col-md-1{flex:0 0 8.33333%;max-width:8.33333%}html body .bvi .bvi-col-md-2{flex:0 0 16.66667%;max-width:16.66667%}html body .bvi .bvi-col-md-3{flex:0 0 25%;max-width:25%}html body .bvi .bvi-col-md-4{flex:0 0 33.33333%;max-width:33.33333%}html body .bvi .bvi-col-md-5{flex:0 0 41.66667%;max-width:41.66667%}html body .bvi .bvi-col-md-6{flex:0 0 50%;max-width:50%}html body .bvi .bvi-col-md-7{flex:0 0 58.33333%;max-width:58.33333%}html body .bvi .bvi-col-md-8{flex:0 0 66.66667%;max-width:66.66667%}html body .bvi .bvi-col-md-9{flex:0 0 75%;max-width:75%}html body .bvi .bvi-col-md-10{flex:0 0 83.33333%;max-width:83.33333%}html body .bvi .bvi-col-md-11{flex:0 0 91.66667%;max-width:91.66667%}html body .bvi .bvi-col-md-12{flex:0 0 100%;max-width:100%}html body .bvi .order-md-first{order:-1}html body .bvi .order-md-last{order:13}html body .bvi .order-md-0{order:0}html body .bvi .order-md-1{order:1}html body .bvi .order-md-2{order:2}html body .bvi .order-md-3{order:3}html body .bvi .order-md-4{order:4}html body .bvi .order-md-5{order:5}html body .bvi .order-md-6{order:6}html body .bvi .order-md-7{order:7}html body .bvi .order-md-8{order:8}html body .bvi .order-md-9{order:9}html body .bvi .order-md-10{order:10}html body .bvi .order-md-11{order:11}html body .bvi .order-md-12{order:12}html body .bvi .offset-md-0{margin-left:0}html body .bvi .offset-md-1{margin-left:8.33333%}html body .bvi .offset-md-2{margin-left:16.66667%}html body .bvi .offset-md-3{margin-left:25%}html body .bvi .offset-md-4{margin-left:33.33333%}html body .bvi .offset-md-5{margin-left:41.66667%}html body .bvi .offset-md-6{margin-left:50%}html body .bvi .offset-md-7{margin-left:58.33333%}html body .bvi .offset-md-8{margin-left:66.66667%}html body .bvi .offset-md-9{margin-left:75%}html body .bvi .offset-md-10{margin-left:83.33333%}html body .bvi .offset-md-11{margin-left:91.66667%}}@media(min-width:992px){html body .bvi .bvi-col-lg{flex-basis:0;flex-grow:1;max-width:100%}html body .bvi .bvi-col-lg-auto{flex:0 0 auto;width:auto;max-width:none}html body .bvi .bvi-col-lg-1{flex:0 0 8.33333%;max-width:8.33333%}html body .bvi .bvi-col-lg-2{flex:0 0 16.66667%;max-width:16.66667%}html body .bvi .bvi-col-lg-3{flex:0 0 25%;max-width:25%}html body .bvi .bvi-col-lg-4{flex:0 0 33.33333%;max-width:33.33333%}html body .bvi .bvi-col-lg-5{flex:0 0 41.66667%;max-width:41.66667%}html body .bvi .bvi-col-lg-6{flex:0 0 50%;max-width:50%}html body .bvi .bvi-col-lg-7{flex:0 0 58.33333%;max-width:58.33333%}html body .bvi .bvi-col-lg-8{flex:0 0 66.66667%;max-width:66.66667%}html body .bvi .bvi-col-lg-9{flex:0 0 75%;max-width:75%}html body .bvi .bvi-col-lg-10{flex:0 0 83.33333%;max-width:83.33333%}html body .bvi .bvi-col-lg-11{flex:0 0 91.66667%;max-width:91.66667%}html body .bvi .bvi-col-lg-12{flex:0 0 100%;max-width:100%}html body .bvi .order-lg-first{order:-1}html body .bvi .order-lg-last{order:13}html body .bvi .order-lg-0{order:0}html body .bvi .order-lg-1{order:1}html body .bvi .order-lg-2{order:2}html body .bvi .order-lg-3{order:3}html body .bvi .order-lg-4{order:4}html body .bvi .order-lg-5{order:5}html body .bvi .order-lg-6{order:6}html body .bvi .order-lg-7{order:7}html body .bvi .order-lg-8{order:8}html body .bvi .order-lg-9{order:9}html body .bvi .order-lg-10{order:10}html body .bvi .order-lg-11{order:11}html body .bvi .order-lg-12{order:12}html body .bvi .offset-lg-0{margin-left:0}html body .bvi .offset-lg-1{margin-left:8.33333%}html body .bvi .offset-lg-2{margin-left:16.66667%}html body .bvi .offset-lg-3{margin-left:25%}html body .bvi .offset-lg-4{margin-left:33.33333%}html body .bvi .offset-lg-5{margin-left:41.66667%}html body .bvi .offset-lg-6{margin-left:50%}html body .bvi .offset-lg-7{margin-left:58.33333%}html body .bvi .offset-lg-8{margin-left:66.66667%}html body .bvi .offset-lg-9{margin-left:75%}html body .bvi .offset-lg-10{margin-left:83.33333%}html body .bvi .offset-lg-11{margin-left:91.66667%}}@media(min-width:1200px){html body .bvi .bvi-col-xl{flex-basis:0;flex-grow:1;max-width:100%}html body .bvi .bvi-col-xl-auto{flex:0 0 auto;width:auto;max-width:none}html body .bvi .bvi-col-xl-1{flex:0 0 8.33333%;max-width:8.33333%}html body .bvi .bvi-col-xl-2{flex:0 0 16.66667%;max-width:16.66667%}html body .bvi .bvi-col-xl-3{flex:0 0 25%;max-width:25%}html body .bvi .bvi-col-xl-4{flex:0 0 33.33333%;max-width:33.33333%}html body .bvi .bvi-col-xl-5{flex:0 0 41.66667%;max-width:41.66667%}html body .bvi .bvi-col-xl-6{flex:0 0 50%;max-width:50%}html body .bvi .bvi-col-xl-7{flex:0 0 58.33333%;max-width:58.33333%}html body .bvi .bvi-col-xl-8{flex:0 0 66.66667%;max-width:66.66667%}html body .bvi .bvi-col-xl-9{flex:0 0 75%;max-width:75%}html body .bvi .bvi-col-xl-10{flex:0 0 83.33333%;max-width:83.33333%}html body .bvi .bvi-col-xl-11{flex:0 0 91.66667%;max-width:91.66667%}html body .bvi .bvi-col-xl-12{flex:0 0 100%;max-width:100%}html body .bvi .order-xl-first{order:-1}html body .bvi .order-xl-last{order:13}html body .bvi .order-xl-0{order:0}html body .bvi .order-xl-1{order:1}html body .bvi .order-xl-2{order:2}html body .bvi .order-xl-3{order:3}html body .bvi .order-xl-4{order:4}html body .bvi .order-xl-5{order:5}html body .bvi .order-xl-6{order:6}html body .bvi .order-xl-7{order:7}html body .bvi .order-xl-8{order:8}html body .bvi .order-xl-9{order:9}html body .bvi .order-xl-10{order:10}html body .bvi .order-xl-11{order:11}html body .bvi .order-xl-12{order:12}html body .bvi .offset-xl-0{margin-left:0}html body .bvi .offset-xl-1{margin-left:8.33333%}html body .bvi .offset-xl-2{margin-left:16.66667%}html body .bvi .offset-xl-3{margin-left:25%}html body .bvi .offset-xl-4{margin-left:33.33333%}html body .bvi .offset-xl-5{margin-left:41.66667%}html body .bvi .offset-xl-6{margin-left:50%}html body .bvi .offset-xl-7{margin-left:58.33333%}html body .bvi .offset-xl-8{margin-left:66.66667%}html body .bvi .offset-xl-9{margin-left:75%}html body .bvi .offset-xl-10{margin-left:83.33333%}html body .bvi .offset-xl-11{margin-left:91.66667%}}html body .bvi .bvi-btn{display:inline-block;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;user-select:none;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){html body .bvi .bvi-btn{transition:none}}html body .bvi .bvi-btn:hover,html body .bvi .bvi-btn:focus{text-decoration:none}html body .bvi .bvi-btn:focus,html body .bvi .bvi-btn.focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}html body .bvi .bvi-btn.disabled,html body .bvi .bvi-btn:disabled{opacity:.65}html body .bvi .bvi-btn:not(:disabled):not(.disabled){cursor:pointer}html body .bvi a.bvi-btn.disabled,html body .bvi fieldset:disabled a.bvi-btn{pointer-events:none}html body .bvi .bvi-btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}html body .bvi .bvi-btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}html body .bvi .bvi-btn-primary:focus,html body .bvi .bvi-btn-primary.focus{box-shadow:0 0 0 .2rem rgba(0,123,255,0.5)}html body .bvi .bvi-btn-primary.disabled,html body .bvi .bvi-btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}html body .bvi .bvi-btn-primary:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-primary:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}html body .bvi .bvi-btn-primary:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-primary:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,0.5)}html body .bvi .bvi-btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}html body .bvi .bvi-btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}html body .bvi .bvi-btn-secondary:focus,html body .bvi .bvi-btn-secondary.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}html body .bvi .bvi-btn-secondary.disabled,html body .bvi .bvi-btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}html body .bvi .bvi-btn-secondary:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-secondary:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}html body .bvi .bvi-btn-secondary:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-secondary:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}html body .bvi .bvi-btn-success{color:#fff;background-color:#28a745;border-color:#28a745}html body .bvi .bvi-btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}html body .bvi .bvi-btn-success:focus,html body .bvi .bvi-btn-success.focus{box-shadow:0 0 0 .2rem rgba(40,167,69,0.5)}html body .bvi .bvi-btn-success.disabled,html body .bvi .bvi-btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}html body .bvi .bvi-btn-success:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-success:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}html body .bvi .bvi-btn-success:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-success:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,0.5)}html body .bvi .bvi-btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}html body .bvi .bvi-btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}html body .bvi .bvi-btn-info:focus,html body .bvi .bvi-btn-info.focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}html body .bvi .bvi-btn-info.disabled,html body .bvi .bvi-btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}html body .bvi .bvi-btn-info:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-info:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}html body .bvi .bvi-btn-info:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-info:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}html body .bvi .bvi-btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}html body .bvi .bvi-btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}html body .bvi .bvi-btn-warning:focus,html body .bvi .bvi-btn-warning.focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}html body .bvi .bvi-btn-warning.disabled,html body .bvi .bvi-btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}html body .bvi .bvi-btn-warning:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-warning:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}html body .bvi .bvi-btn-warning:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-warning:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}html body .bvi .bvi-btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}html body .bvi .bvi-btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}html body .bvi .bvi-btn-danger:focus,html body .bvi .bvi-btn-danger.focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}html body .bvi .bvi-btn-danger.disabled,html body .bvi .bvi-btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}html body .bvi .bvi-btn-danger:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-danger:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}html body .bvi .bvi-btn-danger:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-danger:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}html body .bvi .bvi-btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}html body .bvi .bvi-btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}html body .bvi .bvi-btn-light:focus,html body .bvi .bvi-btn-light.focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}html body .bvi .bvi-btn-light.disabled,html body .bvi .bvi-btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}html body .bvi .bvi-btn-light:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-light:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}html body .bvi .bvi-btn-light:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-light:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}html body .bvi .bvi-btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}html body .bvi .bvi-btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}html body .bvi .bvi-btn-dark:focus,html body .bvi .bvi-btn-dark.focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}html body .bvi .bvi-btn-dark.disabled,html body .bvi .bvi-btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}html body .bvi .bvi-btn-dark:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-dark:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}html body .bvi .bvi-btn-dark:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-dark:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}html body .bvi .bvi-btn-bvi-white{color:#212529;background-color:#fff;border-color:#fff}html body .bvi .bvi-btn-bvi-white:hover{color:#212529;background-color:#ececec;border-color:#e6e6e6}html body .bvi .bvi-btn-bvi-white:focus,html body .bvi .bvi-btn-bvi-white.focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}html body .bvi .bvi-btn-bvi-white.disabled,html body .bvi .bvi-btn-bvi-white:disabled{color:#212529;background-color:#fff;border-color:#fff}html body .bvi .bvi-btn-bvi-white:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-bvi-white:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-bvi-white.dropdown-toggle{color:#212529;background-color:#e6e6e6;border-color:#dfdfdf}html body .bvi .bvi-btn-bvi-white:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-bvi-white:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-bvi-white.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}html body .bvi .bvi-btn-bvi-black{color:#fff;background-color:#000;border-color:#000}html body .bvi .bvi-btn-bvi-black:hover{color:#fff;background-color:black;border-color:black}html body .bvi .bvi-btn-bvi-black:focus,html body .bvi .bvi-btn-bvi-black.focus{box-shadow:0 0 0 .2rem rgba(0,0,0,0.5)}html body .bvi .bvi-btn-bvi-black.disabled,html body .bvi .bvi-btn-bvi-black:disabled{color:#fff;background-color:#000;border-color:#000}html body .bvi .bvi-btn-bvi-black:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-bvi-black:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-bvi-black.dropdown-toggle{color:#fff;background-color:black;border-color:black}html body .bvi .bvi-btn-bvi-black:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-bvi-black:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-bvi-black.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,0,0,0.5)}html body .bvi .bvi-btn-bvi-blue{color:#fff;background-color:#063462;border-color:#063462}html body .bvi .bvi-btn-bvi-blue:hover{color:#fff;background-color:#04213e;border-color:#031b32}html body .bvi .bvi-btn-bvi-blue:focus,html body .bvi .bvi-btn-bvi-blue.focus{box-shadow:0 0 0 .2rem rgba(6,52,98,0.5)}html body .bvi .bvi-btn-bvi-blue.disabled,html body .bvi .bvi-btn-bvi-blue:disabled{color:#fff;background-color:#063462;border-color:#063462}html body .bvi .bvi-btn-bvi-blue:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-bvi-blue:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-bvi-blue.dropdown-toggle{color:#fff;background-color:#031b32;border-color:#021426}html body .bvi .bvi-btn-bvi-blue:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-bvi-blue:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-bvi-blue.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(6,52,98,0.5)}html body .bvi .bvi-btn-bvi-brown{color:#fff;background-color:#4d4b43;border-color:#4d4b43}html body .bvi .bvi-btn-bvi-brown:hover{color:#fff;background-color:#393731;border-color:#32302b}html body .bvi .bvi-btn-bvi-brown:focus,html body .bvi .bvi-btn-bvi-brown.focus{box-shadow:0 0 0 .2rem rgba(77,75,67,0.5)}html body .bvi .bvi-btn-bvi-brown.disabled,html body .bvi .bvi-btn-bvi-brown:disabled{color:#fff;background-color:#4d4b43;border-color:#4d4b43}html body .bvi .bvi-btn-bvi-brown:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-bvi-brown:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-bvi-brown.dropdown-toggle{color:#fff;background-color:#32302b;border-color:#2b2a25}html body .bvi .bvi-btn-bvi-brown:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-bvi-brown:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-bvi-brown.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(77,75,67,0.5)}html body .bvi .bvi-btn-bvi-green{color:#212529;background-color:#a9e44d;border-color:#a9e44d}html body .bvi .bvi-btn-bvi-green:hover{color:#212529;background-color:#99df2c;border-color:#93dd21}html body .bvi .bvi-btn-bvi-green:focus,html body .bvi .bvi-btn-bvi-green.focus{box-shadow:0 0 0 .2rem rgba(169,228,77,0.5)}html body .bvi .bvi-btn-bvi-green.disabled,html body .bvi .bvi-btn-bvi-green:disabled{color:#212529;background-color:#a9e44d;border-color:#a9e44d}html body .bvi .bvi-btn-bvi-green:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-bvi-green:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-bvi-green.dropdown-toggle{color:#212529;background-color:#93dd21;border-color:#8cd120}html body .bvi .bvi-btn-bvi-green:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-bvi-green:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-bvi-green.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(169,228,77,0.5)}html body .bvi .bvi-btn-outline-primary{color:#007bff;background-color:transparent;background-image:none;border-color:#007bff}html body .bvi .bvi-btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}html body .bvi .bvi-btn-outline-primary:focus,html body .bvi .bvi-btn-outline-primary.focus{box-shadow:0 0 0 .2rem rgba(0,123,255,0.5)}html body .bvi .bvi-btn-outline-primary.disabled,html body .bvi .bvi-btn-outline-primary:disabled{color:#007bff;background-color:transparent}html body .bvi .bvi-btn-outline-primary:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-primary:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}html body .bvi .bvi-btn-outline-primary:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,0.5)}html body .bvi .bvi-btn-outline-secondary{color:#6c757d;background-color:transparent;background-image:none;border-color:#6c757d}html body .bvi .bvi-btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}html body .bvi .bvi-btn-outline-secondary:focus,html body .bvi .bvi-btn-outline-secondary.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}html body .bvi .bvi-btn-outline-secondary.disabled,html body .bvi .bvi-btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}html body .bvi .bvi-btn-outline-secondary:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-secondary:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}html body .bvi .bvi-btn-outline-secondary:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}html body .bvi .bvi-btn-outline-success{color:#28a745;background-color:transparent;background-image:none;border-color:#28a745}html body .bvi .bvi-btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}html body .bvi .bvi-btn-outline-success:focus,html body .bvi .bvi-btn-outline-success.focus{box-shadow:0 0 0 .2rem rgba(40,167,69,0.5)}html body .bvi .bvi-btn-outline-success.disabled,html body .bvi .bvi-btn-outline-success:disabled{color:#28a745;background-color:transparent}html body .bvi .bvi-btn-outline-success:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-success:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}html body .bvi .bvi-btn-outline-success:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,0.5)}html body .bvi .bvi-btn-outline-info{color:#17a2b8;background-color:transparent;background-image:none;border-color:#17a2b8}html body .bvi .bvi-btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}html body .bvi .bvi-btn-outline-info:focus,html body .bvi .bvi-btn-outline-info.focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}html body .bvi .bvi-btn-outline-info.disabled,html body .bvi .bvi-btn-outline-info:disabled{color:#17a2b8;background-color:transparent}html body .bvi .bvi-btn-outline-info:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-info:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}html body .bvi .bvi-btn-outline-info:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}html body .bvi .bvi-btn-outline-warning{color:#ffc107;background-color:transparent;background-image:none;border-color:#ffc107}html body .bvi .bvi-btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}html body .bvi .bvi-btn-outline-warning:focus,html body .bvi .bvi-btn-outline-warning.focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}html body .bvi .bvi-btn-outline-warning.disabled,html body .bvi .bvi-btn-outline-warning:disabled{color:#ffc107;background-color:transparent}html body .bvi .bvi-btn-outline-warning:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-warning:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}html body .bvi .bvi-btn-outline-warning:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}html body .bvi .bvi-btn-outline-danger{color:#dc3545;background-color:transparent;background-image:none;border-color:#dc3545}html body .bvi .bvi-btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}html body .bvi .bvi-btn-outline-danger:focus,html body .bvi .bvi-btn-outline-danger.focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}html body .bvi .bvi-btn-outline-danger.disabled,html body .bvi .bvi-btn-outline-danger:disabled{color:#dc3545;background-color:transparent}html body .bvi .bvi-btn-outline-danger:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-danger:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}html body .bvi .bvi-btn-outline-danger:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}html body .bvi .bvi-btn-outline-light{color:#f8f9fa;background-color:transparent;background-image:none;border-color:#f8f9fa}html body .bvi .bvi-btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}html body .bvi .bvi-btn-outline-light:focus,html body .bvi .bvi-btn-outline-light.focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}html body .bvi .bvi-btn-outline-light.disabled,html body .bvi .bvi-btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}html body .bvi .bvi-btn-outline-light:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-light:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}html body .bvi .bvi-btn-outline-light:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}html body .bvi .bvi-btn-outline-dark{color:#343a40;background-color:transparent;background-image:none;border-color:#343a40}html body .bvi .bvi-btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}html body .bvi .bvi-btn-outline-dark:focus,html body .bvi .bvi-btn-outline-dark.focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}html body .bvi .bvi-btn-outline-dark.disabled,html body .bvi .bvi-btn-outline-dark:disabled{color:#343a40;background-color:transparent}html body .bvi .bvi-btn-outline-dark:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-dark:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}html body .bvi .bvi-btn-outline-dark:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}html body .bvi .bvi-btn-outline-bvi-white{color:#fff;background-color:transparent;background-image:none;border-color:#fff}html body .bvi .bvi-btn-outline-bvi-white:hover{color:#212529;background-color:#fff;border-color:#fff}html body .bvi .bvi-btn-outline-bvi-white:focus,html body .bvi .bvi-btn-outline-bvi-white.focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}html body .bvi .bvi-btn-outline-bvi-white.disabled,html body .bvi .bvi-btn-outline-bvi-white:disabled{color:#fff;background-color:transparent}html body .bvi .bvi-btn-outline-bvi-white:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-bvi-white:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-bvi-white.dropdown-toggle{color:#212529;background-color:#fff;border-color:#fff}html body .bvi .bvi-btn-outline-bvi-white:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-bvi-white:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-bvi-white.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}html body .bvi .bvi-btn-outline-bvi-black{color:#000;background-color:transparent;background-image:none;border-color:#000}html body .bvi .bvi-btn-outline-bvi-black:hover{color:#fff;background-color:#000;border-color:#000}html body .bvi .bvi-btn-outline-bvi-black:focus,html body .bvi .bvi-btn-outline-bvi-black.focus{box-shadow:0 0 0 .2rem rgba(0,0,0,0.5)}html body .bvi .bvi-btn-outline-bvi-black.disabled,html body .bvi .bvi-btn-outline-bvi-black:disabled{color:#000;background-color:transparent}html body .bvi .bvi-btn-outline-bvi-black:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-bvi-black:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-bvi-black.dropdown-toggle{color:#fff;background-color:#000;border-color:#000}html body .bvi .bvi-btn-outline-bvi-black:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-bvi-black:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-bvi-black.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,0,0,0.5)}html body .bvi .bvi-btn-outline-bvi-blue{color:#063462;background-color:transparent;background-image:none;border-color:#063462}html body .bvi .bvi-btn-outline-bvi-blue:hover{color:#fff;background-color:#063462;border-color:#063462}html body .bvi .bvi-btn-outline-bvi-blue:focus,html body .bvi .bvi-btn-outline-bvi-blue.focus{box-shadow:0 0 0 .2rem rgba(6,52,98,0.5)}html body .bvi .bvi-btn-outline-bvi-blue.disabled,html body .bvi .bvi-btn-outline-bvi-blue:disabled{color:#063462;background-color:transparent}html body .bvi .bvi-btn-outline-bvi-blue:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-bvi-blue:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-bvi-blue.dropdown-toggle{color:#fff;background-color:#063462;border-color:#063462}html body .bvi .bvi-btn-outline-bvi-blue:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-bvi-blue:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-bvi-blue.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(6,52,98,0.5)}html body .bvi .bvi-btn-outline-bvi-brown{color:#4d4b43;background-color:transparent;background-image:none;border-color:#4d4b43}html body .bvi .bvi-btn-outline-bvi-brown:hover{color:#fff;background-color:#4d4b43;border-color:#4d4b43}html body .bvi .bvi-btn-outline-bvi-brown:focus,html body .bvi .bvi-btn-outline-bvi-brown.focus{box-shadow:0 0 0 .2rem rgba(77,75,67,0.5)}html body .bvi .bvi-btn-outline-bvi-brown.disabled,html body .bvi .bvi-btn-outline-bvi-brown:disabled{color:#4d4b43;background-color:transparent}html body .bvi .bvi-btn-outline-bvi-brown:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-bvi-brown:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-bvi-brown.dropdown-toggle{color:#fff;background-color:#4d4b43;border-color:#4d4b43}html body .bvi .bvi-btn-outline-bvi-brown:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-bvi-brown:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-bvi-brown.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(77,75,67,0.5)}html body .bvi .bvi-btn-outline-bvi-green{color:#a9e44d;background-color:transparent;background-image:none;border-color:#a9e44d}html body .bvi .bvi-btn-outline-bvi-green:hover{color:#212529;background-color:#a9e44d;border-color:#a9e44d}html body .bvi .bvi-btn-outline-bvi-green:focus,html body .bvi .bvi-btn-outline-bvi-green.focus{box-shadow:0 0 0 .2rem rgba(169,228,77,0.5)}html body .bvi .bvi-btn-outline-bvi-green.disabled,html body .bvi .bvi-btn-outline-bvi-green:disabled{color:#a9e44d;background-color:transparent}html body .bvi .bvi-btn-outline-bvi-green:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-bvi-green:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-bvi-green.dropdown-toggle{color:#212529;background-color:#a9e44d;border-color:#a9e44d}html body .bvi .bvi-btn-outline-bvi-green:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-bvi-green:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-bvi-green.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(169,228,77,0.5)}html body .bvi .bvi-btn-link{font-weight:400;color:#007bff;background-color:transparent}html body .bvi .bvi-btn-link:hover{color:#0056b3;text-decoration:underline;background-color:transparent;border-color:transparent}html body .bvi .bvi-btn-link:focus,html body .bvi .bvi-btn-link.focus{text-decoration:underline;border-color:transparent;box-shadow:none}html body .bvi .bvi-btn-link:disabled,html body .bvi .bvi-btn-link.disabled{color:#6c757d;pointer-events:none}html body .bvi .bvi-btn-lg,html body .bvi .bvi-btn-group-lg>.bvi-btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0}html body .bvi .bvi-btn-sm,html body .bvi .bvi-btn-group-sm>.bvi-btn{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:0}html body .bvi .bvi-btn-block{display:block;width:100%}html body .bvi .bvi-btn-block+.bvi-btn-block{margin-top:.5rem}html body .bvi input[type="submit"].bvi-btn-block,html body .bvi input[type="reset"].bvi-btn-block,html body .bvi input[type="button"].bvi-btn-block{width:100%}html body .bvi .bvi-btn-group,html body .bvi .bvi-btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}html body .bvi .bvi-btn-group>.bvi-btn,html body .bvi .bvi-btn-group-vertical>.bvi-btn{position:relative;flex:0 1 auto}html body .bvi .bvi-btn-group>.bvi-btn:hover,html body .bvi .bvi-btn-group-vertical>.bvi-btn:hover{z-index:1}html body .bvi .bvi-btn-group>.bvi-btn:focus,html body .bvi .bvi-btn-group>.bvi-btn:active,html body .bvi .bvi-btn-group>.bvi-btn.active,html body .bvi .bvi-btn-group-vertical>.bvi-btn:focus,html body .bvi .bvi-btn-group-vertical>.bvi-btn:active,html body .bvi .bvi-btn-group-vertical>.bvi-btn.active{z-index:1}html body .bvi .bvi-btn-group .bvi-btn+.bvi-btn,html body .bvi .bvi-btn-group .bvi-btn+.bvi-btn-group,html body .bvi .bvi-btn-group .bvi-btn-group+.bvi-btn,html body .bvi .bvi-btn-group .bvi-btn-group+.bvi-btn-group,html body .bvi .bvi-btn-group-vertical .bvi-btn+.bvi-btn,html body .bvi .bvi-btn-group-vertical .bvi-btn+.bvi-btn-group,html body .bvi .bvi-btn-group-vertical .bvi-btn-group+.bvi-btn,html body .bvi .bvi-btn-group-vertical .bvi-btn-group+.bvi-btn-group{margin-left:-1px}html body .bvi .bvi-btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}html body .bvi .bvi-btn-toolbar .input-group{width:auto}html body .bvi .bvi-btn-group>.bvi-btn:first-child{margin-left:0}html body .bvi .bvi-btn-group>.bvi-btn:not(:last-child):not(.dropdown-toggle),html body .bvi .bvi-btn-group>.bvi-btn-group:not(:last-child)>.bvi-btn{border-top-right-radius:0;border-bottom-right-radius:0}html body .bvi .bvi-btn-group>.bvi-btn:not(:first-child),html body .bvi .bvi-btn-group>.bvi-btn-group:not(:first-child)>.bvi-btn{border-top-left-radius:0;border-bottom-left-radius:0}html body .bvi .dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}html body .bvi .dropdown-toggle-split::after,.dropup html body .bvi .dropdown-toggle-split::after,.dropright html body .bvi .dropdown-toggle-split::after{margin-left:0}.dropleft html body .bvi .dropdown-toggle-split::before{margin-right:0}html body .bvi .bvi-btn-sm+.dropdown-toggle-split,html body .bvi .bvi-btn-group-sm>.bvi-btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}html body .bvi .bvi-btn-lg+.dropdown-toggle-split,html body .bvi .bvi-btn-group-lg>.bvi-btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}html body .bvi .bvi-btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}html body .bvi .bvi-btn-group-vertical .bvi-btn,html body .bvi .bvi-btn-group-vertical .bvi-btn-group{width:100%}html body .bvi .bvi-btn-group-vertical>.bvi-btn+.bvi-btn,html body .bvi .bvi-btn-group-vertical>.bvi-btn+.bvi-btn-group,html body .bvi .bvi-btn-group-vertical>.bvi-btn-group+.bvi-btn,html body .bvi .bvi-btn-group-vertical>.bvi-btn-group+.bvi-btn-group{margin-top:-1px;margin-left:0}html body .bvi .bvi-btn-group-vertical>.bvi-btn:not(:last-child):not(.dropdown-toggle),html body .bvi .bvi-btn-group-vertical>.bvi-btn-group:not(:last-child)>.bvi-btn{border-bottom-right-radius:0;border-bottom-left-radius:0}html body .bvi .bvi-btn-group-vertical>.bvi-btn:not(:first-child),html body .bvi .bvi-btn-group-vertical>.bvi-btn-group:not(:first-child)>.bvi-btn{border-top-left-radius:0;border-top-right-radius:0}html body .bvi .bvi-btn-group-toggle>.bvi-btn,html body .bvi .bvi-btn-group-toggle>.bvi-btn-group>.bvi-btn{margin-bottom:0}html body .bvi .bvi-btn-group-toggle>.bvi-btn input[type="radio"],html body .bvi .bvi-btn-group-toggle>.bvi-btn input[type="checkbox"],html body .bvi .bvi-btn-group-toggle>.bvi-btn-group>.bvi-btn input[type="radio"],html body .bvi .bvi-btn-group-toggle>.bvi-btn-group>.bvi-btn input[type="checkbox"]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}html body .bvi .bvi-border{border:1px solid #dee2e6 !important}html body .bvi .bvi-border-top{border-top:1px solid #dee2e6 !important}html body .bvi .bvi-border-right{border-right:1px solid #dee2e6 !important}html body .bvi .bvi-border-bottom{border-bottom:1px solid #dee2e6 !important}html body .bvi .bvi-border-left{border-left:1px solid #dee2e6 !important}html body .bvi .bvi-border-0{border:0 !important}html body .bvi .bvi-border-top-0{border-top:0 !important}html body .bvi .bvi-border-right-0{border-right:0 !important}html body .bvi .bvi-border-bottom-0{border-bottom:0 !important}html body .bvi .bvi-border-left-0{border-left:0 !important}html body .bvi .bvi-border-primary{border-color:#007bff !important}html body .bvi .bvi-border-secondary{border-color:#6c757d !important}html body .bvi .bvi-border-success{border-color:#28a745 !important}html body .bvi .bvi-border-info{border-color:#17a2b8 !important}html body .bvi .bvi-border-warning{border-color:#ffc107 !important}html body .bvi .bvi-border-danger{border-color:#dc3545 !important}html body .bvi .bvi-border-light{border-color:#f8f9fa !important}html body .bvi .bvi-border-dark{border-color:#343a40 !important}html body .bvi .bvi-border-bvi-white{border-color:#fff !important}html body .bvi .bvi-border-bvi-black{border-color:#000 !important}html body .bvi .bvi-border-bvi-blue{border-color:#063462 !important}html body .bvi .bvi-border-bvi-brown{border-color:#4d4b43 !important}html body .bvi .bvi-border-bvi-green{border-color:#a9e44d !important}html body .bvi .bvi-border-white{border-color:#fff !important}html body .bvi .bvi-rounded{border-radius:0 !important}html body .bvi .bvi-rounded-top{border-top-left-radius:0 !important;border-top-right-radius:0 !important}html body .bvi .bvi-rounded-right{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}html body .bvi .bvi-rounded-bottom{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}html body .bvi .bvi-rounded-left{border-top-left-radius:0 !important;border-bottom-left-radius:0 !important}html body .bvi .bvi-rounded-circle{border-radius:50% !important}html body .bvi .bvi-rounded-0{border-radius:0 !important}html body .bvi .bvi-m-0{margin:0 !important}html body .bvi .bvi-mt-0,html body .bvi .bvi-my-0{margin-top:0 !important}html body .bvi .bvi-mr-0,html body .bvi .bvi-mx-0{margin-right:0 !important}html body .bvi .bvi-mb-0,html body .bvi .bvi-my-0{margin-bottom:0 !important}html body .bvi .bvi-ml-0,html body .bvi .bvi-mx-0{margin-left:0 !important}html body .bvi .bvi-m-1{margin:.25rem !important}html body .bvi .bvi-mt-1,html body .bvi .bvi-my-1{margin-top:.25rem !important}html body .bvi .bvi-mr-1,html body .bvi .bvi-mx-1{margin-right:.25rem !important}html body .bvi .bvi-mb-1,html body .bvi .bvi-my-1{margin-bottom:.25rem !important}html body .bvi .bvi-ml-1,html body .bvi .bvi-mx-1{margin-left:.25rem !important}html body .bvi .bvi-m-2{margin:.5rem !important}html body .bvi .bvi-mt-2,html body .bvi .bvi-my-2{margin-top:.5rem !important}html body .bvi .bvi-mr-2,html body .bvi .bvi-mx-2{margin-right:.5rem !important}html body .bvi .bvi-mb-2,html body .bvi .bvi-my-2{margin-bottom:.5rem !important}html body .bvi .bvi-ml-2,html body .bvi .bvi-mx-2{margin-left:.5rem !important}html body .bvi .bvi-m-3{margin:1rem !important}html body .bvi .bvi-mt-3,html body .bvi .bvi-my-3{margin-top:1rem !important}html body .bvi .bvi-mr-3,html body .bvi .bvi-mx-3{margin-right:1rem !important}html body .bvi .bvi-mb-3,html body .bvi .bvi-my-3{margin-bottom:1rem !important}html body .bvi .bvi-ml-3,html body .bvi .bvi-mx-3{margin-left:1rem !important}html body .bvi .bvi-m-4{margin:1.5rem !important}html body .bvi .bvi-mt-4,html body .bvi .bvi-my-4{margin-top:1.5rem !important}html body .bvi .bvi-mr-4,html body .bvi .bvi-mx-4{margin-right:1.5rem !important}html body .bvi .bvi-mb-4,html body .bvi .bvi-my-4{margin-bottom:1.5rem !important}html body .bvi .bvi-ml-4,html body .bvi .bvi-mx-4{margin-left:1.5rem !important}html body .bvi .bvi-m-5{margin:3rem !important}html body .bvi .bvi-mt-5,html body .bvi .bvi-my-5{margin-top:3rem !important}html body .bvi .bvi-mr-5,html body .bvi .bvi-mx-5{margin-right:3rem !important}html body .bvi .bvi-mb-5,html body .bvi .bvi-my-5{margin-bottom:3rem !important}html body .bvi .bvi-ml-5,html body .bvi .bvi-mx-5{margin-left:3rem !important}html body .bvi .bvi-p-0{padding:0 !important}html body .bvi .bvi-pt-0,html body .bvi .bvi-py-0{padding-top:0 !important}html body .bvi .bvi-pr-0,html body .bvi .bvi-px-0{padding-right:0 !important}html body .bvi .bvi-pb-0,html body .bvi .bvi-py-0{padding-bottom:0 !important}html body .bvi .bvi-pl-0,html body .bvi .bvi-px-0{padding-left:0 !important}html body .bvi .bvi-p-1{padding:.25rem !important}html body .bvi .bvi-pt-1,html body .bvi .bvi-py-1{padding-top:.25rem !important}html body .bvi .bvi-pr-1,html body .bvi .bvi-px-1{padding-right:.25rem !important}html body .bvi .bvi-pb-1,html body .bvi .bvi-py-1{padding-bottom:.25rem !important}html body .bvi .bvi-pl-1,html body .bvi .bvi-px-1{padding-left:.25rem !important}html body .bvi .bvi-p-2{padding:.5rem !important}html body .bvi .bvi-pt-2,html body .bvi .bvi-py-2{padding-top:.5rem !important}html body .bvi .bvi-pr-2,html body .bvi .bvi-px-2{padding-right:.5rem !important}html body .bvi .bvi-pb-2,html body .bvi .bvi-py-2{padding-bottom:.5rem !important}html body .bvi .bvi-pl-2,html body .bvi .bvi-px-2{padding-left:.5rem !important}html body .bvi .bvi-p-3{padding:1rem !important}html body .bvi .bvi-pt-3,html body .bvi .bvi-py-3{padding-top:1rem !important}html body .bvi .bvi-pr-3,html body .bvi .bvi-px-3{padding-right:1rem !important}html body .bvi .bvi-pb-3,html body .bvi .bvi-py-3{padding-bottom:1rem !important}html body .bvi .bvi-pl-3,html body .bvi .bvi-px-3{padding-left:1rem !important}html body .bvi .bvi-p-4{padding:1.5rem !important}html body .bvi .bvi-pt-4,html body .bvi .bvi-py-4{padding-top:1.5rem !important}html body .bvi .bvi-pr-4,html body .bvi .bvi-px-4{padding-right:1.5rem !important}html body .bvi .bvi-pb-4,html body .bvi .bvi-py-4{padding-bottom:1.5rem !important}html body .bvi .bvi-pl-4,html body .bvi .bvi-px-4{padding-left:1.5rem !important}html body .bvi .bvi-p-5{padding:3rem !important}html body .bvi .bvi-pt-5,html body .bvi .bvi-py-5{padding-top:3rem !important}html body .bvi .bvi-pr-5,html body .bvi .bvi-px-5{padding-right:3rem !important}html body .bvi .bvi-pb-5,html body .bvi .bvi-py-5{padding-bottom:3rem !important}html body .bvi .bvi-pl-5,html body .bvi .bvi-px-5{padding-left:3rem !important}html body .bvi .bvi-m-auto{margin:auto !important}html body .bvi .bvi-mt-auto,html body .bvi .bvi-my-auto{margin-top:auto !important}html body .bvi .bvi-mr-auto,html body .bvi .bvi-mx-auto{margin-right:auto !important}html body .bvi .bvi-mb-auto,html body .bvi .bvi-my-auto{margin-bottom:auto !important}html body .bvi .bvi-ml-auto,html body .bvi .bvi-mx-auto{margin-left:auto !important}@media(min-width:576px){html body .bvi .bvi-m-sm-0{margin:0 !important}html body .bvi .bvi-mt-sm-0,html body .bvi .bvi-my-sm-0{margin-top:0 !important}html body .bvi .bvi-mr-sm-0,html body .bvi .bvi-mx-sm-0{margin-right:0 !important}html body .bvi .bvi-mb-sm-0,html body .bvi .bvi-my-sm-0{margin-bottom:0 !important}html body .bvi .bvi-ml-sm-0,html body .bvi .bvi-mx-sm-0{margin-left:0 !important}html body .bvi .bvi-m-sm-1{margin:.25rem !important}html body .bvi .bvi-mt-sm-1,html body .bvi .bvi-my-sm-1{margin-top:.25rem !important}html body .bvi .bvi-mr-sm-1,html body .bvi .bvi-mx-sm-1{margin-right:.25rem !important}html body .bvi .bvi-mb-sm-1,html body .bvi .bvi-my-sm-1{margin-bottom:.25rem !important}html body .bvi .bvi-ml-sm-1,html body .bvi .bvi-mx-sm-1{margin-left:.25rem !important}html body .bvi .bvi-m-sm-2{margin:.5rem !important}html body .bvi .bvi-mt-sm-2,html body .bvi .bvi-my-sm-2{margin-top:.5rem !important}html body .bvi .bvi-mr-sm-2,html body .bvi .bvi-mx-sm-2{margin-right:.5rem !important}html body .bvi .bvi-mb-sm-2,html body .bvi .bvi-my-sm-2{margin-bottom:.5rem !important}html body .bvi .bvi-ml-sm-2,html body .bvi .bvi-mx-sm-2{margin-left:.5rem !important}html body .bvi .bvi-m-sm-3{margin:1rem !important}html body .bvi .bvi-mt-sm-3,html body .bvi .bvi-my-sm-3{margin-top:1rem !important}html body .bvi .bvi-mr-sm-3,html body .bvi .bvi-mx-sm-3{margin-right:1rem !important}html body .bvi .bvi-mb-sm-3,html body .bvi .bvi-my-sm-3{margin-bottom:1rem !important}html body .bvi .bvi-ml-sm-3,html body .bvi .bvi-mx-sm-3{margin-left:1rem !important}html body .bvi .bvi-m-sm-4{margin:1.5rem !important}html body .bvi .bvi-mt-sm-4,html body .bvi .bvi-my-sm-4{margin-top:1.5rem !important}html body .bvi .bvi-mr-sm-4,html body .bvi .bvi-mx-sm-4{margin-right:1.5rem !important}html body .bvi .bvi-mb-sm-4,html body .bvi .bvi-my-sm-4{margin-bottom:1.5rem !important}html body .bvi .bvi-ml-sm-4,html body .bvi .bvi-mx-sm-4{margin-left:1.5rem !important}html body .bvi .bvi-m-sm-5{margin:3rem !important}html body .bvi .bvi-mt-sm-5,html body .bvi .bvi-my-sm-5{margin-top:3rem !important}html body .bvi .bvi-mr-sm-5,html body .bvi .bvi-mx-sm-5{margin-right:3rem !important}html body .bvi .bvi-mb-sm-5,html body .bvi .bvi-my-sm-5{margin-bottom:3rem !important}html body .bvi .bvi-ml-sm-5,html body .bvi .bvi-mx-sm-5{margin-left:3rem !important}html body .bvi .bvi-p-sm-0{padding:0 !important}html body .bvi .bvi-pt-sm-0,html body .bvi .bvi-py-sm-0{padding-top:0 !important}html body .bvi .bvi-pr-sm-0,html body .bvi .bvi-px-sm-0{padding-right:0 !important}html body .bvi .bvi-pb-sm-0,html body .bvi .bvi-py-sm-0{padding-bottom:0 !important}html body .bvi .bvi-pl-sm-0,html body .bvi .bvi-px-sm-0{padding-left:0 !important}html body .bvi .bvi-p-sm-1{padding:.25rem !important}html body .bvi .bvi-pt-sm-1,html body .bvi .bvi-py-sm-1{padding-top:.25rem !important}html body .bvi .bvi-pr-sm-1,html body .bvi .bvi-px-sm-1{padding-right:.25rem !important}html body .bvi .bvi-pb-sm-1,html body .bvi .bvi-py-sm-1{padding-bottom:.25rem !important}html body .bvi .bvi-pl-sm-1,html body .bvi .bvi-px-sm-1{padding-left:.25rem !important}html body .bvi .bvi-p-sm-2{padding:.5rem !important}html body .bvi .bvi-pt-sm-2,html body .bvi .bvi-py-sm-2{padding-top:.5rem !important}html body .bvi .bvi-pr-sm-2,html body .bvi .bvi-px-sm-2{padding-right:.5rem !important}html body .bvi .bvi-pb-sm-2,html body .bvi .bvi-py-sm-2{padding-bottom:.5rem !important}html body .bvi .bvi-pl-sm-2,html body .bvi .bvi-px-sm-2{padding-left:.5rem !important}html body .bvi .bvi-p-sm-3{padding:1rem !important}html body .bvi .bvi-pt-sm-3,html body .bvi .bvi-py-sm-3{padding-top:1rem !important}html body .bvi .bvi-pr-sm-3,html body .bvi .bvi-px-sm-3{padding-right:1rem !important}html body .bvi .bvi-pb-sm-3,html body .bvi .bvi-py-sm-3{padding-bottom:1rem !important}html body .bvi .bvi-pl-sm-3,html body .bvi .bvi-px-sm-3{padding-left:1rem !important}html body .bvi .bvi-p-sm-4{padding:1.5rem !important}html body .bvi .bvi-pt-sm-4,html body .bvi .bvi-py-sm-4{padding-top:1.5rem !important}html body .bvi .bvi-pr-sm-4,html body .bvi .bvi-px-sm-4{padding-right:1.5rem !important}html body .bvi .bvi-pb-sm-4,html body .bvi .bvi-py-sm-4{padding-bottom:1.5rem !important}html body .bvi .bvi-pl-sm-4,html body .bvi .bvi-px-sm-4{padding-left:1.5rem !important}html body .bvi .bvi-p-sm-5{padding:3rem !important}html body .bvi .bvi-pt-sm-5,html body .bvi .bvi-py-sm-5{padding-top:3rem !important}html body .bvi .bvi-pr-sm-5,html body .bvi .bvi-px-sm-5{padding-right:3rem !important}html body .bvi .bvi-pb-sm-5,html body .bvi .bvi-py-sm-5{padding-bottom:3rem !important}html body .bvi .bvi-pl-sm-5,html body .bvi .bvi-px-sm-5{padding-left:3rem !important}html body .bvi .bvi-m-sm-auto{margin:auto !important}html body .bvi .bvi-mt-sm-auto,html body .bvi .bvi-my-sm-auto{margin-top:auto !important}html body .bvi .bvi-mr-sm-auto,html body .bvi .bvi-mx-sm-auto{margin-right:auto !important}html body .bvi .bvi-mb-sm-auto,html body .bvi .bvi-my-sm-auto{margin-bottom:auto !important}html body .bvi .bvi-ml-sm-auto,html body .bvi .bvi-mx-sm-auto{margin-left:auto !important}}@media(min-width:768px){html body .bvi .bvi-m-md-0{margin:0 !important}html body .bvi .bvi-mt-md-0,html body .bvi .bvi-my-md-0{margin-top:0 !important}html body .bvi .bvi-mr-md-0,html body .bvi .bvi-mx-md-0{margin-right:0 !important}html body .bvi .bvi-mb-md-0,html body .bvi .bvi-my-md-0{margin-bottom:0 !important}html body .bvi .bvi-ml-md-0,html body .bvi .bvi-mx-md-0{margin-left:0 !important}html body .bvi .bvi-m-md-1{margin:.25rem !important}html body .bvi .bvi-mt-md-1,html body .bvi .bvi-my-md-1{margin-top:.25rem !important}html body .bvi .bvi-mr-md-1,html body .bvi .bvi-mx-md-1{margin-right:.25rem !important}html body .bvi .bvi-mb-md-1,html body .bvi .bvi-my-md-1{margin-bottom:.25rem !important}html body .bvi .bvi-ml-md-1,html body .bvi .bvi-mx-md-1{margin-left:.25rem !important}html body .bvi .bvi-m-md-2{margin:.5rem !important}html body .bvi .bvi-mt-md-2,html body .bvi .bvi-my-md-2{margin-top:.5rem !important}html body .bvi .bvi-mr-md-2,html body .bvi .bvi-mx-md-2{margin-right:.5rem !important}html body .bvi .bvi-mb-md-2,html body .bvi .bvi-my-md-2{margin-bottom:.5rem !important}html body .bvi .bvi-ml-md-2,html body .bvi .bvi-mx-md-2{margin-left:.5rem !important}html body .bvi .bvi-m-md-3{margin:1rem !important}html body .bvi .bvi-mt-md-3,html body .bvi .bvi-my-md-3{margin-top:1rem !important}html body .bvi .bvi-mr-md-3,html body .bvi .bvi-mx-md-3{margin-right:1rem !important}html body .bvi .bvi-mb-md-3,html body .bvi .bvi-my-md-3{margin-bottom:1rem !important}html body .bvi .bvi-ml-md-3,html body .bvi .bvi-mx-md-3{margin-left:1rem !important}html body .bvi .bvi-m-md-4{margin:1.5rem !important}html body .bvi .bvi-mt-md-4,html body .bvi .bvi-my-md-4{margin-top:1.5rem !important}html body .bvi .bvi-mr-md-4,html body .bvi .bvi-mx-md-4{margin-right:1.5rem !important}html body .bvi .bvi-mb-md-4,html body .bvi .bvi-my-md-4{margin-bottom:1.5rem !important}html body .bvi .bvi-ml-md-4,html body .bvi .bvi-mx-md-4{margin-left:1.5rem !important}html body .bvi .bvi-m-md-5{margin:3rem !important}html body .bvi .bvi-mt-md-5,html body .bvi .bvi-my-md-5{margin-top:3rem !important}html body .bvi .bvi-mr-md-5,html body .bvi .bvi-mx-md-5{margin-right:3rem !important}html body .bvi .bvi-mb-md-5,html body .bvi .bvi-my-md-5{margin-bottom:3rem !important}html body .bvi .bvi-ml-md-5,html body .bvi .bvi-mx-md-5{margin-left:3rem !important}html body .bvi .bvi-p-md-0{padding:0 !important}html body .bvi .bvi-pt-md-0,html body .bvi .bvi-py-md-0{padding-top:0 !important}html body .bvi .bvi-pr-md-0,html body .bvi .bvi-px-md-0{padding-right:0 !important}html body .bvi .bvi-pb-md-0,html body .bvi .bvi-py-md-0{padding-bottom:0 !important}html body .bvi .bvi-pl-md-0,html body .bvi .bvi-px-md-0{padding-left:0 !important}html body .bvi .bvi-p-md-1{padding:.25rem !important}html body .bvi .bvi-pt-md-1,html body .bvi .bvi-py-md-1{padding-top:.25rem !important}html body .bvi .bvi-pr-md-1,html body .bvi .bvi-px-md-1{padding-right:.25rem !important}html body .bvi .bvi-pb-md-1,html body .bvi .bvi-py-md-1{padding-bottom:.25rem !important}html body .bvi .bvi-pl-md-1,html body .bvi .bvi-px-md-1{padding-left:.25rem !important}html body .bvi .bvi-p-md-2{padding:.5rem !important}html body .bvi .bvi-pt-md-2,html body .bvi .bvi-py-md-2{padding-top:.5rem !important}html body .bvi .bvi-pr-md-2,html body .bvi .bvi-px-md-2{padding-right:.5rem !important}html body .bvi .bvi-pb-md-2,html body .bvi .bvi-py-md-2{padding-bottom:.5rem !important}html body .bvi .bvi-pl-md-2,html body .bvi .bvi-px-md-2{padding-left:.5rem !important}html body .bvi .bvi-p-md-3{padding:1rem !important}html body .bvi .bvi-pt-md-3,html body .bvi .bvi-py-md-3{padding-top:1rem !important}html body .bvi .bvi-pr-md-3,html body .bvi .bvi-px-md-3{padding-right:1rem !important}html body .bvi .bvi-pb-md-3,html body .bvi .bvi-py-md-3{padding-bottom:1rem !important}html body .bvi .bvi-pl-md-3,html body .bvi .bvi-px-md-3{padding-left:1rem !important}html body .bvi .bvi-p-md-4{padding:1.5rem !important}html body .bvi .bvi-pt-md-4,html body .bvi .bvi-py-md-4{padding-top:1.5rem !important}html body .bvi .bvi-pr-md-4,html body .bvi .bvi-px-md-4{padding-right:1.5rem !important}html body .bvi .bvi-pb-md-4,html body .bvi .bvi-py-md-4{padding-bottom:1.5rem !important}html body .bvi .bvi-pl-md-4,html body .bvi .bvi-px-md-4{padding-left:1.5rem !important}html body .bvi .bvi-p-md-5{padding:3rem !important}html body .bvi .bvi-pt-md-5,html body .bvi .bvi-py-md-5{padding-top:3rem !important}html body .bvi .bvi-pr-md-5,html body .bvi .bvi-px-md-5{padding-right:3rem !important}html body .bvi .bvi-pb-md-5,html body .bvi .bvi-py-md-5{padding-bottom:3rem !important}html body .bvi .bvi-pl-md-5,html body .bvi .bvi-px-md-5{padding-left:3rem !important}html body .bvi .bvi-m-md-auto{margin:auto !important}html body .bvi .bvi-mt-md-auto,html body .bvi .bvi-my-md-auto{margin-top:auto !important}html body .bvi .bvi-mr-md-auto,html body .bvi .bvi-mx-md-auto{margin-right:auto !important}html body .bvi .bvi-mb-md-auto,html body .bvi .bvi-my-md-auto{margin-bottom:auto !important}html body .bvi .bvi-ml-md-auto,html body .bvi .bvi-mx-md-auto{margin-left:auto !important}}@media(min-width:992px){html body .bvi .bvi-m-lg-0{margin:0 !important}html body .bvi .bvi-mt-lg-0,html body .bvi .bvi-my-lg-0{margin-top:0 !important}html body .bvi .bvi-mr-lg-0,html body .bvi .bvi-mx-lg-0{margin-right:0 !important}html body .bvi .bvi-mb-lg-0,html body .bvi .bvi-my-lg-0{margin-bottom:0 !important}html body .bvi .bvi-ml-lg-0,html body .bvi .bvi-mx-lg-0{margin-left:0 !important}html body .bvi .bvi-m-lg-1{margin:.25rem !important}html body .bvi .bvi-mt-lg-1,html body .bvi .bvi-my-lg-1{margin-top:.25rem !important}html body .bvi .bvi-mr-lg-1,html body .bvi .bvi-mx-lg-1{margin-right:.25rem !important}html body .bvi .bvi-mb-lg-1,html body .bvi .bvi-my-lg-1{margin-bottom:.25rem !important}html body .bvi .bvi-ml-lg-1,html body .bvi .bvi-mx-lg-1{margin-left:.25rem !important}html body .bvi .bvi-m-lg-2{margin:.5rem !important}html body .bvi .bvi-mt-lg-2,html body .bvi .bvi-my-lg-2{margin-top:.5rem !important}html body .bvi .bvi-mr-lg-2,html body .bvi .bvi-mx-lg-2{margin-right:.5rem !important}html body .bvi .bvi-mb-lg-2,html body .bvi .bvi-my-lg-2{margin-bottom:.5rem !important}html body .bvi .bvi-ml-lg-2,html body .bvi .bvi-mx-lg-2{margin-left:.5rem !important}html body .bvi .bvi-m-lg-3{margin:1rem !important}html body .bvi .bvi-mt-lg-3,html body .bvi .bvi-my-lg-3{margin-top:1rem !important}html body .bvi .bvi-mr-lg-3,html body .bvi .bvi-mx-lg-3{margin-right:1rem !important}html body .bvi .bvi-mb-lg-3,html body .bvi .bvi-my-lg-3{margin-bottom:1rem !important}html body .bvi .bvi-ml-lg-3,html body .bvi .bvi-mx-lg-3{margin-left:1rem !important}html body .bvi .bvi-m-lg-4{margin:1.5rem !important}html body .bvi .bvi-mt-lg-4,html body .bvi .bvi-my-lg-4{margin-top:1.5rem !important}html body .bvi .bvi-mr-lg-4,html body .bvi .bvi-mx-lg-4{margin-right:1.5rem !important}html body .bvi .bvi-mb-lg-4,html body .bvi .bvi-my-lg-4{margin-bottom:1.5rem !important}html body .bvi .bvi-ml-lg-4,html body .bvi .bvi-mx-lg-4{margin-left:1.5rem !important}html body .bvi .bvi-m-lg-5{margin:3rem !important}html body .bvi .bvi-mt-lg-5,html body .bvi .bvi-my-lg-5{margin-top:3rem !important}html body .bvi .bvi-mr-lg-5,html body .bvi .bvi-mx-lg-5{margin-right:3rem !important}html body .bvi .bvi-mb-lg-5,html body .bvi .bvi-my-lg-5{margin-bottom:3rem !important}html body .bvi .bvi-ml-lg-5,html body .bvi .bvi-mx-lg-5{margin-left:3rem !important}html body .bvi .bvi-p-lg-0{padding:0 !important}html body .bvi .bvi-pt-lg-0,html body .bvi .bvi-py-lg-0{padding-top:0 !important}html body .bvi .bvi-pr-lg-0,html body .bvi .bvi-px-lg-0{padding-right:0 !important}html body .bvi .bvi-pb-lg-0,html body .bvi .bvi-py-lg-0{padding-bottom:0 !important}html body .bvi .bvi-pl-lg-0,html body .bvi .bvi-px-lg-0{padding-left:0 !important}html body .bvi .bvi-p-lg-1{padding:.25rem !important}html body .bvi .bvi-pt-lg-1,html body .bvi .bvi-py-lg-1{padding-top:.25rem !important}html body .bvi .bvi-pr-lg-1,html body .bvi .bvi-px-lg-1{padding-right:.25rem !important}html body .bvi .bvi-pb-lg-1,html body .bvi .bvi-py-lg-1{padding-bottom:.25rem !important}html body .bvi .bvi-pl-lg-1,html body .bvi .bvi-px-lg-1{padding-left:.25rem !important}html body .bvi .bvi-p-lg-2{padding:.5rem !important}html body .bvi .bvi-pt-lg-2,html body .bvi .bvi-py-lg-2{padding-top:.5rem !important}html body .bvi .bvi-pr-lg-2,html body .bvi .bvi-px-lg-2{padding-right:.5rem !important}html body .bvi .bvi-pb-lg-2,html body .bvi .bvi-py-lg-2{padding-bottom:.5rem !important}html body .bvi .bvi-pl-lg-2,html body .bvi .bvi-px-lg-2{padding-left:.5rem !important}html body .bvi .bvi-p-lg-3{padding:1rem !important}html body .bvi .bvi-pt-lg-3,html body .bvi .bvi-py-lg-3{padding-top:1rem !important}html body .bvi .bvi-pr-lg-3,html body .bvi .bvi-px-lg-3{padding-right:1rem !important}html body .bvi .bvi-pb-lg-3,html body .bvi .bvi-py-lg-3{padding-bottom:1rem !important}html body .bvi .bvi-pl-lg-3,html body .bvi .bvi-px-lg-3{padding-left:1rem !important}html body .bvi .bvi-p-lg-4{padding:1.5rem !important}html body .bvi .bvi-pt-lg-4,html body .bvi .bvi-py-lg-4{padding-top:1.5rem !important}html body .bvi .bvi-pr-lg-4,html body .bvi .bvi-px-lg-4{padding-right:1.5rem !important}html body .bvi .bvi-pb-lg-4,html body .bvi .bvi-py-lg-4{padding-bottom:1.5rem !important}html body .bvi .bvi-pl-lg-4,html body .bvi .bvi-px-lg-4{padding-left:1.5rem !important}html body .bvi .bvi-p-lg-5{padding:3rem !important}html body .bvi .bvi-pt-lg-5,html body .bvi .bvi-py-lg-5{padding-top:3rem !important}html body .bvi .bvi-pr-lg-5,html body .bvi .bvi-px-lg-5{padding-right:3rem !important}html body .bvi .bvi-pb-lg-5,html body .bvi .bvi-py-lg-5{padding-bottom:3rem !important}html body .bvi .bvi-pl-lg-5,html body .bvi .bvi-px-lg-5{padding-left:3rem !important}html body .bvi .bvi-m-lg-auto{margin:auto !important}html body .bvi .bvi-mt-lg-auto,html body .bvi .bvi-my-lg-auto{margin-top:auto !important}html body .bvi .bvi-mr-lg-auto,html body .bvi .bvi-mx-lg-auto{margin-right:auto !important}html body .bvi .bvi-mb-lg-auto,html body .bvi .bvi-my-lg-auto{margin-bottom:auto !important}html body .bvi .bvi-ml-lg-auto,html body .bvi .bvi-mx-lg-auto{margin-left:auto !important}}@media(min-width:1200px){html body .bvi .bvi-m-xl-0{margin:0 !important}html body .bvi .bvi-mt-xl-0,html body .bvi .bvi-my-xl-0{margin-top:0 !important}html body .bvi .bvi-mr-xl-0,html body .bvi .bvi-mx-xl-0{margin-right:0 !important}html body .bvi .bvi-mb-xl-0,html body .bvi .bvi-my-xl-0{margin-bottom:0 !important}html body .bvi .bvi-ml-xl-0,html body .bvi .bvi-mx-xl-0{margin-left:0 !important}html body .bvi .bvi-m-xl-1{margin:.25rem !important}html body .bvi .bvi-mt-xl-1,html body .bvi .bvi-my-xl-1{margin-top:.25rem !important}html body .bvi .bvi-mr-xl-1,html body .bvi .bvi-mx-xl-1{margin-right:.25rem !important}html body .bvi .bvi-mb-xl-1,html body .bvi .bvi-my-xl-1{margin-bottom:.25rem !important}html body .bvi .bvi-ml-xl-1,html body .bvi .bvi-mx-xl-1{margin-left:.25rem !important}html body .bvi .bvi-m-xl-2{margin:.5rem !important}html body .bvi .bvi-mt-xl-2,html body .bvi .bvi-my-xl-2{margin-top:.5rem !important}html body .bvi .bvi-mr-xl-2,html body .bvi .bvi-mx-xl-2{margin-right:.5rem !important}html body .bvi .bvi-mb-xl-2,html body .bvi .bvi-my-xl-2{margin-bottom:.5rem !important}html body .bvi .bvi-ml-xl-2,html body .bvi .bvi-mx-xl-2{margin-left:.5rem !important}html body .bvi .bvi-m-xl-3{margin:1rem !important}html body .bvi .bvi-mt-xl-3,html body .bvi .bvi-my-xl-3{margin-top:1rem !important}html body .bvi .bvi-mr-xl-3,html body .bvi .bvi-mx-xl-3{margin-right:1rem !important}html body .bvi .bvi-mb-xl-3,html body .bvi .bvi-my-xl-3{margin-bottom:1rem !important}html body .bvi .bvi-ml-xl-3,html body .bvi .bvi-mx-xl-3{margin-left:1rem !important}html body .bvi .bvi-m-xl-4{margin:1.5rem !important}html body .bvi .bvi-mt-xl-4,html body .bvi .bvi-my-xl-4{margin-top:1.5rem !important}html body .bvi .bvi-mr-xl-4,html body .bvi .bvi-mx-xl-4{margin-right:1.5rem !important}html body .bvi .bvi-mb-xl-4,html body .bvi .bvi-my-xl-4{margin-bottom:1.5rem !important}html body .bvi .bvi-ml-xl-4,html body .bvi .bvi-mx-xl-4{margin-left:1.5rem !important}html body .bvi .bvi-m-xl-5{margin:3rem !important}html body .bvi .bvi-mt-xl-5,html body .bvi .bvi-my-xl-5{margin-top:3rem !important}html body .bvi .bvi-mr-xl-5,html body .bvi .bvi-mx-xl-5{margin-right:3rem !important}html body .bvi .bvi-mb-xl-5,html body .bvi .bvi-my-xl-5{margin-bottom:3rem !important}html body .bvi .bvi-ml-xl-5,html body .bvi .bvi-mx-xl-5{margin-left:3rem !important}html body .bvi .bvi-p-xl-0{padding:0 !important}html body .bvi .bvi-pt-xl-0,html body .bvi .bvi-py-xl-0{padding-top:0 !important}html body .bvi .bvi-pr-xl-0,html body .bvi .bvi-px-xl-0{padding-right:0 !important}html body .bvi .bvi-pb-xl-0,html body .bvi .bvi-py-xl-0{padding-bottom:0 !important}html body .bvi .bvi-pl-xl-0,html body .bvi .bvi-px-xl-0{padding-left:0 !important}html body .bvi .bvi-p-xl-1{padding:.25rem !important}html body .bvi .bvi-pt-xl-1,html body .bvi .bvi-py-xl-1{padding-top:.25rem !important}html body .bvi .bvi-pr-xl-1,html body .bvi .bvi-px-xl-1{padding-right:.25rem !important}html body .bvi .bvi-pb-xl-1,html body .bvi .bvi-py-xl-1{padding-bottom:.25rem !important}html body .bvi .bvi-pl-xl-1,html body .bvi .bvi-px-xl-1{padding-left:.25rem !important}html body .bvi .bvi-p-xl-2{padding:.5rem !important}html body .bvi .bvi-pt-xl-2,html body .bvi .bvi-py-xl-2{padding-top:.5rem !important}html body .bvi .bvi-pr-xl-2,html body .bvi .bvi-px-xl-2{padding-right:.5rem !important}html body .bvi .bvi-pb-xl-2,html body .bvi .bvi-py-xl-2{padding-bottom:.5rem !important}html body .bvi .bvi-pl-xl-2,html body .bvi .bvi-px-xl-2{padding-left:.5rem !important}html body .bvi .bvi-p-xl-3{padding:1rem !important}html body .bvi .bvi-pt-xl-3,html body .bvi .bvi-py-xl-3{padding-top:1rem !important}html body .bvi .bvi-pr-xl-3,html body .bvi .bvi-px-xl-3{padding-right:1rem !important}html body .bvi .bvi-pb-xl-3,html body .bvi .bvi-py-xl-3{padding-bottom:1rem !important}html body .bvi .bvi-pl-xl-3,html body .bvi .bvi-px-xl-3{padding-left:1rem !important}html body .bvi .bvi-p-xl-4{padding:1.5rem !important}html body .bvi .bvi-pt-xl-4,html body .bvi .bvi-py-xl-4{padding-top:1.5rem !important}html body .bvi .bvi-pr-xl-4,html body .bvi .bvi-px-xl-4{padding-right:1.5rem !important}html body .bvi .bvi-pb-xl-4,html body .bvi .bvi-py-xl-4{padding-bottom:1.5rem !important}html body .bvi .bvi-pl-xl-4,html body .bvi .bvi-px-xl-4{padding-left:1.5rem !important}html body .bvi .bvi-p-xl-5{padding:3rem !important}html body .bvi .bvi-pt-xl-5,html body .bvi .bvi-py-xl-5{padding-top:3rem !important}html body .bvi .bvi-pr-xl-5,html body .bvi .bvi-px-xl-5{padding-right:3rem !important}html body .bvi .bvi-pb-xl-5,html body .bvi .bvi-py-xl-5{padding-bottom:3rem !important}html body .bvi .bvi-pl-xl-5,html body .bvi .bvi-px-xl-5{padding-left:3rem !important}html body .bvi .bvi-m-xl-auto{margin:auto !important}html body .bvi .bvi-mt-xl-auto,html body .bvi .bvi-my-xl-auto{margin-top:auto !important}html body .bvi .bvi-mr-xl-auto,html body .bvi .bvi-mx-xl-auto{margin-right:auto !important}html body .bvi .bvi-mb-xl-auto,html body .bvi .bvi-my-xl-auto{margin-bottom:auto !important}html body .bvi .bvi-ml-xl-auto,html body .bvi .bvi-mx-xl-auto{margin-left:auto !important}}html body .bvi.bvi-panel{padding:15px 20px !important;color:black !important;background-color:#f8f8f8;top:0 !important;left:0 !important;right:0 !important;letter-spacing:0 !important;position:relative !important;text-shadow:none !important;line-height:normal !important;border:0 !important;font-size:16px !important;z-index:99999 !important;moz-box-shadow:0 1px 3px 0 rgba(0,0,0,0.23);webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,0.23);box-shadow:0 1px 3px 0 rgba(0,0,0,0.23)}html body .bvi.bvi-panel[data-bvi-panel='true']{display:block !important}html body .bvi.bvi-panel[data-bvi-panel='false']{display:none !important}html body .bvi.bvi-panel.bvi-fixed-top{position:fixed !important;top:0 !important;right:0 !important;left:0 !important;z-index:999999 !important}html body .bvi.bvi-panel .bvi-title{margin-top:5px;font-size:18px;font-weight:bold}html body .bvi.bvi-panel .bvi-text-center{text-align:center}html body .bvi.bvi-panel .bvi-text-right{text-align:right}html body .bvi.bvi-panel .bvi-setting-menu{display:none}html body .bvi.bvi-panel a{text-decoration:none}html body .bvi.bvi-panel .bvi-hr{background-color:#ccc !important;border:0 !important;height:1px !important;margin-top:1.5em !important;margin-bottom:1.5em !important}html body .bvi.bvi-panel .bvi-copy{font-size:12px;color:gray}html body .bvi.bvi-panel .bvi-copy a{font-size:13px;color:gray;text-decoration:underline}html body .bvi.bvi-panel .bvi-copy a:hover{color:#000;text-decoration:underline}@media(max-width:575.98px){html body .bvi.bvi-panel .bvi-title{font-size:12px}html body .bvi.bvi-panel .bvi-btn{font-size:12px;padding:.200rem .35rem}html body .bvi.bvi-panel .bvi-btn-sm,html body .bvi.bvi-panel .bvi-btn-group-sm>.bvi-btn{font-size:10px;padding:.100rem .25rem}}@media(min-width:576px) and (max-width:767.98px){html body .bvi.bvi-panel .bvi-title{font-size:14px}html body .bvi.bvi-panel .bvi-btn{font-size:14px;padding:.250rem .45rem}html body .bvi.bvi-panel .bvi-btn-sm,html body .bvi.bvi-panel .bvi-btn-group-sm>.bvi-btn{font-size:12px;padding:.150rem .35rem}}@media(min-width:768px) and (max-width:991.98px){html body .bvi.bvi-panel .bvi-title{font-size:16px}html body .bvi.bvi-panel .bvi-btn{font-size:16px;padding:.300rem .55rem}html body .bvi.bvi-panel .bvi-btn-sm,html body .bvi.bvi-panel .bvi-btn-group-sm>.bvi-btn{font-size:14px;padding:.200rem .40rem}}html body .bvi-body[data-bvi-theme='white']{background-color:#fff !important;fill:#000 !important}html body .bvi-body[data-bvi-theme='white'] *{background-color:#fff !important;background:#fff !important;background-image:none !important;box-shadow:none !important;text-shadow:none !important;border-color:#000 !important;color:#000 !important;fill:#000 !important}html body .bvi-body[data-bvi-theme='white'] * .bvi-hide{display:none !important}html body .bvi-body[data-bvi-theme='white'] * .bvi-show-block{display:block !important}html body .bvi-body[data-bvi-theme='white'] * .bvi-show-inline-block{display:inline-block !important}html body .bvi-body[data-bvi-theme='white'] *:after{background-color:#fff !important;background:#fff !important;background-image:none !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important;border-color:#000 !important}html body .bvi-body[data-bvi-theme='white'] *:before{background-color:#fff !important;background:#fff !important;background-image:none !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important;border-color:#000 !important}html body .bvi-body[data-bvi-theme='white'] *::selection{background-color:#000;color:#fff}html body .bvi-body[data-bvi-theme='white'] * a,html body .bvi-body[data-bvi-theme='white'] * label{color:#000 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='white'] * a.active,html body .bvi-body[data-bvi-theme='white'] * label.active{color:#fff !important;background-color:#000 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='white'] * a:hover,html body .bvi-body[data-bvi-theme='white'] * label:hover{color:#fff !important;background-color:#000 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='white'] * a:hover *,html body .bvi-body[data-bvi-theme='white'] * label:hover *{color:#fff !important;background-color:#000 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='white'] * button,html body .bvi-body[data-bvi-theme='white'] * input[type="submit"],html body .bvi-body[data-bvi-theme='white'] * input[type="button"],html body .bvi-body[data-bvi-theme='white'] * button[type="submit"],html body .bvi-body[data-bvi-theme='white'] * button[type="button"]{color:#fff !important;background:#000 !important;background-color:#000 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='white'] * button:hover.active,html body .bvi-body[data-bvi-theme='white'] * input[type="button"]:hover.active,html body .bvi-body[data-bvi-theme='white'] * input[type="submit"]:hover.active,html body .bvi-body[data-bvi-theme='white'] * button[type="submit"]:hover.active,html body .bvi-body[data-bvi-theme='white'] * button[type="button"]:hover.active{color:#fff !important;background:#000 !important;background-color:#000 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='white'] * button:hover:hover,html body .bvi-body[data-bvi-theme='white'] * input[type="button"]:hover:hover,html body .bvi-body[data-bvi-theme='white'] * input[type="submit"]:hover:hover,html body .bvi-body[data-bvi-theme='white'] * button[type="submit"]:hover:hover,html body .bvi-body[data-bvi-theme='white'] * button[type="button"]:hover:hover{color:#fff !important;background:#000 !important;background-color:#000 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='white'] * button:hover:hover *,html body .bvi-body[data-bvi-theme='white'] * input[type="button"]:hover:hover *,html body .bvi-body[data-bvi-theme='white'] * input[type="submit"]:hover:hover *,html body .bvi-body[data-bvi-theme='white'] * button[type="submit"]:hover:hover *,html body .bvi-body[data-bvi-theme='white'] * button[type="button"]:hover:hover *{color:#fff !important;background:#000 !important;background-color:#000 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='black']{background-color:#000 !important;fill:#fff !important}html body .bvi-body[data-bvi-theme='black'] *{background-color:#000 !important;background:#000 !important;background-image:none !important;box-shadow:none !important;text-shadow:none !important;border-color:#fff !important;color:#fff !important;fill:#fff !important}html body .bvi-body[data-bvi-theme='black'] * .bvi-hide{display:none !important}html body .bvi-body[data-bvi-theme='black'] * .bvi-show-block{display:block !important}html body .bvi-body[data-bvi-theme='black'] * .bvi-show-inline-block{display:inline-block !important}html body .bvi-body[data-bvi-theme='black'] *:after{background-color:#000 !important;background:#000 !important;background-image:none !important;color:#fff !important;box-shadow:none !important;text-shadow:none !important;border-color:#fff !important}html body .bvi-body[data-bvi-theme='black'] *:before{background-color:#000 !important;background:#000 !important;background-image:none !important;color:#fff !important;box-shadow:none !important;text-shadow:none !important;border-color:#fff !important}html body .bvi-body[data-bvi-theme='black'] *::selection{background-color:#fff;color:#000}html body .bvi-body[data-bvi-theme='black'] * a,html body .bvi-body[data-bvi-theme='black'] * label{color:#fff !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='black'] * a.active,html body .bvi-body[data-bvi-theme='black'] * label.active{color:#000 !important;background-color:#fff !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='black'] * a:hover,html body .bvi-body[data-bvi-theme='black'] * label:hover{color:#000 !important;background-color:#fff !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='black'] * a:hover *,html body .bvi-body[data-bvi-theme='black'] * label:hover *{color:#000 !important;background-color:#fff !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='black'] * button,html body .bvi-body[data-bvi-theme='black'] * input[type="submit"],html body .bvi-body[data-bvi-theme='black'] * input[type="button"],html body .bvi-body[data-bvi-theme='black'] * button[type="submit"],html body .bvi-body[data-bvi-theme='black'] * button[type="button"]{color:#000 !important;background:#fff !important;background-color:#fff !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='black'] * button:hover.active,html body .bvi-body[data-bvi-theme='black'] * input[type="button"]:hover.active,html body .bvi-body[data-bvi-theme='black'] * input[type="submit"]:hover.active,html body .bvi-body[data-bvi-theme='black'] * button[type="submit"]:hover.active,html body .bvi-body[data-bvi-theme='black'] * button[type="button"]:hover.active{color:#000 !important;background:#fff !important;background-color:#fff !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='black'] * button:hover:hover,html body .bvi-body[data-bvi-theme='black'] * input[type="button"]:hover:hover,html body .bvi-body[data-bvi-theme='black'] * input[type="submit"]:hover:hover,html body .bvi-body[data-bvi-theme='black'] * button[type="submit"]:hover:hover,html body .bvi-body[data-bvi-theme='black'] * button[type="button"]:hover:hover{color:#000 !important;background:#fff !important;background-color:#fff !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='black'] * button:hover:hover *,html body .bvi-body[data-bvi-theme='black'] * input[type="button"]:hover:hover *,html body .bvi-body[data-bvi-theme='black'] * input[type="submit"]:hover:hover *,html body .bvi-body[data-bvi-theme='black'] * button[type="submit"]:hover:hover *,html body .bvi-body[data-bvi-theme='black'] * button[type="button"]:hover:hover *{color:#000 !important;background:#fff !important;background-color:#fff !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='blue']{background-color:#9dd1ff !important;fill:#063462 !important}html body .bvi-body[data-bvi-theme='blue'] *{background-color:#9dd1ff !important;background:#9dd1ff !important;background-image:none !important;box-shadow:none !important;text-shadow:none !important;border-color:#063462 !important;color:#063462 !important;fill:#063462 !important}html body .bvi-body[data-bvi-theme='blue'] * .bvi-hide{display:none !important}html body .bvi-body[data-bvi-theme='blue'] * .bvi-show-block{display:block !important}html body .bvi-body[data-bvi-theme='blue'] * .bvi-show-inline-block{display:inline-block !important}html body .bvi-body[data-bvi-theme='blue'] *:after{background-color:#9dd1ff !important;background:#9dd1ff !important;background-image:none !important;color:#063462 !important;box-shadow:none !important;text-shadow:none !important;border-color:#063462 !important}html body .bvi-body[data-bvi-theme='blue'] *:before{background-color:#9dd1ff !important;background:#9dd1ff !important;background-image:none !important;color:#063462 !important;box-shadow:none !important;text-shadow:none !important;border-color:#063462 !important}html body .bvi-body[data-bvi-theme='blue'] *::selection{background-color:#063462;color:#9dd1ff}html body .bvi-body[data-bvi-theme='blue'] * a,html body .bvi-body[data-bvi-theme='blue'] * label{color:#063462 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='blue'] * a.active,html body .bvi-body[data-bvi-theme='blue'] * label.active{color:#9dd1ff !important;background-color:#063462 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='blue'] * a:hover,html body .bvi-body[data-bvi-theme='blue'] * label:hover{color:#9dd1ff !important;background-color:#063462 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='blue'] * a:hover *,html body .bvi-body[data-bvi-theme='blue'] * label:hover *{color:#9dd1ff !important;background-color:#063462 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='blue'] * button,html body .bvi-body[data-bvi-theme='blue'] * input[type="submit"],html body .bvi-body[data-bvi-theme='blue'] * input[type="button"],html body .bvi-body[data-bvi-theme='blue'] * button[type="submit"],html body .bvi-body[data-bvi-theme='blue'] * button[type="button"]{color:#9dd1ff !important;background:#063462 !important;background-color:#063462 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='blue'] * button:hover.active,html body .bvi-body[data-bvi-theme='blue'] * input[type="button"]:hover.active,html body .bvi-body[data-bvi-theme='blue'] * input[type="submit"]:hover.active,html body .bvi-body[data-bvi-theme='blue'] * button[type="submit"]:hover.active,html body .bvi-body[data-bvi-theme='blue'] * button[type="button"]:hover.active{color:#9dd1ff !important;background:#063462 !important;background-color:#063462 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='blue'] * button:hover:hover,html body .bvi-body[data-bvi-theme='blue'] * input[type="button"]:hover:hover,html body .bvi-body[data-bvi-theme='blue'] * input[type="submit"]:hover:hover,html body .bvi-body[data-bvi-theme='blue'] * button[type="submit"]:hover:hover,html body .bvi-body[data-bvi-theme='blue'] * button[type="button"]:hover:hover{color:#9dd1ff !important;background:#063462 !important;background-color:#063462 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='blue'] * button:hover:hover *,html body .bvi-body[data-bvi-theme='blue'] * input[type="button"]:hover:hover *,html body .bvi-body[data-bvi-theme='blue'] * input[type="submit"]:hover:hover *,html body .bvi-body[data-bvi-theme='blue'] * button[type="submit"]:hover:hover *,html body .bvi-body[data-bvi-theme='blue'] * button[type="button"]:hover:hover *{color:#9dd1ff !important;background:#063462 !important;background-color:#063462 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='brown']{background-color:#f7f3d6 !important;fill:#4d4b43 !important}html body .bvi-body[data-bvi-theme='brown'] *{background-color:#f7f3d6 !important;background:#f7f3d6 !important;background-image:none !important;box-shadow:none !important;text-shadow:none !important;border-color:#4d4b43 !important;color:#4d4b43 !important;fill:#4d4b43 !important}html body .bvi-body[data-bvi-theme='brown'] * .bvi-hide{display:none !important}html body .bvi-body[data-bvi-theme='brown'] * .bvi-show-block{display:block !important}html body .bvi-body[data-bvi-theme='brown'] * .bvi-show-inline-block{display:inline-block !important}html body .bvi-body[data-bvi-theme='brown'] *:after{background-color:#f7f3d6 !important;background:#f7f3d6 !important;background-image:none !important;color:#4d4b43 !important;box-shadow:none !important;text-shadow:none !important;border-color:#4d4b43 !important}html body .bvi-body[data-bvi-theme='brown'] *:before{background-color:#f7f3d6 !important;background:#f7f3d6 !important;background-image:none !important;color:#4d4b43 !important;box-shadow:none !important;text-shadow:none !important;border-color:#4d4b43 !important}html body .bvi-body[data-bvi-theme='brown'] *::selection{background-color:#4d4b43;color:#f7f3d6}html body .bvi-body[data-bvi-theme='brown'] * a,html body .bvi-body[data-bvi-theme='brown'] * label{color:#4d4b43 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='brown'] * a.active,html body .bvi-body[data-bvi-theme='brown'] * label.active{color:#f7f3d6 !important;background-color:#4d4b43 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='brown'] * a:hover,html body .bvi-body[data-bvi-theme='brown'] * label:hover{color:#f7f3d6 !important;background-color:#4d4b43 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='brown'] * a:hover *,html body .bvi-body[data-bvi-theme='brown'] * label:hover *{color:#f7f3d6 !important;background-color:#4d4b43 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='brown'] * button,html body .bvi-body[data-bvi-theme='brown'] * input[type="submit"],html body .bvi-body[data-bvi-theme='brown'] * input[type="button"],html body .bvi-body[data-bvi-theme='brown'] * button[type="submit"],html body .bvi-body[data-bvi-theme='brown'] * button[type="button"]{color:#f7f3d6 !important;background:#4d4b43 !important;background-color:#4d4b43 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='brown'] * button:hover.active,html body .bvi-body[data-bvi-theme='brown'] * input[type="button"]:hover.active,html body .bvi-body[data-bvi-theme='brown'] * input[type="submit"]:hover.active,html body .bvi-body[data-bvi-theme='brown'] * button[type="submit"]:hover.active,html body .bvi-body[data-bvi-theme='brown'] * button[type="button"]:hover.active{color:#f7f3d6 !important;background:#4d4b43 !important;background-color:#4d4b43 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='brown'] * button:hover:hover,html body .bvi-body[data-bvi-theme='brown'] * input[type="button"]:hover:hover,html body .bvi-body[data-bvi-theme='brown'] * input[type="submit"]:hover:hover,html body .bvi-body[data-bvi-theme='brown'] * button[type="submit"]:hover:hover,html body .bvi-body[data-bvi-theme='brown'] * button[type="button"]:hover:hover{color:#f7f3d6 !important;background:#4d4b43 !important;background-color:#4d4b43 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='brown'] * button:hover:hover *,html body .bvi-body[data-bvi-theme='brown'] * input[type="button"]:hover:hover *,html body .bvi-body[data-bvi-theme='brown'] * input[type="submit"]:hover:hover *,html body .bvi-body[data-bvi-theme='brown'] * button[type="submit"]:hover:hover *,html body .bvi-body[data-bvi-theme='brown'] * button[type="button"]:hover:hover *{color:#f7f3d6 !important;background:#4d4b43 !important;background-color:#4d4b43 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='green']{background-color:#3b2716 !important;fill:#a9e44d !important}html body .bvi-body[data-bvi-theme='green'] *{background-color:#3b2716 !important;background:#3b2716 !important;background-image:none !important;box-shadow:none !important;text-shadow:none !important;border-color:#a9e44d !important;color:#a9e44d !important;fill:#a9e44d !important}html body .bvi-body[data-bvi-theme='green'] * .bvi-hide{display:none !important}html body .bvi-body[data-bvi-theme='green'] * .bvi-show-block{display:block !important}html body .bvi-body[data-bvi-theme='green'] * .bvi-show-inline-block{display:inline-block !important}html body .bvi-body[data-bvi-theme='green'] *:after{background-color:#3b2716 !important;background:#3b2716 !important;background-image:none !important;color:#a9e44d !important;box-shadow:none !important;text-shadow:none !important;border-color:#a9e44d !important}html body .bvi-body[data-bvi-theme='green'] *:before{background-color:#3b2716 !important;background:#3b2716 !important;background-image:none !important;color:#a9e44d !important;box-shadow:none !important;text-shadow:none !important;border-color:#a9e44d !important}html body .bvi-body[data-bvi-theme='green'] *::selection{background-color:#a9e44d;color:#3b2716}html body .bvi-body[data-bvi-theme='green'] * a,html body .bvi-body[data-bvi-theme='green'] * label{color:#a9e44d !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='green'] * a.active,html body .bvi-body[data-bvi-theme='green'] * label.active{color:#3b2716 !important;background-color:#a9e44d !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='green'] * a:hover,html body .bvi-body[data-bvi-theme='green'] * label:hover{color:#3b2716 !important;background-color:#a9e44d !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='green'] * a:hover *,html body .bvi-body[data-bvi-theme='green'] * label:hover *{color:#3b2716 !important;background-color:#a9e44d !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='green'] * button,html body .bvi-body[data-bvi-theme='green'] * input[type="submit"],html body .bvi-body[data-bvi-theme='green'] * input[type="button"],html body .bvi-body[data-bvi-theme='green'] * button[type="submit"],html body .bvi-body[data-bvi-theme='green'] * button[type="button"]{color:#3b2716 !important;background:#a9e44d !important;background-color:#a9e44d !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='green'] * button:hover.active,html body .bvi-body[data-bvi-theme='green'] * input[type="button"]:hover.active,html body .bvi-body[data-bvi-theme='green'] * input[type="submit"]:hover.active,html body .bvi-body[data-bvi-theme='green'] * button[type="submit"]:hover.active,html body .bvi-body[data-bvi-theme='green'] * button[type="button"]:hover.active{color:#3b2716 !important;background:#a9e44d !important;background-color:#a9e44d !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='green'] * button:hover:hover,html body .bvi-body[data-bvi-theme='green'] * input[type="button"]:hover:hover,html body .bvi-body[data-bvi-theme='green'] * input[type="submit"]:hover:hover,html body .bvi-body[data-bvi-theme='green'] * button[type="submit"]:hover:hover,html body .bvi-body[data-bvi-theme='green'] * button[type="button"]:hover:hover{color:#3b2716 !important;background:#a9e44d !important;background-color:#a9e44d !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='green'] * button:hover:hover *,html body .bvi-body[data-bvi-theme='green'] * input[type="button"]:hover:hover *,html body .bvi-body[data-bvi-theme='green'] * input[type="submit"]:hover:hover *,html body .bvi-body[data-bvi-theme='green'] * button[type="submit"]:hover:hover *,html body .bvi-body[data-bvi-theme='green'] * button[type="button"]:hover:hover *{color:#3b2716 !important;background:#a9e44d !important;background-color:#a9e44d !important;text-decoration:underline !important}html body .bvi-body[data-bvi-size='40'] *{font-size:40px !important}html body .bvi-body[data-bvi-size='40'] * h1,html body .bvi-body[data-bvi-size='40'] * h1 *{font-size:47px !important}html body .bvi-body[data-bvi-size='40'] * h2,html body .bvi-body[data-bvi-size='40'] * h2 *{font-size:46px !important}html body .bvi-body[data-bvi-size='40'] * h3,html body .bvi-body[data-bvi-size='40'] * h3 *{font-size:45px !important}html body .bvi-body[data-bvi-size='40'] * h4,html body .bvi-body[data-bvi-size='40'] * h4 *{font-size:44px !important}html body .bvi-body[data-bvi-size='40'] * h5,html body .bvi-body[data-bvi-size='40'] * h5 *{font-size:43px !important}html body .bvi-body[data-bvi-size='40'] * h6,html body .bvi-body[data-bvi-size='40'] * h6 *{font-size:42px !important}html body .bvi-body[data-bvi-size='39'] *{font-size:39px !important}html body .bvi-body[data-bvi-size='39'] * h1,html body .bvi-body[data-bvi-size='39'] * h1 *{font-size:46px !important}html body .bvi-body[data-bvi-size='39'] * h2,html body .bvi-body[data-bvi-size='39'] * h2 *{font-size:45px !important}html body .bvi-body[data-bvi-size='39'] * h3,html body .bvi-body[data-bvi-size='39'] * h3 *{font-size:44px !important}html body .bvi-body[data-bvi-size='39'] * h4,html body .bvi-body[data-bvi-size='39'] * h4 *{font-size:43px !important}html body .bvi-body[data-bvi-size='39'] * h5,html body .bvi-body[data-bvi-size='39'] * h5 *{font-size:42px !important}html body .bvi-body[data-bvi-size='39'] * h6,html body .bvi-body[data-bvi-size='39'] * h6 *{font-size:41px !important}html body .bvi-body[data-bvi-size='38'] *{font-size:38px !important}html body .bvi-body[data-bvi-size='38'] * h1,html body .bvi-body[data-bvi-size='38'] * h1 *{font-size:45px !important}html body .bvi-body[data-bvi-size='38'] * h2,html body .bvi-body[data-bvi-size='38'] * h2 *{font-size:44px !important}html body .bvi-body[data-bvi-size='38'] * h3,html body .bvi-body[data-bvi-size='38'] * h3 *{font-size:43px !important}html body .bvi-body[data-bvi-size='38'] * h4,html body .bvi-body[data-bvi-size='38'] * h4 *{font-size:42px !important}html body .bvi-body[data-bvi-size='38'] * h5,html body .bvi-body[data-bvi-size='38'] * h5 *{font-size:41px !important}html body .bvi-body[data-bvi-size='38'] * h6,html body .bvi-body[data-bvi-size='38'] * h6 *{font-size:40px !important}html body .bvi-body[data-bvi-size='37'] *{font-size:37px !important}html body .bvi-body[data-bvi-size='37'] * h1,html body .bvi-body[data-bvi-size='37'] * h1 *{font-size:44px !important}html body .bvi-body[data-bvi-size='37'] * h2,html body .bvi-body[data-bvi-size='37'] * h2 *{font-size:43px !important}html body .bvi-body[data-bvi-size='37'] * h3,html body .bvi-body[data-bvi-size='37'] * h3 *{font-size:42px !important}html body .bvi-body[data-bvi-size='37'] * h4,html body .bvi-body[data-bvi-size='37'] * h4 *{font-size:41px !important}html body .bvi-body[data-bvi-size='37'] * h5,html body .bvi-body[data-bvi-size='37'] * h5 *{font-size:40px !important}html body .bvi-body[data-bvi-size='37'] * h6,html body .bvi-body[data-bvi-size='37'] * h6 *{font-size:39px !important}html body .bvi-body[data-bvi-size='36'] *{font-size:36px !important}html body .bvi-body[data-bvi-size='36'] * h1,html body .bvi-body[data-bvi-size='36'] * h1 *{font-size:43px !important}html body .bvi-body[data-bvi-size='36'] * h2,html body .bvi-body[data-bvi-size='36'] * h2 *{font-size:42px !important}html body .bvi-body[data-bvi-size='36'] * h3,html body .bvi-body[data-bvi-size='36'] * h3 *{font-size:41px !important}html body .bvi-body[data-bvi-size='36'] * h4,html body .bvi-body[data-bvi-size='36'] * h4 *{font-size:40px !important}html body .bvi-body[data-bvi-size='36'] * h5,html body .bvi-body[data-bvi-size='36'] * h5 *{font-size:39px !important}html body .bvi-body[data-bvi-size='36'] * h6,html body .bvi-body[data-bvi-size='36'] * h6 *{font-size:38px !important}html body .bvi-body[data-bvi-size='35'] *{font-size:35px !important}html body .bvi-body[data-bvi-size='35'] * h1,html body .bvi-body[data-bvi-size='35'] * h1 *{font-size:42px !important}html body .bvi-body[data-bvi-size='35'] * h2,html body .bvi-body[data-bvi-size='35'] * h2 *{font-size:41px !important}html body .bvi-body[data-bvi-size='35'] * h3,html body .bvi-body[data-bvi-size='35'] * h3 *{font-size:40px !important}html body .bvi-body[data-bvi-size='35'] * h4,html body .bvi-body[data-bvi-size='35'] * h4 *{font-size:39px !important}html body .bvi-body[data-bvi-size='35'] * h5,html body .bvi-body[data-bvi-size='35'] * h5 *{font-size:38px !important}html body .bvi-body[data-bvi-size='35'] * h6,html body .bvi-body[data-bvi-size='35'] * h6 *{font-size:37px !important}html body .bvi-body[data-bvi-size='34'] *{font-size:34px !important}html body .bvi-body[data-bvi-size='34'] * h1,html body .bvi-body[data-bvi-size='34'] * h1 *{font-size:41px !important}html body .bvi-body[data-bvi-size='34'] * h2,html body .bvi-body[data-bvi-size='34'] * h2 *{font-size:40px !important}html body .bvi-body[data-bvi-size='34'] * h3,html body .bvi-body[data-bvi-size='34'] * h3 *{font-size:39px !important}html body .bvi-body[data-bvi-size='34'] * h4,html body .bvi-body[data-bvi-size='34'] * h4 *{font-size:38px !important}html body .bvi-body[data-bvi-size='34'] * h5,html body .bvi-body[data-bvi-size='34'] * h5 *{font-size:37px !important}html body .bvi-body[data-bvi-size='34'] * h6,html body .bvi-body[data-bvi-size='34'] * h6 *{font-size:36px !important}html body .bvi-body[data-bvi-size='33'] *{font-size:33px !important}html body .bvi-body[data-bvi-size='33'] * h1,html body .bvi-body[data-bvi-size='33'] * h1 *{font-size:40px !important}html body .bvi-body[data-bvi-size='33'] * h2,html body .bvi-body[data-bvi-size='33'] * h2 *{font-size:39px !important}html body .bvi-body[data-bvi-size='33'] * h3,html body .bvi-body[data-bvi-size='33'] * h3 *{font-size:38px !important}html body .bvi-body[data-bvi-size='33'] * h4,html body .bvi-body[data-bvi-size='33'] * h4 *{font-size:37px !important}html body .bvi-body[data-bvi-size='33'] * h5,html body .bvi-body[data-bvi-size='33'] * h5 *{font-size:36px !important}html body .bvi-body[data-bvi-size='33'] * h6,html body .bvi-body[data-bvi-size='33'] * h6 *{font-size:35px !important}html body .bvi-body[data-bvi-size='32'] *{font-size:32px !important}html body .bvi-body[data-bvi-size='32'] * h1,html body .bvi-body[data-bvi-size='32'] * h1 *{font-size:39px !important}html body .bvi-body[data-bvi-size='32'] * h2,html body .bvi-body[data-bvi-size='32'] * h2 *{font-size:38px !important}html body .bvi-body[data-bvi-size='32'] * h3,html body .bvi-body[data-bvi-size='32'] * h3 *{font-size:37px !important}html body .bvi-body[data-bvi-size='32'] * h4,html body .bvi-body[data-bvi-size='32'] * h4 *{font-size:36px !important}html body .bvi-body[data-bvi-size='32'] * h5,html body .bvi-body[data-bvi-size='32'] * h5 *{font-size:35px !important}html body .bvi-body[data-bvi-size='32'] * h6,html body .bvi-body[data-bvi-size='32'] * h6 *{font-size:34px !important}html body .bvi-body[data-bvi-size='31'] *{font-size:31px !important}html body .bvi-body[data-bvi-size='31'] * h1,html body .bvi-body[data-bvi-size='31'] * h1 *{font-size:38px !important}html body .bvi-body[data-bvi-size='31'] * h2,html body .bvi-body[data-bvi-size='31'] * h2 *{font-size:37px !important}html body .bvi-body[data-bvi-size='31'] * h3,html body .bvi-body[data-bvi-size='31'] * h3 *{font-size:36px !important}html body .bvi-body[data-bvi-size='31'] * h4,html body .bvi-body[data-bvi-size='31'] * h4 *{font-size:35px !important}html body .bvi-body[data-bvi-size='31'] * h5,html body .bvi-body[data-bvi-size='31'] * h5 *{font-size:34px !important}html body .bvi-body[data-bvi-size='31'] * h6,html body .bvi-body[data-bvi-size='31'] * h6 *{font-size:33px !important}html body .bvi-body[data-bvi-size='30'] *{font-size:30px !important}html body .bvi-body[data-bvi-size='30'] * h1,html body .bvi-body[data-bvi-size='30'] * h1 *{font-size:37px !important}html body .bvi-body[data-bvi-size='30'] * h2,html body .bvi-body[data-bvi-size='30'] * h2 *{font-size:36px !important}html body .bvi-body[data-bvi-size='30'] * h3,html body .bvi-body[data-bvi-size='30'] * h3 *{font-size:35px !important}html body .bvi-body[data-bvi-size='30'] * h4,html body .bvi-body[data-bvi-size='30'] * h4 *{font-size:34px !important}html body .bvi-body[data-bvi-size='30'] * h5,html body .bvi-body[data-bvi-size='30'] * h5 *{font-size:33px !important}html body .bvi-body[data-bvi-size='30'] * h6,html body .bvi-body[data-bvi-size='30'] * h6 *{font-size:32px !important}html body .bvi-body[data-bvi-size='29'] *{font-size:29px !important}html body .bvi-body[data-bvi-size='29'] * h1,html body .bvi-body[data-bvi-size='29'] * h1 *{font-size:36px !important}html body .bvi-body[data-bvi-size='29'] * h2,html body .bvi-body[data-bvi-size='29'] * h2 *{font-size:35px !important}html body .bvi-body[data-bvi-size='29'] * h3,html body .bvi-body[data-bvi-size='29'] * h3 *{font-size:34px !important}html body .bvi-body[data-bvi-size='29'] * h4,html body .bvi-body[data-bvi-size='29'] * h4 *{font-size:33px !important}html body .bvi-body[data-bvi-size='29'] * h5,html body .bvi-body[data-bvi-size='29'] * h5 *{font-size:32px !important}html body .bvi-body[data-bvi-size='29'] * h6,html body .bvi-body[data-bvi-size='29'] * h6 *{font-size:31px !important}html body .bvi-body[data-bvi-size='28'] *{font-size:28px !important}html body .bvi-body[data-bvi-size='28'] * h1,html body .bvi-body[data-bvi-size='28'] * h1 *{font-size:35px !important}html body .bvi-body[data-bvi-size='28'] * h2,html body .bvi-body[data-bvi-size='28'] * h2 *{font-size:34px !important}html body .bvi-body[data-bvi-size='28'] * h3,html body .bvi-body[data-bvi-size='28'] * h3 *{font-size:33px !important}html body .bvi-body[data-bvi-size='28'] * h4,html body .bvi-body[data-bvi-size='28'] * h4 *{font-size:32px !important}html body .bvi-body[data-bvi-size='28'] * h5,html body .bvi-body[data-bvi-size='28'] * h5 *{font-size:31px !important}html body .bvi-body[data-bvi-size='28'] * h6,html body .bvi-body[data-bvi-size='28'] * h6 *{font-size:30px !important}html body .bvi-body[data-bvi-size='27'] *{font-size:27px !important}html body .bvi-body[data-bvi-size='27'] * h1,html body .bvi-body[data-bvi-size='27'] * h1 *{font-size:34px !important}html body .bvi-body[data-bvi-size='27'] * h2,html body .bvi-body[data-bvi-size='27'] * h2 *{font-size:33px !important}html body .bvi-body[data-bvi-size='27'] * h3,html body .bvi-body[data-bvi-size='27'] * h3 *{font-size:32px !important}html body .bvi-body[data-bvi-size='27'] * h4,html body .bvi-body[data-bvi-size='27'] * h4 *{font-size:31px !important}html body .bvi-body[data-bvi-size='27'] * h5,html body .bvi-body[data-bvi-size='27'] * h5 *{font-size:30px !important}html body .bvi-body[data-bvi-size='27'] * h6,html body .bvi-body[data-bvi-size='27'] * h6 *{font-size:29px !important}html body .bvi-body[data-bvi-size='26'] *{font-size:26px !important}html body .bvi-body[data-bvi-size='26'] * h1,html body .bvi-body[data-bvi-size='26'] * h1 *{font-size:33px !important}html body .bvi-body[data-bvi-size='26'] * h2,html body .bvi-body[data-bvi-size='26'] * h2 *{font-size:32px !important}html body .bvi-body[data-bvi-size='26'] * h3,html body .bvi-body[data-bvi-size='26'] * h3 *{font-size:31px !important}html body .bvi-body[data-bvi-size='26'] * h4,html body .bvi-body[data-bvi-size='26'] * h4 *{font-size:30px !important}html body .bvi-body[data-bvi-size='26'] * h5,html body .bvi-body[data-bvi-size='26'] * h5 *{font-size:29px !important}html body .bvi-body[data-bvi-size='26'] * h6,html body .bvi-body[data-bvi-size='26'] * h6 *{font-size:28px !important}html body .bvi-body[data-bvi-size='25'] *{font-size:25px !important}html body .bvi-body[data-bvi-size='25'] * h1,html body .bvi-body[data-bvi-size='25'] * h1 *{font-size:32px !important}html body .bvi-body[data-bvi-size='25'] * h2,html body .bvi-body[data-bvi-size='25'] * h2 *{font-size:31px !important}html body .bvi-body[data-bvi-size='25'] * h3,html body .bvi-body[data-bvi-size='25'] * h3 *{font-size:30px !important}html body .bvi-body[data-bvi-size='25'] * h4,html body .bvi-body[data-bvi-size='25'] * h4 *{font-size:29px !important}html body .bvi-body[data-bvi-size='25'] * h5,html body .bvi-body[data-bvi-size='25'] * h5 *{font-size:28px !important}html body .bvi-body[data-bvi-size='25'] * h6,html body .bvi-body[data-bvi-size='25'] * h6 *{font-size:27px !important}html body .bvi-body[data-bvi-size='24'] *{font-size:24px !important}html body .bvi-body[data-bvi-size='24'] * h1,html body .bvi-body[data-bvi-size='24'] * h1 *{font-size:31px !important}html body .bvi-body[data-bvi-size='24'] * h2,html body .bvi-body[data-bvi-size='24'] * h2 *{font-size:30px !important}html body .bvi-body[data-bvi-size='24'] * h3,html body .bvi-body[data-bvi-size='24'] * h3 *{font-size:29px !important}html body .bvi-body[data-bvi-size='24'] * h4,html body .bvi-body[data-bvi-size='24'] * h4 *{font-size:28px !important}html body .bvi-body[data-bvi-size='24'] * h5,html body .bvi-body[data-bvi-size='24'] * h5 *{font-size:27px !important}html body .bvi-body[data-bvi-size='24'] * h6,html body .bvi-body[data-bvi-size='24'] * h6 *{font-size:26px !important}html body .bvi-body[data-bvi-size='23'] *{font-size:23px !important}html body .bvi-body[data-bvi-size='23'] * h1,html body .bvi-body[data-bvi-size='23'] * h1 *{font-size:30px !important}html body .bvi-body[data-bvi-size='23'] * h2,html body .bvi-body[data-bvi-size='23'] * h2 *{font-size:29px !important}html body .bvi-body[data-bvi-size='23'] * h3,html body .bvi-body[data-bvi-size='23'] * h3 *{font-size:28px !important}html body .bvi-body[data-bvi-size='23'] * h4,html body .bvi-body[data-bvi-size='23'] * h4 *{font-size:27px !important}html body .bvi-body[data-bvi-size='23'] * h5,html body .bvi-body[data-bvi-size='23'] * h5 *{font-size:26px !important}html body .bvi-body[data-bvi-size='23'] * h6,html body .bvi-body[data-bvi-size='23'] * h6 *{font-size:25px !important}html body .bvi-body[data-bvi-size='22'] *{font-size:22px !important}html body .bvi-body[data-bvi-size='22'] * h1,html body .bvi-body[data-bvi-size='22'] * h1 *{font-size:29px !important}html body .bvi-body[data-bvi-size='22'] * h2,html body .bvi-body[data-bvi-size='22'] * h2 *{font-size:28px !important}html body .bvi-body[data-bvi-size='22'] * h3,html body .bvi-body[data-bvi-size='22'] * h3 *{font-size:27px !important}html body .bvi-body[data-bvi-size='22'] * h4,html body .bvi-body[data-bvi-size='22'] * h4 *{font-size:26px !important}html body .bvi-body[data-bvi-size='22'] * h5,html body .bvi-body[data-bvi-size='22'] * h5 *{font-size:25px !important}html body .bvi-body[data-bvi-size='22'] * h6,html body .bvi-body[data-bvi-size='22'] * h6 *{font-size:24px !important}html body .bvi-body[data-bvi-size='21'] *{font-size:21px !important}html body .bvi-body[data-bvi-size='21'] * h1,html body .bvi-body[data-bvi-size='21'] * h1 *{font-size:28px !important}html body .bvi-body[data-bvi-size='21'] * h2,html body .bvi-body[data-bvi-size='21'] * h2 *{font-size:27px !important}html body .bvi-body[data-bvi-size='21'] * h3,html body .bvi-body[data-bvi-size='21'] * h3 *{font-size:26px !important}html body .bvi-body[data-bvi-size='21'] * h4,html body .bvi-body[data-bvi-size='21'] * h4 *{font-size:25px !important}html body .bvi-body[data-bvi-size='21'] * h5,html body .bvi-body[data-bvi-size='21'] * h5 *{font-size:24px !important}html body .bvi-body[data-bvi-size='21'] * h6,html body .bvi-body[data-bvi-size='21'] * h6 *{font-size:23px !important}html body .bvi-body[data-bvi-size='20'] *{font-size:20px !important}html body .bvi-body[data-bvi-size='20'] * h1,html body .bvi-body[data-bvi-size='20'] * h1 *{font-size:27px !important}html body .bvi-body[data-bvi-size='20'] * h2,html body .bvi-body[data-bvi-size='20'] * h2 *{font-size:26px !important}html body .bvi-body[data-bvi-size='20'] * h3,html body .bvi-body[data-bvi-size='20'] * h3 *{font-size:25px !important}html body .bvi-body[data-bvi-size='20'] * h4,html body .bvi-body[data-bvi-size='20'] * h4 *{font-size:24px !important}html body .bvi-body[data-bvi-size='20'] * h5,html body .bvi-body[data-bvi-size='20'] * h5 *{font-size:23px !important}html body .bvi-body[data-bvi-size='20'] * h6,html body .bvi-body[data-bvi-size='20'] * h6 *{font-size:22px !important}html body .bvi-body[data-bvi-size='19'] *{font-size:19px !important}html body .bvi-body[data-bvi-size='19'] * h1,html body .bvi-body[data-bvi-size='19'] * h1 *{font-size:26px !important}html body .bvi-body[data-bvi-size='19'] * h2,html body .bvi-body[data-bvi-size='19'] * h2 *{font-size:25px !important}html body .bvi-body[data-bvi-size='19'] * h3,html body .bvi-body[data-bvi-size='19'] * h3 *{font-size:24px !important}html body .bvi-body[data-bvi-size='19'] * h4,html body .bvi-body[data-bvi-size='19'] * h4 *{font-size:23px !important}html body .bvi-body[data-bvi-size='19'] * h5,html body .bvi-body[data-bvi-size='19'] * h5 *{font-size:22px !important}html body .bvi-body[data-bvi-size='19'] * h6,html body .bvi-body[data-bvi-size='19'] * h6 *{font-size:21px !important}html body .bvi-body[data-bvi-size='18'] *{font-size:18px !important}html body .bvi-body[data-bvi-size='18'] * h1,html body .bvi-body[data-bvi-size='18'] * h1 *{font-size:25px !important}html body .bvi-body[data-bvi-size='18'] * h2,html body .bvi-body[data-bvi-size='18'] * h2 *{font-size:24px !important}html body .bvi-body[data-bvi-size='18'] * h3,html body .bvi-body[data-bvi-size='18'] * h3 *{font-size:23px !important}html body .bvi-body[data-bvi-size='18'] * h4,html body .bvi-body[data-bvi-size='18'] * h4 *{font-size:22px !important}html body .bvi-body[data-bvi-size='18'] * h5,html body .bvi-body[data-bvi-size='18'] * h5 *{font-size:21px !important}html body .bvi-body[data-bvi-size='18'] * h6,html body .bvi-body[data-bvi-size='18'] * h6 *{font-size:20px !important}html body .bvi-body[data-bvi-size='17'] *{font-size:17px !important}html body .bvi-body[data-bvi-size='17'] * h1,html body .bvi-body[data-bvi-size='17'] * h1 *{font-size:24px !important}html body .bvi-body[data-bvi-size='17'] * h2,html body .bvi-body[data-bvi-size='17'] * h2 *{font-size:23px !important}html body .bvi-body[data-bvi-size='17'] * h3,html body .bvi-body[data-bvi-size='17'] * h3 *{font-size:22px !important}html body .bvi-body[data-bvi-size='17'] * h4,html body .bvi-body[data-bvi-size='17'] * h4 *{font-size:21px !important}html body .bvi-body[data-bvi-size='17'] * h5,html body .bvi-body[data-bvi-size='17'] * h5 *{font-size:20px !important}html body .bvi-body[data-bvi-size='17'] * h6,html body .bvi-body[data-bvi-size='17'] * h6 *{font-size:19px !important}html body .bvi-body[data-bvi-size='16'] *{font-size:16px !important}html body .bvi-body[data-bvi-size='16'] * h1,html body .bvi-body[data-bvi-size='16'] * h1 *{font-size:23px !important}html body .bvi-body[data-bvi-size='16'] * h2,html body .bvi-body[data-bvi-size='16'] * h2 *{font-size:22px !important}html body .bvi-body[data-bvi-size='16'] * h3,html body .bvi-body[data-bvi-size='16'] * h3 *{font-size:21px !important}html body .bvi-body[data-bvi-size='16'] * h4,html body .bvi-body[data-bvi-size='16'] * h4 *{font-size:20px !important}html body .bvi-body[data-bvi-size='16'] * h5,html body .bvi-body[data-bvi-size='16'] * h5 *{font-size:19px !important}html body .bvi-body[data-bvi-size='16'] * h6,html body .bvi-body[data-bvi-size='16'] * h6 *{font-size:18px !important}html body .bvi-body[data-bvi-size='15'] *{font-size:15px !important}html body .bvi-body[data-bvi-size='15'] * h1,html body .bvi-body[data-bvi-size='15'] * h1 *{font-size:22px !important}html body .bvi-body[data-bvi-size='15'] * h2,html body .bvi-body[data-bvi-size='15'] * h2 *{font-size:21px !important}html body .bvi-body[data-bvi-size='15'] * h3,html body .bvi-body[data-bvi-size='15'] * h3 *{font-size:20px !important}html body .bvi-body[data-bvi-size='15'] * h4,html body .bvi-body[data-bvi-size='15'] * h4 *{font-size:19px !important}html body .bvi-body[data-bvi-size='15'] * h5,html body .bvi-body[data-bvi-size='15'] * h5 *{font-size:18px !important}html body .bvi-body[data-bvi-size='15'] * h6,html body .bvi-body[data-bvi-size='15'] * h6 *{font-size:17px !important}html body .bvi-body[data-bvi-size='14'] *{font-size:14px !important}html body .bvi-body[data-bvi-size='14'] * h1,html body .bvi-body[data-bvi-size='14'] * h1 *{font-size:21px !important}html body .bvi-body[data-bvi-size='14'] * h2,html body .bvi-body[data-bvi-size='14'] * h2 *{font-size:20px !important}html body .bvi-body[data-bvi-size='14'] * h3,html body .bvi-body[data-bvi-size='14'] * h3 *{font-size:19px !important}html body .bvi-body[data-bvi-size='14'] * h4,html body .bvi-body[data-bvi-size='14'] * h4 *{font-size:18px !important}html body .bvi-body[data-bvi-size='14'] * h5,html body .bvi-body[data-bvi-size='14'] * h5 *{font-size:17px !important}html body .bvi-body[data-bvi-size='14'] * h6,html body .bvi-body[data-bvi-size='14'] * h6 *{font-size:16px !important}html body .bvi-body[data-bvi-size='13'] *{font-size:13px !important}html body .bvi-body[data-bvi-size='13'] * h1,html body .bvi-body[data-bvi-size='13'] * h1 *{font-size:20px !important}html body .bvi-body[data-bvi-size='13'] * h2,html body .bvi-body[data-bvi-size='13'] * h2 *{font-size:19px !important}html body .bvi-body[data-bvi-size='13'] * h3,html body .bvi-body[data-bvi-size='13'] * h3 *{font-size:18px !important}html body .bvi-body[data-bvi-size='13'] * h4,html body .bvi-body[data-bvi-size='13'] * h4 *{font-size:17px !important}html body .bvi-body[data-bvi-size='13'] * h5,html body .bvi-body[data-bvi-size='13'] * h5 *{font-size:16px !important}html body .bvi-body[data-bvi-size='13'] * h6,html body .bvi-body[data-bvi-size='13'] * h6 *{font-size:15px !important}html body .bvi-body[data-bvi-size='12'] *{font-size:12px !important}html body .bvi-body[data-bvi-size='12'] * h1,html body .bvi-body[data-bvi-size='12'] * h1 *{font-size:19px !important}html body .bvi-body[data-bvi-size='12'] * h2,html body .bvi-body[data-bvi-size='12'] * h2 *{font-size:18px !important}html body .bvi-body[data-bvi-size='12'] * h3,html body .bvi-body[data-bvi-size='12'] * h3 *{font-size:17px !important}html body .bvi-body[data-bvi-size='12'] * h4,html body .bvi-body[data-bvi-size='12'] * h4 *{font-size:16px !important}html body .bvi-body[data-bvi-size='12'] * h5,html body .bvi-body[data-bvi-size='12'] * h5 *{font-size:15px !important}html body .bvi-body[data-bvi-size='12'] * h6,html body .bvi-body[data-bvi-size='12'] * h6 *{font-size:14px !important}html body .bvi-body[data-bvi-size='11'] *{font-size:11px !important}html body .bvi-body[data-bvi-size='11'] * h1,html body .bvi-body[data-bvi-size='11'] * h1 *{font-size:18px !important}html body .bvi-body[data-bvi-size='11'] * h2,html body .bvi-body[data-bvi-size='11'] * h2 *{font-size:17px !important}html body .bvi-body[data-bvi-size='11'] * h3,html body .bvi-body[data-bvi-size='11'] * h3 *{font-size:16px !important}html body .bvi-body[data-bvi-size='11'] * h4,html body .bvi-body[data-bvi-size='11'] * h4 *{font-size:15px !important}html body .bvi-body[data-bvi-size='11'] * h5,html body .bvi-body[data-bvi-size='11'] * h5 *{font-size:14px !important}html body .bvi-body[data-bvi-size='11'] * h6,html body .bvi-body[data-bvi-size='11'] * h6 *{font-size:13px !important}html body .bvi-body[data-bvi-size='10'] *{font-size:10px !important}html body .bvi-body[data-bvi-size='10'] * h1,html body .bvi-body[data-bvi-size='10'] * h1 *{font-size:17px !important}html body .bvi-body[data-bvi-size='10'] * h2,html body .bvi-body[data-bvi-size='10'] * h2 *{font-size:16px !important}html body .bvi-body[data-bvi-size='10'] * h3,html body .bvi-body[data-bvi-size='10'] * h3 *{font-size:15px !important}html body .bvi-body[data-bvi-size='10'] * h4,html body .bvi-body[data-bvi-size='10'] * h4 *{font-size:14px !important}html body .bvi-body[data-bvi-size='10'] * h5,html body .bvi-body[data-bvi-size='10'] * h5 *{font-size:13px !important}html body .bvi-body[data-bvi-size='10'] * h6,html body .bvi-body[data-bvi-size='10'] * h6 *{font-size:12px !important}html body .bvi-body[data-bvi-size='9'] *{font-size:9px !important}html body .bvi-body[data-bvi-size='9'] * h1,html body .bvi-body[data-bvi-size='9'] * h1 *{font-size:16px !important}html body .bvi-body[data-bvi-size='9'] * h2,html body .bvi-body[data-bvi-size='9'] * h2 *{font-size:15px !important}html body .bvi-body[data-bvi-size='9'] * h3,html body .bvi-body[data-bvi-size='9'] * h3 *{font-size:14px !important}html body .bvi-body[data-bvi-size='9'] * h4,html body .bvi-body[data-bvi-size='9'] * h4 *{font-size:13px !important}html body .bvi-body[data-bvi-size='9'] * h5,html body .bvi-body[data-bvi-size='9'] * h5 *{font-size:12px !important}html body .bvi-body[data-bvi-size='9'] * h6,html body .bvi-body[data-bvi-size='9'] * h6 *{font-size:11px !important}html body .bvi-body[data-bvi-size='8'] *{font-size:8px !important}html body .bvi-body[data-bvi-size='8'] * h1,html body .bvi-body[data-bvi-size='8'] * h1 *{font-size:15px !important}html body .bvi-body[data-bvi-size='8'] * h2,html body .bvi-body[data-bvi-size='8'] * h2 *{font-size:14px !important}html body .bvi-body[data-bvi-size='8'] * h3,html body .bvi-body[data-bvi-size='8'] * h3 *{font-size:13px !important}html body .bvi-body[data-bvi-size='8'] * h4,html body .bvi-body[data-bvi-size='8'] * h4 *{font-size:12px !important}html body .bvi-body[data-bvi-size='8'] * h5,html body .bvi-body[data-bvi-size='8'] * h5 *{font-size:11px !important}html body .bvi-body[data-bvi-size='8'] * h6,html body .bvi-body[data-bvi-size='8'] * h6 *{font-size:10px !important}html body .bvi-body[data-bvi-size='7'] *{font-size:7px !important}html body .bvi-body[data-bvi-size='7'] * h1,html body .bvi-body[data-bvi-size='7'] * h1 *{font-size:14px !important}html body .bvi-body[data-bvi-size='7'] * h2,html body .bvi-body[data-bvi-size='7'] * h2 *{font-size:13px !important}html body .bvi-body[data-bvi-size='7'] * h3,html body .bvi-body[data-bvi-size='7'] * h3 *{font-size:12px !important}html body .bvi-body[data-bvi-size='7'] * h4,html body .bvi-body[data-bvi-size='7'] * h4 *{font-size:11px !important}html body .bvi-body[data-bvi-size='7'] * h5,html body .bvi-body[data-bvi-size='7'] * h5 *{font-size:10px !important}html body .bvi-body[data-bvi-size='7'] * h6,html body .bvi-body[data-bvi-size='7'] * h6 *{font-size:9px !important}html body .bvi-body[data-bvi-size='6'] *{font-size:6px !important}html body .bvi-body[data-bvi-size='6'] * h1,html body .bvi-body[data-bvi-size='6'] * h1 *{font-size:13px !important}html body .bvi-body[data-bvi-size='6'] * h2,html body .bvi-body[data-bvi-size='6'] * h2 *{font-size:12px !important}html body .bvi-body[data-bvi-size='6'] * h3,html body .bvi-body[data-bvi-size='6'] * h3 *{font-size:11px !important}html body .bvi-body[data-bvi-size='6'] * h4,html body .bvi-body[data-bvi-size='6'] * h4 *{font-size:10px !important}html body .bvi-body[data-bvi-size='6'] * h5,html body .bvi-body[data-bvi-size='6'] * h5 *{font-size:9px !important}html body .bvi-body[data-bvi-size='6'] * h6,html body .bvi-body[data-bvi-size='6'] * h6 *{font-size:8px !important}html body .bvi-body[data-bvi-size='5'] *{font-size:5px !important}html body .bvi-body[data-bvi-size='5'] * h1,html body .bvi-body[data-bvi-size='5'] * h1 *{font-size:12px !important}html body .bvi-body[data-bvi-size='5'] * h2,html body .bvi-body[data-bvi-size='5'] * h2 *{font-size:11px !important}html body .bvi-body[data-bvi-size='5'] * h3,html body .bvi-body[data-bvi-size='5'] * h3 *{font-size:10px !important}html body .bvi-body[data-bvi-size='5'] * h4,html body .bvi-body[data-bvi-size='5'] * h4 *{font-size:9px !important}html body .bvi-body[data-bvi-size='5'] * h5,html body .bvi-body[data-bvi-size='5'] * h5 *{font-size:8px !important}html body .bvi-body[data-bvi-size='5'] * h6,html body .bvi-body[data-bvi-size='5'] * h6 *{font-size:7px !important}html body .bvi-body[data-bvi-size='4'] *{font-size:4px !important}html body .bvi-body[data-bvi-size='4'] * h1,html body .bvi-body[data-bvi-size='4'] * h1 *{font-size:11px !important}html body .bvi-body[data-bvi-size='4'] * h2,html body .bvi-body[data-bvi-size='4'] * h2 *{font-size:10px !important}html body .bvi-body[data-bvi-size='4'] * h3,html body .bvi-body[data-bvi-size='4'] * h3 *{font-size:9px !important}html body .bvi-body[data-bvi-size='4'] * h4,html body .bvi-body[data-bvi-size='4'] * h4 *{font-size:8px !important}html body .bvi-body[data-bvi-size='4'] * h5,html body .bvi-body[data-bvi-size='4'] * h5 *{font-size:7px !important}html body .bvi-body[data-bvi-size='4'] * h6,html body .bvi-body[data-bvi-size='4'] * h6 *{font-size:6px !important}html body .bvi-body[data-bvi-size='3'] *{font-size:3px !important}html body .bvi-body[data-bvi-size='3'] * h1,html body .bvi-body[data-bvi-size='3'] * h1 *{font-size:10px !important}html body .bvi-body[data-bvi-size='3'] * h2,html body .bvi-body[data-bvi-size='3'] * h2 *{font-size:9px !important}html body .bvi-body[data-bvi-size='3'] * h3,html body .bvi-body[data-bvi-size='3'] * h3 *{font-size:8px !important}html body .bvi-body[data-bvi-size='3'] * h4,html body .bvi-body[data-bvi-size='3'] * h4 *{font-size:7px !important}html body .bvi-body[data-bvi-size='3'] * h5,html body .bvi-body[data-bvi-size='3'] * h5 *{font-size:6px !important}html body .bvi-body[data-bvi-size='3'] * h6,html body .bvi-body[data-bvi-size='3'] * h6 *{font-size:5px !important}html body .bvi-body[data-bvi-size='2'] *{font-size:2px !important}html body .bvi-body[data-bvi-size='2'] * h1,html body .bvi-body[data-bvi-size='2'] * h1 *{font-size:9px !important}html body .bvi-body[data-bvi-size='2'] * h2,html body .bvi-body[data-bvi-size='2'] * h2 *{font-size:8px !important}html body .bvi-body[data-bvi-size='2'] * h3,html body .bvi-body[data-bvi-size='2'] * h3 *{font-size:7px !important}html body .bvi-body[data-bvi-size='2'] * h4,html body .bvi-body[data-bvi-size='2'] * h4 *{font-size:6px !important}html body .bvi-body[data-bvi-size='2'] * h5,html body .bvi-body[data-bvi-size='2'] * h5 *{font-size:5px !important}html body .bvi-body[data-bvi-size='2'] * h6,html body .bvi-body[data-bvi-size='2'] * h6 *{font-size:4px !important}html body .bvi-body[data-bvi-size='1'] *{font-size:1px !important}html body .bvi-body[data-bvi-size='1'] * h1,html body .bvi-body[data-bvi-size='1'] * h1 *{font-size:8px !important}html body .bvi-body[data-bvi-size='1'] * h2,html body .bvi-body[data-bvi-size='1'] * h2 *{font-size:7px !important}html body .bvi-body[data-bvi-size='1'] * h3,html body .bvi-body[data-bvi-size='1'] * h3 *{font-size:6px !important}html body .bvi-body[data-bvi-size='1'] * h4,html body .bvi-body[data-bvi-size='1'] * h4 *{font-size:5px !important}html body .bvi-body[data-bvi-size='1'] * h5,html body .bvi-body[data-bvi-size='1'] * h5 *{font-size:4px !important}html body .bvi-body[data-bvi-size='1'] * h6,html body .bvi-body[data-bvi-size='1'] * h6 *{font-size:3px !important}html body .bvi-body[data-bvi-images='true'] img{-webkit-filter:grayscale(0);filter:grayscale(0)}html body .bvi-body[data-bvi-images='false'] .bvi-img-off{border:2px dashed !important;box-sizing:border-box !important;overflow:hidden !important;max-width:100% !important;max-height:100% !important;word-wrap:break-word !important;text-align:center !important;display:flex !important;align-items:center !important;justify-content:center !important}html body .bvi-body[data-bvi-images='grayscale'] img.grayscale{filter:url("data:image/svg+xml;utf8,<svgxmlns='http://www.w3.org/2000/svg'><filterid='grayscale'><feColorMatrixtype='saturate'values='0'/></filter></svg>#grayscale");-webkit-filter:grayscale(1);filter:grayscale(1);filter:gray}html body .bvi-body[data-bvi-images='grayscale'] .bvi-div-grayscale{position:relative;display:block}html body .bvi-body[data-bvi-line-height='normal'] *{line-height:1.5 !important}html body .bvi-body[data-bvi-line-height='average'] *{line-height:2 !important}html body .bvi-body[data-bvi-line-height='big'] *{line-height:2.5 !important}html body .bvi-body[data-bvi-letter-spacing='normal'] *{letter-spacing:0 !important}html body .bvi-body[data-bvi-letter-spacing='average'] *{letter-spacing:2px !important}html body .bvi-body[data-bvi-letter-spacing='big'] *{letter-spacing:4px !important}html body .bvi-body[data-bvi-font-family='arial'] *:not(i):not(span){font-family:Arial,sans-serif}html body .bvi-body[data-bvi-font-family='times'] *:not(i):not(span){font-family:"Times New roman"}html body .bvi-body[data-bvi-flash-iframe='true'] iframe,html body .bvi-body[data-bvi-flash-iframe='true'] video,html body .bvi-body[data-bvi-flash-iframe='true'] figure{display:block}html body .bvi-body[data-bvi-flash-iframe='false'] iframe,html body .bvi-body[data-bvi-flash-iframe='false'] video,html body .bvi-body[data-bvi-flash-iframe='false'] figure{display:none}
/* End */


/* Start:/local/templates/ronc.site/components/vision/vision.special/.default/style/css/bvi.min.css?1722847702127805*/
/*!
 * Button visually impaired v1.0.8
 */html:not(.bvi-panel){font-size:16px !important}html body a.bvi-link{padding:10px 10px;font-size:12px;border-color:transparent}html body .bvi{font-family:Arial,sans-serif !important}html body .bvi .bvi-btn{font-weight:bold !important}html body .bvi .bvi-eye-link{position:fixed;top:1rem;right:1rem;opacity:.75;z-index:999999 !important}html body .bvi .bvi-container{width:100%;padding-right:0;padding-left:0;margin-right:auto;margin-left:auto}@media(min-width:576px){html body .bvi .bvi-container{max-width:540px}}@media(min-width:768px){html body .bvi .bvi-container{max-width:720px}}@media(min-width:992px){html body .bvi .bvi-container{max-width:960px}}@media(min-width:1200px){html body .bvi .bvi-container{max-width:1140px}}html body .bvi .bvi-container-fluid{width:100%;padding-right:0;padding-left:0;margin-right:auto;margin-left:auto}html body .bvi .bvi-row{display:flex;flex-wrap:wrap;margin-right:0;margin-left:0}html body .bvi .bvi-no-gutters{margin-right:0;margin-left:0}html body .bvi .bvi-no-gutters>.bvi-col,html body .bvi .bvi-no-gutters>[class*="bvi-col-"]{padding-right:0;padding-left:0}html body .bvi .bvi-col-1,html body .bvi .bvi-col-2,html body .bvi .bvi-col-3,html body .bvi .bvi-col-4,html body .bvi .bvi-col-5,html body .bvi .bvi-col-6,html body .bvi .bvi-col-7,html body .bvi .bvi-col-8,html body .bvi .bvi-col-9,html body .bvi .bvi-col-10,html body .bvi .bvi-col-11,html body .bvi .bvi-col-12,html body .bvi .bvi-col,html body .bvi .bvi-col-auto,html body .bvi .bvi-col-sm-1,html body .bvi .bvi-col-sm-2,html body .bvi .bvi-col-sm-3,html body .bvi .bvi-col-sm-4,html body .bvi .bvi-col-sm-5,html body .bvi .bvi-col-sm-6,html body .bvi .bvi-col-sm-7,html body .bvi .bvi-col-sm-8,html body .bvi .bvi-col-sm-9,html body .bvi .bvi-col-sm-10,html body .bvi .bvi-col-sm-11,html body .bvi .bvi-col-sm-12,html body .bvi .bvi-col-sm,html body .bvi .bvi-col-sm-auto,html body .bvi .bvi-col-md-1,html body .bvi .bvi-col-md-2,html body .bvi .bvi-col-md-3,html body .bvi .bvi-col-md-4,html body .bvi .bvi-col-md-5,html body .bvi .bvi-col-md-6,html body .bvi .bvi-col-md-7,html body .bvi .bvi-col-md-8,html body .bvi .bvi-col-md-9,html body .bvi .bvi-col-md-10,html body .bvi .bvi-col-md-11,html body .bvi .bvi-col-md-12,html body .bvi .bvi-col-md,html body .bvi .bvi-col-md-auto,html body .bvi .bvi-col-lg-1,html body .bvi .bvi-col-lg-2,html body .bvi .bvi-col-lg-3,html body .bvi .bvi-col-lg-4,html body .bvi .bvi-col-lg-5,html body .bvi .bvi-col-lg-6,html body .bvi .bvi-col-lg-7,html body .bvi .bvi-col-lg-8,html body .bvi .bvi-col-lg-9,html body .bvi .bvi-col-lg-10,html body .bvi .bvi-col-lg-11,html body .bvi .bvi-col-lg-12,html body .bvi .bvi-col-lg,html body .bvi .bvi-col-lg-auto,html body .bvi .bvi-col-xl-1,html body .bvi .bvi-col-xl-2,html body .bvi .bvi-col-xl-3,html body .bvi .bvi-col-xl-4,html body .bvi .bvi-col-xl-5,html body .bvi .bvi-col-xl-6,html body .bvi .bvi-col-xl-7,html body .bvi .bvi-col-xl-8,html body .bvi .bvi-col-xl-9,html body .bvi .bvi-col-xl-10,html body .bvi .bvi-col-xl-11,html body .bvi .bvi-col-xl-12,html body .bvi .bvi-col-xl,html body .bvi .bvi-col-xl-auto{position:relative;width:100%;min-height:1px;padding-right:0;padding-left:0}html body .bvi .bvi-col{flex-basis:0;flex-grow:1;max-width:100%}html body .bvi .bvi-col-auto{flex:0 0 auto;width:auto;max-width:none}html body .bvi .bvi-col-1{flex:0 0 8.33333%;max-width:8.33333%}html body .bvi .bvi-col-2{flex:0 0 16.66667%;max-width:16.66667%}html body .bvi .bvi-col-3{flex:0 0 25%;max-width:25%}html body .bvi .bvi-col-4{flex:0 0 33.33333%;max-width:33.33333%}html body .bvi .bvi-col-5{flex:0 0 41.66667%;max-width:41.66667%}html body .bvi .bvi-col-6{flex:0 0 50%;max-width:50%}html body .bvi .bvi-col-7{flex:0 0 58.33333%;max-width:58.33333%}html body .bvi .bvi-col-8{flex:0 0 66.66667%;max-width:66.66667%}html body .bvi .bvi-col-9{flex:0 0 75%;max-width:75%}html body .bvi .bvi-col-10{flex:0 0 83.33333%;max-width:83.33333%}html body .bvi .bvi-col-11{flex:0 0 91.66667%;max-width:91.66667%}html body .bvi .bvi-col-12{flex:0 0 100%;max-width:100%}html body .bvi .order-first{order:-1}html body .bvi .order-last{order:13}html body .bvi .order-0{order:0}html body .bvi .order-1{order:1}html body .bvi .order-2{order:2}html body .bvi .order-3{order:3}html body .bvi .order-4{order:4}html body .bvi .order-5{order:5}html body .bvi .order-6{order:6}html body .bvi .order-7{order:7}html body .bvi .order-8{order:8}html body .bvi .order-9{order:9}html body .bvi .order-10{order:10}html body .bvi .order-11{order:11}html body .bvi .order-12{order:12}html body .bvi .offset-1{margin-left:8.33333%}html body .bvi .offset-2{margin-left:16.66667%}html body .bvi .offset-3{margin-left:25%}html body .bvi .offset-4{margin-left:33.33333%}html body .bvi .offset-5{margin-left:41.66667%}html body .bvi .offset-6{margin-left:50%}html body .bvi .offset-7{margin-left:58.33333%}html body .bvi .offset-8{margin-left:66.66667%}html body .bvi .offset-9{margin-left:75%}html body .bvi .offset-10{margin-left:83.33333%}html body .bvi .offset-11{margin-left:91.66667%}@media(min-width:576px){html body .bvi .bvi-col-sm{flex-basis:0;flex-grow:1;max-width:100%}html body .bvi .bvi-col-sm-auto{flex:0 0 auto;width:auto;max-width:none}html body .bvi .bvi-col-sm-1{flex:0 0 8.33333%;max-width:8.33333%}html body .bvi .bvi-col-sm-2{flex:0 0 16.66667%;max-width:16.66667%}html body .bvi .bvi-col-sm-3{flex:0 0 25%;max-width:25%}html body .bvi .bvi-col-sm-4{flex:0 0 33.33333%;max-width:33.33333%}html body .bvi .bvi-col-sm-5{flex:0 0 41.66667%;max-width:41.66667%}html body .bvi .bvi-col-sm-6{flex:0 0 50%;max-width:50%}html body .bvi .bvi-col-sm-7{flex:0 0 58.33333%;max-width:58.33333%}html body .bvi .bvi-col-sm-8{flex:0 0 66.66667%;max-width:66.66667%}html body .bvi .bvi-col-sm-9{flex:0 0 75%;max-width:75%}html body .bvi .bvi-col-sm-10{flex:0 0 83.33333%;max-width:83.33333%}html body .bvi .bvi-col-sm-11{flex:0 0 91.66667%;max-width:91.66667%}html body .bvi .bvi-col-sm-12{flex:0 0 100%;max-width:100%}html body .bvi .order-sm-first{order:-1}html body .bvi .order-sm-last{order:13}html body .bvi .order-sm-0{order:0}html body .bvi .order-sm-1{order:1}html body .bvi .order-sm-2{order:2}html body .bvi .order-sm-3{order:3}html body .bvi .order-sm-4{order:4}html body .bvi .order-sm-5{order:5}html body .bvi .order-sm-6{order:6}html body .bvi .order-sm-7{order:7}html body .bvi .order-sm-8{order:8}html body .bvi .order-sm-9{order:9}html body .bvi .order-sm-10{order:10}html body .bvi .order-sm-11{order:11}html body .bvi .order-sm-12{order:12}html body .bvi .offset-sm-0{margin-left:0}html body .bvi .offset-sm-1{margin-left:8.33333%}html body .bvi .offset-sm-2{margin-left:16.66667%}html body .bvi .offset-sm-3{margin-left:25%}html body .bvi .offset-sm-4{margin-left:33.33333%}html body .bvi .offset-sm-5{margin-left:41.66667%}html body .bvi .offset-sm-6{margin-left:50%}html body .bvi .offset-sm-7{margin-left:58.33333%}html body .bvi .offset-sm-8{margin-left:66.66667%}html body .bvi .offset-sm-9{margin-left:75%}html body .bvi .offset-sm-10{margin-left:83.33333%}html body .bvi .offset-sm-11{margin-left:91.66667%}}@media(min-width:768px){html body .bvi .bvi-col-md{flex-basis:0;flex-grow:1;max-width:100%}html body .bvi .bvi-col-md-auto{flex:0 0 auto;width:auto;max-width:none}html body .bvi .bvi-col-md-1{flex:0 0 8.33333%;max-width:8.33333%}html body .bvi .bvi-col-md-2{flex:0 0 16.66667%;max-width:16.66667%}html body .bvi .bvi-col-md-3{flex:0 0 25%;max-width:25%}html body .bvi .bvi-col-md-4{flex:0 0 33.33333%;max-width:33.33333%}html body .bvi .bvi-col-md-5{flex:0 0 41.66667%;max-width:41.66667%}html body .bvi .bvi-col-md-6{flex:0 0 50%;max-width:50%}html body .bvi .bvi-col-md-7{flex:0 0 58.33333%;max-width:58.33333%}html body .bvi .bvi-col-md-8{flex:0 0 66.66667%;max-width:66.66667%}html body .bvi .bvi-col-md-9{flex:0 0 75%;max-width:75%}html body .bvi .bvi-col-md-10{flex:0 0 83.33333%;max-width:83.33333%}html body .bvi .bvi-col-md-11{flex:0 0 91.66667%;max-width:91.66667%}html body .bvi .bvi-col-md-12{flex:0 0 100%;max-width:100%}html body .bvi .order-md-first{order:-1}html body .bvi .order-md-last{order:13}html body .bvi .order-md-0{order:0}html body .bvi .order-md-1{order:1}html body .bvi .order-md-2{order:2}html body .bvi .order-md-3{order:3}html body .bvi .order-md-4{order:4}html body .bvi .order-md-5{order:5}html body .bvi .order-md-6{order:6}html body .bvi .order-md-7{order:7}html body .bvi .order-md-8{order:8}html body .bvi .order-md-9{order:9}html body .bvi .order-md-10{order:10}html body .bvi .order-md-11{order:11}html body .bvi .order-md-12{order:12}html body .bvi .offset-md-0{margin-left:0}html body .bvi .offset-md-1{margin-left:8.33333%}html body .bvi .offset-md-2{margin-left:16.66667%}html body .bvi .offset-md-3{margin-left:25%}html body .bvi .offset-md-4{margin-left:33.33333%}html body .bvi .offset-md-5{margin-left:41.66667%}html body .bvi .offset-md-6{margin-left:50%}html body .bvi .offset-md-7{margin-left:58.33333%}html body .bvi .offset-md-8{margin-left:66.66667%}html body .bvi .offset-md-9{margin-left:75%}html body .bvi .offset-md-10{margin-left:83.33333%}html body .bvi .offset-md-11{margin-left:91.66667%}}@media(min-width:992px){html body .bvi .bvi-col-lg{flex-basis:0;flex-grow:1;max-width:100%}html body .bvi .bvi-col-lg-auto{flex:0 0 auto;width:auto;max-width:none}html body .bvi .bvi-col-lg-1{flex:0 0 8.33333%;max-width:8.33333%}html body .bvi .bvi-col-lg-2{flex:0 0 16.66667%;max-width:16.66667%}html body .bvi .bvi-col-lg-3{flex:0 0 25%;max-width:25%}html body .bvi .bvi-col-lg-4{flex:0 0 33.33333%;max-width:33.33333%}html body .bvi .bvi-col-lg-5{flex:0 0 41.66667%;max-width:41.66667%}html body .bvi .bvi-col-lg-6{flex:0 0 50%;max-width:50%}html body .bvi .bvi-col-lg-7{flex:0 0 58.33333%;max-width:58.33333%}html body .bvi .bvi-col-lg-8{flex:0 0 66.66667%;max-width:66.66667%}html body .bvi .bvi-col-lg-9{flex:0 0 75%;max-width:75%}html body .bvi .bvi-col-lg-10{flex:0 0 83.33333%;max-width:83.33333%}html body .bvi .bvi-col-lg-11{flex:0 0 91.66667%;max-width:91.66667%}html body .bvi .bvi-col-lg-12{flex:0 0 100%;max-width:100%}html body .bvi .order-lg-first{order:-1}html body .bvi .order-lg-last{order:13}html body .bvi .order-lg-0{order:0}html body .bvi .order-lg-1{order:1}html body .bvi .order-lg-2{order:2}html body .bvi .order-lg-3{order:3}html body .bvi .order-lg-4{order:4}html body .bvi .order-lg-5{order:5}html body .bvi .order-lg-6{order:6}html body .bvi .order-lg-7{order:7}html body .bvi .order-lg-8{order:8}html body .bvi .order-lg-9{order:9}html body .bvi .order-lg-10{order:10}html body .bvi .order-lg-11{order:11}html body .bvi .order-lg-12{order:12}html body .bvi .offset-lg-0{margin-left:0}html body .bvi .offset-lg-1{margin-left:8.33333%}html body .bvi .offset-lg-2{margin-left:16.66667%}html body .bvi .offset-lg-3{margin-left:25%}html body .bvi .offset-lg-4{margin-left:33.33333%}html body .bvi .offset-lg-5{margin-left:41.66667%}html body .bvi .offset-lg-6{margin-left:50%}html body .bvi .offset-lg-7{margin-left:58.33333%}html body .bvi .offset-lg-8{margin-left:66.66667%}html body .bvi .offset-lg-9{margin-left:75%}html body .bvi .offset-lg-10{margin-left:83.33333%}html body .bvi .offset-lg-11{margin-left:91.66667%}}@media(min-width:1200px){html body .bvi .bvi-col-xl{flex-basis:0;flex-grow:1;max-width:100%}html body .bvi .bvi-col-xl-auto{flex:0 0 auto;width:auto;max-width:none}html body .bvi .bvi-col-xl-1{flex:0 0 8.33333%;max-width:8.33333%}html body .bvi .bvi-col-xl-2{flex:0 0 16.66667%;max-width:16.66667%}html body .bvi .bvi-col-xl-3{flex:0 0 25%;max-width:25%}html body .bvi .bvi-col-xl-4{flex:0 0 33.33333%;max-width:33.33333%}html body .bvi .bvi-col-xl-5{flex:0 0 41.66667%;max-width:41.66667%}html body .bvi .bvi-col-xl-6{flex:0 0 50%;max-width:50%}html body .bvi .bvi-col-xl-7{flex:0 0 58.33333%;max-width:58.33333%}html body .bvi .bvi-col-xl-8{flex:0 0 66.66667%;max-width:66.66667%}html body .bvi .bvi-col-xl-9{flex:0 0 75%;max-width:75%}html body .bvi .bvi-col-xl-10{flex:0 0 83.33333%;max-width:83.33333%}html body .bvi .bvi-col-xl-11{flex:0 0 91.66667%;max-width:91.66667%}html body .bvi .bvi-col-xl-12{flex:0 0 100%;max-width:100%}html body .bvi .order-xl-first{order:-1}html body .bvi .order-xl-last{order:13}html body .bvi .order-xl-0{order:0}html body .bvi .order-xl-1{order:1}html body .bvi .order-xl-2{order:2}html body .bvi .order-xl-3{order:3}html body .bvi .order-xl-4{order:4}html body .bvi .order-xl-5{order:5}html body .bvi .order-xl-6{order:6}html body .bvi .order-xl-7{order:7}html body .bvi .order-xl-8{order:8}html body .bvi .order-xl-9{order:9}html body .bvi .order-xl-10{order:10}html body .bvi .order-xl-11{order:11}html body .bvi .order-xl-12{order:12}html body .bvi .offset-xl-0{margin-left:0}html body .bvi .offset-xl-1{margin-left:8.33333%}html body .bvi .offset-xl-2{margin-left:16.66667%}html body .bvi .offset-xl-3{margin-left:25%}html body .bvi .offset-xl-4{margin-left:33.33333%}html body .bvi .offset-xl-5{margin-left:41.66667%}html body .bvi .offset-xl-6{margin-left:50%}html body .bvi .offset-xl-7{margin-left:58.33333%}html body .bvi .offset-xl-8{margin-left:66.66667%}html body .bvi .offset-xl-9{margin-left:75%}html body .bvi .offset-xl-10{margin-left:83.33333%}html body .bvi .offset-xl-11{margin-left:91.66667%}}html body .bvi .bvi-btn{display:inline-block;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;user-select:none;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){html body .bvi .bvi-btn{transition:none}}html body .bvi .bvi-btn:hover,html body .bvi .bvi-btn:focus{text-decoration:none}html body .bvi .bvi-btn:focus,html body .bvi .bvi-btn.focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}html body .bvi .bvi-btn.disabled,html body .bvi .bvi-btn:disabled{opacity:.65}html body .bvi .bvi-btn:not(:disabled):not(.disabled){cursor:pointer}html body .bvi a.bvi-btn.disabled,html body .bvi fieldset:disabled a.bvi-btn{pointer-events:none}html body .bvi .bvi-btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}html body .bvi .bvi-btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}html body .bvi .bvi-btn-primary:focus,html body .bvi .bvi-btn-primary.focus{box-shadow:0 0 0 .2rem rgba(0,123,255,0.5)}html body .bvi .bvi-btn-primary.disabled,html body .bvi .bvi-btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}html body .bvi .bvi-btn-primary:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-primary:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}html body .bvi .bvi-btn-primary:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-primary:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,0.5)}html body .bvi .bvi-btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}html body .bvi .bvi-btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}html body .bvi .bvi-btn-secondary:focus,html body .bvi .bvi-btn-secondary.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}html body .bvi .bvi-btn-secondary.disabled,html body .bvi .bvi-btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}html body .bvi .bvi-btn-secondary:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-secondary:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}html body .bvi .bvi-btn-secondary:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-secondary:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}html body .bvi .bvi-btn-success{color:#fff;background-color:#28a745;border-color:#28a745}html body .bvi .bvi-btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}html body .bvi .bvi-btn-success:focus,html body .bvi .bvi-btn-success.focus{box-shadow:0 0 0 .2rem rgba(40,167,69,0.5)}html body .bvi .bvi-btn-success.disabled,html body .bvi .bvi-btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}html body .bvi .bvi-btn-success:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-success:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}html body .bvi .bvi-btn-success:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-success:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,0.5)}html body .bvi .bvi-btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}html body .bvi .bvi-btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}html body .bvi .bvi-btn-info:focus,html body .bvi .bvi-btn-info.focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}html body .bvi .bvi-btn-info.disabled,html body .bvi .bvi-btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}html body .bvi .bvi-btn-info:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-info:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}html body .bvi .bvi-btn-info:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-info:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}html body .bvi .bvi-btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}html body .bvi .bvi-btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}html body .bvi .bvi-btn-warning:focus,html body .bvi .bvi-btn-warning.focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}html body .bvi .bvi-btn-warning.disabled,html body .bvi .bvi-btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}html body .bvi .bvi-btn-warning:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-warning:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}html body .bvi .bvi-btn-warning:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-warning:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}html body .bvi .bvi-btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}html body .bvi .bvi-btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}html body .bvi .bvi-btn-danger:focus,html body .bvi .bvi-btn-danger.focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}html body .bvi .bvi-btn-danger.disabled,html body .bvi .bvi-btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}html body .bvi .bvi-btn-danger:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-danger:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}html body .bvi .bvi-btn-danger:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-danger:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}html body .bvi .bvi-btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}html body .bvi .bvi-btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}html body .bvi .bvi-btn-light:focus,html body .bvi .bvi-btn-light.focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}html body .bvi .bvi-btn-light.disabled,html body .bvi .bvi-btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}html body .bvi .bvi-btn-light:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-light:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}html body .bvi .bvi-btn-light:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-light:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}html body .bvi .bvi-btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}html body .bvi .bvi-btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}html body .bvi .bvi-btn-dark:focus,html body .bvi .bvi-btn-dark.focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}html body .bvi .bvi-btn-dark.disabled,html body .bvi .bvi-btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}html body .bvi .bvi-btn-dark:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-dark:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}html body .bvi .bvi-btn-dark:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-dark:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}html body .bvi .bvi-btn-bvi-white{color:#212529;background-color:#fff;border-color:#fff}html body .bvi .bvi-btn-bvi-white:hover{color:#212529;background-color:#ececec;border-color:#e6e6e6}html body .bvi .bvi-btn-bvi-white:focus,html body .bvi .bvi-btn-bvi-white.focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}html body .bvi .bvi-btn-bvi-white.disabled,html body .bvi .bvi-btn-bvi-white:disabled{color:#212529;background-color:#fff;border-color:#fff}html body .bvi .bvi-btn-bvi-white:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-bvi-white:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-bvi-white.dropdown-toggle{color:#212529;background-color:#e6e6e6;border-color:#dfdfdf}html body .bvi .bvi-btn-bvi-white:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-bvi-white:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-bvi-white.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}html body .bvi .bvi-btn-bvi-black{color:#fff;background-color:#000;border-color:#000}html body .bvi .bvi-btn-bvi-black:hover{color:#fff;background-color:black;border-color:black}html body .bvi .bvi-btn-bvi-black:focus,html body .bvi .bvi-btn-bvi-black.focus{box-shadow:0 0 0 .2rem rgba(0,0,0,0.5)}html body .bvi .bvi-btn-bvi-black.disabled,html body .bvi .bvi-btn-bvi-black:disabled{color:#fff;background-color:#000;border-color:#000}html body .bvi .bvi-btn-bvi-black:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-bvi-black:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-bvi-black.dropdown-toggle{color:#fff;background-color:black;border-color:black}html body .bvi .bvi-btn-bvi-black:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-bvi-black:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-bvi-black.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,0,0,0.5)}html body .bvi .bvi-btn-bvi-blue{color:#fff;background-color:#063462;border-color:#063462}html body .bvi .bvi-btn-bvi-blue:hover{color:#fff;background-color:#04213e;border-color:#031b32}html body .bvi .bvi-btn-bvi-blue:focus,html body .bvi .bvi-btn-bvi-blue.focus{box-shadow:0 0 0 .2rem rgba(6,52,98,0.5)}html body .bvi .bvi-btn-bvi-blue.disabled,html body .bvi .bvi-btn-bvi-blue:disabled{color:#fff;background-color:#063462;border-color:#063462}html body .bvi .bvi-btn-bvi-blue:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-bvi-blue:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-bvi-blue.dropdown-toggle{color:#fff;background-color:#031b32;border-color:#021426}html body .bvi .bvi-btn-bvi-blue:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-bvi-blue:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-bvi-blue.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(6,52,98,0.5)}html body .bvi .bvi-btn-bvi-brown{color:#fff;background-color:#4d4b43;border-color:#4d4b43}html body .bvi .bvi-btn-bvi-brown:hover{color:#fff;background-color:#393731;border-color:#32302b}html body .bvi .bvi-btn-bvi-brown:focus,html body .bvi .bvi-btn-bvi-brown.focus{box-shadow:0 0 0 .2rem rgba(77,75,67,0.5)}html body .bvi .bvi-btn-bvi-brown.disabled,html body .bvi .bvi-btn-bvi-brown:disabled{color:#fff;background-color:#4d4b43;border-color:#4d4b43}html body .bvi .bvi-btn-bvi-brown:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-bvi-brown:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-bvi-brown.dropdown-toggle{color:#fff;background-color:#32302b;border-color:#2b2a25}html body .bvi .bvi-btn-bvi-brown:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-bvi-brown:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-bvi-brown.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(77,75,67,0.5)}html body .bvi .bvi-btn-bvi-green{color:#212529;background-color:#a9e44d;border-color:#a9e44d}html body .bvi .bvi-btn-bvi-green:hover{color:#212529;background-color:#99df2c;border-color:#93dd21}html body .bvi .bvi-btn-bvi-green:focus,html body .bvi .bvi-btn-bvi-green.focus{box-shadow:0 0 0 .2rem rgba(169,228,77,0.5)}html body .bvi .bvi-btn-bvi-green.disabled,html body .bvi .bvi-btn-bvi-green:disabled{color:#212529;background-color:#a9e44d;border-color:#a9e44d}html body .bvi .bvi-btn-bvi-green:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-bvi-green:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-bvi-green.dropdown-toggle{color:#212529;background-color:#93dd21;border-color:#8cd120}html body .bvi .bvi-btn-bvi-green:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-bvi-green:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-bvi-green.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(169,228,77,0.5)}html body .bvi .bvi-btn-outline-primary{color:#007bff;background-color:transparent;background-image:none;border-color:#007bff}html body .bvi .bvi-btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}html body .bvi .bvi-btn-outline-primary:focus,html body .bvi .bvi-btn-outline-primary.focus{box-shadow:0 0 0 .2rem rgba(0,123,255,0.5)}html body .bvi .bvi-btn-outline-primary.disabled,html body .bvi .bvi-btn-outline-primary:disabled{color:#007bff;background-color:transparent}html body .bvi .bvi-btn-outline-primary:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-primary:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}html body .bvi .bvi-btn-outline-primary:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,0.5)}html body .bvi .bvi-btn-outline-secondary{color:#6c757d;background-color:transparent;background-image:none;border-color:#6c757d}html body .bvi .bvi-btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}html body .bvi .bvi-btn-outline-secondary:focus,html body .bvi .bvi-btn-outline-secondary.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}html body .bvi .bvi-btn-outline-secondary.disabled,html body .bvi .bvi-btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}html body .bvi .bvi-btn-outline-secondary:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-secondary:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}html body .bvi .bvi-btn-outline-secondary:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}html body .bvi .bvi-btn-outline-success{color:#28a745;background-color:transparent;background-image:none;border-color:#28a745}html body .bvi .bvi-btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}html body .bvi .bvi-btn-outline-success:focus,html body .bvi .bvi-btn-outline-success.focus{box-shadow:0 0 0 .2rem rgba(40,167,69,0.5)}html body .bvi .bvi-btn-outline-success.disabled,html body .bvi .bvi-btn-outline-success:disabled{color:#28a745;background-color:transparent}html body .bvi .bvi-btn-outline-success:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-success:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}html body .bvi .bvi-btn-outline-success:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,0.5)}html body .bvi .bvi-btn-outline-info{color:#17a2b8;background-color:transparent;background-image:none;border-color:#17a2b8}html body .bvi .bvi-btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}html body .bvi .bvi-btn-outline-info:focus,html body .bvi .bvi-btn-outline-info.focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}html body .bvi .bvi-btn-outline-info.disabled,html body .bvi .bvi-btn-outline-info:disabled{color:#17a2b8;background-color:transparent}html body .bvi .bvi-btn-outline-info:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-info:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}html body .bvi .bvi-btn-outline-info:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}html body .bvi .bvi-btn-outline-warning{color:#ffc107;background-color:transparent;background-image:none;border-color:#ffc107}html body .bvi .bvi-btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}html body .bvi .bvi-btn-outline-warning:focus,html body .bvi .bvi-btn-outline-warning.focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}html body .bvi .bvi-btn-outline-warning.disabled,html body .bvi .bvi-btn-outline-warning:disabled{color:#ffc107;background-color:transparent}html body .bvi .bvi-btn-outline-warning:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-warning:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}html body .bvi .bvi-btn-outline-warning:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}html body .bvi .bvi-btn-outline-danger{color:#dc3545;background-color:transparent;background-image:none;border-color:#dc3545}html body .bvi .bvi-btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}html body .bvi .bvi-btn-outline-danger:focus,html body .bvi .bvi-btn-outline-danger.focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}html body .bvi .bvi-btn-outline-danger.disabled,html body .bvi .bvi-btn-outline-danger:disabled{color:#dc3545;background-color:transparent}html body .bvi .bvi-btn-outline-danger:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-danger:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}html body .bvi .bvi-btn-outline-danger:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}html body .bvi .bvi-btn-outline-light{color:#f8f9fa;background-color:transparent;background-image:none;border-color:#f8f9fa}html body .bvi .bvi-btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}html body .bvi .bvi-btn-outline-light:focus,html body .bvi .bvi-btn-outline-light.focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}html body .bvi .bvi-btn-outline-light.disabled,html body .bvi .bvi-btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}html body .bvi .bvi-btn-outline-light:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-light:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}html body .bvi .bvi-btn-outline-light:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}html body .bvi .bvi-btn-outline-dark{color:#343a40;background-color:transparent;background-image:none;border-color:#343a40}html body .bvi .bvi-btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}html body .bvi .bvi-btn-outline-dark:focus,html body .bvi .bvi-btn-outline-dark.focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}html body .bvi .bvi-btn-outline-dark.disabled,html body .bvi .bvi-btn-outline-dark:disabled{color:#343a40;background-color:transparent}html body .bvi .bvi-btn-outline-dark:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-dark:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}html body .bvi .bvi-btn-outline-dark:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}html body .bvi .bvi-btn-outline-bvi-white{color:#fff;background-color:transparent;background-image:none;border-color:#fff}html body .bvi .bvi-btn-outline-bvi-white:hover{color:#212529;background-color:#fff;border-color:#fff}html body .bvi .bvi-btn-outline-bvi-white:focus,html body .bvi .bvi-btn-outline-bvi-white.focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}html body .bvi .bvi-btn-outline-bvi-white.disabled,html body .bvi .bvi-btn-outline-bvi-white:disabled{color:#fff;background-color:transparent}html body .bvi .bvi-btn-outline-bvi-white:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-bvi-white:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-bvi-white.dropdown-toggle{color:#212529;background-color:#fff;border-color:#fff}html body .bvi .bvi-btn-outline-bvi-white:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-bvi-white:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-bvi-white.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}html body .bvi .bvi-btn-outline-bvi-black{color:#000;background-color:transparent;background-image:none;border-color:#000}html body .bvi .bvi-btn-outline-bvi-black:hover{color:#fff;background-color:#000;border-color:#000}html body .bvi .bvi-btn-outline-bvi-black:focus,html body .bvi .bvi-btn-outline-bvi-black.focus{box-shadow:0 0 0 .2rem rgba(0,0,0,0.5)}html body .bvi .bvi-btn-outline-bvi-black.disabled,html body .bvi .bvi-btn-outline-bvi-black:disabled{color:#000;background-color:transparent}html body .bvi .bvi-btn-outline-bvi-black:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-bvi-black:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-bvi-black.dropdown-toggle{color:#fff;background-color:#000;border-color:#000}html body .bvi .bvi-btn-outline-bvi-black:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-bvi-black:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-bvi-black.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,0,0,0.5)}html body .bvi .bvi-btn-outline-bvi-blue{color:#063462;background-color:transparent;background-image:none;border-color:#063462}html body .bvi .bvi-btn-outline-bvi-blue:hover{color:#fff;background-color:#063462;border-color:#063462}html body .bvi .bvi-btn-outline-bvi-blue:focus,html body .bvi .bvi-btn-outline-bvi-blue.focus{box-shadow:0 0 0 .2rem rgba(6,52,98,0.5)}html body .bvi .bvi-btn-outline-bvi-blue.disabled,html body .bvi .bvi-btn-outline-bvi-blue:disabled{color:#063462;background-color:transparent}html body .bvi .bvi-btn-outline-bvi-blue:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-bvi-blue:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-bvi-blue.dropdown-toggle{color:#fff;background-color:#063462;border-color:#063462}html body .bvi .bvi-btn-outline-bvi-blue:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-bvi-blue:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-bvi-blue.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(6,52,98,0.5)}html body .bvi .bvi-btn-outline-bvi-brown{color:#4d4b43;background-color:transparent;background-image:none;border-color:#4d4b43}html body .bvi .bvi-btn-outline-bvi-brown:hover{color:#fff;background-color:#4d4b43;border-color:#4d4b43}html body .bvi .bvi-btn-outline-bvi-brown:focus,html body .bvi .bvi-btn-outline-bvi-brown.focus{box-shadow:0 0 0 .2rem rgba(77,75,67,0.5)}html body .bvi .bvi-btn-outline-bvi-brown.disabled,html body .bvi .bvi-btn-outline-bvi-brown:disabled{color:#4d4b43;background-color:transparent}html body .bvi .bvi-btn-outline-bvi-brown:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-bvi-brown:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-bvi-brown.dropdown-toggle{color:#fff;background-color:#4d4b43;border-color:#4d4b43}html body .bvi .bvi-btn-outline-bvi-brown:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-bvi-brown:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-bvi-brown.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(77,75,67,0.5)}html body .bvi .bvi-btn-outline-bvi-green{color:#a9e44d;background-color:transparent;background-image:none;border-color:#a9e44d}html body .bvi .bvi-btn-outline-bvi-green:hover{color:#212529;background-color:#a9e44d;border-color:#a9e44d}html body .bvi .bvi-btn-outline-bvi-green:focus,html body .bvi .bvi-btn-outline-bvi-green.focus{box-shadow:0 0 0 .2rem rgba(169,228,77,0.5)}html body .bvi .bvi-btn-outline-bvi-green.disabled,html body .bvi .bvi-btn-outline-bvi-green:disabled{color:#a9e44d;background-color:transparent}html body .bvi .bvi-btn-outline-bvi-green:not(:disabled):not(.disabled):active,html body .bvi .bvi-btn-outline-bvi-green:not(:disabled):not(.disabled).active,.show>html body .bvi .bvi-btn-outline-bvi-green.dropdown-toggle{color:#212529;background-color:#a9e44d;border-color:#a9e44d}html body .bvi .bvi-btn-outline-bvi-green:not(:disabled):not(.disabled):active:focus,html body .bvi .bvi-btn-outline-bvi-green:not(:disabled):not(.disabled).active:focus,.show>html body .bvi .bvi-btn-outline-bvi-green.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(169,228,77,0.5)}html body .bvi .bvi-btn-link{font-weight:400;color:#007bff;background-color:transparent}html body .bvi .bvi-btn-link:hover{color:#0056b3;text-decoration:underline;background-color:transparent;border-color:transparent}html body .bvi .bvi-btn-link:focus,html body .bvi .bvi-btn-link.focus{text-decoration:underline;border-color:transparent;box-shadow:none}html body .bvi .bvi-btn-link:disabled,html body .bvi .bvi-btn-link.disabled{color:#6c757d;pointer-events:none}html body .bvi .bvi-btn-lg,html body .bvi .bvi-btn-group-lg>.bvi-btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0}html body .bvi .bvi-btn-sm,html body .bvi .bvi-btn-group-sm>.bvi-btn{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:0}html body .bvi .bvi-btn-block{display:block;width:100%}html body .bvi .bvi-btn-block+.bvi-btn-block{margin-top:.5rem}html body .bvi input[type="submit"].bvi-btn-block,html body .bvi input[type="reset"].bvi-btn-block,html body .bvi input[type="button"].bvi-btn-block{width:100%}html body .bvi .bvi-btn-group,html body .bvi .bvi-btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}html body .bvi .bvi-btn-group>.bvi-btn,html body .bvi .bvi-btn-group-vertical>.bvi-btn{position:relative;flex:0 1 auto}html body .bvi .bvi-btn-group>.bvi-btn:hover,html body .bvi .bvi-btn-group-vertical>.bvi-btn:hover{z-index:1}html body .bvi .bvi-btn-group>.bvi-btn:focus,html body .bvi .bvi-btn-group>.bvi-btn:active,html body .bvi .bvi-btn-group>.bvi-btn.active,html body .bvi .bvi-btn-group-vertical>.bvi-btn:focus,html body .bvi .bvi-btn-group-vertical>.bvi-btn:active,html body .bvi .bvi-btn-group-vertical>.bvi-btn.active{z-index:1}html body .bvi .bvi-btn-group .bvi-btn+.bvi-btn,html body .bvi .bvi-btn-group .bvi-btn+.bvi-btn-group,html body .bvi .bvi-btn-group .bvi-btn-group+.bvi-btn,html body .bvi .bvi-btn-group .bvi-btn-group+.bvi-btn-group,html body .bvi .bvi-btn-group-vertical .bvi-btn+.bvi-btn,html body .bvi .bvi-btn-group-vertical .bvi-btn+.bvi-btn-group,html body .bvi .bvi-btn-group-vertical .bvi-btn-group+.bvi-btn,html body .bvi .bvi-btn-group-vertical .bvi-btn-group+.bvi-btn-group{margin-left:-1px}html body .bvi .bvi-btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}html body .bvi .bvi-btn-toolbar .input-group{width:auto}html body .bvi .bvi-btn-group>.bvi-btn:first-child{margin-left:0}html body .bvi .bvi-btn-group>.bvi-btn:not(:last-child):not(.dropdown-toggle),html body .bvi .bvi-btn-group>.bvi-btn-group:not(:last-child)>.bvi-btn{border-top-right-radius:0;border-bottom-right-radius:0}html body .bvi .bvi-btn-group>.bvi-btn:not(:first-child),html body .bvi .bvi-btn-group>.bvi-btn-group:not(:first-child)>.bvi-btn{border-top-left-radius:0;border-bottom-left-radius:0}html body .bvi .dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}html body .bvi .dropdown-toggle-split::after,.dropup html body .bvi .dropdown-toggle-split::after,.dropright html body .bvi .dropdown-toggle-split::after{margin-left:0}.dropleft html body .bvi .dropdown-toggle-split::before{margin-right:0}html body .bvi .bvi-btn-sm+.dropdown-toggle-split,html body .bvi .bvi-btn-group-sm>.bvi-btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}html body .bvi .bvi-btn-lg+.dropdown-toggle-split,html body .bvi .bvi-btn-group-lg>.bvi-btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}html body .bvi .bvi-btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}html body .bvi .bvi-btn-group-vertical .bvi-btn,html body .bvi .bvi-btn-group-vertical .bvi-btn-group{width:100%}html body .bvi .bvi-btn-group-vertical>.bvi-btn+.bvi-btn,html body .bvi .bvi-btn-group-vertical>.bvi-btn+.bvi-btn-group,html body .bvi .bvi-btn-group-vertical>.bvi-btn-group+.bvi-btn,html body .bvi .bvi-btn-group-vertical>.bvi-btn-group+.bvi-btn-group{margin-top:-1px;margin-left:0}html body .bvi .bvi-btn-group-vertical>.bvi-btn:not(:last-child):not(.dropdown-toggle),html body .bvi .bvi-btn-group-vertical>.bvi-btn-group:not(:last-child)>.bvi-btn{border-bottom-right-radius:0;border-bottom-left-radius:0}html body .bvi .bvi-btn-group-vertical>.bvi-btn:not(:first-child),html body .bvi .bvi-btn-group-vertical>.bvi-btn-group:not(:first-child)>.bvi-btn{border-top-left-radius:0;border-top-right-radius:0}html body .bvi .bvi-btn-group-toggle>.bvi-btn,html body .bvi .bvi-btn-group-toggle>.bvi-btn-group>.bvi-btn{margin-bottom:0}html body .bvi .bvi-btn-group-toggle>.bvi-btn input[type="radio"],html body .bvi .bvi-btn-group-toggle>.bvi-btn input[type="checkbox"],html body .bvi .bvi-btn-group-toggle>.bvi-btn-group>.bvi-btn input[type="radio"],html body .bvi .bvi-btn-group-toggle>.bvi-btn-group>.bvi-btn input[type="checkbox"]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}html body .bvi .bvi-border{border:1px solid #dee2e6 !important}html body .bvi .bvi-border-top{border-top:1px solid #dee2e6 !important}html body .bvi .bvi-border-right{border-right:1px solid #dee2e6 !important}html body .bvi .bvi-border-bottom{border-bottom:1px solid #dee2e6 !important}html body .bvi .bvi-border-left{border-left:1px solid #dee2e6 !important}html body .bvi .bvi-border-0{border:0 !important}html body .bvi .bvi-border-top-0{border-top:0 !important}html body .bvi .bvi-border-right-0{border-right:0 !important}html body .bvi .bvi-border-bottom-0{border-bottom:0 !important}html body .bvi .bvi-border-left-0{border-left:0 !important}html body .bvi .bvi-border-primary{border-color:#007bff !important}html body .bvi .bvi-border-secondary{border-color:#6c757d !important}html body .bvi .bvi-border-success{border-color:#28a745 !important}html body .bvi .bvi-border-info{border-color:#17a2b8 !important}html body .bvi .bvi-border-warning{border-color:#ffc107 !important}html body .bvi .bvi-border-danger{border-color:#dc3545 !important}html body .bvi .bvi-border-light{border-color:#f8f9fa !important}html body .bvi .bvi-border-dark{border-color:#343a40 !important}html body .bvi .bvi-border-bvi-white{border-color:#fff !important}html body .bvi .bvi-border-bvi-black{border-color:#000 !important}html body .bvi .bvi-border-bvi-blue{border-color:#063462 !important}html body .bvi .bvi-border-bvi-brown{border-color:#4d4b43 !important}html body .bvi .bvi-border-bvi-green{border-color:#a9e44d !important}html body .bvi .bvi-border-white{border-color:#fff !important}html body .bvi .bvi-rounded{border-radius:0 !important}html body .bvi .bvi-rounded-top{border-top-left-radius:0 !important;border-top-right-radius:0 !important}html body .bvi .bvi-rounded-right{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}html body .bvi .bvi-rounded-bottom{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}html body .bvi .bvi-rounded-left{border-top-left-radius:0 !important;border-bottom-left-radius:0 !important}html body .bvi .bvi-rounded-circle{border-radius:50% !important}html body .bvi .bvi-rounded-0{border-radius:0 !important}html body .bvi .bvi-m-0{margin:0 !important}html body .bvi .bvi-mt-0,html body .bvi .bvi-my-0{margin-top:0 !important}html body .bvi .bvi-mr-0,html body .bvi .bvi-mx-0{margin-right:0 !important}html body .bvi .bvi-mb-0,html body .bvi .bvi-my-0{margin-bottom:0 !important}html body .bvi .bvi-ml-0,html body .bvi .bvi-mx-0{margin-left:0 !important}html body .bvi .bvi-m-1{margin:.25rem !important}html body .bvi .bvi-mt-1,html body .bvi .bvi-my-1{margin-top:.25rem !important}html body .bvi .bvi-mr-1,html body .bvi .bvi-mx-1{margin-right:.25rem !important}html body .bvi .bvi-mb-1,html body .bvi .bvi-my-1{margin-bottom:.25rem !important}html body .bvi .bvi-ml-1,html body .bvi .bvi-mx-1{margin-left:.25rem !important}html body .bvi .bvi-m-2{margin:.5rem !important}html body .bvi .bvi-mt-2,html body .bvi .bvi-my-2{margin-top:.5rem !important}html body .bvi .bvi-mr-2,html body .bvi .bvi-mx-2{margin-right:.5rem !important}html body .bvi .bvi-mb-2,html body .bvi .bvi-my-2{margin-bottom:.5rem !important}html body .bvi .bvi-ml-2,html body .bvi .bvi-mx-2{margin-left:.5rem !important}html body .bvi .bvi-m-3{margin:1rem !important}html body .bvi .bvi-mt-3,html body .bvi .bvi-my-3{margin-top:1rem !important}html body .bvi .bvi-mr-3,html body .bvi .bvi-mx-3{margin-right:1rem !important}html body .bvi .bvi-mb-3,html body .bvi .bvi-my-3{margin-bottom:1rem !important}html body .bvi .bvi-ml-3,html body .bvi .bvi-mx-3{margin-left:1rem !important}html body .bvi .bvi-m-4{margin:1.5rem !important}html body .bvi .bvi-mt-4,html body .bvi .bvi-my-4{margin-top:1.5rem !important}html body .bvi .bvi-mr-4,html body .bvi .bvi-mx-4{margin-right:1.5rem !important}html body .bvi .bvi-mb-4,html body .bvi .bvi-my-4{margin-bottom:1.5rem !important}html body .bvi .bvi-ml-4,html body .bvi .bvi-mx-4{margin-left:1.5rem !important}html body .bvi .bvi-m-5{margin:3rem !important}html body .bvi .bvi-mt-5,html body .bvi .bvi-my-5{margin-top:3rem !important}html body .bvi .bvi-mr-5,html body .bvi .bvi-mx-5{margin-right:3rem !important}html body .bvi .bvi-mb-5,html body .bvi .bvi-my-5{margin-bottom:3rem !important}html body .bvi .bvi-ml-5,html body .bvi .bvi-mx-5{margin-left:3rem !important}html body .bvi .bvi-p-0{padding:0 !important}html body .bvi .bvi-pt-0,html body .bvi .bvi-py-0{padding-top:0 !important}html body .bvi .bvi-pr-0,html body .bvi .bvi-px-0{padding-right:0 !important}html body .bvi .bvi-pb-0,html body .bvi .bvi-py-0{padding-bottom:0 !important}html body .bvi .bvi-pl-0,html body .bvi .bvi-px-0{padding-left:0 !important}html body .bvi .bvi-p-1{padding:.25rem !important}html body .bvi .bvi-pt-1,html body .bvi .bvi-py-1{padding-top:.25rem !important}html body .bvi .bvi-pr-1,html body .bvi .bvi-px-1{padding-right:.25rem !important}html body .bvi .bvi-pb-1,html body .bvi .bvi-py-1{padding-bottom:.25rem !important}html body .bvi .bvi-pl-1,html body .bvi .bvi-px-1{padding-left:.25rem !important}html body .bvi .bvi-p-2{padding:.5rem !important}html body .bvi .bvi-pt-2,html body .bvi .bvi-py-2{padding-top:.5rem !important}html body .bvi .bvi-pr-2,html body .bvi .bvi-px-2{padding-right:.5rem !important}html body .bvi .bvi-pb-2,html body .bvi .bvi-py-2{padding-bottom:.5rem !important}html body .bvi .bvi-pl-2,html body .bvi .bvi-px-2{padding-left:.5rem !important}html body .bvi .bvi-p-3{padding:1rem !important}html body .bvi .bvi-pt-3,html body .bvi .bvi-py-3{padding-top:1rem !important}html body .bvi .bvi-pr-3,html body .bvi .bvi-px-3{padding-right:1rem !important}html body .bvi .bvi-pb-3,html body .bvi .bvi-py-3{padding-bottom:1rem !important}html body .bvi .bvi-pl-3,html body .bvi .bvi-px-3{padding-left:1rem !important}html body .bvi .bvi-p-4{padding:1.5rem !important}html body .bvi .bvi-pt-4,html body .bvi .bvi-py-4{padding-top:1.5rem !important}html body .bvi .bvi-pr-4,html body .bvi .bvi-px-4{padding-right:1.5rem !important}html body .bvi .bvi-pb-4,html body .bvi .bvi-py-4{padding-bottom:1.5rem !important}html body .bvi .bvi-pl-4,html body .bvi .bvi-px-4{padding-left:1.5rem !important}html body .bvi .bvi-p-5{padding:3rem !important}html body .bvi .bvi-pt-5,html body .bvi .bvi-py-5{padding-top:3rem !important}html body .bvi .bvi-pr-5,html body .bvi .bvi-px-5{padding-right:3rem !important}html body .bvi .bvi-pb-5,html body .bvi .bvi-py-5{padding-bottom:3rem !important}html body .bvi .bvi-pl-5,html body .bvi .bvi-px-5{padding-left:3rem !important}html body .bvi .bvi-m-auto{margin:auto !important}html body .bvi .bvi-mt-auto,html body .bvi .bvi-my-auto{margin-top:auto !important}html body .bvi .bvi-mr-auto,html body .bvi .bvi-mx-auto{margin-right:auto !important}html body .bvi .bvi-mb-auto,html body .bvi .bvi-my-auto{margin-bottom:auto !important}html body .bvi .bvi-ml-auto,html body .bvi .bvi-mx-auto{margin-left:auto !important}@media(min-width:576px){html body .bvi .bvi-m-sm-0{margin:0 !important}html body .bvi .bvi-mt-sm-0,html body .bvi .bvi-my-sm-0{margin-top:0 !important}html body .bvi .bvi-mr-sm-0,html body .bvi .bvi-mx-sm-0{margin-right:0 !important}html body .bvi .bvi-mb-sm-0,html body .bvi .bvi-my-sm-0{margin-bottom:0 !important}html body .bvi .bvi-ml-sm-0,html body .bvi .bvi-mx-sm-0{margin-left:0 !important}html body .bvi .bvi-m-sm-1{margin:.25rem !important}html body .bvi .bvi-mt-sm-1,html body .bvi .bvi-my-sm-1{margin-top:.25rem !important}html body .bvi .bvi-mr-sm-1,html body .bvi .bvi-mx-sm-1{margin-right:.25rem !important}html body .bvi .bvi-mb-sm-1,html body .bvi .bvi-my-sm-1{margin-bottom:.25rem !important}html body .bvi .bvi-ml-sm-1,html body .bvi .bvi-mx-sm-1{margin-left:.25rem !important}html body .bvi .bvi-m-sm-2{margin:.5rem !important}html body .bvi .bvi-mt-sm-2,html body .bvi .bvi-my-sm-2{margin-top:.5rem !important}html body .bvi .bvi-mr-sm-2,html body .bvi .bvi-mx-sm-2{margin-right:.5rem !important}html body .bvi .bvi-mb-sm-2,html body .bvi .bvi-my-sm-2{margin-bottom:.5rem !important}html body .bvi .bvi-ml-sm-2,html body .bvi .bvi-mx-sm-2{margin-left:.5rem !important}html body .bvi .bvi-m-sm-3{margin:1rem !important}html body .bvi .bvi-mt-sm-3,html body .bvi .bvi-my-sm-3{margin-top:1rem !important}html body .bvi .bvi-mr-sm-3,html body .bvi .bvi-mx-sm-3{margin-right:1rem !important}html body .bvi .bvi-mb-sm-3,html body .bvi .bvi-my-sm-3{margin-bottom:1rem !important}html body .bvi .bvi-ml-sm-3,html body .bvi .bvi-mx-sm-3{margin-left:1rem !important}html body .bvi .bvi-m-sm-4{margin:1.5rem !important}html body .bvi .bvi-mt-sm-4,html body .bvi .bvi-my-sm-4{margin-top:1.5rem !important}html body .bvi .bvi-mr-sm-4,html body .bvi .bvi-mx-sm-4{margin-right:1.5rem !important}html body .bvi .bvi-mb-sm-4,html body .bvi .bvi-my-sm-4{margin-bottom:1.5rem !important}html body .bvi .bvi-ml-sm-4,html body .bvi .bvi-mx-sm-4{margin-left:1.5rem !important}html body .bvi .bvi-m-sm-5{margin:3rem !important}html body .bvi .bvi-mt-sm-5,html body .bvi .bvi-my-sm-5{margin-top:3rem !important}html body .bvi .bvi-mr-sm-5,html body .bvi .bvi-mx-sm-5{margin-right:3rem !important}html body .bvi .bvi-mb-sm-5,html body .bvi .bvi-my-sm-5{margin-bottom:3rem !important}html body .bvi .bvi-ml-sm-5,html body .bvi .bvi-mx-sm-5{margin-left:3rem !important}html body .bvi .bvi-p-sm-0{padding:0 !important}html body .bvi .bvi-pt-sm-0,html body .bvi .bvi-py-sm-0{padding-top:0 !important}html body .bvi .bvi-pr-sm-0,html body .bvi .bvi-px-sm-0{padding-right:0 !important}html body .bvi .bvi-pb-sm-0,html body .bvi .bvi-py-sm-0{padding-bottom:0 !important}html body .bvi .bvi-pl-sm-0,html body .bvi .bvi-px-sm-0{padding-left:0 !important}html body .bvi .bvi-p-sm-1{padding:.25rem !important}html body .bvi .bvi-pt-sm-1,html body .bvi .bvi-py-sm-1{padding-top:.25rem !important}html body .bvi .bvi-pr-sm-1,html body .bvi .bvi-px-sm-1{padding-right:.25rem !important}html body .bvi .bvi-pb-sm-1,html body .bvi .bvi-py-sm-1{padding-bottom:.25rem !important}html body .bvi .bvi-pl-sm-1,html body .bvi .bvi-px-sm-1{padding-left:.25rem !important}html body .bvi .bvi-p-sm-2{padding:.5rem !important}html body .bvi .bvi-pt-sm-2,html body .bvi .bvi-py-sm-2{padding-top:.5rem !important}html body .bvi .bvi-pr-sm-2,html body .bvi .bvi-px-sm-2{padding-right:.5rem !important}html body .bvi .bvi-pb-sm-2,html body .bvi .bvi-py-sm-2{padding-bottom:.5rem !important}html body .bvi .bvi-pl-sm-2,html body .bvi .bvi-px-sm-2{padding-left:.5rem !important}html body .bvi .bvi-p-sm-3{padding:1rem !important}html body .bvi .bvi-pt-sm-3,html body .bvi .bvi-py-sm-3{padding-top:1rem !important}html body .bvi .bvi-pr-sm-3,html body .bvi .bvi-px-sm-3{padding-right:1rem !important}html body .bvi .bvi-pb-sm-3,html body .bvi .bvi-py-sm-3{padding-bottom:1rem !important}html body .bvi .bvi-pl-sm-3,html body .bvi .bvi-px-sm-3{padding-left:1rem !important}html body .bvi .bvi-p-sm-4{padding:1.5rem !important}html body .bvi .bvi-pt-sm-4,html body .bvi .bvi-py-sm-4{padding-top:1.5rem !important}html body .bvi .bvi-pr-sm-4,html body .bvi .bvi-px-sm-4{padding-right:1.5rem !important}html body .bvi .bvi-pb-sm-4,html body .bvi .bvi-py-sm-4{padding-bottom:1.5rem !important}html body .bvi .bvi-pl-sm-4,html body .bvi .bvi-px-sm-4{padding-left:1.5rem !important}html body .bvi .bvi-p-sm-5{padding:3rem !important}html body .bvi .bvi-pt-sm-5,html body .bvi .bvi-py-sm-5{padding-top:3rem !important}html body .bvi .bvi-pr-sm-5,html body .bvi .bvi-px-sm-5{padding-right:3rem !important}html body .bvi .bvi-pb-sm-5,html body .bvi .bvi-py-sm-5{padding-bottom:3rem !important}html body .bvi .bvi-pl-sm-5,html body .bvi .bvi-px-sm-5{padding-left:3rem !important}html body .bvi .bvi-m-sm-auto{margin:auto !important}html body .bvi .bvi-mt-sm-auto,html body .bvi .bvi-my-sm-auto{margin-top:auto !important}html body .bvi .bvi-mr-sm-auto,html body .bvi .bvi-mx-sm-auto{margin-right:auto !important}html body .bvi .bvi-mb-sm-auto,html body .bvi .bvi-my-sm-auto{margin-bottom:auto !important}html body .bvi .bvi-ml-sm-auto,html body .bvi .bvi-mx-sm-auto{margin-left:auto !important}}@media(min-width:768px){html body .bvi .bvi-m-md-0{margin:0 !important}html body .bvi .bvi-mt-md-0,html body .bvi .bvi-my-md-0{margin-top:0 !important}html body .bvi .bvi-mr-md-0,html body .bvi .bvi-mx-md-0{margin-right:0 !important}html body .bvi .bvi-mb-md-0,html body .bvi .bvi-my-md-0{margin-bottom:0 !important}html body .bvi .bvi-ml-md-0,html body .bvi .bvi-mx-md-0{margin-left:0 !important}html body .bvi .bvi-m-md-1{margin:.25rem !important}html body .bvi .bvi-mt-md-1,html body .bvi .bvi-my-md-1{margin-top:.25rem !important}html body .bvi .bvi-mr-md-1,html body .bvi .bvi-mx-md-1{margin-right:.25rem !important}html body .bvi .bvi-mb-md-1,html body .bvi .bvi-my-md-1{margin-bottom:.25rem !important}html body .bvi .bvi-ml-md-1,html body .bvi .bvi-mx-md-1{margin-left:.25rem !important}html body .bvi .bvi-m-md-2{margin:.5rem !important}html body .bvi .bvi-mt-md-2,html body .bvi .bvi-my-md-2{margin-top:.5rem !important}html body .bvi .bvi-mr-md-2,html body .bvi .bvi-mx-md-2{margin-right:.5rem !important}html body .bvi .bvi-mb-md-2,html body .bvi .bvi-my-md-2{margin-bottom:.5rem !important}html body .bvi .bvi-ml-md-2,html body .bvi .bvi-mx-md-2{margin-left:.5rem !important}html body .bvi .bvi-m-md-3{margin:1rem !important}html body .bvi .bvi-mt-md-3,html body .bvi .bvi-my-md-3{margin-top:1rem !important}html body .bvi .bvi-mr-md-3,html body .bvi .bvi-mx-md-3{margin-right:1rem !important}html body .bvi .bvi-mb-md-3,html body .bvi .bvi-my-md-3{margin-bottom:1rem !important}html body .bvi .bvi-ml-md-3,html body .bvi .bvi-mx-md-3{margin-left:1rem !important}html body .bvi .bvi-m-md-4{margin:1.5rem !important}html body .bvi .bvi-mt-md-4,html body .bvi .bvi-my-md-4{margin-top:1.5rem !important}html body .bvi .bvi-mr-md-4,html body .bvi .bvi-mx-md-4{margin-right:1.5rem !important}html body .bvi .bvi-mb-md-4,html body .bvi .bvi-my-md-4{margin-bottom:1.5rem !important}html body .bvi .bvi-ml-md-4,html body .bvi .bvi-mx-md-4{margin-left:1.5rem !important}html body .bvi .bvi-m-md-5{margin:3rem !important}html body .bvi .bvi-mt-md-5,html body .bvi .bvi-my-md-5{margin-top:3rem !important}html body .bvi .bvi-mr-md-5,html body .bvi .bvi-mx-md-5{margin-right:3rem !important}html body .bvi .bvi-mb-md-5,html body .bvi .bvi-my-md-5{margin-bottom:3rem !important}html body .bvi .bvi-ml-md-5,html body .bvi .bvi-mx-md-5{margin-left:3rem !important}html body .bvi .bvi-p-md-0{padding:0 !important}html body .bvi .bvi-pt-md-0,html body .bvi .bvi-py-md-0{padding-top:0 !important}html body .bvi .bvi-pr-md-0,html body .bvi .bvi-px-md-0{padding-right:0 !important}html body .bvi .bvi-pb-md-0,html body .bvi .bvi-py-md-0{padding-bottom:0 !important}html body .bvi .bvi-pl-md-0,html body .bvi .bvi-px-md-0{padding-left:0 !important}html body .bvi .bvi-p-md-1{padding:.25rem !important}html body .bvi .bvi-pt-md-1,html body .bvi .bvi-py-md-1{padding-top:.25rem !important}html body .bvi .bvi-pr-md-1,html body .bvi .bvi-px-md-1{padding-right:.25rem !important}html body .bvi .bvi-pb-md-1,html body .bvi .bvi-py-md-1{padding-bottom:.25rem !important}html body .bvi .bvi-pl-md-1,html body .bvi .bvi-px-md-1{padding-left:.25rem !important}html body .bvi .bvi-p-md-2{padding:.5rem !important}html body .bvi .bvi-pt-md-2,html body .bvi .bvi-py-md-2{padding-top:.5rem !important}html body .bvi .bvi-pr-md-2,html body .bvi .bvi-px-md-2{padding-right:.5rem !important}html body .bvi .bvi-pb-md-2,html body .bvi .bvi-py-md-2{padding-bottom:.5rem !important}html body .bvi .bvi-pl-md-2,html body .bvi .bvi-px-md-2{padding-left:.5rem !important}html body .bvi .bvi-p-md-3{padding:1rem !important}html body .bvi .bvi-pt-md-3,html body .bvi .bvi-py-md-3{padding-top:1rem !important}html body .bvi .bvi-pr-md-3,html body .bvi .bvi-px-md-3{padding-right:1rem !important}html body .bvi .bvi-pb-md-3,html body .bvi .bvi-py-md-3{padding-bottom:1rem !important}html body .bvi .bvi-pl-md-3,html body .bvi .bvi-px-md-3{padding-left:1rem !important}html body .bvi .bvi-p-md-4{padding:1.5rem !important}html body .bvi .bvi-pt-md-4,html body .bvi .bvi-py-md-4{padding-top:1.5rem !important}html body .bvi .bvi-pr-md-4,html body .bvi .bvi-px-md-4{padding-right:1.5rem !important}html body .bvi .bvi-pb-md-4,html body .bvi .bvi-py-md-4{padding-bottom:1.5rem !important}html body .bvi .bvi-pl-md-4,html body .bvi .bvi-px-md-4{padding-left:1.5rem !important}html body .bvi .bvi-p-md-5{padding:3rem !important}html body .bvi .bvi-pt-md-5,html body .bvi .bvi-py-md-5{padding-top:3rem !important}html body .bvi .bvi-pr-md-5,html body .bvi .bvi-px-md-5{padding-right:3rem !important}html body .bvi .bvi-pb-md-5,html body .bvi .bvi-py-md-5{padding-bottom:3rem !important}html body .bvi .bvi-pl-md-5,html body .bvi .bvi-px-md-5{padding-left:3rem !important}html body .bvi .bvi-m-md-auto{margin:auto !important}html body .bvi .bvi-mt-md-auto,html body .bvi .bvi-my-md-auto{margin-top:auto !important}html body .bvi .bvi-mr-md-auto,html body .bvi .bvi-mx-md-auto{margin-right:auto !important}html body .bvi .bvi-mb-md-auto,html body .bvi .bvi-my-md-auto{margin-bottom:auto !important}html body .bvi .bvi-ml-md-auto,html body .bvi .bvi-mx-md-auto{margin-left:auto !important}}@media(min-width:992px){html body .bvi .bvi-m-lg-0{margin:0 !important}html body .bvi .bvi-mt-lg-0,html body .bvi .bvi-my-lg-0{margin-top:0 !important}html body .bvi .bvi-mr-lg-0,html body .bvi .bvi-mx-lg-0{margin-right:0 !important}html body .bvi .bvi-mb-lg-0,html body .bvi .bvi-my-lg-0{margin-bottom:0 !important}html body .bvi .bvi-ml-lg-0,html body .bvi .bvi-mx-lg-0{margin-left:0 !important}html body .bvi .bvi-m-lg-1{margin:.25rem !important}html body .bvi .bvi-mt-lg-1,html body .bvi .bvi-my-lg-1{margin-top:.25rem !important}html body .bvi .bvi-mr-lg-1,html body .bvi .bvi-mx-lg-1{margin-right:.25rem !important}html body .bvi .bvi-mb-lg-1,html body .bvi .bvi-my-lg-1{margin-bottom:.25rem !important}html body .bvi .bvi-ml-lg-1,html body .bvi .bvi-mx-lg-1{margin-left:.25rem !important}html body .bvi .bvi-m-lg-2{margin:.5rem !important}html body .bvi .bvi-mt-lg-2,html body .bvi .bvi-my-lg-2{margin-top:.5rem !important}html body .bvi .bvi-mr-lg-2,html body .bvi .bvi-mx-lg-2{margin-right:.5rem !important}html body .bvi .bvi-mb-lg-2,html body .bvi .bvi-my-lg-2{margin-bottom:.5rem !important}html body .bvi .bvi-ml-lg-2,html body .bvi .bvi-mx-lg-2{margin-left:.5rem !important}html body .bvi .bvi-m-lg-3{margin:1rem !important}html body .bvi .bvi-mt-lg-3,html body .bvi .bvi-my-lg-3{margin-top:1rem !important}html body .bvi .bvi-mr-lg-3,html body .bvi .bvi-mx-lg-3{margin-right:1rem !important}html body .bvi .bvi-mb-lg-3,html body .bvi .bvi-my-lg-3{margin-bottom:1rem !important}html body .bvi .bvi-ml-lg-3,html body .bvi .bvi-mx-lg-3{margin-left:1rem !important}html body .bvi .bvi-m-lg-4{margin:1.5rem !important}html body .bvi .bvi-mt-lg-4,html body .bvi .bvi-my-lg-4{margin-top:1.5rem !important}html body .bvi .bvi-mr-lg-4,html body .bvi .bvi-mx-lg-4{margin-right:1.5rem !important}html body .bvi .bvi-mb-lg-4,html body .bvi .bvi-my-lg-4{margin-bottom:1.5rem !important}html body .bvi .bvi-ml-lg-4,html body .bvi .bvi-mx-lg-4{margin-left:1.5rem !important}html body .bvi .bvi-m-lg-5{margin:3rem !important}html body .bvi .bvi-mt-lg-5,html body .bvi .bvi-my-lg-5{margin-top:3rem !important}html body .bvi .bvi-mr-lg-5,html body .bvi .bvi-mx-lg-5{margin-right:3rem !important}html body .bvi .bvi-mb-lg-5,html body .bvi .bvi-my-lg-5{margin-bottom:3rem !important}html body .bvi .bvi-ml-lg-5,html body .bvi .bvi-mx-lg-5{margin-left:3rem !important}html body .bvi .bvi-p-lg-0{padding:0 !important}html body .bvi .bvi-pt-lg-0,html body .bvi .bvi-py-lg-0{padding-top:0 !important}html body .bvi .bvi-pr-lg-0,html body .bvi .bvi-px-lg-0{padding-right:0 !important}html body .bvi .bvi-pb-lg-0,html body .bvi .bvi-py-lg-0{padding-bottom:0 !important}html body .bvi .bvi-pl-lg-0,html body .bvi .bvi-px-lg-0{padding-left:0 !important}html body .bvi .bvi-p-lg-1{padding:.25rem !important}html body .bvi .bvi-pt-lg-1,html body .bvi .bvi-py-lg-1{padding-top:.25rem !important}html body .bvi .bvi-pr-lg-1,html body .bvi .bvi-px-lg-1{padding-right:.25rem !important}html body .bvi .bvi-pb-lg-1,html body .bvi .bvi-py-lg-1{padding-bottom:.25rem !important}html body .bvi .bvi-pl-lg-1,html body .bvi .bvi-px-lg-1{padding-left:.25rem !important}html body .bvi .bvi-p-lg-2{padding:.5rem !important}html body .bvi .bvi-pt-lg-2,html body .bvi .bvi-py-lg-2{padding-top:.5rem !important}html body .bvi .bvi-pr-lg-2,html body .bvi .bvi-px-lg-2{padding-right:.5rem !important}html body .bvi .bvi-pb-lg-2,html body .bvi .bvi-py-lg-2{padding-bottom:.5rem !important}html body .bvi .bvi-pl-lg-2,html body .bvi .bvi-px-lg-2{padding-left:.5rem !important}html body .bvi .bvi-p-lg-3{padding:1rem !important}html body .bvi .bvi-pt-lg-3,html body .bvi .bvi-py-lg-3{padding-top:1rem !important}html body .bvi .bvi-pr-lg-3,html body .bvi .bvi-px-lg-3{padding-right:1rem !important}html body .bvi .bvi-pb-lg-3,html body .bvi .bvi-py-lg-3{padding-bottom:1rem !important}html body .bvi .bvi-pl-lg-3,html body .bvi .bvi-px-lg-3{padding-left:1rem !important}html body .bvi .bvi-p-lg-4{padding:1.5rem !important}html body .bvi .bvi-pt-lg-4,html body .bvi .bvi-py-lg-4{padding-top:1.5rem !important}html body .bvi .bvi-pr-lg-4,html body .bvi .bvi-px-lg-4{padding-right:1.5rem !important}html body .bvi .bvi-pb-lg-4,html body .bvi .bvi-py-lg-4{padding-bottom:1.5rem !important}html body .bvi .bvi-pl-lg-4,html body .bvi .bvi-px-lg-4{padding-left:1.5rem !important}html body .bvi .bvi-p-lg-5{padding:3rem !important}html body .bvi .bvi-pt-lg-5,html body .bvi .bvi-py-lg-5{padding-top:3rem !important}html body .bvi .bvi-pr-lg-5,html body .bvi .bvi-px-lg-5{padding-right:3rem !important}html body .bvi .bvi-pb-lg-5,html body .bvi .bvi-py-lg-5{padding-bottom:3rem !important}html body .bvi .bvi-pl-lg-5,html body .bvi .bvi-px-lg-5{padding-left:3rem !important}html body .bvi .bvi-m-lg-auto{margin:auto !important}html body .bvi .bvi-mt-lg-auto,html body .bvi .bvi-my-lg-auto{margin-top:auto !important}html body .bvi .bvi-mr-lg-auto,html body .bvi .bvi-mx-lg-auto{margin-right:auto !important}html body .bvi .bvi-mb-lg-auto,html body .bvi .bvi-my-lg-auto{margin-bottom:auto !important}html body .bvi .bvi-ml-lg-auto,html body .bvi .bvi-mx-lg-auto{margin-left:auto !important}}@media(min-width:1200px){html body .bvi .bvi-m-xl-0{margin:0 !important}html body .bvi .bvi-mt-xl-0,html body .bvi .bvi-my-xl-0{margin-top:0 !important}html body .bvi .bvi-mr-xl-0,html body .bvi .bvi-mx-xl-0{margin-right:0 !important}html body .bvi .bvi-mb-xl-0,html body .bvi .bvi-my-xl-0{margin-bottom:0 !important}html body .bvi .bvi-ml-xl-0,html body .bvi .bvi-mx-xl-0{margin-left:0 !important}html body .bvi .bvi-m-xl-1{margin:.25rem !important}html body .bvi .bvi-mt-xl-1,html body .bvi .bvi-my-xl-1{margin-top:.25rem !important}html body .bvi .bvi-mr-xl-1,html body .bvi .bvi-mx-xl-1{margin-right:.25rem !important}html body .bvi .bvi-mb-xl-1,html body .bvi .bvi-my-xl-1{margin-bottom:.25rem !important}html body .bvi .bvi-ml-xl-1,html body .bvi .bvi-mx-xl-1{margin-left:.25rem !important}html body .bvi .bvi-m-xl-2{margin:.5rem !important}html body .bvi .bvi-mt-xl-2,html body .bvi .bvi-my-xl-2{margin-top:.5rem !important}html body .bvi .bvi-mr-xl-2,html body .bvi .bvi-mx-xl-2{margin-right:.5rem !important}html body .bvi .bvi-mb-xl-2,html body .bvi .bvi-my-xl-2{margin-bottom:.5rem !important}html body .bvi .bvi-ml-xl-2,html body .bvi .bvi-mx-xl-2{margin-left:.5rem !important}html body .bvi .bvi-m-xl-3{margin:1rem !important}html body .bvi .bvi-mt-xl-3,html body .bvi .bvi-my-xl-3{margin-top:1rem !important}html body .bvi .bvi-mr-xl-3,html body .bvi .bvi-mx-xl-3{margin-right:1rem !important}html body .bvi .bvi-mb-xl-3,html body .bvi .bvi-my-xl-3{margin-bottom:1rem !important}html body .bvi .bvi-ml-xl-3,html body .bvi .bvi-mx-xl-3{margin-left:1rem !important}html body .bvi .bvi-m-xl-4{margin:1.5rem !important}html body .bvi .bvi-mt-xl-4,html body .bvi .bvi-my-xl-4{margin-top:1.5rem !important}html body .bvi .bvi-mr-xl-4,html body .bvi .bvi-mx-xl-4{margin-right:1.5rem !important}html body .bvi .bvi-mb-xl-4,html body .bvi .bvi-my-xl-4{margin-bottom:1.5rem !important}html body .bvi .bvi-ml-xl-4,html body .bvi .bvi-mx-xl-4{margin-left:1.5rem !important}html body .bvi .bvi-m-xl-5{margin:3rem !important}html body .bvi .bvi-mt-xl-5,html body .bvi .bvi-my-xl-5{margin-top:3rem !important}html body .bvi .bvi-mr-xl-5,html body .bvi .bvi-mx-xl-5{margin-right:3rem !important}html body .bvi .bvi-mb-xl-5,html body .bvi .bvi-my-xl-5{margin-bottom:3rem !important}html body .bvi .bvi-ml-xl-5,html body .bvi .bvi-mx-xl-5{margin-left:3rem !important}html body .bvi .bvi-p-xl-0{padding:0 !important}html body .bvi .bvi-pt-xl-0,html body .bvi .bvi-py-xl-0{padding-top:0 !important}html body .bvi .bvi-pr-xl-0,html body .bvi .bvi-px-xl-0{padding-right:0 !important}html body .bvi .bvi-pb-xl-0,html body .bvi .bvi-py-xl-0{padding-bottom:0 !important}html body .bvi .bvi-pl-xl-0,html body .bvi .bvi-px-xl-0{padding-left:0 !important}html body .bvi .bvi-p-xl-1{padding:.25rem !important}html body .bvi .bvi-pt-xl-1,html body .bvi .bvi-py-xl-1{padding-top:.25rem !important}html body .bvi .bvi-pr-xl-1,html body .bvi .bvi-px-xl-1{padding-right:.25rem !important}html body .bvi .bvi-pb-xl-1,html body .bvi .bvi-py-xl-1{padding-bottom:.25rem !important}html body .bvi .bvi-pl-xl-1,html body .bvi .bvi-px-xl-1{padding-left:.25rem !important}html body .bvi .bvi-p-xl-2{padding:.5rem !important}html body .bvi .bvi-pt-xl-2,html body .bvi .bvi-py-xl-2{padding-top:.5rem !important}html body .bvi .bvi-pr-xl-2,html body .bvi .bvi-px-xl-2{padding-right:.5rem !important}html body .bvi .bvi-pb-xl-2,html body .bvi .bvi-py-xl-2{padding-bottom:.5rem !important}html body .bvi .bvi-pl-xl-2,html body .bvi .bvi-px-xl-2{padding-left:.5rem !important}html body .bvi .bvi-p-xl-3{padding:1rem !important}html body .bvi .bvi-pt-xl-3,html body .bvi .bvi-py-xl-3{padding-top:1rem !important}html body .bvi .bvi-pr-xl-3,html body .bvi .bvi-px-xl-3{padding-right:1rem !important}html body .bvi .bvi-pb-xl-3,html body .bvi .bvi-py-xl-3{padding-bottom:1rem !important}html body .bvi .bvi-pl-xl-3,html body .bvi .bvi-px-xl-3{padding-left:1rem !important}html body .bvi .bvi-p-xl-4{padding:1.5rem !important}html body .bvi .bvi-pt-xl-4,html body .bvi .bvi-py-xl-4{padding-top:1.5rem !important}html body .bvi .bvi-pr-xl-4,html body .bvi .bvi-px-xl-4{padding-right:1.5rem !important}html body .bvi .bvi-pb-xl-4,html body .bvi .bvi-py-xl-4{padding-bottom:1.5rem !important}html body .bvi .bvi-pl-xl-4,html body .bvi .bvi-px-xl-4{padding-left:1.5rem !important}html body .bvi .bvi-p-xl-5{padding:3rem !important}html body .bvi .bvi-pt-xl-5,html body .bvi .bvi-py-xl-5{padding-top:3rem !important}html body .bvi .bvi-pr-xl-5,html body .bvi .bvi-px-xl-5{padding-right:3rem !important}html body .bvi .bvi-pb-xl-5,html body .bvi .bvi-py-xl-5{padding-bottom:3rem !important}html body .bvi .bvi-pl-xl-5,html body .bvi .bvi-px-xl-5{padding-left:3rem !important}html body .bvi .bvi-m-xl-auto{margin:auto !important}html body .bvi .bvi-mt-xl-auto,html body .bvi .bvi-my-xl-auto{margin-top:auto !important}html body .bvi .bvi-mr-xl-auto,html body .bvi .bvi-mx-xl-auto{margin-right:auto !important}html body .bvi .bvi-mb-xl-auto,html body .bvi .bvi-my-xl-auto{margin-bottom:auto !important}html body .bvi .bvi-ml-xl-auto,html body .bvi .bvi-mx-xl-auto{margin-left:auto !important}}html body .bvi.bvi-panel{padding:15px 20px !important;color:black !important;background-color:#f8f8f8;top:0 !important;left:0 !important;right:0 !important;letter-spacing:0 !important;position:relative !important;text-shadow:none !important;line-height:normal !important;border:0 !important;font-size:16px !important;z-index:99999 !important;moz-box-shadow:0 1px 3px 0 rgba(0,0,0,0.23);webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,0.23);box-shadow:0 1px 3px 0 rgba(0,0,0,0.23)}html body .bvi.bvi-panel[data-bvi-panel='true']{display:block !important}html body .bvi.bvi-panel[data-bvi-panel='false']{display:none !important}html body .bvi.bvi-panel.bvi-fixed-top{position:fixed !important;top:0 !important;right:0 !important;left:0 !important;z-index:999999 !important}html body .bvi.bvi-panel .bvi-title{margin-top:5px;font-size:18px;font-weight:bold}html body .bvi.bvi-panel .bvi-text-center{text-align:center}html body .bvi.bvi-panel .bvi-text-right{text-align:right}html body .bvi.bvi-panel .bvi-setting-menu{display:none}html body .bvi.bvi-panel a{text-decoration:none}html body .bvi.bvi-panel .bvi-hr{background-color:#ccc !important;border:0 !important;height:1px !important;margin-top:1.5em !important;margin-bottom:1.5em !important}html body .bvi.bvi-panel .bvi-copy{font-size:12px;color:gray}html body .bvi.bvi-panel .bvi-copy a{font-size:13px;color:gray;text-decoration:underline}html body .bvi.bvi-panel .bvi-copy a:hover{color:#000;text-decoration:underline}@media(max-width:575.98px){html body .bvi.bvi-panel .bvi-title{font-size:12px}html body .bvi.bvi-panel .bvi-btn{font-size:12px;padding:.200rem .35rem}html body .bvi.bvi-panel .bvi-btn-sm,html body .bvi.bvi-panel .bvi-btn-group-sm>.bvi-btn{font-size:10px;padding:.100rem .25rem}}@media(min-width:576px) and (max-width:767.98px){html body .bvi.bvi-panel .bvi-title{font-size:14px}html body .bvi.bvi-panel .bvi-btn{font-size:14px;padding:.250rem .45rem}html body .bvi.bvi-panel .bvi-btn-sm,html body .bvi.bvi-panel .bvi-btn-group-sm>.bvi-btn{font-size:12px;padding:.150rem .35rem}}@media(min-width:768px) and (max-width:991.98px){html body .bvi.bvi-panel .bvi-title{font-size:16px}html body .bvi.bvi-panel .bvi-btn{font-size:16px;padding:.300rem .55rem}html body .bvi.bvi-panel .bvi-btn-sm,html body .bvi.bvi-panel .bvi-btn-group-sm>.bvi-btn{font-size:14px;padding:.200rem .40rem}}html body .bvi-body[data-bvi-theme='white']{background-color:#fff !important;fill:#000 !important}html body .bvi-body[data-bvi-theme='white'] *{background-color:#fff !important;background:#fff !important;background-image:none !important;box-shadow:none !important;text-shadow:none !important;border-color:#000 !important;color:#000 !important;fill:#000 !important}html body .bvi-body[data-bvi-theme='white'] * .bvi-hide{display:none !important}html body .bvi-body[data-bvi-theme='white'] * .bvi-show-block{display:block !important}html body .bvi-body[data-bvi-theme='white'] * .bvi-show-inline-block{display:inline-block !important}html body .bvi-body[data-bvi-theme='white'] *:after{background-color:#fff !important;background:#fff !important;background-image:none !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important;border-color:#000 !important}html body .bvi-body[data-bvi-theme='white'] *:before{background-color:#fff !important;background:#fff !important;background-image:none !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important;border-color:#000 !important}html body .bvi-body[data-bvi-theme='white'] *::selection{background-color:#000;color:#fff}html body .bvi-body[data-bvi-theme='white'] * a,html body .bvi-body[data-bvi-theme='white'] * label{color:#000 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='white'] * a.active,html body .bvi-body[data-bvi-theme='white'] * label.active{color:#fff !important;background-color:#000 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='white'] * a:hover,html body .bvi-body[data-bvi-theme='white'] * label:hover{color:#fff !important;background-color:#000 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='white'] * a:hover *,html body .bvi-body[data-bvi-theme='white'] * label:hover *{color:#fff !important;background-color:#000 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='white'] * button,html body .bvi-body[data-bvi-theme='white'] * input[type="submit"],html body .bvi-body[data-bvi-theme='white'] * input[type="button"],html body .bvi-body[data-bvi-theme='white'] * button[type="submit"],html body .bvi-body[data-bvi-theme='white'] * button[type="button"]{color:#fff !important;background:#000 !important;background-color:#000 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='white'] * button:hover.active,html body .bvi-body[data-bvi-theme='white'] * input[type="button"]:hover.active,html body .bvi-body[data-bvi-theme='white'] * input[type="submit"]:hover.active,html body .bvi-body[data-bvi-theme='white'] * button[type="submit"]:hover.active,html body .bvi-body[data-bvi-theme='white'] * button[type="button"]:hover.active{color:#fff !important;background:#000 !important;background-color:#000 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='white'] * button:hover:hover,html body .bvi-body[data-bvi-theme='white'] * input[type="button"]:hover:hover,html body .bvi-body[data-bvi-theme='white'] * input[type="submit"]:hover:hover,html body .bvi-body[data-bvi-theme='white'] * button[type="submit"]:hover:hover,html body .bvi-body[data-bvi-theme='white'] * button[type="button"]:hover:hover{color:#fff !important;background:#000 !important;background-color:#000 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='white'] * button:hover:hover *,html body .bvi-body[data-bvi-theme='white'] * input[type="button"]:hover:hover *,html body .bvi-body[data-bvi-theme='white'] * input[type="submit"]:hover:hover *,html body .bvi-body[data-bvi-theme='white'] * button[type="submit"]:hover:hover *,html body .bvi-body[data-bvi-theme='white'] * button[type="button"]:hover:hover *{color:#fff !important;background:#000 !important;background-color:#000 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='black']{background-color:#000 !important;fill:#fff !important}html body .bvi-body[data-bvi-theme='black'] *{background-color:#000 !important;background:#000 !important;background-image:none !important;box-shadow:none !important;text-shadow:none !important;border-color:#fff !important;color:#fff !important;fill:#fff !important}html body .bvi-body[data-bvi-theme='black'] * .bvi-hide{display:none !important}html body .bvi-body[data-bvi-theme='black'] * .bvi-show-block{display:block !important}html body .bvi-body[data-bvi-theme='black'] * .bvi-show-inline-block{display:inline-block !important}html body .bvi-body[data-bvi-theme='black'] *:after{background-color:#000 !important;background:#000 !important;background-image:none !important;color:#fff !important;box-shadow:none !important;text-shadow:none !important;border-color:#fff !important}html body .bvi-body[data-bvi-theme='black'] *:before{background-color:#000 !important;background:#000 !important;background-image:none !important;color:#fff !important;box-shadow:none !important;text-shadow:none !important;border-color:#fff !important}html body .bvi-body[data-bvi-theme='black'] *::selection{background-color:#fff;color:#000}html body .bvi-body[data-bvi-theme='black'] * a,html body .bvi-body[data-bvi-theme='black'] * label{color:#fff !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='black'] * a.active,html body .bvi-body[data-bvi-theme='black'] * label.active{color:#000 !important;background-color:#fff !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='black'] * a:hover,html body .bvi-body[data-bvi-theme='black'] * label:hover{color:#000 !important;background-color:#fff !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='black'] * a:hover *,html body .bvi-body[data-bvi-theme='black'] * label:hover *{color:#000 !important;background-color:#fff !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='black'] * button,html body .bvi-body[data-bvi-theme='black'] * input[type="submit"],html body .bvi-body[data-bvi-theme='black'] * input[type="button"],html body .bvi-body[data-bvi-theme='black'] * button[type="submit"],html body .bvi-body[data-bvi-theme='black'] * button[type="button"]{color:#000 !important;background:#fff !important;background-color:#fff !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='black'] * button:hover.active,html body .bvi-body[data-bvi-theme='black'] * input[type="button"]:hover.active,html body .bvi-body[data-bvi-theme='black'] * input[type="submit"]:hover.active,html body .bvi-body[data-bvi-theme='black'] * button[type="submit"]:hover.active,html body .bvi-body[data-bvi-theme='black'] * button[type="button"]:hover.active{color:#000 !important;background:#fff !important;background-color:#fff !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='black'] * button:hover:hover,html body .bvi-body[data-bvi-theme='black'] * input[type="button"]:hover:hover,html body .bvi-body[data-bvi-theme='black'] * input[type="submit"]:hover:hover,html body .bvi-body[data-bvi-theme='black'] * button[type="submit"]:hover:hover,html body .bvi-body[data-bvi-theme='black'] * button[type="button"]:hover:hover{color:#000 !important;background:#fff !important;background-color:#fff !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='black'] * button:hover:hover *,html body .bvi-body[data-bvi-theme='black'] * input[type="button"]:hover:hover *,html body .bvi-body[data-bvi-theme='black'] * input[type="submit"]:hover:hover *,html body .bvi-body[data-bvi-theme='black'] * button[type="submit"]:hover:hover *,html body .bvi-body[data-bvi-theme='black'] * button[type="button"]:hover:hover *{color:#000 !important;background:#fff !important;background-color:#fff !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='blue']{background-color:#9dd1ff !important;fill:#063462 !important}html body .bvi-body[data-bvi-theme='blue'] *{background-color:#9dd1ff !important;background:#9dd1ff !important;background-image:none !important;box-shadow:none !important;text-shadow:none !important;border-color:#063462 !important;color:#063462 !important;fill:#063462 !important}html body .bvi-body[data-bvi-theme='blue'] * .bvi-hide{display:none !important}html body .bvi-body[data-bvi-theme='blue'] * .bvi-show-block{display:block !important}html body .bvi-body[data-bvi-theme='blue'] * .bvi-show-inline-block{display:inline-block !important}html body .bvi-body[data-bvi-theme='blue'] *:after{background-color:#9dd1ff !important;background:#9dd1ff !important;background-image:none !important;color:#063462 !important;box-shadow:none !important;text-shadow:none !important;border-color:#063462 !important}html body .bvi-body[data-bvi-theme='blue'] *:before{background-color:#9dd1ff !important;background:#9dd1ff !important;background-image:none !important;color:#063462 !important;box-shadow:none !important;text-shadow:none !important;border-color:#063462 !important}html body .bvi-body[data-bvi-theme='blue'] *::selection{background-color:#063462;color:#9dd1ff}html body .bvi-body[data-bvi-theme='blue'] * a,html body .bvi-body[data-bvi-theme='blue'] * label{color:#063462 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='blue'] * a.active,html body .bvi-body[data-bvi-theme='blue'] * label.active{color:#9dd1ff !important;background-color:#063462 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='blue'] * a:hover,html body .bvi-body[data-bvi-theme='blue'] * label:hover{color:#9dd1ff !important;background-color:#063462 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='blue'] * a:hover *,html body .bvi-body[data-bvi-theme='blue'] * label:hover *{color:#9dd1ff !important;background-color:#063462 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='blue'] * button,html body .bvi-body[data-bvi-theme='blue'] * input[type="submit"],html body .bvi-body[data-bvi-theme='blue'] * input[type="button"],html body .bvi-body[data-bvi-theme='blue'] * button[type="submit"],html body .bvi-body[data-bvi-theme='blue'] * button[type="button"]{color:#9dd1ff !important;background:#063462 !important;background-color:#063462 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='blue'] * button:hover.active,html body .bvi-body[data-bvi-theme='blue'] * input[type="button"]:hover.active,html body .bvi-body[data-bvi-theme='blue'] * input[type="submit"]:hover.active,html body .bvi-body[data-bvi-theme='blue'] * button[type="submit"]:hover.active,html body .bvi-body[data-bvi-theme='blue'] * button[type="button"]:hover.active{color:#9dd1ff !important;background:#063462 !important;background-color:#063462 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='blue'] * button:hover:hover,html body .bvi-body[data-bvi-theme='blue'] * input[type="button"]:hover:hover,html body .bvi-body[data-bvi-theme='blue'] * input[type="submit"]:hover:hover,html body .bvi-body[data-bvi-theme='blue'] * button[type="submit"]:hover:hover,html body .bvi-body[data-bvi-theme='blue'] * button[type="button"]:hover:hover{color:#9dd1ff !important;background:#063462 !important;background-color:#063462 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='blue'] * button:hover:hover *,html body .bvi-body[data-bvi-theme='blue'] * input[type="button"]:hover:hover *,html body .bvi-body[data-bvi-theme='blue'] * input[type="submit"]:hover:hover *,html body .bvi-body[data-bvi-theme='blue'] * button[type="submit"]:hover:hover *,html body .bvi-body[data-bvi-theme='blue'] * button[type="button"]:hover:hover *{color:#9dd1ff !important;background:#063462 !important;background-color:#063462 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='brown']{background-color:#f7f3d6 !important;fill:#4d4b43 !important}html body .bvi-body[data-bvi-theme='brown'] *{background-color:#f7f3d6 !important;background:#f7f3d6 !important;background-image:none !important;box-shadow:none !important;text-shadow:none !important;border-color:#4d4b43 !important;color:#4d4b43 !important;fill:#4d4b43 !important}html body .bvi-body[data-bvi-theme='brown'] * .bvi-hide{display:none !important}html body .bvi-body[data-bvi-theme='brown'] * .bvi-show-block{display:block !important}html body .bvi-body[data-bvi-theme='brown'] * .bvi-show-inline-block{display:inline-block !important}html body .bvi-body[data-bvi-theme='brown'] *:after{background-color:#f7f3d6 !important;background:#f7f3d6 !important;background-image:none !important;color:#4d4b43 !important;box-shadow:none !important;text-shadow:none !important;border-color:#4d4b43 !important}html body .bvi-body[data-bvi-theme='brown'] *:before{background-color:#f7f3d6 !important;background:#f7f3d6 !important;background-image:none !important;color:#4d4b43 !important;box-shadow:none !important;text-shadow:none !important;border-color:#4d4b43 !important}html body .bvi-body[data-bvi-theme='brown'] *::selection{background-color:#4d4b43;color:#f7f3d6}html body .bvi-body[data-bvi-theme='brown'] * a,html body .bvi-body[data-bvi-theme='brown'] * label{color:#4d4b43 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='brown'] * a.active,html body .bvi-body[data-bvi-theme='brown'] * label.active{color:#f7f3d6 !important;background-color:#4d4b43 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='brown'] * a:hover,html body .bvi-body[data-bvi-theme='brown'] * label:hover{color:#f7f3d6 !important;background-color:#4d4b43 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='brown'] * a:hover *,html body .bvi-body[data-bvi-theme='brown'] * label:hover *{color:#f7f3d6 !important;background-color:#4d4b43 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='brown'] * button,html body .bvi-body[data-bvi-theme='brown'] * input[type="submit"],html body .bvi-body[data-bvi-theme='brown'] * input[type="button"],html body .bvi-body[data-bvi-theme='brown'] * button[type="submit"],html body .bvi-body[data-bvi-theme='brown'] * button[type="button"]{color:#f7f3d6 !important;background:#4d4b43 !important;background-color:#4d4b43 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='brown'] * button:hover.active,html body .bvi-body[data-bvi-theme='brown'] * input[type="button"]:hover.active,html body .bvi-body[data-bvi-theme='brown'] * input[type="submit"]:hover.active,html body .bvi-body[data-bvi-theme='brown'] * button[type="submit"]:hover.active,html body .bvi-body[data-bvi-theme='brown'] * button[type="button"]:hover.active{color:#f7f3d6 !important;background:#4d4b43 !important;background-color:#4d4b43 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='brown'] * button:hover:hover,html body .bvi-body[data-bvi-theme='brown'] * input[type="button"]:hover:hover,html body .bvi-body[data-bvi-theme='brown'] * input[type="submit"]:hover:hover,html body .bvi-body[data-bvi-theme='brown'] * button[type="submit"]:hover:hover,html body .bvi-body[data-bvi-theme='brown'] * button[type="button"]:hover:hover{color:#f7f3d6 !important;background:#4d4b43 !important;background-color:#4d4b43 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='brown'] * button:hover:hover *,html body .bvi-body[data-bvi-theme='brown'] * input[type="button"]:hover:hover *,html body .bvi-body[data-bvi-theme='brown'] * input[type="submit"]:hover:hover *,html body .bvi-body[data-bvi-theme='brown'] * button[type="submit"]:hover:hover *,html body .bvi-body[data-bvi-theme='brown'] * button[type="button"]:hover:hover *{color:#f7f3d6 !important;background:#4d4b43 !important;background-color:#4d4b43 !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='green']{background-color:#3b2716 !important;fill:#a9e44d !important}html body .bvi-body[data-bvi-theme='green'] *{background-color:#3b2716 !important;background:#3b2716 !important;background-image:none !important;box-shadow:none !important;text-shadow:none !important;border-color:#a9e44d !important;color:#a9e44d !important;fill:#a9e44d !important}html body .bvi-body[data-bvi-theme='green'] * .bvi-hide{display:none !important}html body .bvi-body[data-bvi-theme='green'] * .bvi-show-block{display:block !important}html body .bvi-body[data-bvi-theme='green'] * .bvi-show-inline-block{display:inline-block !important}html body .bvi-body[data-bvi-theme='green'] *:after{background-color:#3b2716 !important;background:#3b2716 !important;background-image:none !important;color:#a9e44d !important;box-shadow:none !important;text-shadow:none !important;border-color:#a9e44d !important}html body .bvi-body[data-bvi-theme='green'] *:before{background-color:#3b2716 !important;background:#3b2716 !important;background-image:none !important;color:#a9e44d !important;box-shadow:none !important;text-shadow:none !important;border-color:#a9e44d !important}html body .bvi-body[data-bvi-theme='green'] *::selection{background-color:#a9e44d;color:#3b2716}html body .bvi-body[data-bvi-theme='green'] * a,html body .bvi-body[data-bvi-theme='green'] * label{color:#a9e44d !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='green'] * a.active,html body .bvi-body[data-bvi-theme='green'] * label.active{color:#3b2716 !important;background-color:#a9e44d !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='green'] * a:hover,html body .bvi-body[data-bvi-theme='green'] * label:hover{color:#3b2716 !important;background-color:#a9e44d !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='green'] * a:hover *,html body .bvi-body[data-bvi-theme='green'] * label:hover *{color:#3b2716 !important;background-color:#a9e44d !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='green'] * button,html body .bvi-body[data-bvi-theme='green'] * input[type="submit"],html body .bvi-body[data-bvi-theme='green'] * input[type="button"],html body .bvi-body[data-bvi-theme='green'] * button[type="submit"],html body .bvi-body[data-bvi-theme='green'] * button[type="button"]{color:#3b2716 !important;background:#a9e44d !important;background-color:#a9e44d !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='green'] * button:hover.active,html body .bvi-body[data-bvi-theme='green'] * input[type="button"]:hover.active,html body .bvi-body[data-bvi-theme='green'] * input[type="submit"]:hover.active,html body .bvi-body[data-bvi-theme='green'] * button[type="submit"]:hover.active,html body .bvi-body[data-bvi-theme='green'] * button[type="button"]:hover.active{color:#3b2716 !important;background:#a9e44d !important;background-color:#a9e44d !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='green'] * button:hover:hover,html body .bvi-body[data-bvi-theme='green'] * input[type="button"]:hover:hover,html body .bvi-body[data-bvi-theme='green'] * input[type="submit"]:hover:hover,html body .bvi-body[data-bvi-theme='green'] * button[type="submit"]:hover:hover,html body .bvi-body[data-bvi-theme='green'] * button[type="button"]:hover:hover{color:#3b2716 !important;background:#a9e44d !important;background-color:#a9e44d !important;text-decoration:underline !important}html body .bvi-body[data-bvi-theme='green'] * button:hover:hover *,html body .bvi-body[data-bvi-theme='green'] * input[type="button"]:hover:hover *,html body .bvi-body[data-bvi-theme='green'] * input[type="submit"]:hover:hover *,html body .bvi-body[data-bvi-theme='green'] * button[type="submit"]:hover:hover *,html body .bvi-body[data-bvi-theme='green'] * button[type="button"]:hover:hover *{color:#3b2716 !important;background:#a9e44d !important;background-color:#a9e44d !important;text-decoration:underline !important}html body .bvi-body[data-bvi-size='40'] *{font-size:40px !important}html body .bvi-body[data-bvi-size='40'] * h1,html body .bvi-body[data-bvi-size='40'] * h1 *{font-size:47px !important}html body .bvi-body[data-bvi-size='40'] * h2,html body .bvi-body[data-bvi-size='40'] * h2 *{font-size:46px !important}html body .bvi-body[data-bvi-size='40'] * h3,html body .bvi-body[data-bvi-size='40'] * h3 *{font-size:45px !important}html body .bvi-body[data-bvi-size='40'] * h4,html body .bvi-body[data-bvi-size='40'] * h4 *{font-size:44px !important}html body .bvi-body[data-bvi-size='40'] * h5,html body .bvi-body[data-bvi-size='40'] * h5 *{font-size:43px !important}html body .bvi-body[data-bvi-size='40'] * h6,html body .bvi-body[data-bvi-size='40'] * h6 *{font-size:42px !important}html body .bvi-body[data-bvi-size='39'] *{font-size:39px !important}html body .bvi-body[data-bvi-size='39'] * h1,html body .bvi-body[data-bvi-size='39'] * h1 *{font-size:46px !important}html body .bvi-body[data-bvi-size='39'] * h2,html body .bvi-body[data-bvi-size='39'] * h2 *{font-size:45px !important}html body .bvi-body[data-bvi-size='39'] * h3,html body .bvi-body[data-bvi-size='39'] * h3 *{font-size:44px !important}html body .bvi-body[data-bvi-size='39'] * h4,html body .bvi-body[data-bvi-size='39'] * h4 *{font-size:43px !important}html body .bvi-body[data-bvi-size='39'] * h5,html body .bvi-body[data-bvi-size='39'] * h5 *{font-size:42px !important}html body .bvi-body[data-bvi-size='39'] * h6,html body .bvi-body[data-bvi-size='39'] * h6 *{font-size:41px !important}html body .bvi-body[data-bvi-size='38'] *{font-size:38px !important}html body .bvi-body[data-bvi-size='38'] * h1,html body .bvi-body[data-bvi-size='38'] * h1 *{font-size:45px !important}html body .bvi-body[data-bvi-size='38'] * h2,html body .bvi-body[data-bvi-size='38'] * h2 *{font-size:44px !important}html body .bvi-body[data-bvi-size='38'] * h3,html body .bvi-body[data-bvi-size='38'] * h3 *{font-size:43px !important}html body .bvi-body[data-bvi-size='38'] * h4,html body .bvi-body[data-bvi-size='38'] * h4 *{font-size:42px !important}html body .bvi-body[data-bvi-size='38'] * h5,html body .bvi-body[data-bvi-size='38'] * h5 *{font-size:41px !important}html body .bvi-body[data-bvi-size='38'] * h6,html body .bvi-body[data-bvi-size='38'] * h6 *{font-size:40px !important}html body .bvi-body[data-bvi-size='37'] *{font-size:37px !important}html body .bvi-body[data-bvi-size='37'] * h1,html body .bvi-body[data-bvi-size='37'] * h1 *{font-size:44px !important}html body .bvi-body[data-bvi-size='37'] * h2,html body .bvi-body[data-bvi-size='37'] * h2 *{font-size:43px !important}html body .bvi-body[data-bvi-size='37'] * h3,html body .bvi-body[data-bvi-size='37'] * h3 *{font-size:42px !important}html body .bvi-body[data-bvi-size='37'] * h4,html body .bvi-body[data-bvi-size='37'] * h4 *{font-size:41px !important}html body .bvi-body[data-bvi-size='37'] * h5,html body .bvi-body[data-bvi-size='37'] * h5 *{font-size:40px !important}html body .bvi-body[data-bvi-size='37'] * h6,html body .bvi-body[data-bvi-size='37'] * h6 *{font-size:39px !important}html body .bvi-body[data-bvi-size='36'] *{font-size:36px !important}html body .bvi-body[data-bvi-size='36'] * h1,html body .bvi-body[data-bvi-size='36'] * h1 *{font-size:43px !important}html body .bvi-body[data-bvi-size='36'] * h2,html body .bvi-body[data-bvi-size='36'] * h2 *{font-size:42px !important}html body .bvi-body[data-bvi-size='36'] * h3,html body .bvi-body[data-bvi-size='36'] * h3 *{font-size:41px !important}html body .bvi-body[data-bvi-size='36'] * h4,html body .bvi-body[data-bvi-size='36'] * h4 *{font-size:40px !important}html body .bvi-body[data-bvi-size='36'] * h5,html body .bvi-body[data-bvi-size='36'] * h5 *{font-size:39px !important}html body .bvi-body[data-bvi-size='36'] * h6,html body .bvi-body[data-bvi-size='36'] * h6 *{font-size:38px !important}html body .bvi-body[data-bvi-size='35'] *{font-size:35px !important}html body .bvi-body[data-bvi-size='35'] * h1,html body .bvi-body[data-bvi-size='35'] * h1 *{font-size:42px !important}html body .bvi-body[data-bvi-size='35'] * h2,html body .bvi-body[data-bvi-size='35'] * h2 *{font-size:41px !important}html body .bvi-body[data-bvi-size='35'] * h3,html body .bvi-body[data-bvi-size='35'] * h3 *{font-size:40px !important}html body .bvi-body[data-bvi-size='35'] * h4,html body .bvi-body[data-bvi-size='35'] * h4 *{font-size:39px !important}html body .bvi-body[data-bvi-size='35'] * h5,html body .bvi-body[data-bvi-size='35'] * h5 *{font-size:38px !important}html body .bvi-body[data-bvi-size='35'] * h6,html body .bvi-body[data-bvi-size='35'] * h6 *{font-size:37px !important}html body .bvi-body[data-bvi-size='34'] *{font-size:34px !important}html body .bvi-body[data-bvi-size='34'] * h1,html body .bvi-body[data-bvi-size='34'] * h1 *{font-size:41px !important}html body .bvi-body[data-bvi-size='34'] * h2,html body .bvi-body[data-bvi-size='34'] * h2 *{font-size:40px !important}html body .bvi-body[data-bvi-size='34'] * h3,html body .bvi-body[data-bvi-size='34'] * h3 *{font-size:39px !important}html body .bvi-body[data-bvi-size='34'] * h4,html body .bvi-body[data-bvi-size='34'] * h4 *{font-size:38px !important}html body .bvi-body[data-bvi-size='34'] * h5,html body .bvi-body[data-bvi-size='34'] * h5 *{font-size:37px !important}html body .bvi-body[data-bvi-size='34'] * h6,html body .bvi-body[data-bvi-size='34'] * h6 *{font-size:36px !important}html body .bvi-body[data-bvi-size='33'] *{font-size:33px !important}html body .bvi-body[data-bvi-size='33'] * h1,html body .bvi-body[data-bvi-size='33'] * h1 *{font-size:40px !important}html body .bvi-body[data-bvi-size='33'] * h2,html body .bvi-body[data-bvi-size='33'] * h2 *{font-size:39px !important}html body .bvi-body[data-bvi-size='33'] * h3,html body .bvi-body[data-bvi-size='33'] * h3 *{font-size:38px !important}html body .bvi-body[data-bvi-size='33'] * h4,html body .bvi-body[data-bvi-size='33'] * h4 *{font-size:37px !important}html body .bvi-body[data-bvi-size='33'] * h5,html body .bvi-body[data-bvi-size='33'] * h5 *{font-size:36px !important}html body .bvi-body[data-bvi-size='33'] * h6,html body .bvi-body[data-bvi-size='33'] * h6 *{font-size:35px !important}html body .bvi-body[data-bvi-size='32'] *{font-size:32px !important}html body .bvi-body[data-bvi-size='32'] * h1,html body .bvi-body[data-bvi-size='32'] * h1 *{font-size:39px !important}html body .bvi-body[data-bvi-size='32'] * h2,html body .bvi-body[data-bvi-size='32'] * h2 *{font-size:38px !important}html body .bvi-body[data-bvi-size='32'] * h3,html body .bvi-body[data-bvi-size='32'] * h3 *{font-size:37px !important}html body .bvi-body[data-bvi-size='32'] * h4,html body .bvi-body[data-bvi-size='32'] * h4 *{font-size:36px !important}html body .bvi-body[data-bvi-size='32'] * h5,html body .bvi-body[data-bvi-size='32'] * h5 *{font-size:35px !important}html body .bvi-body[data-bvi-size='32'] * h6,html body .bvi-body[data-bvi-size='32'] * h6 *{font-size:34px !important}html body .bvi-body[data-bvi-size='31'] *{font-size:31px !important}html body .bvi-body[data-bvi-size='31'] * h1,html body .bvi-body[data-bvi-size='31'] * h1 *{font-size:38px !important}html body .bvi-body[data-bvi-size='31'] * h2,html body .bvi-body[data-bvi-size='31'] * h2 *{font-size:37px !important}html body .bvi-body[data-bvi-size='31'] * h3,html body .bvi-body[data-bvi-size='31'] * h3 *{font-size:36px !important}html body .bvi-body[data-bvi-size='31'] * h4,html body .bvi-body[data-bvi-size='31'] * h4 *{font-size:35px !important}html body .bvi-body[data-bvi-size='31'] * h5,html body .bvi-body[data-bvi-size='31'] * h5 *{font-size:34px !important}html body .bvi-body[data-bvi-size='31'] * h6,html body .bvi-body[data-bvi-size='31'] * h6 *{font-size:33px !important}html body .bvi-body[data-bvi-size='30'] *{font-size:30px !important}html body .bvi-body[data-bvi-size='30'] * h1,html body .bvi-body[data-bvi-size='30'] * h1 *{font-size:37px !important}html body .bvi-body[data-bvi-size='30'] * h2,html body .bvi-body[data-bvi-size='30'] * h2 *{font-size:36px !important}html body .bvi-body[data-bvi-size='30'] * h3,html body .bvi-body[data-bvi-size='30'] * h3 *{font-size:35px !important}html body .bvi-body[data-bvi-size='30'] * h4,html body .bvi-body[data-bvi-size='30'] * h4 *{font-size:34px !important}html body .bvi-body[data-bvi-size='30'] * h5,html body .bvi-body[data-bvi-size='30'] * h5 *{font-size:33px !important}html body .bvi-body[data-bvi-size='30'] * h6,html body .bvi-body[data-bvi-size='30'] * h6 *{font-size:32px !important}html body .bvi-body[data-bvi-size='29'] *{font-size:29px !important}html body .bvi-body[data-bvi-size='29'] * h1,html body .bvi-body[data-bvi-size='29'] * h1 *{font-size:36px !important}html body .bvi-body[data-bvi-size='29'] * h2,html body .bvi-body[data-bvi-size='29'] * h2 *{font-size:35px !important}html body .bvi-body[data-bvi-size='29'] * h3,html body .bvi-body[data-bvi-size='29'] * h3 *{font-size:34px !important}html body .bvi-body[data-bvi-size='29'] * h4,html body .bvi-body[data-bvi-size='29'] * h4 *{font-size:33px !important}html body .bvi-body[data-bvi-size='29'] * h5,html body .bvi-body[data-bvi-size='29'] * h5 *{font-size:32px !important}html body .bvi-body[data-bvi-size='29'] * h6,html body .bvi-body[data-bvi-size='29'] * h6 *{font-size:31px !important}html body .bvi-body[data-bvi-size='28'] *{font-size:28px !important}html body .bvi-body[data-bvi-size='28'] * h1,html body .bvi-body[data-bvi-size='28'] * h1 *{font-size:35px !important}html body .bvi-body[data-bvi-size='28'] * h2,html body .bvi-body[data-bvi-size='28'] * h2 *{font-size:34px !important}html body .bvi-body[data-bvi-size='28'] * h3,html body .bvi-body[data-bvi-size='28'] * h3 *{font-size:33px !important}html body .bvi-body[data-bvi-size='28'] * h4,html body .bvi-body[data-bvi-size='28'] * h4 *{font-size:32px !important}html body .bvi-body[data-bvi-size='28'] * h5,html body .bvi-body[data-bvi-size='28'] * h5 *{font-size:31px !important}html body .bvi-body[data-bvi-size='28'] * h6,html body .bvi-body[data-bvi-size='28'] * h6 *{font-size:30px !important}html body .bvi-body[data-bvi-size='27'] *{font-size:27px !important}html body .bvi-body[data-bvi-size='27'] * h1,html body .bvi-body[data-bvi-size='27'] * h1 *{font-size:34px !important}html body .bvi-body[data-bvi-size='27'] * h2,html body .bvi-body[data-bvi-size='27'] * h2 *{font-size:33px !important}html body .bvi-body[data-bvi-size='27'] * h3,html body .bvi-body[data-bvi-size='27'] * h3 *{font-size:32px !important}html body .bvi-body[data-bvi-size='27'] * h4,html body .bvi-body[data-bvi-size='27'] * h4 *{font-size:31px !important}html body .bvi-body[data-bvi-size='27'] * h5,html body .bvi-body[data-bvi-size='27'] * h5 *{font-size:30px !important}html body .bvi-body[data-bvi-size='27'] * h6,html body .bvi-body[data-bvi-size='27'] * h6 *{font-size:29px !important}html body .bvi-body[data-bvi-size='26'] *{font-size:26px !important}html body .bvi-body[data-bvi-size='26'] * h1,html body .bvi-body[data-bvi-size='26'] * h1 *{font-size:33px !important}html body .bvi-body[data-bvi-size='26'] * h2,html body .bvi-body[data-bvi-size='26'] * h2 *{font-size:32px !important}html body .bvi-body[data-bvi-size='26'] * h3,html body .bvi-body[data-bvi-size='26'] * h3 *{font-size:31px !important}html body .bvi-body[data-bvi-size='26'] * h4,html body .bvi-body[data-bvi-size='26'] * h4 *{font-size:30px !important}html body .bvi-body[data-bvi-size='26'] * h5,html body .bvi-body[data-bvi-size='26'] * h5 *{font-size:29px !important}html body .bvi-body[data-bvi-size='26'] * h6,html body .bvi-body[data-bvi-size='26'] * h6 *{font-size:28px !important}html body .bvi-body[data-bvi-size='25'] *{font-size:25px !important}html body .bvi-body[data-bvi-size='25'] * h1,html body .bvi-body[data-bvi-size='25'] * h1 *{font-size:32px !important}html body .bvi-body[data-bvi-size='25'] * h2,html body .bvi-body[data-bvi-size='25'] * h2 *{font-size:31px !important}html body .bvi-body[data-bvi-size='25'] * h3,html body .bvi-body[data-bvi-size='25'] * h3 *{font-size:30px !important}html body .bvi-body[data-bvi-size='25'] * h4,html body .bvi-body[data-bvi-size='25'] * h4 *{font-size:29px !important}html body .bvi-body[data-bvi-size='25'] * h5,html body .bvi-body[data-bvi-size='25'] * h5 *{font-size:28px !important}html body .bvi-body[data-bvi-size='25'] * h6,html body .bvi-body[data-bvi-size='25'] * h6 *{font-size:27px !important}html body .bvi-body[data-bvi-size='24'] *{font-size:24px !important}html body .bvi-body[data-bvi-size='24'] * h1,html body .bvi-body[data-bvi-size='24'] * h1 *{font-size:31px !important}html body .bvi-body[data-bvi-size='24'] * h2,html body .bvi-body[data-bvi-size='24'] * h2 *{font-size:30px !important}html body .bvi-body[data-bvi-size='24'] * h3,html body .bvi-body[data-bvi-size='24'] * h3 *{font-size:29px !important}html body .bvi-body[data-bvi-size='24'] * h4,html body .bvi-body[data-bvi-size='24'] * h4 *{font-size:28px !important}html body .bvi-body[data-bvi-size='24'] * h5,html body .bvi-body[data-bvi-size='24'] * h5 *{font-size:27px !important}html body .bvi-body[data-bvi-size='24'] * h6,html body .bvi-body[data-bvi-size='24'] * h6 *{font-size:26px !important}html body .bvi-body[data-bvi-size='23'] *{font-size:23px !important}html body .bvi-body[data-bvi-size='23'] * h1,html body .bvi-body[data-bvi-size='23'] * h1 *{font-size:30px !important}html body .bvi-body[data-bvi-size='23'] * h2,html body .bvi-body[data-bvi-size='23'] * h2 *{font-size:29px !important}html body .bvi-body[data-bvi-size='23'] * h3,html body .bvi-body[data-bvi-size='23'] * h3 *{font-size:28px !important}html body .bvi-body[data-bvi-size='23'] * h4,html body .bvi-body[data-bvi-size='23'] * h4 *{font-size:27px !important}html body .bvi-body[data-bvi-size='23'] * h5,html body .bvi-body[data-bvi-size='23'] * h5 *{font-size:26px !important}html body .bvi-body[data-bvi-size='23'] * h6,html body .bvi-body[data-bvi-size='23'] * h6 *{font-size:25px !important}html body .bvi-body[data-bvi-size='22'] *{font-size:22px !important}html body .bvi-body[data-bvi-size='22'] * h1,html body .bvi-body[data-bvi-size='22'] * h1 *{font-size:29px !important}html body .bvi-body[data-bvi-size='22'] * h2,html body .bvi-body[data-bvi-size='22'] * h2 *{font-size:28px !important}html body .bvi-body[data-bvi-size='22'] * h3,html body .bvi-body[data-bvi-size='22'] * h3 *{font-size:27px !important}html body .bvi-body[data-bvi-size='22'] * h4,html body .bvi-body[data-bvi-size='22'] * h4 *{font-size:26px !important}html body .bvi-body[data-bvi-size='22'] * h5,html body .bvi-body[data-bvi-size='22'] * h5 *{font-size:25px !important}html body .bvi-body[data-bvi-size='22'] * h6,html body .bvi-body[data-bvi-size='22'] * h6 *{font-size:24px !important}html body .bvi-body[data-bvi-size='21'] *{font-size:21px !important}html body .bvi-body[data-bvi-size='21'] * h1,html body .bvi-body[data-bvi-size='21'] * h1 *{font-size:28px !important}html body .bvi-body[data-bvi-size='21'] * h2,html body .bvi-body[data-bvi-size='21'] * h2 *{font-size:27px !important}html body .bvi-body[data-bvi-size='21'] * h3,html body .bvi-body[data-bvi-size='21'] * h3 *{font-size:26px !important}html body .bvi-body[data-bvi-size='21'] * h4,html body .bvi-body[data-bvi-size='21'] * h4 *{font-size:25px !important}html body .bvi-body[data-bvi-size='21'] * h5,html body .bvi-body[data-bvi-size='21'] * h5 *{font-size:24px !important}html body .bvi-body[data-bvi-size='21'] * h6,html body .bvi-body[data-bvi-size='21'] * h6 *{font-size:23px !important}html body .bvi-body[data-bvi-size='20'] *{font-size:20px !important}html body .bvi-body[data-bvi-size='20'] * h1,html body .bvi-body[data-bvi-size='20'] * h1 *{font-size:27px !important}html body .bvi-body[data-bvi-size='20'] * h2,html body .bvi-body[data-bvi-size='20'] * h2 *{font-size:26px !important}html body .bvi-body[data-bvi-size='20'] * h3,html body .bvi-body[data-bvi-size='20'] * h3 *{font-size:25px !important}html body .bvi-body[data-bvi-size='20'] * h4,html body .bvi-body[data-bvi-size='20'] * h4 *{font-size:24px !important}html body .bvi-body[data-bvi-size='20'] * h5,html body .bvi-body[data-bvi-size='20'] * h5 *{font-size:23px !important}html body .bvi-body[data-bvi-size='20'] * h6,html body .bvi-body[data-bvi-size='20'] * h6 *{font-size:22px !important}html body .bvi-body[data-bvi-size='19'] *{font-size:19px !important}html body .bvi-body[data-bvi-size='19'] * h1,html body .bvi-body[data-bvi-size='19'] * h1 *{font-size:26px !important}html body .bvi-body[data-bvi-size='19'] * h2,html body .bvi-body[data-bvi-size='19'] * h2 *{font-size:25px !important}html body .bvi-body[data-bvi-size='19'] * h3,html body .bvi-body[data-bvi-size='19'] * h3 *{font-size:24px !important}html body .bvi-body[data-bvi-size='19'] * h4,html body .bvi-body[data-bvi-size='19'] * h4 *{font-size:23px !important}html body .bvi-body[data-bvi-size='19'] * h5,html body .bvi-body[data-bvi-size='19'] * h5 *{font-size:22px !important}html body .bvi-body[data-bvi-size='19'] * h6,html body .bvi-body[data-bvi-size='19'] * h6 *{font-size:21px !important}html body .bvi-body[data-bvi-size='18'] *{font-size:18px !important}html body .bvi-body[data-bvi-size='18'] * h1,html body .bvi-body[data-bvi-size='18'] * h1 *{font-size:25px !important}html body .bvi-body[data-bvi-size='18'] * h2,html body .bvi-body[data-bvi-size='18'] * h2 *{font-size:24px !important}html body .bvi-body[data-bvi-size='18'] * h3,html body .bvi-body[data-bvi-size='18'] * h3 *{font-size:23px !important}html body .bvi-body[data-bvi-size='18'] * h4,html body .bvi-body[data-bvi-size='18'] * h4 *{font-size:22px !important}html body .bvi-body[data-bvi-size='18'] * h5,html body .bvi-body[data-bvi-size='18'] * h5 *{font-size:21px !important}html body .bvi-body[data-bvi-size='18'] * h6,html body .bvi-body[data-bvi-size='18'] * h6 *{font-size:20px !important}html body .bvi-body[data-bvi-size='17'] *{font-size:17px !important}html body .bvi-body[data-bvi-size='17'] * h1,html body .bvi-body[data-bvi-size='17'] * h1 *{font-size:24px !important}html body .bvi-body[data-bvi-size='17'] * h2,html body .bvi-body[data-bvi-size='17'] * h2 *{font-size:23px !important}html body .bvi-body[data-bvi-size='17'] * h3,html body .bvi-body[data-bvi-size='17'] * h3 *{font-size:22px !important}html body .bvi-body[data-bvi-size='17'] * h4,html body .bvi-body[data-bvi-size='17'] * h4 *{font-size:21px !important}html body .bvi-body[data-bvi-size='17'] * h5,html body .bvi-body[data-bvi-size='17'] * h5 *{font-size:20px !important}html body .bvi-body[data-bvi-size='17'] * h6,html body .bvi-body[data-bvi-size='17'] * h6 *{font-size:19px !important}html body .bvi-body[data-bvi-size='16'] *{font-size:16px !important}html body .bvi-body[data-bvi-size='16'] * h1,html body .bvi-body[data-bvi-size='16'] * h1 *{font-size:23px !important}html body .bvi-body[data-bvi-size='16'] * h2,html body .bvi-body[data-bvi-size='16'] * h2 *{font-size:22px !important}html body .bvi-body[data-bvi-size='16'] * h3,html body .bvi-body[data-bvi-size='16'] * h3 *{font-size:21px !important}html body .bvi-body[data-bvi-size='16'] * h4,html body .bvi-body[data-bvi-size='16'] * h4 *{font-size:20px !important}html body .bvi-body[data-bvi-size='16'] * h5,html body .bvi-body[data-bvi-size='16'] * h5 *{font-size:19px !important}html body .bvi-body[data-bvi-size='16'] * h6,html body .bvi-body[data-bvi-size='16'] * h6 *{font-size:18px !important}html body .bvi-body[data-bvi-size='15'] *{font-size:15px !important}html body .bvi-body[data-bvi-size='15'] * h1,html body .bvi-body[data-bvi-size='15'] * h1 *{font-size:22px !important}html body .bvi-body[data-bvi-size='15'] * h2,html body .bvi-body[data-bvi-size='15'] * h2 *{font-size:21px !important}html body .bvi-body[data-bvi-size='15'] * h3,html body .bvi-body[data-bvi-size='15'] * h3 *{font-size:20px !important}html body .bvi-body[data-bvi-size='15'] * h4,html body .bvi-body[data-bvi-size='15'] * h4 *{font-size:19px !important}html body .bvi-body[data-bvi-size='15'] * h5,html body .bvi-body[data-bvi-size='15'] * h5 *{font-size:18px !important}html body .bvi-body[data-bvi-size='15'] * h6,html body .bvi-body[data-bvi-size='15'] * h6 *{font-size:17px !important}html body .bvi-body[data-bvi-size='14'] *{font-size:14px !important}html body .bvi-body[data-bvi-size='14'] * h1,html body .bvi-body[data-bvi-size='14'] * h1 *{font-size:21px !important}html body .bvi-body[data-bvi-size='14'] * h2,html body .bvi-body[data-bvi-size='14'] * h2 *{font-size:20px !important}html body .bvi-body[data-bvi-size='14'] * h3,html body .bvi-body[data-bvi-size='14'] * h3 *{font-size:19px !important}html body .bvi-body[data-bvi-size='14'] * h4,html body .bvi-body[data-bvi-size='14'] * h4 *{font-size:18px !important}html body .bvi-body[data-bvi-size='14'] * h5,html body .bvi-body[data-bvi-size='14'] * h5 *{font-size:17px !important}html body .bvi-body[data-bvi-size='14'] * h6,html body .bvi-body[data-bvi-size='14'] * h6 *{font-size:16px !important}html body .bvi-body[data-bvi-size='13'] *{font-size:13px !important}html body .bvi-body[data-bvi-size='13'] * h1,html body .bvi-body[data-bvi-size='13'] * h1 *{font-size:20px !important}html body .bvi-body[data-bvi-size='13'] * h2,html body .bvi-body[data-bvi-size='13'] * h2 *{font-size:19px !important}html body .bvi-body[data-bvi-size='13'] * h3,html body .bvi-body[data-bvi-size='13'] * h3 *{font-size:18px !important}html body .bvi-body[data-bvi-size='13'] * h4,html body .bvi-body[data-bvi-size='13'] * h4 *{font-size:17px !important}html body .bvi-body[data-bvi-size='13'] * h5,html body .bvi-body[data-bvi-size='13'] * h5 *{font-size:16px !important}html body .bvi-body[data-bvi-size='13'] * h6,html body .bvi-body[data-bvi-size='13'] * h6 *{font-size:15px !important}html body .bvi-body[data-bvi-size='12'] *{font-size:12px !important}html body .bvi-body[data-bvi-size='12'] * h1,html body .bvi-body[data-bvi-size='12'] * h1 *{font-size:19px !important}html body .bvi-body[data-bvi-size='12'] * h2,html body .bvi-body[data-bvi-size='12'] * h2 *{font-size:18px !important}html body .bvi-body[data-bvi-size='12'] * h3,html body .bvi-body[data-bvi-size='12'] * h3 *{font-size:17px !important}html body .bvi-body[data-bvi-size='12'] * h4,html body .bvi-body[data-bvi-size='12'] * h4 *{font-size:16px !important}html body .bvi-body[data-bvi-size='12'] * h5,html body .bvi-body[data-bvi-size='12'] * h5 *{font-size:15px !important}html body .bvi-body[data-bvi-size='12'] * h6,html body .bvi-body[data-bvi-size='12'] * h6 *{font-size:14px !important}html body .bvi-body[data-bvi-size='11'] *{font-size:11px !important}html body .bvi-body[data-bvi-size='11'] * h1,html body .bvi-body[data-bvi-size='11'] * h1 *{font-size:18px !important}html body .bvi-body[data-bvi-size='11'] * h2,html body .bvi-body[data-bvi-size='11'] * h2 *{font-size:17px !important}html body .bvi-body[data-bvi-size='11'] * h3,html body .bvi-body[data-bvi-size='11'] * h3 *{font-size:16px !important}html body .bvi-body[data-bvi-size='11'] * h4,html body .bvi-body[data-bvi-size='11'] * h4 *{font-size:15px !important}html body .bvi-body[data-bvi-size='11'] * h5,html body .bvi-body[data-bvi-size='11'] * h5 *{font-size:14px !important}html body .bvi-body[data-bvi-size='11'] * h6,html body .bvi-body[data-bvi-size='11'] * h6 *{font-size:13px !important}html body .bvi-body[data-bvi-size='10'] *{font-size:10px !important}html body .bvi-body[data-bvi-size='10'] * h1,html body .bvi-body[data-bvi-size='10'] * h1 *{font-size:17px !important}html body .bvi-body[data-bvi-size='10'] * h2,html body .bvi-body[data-bvi-size='10'] * h2 *{font-size:16px !important}html body .bvi-body[data-bvi-size='10'] * h3,html body .bvi-body[data-bvi-size='10'] * h3 *{font-size:15px !important}html body .bvi-body[data-bvi-size='10'] * h4,html body .bvi-body[data-bvi-size='10'] * h4 *{font-size:14px !important}html body .bvi-body[data-bvi-size='10'] * h5,html body .bvi-body[data-bvi-size='10'] * h5 *{font-size:13px !important}html body .bvi-body[data-bvi-size='10'] * h6,html body .bvi-body[data-bvi-size='10'] * h6 *{font-size:12px !important}html body .bvi-body[data-bvi-size='9'] *{font-size:9px !important}html body .bvi-body[data-bvi-size='9'] * h1,html body .bvi-body[data-bvi-size='9'] * h1 *{font-size:16px !important}html body .bvi-body[data-bvi-size='9'] * h2,html body .bvi-body[data-bvi-size='9'] * h2 *{font-size:15px !important}html body .bvi-body[data-bvi-size='9'] * h3,html body .bvi-body[data-bvi-size='9'] * h3 *{font-size:14px !important}html body .bvi-body[data-bvi-size='9'] * h4,html body .bvi-body[data-bvi-size='9'] * h4 *{font-size:13px !important}html body .bvi-body[data-bvi-size='9'] * h5,html body .bvi-body[data-bvi-size='9'] * h5 *{font-size:12px !important}html body .bvi-body[data-bvi-size='9'] * h6,html body .bvi-body[data-bvi-size='9'] * h6 *{font-size:11px !important}html body .bvi-body[data-bvi-size='8'] *{font-size:8px !important}html body .bvi-body[data-bvi-size='8'] * h1,html body .bvi-body[data-bvi-size='8'] * h1 *{font-size:15px !important}html body .bvi-body[data-bvi-size='8'] * h2,html body .bvi-body[data-bvi-size='8'] * h2 *{font-size:14px !important}html body .bvi-body[data-bvi-size='8'] * h3,html body .bvi-body[data-bvi-size='8'] * h3 *{font-size:13px !important}html body .bvi-body[data-bvi-size='8'] * h4,html body .bvi-body[data-bvi-size='8'] * h4 *{font-size:12px !important}html body .bvi-body[data-bvi-size='8'] * h5,html body .bvi-body[data-bvi-size='8'] * h5 *{font-size:11px !important}html body .bvi-body[data-bvi-size='8'] * h6,html body .bvi-body[data-bvi-size='8'] * h6 *{font-size:10px !important}html body .bvi-body[data-bvi-size='7'] *{font-size:7px !important}html body .bvi-body[data-bvi-size='7'] * h1,html body .bvi-body[data-bvi-size='7'] * h1 *{font-size:14px !important}html body .bvi-body[data-bvi-size='7'] * h2,html body .bvi-body[data-bvi-size='7'] * h2 *{font-size:13px !important}html body .bvi-body[data-bvi-size='7'] * h3,html body .bvi-body[data-bvi-size='7'] * h3 *{font-size:12px !important}html body .bvi-body[data-bvi-size='7'] * h4,html body .bvi-body[data-bvi-size='7'] * h4 *{font-size:11px !important}html body .bvi-body[data-bvi-size='7'] * h5,html body .bvi-body[data-bvi-size='7'] * h5 *{font-size:10px !important}html body .bvi-body[data-bvi-size='7'] * h6,html body .bvi-body[data-bvi-size='7'] * h6 *{font-size:9px !important}html body .bvi-body[data-bvi-size='6'] *{font-size:6px !important}html body .bvi-body[data-bvi-size='6'] * h1,html body .bvi-body[data-bvi-size='6'] * h1 *{font-size:13px !important}html body .bvi-body[data-bvi-size='6'] * h2,html body .bvi-body[data-bvi-size='6'] * h2 *{font-size:12px !important}html body .bvi-body[data-bvi-size='6'] * h3,html body .bvi-body[data-bvi-size='6'] * h3 *{font-size:11px !important}html body .bvi-body[data-bvi-size='6'] * h4,html body .bvi-body[data-bvi-size='6'] * h4 *{font-size:10px !important}html body .bvi-body[data-bvi-size='6'] * h5,html body .bvi-body[data-bvi-size='6'] * h5 *{font-size:9px !important}html body .bvi-body[data-bvi-size='6'] * h6,html body .bvi-body[data-bvi-size='6'] * h6 *{font-size:8px !important}html body .bvi-body[data-bvi-size='5'] *{font-size:5px !important}html body .bvi-body[data-bvi-size='5'] * h1,html body .bvi-body[data-bvi-size='5'] * h1 *{font-size:12px !important}html body .bvi-body[data-bvi-size='5'] * h2,html body .bvi-body[data-bvi-size='5'] * h2 *{font-size:11px !important}html body .bvi-body[data-bvi-size='5'] * h3,html body .bvi-body[data-bvi-size='5'] * h3 *{font-size:10px !important}html body .bvi-body[data-bvi-size='5'] * h4,html body .bvi-body[data-bvi-size='5'] * h4 *{font-size:9px !important}html body .bvi-body[data-bvi-size='5'] * h5,html body .bvi-body[data-bvi-size='5'] * h5 *{font-size:8px !important}html body .bvi-body[data-bvi-size='5'] * h6,html body .bvi-body[data-bvi-size='5'] * h6 *{font-size:7px !important}html body .bvi-body[data-bvi-size='4'] *{font-size:4px !important}html body .bvi-body[data-bvi-size='4'] * h1,html body .bvi-body[data-bvi-size='4'] * h1 *{font-size:11px !important}html body .bvi-body[data-bvi-size='4'] * h2,html body .bvi-body[data-bvi-size='4'] * h2 *{font-size:10px !important}html body .bvi-body[data-bvi-size='4'] * h3,html body .bvi-body[data-bvi-size='4'] * h3 *{font-size:9px !important}html body .bvi-body[data-bvi-size='4'] * h4,html body .bvi-body[data-bvi-size='4'] * h4 *{font-size:8px !important}html body .bvi-body[data-bvi-size='4'] * h5,html body .bvi-body[data-bvi-size='4'] * h5 *{font-size:7px !important}html body .bvi-body[data-bvi-size='4'] * h6,html body .bvi-body[data-bvi-size='4'] * h6 *{font-size:6px !important}html body .bvi-body[data-bvi-size='3'] *{font-size:3px !important}html body .bvi-body[data-bvi-size='3'] * h1,html body .bvi-body[data-bvi-size='3'] * h1 *{font-size:10px !important}html body .bvi-body[data-bvi-size='3'] * h2,html body .bvi-body[data-bvi-size='3'] * h2 *{font-size:9px !important}html body .bvi-body[data-bvi-size='3'] * h3,html body .bvi-body[data-bvi-size='3'] * h3 *{font-size:8px !important}html body .bvi-body[data-bvi-size='3'] * h4,html body .bvi-body[data-bvi-size='3'] * h4 *{font-size:7px !important}html body .bvi-body[data-bvi-size='3'] * h5,html body .bvi-body[data-bvi-size='3'] * h5 *{font-size:6px !important}html body .bvi-body[data-bvi-size='3'] * h6,html body .bvi-body[data-bvi-size='3'] * h6 *{font-size:5px !important}html body .bvi-body[data-bvi-size='2'] *{font-size:2px !important}html body .bvi-body[data-bvi-size='2'] * h1,html body .bvi-body[data-bvi-size='2'] * h1 *{font-size:9px !important}html body .bvi-body[data-bvi-size='2'] * h2,html body .bvi-body[data-bvi-size='2'] * h2 *{font-size:8px !important}html body .bvi-body[data-bvi-size='2'] * h3,html body .bvi-body[data-bvi-size='2'] * h3 *{font-size:7px !important}html body .bvi-body[data-bvi-size='2'] * h4,html body .bvi-body[data-bvi-size='2'] * h4 *{font-size:6px !important}html body .bvi-body[data-bvi-size='2'] * h5,html body .bvi-body[data-bvi-size='2'] * h5 *{font-size:5px !important}html body .bvi-body[data-bvi-size='2'] * h6,html body .bvi-body[data-bvi-size='2'] * h6 *{font-size:4px !important}html body .bvi-body[data-bvi-size='1'] *{font-size:1px !important}html body .bvi-body[data-bvi-size='1'] * h1,html body .bvi-body[data-bvi-size='1'] * h1 *{font-size:8px !important}html body .bvi-body[data-bvi-size='1'] * h2,html body .bvi-body[data-bvi-size='1'] * h2 *{font-size:7px !important}html body .bvi-body[data-bvi-size='1'] * h3,html body .bvi-body[data-bvi-size='1'] * h3 *{font-size:6px !important}html body .bvi-body[data-bvi-size='1'] * h4,html body .bvi-body[data-bvi-size='1'] * h4 *{font-size:5px !important}html body .bvi-body[data-bvi-size='1'] * h5,html body .bvi-body[data-bvi-size='1'] * h5 *{font-size:4px !important}html body .bvi-body[data-bvi-size='1'] * h6,html body .bvi-body[data-bvi-size='1'] * h6 *{font-size:3px !important}html body .bvi-body[data-bvi-images='true'] img{-webkit-filter:grayscale(0);filter:grayscale(0)}html body .bvi-body[data-bvi-images='false'] .bvi-img-off{border:2px dashed !important;box-sizing:border-box !important;overflow:hidden !important;max-width:100% !important;max-height:100% !important;word-wrap:break-word !important;text-align:center !important;display:flex !important;align-items:center !important;justify-content:center !important}html body .bvi-body[data-bvi-images='grayscale'] img.grayscale{filter:url("data:image/svg+xml;utf8,<svgxmlns='http://www.w3.org/2000/svg'><filterid='grayscale'><feColorMatrixtype='saturate'values='0'/></filter></svg>#grayscale");-webkit-filter:grayscale(1);filter:grayscale(1);filter:gray}html body .bvi-body[data-bvi-images='grayscale'] .bvi-div-grayscale{position:relative;display:block}html body .bvi-body[data-bvi-line-height='normal'] *{line-height:1.5 !important}html body .bvi-body[data-bvi-line-height='average'] *{line-height:2 !important}html body .bvi-body[data-bvi-line-height='big'] *{line-height:2.5 !important}html body .bvi-body[data-bvi-letter-spacing='normal'] *{letter-spacing:0 !important}html body .bvi-body[data-bvi-letter-spacing='average'] *{letter-spacing:2px !important}html body .bvi-body[data-bvi-letter-spacing='big'] *{letter-spacing:4px !important}html body .bvi-body[data-bvi-font-family='arial'] *:not(i):not(span){font-family:Arial,sans-serif}html body .bvi-body[data-bvi-font-family='times'] *:not(i):not(span){font-family:"Times New roman"}html body .bvi-body[data-bvi-flash-iframe='true'] iframe,html body .bvi-body[data-bvi-flash-iframe='true'] video,html body .bvi-body[data-bvi-flash-iframe='true'] figure{display:block}html body .bvi-body[data-bvi-flash-iframe='false'] iframe,html body .bvi-body[data-bvi-flash-iframe='false'] video,html body .bvi-body[data-bvi-flash-iframe='false'] figure{display:none}
/* End */


/* Start:/local/templates/ronc.site/components/vision/vision.special/.default/style/css/bvi-font.min.css?17228477021612*/
.bvi-icon{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.bvi-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.bvi-xs{font-size:.75em !important}.bvi-sm{font-size:.875em !important}.bvi-1x{font-size:1em !important}.bvi-2x{font-size:2em !important}.bvi-3x{font-size:3em !important}.bvi-4x{font-size:4em !important}.bvi-5x{font-size:5em !important}.bvi-6x{font-size:6em !important}.bvi-7x{font-size:7em !important}.bvi-8x{font-size:8em !important}.bvi-9x{font-size:9em !important}.bvi-10x{font-size:10em !important}.bvi-font:before{content:"\f031"}.bvi-plus:before{content:"\f067"}.bvi-minus:before{content:"\f068"}.bvi-circle:before{content:"\f111"}.bvi-circle-notch:before{content:"\f1ce"}.bvi-adjust:before{content:"\f042"}.bvi-volume-up:before{content:"\f028"}.bvi-volume-off:before{content:"\f026"}.bvi-cogs:before{content:"\f085"}.bvi-low-vision:before{content:"\f2a8"}.bvi-chevron-circle-up:before{content:"\f139"}.bvi-eye:before{content:"\f06e"}.bvi-sync-alt:before{content:"\f2f1"}.bvi-times-circle:before{content:"\f057"}.bvi-bolt:before{content:"\f0e7"}@font-face{font-family:'Font Awesome 5 Free';font-style:normal;font-weight:900;font-display:auto;src:url("/local/templates/ronc.site/components/vision/vision.special/.default/style/css/../fonts/fa-solid-900.eot");src:url("/local/templates/ronc.site/components/vision/vision.special/.default/style/css/../fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"),url("/local/templates/ronc.site/components/vision/vision.special/.default/style/css/../fonts/fa-solid-900.woff2") format("woff2"),url("/local/templates/ronc.site/components/vision/vision.special/.default/style/css/../fonts/fa-solid-900.woff") format("woff"),url("/local/templates/ronc.site/components/vision/vision.special/.default/style/css/../fonts/fa-solid-900.ttf") format("truetype")}.bvi-icon{font-family:'Font Awesome 5 Free';font-weight:900}
/* End */
/* /local/templates/ronc.site/app/vendors/@alterastro/protocss@1.0.0/protocss.min.css?17303799883531 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/plugins/focus-ring/focus-ring.css?17303799882117 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/plugins/ripple/ripple.css?1730379988998 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/app/app.css?1730379988488 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/app-bar/app-bar.css?1730379988320 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/button/button.css?173037998827615 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/card/card.css?173038798218851 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/chip/chip.css?173040086620288 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/container/container.css?1730379988492 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/dialog/dialog.css?17303799889170 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/divider/divider.css?17303799882014 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/expansion-panel/expansion-panel.css?173059106422726 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/footer/footer.css?17303799882054 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/icon/icon.css?17303799882447 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/image/image.css?1730379988677 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/layout/layout.css?1730379988733 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/list/list-group.css?17303799881461 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/list/list-item.css?173037998840372 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/list/list.css?17303799886587 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/main/main.css?17305872401284 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/native-select/native-select.css?17306047142411 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/responsive/responsive.css?17303799881240 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/state-layer/state-layer.css?1730379988930 */
/* /local/templates/ronc.site/app/vendors/@alterastro/exo@1.0.0/dist/components/toolbar/toolbar.css?17304023903528 */
/* /local/templates/ronc.site/app/styles/tokens/x-ref-layout.css?17364319042063 */
/* /local/templates/ronc.site/app/styles/tokens/x-ref-palette.css?17364319001270 */
/* /local/templates/ronc.site/app/styles/tokens/x-ref-typeface.css?1736431896225 */
/* /local/templates/ronc.site/app/styles/tokens/x-sys-motion.css?17364319681366 */
/* /local/templates/ronc.site/app/styles/tokens/x-sys-shape.css?1736431972276 */
/* /local/templates/ronc.site/app/styles/tokens/x-sys-state.css?1736431978597 */
/* /local/templates/ronc.site/app/styles/tokens/x-sys-typescale.css?17364320004757 */
/* /local/templates/ronc.site/app/styles/tokens/x-comp.css?17389123926965 */
/* /local/templates/ronc.site/app/styles/generic/fonts.css?17364316904146 */
/* /local/templates/ronc.site/app/styles/generic/alpinejs.css?173643166041 */
/* /local/templates/ronc.site/app/styles/generic/bitrix.css?173643167471 */
/* /local/templates/ronc.site/app/styles/generic/animations.css?1736431668151 */
/* /local/templates/ronc.site/app/styles/generic/selection.css?1736431702168 */
/* /local/templates/ronc.site/app/styles/generic/transitions.css?17364317085275 */
/* /local/templates/ronc.site/app/styles/generic/elevation.css?17364316841327 */
/* /local/templates/ronc.site/app/styles/elements/bvi.css?17364315821359 */
/* /local/templates/ronc.site/app/styles/elements/global.css?17364314582399 */
/* /local/templates/ronc.site/app/styles/themes/root.css?17303870403004 */
/* /local/templates/ronc.site/app/styles/themes/colors.css?17364317788079 */
/* /local/templates/ronc.site/app/styles/utils/align.css?17228803124965 */
/* /local/templates/ronc.site/app/styles/utils/border.css?1722847702735 */
/* /local/templates/ronc.site/app/styles/utils/colors.css?17228477021296 */
/* /local/templates/ronc.site/app/styles/utils/columns.css?1722880398188 */
/* /local/templates/ronc.site/app/styles/utils/cursor.css?1722847702151 */
/* /local/templates/ronc.site/app/styles/utils/display.css?17228804925374 */
/* /local/templates/ronc.site/app/styles/utils/flex.css?17228806204101 */
/* /local/templates/ronc.site/app/styles/utils/gap.css?173505524413571 */
/* /local/templates/ronc.site/app/styles/utils/grid.css?173505678427305 */
/* /local/templates/ronc.site/app/styles/utils/justify.css?17228808424780 */
/* /local/templates/ronc.site/app/styles/utils/order.css?17228809223423 */
/* /local/templates/ronc.site/app/styles/utils/opacity.css?1722847702572 */
/* /local/templates/ronc.site/app/styles/utils/overflow.css?17228809924380 */
/* /local/templates/ronc.site/app/styles/utils/placement.css?17228811666314 */
/* /local/templates/ronc.site/app/styles/utils/position.css?17228812041688 */
/* /local/templates/ronc.site/app/styles/utils/rounded.css?17265088487718 */
/* /local/templates/ronc.site/app/styles/utils/sizing.css?173891245110299 */
/* /local/templates/ronc.site/app/styles/utils/spacing.css?1736451195114929 */
/* /local/templates/ronc.site/app/styles/utils/stretched-link.css?1722847702166 */
/* /local/templates/ronc.site/app/styles/utils/transform.css?1730996698307 */
/* /local/templates/ronc.site/app/styles/utils/typescale.css?172288176828327 */
/* /local/templates/ronc.site/app/styles/utils/text.css?17310229344978 */
/* /local/templates/ronc.site/app/styles/utils/z-index.css?17228818981696 */
/* /local/templates/ronc.site/app/styles/_trumps.css?1736430878709 */
/* /local/templates/ronc.site/app/plugins/lightbox/lightbox.css?1730992436586 */
/* /local/templates/ronc.site/app/components/carousel/carousel.css?17310873063361 */
/* /local/templates/ronc.site/app/components/choices-select/choices-select.css?17429300034355 */
/* /local/templates/ronc.site/app/components/main-layout/main-layout.css?17364444181026 */
/* /local/templates/ronc.site/app/components/SCarousel/SCarousel.css?17228477021696 */
/* /local/templates/ronc.site/app/components/XBtn/XBtn.css?172284770222892 */
/* /local/templates/ronc.site/app/components/XCounter/XCounter.css?1722847702413 */
/* /local/templates/ronc.site/app/components/XDropdown/XDropdown.css?1722847702689 */
/* /local/templates/ronc.site/app/components/XField/XField.css?174292335413259 */
/* /local/templates/ronc.site/app/components/XInput/XInput.css?17424263013614 */
/* /local/templates/ronc.site/app/components/XLabel/XLabel.css?1722847702392 */
/* /local/templates/ronc.site/app/components/XMessages/XMessages.css?1722847702585 */
/* /local/templates/ronc.site/app/components/XSheet/XSheet.css?17228477021041 */
/* /local/templates/ronc.site/app/components/XTextField/XTextField.css?17228477021973 */
/* /local/templates/ronc.site/fonts/ptrootui.css?17228477001117 */
/* /local/templates/ronc.site/fontawesome.css/all.min.css?172284770079956 */
/* /local/templates/ronc.site/css/slick.css?17228477001776 */
/* /local/templates/ronc.site/css/jquery.fancybox.min.css?172284770013735 */
/* /local/templates/ronc.site/css/bootstrap-select.min.css?172284770011120 */
/* /local/templates/ronc.site/include/app/app.brand/style.css?1738912257382 */
/* /local/templates/ronc.site/components/bitrix/menu/mmenu/style.css?1722847702846 */
/* /local/templates/ronc.site/include/app/app.bar.floating/style.css?17228477021259 */
/* /local/templates/ronc.site/include/main/main.header/style.css?17364402101618 */
/* /local/templates/ronc.site/components/bitrix/breadcrumb/x-breadcrumbs/style.css?17229591947786 */
/* /local/templates/ronc.site/include/app/app.navigation.bar/style.css?1730588044982 */
/* /local/templates/ronc.site/components/bitrix/search.title/app.search.dialog.search/style.css?172284770260 */
/* /local/templates/ronc.site/include/app/cookie.consent.popup/style.css?17472286741236 */
/* /local/templates/ronc.site/styles.css?173098349433952 */
/* /local/templates/ronc.site/template_styles.css?175285065428665 */
/* /local/templates/ronc.site/components/vision/vision.special/.default/style/css/style.css?172284770270 */
/* /local/templates/ronc.site/components/vision/vision.special/.default/style/css/bvi-font.min.css?17228477021612 */
/* /local/templates/ronc.site/components/vision/vision.special/.default/style/css/bvi.min.css?1722847702127805 */
/* /local/templates/ronc.site/components/vision/vision.special/.default/style/css/bvi.min.css?1722847702127805 */
/* /local/templates/ronc.site/components/vision/vision.special/.default/style/css/bvi-font.min.css?17228477021612 */
