#google-consent-mode,
#google-consent-update {
	position: fixed;
	bottom: 15px;
	right: 15px;
	z-index: 1000000;
	color: var(--google-consent-primary);
}

#google-consent-mode.bottom_left,
#google-consent-update.bottom_left {
	right: auto;
	left: 15px;
}

#google-consent-mode.hard-mode {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, .35);
}

.google-consent-window {
	position: relative;
	width: 420px;
	max-width: calc(100vw - 30px);
	padding: 18px;
	background: var(--google-consent-background);
	border: 1px solid #d9dde2;
	border-radius: 6px;
	box-shadow: 0 5px 22px rgba(22, 29, 37, .18);
}

#google-consent-title {
	display: block;
	margin-bottom: 10px;
	font-size: 18px;
}

.google-consent-main p {
	margin: 0 0 9px;
	line-height: 1.45;
}

.google-consent-options {
	margin-top: 14px;
}

.google-consent-choice {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 10px;
	font-weight: 400;
	cursor: pointer;
}

.google-consent-choice input {
	position: absolute;
	opacity: 0;
}

.google-consent-switch {
	position: relative;
	flex: 0 0 40px;
	height: 21px;
	background: #c6cbd2;
	border-radius: 12px;
	transition: background-color .2s;
}

.google-consent-switch:before {
	position: absolute;
	top: 2px;
	left: 2px;
	width: 17px;
	height: 17px;
	content: "";
	background: #fff;
	border-radius: 50%;
	transition: transform .2s;
}

.google-consent-choice input:checked + .google-consent-switch {
	background: var(--google-consent-primary);
}

.google-consent-choice input:checked + .google-consent-switch:before {
	transform: translateX(19px);
}

.google-consent-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 9px;
	margin-top: 17px;
}

.google-consent-actions button,
.google-consent-open {
	padding: 8px 13px;
	border: 1px solid var(--google-consent-primary);
	border-radius: 5px;
	font-weight: 600;
	background: transparent;
	color: var(--google-consent-primary);
}

.google-consent-accept,
.google-consent-open {
	background: var(--google-consent-primary) !important;
	color: var(--google-consent-primary-text) !important;
}

.google-consent-reject {
	margin-right: auto;
	border: 0 !important;
	font-size: 12px;
	opacity: .85;
}

.google-consent-close {
	position: absolute;
	top: 8px;
	right: 12px;
	border: 0;
	background: transparent;
	font-size: 25px;
	line-height: 1;
}

.google-consent-details {
	margin: 12px 0;
	padding-bottom: 8px;
	border-bottom: 1px solid #d9dde2;
	font-size: 12px;
}

.google-consent-details p {
	margin: 4px 0;
}

@media (max-width: 480px) {
	.google-consent-actions {
		flex-wrap: wrap;
	}

	.google-consent-accept {
		order: -1;
		width: 100%;
	}
}
