html {
	background-color: #325891;
	font-family: sans-serif;
	font-size: 12pt;
}

body {
	margin: 0px;
	padding: 0px;
	background-color: #FBFBFB;
	height: 100vh;
	user-select: none;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	border-style: none;
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: lightgray;
}

main {
	flex: 1 1 auto;
	overflow: hidden;
}

header, footer {
	flex: 0 0 auto;
}

header {
	background-color: red;
}

footer {
	background-color: #fbfbfb;
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: lightgray;
	padding: 0.5rem;
}

button {
	color: #595959;
	background-color: #FBFBFB;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(211, 211, 211, 0.9);
	padding: .25rem;
	min-width: 4rem;
	transition: border-color .3s, background-color .3s;
}

button:hover, button:focus {
	background-color: #C9DEF5;
	border-color: #3399FF;
}

button[disabled] {
	color: lightgray;
	background-color: #FBFBFB;
	border-color: rgba(211, 211, 211, 0.5);
}

.button-smaller {
	font-size: .75rem;
	min-width: 0;
	padding: .2rem;
	margin-bottom: .1rem;
	margin-left: .25rem;
}

a {
	color: rgb(5, 111, 224);
	text-decoration: none;
}

a:hover, a:focus {
	text-decoration: underline;
}

a[a5action="infobox-link"] {
	cursor: help;
}

.title-bar {
	position: relative;
	z-index: 16;
	height: 2em;
	background-color: #3357A5;
	border-style: solid;
	border-width: 1px;
	border-color: #325891;
}

.title-bar-button {
	font-size: 1.5em;
	display: inline-block;
	float: right;
	cursor: default;
	text-align: center;
	padding-top: 0em;
	padding-bottom: 0em;
	border-style: solid;
	border-width: 1px;
	transition: border-color 1s;
	min-width: inherit;
	margin-right: .25rem;
}

.win--title-bar-button {
	background-color: transparent;
	color: white;
	border-color: #3357A5;
}

.win--title-bar-button:hover {
	border-color: white;
	background-color: transparent;
}

.win--title-bar-button:focus {
	border-color: white;
	background-color: transparent;
}

.image-icon {
	height: 5em;
	width: 5em;
	float: left;
	margin: 2em;
	margin-top: 1.5em;
}

.company-name {
	font-size: 0.8em;
	margin: 0;
	padding: 0;
	color: #3357A5;
}

.banner-container {
	flex: 0 0 auto;
	width: 100%;
	background-color: #FBFBFB;
	position: relative;
	z-index: 16;
}

.banner {
	font-weight: 100;
	font-size: 2em;
	color: #494a47;
	padding: 0;
	margin: 0;
	display: table;
}

.client-area {
	display: flex;
	height: 100%;
	flex-direction: column;
}

p {
	font-size: .95em;
	color: gray;
	max-width: 25em;
}

.control-left-margin {
	margin-left: .2em;
}

.form-container {
	text-align: center;
}

.form-align {
	text-align: left;
	display: inline-block;
}

#products {
	max-height: 16.5em;
	overflow-y: auto;
}

.control-border {
}

.control-border-corner {
	border-style: solid;
	border-width: 1px;
	border-color: rgba(0,0,0,.125);
	border-radius: .25rem;
}

.install-btn {
	font-size: 2rem;
	background: rgb(0, 123, 255);
	color: white;
	padding-top: .45rem;
	padding-bottom: .45rem;
	padding-left: .5rem;
	padding-right: .5rem;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(0,0,0,.125);
	border-radius: .25rem;
	margin-top: 0.15rem;
	transition: background-color .3s;
}

.install-btn:focus {
	outline: none;
	box-shadow: 0 0 0 0.2rem rgba(38,143,255,.5);
}

.install-btn:hover {
	background-color: rgba(0, 123, 255, 0.72);
}

.install-product button {
	font-size: 1.5em;
	color: #3357A5;
	margin-top: 0.75em;
	width: 95%;
}

.installed button {
	font-weight: bold;
	background-color: yellow;
}

.text-prompt {
	width: 26em;
	border-style: solid;
	border-width: 1px;
	border-radius: 3px;
	padding: .45rem;
	border-color: lightgray;
}

.folder-prompt-btn {
	background-color: white;
	border-style: solid;
	border-width: 1px;
	border-color: lightgray;
	border-radius: 3px;
	padding-top: .7rem;
	padding-bottom: 2px;
	transition: border-color 1s;
	min-width: inherit;
}

.folder-prompt-btn:hover {
	border-color: gray;
}

.folder-prompt-btn:focus {
	border-color: gray;
}

.dropdown {
	display: block;
	position: absolute;
	z-index: 1;
	transition: opacity .15s, visibility 0.25s;
	background-color: white;
	border-style: solid;
	border-width: 1px;
	border-color: gray;
	box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.6);
	margin-top: 0;
	opacity: 0;
	box-sizing: border-box;
	min-width: 26em;
	max-height: 10em;
	overflow-y: auto;
	visibility: hidden;
}

.dropdown-open {
	visibility: visible;
	opacity: 1;
}

.dropdown-content {
	padding: 0px;
	list-style: none;
	margin: .2em;
	line-height: 1.3em;
	white-space: nowrap;
}

.dropdown > ul > li {
	cursor: default;
}

.dropdown-open > ul > li:hover {
	background-color: #3357A5;
	color: white;
}

.dropdown-open > ul > li.selected {
	background-color: #3357A5;
	color: white;
}

#progressDetail {
	width: 95%;
	height: 100px;
}

#progressBar {
	width: 95%;
	height: 30px;
	background-color: white;
	border: solid 1px gray;
	margin-left: 20px;
}

#progressIndicator {
	width: 1%;
	height: 30px;
	background-color: green;
}

label {
	display: block;
}

.inline-label {
	display: inline-block;
}

.no-borders {
	border: none;
}

.one-pixel-borders {
	border-style: solid;
	border-width: 1px;
}

input[type="checkbox"] {
	height: 1em;
	width: 1em;
}

.sub {
	font-size: 90%;
	color: gray;
	margin-top: .1em;
	margin-bottom: .1em;
}

td.spacer {
	width: 1.7em;
}

.collapsable {
	transition: max-height .5s;
	overflow: hidden;
	max-height: 0em;
}

.collapsed {
	visibility: hidden;
}

.expanded {
	max-height: 11em;
	visibility: visible;
	padding-bottom: .25em;
}

.borderless-button {
	background-color: transparent;
	border-color: transparent;
	border-style: solid;
	font-size: .75rem;
	border-width: 1px;
	margin-left: .25rem;
	padding: .3rem;
	padding-top: .25rem;
	padding-bottom: .25rem;
	color: gray;
	transition: border-color 0.3s;
}

.borderless-button:hover {
	border-color: lightgray;
	color: black;
}

.borderless-button:focus {
	border-color: lightgray;
	color: black;
}

.borderless-button:disabled {
	color: lightgray;
	transition: none;
	border-color: transparent;
}

.progress {
	width: 10em;
	display: inline;
	margin-right: 0.5rem;
}

.progress-button-x {
	font-size: 1.2em;
}

.progress-button {
	display: inline;
}

.progress-label {
	font-size: 75%;
	margin-top: 0.5rem;
	overflow: hidden;
	margin-right: 0.5rem;
	line-height: 1.2rem;
	/*max-height: 3.5rem;*/
	min-height: 3.5rem;
}

progress {
	display: inline;
}

.dlg {
	left: 50%;
	top: 50%;
	min-width: 25em;
	max-width: calc(100vw - 5rem);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
	border-width: 1px;
	border-color: rgba(0, 0, 0, 0.3);
	transform: translate(-50%, -50%);
}

.dlg-max-width-quarter {
	max-width: calc(100vw / 4);
}

.dlg-no-max-width {
	max-width: inherit;
	width: calc(100vw - 5rem);
}

.dlg__left-buttons {
	margin-top: .5rem;
	float: left;
}

.dlg__buttons {
	float: right;
	margin-top: .5rem;
}

.dlg--button {
	padding: .25rem;
	min-width: 4rem;
}

.dlg__log-area {
	font-size: 11pt;
	line-height: 1.3rem;
	white-space: nowrap;
	overflow: auto;
	max-height: 20rem;
	margin-top: .5rem;
	margin-bottom: 0.5rem;
	padding: .25rem;
	user-select: text;
	-ms-user-select: text;
}

.dlg--separator {
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: lightgray;
}

.dlg__title {
	margin-top: 0;
	margin-bottom: 0;
	display: inline-block;
	color: #494a47;
	font-weight: normal;
}

.dlg--title-bar-button {
	color: inherit;
	border-color: white;
	transition: border-color 1s;
}

.dlg--title-bar-button:hover {
	border-color: lightgray;
}

.dlg--title-bar-button:focus {
	border-color: lightgray;
}

.dlg__refresh-time {
	font-size: 0.65em;
	margin-top: 0.2em;
	margin-left: 0.4em;
}

.listbox {
	padding: 0;
	margin: 0;
	padding: .25em;
	overflow-y: auto;
	overflow-x: auto;
	margin-bottom: .75em;
	font-size: smaller;
	white-space: nowrap;
	border-radius: 3px;
}

.bottom-edge {
	position: absolute;
	background-color: #fbfbfb;
	bottom: 0.5em;
	left: 2px;
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: lightgray;
	padding-left: 0.5em;
	padding-top: 0.5em;
	right: 2px;
}

.right-justify {
	float: right;
}

.no-text-transform {
	text-transform: none;
}

.gray-border {
	border-color: lightgray;
}

.max-height-15em {
	max-height: 15em;
}

.no-item-prefix {
	list-style-type: none;
	padding-left: 0.25em;
}

.list-caption {
	font-weight: bold;
	margin-bottom: 0.2em;
	margin-top: 0.3em;
}

.list-caption-first {
	margin-top: 0;
}

.dlg-description {
	font-size: smaller;
	line-height: 1.25em;
	max-width: 100%;
	margin-bottom: .75em;
}

.light-gray-background {
	background-color: #e8e8e8;
}

.font-fixed-width {
	font-family: monospace;
}

input[type="radio"] {
	vertical-align: middle;
	padding: 0;
	margin: 0;
	margin-left: .5em;
	margin-right: .25em;
}

.list-item-radio-padding {
	padding-top: 0.2em;
	padding-bottom: 0.2em;
}

.tab-switcher {
	flex: 0 0 auto;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: lightgray;
	padding-left: 3rem;
	z-index: 16;
	background-color: #FBFBFB;
}

.tab {
	border: none;
	border-bottom-style: solid;
	border-bottom-width: 2px;
	border-bottom-color: transparent;
	border-radius: 0.1rem;
	margin-right: 2.25rem;
	font-size: .95rem;
	background: transparent;
	color: #707070;
	padding: .25rem;
	position: relative;
	bottom: -1px;
}

.tab[checked] {
	border-bottom-color: rgb(5, 111, 224);
	color: rgb(5, 111, 224);
}

.tab:focus {
	outline: none;
	background-color: #ECECEC;
}

.tab:hover {
	background-color: #ECECEC;
}

.tab-embedded {
	border-bottom: solid;
	border-bottom-width: 1px;
	border-bottom-color: lightgray;
	margin-right: 0;
}

.tab-panel {
	flex: 1 1 auto;
	padding: 0;
	padding-left: 3.5rem;
	padding-top: 1.5rem;
	overflow: auto;
}

.tab-panel:focus {
	outline: none;
}

.tab-panel-help {
	position: relative;
	margin-bottom: 1rem;
	border-style: solid;
	border-width: 1px;
	border-radius: 3px;
	margin-right: 3rem;
	border-color: lightgray;
	background-color: white;
}

.tab-panel-help[collapsed] {
	background-color: inherit;
}

.tab-panel-help-text {
	padding: .5rem;
	padding-right: .75rem;
	font-size: .89rem;
	overflow: hidden;
	transition: max-height .25s;
	max-height: 10rem;
	line-height: 1.15rem;
	letter-spacing: .02rem;
}

.tab-panel-help-text-1rem[collapsed] {
	max-height: 1rem;
}

.tab-panel-help-text-2rem[collapsed] {
	max-height: 2rem;
}

.tab-panel-help-text > p {
	margin: 0;
	max-width: none;
	margin-bottom: .2rem;
}

.tab-panel-help-minmax-column {
	vertical-align: top;
	padding-right: .5rem;
	padding-top: .25rem;
}

.tab-panel-help-minmax {
	border: none;
	background-color: transparent;
	border-top-color: gray;
	border-top-width: 2px;
	border-top-style: solid;
	border-left-color: gray;
	border-left-width: 2px;
	border-left-style: solid;
	height: 0.5rem;
	width: 0.5rem;
	padding: 0;
	outline: none;
	transform: rotate(45deg);
	transition: background-color .25s, box-shadow .25s, transform .25s;
	min-width: inherit;
}

.tab-panel-help-minmax[collapsed] {
	transform: rotate(225deg);
}

.tab-panel-help-minmax:hover, .tab-panel-help-minmax:focus {
	box-shadow: 0px 0px 5px 3px lightgray;
	background-color: lightgray;
}

.product-type-header {
	color: #707070;
	font-size: .75rem;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: rgba(211, 211, 211, 0.38);
	padding-bottom: 3px;
}

.product-panel {
	background-color: white;
	margin-top: 1rem;
	margin-right: 3rem;
	padding: .5rem;
	padding-bottom: 0.75rem;
	box-shadow: 0 0 4px 0px lightgrey;
	border-radius: 1px;
	margin-bottom: 2rem;
}

.background-green-vertical-bar-left {
	background: linear-gradient(90deg, #619a44 0.5rem, #ffffff 0.5rem);
}

.background-orange-vertical-bar-left {
	background: linear-gradient(90deg, #ff9966 0.5rem, #ffffff 0.5rem);
}

.background-red-vertical-bar-left {
	background: linear-gradient(90deg, #ff3f00 0.5rem, #ffffff 0.5rem);
}

.product-panel-pulse {
	animation-name: product-panel-pulse;
	animation-duration: 2s;
	animation-iteration-count: 3;
}

@keyframes product-panel-pulse {
	0% {
		box-shadow: 0 0 4px 0px lightgrey;
	}

	50% {
		box-shadow: 0 0 13px 9px lightgrey;
	}

	100% {
		box-shadow: 0 0 4px 0px lightgrey;
	}
}

.product-panel > table {
	width: 100%;
}

.product-description-column {
	vertical-align: top;
	padding-top: .5rem;
	padding-right: .25rem;
	max-width: 25rem;
}

.product-name {
	display: inline-block;
	color: #717171;
	font-weight: bold;
}

.product-action-button-column {
	width: 10rem;
	vertical-align: top;
	padding-top: .25em;
}

.product-action-button {
	width: 100%;
	margin-bottom: .5rem;
}

.product-icon-column {
	vertical-align: top;
	width: 48px;
	padding: 0;
	padding-right: .5rem;
	text-align: center;
}

.product-icon {
	width: 42px;
	height: 42px;
}

.spacer-point75rem {
	padding-top: 0.75rem;
}

.product-link {
	font-size: .8rem;
}

.link-separator {
	border-left-style: solid;
	border-left-width: 2px;
	border-left-color: rgba(211, 211, 211, 0.7);
	margin-left: .5rem;
	padding-right: .2rem;
}

.product-version-select {
	margin-top: 0.5rem;
	border-radius: 4px;
	font-size: .75rem;
	color: #808080;
	padding: .2rem;
}

.product-location-label {
	display: inline-block;
	font-size: .75rem;
	color: gray;
	margin-top: .25rem;
	margin-bottom: .2rem;
	margin-right: .25rem;
}

.product-label-container > .link-action {
	margin-bottom: 0;
}

.product-description {
	font-size: .8em;
	color: #808080;
	max-width: none;
}

div[choicessection], div[progresssection] {
	font-weight: normal;
}

.caution-box {
	border-style: solid;
	border-width: 1px;
	border-color: #e2e25a;
	background-color: #ffffd6;
	padding: .6rem;
	margin-right: 3rem;
	margin-top: 1rem;
	font-size: .8rem;
	line-height: 1.1rem;
	border-radius: 3px;
}

.installed-text {
	color: #757575;
	letter-spacing: .01rem;
	font-size: .75rem;
	margin-top: .5rem;
}

.installed-text:last-child {
	margin-bottom: 0.75rem;
}

.link-action {
	display: inline-block;
	margin: 0;
	margin-bottom: 0.5rem;
	font-size: .75rem;
}

.update-text {
	font-weight: bold;
}

.update-version {
	margin: 0;
}

.menu {
	display: none;
	position: absolute;
	list-style: none;
	padding: 0;
	/*text-align: center;*/
	box-shadow: 1px 2px 11px 2px lightgrey;
	color: #707070;
	background-color: #FBFBFB;
	cursor: default;
	border-radius: 3px;
	font-size: .85rem;
	margin: 0;
}

.menu-item {
	display: block;
	min-width: 8rem;
	position: relative;
	white-space: nowrap;
	padding: 1rem;
}

.menu-item[disabled] {
	color: rgba(112, 112, 112, 0.5);
}

.menu-item:hover:not([disabled]) {
	background-color: #eaeaea;
}

.menu-item[selected]:not([disabled]) {
	background-color: #eaeaea;
}

/*
	The following classes are defined in start.html because they need to
	be available before this style sheet is loaded.

.full-viewport-container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
}

.full-viewport-content {
	display: inline-block;
	text-align: center;
}

.hidden {
	display: none;
}

*/

.update-icon {
	width: 3rem;
	height: 3rem;
	float: none;
	margin: 0;
}

.ten-rem-button {
	width: 10rem;
}

.white-background {
	background-color: white;
}

.update-background {
}

.progress-button-ok {
	width: 5rem;
}

.info-button {
	border: none;
	background-color: transparent;
	margin-left: .25rem;
	padding: 0;
	vertical-align: middle;
	width: 1.5rem;
	height: 1.5rem;
	transition: background-color 0.5s;
	margin-bottom: 0.10rem;
	border-radius: 3px;
	min-width: inherit;
	cursor: help;
}

.info-button:hover {
		background-color: rgb(239, 239, 239);
}

.info-button > svg {
	vertical-align: middle;
}

.info-box {
	display: none;
	position: absolute;
	width: 18rem;
	max-height: 16rem;
	top: 17rem;
	left: 381px;
	z-index: 1970;
	border-style: solid;
	border-width: 1px;
	background-color: white;
	border-radius: .3rem;
	padding-top: 0;
	box-shadow: 0 0 8px 0px lightgrey;
	border-color: transparent;
	transition: opacity .15s, visibility 0.25s;
	opacity: 0;
}

.info-box-open {
	opacity: 1;
}

.info-box-arrow {
	position: absolute;
	border-style: solid;
	border-width: 1px;
	width: .75rem;
	height: .75rem;
	transform: rotate(45deg);
	border-right-style: none;
	border-top-style: none;
	border-color: transparent;
}

.info-box-arrow-left {
	left: calc((0.35rem + 1px) * -1);
	border-right-style: none;
	border-top-style: none;
	background-color: white;
	box-shadow: -2px 2px 4px 0px lightgrey;
}

.info-box-arrow-right {
	right: calc((0.35rem + 1px) * -1);
	border-right-style: none;
	border-top-style: none;
	background-color: white;
	box-shadow: 2px -2px 4px 0px lightgrey;
}

.info-box-arrow-top {
	top: calc((0.35rem + 1px) * -1);
	border-left-style: none;
	border-bottom-style: none;
	background-color: #F7F7F7;
	box-shadow: -2px -2px 4px 0px lightgrey;
}

.info-box-arrow-bottom {
	bottom: calc((0.35rem + 1px) * -1);
	border-left-style: none;
	border-bottom-style: none;
	background-color: white;
	box-shadow: 2px 2px 4px 0px lightgrey;
}

.info-box-title {
	background-color: #F7F7F7;
	margin: 0;
	padding: .65rem;
	border-radius: .3rem;
	color: #494a47;
}

.info-box-body {
	border-top-style: solid;
	border-top-width: 1px;
	padding: .75rem;
	padding-top: .75rem;
	font-size: 0.85rem;
	border-color: rgba(211, 211, 211, 0.38);
	line-height: 1.35rem;
	overflow: auto;
	position: relative;
	max-height: 11rem;
	color: #808080;
	user-select: text;
}

.popup-sizeable {
	visibility: hidden;
}

.popup-visible {
	display: block;
}

.checkbox-row {
	padding-top: .35rem;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: lightgray;
	padding-bottom: .6rem;
	color: gray;
	font-size: .9rem;
}

.checkbox-row input[type='checkbox'] {
	margin-right: 0.25rem;
}

.checkbox-row label {
	display: inline-block;
}

.build-type-select {
	border-radius: 4px;
	font-size: .75rem;
	color: #808080;
	padding: .2rem;
	margin-top: .5rem;
}

.reason {
	font-style: italic;
}

dialog#rebootPending .dlg--body {
	font-size: .9em;
	color: gray;
	line-height: 1.25rem;
}

dialog#rebootPending p {
	max-width: 25em;
}

dialog#rebootPending label {
}

dialog#rebootPending ul {
	list-style: none;
	max-height: 5rem;
	overflow-y: auto;
	padding: .25rem;
	margin-top: .25rem;
}

dialog#rebootPending ul li {
}

.option-template {
	display: none;
}

.cb-label-right {
	display: inline-block;
	vertical-align: text-top;
	margin-left: 0.25rem;
	font-size: .9rem;
}

.install-options {
}

.install-options > div[type="checkbox"] {
	margin-top: 0.5rem;
}

.margin-bottom-half-rem {
	margin-bottom: 0.5rem;
}

.red-box-shadow {
	box-shadow: 0 0 7px 1px red;
}

.reboot-text {
	text-align: center;
	padding: .25rem;
	font-weight: bold;
}

.reboot-text-block {
	text-align: center;
	padding: .25rem;
	font-weight: normal;
	font-size: 0.8rem;
	color: #808080;
	margin-bottom: .75rem;
}

.license-list {
	overflow-y: auto;
	max-height: 16rem;
	padding-right: 1rem;
	border-style: solid;
	border-width: 1px;
	border-color: lightgray;
	border-radius: .25rem;
	padding: 1rem;
}

.license-list > li {
	list-style: none;
}

.license-entry {
	white-space: pre;
	font-family: monospace;
	background-color: lightgray;
	padding: .35rem;
	border-radius: .25rem;
	font-size: smaller;
	margin-top: .5rem;
	min-width: 40rem;
}

.about-template {
	display: none;
}

.license-template {
	display: none;
}

.license-product-name {
	border-bottom-style: solid;
	border-bottom-color: gray;
	border-bottom-width: 1px;
}

.license-label {
	font-size: .90rem;
}

.about-title {
	font-size: 120%;
	margin-bottom: 0.2rem;
}

.about-copyright {
	font-size: .75rem;
	margin-top: 0;
}

.no-max-width {
	max-width: inherit;
}

.dialog-description {
	font-size: .9rem;
	max-width: 30rem;
	line-height: 1.1rem;
}

.smaller-text {
	font-size: 0.75rem;
	margin-top: .3rem;
	margin-left: .2rem;
}

.user-select-text {
	user-select: text;
}

.use-ellipsis {
	max-width: 25rem;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.button-like-text {
	border-style: solid;
	border-width: 1px;
	line-height: 1.5rem;
	padding: .1rem;
	border-color: lightgray;
	border-radius: .2rem;
	transition: border-color .3s, background-color .3s;
}

.button-like-text:hover, .button-like-text:focus {
	background-color: #C9DEF5;
	border-color: #3399FF;
}

.close-btn {
	font-size: 1rem;
	border-style: solid;
	border-color: transparent;
	border-width: 1px;
	background: transparent;
	transition: border-color, background .75s;
}

.close-btn:hover, .close-btn:focus {
	background-color: #d3d3d375;
}

.close-btn:focus {
	outline: none;
	box-shadow: 0px 1px 5px 0px rgba(18, 124, 255, 0.75);
}

.toaster {
	display: inline-block;
	background-color: rgba(44,44,44,1);
	color: #fff;
	min-width: 18rem;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: .5em;
	padding-bottom: .3em;
	position: fixed;
	left: 2rem;
	text-align: center;
	opacity: 0;
	bottom: 0;
	transition: opacity 0.5s, bottom 0.5s, visibility 0.25s;
	visibility: hidden;
	margin-right: 2rem;
}

.toaster p {
	color:#FBFBFB; 
	margin-right: .5rem;
	max-width: initial;
}

.toaster.show {
	visibility: visible;
	opacity: 1;
	bottom: 2rem;
}

#toaster-close.close-btn {
	color: white;
	position: absolute;
	min-width: 0;
	top: .2rem;
	right: .2rem;
	padding: .2rem;
}

.note-container {
	border-left-color: #f3bc2a;
	border-left-width: 0.45rem;
	border-left-style: solid;
	padding-left: .5rem;
	padding-top: .3rem;
	padding-bottom: .2rem;
}

.note {
	font-weight: bold;
}

.agreement-template {
	display: none;
}

.agreement-text {
	background-color: #f0f0f0;
	border-radius: .25rem;
	color: black;
	max-height: 20rem;
	overflow: auto;
	padding: .75rem;
	white-space: pre-wrap;
}

.agreement-product-name {
	margin: 0;
	margin-top: .25rem;
	padding: 0;
	color: #3357A5;
	font-size: 1.2rem;
}
