body.auth-shown
{
	overflow: hidden;
}
.auth-section {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #3939396b !important;
	height: 100vh;
	z-index: 1000000;
	overflow: auto;
	transition: background-color 0.2s, opacity 0.2s;
}
body:not(.auth-shown) .auth-section
{
	opacity: 0;
	pointer-events: none;
}
.auth-section > .container {
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	/*overflow: hidden;*/
}
.section.auth-section .logo {
	background-repeat: no-repeat;
	background-position: center;
	height: 100px;
	display: block;
	margin-bottom: 30px;
	width: unset;
	background-size: auto;
}
[data-auth-trigger]
{
	user-select: none;
	cursor: pointer;
}
.auth-form {
	background-color: #fff;
	padding: 32px;
	border: 1px solid var(--app-gray-light);
	border-top: 0;
	box-shadow: 0 4px 4px -4px;
	width: 100%;
	max-width: 500px;
	display: flex;
	cursor: default;
	flex-direction: column;
	height: fit-content;
	border-radius: 12px;
	position: relative;
}
.auth-closer {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	color: var(--app-muted);
}
.auth-closer:hover {
	color: var(--app-main);
}

.footer-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.auth-form.registration-mode .hide-on-registration {
	display: none;
}
.auth-form:not(.registration-mode) .show-on-registration {
	display: none;
}

.auth-form:not(.success) .thank-you-container {
	display: none;
}

.auth-form.success > .auth-body {
	display: none;
}
.thank-you-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 10px;
}

.thank-you-header {
	color: var(--app-main);
	font-size: 18px;
}

.thank-you-icon {
	color: green;
}

.thank-you-message-text {
	text-align: center;
}

span.password-notice {
	color: var(--app-brown-medium);
	font-size: 10px;
	display: inline-block;
}
.auth-form:not(.registration-mode) span.password-notice {
	display: none;
}



.advertisers {
	gap: 25px;
	display: grid;
	margin-top: 48px;
	justify-content: center;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media(max-width: 1199px)
{
	.advertisers
	{
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media(max-width: 991px)
{
	.advertisers
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media(max-width: 767px)
{
	.advertisers
	{
		grid-template-columns: 1fr;
	}
}
.advertisers .advertiser {
	display: flex;
	padding: 24px;
	gap: 10px;
	background-color: #fff;
	transition: 0.3s;
	border-radius: 12px;
	border: 1px solid var(--app-gray);
	color: var(--app-muted);
	overflow: hidden;
	position: relative;
	user-select: none;
	align-items: center;
	flex-direction: column;
}

.advertisers .advertiser .advertiser-logo {
	width: 50px;
	height: 50px;
	flex-grow: 0;
	flex-shrink: 0;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border: 2px solid var(--app-main);
}

.advertisers .advertiser .advertiser-name-category {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	overflow: hidden;
	align-items: center;
	gap: 6px;
}

.advertisers .advertiser .advertiser-name-category .advertiser-name {
	font-size: 20px;
	line-height: 28px;
	font-weight: 500;
	color: var(--app-main);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
	text-align: -webkit-center;
}

.advertisers .advertiser .advertiser-name-category .advertiser-categories {
	display: flex;
	gap: 10px;
	row-gap: 5px;
	overflow: hidden;
	flex-wrap: wrap;
	justify-content: center;
}

.advertisers .advertiser .advertiser-name-category .advertiser-categories .advertiser-category {
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
	text-decoration: none !important;
	padding: 2px 5px;
	background-color: #28285512;
	color: var(--app-main);
	width: fit-content;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}