
body {
	font-family: Open Sans, Arial;
	color: rgb(81,87,92);
}
.modal-backdrop {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #D8D8D8;
	position: fixed;
	/*Could put these back in to make the ui get covered up
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;*/
	width: 100%;
	height: 100%;
	z-index: 2010;
}

.modal {
	position: relative;
	background: #fff;
	box-shadow: 0 5px 40px rgba(38, 41, 43, 0.1);
	padding: 20px;
	max-width: 550px;
	flex-grow: 1;
}
.header {
	display: flex;
	justify-content: space-between;
}
h1 {
	margin: 0;
	padding: 0;			
	color: #26292B;
	font-family: Open Sans, Arial;
	font-size: 24px;
	font-weight: 300;
	letter-spacing: 0;
	line-height: 33px;
}		
.cross-button[_ngcontent-pyh-c8] {
	cursor: pointer;
	padding-top: 5px;
}
.modal-drawer {
	text-align: right;
	border-top: 1px solid #B3B8BC;
	padding: 20px;
	/*margin: -20px;*/
}

.right-buttons {
	margin-right: 0px;
	margin-left: auto;
}

.button {
	transition: none !important;
	border: 1px solid #c9cdcf;
	box-shadow: none;
	margin: auto 0;
	/*background-color: #E4E6E7;
	color: #51575C;
	min-width: 6.42857143rem;*/
	line-height: 1;
	padding: 1px 20px 0;
	height: 2.5rem;
	font-family: Open Sans, Arial;
	font-weight: 600;
	font-size: 14px;
	color: #fff;
	background-color: #005FAE;
	border-color: #00437b;

	min-width: 100px;
}

.cancel {
	color: #222;
	background-color: #eee;
}

#progress-container {
	width: 400px;
}

.progress-spin {
	display: block;
	margin: auto;
}

.checkbox.with-label {
	float: left;
	display: inline-block;
	cursor: pointer;
}
.checkbox-label {
	font-weight: 400;
	cursor: pointer;
	position: relative;			
	padding-left:8px;
	font-size: 14px;
}
.checkbox-input {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	border: 0
}
.checkbox-graphic, .checkbox-graphic-checked, .checkbox-graphic-indeterminate, .checkbox-graphic-indeterminate-dark{
	width: 20px;
	height: 20px;
	border: 1px solid #B3B8BC;
	background: #fff;
	position: relative;
	overflow: hidden;
	display: inline-block;
}
.content {
	margin-top: 20px;
	margin-bottom: 20px;
	color: #51575C;
	font-family: Open Sans, Arial;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 21px;
}
.checkbox-graphic {
	width: 20px;
	height: 20px;
	border: 1px solid $gray-light;
	background: $white;
	position: relative;
	overflow: hidden;
	display: inline-block;
}

.checkbox-graphic::before {
	content: '';
	display: block;
	background-image: url("../images/clientless/check.svg");
	width: 13px;
	height: 10px;
	visibility: hidden;
}

.checkbox-graphic .checked + & {
	background: #005FAE;
	border-color: darken(#005FAE, 20%);
	visibility: visible;
}

.checkbox-graphic-checked {
	width: 20px;
	height: 20px;
	border: 1px solid $gray-light;
	background: $white;
	position: relative;
	overflow: hidden;
	display: inline-block;
	background: #005FAE;
	border-color: darken(#005FAE, 20%);
	bottom: 2px;
}
.checkbox-graphic-checked::before {
	content: '';
	display: block;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../images/clientless/check.svg");
	width: 20px;
	height: 20px;
	visibility: visible;
}

@media (prefers-color-scheme: dark) {

	.modal-backdrop {
		background-color: #333333;
	}
}

@media all and (max-width: 768px) {
	.button {
		min-width: 100px;
	}

	#progress-container {
		width: 200px;
	}
}