/*
	filter: brightness(0.2);
	-o-filter: brightness(0.2);
	-moz-filter: brightness(0.2);
	-webkit-filter: brightness(0.2);

	transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;

	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/temp/img/delete_red.svg");

	transform: scale(1.2);

	-ms-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;

	transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;

	transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);

	transform: translateY(-50%);
	transform: translate(-50%, -50%);

*/

.lang-menu {
	display: none !important;
}

/*** modal ***/
.mask {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	backdrop-filter: blur(3px);
	background: rgba(0, 0, 0, 0.4);
}


.loader {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 500px;
	height: 500px;
	z-index: 101;
	transform: translate(-50%, -50%);

	background-size: 150px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../img/loader.svg");
}

.main_popup {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 102;
	width: 650px;
	padding: 90px 50px 40px;
	border-radius: 15px;
	box-shadow: 0 3px 5px #3a3a3a;
	transform: translate(-50%, -50%);

	background-color: #efefef;
	background-size: auto 30px;
	background-repeat: no-repeat;
	background-position: top 35px center;
	background-image: url("/bidding/temp/img/logo_dark.svg");
}

.main_popup .close {
	width: 37px;
	height: 37px;
	opacity: 0.7;
	cursor: pointer;
	position: absolute;
	top: 15px;
	right: 15px;

	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../img/close.svg");

	transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

.main_popup .close:hover {
	opacity: 1;
	animation: pulse 0.4s linear infinite;
}

.main_popup h2, .modal .h2 {
	padding: 0 0 30px;
	font-weight: 400;
	font-size: 27px;
	line-height: 37px;
	font-family: Rubik, sans-serif;
}

.main_popup .h2 {
	padding: 13px 11px 11px;
}

.main_popup .news {
	display: flex;
	flex-direction: column;

	color: #000;
	font-family: "CeraPro-Regular", sans-serif;
}

.main_popup .news .one_new {
	padding: 15px 0 22px;

	gap: 9px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.main_popup .news .one_new + .one_new {
	border-top: 1px dashed #e4e4e4;
}

.main_popup .news .one_new .on_name {
	font-size: 21px;
}

.main_popup .news .one_new .on_link {
	width: 190px;
	padding: 11px 0;
	border-radius: 11px;
	background: #1d3e6b;
	transform: scale(1);

	color: #fff;
	font-size: 17px;
	text-align: center;
	font-family: "CeraPro-Light", sans-serif;

	-ms-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;

	transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

.main_popup .news .one_new .on_link:hover {
	transform: scale(1.03);
	background: #152f53;
}

@keyframes pulse {
	0% {
		transform: scale(1.0);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1.0);
	}
}

.territories-filter.hidden {
	display: none;
}

@media screen and (max-width: 900px) {
	.main_popup {
		width: 100%;
		padding: 50px 20px 20px;

		background-size: auto 24px;
		background-position: top 25px center;
	}

	.main_popup .news .one_new .on_name {
		font-size: 23px;
	}
}