html, body {
	background: var(--bg-primary) !important;
	font-family: sans-serif !important;
}

h4 {
	color: unset !important;
}

h6 {
	margin: unset !important;
	border-top: unset !important;
}

label:not(.ToggleSelector-label) {
	display: inline-block !important;
	max-width: 100% !important;
	margin-bottom: 5px !important;
}

.payment-footer.bottom-center {
	position: fixed;
	bottom: 0px;
	left: 0px;
	right: 0px;
}

.payment-footer > div {
	display: block;
	text-align: center;
	opacity: 1;
	cursor: pointer;
	width: 200px;
	margin: auto;
	margin-top: 25px;
	margin-bottom: 15px;
}

.payment-footer label {
	font: normal normal normal 12px/20px Arial;
	color: var(--font-primary);
	opacity: 1;
	cursor: pointer;
}

.payment-footer .safe-environment label {
	font: normal normal normal 10px/20px Arial;
}

.payment-footer .safe-environment img {
	vertical-align: text-top;
}

.payment-footer > * {
	cursor: pointer;
}

.container-payment-error {
	border: 1px solid #666666;
}

.payment-error-content {
	height: auto;
	padding: 15px;
}

.payment-error-content h2 {
	font-size: 20px;
	text-align: center;
	font-weight: bold;
}

.payment-error-content h3 {
	font-size: 14px;
	text-align: center;
	font-weight: normal;
}

@media screen and (min-width: 1200px) {
	.container.container-payment-error {
		width: 600px;
	}
}

@media screen and (min-width: 768px) {
	.container.container-payment-error {
		width: 600px;
	}
}

@media screen and (max-width: 969px) {

	.payment-footer {

	}
}

.container-loading {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -50px;
	margin-left: -50px;
	width: 100px;
	height: 100px;
}

.lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}
.lds-ellipsis div {
	position: absolute;
	top: 33px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: var(--brand-primary);
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
	left: 8px;
	animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
	left: 8px;
	animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
	left: 32px;
	animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
	left: 56px;
	animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes lds-ellipsis3 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0);
	}
}
@keyframes lds-ellipsis2 {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(24px, 0);
	}
}
