/* Reset i globalne style */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: Verdana, Arial, "Times New Roman";
    font-size: 100%;
    background-color: #fff;
}

body.waiting * {
    cursor: progress !important;
}

/* Powiadomienia błędów */
#error_box {
    display: none;
    position: fixed;
    right: 3%;
    bottom: 1em;
    width: 30%;
    min-width: 330px;
    text-align: center;
    border: 1px solid #f7c7c9;
    background: #f9e5e6;
    border-radius: 5px;
    box-shadow: 0 5px 5px 3px rgba(0,0,0,0.3);
    z-index: 10000;
}

#error_message {
    color: #c77c7e;
    margin: 18px 0;
    font-weight: bold;
    text-shadow: 1px 1px 1px #fff;
    filter: dropshadow(color=#FFFFFF, offx=1, offy=1); /* starsze przeglądarki */
}


header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	margin: 0;
	padding: 0;
}
.lineblock {
	display: flex;
	flex-direction: row;
	background-color: rgba(45,45,45,1);
	width: 100%;
	margin: 0;
	padding: 0;
}
.logo {	
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40%;
	max-width: 350px;
	min-width: 180px;
	margin:0 0 0 2%;
}
#logo {	
	width: 100%;
}

																/******время и язык********/
.lang_time_find {
	display: flex;
	flex-direction: row;
	margin:0 0 0 auto;
}
.tlmenu {
  display: flex;
  flex-direction: column;
  margin: 0.8em;
  align-items: flex-end;
}
#hours {
  display: flex;
  flex-direction: row;
  white-space: pre;
  font-size: 0.8em;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
#line2_lang {
	display: flex;
	flex-direction: row;
	width: 100%;
	margin: 0.5em 0 0 0;
  	align-items: center;
	justify-content: flex-end;
}
.ms_site {
	display: flex;
	flex-direction: row;
	width: 2.1em;
	height: 1.4em;
	margin: 0 0.7em 0 0;

}
.ms_site > a {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 1.4em;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.ms_site_futer {
	display: flex;
	flex-direction: row;
	width: 2.8em;
	height: 1.8em;
	margin: 0.2em 0 0 1em;

}
.ms_site_futer > a {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 1.8em;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.by > a {
	background-image: url(../images/flags/by.png);;
}
.ru > a {
	background-image: url(../images/flags/ru.png);;
}
#sel_lang {
	width: 8em;
	height: 1.8em;
	color: #000;
	margin: 0 0 1em 0;
}
     /*------------------------menu--------------------*/
	.menu {										                 
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		flex-wrap: wrap-reverse;
		width: 100%; 		
		background-color: rgba(68,68,68,1);
		margin: 0;
		padding: 0 0.2em;
	}
	#menu_list {
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 2.2em;
		padding: 0 0.4em;
		color: #ffffff;
		transition: 0.5s;
	}
	#menu_off {
		display: none;
		width: 100%;
		justify-content: flex-end;
		align-items: center;
		text-align: center;
		font-size: 2.2em;
		padding: 0.2em 0.4em;
		color: #ffffff;
		transition: 0.5s;
	}
	#menu_list:hover, #menu_off:hover {
		color: #fdd034;
		cursor: pointer;
	}
	.logmenu {
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		flex-wrap: wrap;
	}
	.mainmenu{
		display: none;
		flex-direction: column;
		justify-content: center;
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.mn {
		width: 100%;
		background-color: rgba(90,90,90,1);
		margin: 1px;
	}
	.active {
		background-color: #fdd034;
	}
	.mainmenu a, .logmenu a {
		display: flex;
		white-space: pre;
		font-size: 1.0em;
		font-weight: 500;
		text-decoration: none;
		border-radius: 1px;
		padding: 0.6em 0.8em;
		margin: 1px;
		color: #ffffff;
		transition: 0.5s;
	}
	.mainmenu a:hover, .logmenu a:hover {
		color: #000;
		background-color: #fdd034;
	}
	.menu_a {
		display: flex;
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
	}
	.menu_a_n {
		border-radius: 0.8em;
		border: 1px solid rgba(255,255,255,0.2);
		padding:0 0.4em 0 0.4em;
		margin: 0 0 0 1em;
		color: rgba(255,255,255,0.7);
		background-color: rgba(255,255,255,0);
		font-size: 0.8em;
	}
	.menu_gold {
		border-color: #fdd034;
		color: red;
		background-color: #fdd034;
	}
	.my_ms {
		position: relative;
	}
	.new_mess {
		position: absolute;
		top: -1.1em;
		right: 0;
		color: orange;
		font-size: 1.2em;
		-webkit-animation: new_mess 1s linear infinite;
		animation: new_mess 1s linear infinite;
	}
	@-webkit-keyframes new_mess {
	    50% { color: rgb(225, 165, 0); }
		51% { color: rgba(225, 165, 0, 0); }
		100% { color: rgba(225, 165, 0, 0); }
	}
	@keyframes new_mess {
	    50% { color: rgb(225, 165, 0); }
		51% { color: rgba(225, 165, 0, 0); }
		100% { color: rgba(225, 165, 0, 0); }
	}
	.new_mod, .conf_lot_menu, .conf_bid_menu {
		position: absolute;
		top: -1.1em;
		left: 0;
		color: orange;
		font-size: 1.2em;
		-webkit-animation: new_mess 1s linear infinite;
		animation: new_mess 1s linear infinite;
	}
	
	.sub {
		flex-direction: column;
		width: 100%;
		display: none;
		background-color: rgba(68,68,68,1);
		border-radius: 1px;
		padding: 0 0.4em 0 0.4em;
	}
	.sub a {
		background-color: rgba(110,110,110,1);
		text-transform: none;
	}
	.m2:hover .menu1 {
	  display: flex;
	}
	.m3:hover .menu2 {
	  display: flex;
	}
	.m4:hover .menu3 {
	  display: flex;
	}
	.m5:hover .menu4 {
	  display: flex;
	}
	.m6:hover .menu5 {
	  display: flex;
	}
	.m7:hover .menu6 {
	  display: flex;
	}
@media screen and (min-width: 800px) {
	#menu_list, #menu_off {
		display: none;
	}
	.mainmenu {
		display: flex !important;
		flex-direction: row;
		flex-wrap: wrap;
		width: auto;
		max-width: 100%;
		padding: 0 6em 0 0;
	}
	.mn {
		width: auto;
		background-color: rgba(68,68,68,1);
		margin: 0;
	}
	.mainmenu a, .logmenu a {
		display: block;
		font-size: 0.9em;
		padding: 0.4em 0.8em;
	}
	.sub {
		width: auto;
		position: absolute;
		padding: 0;
		z-index: 1;
	}
	.sub a {
	  background-color: rgba(90,90,90,1);
	}
}
     /*------------------------сообщения и телефоны--------------------*/
#visible_btn  {
    position: fixed;
	bottom: 2em;
    right: 0.8em;
	width: 60px;
	height: 60px;
	z-index:1001;
	background-color: rgba(33,33,33,0);
	border-radius: 6px;
	transition: 0.5s;
}
#v_btn{
	width: 50px;
	height: 50px;
	color:rgba(0,0,0,0);
	margin: auto 0 0 auto;
	background-color: rgba(33,33,33,0);
	background-image: url(../images/mess.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 11px;
	border: none;
	opacity: 0.7;
	transition: 0.5s;
	cursor: pointer;
} 
#v_btn:hover {
	width: 60px;
	height: 60px;
	margin: auto;
	opacity: 1;
} 
#message_box, #phone_box {
    position: fixed;
	display: none;
    top:0;
	left: 0;
	bottom: 0;
    right: 0;
	background-color: rgba(33,33,33,0.7);
	z-index:1100;
	transition: 0.5s;
}	 
#send_form, #phone_form {
    position: fixed;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	width: 300px;
	background-color: rgba(255,255,255,0.7);
	border: 1px solid rgba(0,0,0,0.5);
	border-radius: 3px;
}	 
#name_sender, #email_sender, #message_txt {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 90%;
	margin: 1em auto;
}
#type_addr, #type_phone {
	display: flex;
	font-size: 1.5em;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 90%;
	margin: 1em auto 0 auto;
}
.phone_line {
	display: flex;
	font-size: 1.2em;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	margin: 0.6em 0;
}
.phone_name {
	display: flex;
	font-size: 0.8em;
	flex-direction: row;
	justify-content: flex-start;
}
.phone_num {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}
.phone_num > a {
	transition: 0.5s;
	text-decoration: none;
	color: black;
}
.phone_num > a:hover {
	text-decoration:underline;
}
#name_sender label, #email_sender label {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	width: 100%;
	margin: 0.1em auto;
}
#name_s, #email_s {
	width: 100%;
	font-size: 1em;
	line-height: 1.8em;
	border-radius: 4px;
	margin-top: 0.3em;
	padding-bottom: 0.2em;
	padding-left: 0.3em;
	border: 1px solid #333333;
}
#mess_txt {
	width: 100%;
	min-height: 9em;
	font-family: Verdana, Arial, "Times New Roman";
	font-size: 1em;
	padding: 0.2em 0.3em;
	overflow: auto;
	resize: vertical;
	outline: none;
	border: 1px solid #333333;
	border-radius: 3px;
}
#name_s:focus, #email_s:focus, #mess_txt:focus {
	 box-shadow: 0 0 6px rgba(0,0,0,0.4);
}
#send_btn, #cancel_btn {
	width: 90%;
	margin: 0 auto 1em auto;
}
.btn1 {
	width: 100%;
	margin: 0;
	padding: 0.5em 0.3em;
	border: none;
	background-color: #fdd034;
	color: #ffffff;
	font-size: 1.1em;
	transition: 0.5s;
	border-radius: 3px;

}
.btn1:hover {
	background-color: #fdd004;
	color: #333333;
	cursor: pointer;
}	 
/*------------------------------photo previev------------------*/	 
#photo_box {
    position: fixed;
	display: none;
	justify-content: center;
	align-items: center;
    top:0;
	left: 0;
	bottom: 0;
    right: 0;
	overflow: auto;
	background-color: rgba(33,33,33,0.7);
	z-index:2000;
	transition: 0.5s;
}
.close_zoom {
	position: absolute;
    top:0.5em;
	right: 1em;
	color:rgba(255,255,255,0.5);
	z-index:2001;
}
.close_zoom:hover {
	color:rgba(255,255,255,1);
}
#lot_photo_zoom {
/*	display: flex;*/
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	margin: 0;
	overflow: hidden;
	background-color: #333333;
}
#zoom_photo {
/*	display: flex;*/
	width: 100%;
	margin: 0;
}

     /*------------------------footer--------------------*/
footer {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	position: relative;
	background-color: #333333;
	width: 100%;
	margin: 0;
	padding: 0.5em 1.2em;
}
#f_top {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	color: #fff;
	margin: 0 0 0.4em 0 ;
	white-space: pre;
}
#line_foot {
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 100%;
	color: #333333;
	background-color:#fff;
	padding: 0.2em 0 0.2em 0 ;
	white-space: pre;
	font-size:0.4em;
}
#f_top a {
	color: #fdd034;
	outline: none;
	text-decoration:none;
}
#f_top a:hover {
	text-decoration:underline;
}
#f_top_1 {
	display: flex;
	flex-direction: row;
	color: #fdd034;
	font-size: 1em;
	margin: 0.5em 0 0 0;
}

#fd_top_2 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 1.8em;
	transition: 0.5s;
}
#f_top_2 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 1.3em;
	transition: 0.5s;
}
#f_top_2:hover {
    color: #fdd034;
    cursor: pointer;
}
#logo_icon {
	display: block;
	width: 38px;
	height: 38px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../favicon.png);
	margin: 0 0.5em 0 0;
}
#f_1 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	margin: 1em 0 0 0 ;
	text-align: center;
}
#f_left {
	display: flex;
	flex-direction: column;
	width: auto;
	align-items: center;
}
#f_left_2 {
	display: flex;
	flex-direction: column;
	color: #fff;
	font-size: 0.7em;
}
#f_left_3 {
	display: flex;
	margin: 0.5em 0 0 0;
	align-items: center;
}
#f_right {
	display: flex;
	flex-direction: column;
	width: auto;
	justify-content: center;
	white-space: pre;
}
.f_right_1 {
	display: flex;
	flex-wrap: wrap;
	color: #fff;
	font-size: 0.7em;
	justify-content: center;
}
.f_right_2 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	margin: 0.5em 0 1em 0;
	padding: 0 1em 0 1em;
	color: #fff;
	font-size: 0.7em;
	justify-content: center;
}
.f_right_2 > div {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
}
.ms_fut_menu > a {
	display: flex;
	flex-wrap: wrap;
	margin: 0.5em 0;
	padding: 0 1em 0 1em;
	border-right: 1px solid #ffffff;
	color: #fff;
	font-size: 1em;
	justify-content: flex-end;
	text-decoration:none;
}
.ms_fut_menu > a:hover {
	text-decoration:underline;
}
@media screen and (min-width: 500px) {
	#f_top_2 {
		justify-content: flex-start;
		font-size: 2.7em;
	}
	#fd_top_2 {
		justify-content: flex-start;
		font-size: 2.7em;
	}
	#f_top {
		justify-content: space-between;
	}	
	#f_1 {
		justify-content: space-between;
	}
	#f_right {
		justify-content: flex-start;
		text-align: right;
		margin: 0 0 0 auto ;
	}	
	.f_right_1, .f_right_2, .f_right_2 > div {
		justify-content: flex-end;
		text-align: right;
	}
	#f_left {
	align-items: flex-start;
	}
	#f_left_2 {
		justify-content: flex-start;
		text-align: left;
	}	
}
.social {display: inline-block;}
.social a {
	display: block;
	width: 38px;
	height: 38px;
	margin: 0 10px 10px 0;
	text-align: center;
	color: #fff;
	background: #333333;
/*	border: 1px solid #333333;*/
	border-radius: 6px;
/*	box-shadow: 0 2px 4px rgba(0,0,0,0.15), inset 0 0 50px rgba(0,0,0,0.1);*/
	outline: none;
}
.social a:hover {color: #fff;}
.social svg {
	margin-top: 8px;
	width: 22px;
	height: 22px;
}
.facebook a:hover {background: #3b5998;}
.instagram a:hover {background: #3f729b;}
.odnoklassniki a:hover {background: #f93;}
.twitter a:hover {background: #00acee;}
.whatsapp a:hover {background: #50b154;}
.telegram a:hover {background: #249bd7;}
.viber a:hover {background: #7b519d;}
.vk a:hover {background: #4a76a8;}
.youtube a:hover {background: #c4302b;}

.pay {display: inline-block;}
.pay a {
	display: flex;
	width: 60px;
	height: 30px;
	margin: 0 10px 10px 0;
	text-align: center;
	color: #fff;
	background: #333333;
	border-radius: 6px;
	outline: none;
}
.pay_card {
	display: flex;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.visa {
	background-image: url(../images/V.png);
}
.visa_v {
	background-image: url(../images/VV.png);
}
.mc {
	background-image: url(../images/MS.png);
}
.mc_s {
	background-image: url(../images/MSSC.png);
}
.belcart {
	background-image: url(../images/BC1.png);
}
.belcart_i {
	background-image: url(../images/BC.png);
}
.am_ex {
	background-image: url(../images/AEX.png);
}
.assist {
	background-image: url(../images/Assist.png);
}

/*------------------------mainpage----------------------------------------------------------------------------------*/

.mainpage1 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-image: url(../images/main.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	margin: 0;
	min-height: 25em;
	padding: 2.6em 8% 0.5em 8%;
}
#p1 {
	color: #ffffff;
	font-weight: 600;
	font-size: 2em;
}
#p2 {
	color: #ffffff;
	font-weight: 500;
	font-size: 1em;
}
#p2 > a {
	color: #ffffff;
	font-size: 1.2em;
	font-weight: 500;
	text-decoration: none;
	transition: 0.5s;
}
#p2 > a:hover {
	margin-left: 0.2em;
	text-decoration: underline;
}
.find_auto {
  white-space: pre;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  padding: 0.9em 1.5em;
  margin:1em auto 3em 0;
  color: #000;
  background-color: #fdd034;
  -webkit-transition: 0.5s; /* плавный переход  */
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  position: relative; 
  overflow-x: hidden; 
}
.find_auto:hover {
  padding: 0.9em 1.8em;
  background-color: #fdd004;
}
.plus_lot {
  white-space: pre;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  padding: 0.6em 1.5em;
  margin:0 0 0 auto;
  color: #000;
  background-color: #fdd034;
  -webkit-transition: 0.5s; /* плавный переход  */
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  position: relative; 
  overflow-x: hidden; 
}
.plus_b {
    display: none;
}
.plus_m {
    display: flex;
    font-size: 0.9em;
}
.find_auto .flare, .plus_lot .flare {
    position: absolute;
    top: 0;
    height: 100%;
    width: 45px;
    transform: skewX(-45deg);
    left: -350%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));
    animation: flareAnimation 3s infinite linear;
}

@keyframes flareAnimation {
    0% {
        left: -350%;
    }
    100% {
        left: 350%;
    }
}
.action {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	text-align: center;
	background-color: #fdd034;
	width: 100%;
	margin: 0;
	padding: 0.5em;
	color: #000;
	font-weight: 600;
	font-size: 1.3em;
	font-family: arial;
	white-space: pre-wrap;
}
.center_page {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	background-color: rgba(0,0,0,0.1);
	margin-top: 3em;
	padding: 0 0 1em 0;
}
.news_left {
	width: 100%;
}
@media screen and (min-width: 800px) {
	.news_left {
		width: 50%;
	}
    .plus_b {
        display: flex;
    }
    .plus_m {
        display: none;
    }
}
.regul {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 1em 3% 1em 3%;
	font-size: 0.9em;
/*	text-indent: 1em;
	text-align: justify;*/
	line-height: 1.5;
}
.regul > p {
  margin-top: 1em ;
 
}
.rubric {
	font-weight: 800;
	font-size: 1.4em;
	padding: 1.3em 0;
	text-align: center;
	text-indent: 0;
}
.paragraph {
	font-weight: 800;
	font-size: 1.2em;
	padding: 1.1em 0;
	text-align: left;
	text-indent: 0;
}
@media screen and (min-width: 800px) {
	.rubric, .paragraph {
		text-align: left;
		text-indent: 1em;
	}
}
.news_right {
	display: flex;
	flex-direction: column;
	width: 100%;
}
@media screen and (min-width: 800px) {
	.news_right {
		width: 50%;
	}
}
.news_right_line {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}
.two {
	flex-wrap: wrap-reverse;
}
.ms_banner {
	display: flex;
	flex-direction: row;
	width: 100%;
	max-height: 9em;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	opacity: 0.8;
	font-size: 1.2em;
	transition: 0.5s;
}
.w50 {
	width: 100%;
}
@media screen and (min-width: 600px) {
	.w50 {
		width: 50%;
	}
}
@media screen and (min-width: 800px) {
	.w50 {
		width: 100%;
	}
}
@media screen and (min-width: 900px) {
	.w50 {
		width: 50%;
	}
}
.ms_banner > a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0.3em 3%;
	text-decoration: none;
	color: #ffffff;
	line-height: 1.5;
}
.ms_banner > a > img {
	width: 100%;
	max-width: 100%;
}
.ms_banner:hover {
	opacity: 1;
}
#banner_find {
	background-image: url(../images/buy_banner.jpg);
}
#banner_add_lot {
	background-image: url(../images/sell_banner.jpg);
}
#banner_clo {
	background-image: url(../images/clo.jpg);
}
#banner_price {
	background-image: url(../images/finance.jpg);
}
#banner_reg {
	background-image: url(../images/reg_banner.jpg);
}
#banner_pay {
	background-image: url(../images/pay_banner.jpg);
}
#banner_privacy {
	background-image: url(../images/priv_banner.jpg);
}








.news-block {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    max-width: 1400px;
    margin: 30px auto;
    font-family: "Segoe UI", Arial, sans-serif;
}
.news-block h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #111;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}
.news-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.news-item {
    display: flex;
    gap: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 12px;
    transition: background 0.2s;
}
.news-item:hover {
    background: #f0f4ff;
}
.news-thumb img {
    width: 140px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}
.news-content {
    flex: 1;
}
.news-title {
    font-size: 18px;
    font-weight: 600;
    color: #0056b3;
    text-decoration: none;
}
.news-title:hover {
    text-decoration: underline;
}
.news-item .date {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: 3px;
}
.news-desc {
    font-size: 14px;
    color: #333;
    margin-top: 8px;
}


/*------------------------registration--------------------------------------------------------------------------------*/

#reg1 {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 95%;
	margin: auto;
	padding:0;
}
#top_reg {
	display: flex;
	flex-direction: row;
	width: 100%;
	margin: 0;
	padding: 1em 0 0.5em 0;
	justify-content: center;
	text-align: center;
	font-size: 1.6em;
	font-weight: 800;
	color: #333333;
}
#middle_reg {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
	padding: 0;
	color: #333333;
}
#middle_reg_edit {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-end;
	flex-wrap: wrap-reverse;
	width: 100%;
	margin: 0;
	padding: 0;
	color: #333333;
}
#left_reg {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 98%;
	margin: 0.5em auto;
	padding: 0;
}
.lr, .lr >img {
	width: 100%;
	margin: 0;
	padding: 0;
}
.bb {
	margin-top: 1em;
	padding: 0.8em 5%;
	font-size: 1em;
	text-align: center;
	background-color: #333333;
	color: #ffffff;
}
.sm {
	padding:0 7% 0 1.8em;
	font-size: 0.8em;
	background-color: #fdd034;
}
.sm > ul {
	padding: 0;
	text-align: justify;
}
				/* Правая часть */
#reg_form {
	width: 98%;
	margin: 0.5em auto;
}
#right_reg {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	border: 1px solid #333333;
	border-radius: 3px;
	background-color: rgba(33,33,33,0.04);;
}
#ob_p {
	font-size: 0.7em;
	color: red;
	width: 95%;
	text-align: right;
	margin-top: 0.6em;
}
mark {
	color: red;
	background-color:rgba(0,0,0,0);
}
	/*------------------*/
	@-webkit-keyframes err_all {
	    50% { color: rgb(225, 0, 0); }
		51% { color: rgba(225, 0, 0, 0); }
		100% { color: rgba(225, 0, 0, 0); }
	}
	@keyframes err_all {
	    50% { color: rgb(225, 0, 0); }
		51% { color: rgba(225, 0, 0, 0); }
		100% { color: rgba(225, 0, 0, 0); }
	}
.reg_err_help {
	color: red;
	font-size: 0.7em;
	-webkit-animation: err_all 1s linear infinite;
	animation: err_all 1s linear infinite;
}
.reg_err_info {
	font-size: 0.7em;
}
.rr { 					/*Стиль блоков полей ввода (горизонтальных)*/
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	width: 95%;
	margin: 0 auto;
	padding: 0;
	font-size: 0.8em;
}
.rrin {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 100%;
	margin: 10px 0;
	padding: 0.2em 2%;
}
.rrin_100 {
	width: 100% !important;
}
#NIP_label {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
#NIP_refresh {
	margin: 0 1em ;
	font-size: 1em;
	color: red;
	transition: 0.5s;
	cursor: pointer;
}
#NIP_refresh:hover {
	color: gold;
}
@media screen and (min-width: 600px) {
	.rrin {
		width: 50%;
	}	
}
@media screen and (min-width: 800px) {
	#left_reg {
		width: 23%;
	}
	#reg_form {
		width: 74%;
		margin: 0.5em auto;
	}
}

#in_firm, #in_fn, #in_adres, #in_address, #rr-bt {
	width: 100%;
}
.rrin > input {
	width: 100%;
	height: 2.2em;
	font-size: 1em;
	line-height: 1.8em;
	border-radius: 0px;
	margin-top: 0.3em;
	padding-left: 0.3em;
	border: 1px solid #333333;
}
.rrin > select {
	width: 100%;
	font-size: 1em;
	height: 2.2em;
	border-radius: 0px;
	margin-top: 0.3em;
	padding-left: 0.3em;
	padding-right: 1em;
	border: 1px solid #333333;
	-webkit-appearance: none;/* Chrome */
    -moz-appearance: none;/* Firefox */
    appearance: none;/* убираем дефолнтные стрелочки */
    background-image: url(../images/sel.png);
    background-size: 0.7em;
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: calc(100% - 0.5em);
	cursor: pointer;
}
.rrin > input:focus, select:focus {
	box-shadow: 0 0 6px rgba(0,0,0,0.4);
}
.in_but {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 0;
}
.in_but > input {
	width: 90%;
	font-size: 1em;
	line-height: 1.8em;
	border-radius: 0px 0 0 0px;
	margin-top: 0.3em;
	padding-bottom: 0.2em;
	padding-left: 0.3em;
	border: 1px solid #333333;
}
.in_but > button {
	width: 8%;
	font-size: 1em;
	border-radius: 0 0px 0px 0;
	margin-top: 0.3em;
	padding-bottom: 0.2em;
	padding-left: 0.3em;
	border: 1px solid #333333;
	cursor: pointer;
	transition: 0.5s;
	background-color: rgba(0,0,0,0.1);
}
.in_but > input:focus {
	box-shadow: 0 0 6px rgba(0,0,0,0.4);
}
.in_but > button:hover {
	background-color: rgba(0,0,0,0.15);
}
.check {
	width: 100%;
	text-align: justify;
	padding: 0 2%;
}
.agr {
	text-decoration: none;
	transition: 0.5s;
}
.agr:hover {
	text-decoration: underline;
}
#sub {
	width: 100%;
	margin: auto;
	padding: 0 1em;
	border: none;
	font-size: 1.3em;
}
.sub_activ {
	background-color: #fdd034;
	color: #ffffff;
	transition: 0.5s;
}
.sub_activ:hover {
	background-color: #fdd004;
	color: #333333;
	cursor: pointer;
}
.sub_noactiv {
	background-color: rgba(0,0,0,0.2);
	color: #ffffff;
}
#sub_next {
	width: 100%;
	margin: auto;
	padding: 0 1em;
	border: none;
	background-color: #fdd034;
	color: #ffffff;
	font-size: 1.3em;
	transition: 0.5s;
}
#sub_next:hover {
	background-color: #fdd004;
	color: #333333;
	cursor: pointer;
}
#map {
	width: 96%;
	height: 400px;
	border: 1px solid #333333;
}

.subdom {
	display: flex;
	flex-direction: row;
	width: 100%;
	margin: auto;
	padding: 0.5em 0;
    font-size: 1.3em;
    font-weight: 800;
    text-transform: lowercase;
}
#aliass {
	color:  #fdd034;
}
#in_alias {
	text-transform: lowercase;
}
/* фото load ------------------------------------------------------------*/
#uploadbtn_bg, #uploadbtn_logo {
	display:none;
}
#d-dropBox_bg {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0;
	min-height: 20em;
	background-color: #96a5a5;
	position: relative;
}
#dropBox_bg {
	display: flex;
	flex-direction: column;
	width: 96%;
	margin: 0;
	min-height: 20em;
	background-color: #96a5a5;
	position: relative;
}
#dropBox_bg > h4 {
	position: absolute;
	left: 5%;
    top: 0;
	font-size: 0.9em;
	color: #ffffff;
}
#dropBox_logo {
	min-height: 7em;
	width: 25%;
	background-color: rgba(255,255,255);
	outline: 6px solid rgba(255,255,255);
	border-radius: 1px;
	box-shadow: 0 0 16px rgba(0,0,0,0.8);
	position: absolute;
	left: 5%;
    bottom: 1.3em;
}
#f_name_txt {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	flex-wrap: wrap;
	min-height: 3.5em;
	width: 40%;
	position: absolute;
	left: 35%;
    bottom: 0.6em;
    font-size: 2em;
    font-weight: 800;
    color: #ffffff;
}
#f_name_txt_2 {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
    font-size: 0.6em;
    font-weight: 500;
    color: #ffffff;
}
#btn_upload_bg {
	font-size: 0.9em;
	font-weight: normal;
	position: absolute;
	right: 5%;
    top: -1em;
	padding: 0.2em 1em;
	border-radius: 4px;
	border: none;
	background-color: #d1d1d1;
	transition: 0.5s;
}
#btn_upload_bg:hover {
	background-color: #f9f9f9;
	box-shadow: 0 0 6px rgba(0,0,0,0.4);
}
#btn_upload_logo {
	font-size: 0.9em;
	font-weight: normal;
	position: absolute;
	left: 5%;
    top: -1.5em;
	padding: 0.2em 1em;
	border-radius: 4px;
	border: none;
	background-color: #d1d1d1;
	transition: 0.5s;
}
#btn_upload_logo:hover {
	background-color: #f9f9f9;
	box-shadow: 0 0 6px rgba(0,0,0,0.4);
}
#uploaded_holder_bg {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
	min-height: 20em;
	background-color: #96a5a5;
	position: relative;
}
#uploaded_holder_logo {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
	min-height: 7em;
	border-radius: 4px;
	background-color: rgba(255,255,255);
	position: relative;
}
.dropped_file {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background-color: rgba(0,0,0,0.1);
	background-image: url(../images/load_ph.gif);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	margin: 0 auto 1em auto ;
	width: 80%;
	min-width: 80%;
	border-radius: 3px;
	position: relative;
}
@media screen and (min-width: 420px) {
	#uploaded_holder {
		justify-content: flex-start;
		margin: 0 auto 0 2em;
	}
	.dropped_file {
		display: flex;
		margin: 0 2% 1em 0 ;
		width: 23%;
		min-width: 160px;
	}	
}

.main {
	background-color: #fdd034;
}
.dropped_file_del {
	position: absolute;
	right: 5px;
    top: 2px;
	background-color: rgba(0,0,0,0);
	font-size: 1.2em;
	color: rgba(255,255,255,0.5);
	transition: 0.5s;
}
.dropped_file_del:hover {
	font-size: 1.4em;
	color: rgba(255,255,255,1);
	cursor: pointer;
}
.photo_roration {
	background-color: rgba(0,0,0,0);
	position: absolute;
	left:0.2em;
    top: 0.2em;
	color: rgba(255,255,255,0.5);
	transition: 0.5s;
}
.photo_roration:hover {
	color: rgba(255,255,255,1);
	font-size: 1.2em;
	cursor: pointer;
}
.dropped_file_photo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 3px;
	/*background-color: #fff;*/
	margin: 0;
}
.photo_load_preview {
	display: flex;
	width: 100%;
}
/*.dropped_file_photo_rot90 {
	position: relative;
	overflow: hidden;
	transform: rotate(90deg);
}
*/
.dropped_file_check {
	margin: 5px auto;
	font-size: 1em;
	color: #ffffff;
	white-space: pre;
	transition: 0.5s;
}
.dropped_file_check:hover {
	color: #fdd034;
	font-weight:800;
	cursor: pointer;
}
.main > .dropped_file_check {
	color: #333333;
}
/*----------------------------------------------------------*/


#reg_choice {
    position: fixed;
    top:0;
	left: 0;
	bottom: 0;
    right: 0;
	background-color: rgba(33,33,33,0.7);
	z-index:1000;
	transition: 0.5s;
}	 
#choice_form {
    position: fixed;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
	background-color: rgba(255,255,255,0.7);
	border: 1px solid rgba(0,0,0,0.5);
	border-radius: 3px;
}	 
#priv_btn, #firm_btn {
	width: 90%;
	margin: 0 auto 1em auto;
}
#priv_txt {
	margin: 1em auto 1em auto;
}


/*------------------------authorisation--------------------------------------------------------------------------------*/

.block_for_messages {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 93%;
	margin: auto;
	margin-top: 0.2em;
}
.err_mess {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 1em;
	color: #ffffff;
	background-color: red;
	border-radius: 5px;
}
.succ_mess {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 1em;
	color: #ffffff;
	background-color: green;
	border-radius: 5px;
}
#authorized {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 93%;
	margin: auto;
	margin-top: 0.2em;
	padding:0.5em;
	color: red;
	background-color: #fdd034;
	border-radius: 5px;
}
#auth1 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 93%;
	margin: 0 auto;
	padding:0;
}
#top_auth {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	width: 99%;
	margin: 0;
	padding: 1em 0em 0.5em 0em;
	font-size: 1.6em;
	font-weight: 800;
	color: #333333;
}
#middle_auth {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-end;
	flex-wrap: wrap-reverse;
	width: 100%;
	margin: 0;
	padding: 0;
	color: #333333;
}
#left_auth {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0.5em auto;
	padding: 0;
}
.lauth {
	width: 100%;
}
.lauth > img {
	width: 100%;
}
#form_auth {					/* Правая часть */
	width: 100%;
	margin: 0.5em auto;
}
@media screen and (min-width: 600px) {
	#top_auth {
		justify-content: flex-end;
	}
	#left_auth {
		width: 65%;
	}	
	#form_auth {
		width: 33%;
	}
}
#right_auth {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 0;
	align-items: center;
	border: 1px solid #333333;
	border-radius: 3px;
}
.reg_err_help {
	color: red;
	font-size: 0.7em;
}
.rauthin {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 90%;
	margin: 10px;
	padding: 0;
	font-size: 0.9em;
}
.rauthin > input {
	width: 100%;
	font-size: 1em;
	line-height: 1.8em;
	border-radius: 4px;
	margin-top: 0.3em;
	padding-bottom: 0.2em;
	padding-left: 0.3em;
	border: 1px solid #333333;
}
.rauthin > input:focus {
	 box-shadow: 0 0 6px rgba(0,0,0,0.4);
}
.forgot {
	text-decoration: none;
	transition: 0.5s;
}
.forgot:hover {
	text-decoration: underline;
}
#sub_auth, #sub_reset {
	margin: auto;
	border: none;
	background-color: #fdd034;
	color: #ffffff;
	font-size: 1.3em;
	transition: 0.5s;
}
#sub_auth:hover, #sub_reset:hover{
	background-color: #fdd004;
	color: #333333;
	cursor: pointer;
}


/*------------------------add--------------------------------------------------------------------------------*/

#sub_next_hide, #sub_load_hide, #uploadbtn {
	display:none;
}
#preloader, #preloader_edit {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	z-index: 1001;
	display:none;
	cursor: progress;
}
.preloader__row {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: auto;
}
.preloader2 {
 	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	text-align: center;
	background-image: url(../images/6.gif);
	width: 350px;
	height: 350px;
	margin: auto;
   }
.preloader1 {
 	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: gold;
	font-size: 2em;
   }
#dropBox {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0;
	background-color: #96a5a5;
}
#dropBox > h4 {
	margin: 1em 2em;
	font-size: 1.1em;
	color: #ffffff;
}
#dropBox_in {
	display: flex;
	flex-direction: column;
	width: 100%;
}
#photo_help {
	margin: 1em 2em 0 2em;
	font-size: 1em;
	color: #ffffff;
	}
#file_load_err, #no_file_err {
	margin: 0.5em 2em;
	font-size: 1.2em;
	color: red;
	-webkit-animation: err_all 1s linear infinite;
	animation: err_all 1s linear infinite;
}
#dropBox_top {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 0.4em 2em;
	width: 100%;
}
#btn_upload {
	font-size: 1.1em;
	font-weight: 0.7;
	margin: 0;
	padding: 0.4em 2em;
	border-radius: 4px;
	border: none;
	background-color: #d1d1d1;
	transition: 0.5s;
}
#btn_upload:hover {
	background-color: #f9f9f9;
	box-shadow: 0 0 6px rgba(0,0,0,0.4);
}
#num_photo {
	font-size: 1.5em;
	font-weight: 0.8;
	margin: 0;
	padding: 0em 1em;
	color: #fdd034;
}
#uploaded_holder {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	margin: auto;
}
.dropped_file {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background-color: rgba(0,0,0,0.1);
	background-image: url(../images/load_ph.gif);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	margin: 0 auto 1em auto ;
	width: 80%;
	min-width: 80%;
	border-radius: 3px;
	position: relative;
}
@media screen and (min-width: 420px) {
	#uploaded_holder {
		justify-content: flex-start;
		margin: 0 auto 0 2em;
	}
	.dropped_file {
		display: flex;
		margin: 0 2% 1em 0 ;
		width: 23%;
		min-width: 160px;
	}	
}

.main {
	background-color: #fdd034;
}
.dropped_file_del {
	position: absolute;
	right: 5px;
    top: 2px;
	background-color: rgba(0,0,0,0);
	font-size: 1.2em;
	color: rgba(255,255,255,0.5);
	transition: 0.5s;
}
.dropped_file_del:hover {
	font-size: 1.4em;
	color: rgba(255,255,255,1);
	cursor: pointer;
}
.photo_roration {
	background-color: rgba(0,0,0,0);
	position: absolute;
	left:0.2em;
    top: 0.2em;
	color: rgba(255,255,255,0.5);
	transition: 0.5s;
}
.photo_roration:hover {
	color: rgba(255,255,255,1);
	font-size: 1.2em;
	cursor: pointer;
}
.dropped_file_photo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 3px;
	/*background-color: #fff;*/
	margin: 0;
}
.photo_load_preview {
	display: flex;
	width: 100%;
}
/*.dropped_file_photo_rot90 {
	position: relative;
	overflow: hidden;
	transform: rotate(90deg);
}
*/
.dropped_file_check {
	margin: 5px auto;
	font-size: 1em;
	color: #ffffff;
	white-space: pre;
	transition: 0.5s;
}
.dropped_file_check:hover {
	color: #fdd034;
	font-weight:800;
	cursor: pointer;
}
.main > .dropped_file_check {
	color: #333333;
}

#in_damage, #in_options {
	width: 100%;
	border: 1px solid #333333;
	border-radius: 3px;
	padding: 1em;
}
#in_options_text {
	width: 100%;
}
#add_info {
	display: block;
	width: 99%;
	min-height: 10em;
	font-size: 1.3em;
	margin: 0 auto;
	padding: 0.4em;
	resize: vertical;
	outline: none;
	-moz-appearance: none;
	border: 1px solid #333333; /* указание этого свойства также удалит обводку в FireFox */
	overflow: auto;
	border-radius: 3px;
	white-space: pre-wrap;
	overflow-wrap: break-word;
}

/*------------------------lot-add--------------------------------------------------------------------------------*/

.lot_add_main {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background-image: url(../images/lot_add.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	margin: 0;
	min-height: 23em;
	padding: 2.6em 8% 0.5em 8%;
}
#p1_lot_add {
	color: #fdd034;
	font-weight: 800;
	font-size: 2em;
}
#p2_lot_add {
	color: #ffffff;
	font-weight: 500;
	font-size: 1.1em;
	margin-top: 3em;
}
#p2_lot_add > a {
	color: #ffffff;
	font-size: 1.1em;
	font-weight: 500;
	text-decoration: none;
	transition: 0.5s;
}
#p2_lot_add > a:hover {
	margin-left: 0.2em;
	text-decoration: underline;
}
.auth_now {
  white-space: pre;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  border-radius: 3px;
  padding: 0.6em 1.5em;
  margin-top: 3em;
  margin-bottom: 1em;
  margin-left: 10%;
  margin-right: auto;
  color: #000;
  background-color: #fdd034;
  -webkit-transition: 0.5s; /* плавный переход  */
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.auth_now:hover {
  padding: 0.6em 1.8em;
}

#p3_lot_add {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 85%;
	border-top: 0px solid orange;
}
#p4_lot_add {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
	opacity: 0.4;
	border: none;
	font-size: 0.8em;
	transition: 0.5s;
	color: rgba(255,255,255,1);
}
#p4_lot_add:hover {
	opacity: 1;
	cursor: pointer;
}
.action_lot_add {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	background-color: #fdd034;
	width: 100%;
	margin: 0;
	padding: 0;
}
.action_lot_add > p {
	font-family: arial;
	color: #000;
	font-weight: 600;
	font-size: 1.3em;
	margin: 0.7em;
}
.lot_type {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background-color: rgba(51,51,51,0);
	width: 8em;
	min-width: 100px;
	margin-right: 2em;
	margin-top: 2em;
	margin-bottom: 2em;
	opacity: 0.4;
	border: none;
	font-size: 0.8em;
	transition: 0.5s;
}
.lot_type_top {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	margin: 0;
	min-height: 6em;
}
.lot_type_text {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-wrap: wrap;
	color: rgba(255,255,255,1);
	width: 100%;
	margin: 0;
}
.lot_type > a {
	display: block;
	margin: 0;
	width: 100%;
	text-decoration: none;
	color: rgba(255,255,255,1);
	transition: 0.5s;
}
.lot_type:hover, .lot_type > a:hover {
	opacity: 1;
	cursor: pointer;
}
#send_cat_id_btn {
	display:none;
}


/*------------------------finder--------------------------------------------------------------------------------*/


.reg_err_help {
	color: red;
	font-size: 0.7em;
}
.find_1 {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background-image: url(../images/finder.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	margin: 0;
	min-height: 23em;
	padding: 2.6em 8% 0.5em 8%;
}
.find_proc {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	background-image: url(../images/load.gif);
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #333333;
	width: 100%;
	margin: 0;
	padding: 3em 5%;
	min-height: 16em;
	color: #fdd034;
	font-size: 1.5em;
	font-weight: 800;
}
.hidden {
	 display: none !important;
}
#p1_lot_find {
	color: #fdd034;
	font-weight: 800;
	font-size: 2em;
}
#p2_lot_find {
	color: #ffffff;
	font-weight: 500;
	font-size: 1.1em;
	margin-top: 3em;
}
#p2_lot_find > a {
	color: #ffffff;
	font-size: 1.1em;
	font-weight: 500;
	text-decoration: none;
	transition: 0.5s;
}
#p2_lot_find > a:hover {
	margin-left: 0.2em;
	text-decoration: underline;
}
#p3_lot_find {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 85%;
	border-top: 0px solid orange;
}
#p4_lot_find {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
	opacity: 0.4;
	border: none;
	font-size: 0.8em;
	transition: 0.5s;
	color: rgba(255,255,255,1);
}
#p4_lot_find:hover {
	opacity: 1;
	cursor: pointer;
}
/*----------------------------------------------------------*/
.find_2 {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 95%;
	margin: auto;
	padding:0;
}
#top_find_car {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
	padding: 1em 0em 0.5em 0em;
	justify-content: center;
	text-align: center;
	font-size: 1.6em;
	font-weight: 800;
	color: #333333;
}
#middle_find_car1 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
	padding: 0;
	color: #333333;
}
#left_find_car {				/*  Левая часть */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 98%;
	margin: 0 auto 1em auto;
	border: 1px solid rgba(0,0,0,0.2);
	border-radius: 3px;
	background-color: rgba(33,33,33,0.1);
}
.find_r, .find_r > label > img {
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0;
	opacity: 0.9;
}
.find_r > label > img:hover {
	cursor: pointer;
	opacity: 1;
}
#add_finder_yes {
	flex-direction: column;
	display: flex;
}
.r_find_car_in {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 100%;
	padding: 0.3em;
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
.select_f {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 95%;
}
.label_f {
	width: 100%;
}
.label_f > label {
	width: 100%;
	display: flex;
	font-size: 1.0em;
	padding: 0.2em 0.3em 0.2em 0.5em;
	align-items: center;
}
.label_f > label > input {
	margin-right: 0.4em;
}
.label_f_check {
	width: 100%;
}
.label_f_check > label {
	width: 100%;
	display: flex;
	font-size: 1.0em;
	padding: 0.2em 0.3em 0.2em 0.8em;
	align-items: center;
}
.label_f_check > label > input {
	margin-right: 0.4em;
}
.label_date {
	width: 2em;
	display: flex;
}
.my_date {
	border-radius: 4px;
	padding-left: 0.3em;
	border: 1px solid #333333;
}
.my_chekbox {
  display: none;/* <--скрываем дефолтный чекбокс */
}
.label_f span {/* <-- стилизируем новый */
  height: 14px;
  width: 14px;
  border: 1px solid #777777;
  display: inline-block;
  position: relative;
  background-color:#777777;
  border-radius:3px;
  padding:0;
  margin-right: 5px;
 }
[type=checkbox]:checked + span:before {/* <-- ставим иконку, когда чекбокс включен  */
  content: '-';
  position: absolute;
  top: -3px;
  left: 2px;
  font-size:16px;
  font-weight: 800;
  font-family: 'Courier New', Courier, monospace;
  color:#ffffff;
}
[type=checkbox] + span:before {/* <-- ставим иконку, когда чекбокс включен  */
  content: '+';
  position: absolute;
  top: -3px;
  left: 2px;
  font-size:16px;
  font-weight: 800;
  font-family: 'Courier New', Courier, monospace;
  color:#ffffff;
}
.label_f:hover {
  font-weight: 800;
}
.label_f:hover span {
  background-color:#333333;
  border-color:#333333;
}





/*--------------------------------------------------------------- right*/
#right_find {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 98%;
	margin: 0 auto;
	margin-bottom: 0.5em;
	border: 1px solid rgba(0,0,0,0.2);
	border-radius: 3px;
}
#right_find_car, #right_find_car1, #right_find_car2 {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 100%;
}
.right_find_1 {
	white-space: pre;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	border-bottom: 1px solid rgba(0,0,0,0.2);
	font-size: 0.7em;
	font-weight: 500;
}
.sel_20_50_100, .page_sel, .lot_navi, .lot_from_to, .lot_cat {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 3px 10px ;
}
#sel_20_50_100, #page_sel, #sel_20_50_100_1, #page_sel_1 {
	align-items: center;
	margin: 5px;
}
.btn_nav {
	padding: 3px;
	width: 4em;
	color: rgba(33,33,33,0.8);
	border: 1px solid rgba(0,0,0,0.2);
	background-color: rgba(0,0,0,0);
	cursor: pointer;
	transition: 0.5s;
}
.btn_nav:hover {
	color: rgba(33,33,33,1);
	border: 1px solid rgba(0,0,0,0.5);
	background-color: rgba(80,80,80,0.05);
}
.btn_nav_off {
	padding: 3px;
	width: 4em;
	color: rgba(33,33,33,0.2);
	border: 1px solid rgba(0,0,0,0.2);
	background-color: rgba(0,0,0,0);
}
.lot_tab_menu {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	color: white;
	background-color: rgba(33,33,33,0.8);
	font-size: 0.7em;
	font-weight: 500;
}
.lot_tab {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: start;
	position: relative;
	width: 100%;
	text-align: center;
	margin: 0;
	padding: 0;
	color: #333333;
	font-size: 0.6em;
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
.lot_tab:hover  .flag_off {
	color:rgba(255,255,255,1);
}
.lot_photo {
	display: flex;
	align-items: center;
	background-size: cover;	
	background-repeat: no-repeat; 
	background-position: center center;
	width: 30%;
}
.logo_photo {
	width: 100%;
	margin: 0;
}
.m_photo:hover {
	cursor: pointer;
}
.flags {
	position: absolute;
	top: 0.2em;
	right: 71%;
	font-size: 1.0em;
}
.flags > label {
	cursor: pointer;
	transition: 0.5s;
	font-size: 1.5em;
}
.flags > label:hover {
	color:#fdd034 !important;
	font-size: 2.0em;
}
.flag_off {
	color:rgba(255,255,255,0.7);
}
.flag_on {
	color:#fdd034;
}
.lot_seller {
	display: flex;
	flex-direction: row;
	align-items: start;
	justify-content: start;
	text-align: center;
    position: absolute;
	width: 44%;
	bottom: 0.1em;
	left: 31%;
}
.lot_seller > a {
	display: flex;
	flex-direction: row;
	width: 100%;
	max-height: 3.5em;
	text-decoration: none;
	color: black;
}
.lot_seller_1 {
	display: flex;
	width: 25%;
}
.lot_seller_2 {
    display: none;
	flex-direction: column;
	align-items: start;
	justify-content: center;
	width: 75%;
	padding: 0.1em 1%;
}
.lot_seller_21 {
    font-size: 0.8em;
    overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.lot_seller_22 {
    font-size: 0.6em;
    overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.menus, .menus1 {
	display: flex;
	flex-direction: column;
	justify-content: center !important;
	align-items: center !important;
	text-align: center !important;
	border-right: 1px solid rgba(255,255,255,0.8);
	font-size: 0.8em !important;
	min-height: 4.5em;
}
.menus:hover {
	cursor: pointer;
}
.menus > i {
	font-size: 1.2em;
}
.lot_num, .us_num {
/*	position: relative;*/
	width: 14%;
	display: none;
}
.us_name {
	width: 26%;
}
.us_login {
	width: 25%;
}
.lot_marka {
    display: flex;
    padding: 0.4em 1%;
    margin: 0;
	flex-direction: column;
	justify-content: start;
	align-items: start;
	text-align: left;
	width: 36%;
}
.lot_model {
    display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 23%;
}
.mini-txt {
	font-size: 0.9em;
}
.mini-txt-1 {
	font-size: 0.7em;
	max-height: 3em;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	max-width: 100%;
}
.us_family, .us_type,.us_lots,.us_bids {
	width: 15%;
	display: none;
}
.lot_year {
	width: 10%;
	padding: 0.4em 0;
	justify-content: center;
	align-items: center;
	text-align: center;
	display: flex;
}
.lot_odometer {
	width: 10%;
	display: none;
	padding: 0.4em 0;
}
.lot_adress {
	width: 20%;
	display: none;
	padding: 0.4em 0;
}
.lot_data_sell {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 14%;
	display: none;
	padding: 0.4em 0;
}
.lot_bit, .us_bal {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 24%;
	font-size: 0.8em;
	padding: 0.4em 0;
}
.mt1 {
	display: none;
	padding: 0.3em 0 4.2em 0;
}
@media screen and (min-width: 500px) {
    .lot_tab {
    	font-size: 0.7em;
    }
    .menus, .menus1 {
    	font-size: 1.0em !important;
    }
    .lot_photo {
		width: 25%;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	.flags {
		top: 0.2em;
		right: 76%;
		font-size: 1.1em;
	}
    .lot_seller {
    	width: 51%;
    	bottom: 0.1em;
    	left: 26%;
    }
	.lot_num {
		width: 10%;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	.us_num {
		width: 11%;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	.lot_marka {
		width: 40%;
		display: flex;
	}
	.lot_model {
		width: 20%;
		display: none;
	}
	.us_name, .us_family,.us_login {
		width: 22%;
		justify-content: center;
		align-items: center;
		text-align: center;
		display: flex;
	}
	.lot_year {
		width: 13%;
		display: flex;
	}
	.lot_bit, .us_bal {
		width: 22%;
		justify-content: center;
		align-items: center;
		text-align: center;
		font-size: 0.8em;
	}	
}
@media screen and (min-width: 635px) {
    .lot_seller_2 {
        display: flex;
    }
    .lot_tab {
    	font-size: 0.7em;
    }
	.lot_photo {
		width: 21%;
	}
	.flags {
		top: 0.2em;
		right: 80%;
		font-size: 1.1em;
	}
    .lot_seller {
    	width: 46%;
    	bottom: 0.1em;
    	left: 22%;
    }
	.lot_num {
		width: 8%;
	}
	.lot_marka {
		width: 28%;
	}
	.lot_model {
		width: 14%;
	}
	.lot_year {
		width: 8%;
	}
	.lot_odometer {
		width: 12%;
		justify-content: center;
		align-items: center;
		text-align: center;
		display: flex;
	}
	.lot_data_sell {
		width: 12%;
		justify-content: center;
		align-items: center;
		text-align: center;
		display: flex;
	}
	.lot_bit {
		width: 19%;
		font-size: 0.9em;
	}	
}
@media screen and (min-width: 800px) {
    .mt1 {
    	display: flex;
    }
    .lot_tab {
    	font-size: 0.7em;
    }
	.lot_photo {
		width: 18%;
	}
	.flags {
		top: 0.2em;
		right: 83%;
		font-size: 1.2em;
	}
    .lot_seller {
    	width: 41%;
    	bottom: 0.1em;
    	left: 19%;
    }
	.lot_num {
		width: 6%;
	}
	.us_num {
		width: 5%;
	}
	.lot_marka {
		width: 28%;
	}
	.lot_model, .us_name, .us_family {
		width: 14%;
	}
	.lot_year {
		width: 6%;
	}
	.us_login {
		width: 9%;
	}
	.lot_odometer {
		width: 9%;
	}
	.lot_adress {
		width: 15%;
		justify-content: center;
		align-items: center;
		text-align: center;
		display: flex;
	}
	.us_type {
		width: 12%;
		justify-content: center;
		align-items: center;
		text-align: center;
		display: flex;
	}
	.lot_data_sell {
		width: 9%;
	}
	.us_lots, .us_bids {
		width: 7%;
		justify-content: center;
		align-items: center;
		text-align: center;
		display: flex;
	}
	.lot_bit {
		width: 15%;
	}	
	.us_bal {
		width: 12%;
	}	
}
@media screen and (min-width: 1000px) {
	#left_find_car {				/*  Левая часть */
		width: 20%;
	}	
	.label_f > label {
		font-size: 0.7em;
	}
	.label_f_check > label {
		font-size: 0.7em;
	}
	#right_find {
		width: 78%;
	}
    .lot_tab {
    	font-size: 0.8em;
    }
}
@media screen and (min-width: 1400px) {
    .lot_tab {
    	font-size: 1em;
    }
}
.bid_orange {
	color: orange;
	font-size: 1.3em;
	font-weight: 800;
}
.bid_green {
	color: green;
	font-size: 1.3em;
	font-weight: 800;
}
.bid_red {
	color: red;
	font-size: 1.3em;
	font-weight: 800;
}
.bid_gray {
	color: gray;
	font-size: 1.3em;
	font-weight: 800;
}
.btn_buy {
	text-align: center;
/*	position: absolute;
	bottom: 0.2em;
	right: 1%;  */
	margin: 0.2em;
	padding: 0.4em;
	border: none;
	background-color: #fdd034;
	color: #ffffff;
	border-radius: 3px;
	font-size: 1.1em;
	transition: 0.5s;
	min-width: 80%;
}
.btn_buy:hover {
	color: #333333;
	background-color: #fdd004;
	cursor: pointer;
}
#send_lot_id_btn {
	display:none;
}


/*------------------------new-lots--------------------------------------------------------------------------------*/

.new_lots_main {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-top: 0.5em;
}
.new_lots_top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
	padding: 0.5em 2% 0.5em 2%;
}
.new_lots_top_name {
	font-size: 1.6em;
	color: #000;
	text-align: left;
	width: auto;
	margin: 0;
	font-weight: 800;
}
.new_lots_btns {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	font-size: 2em;
	color: #ffffff;
	width: 10%;
	min-width: 3em;
	margin: 0;
	padding: 0;
}
.new_btn_nav {
	text-align: center;
	background-color: #fdd034;
	width: 48%;
	transition: 0.5s;
}
.new_btn_nav:hover {
	background-color: #fdf034;
	color: #000;
	cursor: pointer;
}
.new_btn_nav_off {
	text-align: center;
	background-color: #ffffff;
	width: 48%;
}
.new_lots {
	display: flex;
	width: 100%;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0;
	padding: 0 1% 0 1%;
}
.new_lot {
	display: flex;
	flex-direction: column;
	background-color: rgba(200,200,200,0.3);
	width: 98%;
	margin: 1em 1% 0 1%;
	color: #333333;
	font-size: 1em;
}
@media screen and (min-width: 500px) {
	.new_lot {
		width: 48%;
		font-size: 0.7em;
	}
}
@media screen and (min-width: 650px) {
	.new_lot {
		width: 31%;
		font-size: 0.6em;
	}
}
@media screen and (min-width: 700px) {
	.new_lot {
		width: 31%;
		font-size: 0.7em;
	}
}
@media screen and (min-width: 800px) {
	.new_lot {
		width: 23%;
		font-size: 0.8em;
	}
}
@media screen and (min-width: 1000px) {
	.new_lot {
		width: 23%;
		font-size: 0.9em;
	}
}
@media screen and (min-width: 1200px) {
	.new_lot {
		width: 23%;
		font-size: 1em;
	}
}
.photo_lot {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	margin: 0;
	overflow: hidden;
}
.name_lot {
	font-weight: 800;
	font-size: 1em;
	padding: 0.2em 2% 0.2em 2%;
}
.bid_num_lot {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	border-top: 1px solid rgba(200,200,200,1);
	border-bottom: 1px solid rgba(200,200,200,1);
	margin: 0 2% 0 2%;
}
.num_lot {
	font-size: 0.9em;
}
.bid_now {
	font-size: 0.9em;
}
.city_lot {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	border-top: 1px solid rgba(200,200,200,1);
	font-size: 0.9em;
	margin: 0.2em 2% 0 2%;
}
.cena_all {
	display: flex;
	white-space: pre;
	font-weight: 500;
	flex-direction: row;
	align-items: flex-end;
}
.view_lot {
	text-align: center;
	border: none;
	background-color: #fdd034;
	color: #ffffff;
	font-size: 1.3em;
	width: 100%;
	font-weight: 500;
	margin-top: 0.3em;
	margin-bottom: 0;
	padding: 0.2em;
	border-radius: 0px;
	transition: 0.5s;
}
.view_lot:hover {
	color: #333333;
	background-color: #fdd004;
	cursor: pointer;
}

/*------------------------find_line--------------------------------------------------------------------------------*/



.wrap {				/* поиск  */
  display: flex;
  align-items: center;
  margin-bottom: 0.2em;
  margin-right: 0.4em;
  transform: translate(0%, 0%);
  width: 0px;
  height: 38px;
  /*background: rgba(208,165,165,1);*/
  line-height: 38px;
  padding-right: 38px;
  border-radius: 6px;
  /*box-shadow: 0 0 10px rgba(0,0,0,0.5); */
  transition: all 0.5s ease;
}
.input {
  border: 0;
  background: transparent;
  width: 0%;
  outline: none;
  font-family: sans-serif;
  font-size: 1em;
  color: #000;
  transition: all 0.3s ease;
  position: relative;
}
.wrap .fas{
  color: #fdd034;
  position: absolute;
  right: 10px;
  top: 8px;
  font-size: 1.2em;
  cursor: pointer;
}
.wrap.active{
  width: 250px;
  padding-left: 25px;
  background-color: #ffffff;
  transition: all 0.5s ease;
}
.input.active{
  border: 0;
  width: 98%;
  padding-left: 5px;
  background: transparent;
  transition: all 0.5s 0.8s ease;
}
input::placeholder {
  color: #9a9a9a;
}



/*------------------------lot_info--------------------------------------------------------------------------------*/

#lot_main {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 98%;
	margin: auto;
	padding: 0;
	justify-content: center;
}
#lot_main_left {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin:  0;
	padding: 0;
}
#lot_banners { /* -----------------------reclama-------------*/
	display: none;
}
#lot_main_top {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 0;
	justify-content: center;
	align-items: center;
}
#lot_main_top1 {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	text-align: left;
	width: 96%;
	margin-top: 0.8em;
	font-weight: 500;
	font-size: 2em;
}
.flag_off_li {
	color: rgba(33,33,33,0.3);
}
.lot_select_flag > label {
	margin: 0 0.5em 0 0;
	cursor: pointer;
	transition: 0.5s;
}
.lot_select_flag > label:hover {
	color:#fdd034;
}
#lot_main_top2 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	width: 96%;
	margin: 0;
	margin-top: 0.7em;
	font-weight: 500;
	font-size: 0.8em;
}
#lot_main_medium {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap-reverse;
	justify-content: center;
	width: 100%;
	margin-top: 1em;
	padding: 0;
}
#lot_main_medium_left {  /* ---------------------------------left-----*/
	display: flex;
	flex-direction: column;
	width: 96%;
	margin: 0 auto;
	font-size: 0.8em;
	background-color: rgba(33,33,33,0);
}
#lot_bids, #lot_history_bids, #lot_param, #lot_damage, #lot_info_view, #lot_options_view, #lot_seller {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0;
	margin-bottom: 0.5em;
	background-color: rgba(33,33,33,0);
	border: 1px solid rgba(33,33,33,0.2);
	border-radius: 3px;
}
#lot_info_view, #lot_options_view {
	white-space: pre-wrap;
}
#uwaga, #uwaga1 {
	margin: 0 0 1em 0;
}
#lot_history_bids > div {
	font-size: 0.8em;
	padding: 0.3em;
}
#lot_history_bids {
	max-height: 600px;
	overflow-y: scroll;
}

.lot_info_left {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	text-align: justify;
	width: 100%;
	margin: 0;
	padding: 7px 10px 7px 10px;
	border-top: 1px solid rgba(33,33,33,0.2);
}
.block_name_line {
	justify-content: center;
	background-color: rgba(33,33,33,0.8);
	color: white;
	font-size: 1.2em;
	border-radius: 3px 3px 0 0;
	border: 1px solid rgba(33,33,33,0.8);
}
.val_opt {
	font-weight: 800;
}

.to_right {
	margin-right: 0;
	margin-left: auto;
	text-align: right;
}
.to_center {
	margin-left: auto;
	width: 100%;
	text-align: center;
}
.to_sell {
	padding-bottom: 10px;
}
#line1 {
	font-size: 1.2em;
	align-items: center;
}
#bid_now_usd {
	display: flex;
	white-space: pre;
	flex-direction: row;
	align-items: flex-end;
	color: orange;
}
#line4, #line5, #line10 {
	align-items: center;
}
#line2, #line2_1, #line2_2, #line3, #line7, #line7_1, #line3_1 {
	font-size: 0.8em;
	border: none;
	padding-top: 0;
}
#line6, #line6_1, #line6_2, #line4_1, #line4_2 {
	border: none;
	padding-top: 0;
}
#line9_1 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: auto;
	align-items: center;
	text-align: center;

}
#line4_3 > a, #line4_5 > a, #line4_6 > a, #line4_9 > a, #line4_10 > a, #line4_13 > a, #line11_1 > a  {
	width: 100%;
	margin: 0;
}
.btn {
	min-width:6em;
	text-align: center;
	padding: 0.4em;
	border: none;
	background-color: #fdd034;
	color: #ffffff;
	border-radius: 3px;
	font-size: 1.1em;
	transition: 0.5s;
}
.btn:hover {
	background-color: #ffd034;
	color: #333333;
	cursor: pointer;
}
.btn_li {
	padding: 0.8em 0.1em;
}
.btn_liem {
	padding: 0.7em 0.1em;
	border: 1px solid #333333;
	background-color: #ffffff;
	color: #333333;
}
#btn_form {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 80%;
	padding-bottom: 2.9em;
	background-color: rgba(255,255,255,0.7);
	border: 1px solid rgba(0,0,0,0.5);
	border-radius: 3px;
	font-size: 0.8em;
	position: sticky;
    bottom: 0;
}
#new_max_bid_in, #new_cena_in, #new_final_bid_in {
	width: 80px;
	font-size: 1.1em;
	font-weight: 800;
	line-height: 1.6em;
	border-radius: 4px;
	margin-top: 0em;
	padding-bottom: 0.2em;
	padding-left: 0.3em;
	border: 1px solid #333333;
}
#new_max_bid_in::placeholder, #new_cena_i::placeholder, #new_final_bid_in::placeholder {
  color: rgba(33,33,33,0.4);
}
.about_seller {
	display: flex;
	flex-direction: row;
	align-items: start;
	justify-content: start;
	text-align: center;
	font-size: 1.3em;
	width: 100%;
	padding: 0 2% 0 2%;
}
.about_seller > a {
	display: flex;
	flex-direction: row;
	width: 100%;
	max-height: 4em;
	text-decoration: none;
	color: black;
}




#lot_main_medium_right {		/*----------------------------------right----------*/
	display: flex;
	flex-direction: column;
	width: 96%;
	margin: 0 auto;
	font-size: 0.8em;
}
@media screen and (min-width: 750px) {
    #lot_seller {
	    position: sticky;
        top: 0;
    }
    #btn_form {
	display: none;
    }
	#lot_main_medium_left {
		width: 34%;
	}
	#lot_main_medium_right {
		width: 63%;
	}
}
@media screen and (min-width: 950px) {
	#lot_main_left {
		width: 80%;
	}
	#lot_banners {
		display: flex;
		flex-direction: column;
		width: 20%;
		margin:  0 0 0 0;
		padding: 0;
		justify-content: center;
		align-items: center;
	}
}


#lot_photo_view {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	margin: 0;
	overflow: hidden;
}
.prev_lot {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 95%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: rgba(0,0,0,0);
	font-size: 3em;
	color:rgba(255,255,255,0);
	transition: 0.5s;
}
.prev_lot:hover {
	right: 85%;
	background-color: rgba(0,0,0,0.2);
	color:rgba(255,255,255,1);
	cursor: pointer;
}
.next_lot {
	position: absolute;
	top: 0;
	left: 95%;
	bottom: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: rgba(0,0,0,0);
	font-size: 3em;
	color:rgba(255,255,255,0);
	transition: 0.5s;
}
.next_lot:hover {
	left: 85%;
	background-color: rgba(0,0,0,0.2);
	color:rgba(255,255,255,1);
	cursor: pointer;
}

#lot_photos_preview {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
}
#main_photo, .main_photo_preview {
	width: 100%;
	margin: 0;
}
.photo_preview {
	width: 19.5%;
	margin: 3px 0.25% 2px 0.25%;
}
.photo_preview:hover {
	cursor: pointer;
}
.phone, .email {
	position:relative;
	color: white;
}
.phone_a {
	display: none;
}
.phone_mask, .email_mask {
	position:absolute;
	display: flex;
	top:-0.2em;
	right:0;
	background-color: rgba(230,230,230,1);
	border-radius: 3px;
	border: 1px solid rgba(33,33,33,0.5);
	padding:0.3em 0.3em;
	font-size: 0.85em;
	white-space: pre;
	font-weight: 400;
	align-items: center;
	transition: 0.5s;
	cursor: pointer;
	color: #333333;
}
.phone_mask:hover, .email_mask:hover {
	border: 1px solid rgba(33,33,33,0.8);
	background-color: rgba(210,210,210,1);
}
#send_form_sell {
	display: none;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	margin: 0;
	padding: 7px 10px 7px 10px;

}
#message_sell_txt {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	margin: 0 auto 1em auto;
}	
#mess_sell_txt {
	width: 100%;
	min-height: 9em;
	font-family: Verdana, Arial, "Times New Roman";
	font-size: 1em;
	padding: 0.2em 0.3em;
	overflow: auto;
	resize: vertical;
	outline: none;
	border: 1px solid #333333;
	border-radius: 3px;
}
#mess_sell_txt:focus {
	 box-shadow: 0 0 6px rgba(0,0,0,0.4);
}
#ssend_btn, #scancel_btn {
	width: 100%;
	margin: 0 auto 1em auto;
}
/* таймер------------------------------------------------*/
#countdown_info{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width:250px;
	height:82px;
	text-align:center;
	background:#222;
	background-image:-webkit-linear-gradient(top,#222,#333,#333,#222);
	background-image:-moz-linear-gradient(top,#222,#333,#333,#222);
	background-image:-ms-linear-gradient(top,#222,#333,#333,#222);
	background-image:-o-linear-gradient(top,#222,#333,#333,#222);
	border:1px solid #111;
	border-radius:5px;
/*	box-shadow:0 0 8px rgba(0,0,0,0.6);*/
	margin:auto;
	padding:14px 0;
}
#countdown_info #tiles_info {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position:relative;
}
#countdown_info #tiles_info > span {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width:44px;
	max-width:44px;
	font:bold 22px 'Droid Sans',Arial,sans-serif;
	text-align:center;
	color:#111;
	background-color:#ddd;
	background-image:-webkit-linear-gradient(top,#bbb,#eee);
	background-image:-moz-linear-gradient(top,#bbb,#eee);
	background-image:-ms-linear-gradient(top,#bbb,#eee);
	background-image:-o-linear-gradient(top,#bbb,#eee);
	border-top:1px solid #fff;
	border-radius:3px;
	box-shadow:0 0 12px rgba(0,0,0,0.7);
	margin:0 7px;
	padding:10px 0;
}
#countdown_info .labels_info{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width:100%;
	height:20px;
	text-align:center;
}
#countdown_info .labels_info li{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width:23%;
	font:bold 10px 'Droid Sans',Arial,sans-serif;
	color:orange;
	text-shadow:1px 1px 0 #000;
	text-align:center;
	text-transform:uppercase;
	margin-top:6px;
}


/*------------------------messages--------------------------------------------------------------------------------*/

.topic_mess {
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
	padding: 0.4em;
	font-size: 1.1em;
	font-weight: 800;
	background-color: #fdd034;
}
.sub_mess {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 100%;
	max-height:40em;
	margin: 0;
	padding: 0;
	font-size: 1em;
	overflow-y: auto;
}
.sub_line {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0;
	padding: 0.2em 0 0.2em 0.2em ;
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
.photo_sub {
	display: flex;
	width: 40%;
	margin: 0;
	padding: 0;
	cursor: pointer;
	background-color: rgba(45,45,45,1);
}
.about_sub {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	text-align: left;
	width: 52%;
	margin: 0;
	padding: 0.2em 0.3em;
	white-space: pre;
}
.name_sub {
	display: flex;
	overflow-x:hidden;
	width: 100%;
	margin: 0;
	font-size: 0.9em;
}
.num_sub {
	display: flex;
	overflow-x:hidden;
	width: 100%;
	margin: 0;
	font-size: 0.7em;
}
.few_sub {
	display: flex;
	overflow-x:hidden;
	width: 100%;
	margin: 0;
	font-size: 0.7em;
}
.del_sub {
	display: flex;
	width: auto;
	align-items: center;
	margin: auto;
	padding:0;
	cursor: pointer;
	color: rgba(33,33,33,0);
}
.sub_line:hover .del_sub {
	color: rgba(33,33,33,0.3);
}

.sub_mess_top {
	display: flex;
	width: 100%;
}
.sub_line_top {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 90%;
	margin: 0 auto;
	border: 1px solid rgba(0,0,0,0.2);
}
.photo_sub_top {
	display: flex;
	width: 25%;
	cursor: pointer;
	background-color: rgba(45,45,45,1);
}
.about_sub_top {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	text-align: left;
	width: 70%;
	margin: 0;
	padding: 0.2em 0.5em;
	white-space: pre;
}
.name_sub_top {
	display: flex;
	overflow-x:hidden;
	width: 100%;
	margin: 0;
	font-size: 1.2em;
}
.num_sub_top {
	display: flex;
	overflow-x:hidden;
	width: 100%;
	margin: 0;
	font-size: 1em;
}
.few_sub_top {
	display: flex;
	overflow-x:hidden;
	width: 100%;
	margin: 0;
	font-size: 1em;
}
.del_sub_top {
	display: flex;
	width: auto;
	margin: auto;
	padding:0;
	cursor: pointer;
	color: rgba(33,33,33,0);
	font-size: 1.3em;
}

.sub_line_top:hover .del_sub_top {
	color: rgba(33,33,33,0.3);
}


.mess {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-end;
	width: 90%;
	margin: 0 auto;
	padding: 0;
	font-size: 0.9em;
}
.gray_ms {
	margin: 1em 5% 0.4em 5%;
}
#mess_text {
	display: flex;
	width: 100%;
	min-height: 7em;
	font-size: 1.3em;
	margin: 0 auto;
	padding: 0.4em;
	resize: vertical;
	outline: none;
	-moz-appearance: none;
	border: 1px solid rgba(0,0,0,0.2);
	overflow: auto;
	font-family: Verdana, Arial, "Times New Roman";
	border-radius: 3px;
}
.btn_mess {
	display: flex;
	width: 100%;
	flex-direction: row;
	justify-content: space-between;
}
#block_us {
	margin: 0.9em auto 0.3em 0;
	font-size: 1em;
	color: rgba(0,0,0,0.5);
	cursor: pointer;
	transition: 0.5s;
}
#block_us:hover  {
	color: rgba(0,0,250,1);
	text-decoration: underline;
}
#send_mess {
	margin: 0.9em 5% 0.3em auto;
	font-size: 1.3em;
}
.send_btn {
	background-color: rgba(0,0,0,0.3) !important;
	color: rgba(255,255,255,1)!important;
}
.messeges_all {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 90%;
	max-height: 30em;
	margin: 0 auto;
	padding: 0;
	font-size: 1em;
	overflow: auto;
}
.mess_day {
	display: flex;
	max-width: 80%;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 1em auto 0 auto;
	font-size: 0.8em;
}
.mess_rec {
	display: flex;
	max-width: 80%;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	text-align: left;
	margin: 0;
	padding: 0.5em 0.5em 0.2em 0.5em;
	background-color: rgba(100,0,100,0.1);
	border: 1px solid rgba(0,0,0,0.2);
	border-radius: 9px 9px 9px 0;
}
.mess_rec_line {
	display: flex;
	max-width: 100%;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	margin-top: 1em;
}
.mess_send_line {
	display: flex;
	max-width: 100%;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	margin-top: 1em;
}
.del_mes {
	display: flex;
	color: rgba(0,100,100,0);
	font-size: 1.8em;
	align-items: center;
	padding-right: 0.3em;
	padding-left: 0.3em;
	margin: auto 0 auto 0;
	cursor: pointer;
	transition: 0.5s;
}
.del_mes:hover {
	color: rgba(33,33,33,0.6) !important;
	font-size: 2em;
}
.mess_send {
	display: flex;
	max-width: 80%;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-end;
	text-align: left;
	margin: 0;
	padding: 0.5em 0.5em 0.2em 0.5em;
	background-color: rgba(0,100,100,0.1);
	border: 1px solid rgba(0,0,0,0.2);
	border-radius: 9px 9px 0 9px;
}
.mess_send_line:hover .del_mes {
	color: rgba(0,100,100,0.2);
}
.mess_rec_line:hover .del_mes {
	color: rgba(0,100,100,0.2);
}
.m_time {
	display: flex;
	white-space: pre;
	padding: 0.5em 0 0 0;
	font-size: 0.7em;
	color: rgba(0,0,0,0.6);
}
.fa-check {
	font-size: 1.1em;
}
.fa-spinner {
	font-size: 1.1em;
	color: gray;
}

/*------------------------protocol--------------------------------------------------------------------------------*/


.prot {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 98%;
	margin: 10px auto auto auto;
	padding: 30px;
	text-indent: 0;
	text-align: justify;
	background-color: white;
}
.prot_top {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	width: 100%;
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-size: 1em;
}
.top2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	width: 100%;
	margin: 0 0 20px 0;
	padding: 0;
	font-weight: 700;
	font-size: 1em;
}
.prot_1 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 0.1em;
	font-size: 0.6em;
	border-bottom: 1px solid rgba(33,33,33,0.2)
}
@media screen and (min-width: 635px) {
	.prot_1 {
		padding: 0.3em;
		font-size: 1em;
	}
	.prot_top {
		font-size: 1.5em;
	}
	.top2 {
		font-size: 1.5em;
	}
}
.prot_n{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 45%;
	margin: 0;
	padding: 0.3em;
	text-align: left;
	border-right: 1px solid rgba(33,33,33,0.2)
}
.prot_r{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 55%;
	margin: 0;
	padding: 0.3em 0.3em 0.3em 10px;
	font-weight: 800;
	text-align: left;
}

/*------------------------regul_all--------------------------------------------------------------------------------*/

.top_page_regul {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	margin: 0;
	min-height: 22em;
	padding: 2.6em 8% 0.5em 8%;
}
._sell {
	background-image: url(../images/how_sell.jpg);
}
._buy {
	background-image: url(../images/how_buy.jpg);
}
._regul {
	background-image: url(../images/regul.jpg);
}
._agree {
	background-image: url(../images/agree.jpg);
}
._priv {
	background-image: url(../images/priv.jpg);
}
._about {
	background-image: url(../images/about.jpg);
}
._faq {
	background-image: url(../images/faq.jpg);
}
._partner {
	background-image: url(../images/partner.jpg);
}
._contact {
	background-image: url(../images/contact.jpg);
}
._affairs {
	background-image: url(../images/affairs.jpg);
}
._price {
	background-image: url(../images/price.jpg);
}
._custom {
	background-image: url(../images/custom.jpg);
}
.p1 {
	color: #fdd034;
	font-weight: 800;
	font-size: 2.1em;
}
.p2 {
	color: #ffffff;
	font-weight: 500;
	font-size: 1.3em;
}
h1 {
	font-size: 1em;
	margin: 0;
}
p {
	margin: 0.1em;
}
.printer > a {
	font-size: 1.5em;
}
.printer > a:hover {
	color: #fdd034;
}
.center_page_75 {
	width: 100%;
}
.center_page_25 {
	display: flex;
	flex-direction: column;
	width: 100%;
}
@media screen and (min-width: 900px) {
	.center_page_75 {
		width: 75%;
	}
	.center_page_25 {
		width: 25%;
	}
}

.box {
  /*background-color: red;*/
  margin: 1em 0 1em 0;
  width: 100%;
  padding-top: 140%; /* 1:1 Aspect Ratio */
  position: relative;
}
 
/* If you want text inside of the container */
.content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.faq_part {
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 100%;
	margin: 1em 0 0.5em 0;
	font-weight: 800;
	font-size: 1.3em;
	text-align: center;
}
.faq_line {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 1em 0 0 0;
	border: 1px solid rgba(0,0,0,0.2);
	border-radius: 0;
	font-size: 1em;
}
.faq_main {
	display: flex;
	flex-direction: row;
	justify-content: left;
	width: 100%;
	margin: 0;
	font-weight: 800;
	font-size: 1.1em;
	text-align: justify;
}
.faq_btn {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	margin: 0;
	font-size: 1em;
	color: black;
	border-radius: 0;
	border: 0;
	transition: 0.5s;
	cursor: pointer;
	background-color: rgba(0,0,0,0.05);
	padding: 0.5em 3% 0.5em 1%;
	text-align: justify;
}
.faq_btn:hover {
	background-color: rgba(0,0,0,0.1);
}
.faq_btn:focus {
	outline: 0;
}
.f_btn_v {
	display: flex;
	flex-direction: row;
	margin: 0 1em 0 0.5em;
	font-size: 1.3em;
}
.faq_sub {
	display: flex;
	flex-direction: row;
	text-align: justify;
	margin: 1em 3% 1em 3em;
}

/*------------------------schedule--------------------------------------------------------------------------------*/
.top_auction_line {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	width: 100%;
	font-size: 1.6em;
	color: #333333;
	margin-top: 2em;
	text-indent: 0;
}
.sched {
	color: white;
	background-color: rgba(33,33,33,0.8);
	margin-top: 2em;
}
.auction_line {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	text-indent: 0;
	width: 100%;
	font-size: 1em;
	border-left: 1px solid rgba(0,0,0,0.2);
	border-right: 1px solid rgba(0,0,0,0.2);
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
.data_auction {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	width: 35%;
	padding: 0.4em 5%;
	border-right: 1px solid rgba(0,0,0,0.2);
}
.time_auction {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	width: 35%;
	padding: 0.4em 5%;
	border-right: 1px solid rgba(0,0,0,0.2);
}
.num_lots {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	width: 30%;
	padding: 0.4em 5%;
}
#send_time_auction_btn {
	display:none;
}

