#atm-cookie {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	display: none;
	background: #ffffff;
	border-top: 1px solid #e1e1e1;
	font-family: Inter, Arial, sans-serif;
}

html.atm-cookie-show #atm-cookie {
	display: block;
}

.atm-cookie-inner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.atm-cookie-text {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #666666;
	flex: 1 1 0%;
	min-width: 220px;
}

.atm-cookie-link {
	margin-left: 4px;
	color: #1e58b1;
	text-decoration: underline;
}

.atm-cookie-link:hover,
.atm-cookie-link:focus {
	color: #14407d;
}

.atm-cookie-btn {
	background: #1e58b1;
	color: #ffffff;
	border: none;
	border-radius: 4px;
	padding: 10px 28px;
	font: 600 14px/1.2 Inter, Arial, sans-serif;
	cursor: pointer;
	white-space: nowrap;
	flex-shrink: 0;
}

.atm-cookie-btn:hover,
.atm-cookie-btn:focus {
	background: #14407d;
}

@media (max-width: 600px) {
	.atm-cookie-inner {
		flex-direction: column;
		text-align: center;
	}

	.atm-cookie-btn {
		width: 100%;
	}
}