.noob-card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	width: 600px;
	max-width: calc(100% - 10px);
	min-height: 0;
	margin: 10px 5px;
	padding: 12px;
	border: 1px solid #c9c9c9;
	border-radius: 5px;
	background-color: #98d7fc;
	box-sizing: border-box;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
}
.noob-card__icon {
	flex: 0 0 100px;
	width: 100px;
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-align: center;
}
.noob-card__icon img {
	display: block;
	max-width: 100px;
	max-height: 100px;
}
.noob-card__body {
	flex: 1 1 auto;
	min-width: 0;
}
.noob-card__title {
	margin: 0;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	line-height: 24px;
	cursor: default;
}
.noob-card__subtitle {
	margin: 0;
	color: #fff;
	font-size: 12px;
	line-height: 18px;
	cursor: default;
}
.noob-form-row {
	width: 360px;
	max-width: 100%;
	margin-top: 8px;
}
.noob-input,
.noob-select {
	display: block;
	width: 100%;
	height: 38px;
	padding: 0 11px;
	border: 1px solid #7fb4d3;
	border-radius: 5px;
	background-color: #fff;
	box-sizing: border-box;
	color: #333;
	font-size: 14px;
	line-height: 36px;
	outline: none;
	transition: border-color 120ms ease, box-shadow 120ms ease;
}
.noob-input:focus,
.noob-select:focus {
	border-color: #325c75;
	box-shadow: 0 0 0 2px rgba(50, 92, 117, 0.2);
}
.noob-input.is-invalid,
.noob-select.is-invalid {
	border-color: #9c3838;
	box-shadow: 0 0 0 2px rgba(156, 56, 56, 0.18);
}
.noob-select-wrap {
	position: relative;
	display: block;
	width: 100%;
}
.noob-select-wrap:after {
	position: absolute;
	top: 50%;
	right: 12px;
	width: 0;
	height: 0;
	margin-top: -2px;
	border-top: 5px solid #325c75;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
	content: "";
	pointer-events: none;
}
.noob-select {
	padding-right: 34px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.noob-field-hint {
	margin-top: 5px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 11px;
	line-height: 15px;
}
.noob-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: auto;
	min-width: 135px;
	height: 38px;
	margin: 8px 6px 0 0;
	padding: 0 16px 3px 16px;
	border: 0;
	border-radius: 5px;
	box-sizing: border-box;
	color: #fff !important;
	cursor: pointer;
	font-size: 14px;
	font-weight: normal;
	line-height: 35px;
	text-decoration: none !important;
	transition: background-color 120ms ease, opacity 120ms ease;
}
.noob-button:hover,
.noob-button:focus {
	color: #fff !important;
	text-decoration: none !important;
}
.noob-button:disabled,
.noob-button.is-disabled {
	cursor: default;
	opacity: 0.55;
}
.noob-button--primary {
	background-color: #325c75;
}
.noob-button--primary:hover,
.noob-button--primary:focus {
	background-color: #316686;
}
.noob-button--success {
	background-color: #2f7d5a;
}
.noob-button--success:hover,
.noob-button--success:focus {
	background-color: #358d66;
}
.noob-button--danger {
	background-color: #8b2f2f;
}
.noob-button--danger:hover,
.noob-button--danger:focus {
	background-color: #a63a3a;
}
.noob-button--secondary {
	background-color: #535357;
}
.noob-button--secondary:hover,
.noob-button--secondary:focus {
	background-color: #626267;
}
.noob-feedback {
	display: none;
	width: 360px;
	max-width: 100%;
	margin: 8px 0 0 0;
	padding: 7px 10px;
	border-radius: 5px;
	box-sizing: border-box;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
}
.noob-feedback--success {
	display: block;
	background-color: #2f7d5a;
	color: #fff;
}
.noob-feedback--error {
	display: block;
	background-color: #9c3838;
	color: #fff;
}
.noob-control-icon {
	margin-right: 0;
}
.modal-open {
	overflow: hidden;
}
.noob-modal.modal {
	display: none;
	overflow: hidden;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100010;
	outline: 0;
}
.noob-modal.modal.in {
	overflow-x: hidden;
	overflow-y: auto;
}
.noob-modal .modal-dialog {
	position: relative;
	width: auto;
	margin: 20px auto;
}
.noob-modal .modal-content {
	position: relative;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
	color: #333;
	outline: 0;
}
.noob-modal .modal-header,
.noob-modal .modal-footer {
	padding: 12px 15px;
	border-color: #e5e5e5;
}
.noob-modal .modal-header {
	border-bottom: 1px solid #e5e5e5;
}
.noob-modal .modal-footer {
	border-top: 1px solid #e5e5e5;
	text-align: right;
}
.noob-modal .modal-body {
	position: relative;
	padding: 15px;
	color: #333;
}
.noob-modal .modal-title {
	margin: 0;
	color: #333;
	font-size: 20px;
	line-height: 24px;
}
.noob-modal .close {
	float: right;
	padding: 0;
	border: 0;
	background: transparent;
	color: #333;
	cursor: pointer;
	font-size: 28px;
	font-weight: bold;
	line-height: 22px;
	opacity: 0.65;
}
.noob-modal .close:hover {
	opacity: 1;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100000;
	background-color: #000;
}
.modal-backdrop.fade {
	opacity: 0;
}
.modal-backdrop.in {
	opacity: 0.65;
}
.noob-modal .modal-title .noob-control-icon {
	margin-right: 8px;
}
.noob-modal--confirm .modal-dialog {
	width: 430px;
	max-width: calc(100% - 30px);
	margin: 60px auto;
}
.noob-modal .noob-button {
	margin-top: 0;
	margin-right: 0;
	margin-left: 8px;
}
.noob-toast-container {
	position: fixed;
	right: 0;
	bottom: 24px;
	left: 0;
	z-index: 100060;
	display: flex;
	justify-content: center;
	pointer-events: none;
}
.noob-toast {
	min-width: 320px;
	max-width: 520px;
	padding: 10px 14px;
	border-radius: 5px;
	background-color: #2f7d5a;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
	box-sizing: border-box;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	line-height: 18px;
	text-align: center;
	opacity: 0;
	pointer-events: auto;
	transform: translateY(8px);
	transition: opacity 160ms ease, transform 160ms ease;
}
.noob-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.noob-toast--error {
	background-color: #9c3838;
}
.noob-toast--info {
	background-color: #325c75;
}
@media (max-width: 700px) {
	.noob-card {
		display: block;
		width: calc(100% - 10px);
	}
	.noob-card:after {
		display: block;
		clear: both;
		content: "";
	}
	.noob-card__icon {
		float: left;
		width: 100px;
		min-height: 100px;
		margin: 0 10px 10px 0;
	}
	.noob-form-row,
	.noob-feedback {
		width: 100%;
	}
	.noob-toast-container {
		right: 10px;
		bottom: 12px;
		left: 10px;
	}
	.noob-toast {
		min-width: 0;
		max-width: none;
		width: 100%;
	}
	.noob-modal .noob-button {
		margin-top: 6px;
	}
}
