*{
	box-sizing: border-box;
}
body{
	margin: 0;
	padding: 0;	
	color: #FFFFFF;
}
a{
	color: #FFFFFF;
	text-decoration: none;
}
.container{
	width: 1200px;
	margin: 0 auto;
}
.header_wrapp{
	display: flex;
	gap: 20px;
	align-items: center;
}
.menu_list{
	display: flex;
	gap: 10px;
	justify-content: space-between;
}
.chat_open_chat_edit_add_file{
	position: relative;
	width: 84px;
}
.chat_block{
	display: flex;
}
.chat_open_chat{
	display: flex;
    flex-direction: column;
	width: 465px;
}
.chat_open_chat_edit_block_wrapp{
	width: 330px;
	display: flex;
    flex-direction: column;
    gap: 15px;
}
.chat_open_chat_edit_field{
	width: 100%;
}
.chat_open_chat_history{
	color: #ffffff;
    padding: 20px;
    min-height: 400px;
    display: inline-block;
    box-sizing: border-box;
    width: 450px;
}
.chat_open_chat_history_wrapp{
	max-height: 450px;
    overflow: auto;
	background: #1d1d1d;
	border-radius: 20px 20px 0 0;
}
.chat_open_chat_history_item{
	color: #FFFFFF;
    padding: 10px;    
	border-radius: 10px;
    margin-right: 50px;
    background: #292929;
	margin-bottom: 10px;
	float: left;
    clear: both;
	font-size: 14px;
	max-width: 380px;
}
.chat_open_chat_history_item.my_message{
	margin-right: 0;	
    margin-left: 50px;
    background: #ff00c8;
	float: right;
}
.chat_open_chat_history_item_data{
	text-align: right;
    font-size: 10px;
	color: #616161;
	margin-top: 5px;
}
.my_message .chat_open_chat_history_item_data{
	color: #990078;
}
.chat_open_chat_history_item_reply{
	background: #404040;
    border-radius: 5px;
    padding: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
	margin-bottom: 10px;
	color: #797979;
}
.chat_open_chat_history_item.my_message .chat_open_chat_history_item_reply{	
	background: #941479;
	color: #F273D7;
}
.chat_open_chat_history_item_document{
	display: flex;
	margin-bottom: 10px;
}
.chat_open_chat_history_item_document_image{
	background-size: cover;
    width: 100px;
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
	cursor: pointer;
}
.chat_open_chat_history_item_document_name{
	margin-left: 20px;
    font-size: 18px;
    font-weight: bold;
    padding-top: 10px;
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.chat_open_chat_history_item_message{
	white-space-collapse: preserve-breaks;
}
.chat_open_chat_history_item_info{
	display: flex;
    justify-content: flex-end;
    align-items: flex-end;
	column-gap: 10px;
}
.chat_open_chat_history_item_info_edit{
	cursor: pointer;
    width: 16px;
	height: 16px;
	background-size: contain;
    background-position: center;
}
.chat_open_chat_edit_block{
	background: #1d1d1d;
    padding: 20px;
    border-radius: 0 0 20px 20px;
	display: flex;
	gap: 15px;
}
.chat_open_chat_edit_field_text {
    border: 1px solid #000000;
    min-height: 43px;
    padding: 10px;
    min-width: 272px;
    max-width: 272px;
    box-sizing: border-box;
	line-height: 16px;
	border-radius: 10px;
	height: 43px;
}
.message_edit_title{
	color: #168acd;
    font-weight: bold;
    padding: 10px 20px;	
}
.message_reply_text{
	padding: 10px 20px;
   /* white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;*/
    padding-right: 40px;
    background-color: #242424;
    font-size: 12px;
    min-height: 35px;
    color: #797979;
	border-radius: 5px;
}
.chat_active_chats_item_photo{
	background: linear-gradient(130.14deg, #053630 4.85%, #1C6F53 70.97%);
	width: 50px;
	height: 50px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius:50%;
	min-width: 50px;
	display: block;
}
.chat_active_chats_item_info{
	display: flex;
    flex-direction: column;
    width: 415px;
}
.chat_open_chat_edit_old_message{
	width: 330px;
}
.message_edit_title_block{
	display: flex;
    justify-content: space-between;
    width: 100%;
	position: relative;
}
.cancel_select{
	width: 26px;
    height: 26px;
    position: absolute;
    cursor: pointer;
    border-radius: 100%;
    box-sizing: border-box;
    background-color: #8d8d8d;
    margin-top: 5px;
    margin-right: 5px;
	right: 0;
}
.cancel_select:before {
    content: '';
    display: block;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    height: 3px;
    width: 17px;
    border-radius: 3px;
    background-color: #000000;
    position: absolute;
    top: 12px;
    left: 5px;
}
.cancel_select:after {
    content: '';
    display: block;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    height: 3px;
    width: 17px;
    border-radius: 3px;
    background-color: #000000;
    position: absolute;
    top: 12px;
    left: 5px;
}
.chat_open_chat_edit_field_block{
	display: flex;
	gap: 15px;
}
.chat_open_chat_edit_add_file_file {
    display: none;
}
.chat_open_chat_edit_add_file_image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #292929;
    height: 100%;
    border-radius: 5px;
}
.chat_open_chat_edit_add_file_image.empty_file{
	background-image: url(/chat/add_file.png);
	background-size: 12px;
}
/*.chat_open_chat_edit_add_file_image.empty_file:after {
    display: block;
    content: '+';
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 23.3333px;
    line-height: 26px;
    color: #000000;
    position: absolute;
    top: 50%;
    margin-top: -13px;
}*/
.chat_open_chat_edit_buttons{

}
.chat_image_remove.popup_close{
	top: 5px;
    right: 5px;
    z-index: 1;
	background-color: #ff5722;
}
.message_edit_title{
	display: none;
}
.chat_open_chat_edit_send{
    cursor: pointer;
    background: url('/chat/fishki_chat_send.png');
    width: 43px;
    height: 43px;
    background-size: contain;
}
.chat_active_chats_item.active_chat{
	background-color: #419fd9;
    color: #FFFFFF;
}
.new_message{
background-color: #effdde;
}
.chat_open_chat_history_item_info_buttons{
	display: flex;
    gap: 20px;
}
.del_chat_message{
	background-image: url('/chat/icon-remove.png');
}
.del_chat_message_photo{
	background-image: url('/chat/icon-delete.png');
}
.edit_chat_message{
	background-image: url('/chat/icon-edit.png');
}
.reply_chat_message{
	background-image: url('/chat/icon-reply.png');
}
@media (max-width: 768px) {
	.chat_open_chat_edit_send {
		font-size: 16px;
	}
	.chat_open_chat_history_item.my_message {
		margin-left: 10px;
	}
	.chat_open_chat_history {
		padding: 5px;
		min-height: 450px;
	}
	.chat_open_chat_history_wrapp {
		max-height: 450px;
	}
	.chat_open_chat_history_item {
		padding: 5px;
		margin-right: 10px;
	}
}
.lot_detail_wrapp{
	display: flex;
    gap: 50px;
}
.lot_detail_info{
	width: 100%;
}
body {
	background-color: #282828;
	color: #FFFFFF;
}
.lots_categoty_list{
	display: flex;
    width: 100%;
    justify-content: space-between;
	margin-bottom: -20px;
	margin-top:30px;
}
.lots_categoty_text{
	font-size: 20px;
}
.lots_categoty_item{
	width: 30%;
    background-color: #404040;
    text-align: center;
    line-height: 60px;
    border-radius: 20px 20px 0 0;
    cursor: pointer;
    padding-bottom: 20px;
    font-weight: bold;	
	font-size: 20px;
}
.lots_categoty_item.active{
	background-color: #1d1d1d;
}
.lots_item_list{
	border-radius: 20px 20px 0 0; 
	background-color: #1d1d1d;
	padding: 20px;
	position: relative;
}
.lot_item_title{
	display: flex;
    width: 100%;
	margin-bottom: 20px;
    padding: 0 20px;
    box-sizing: border-box;
}
.lot_item_title_name{
	width: 100%;
	font-weight: bold;
	font-size: 20px;
}
.lot_item_title_seller{
	min-width: 180px;
    text-align: center;
    font-weight: bold;
	font-size: 20px;
}
.lot_item_title_count{
	min-width: 200px;
    text-align: center;
    font-weight: bold;
	font-size: 20px;
	background-image: url('/upload/sort.png');
	background-size: 16px;
    background-repeat: no-repeat;
    background-position: 163px;
	cursor: pointer;
}
.lot_item_title_price{
	min-width: 200px;
    text-align: center;
    font-weight: bold;
	font-size: 20px;
	background-image: url('/upload/sort.png');
	background-size: 16px;
    background-repeat: no-repeat;
    background-position: 185px;
	cursor: pointer;
}
.lot_item{
    display: flex;
    width: 100%;
    margin-bottom: 10px;
    color: #FFFFFF;
    text-decoration: none;
    background-color: #292929;
    border-radius: 15px;
    padding: 10px 20px;  
	font-size: 18px;	
}
.lot_item:hover{
	background-color: #ff00c8;
}
.lot_item_name{
	width: 100%;
}
.lot_item_seller{
	min-width: 180px;
    text-align: center;
	white-space: nowrap;
}
.lot_item_count{
	min-width: 200px;
    text-align: center;
}
.lot_item_price{
	min-width: 200px;
    text-align: center;
}
body .popup_content_block{
	background-color: #282828;
    color: #FFFFFF;
}
.lot_type_input,.tovar_name_input,.sell_type_input,.sell_type_input,.sell_price_input,.sell_count_input,.min_count_input,.min_price_input{
	line-height: 20px;
    padding: 10px;
    width: 100%;
	border-radius: 5px;
    border: 0;
}
.button{
	background: linear-gradient(90deg, #ef01b5, #ac0087);
    line-height: 40px;
    color: #FFFFFF;
    font-size: 16px;
    padding: 0 20px;
    border-radius: 20px;
    display: block;
    white-space: nowrap;
    border: 1px solid #e800cb;
}
.form_field{
	margin-bottom: 15px;
}
.form_title{
	font-size: 24px;
    margin-bottom: 20px;
}
body .popup_close{
	background: linear-gradient(90deg, #ef01b5, #ac0087);
}
.lots{
	margin-top:50px;
}
.menu_item{
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
	border:1px solid transparent;
	padding: 0px 20px;
    border-radius: 20px;
    line-height: 30px;
}
.menu_item:hover{
	border: 1px solid #ef01b5;
}
.menu{
	width: 100%;
}
.logo{
	min-width: 180px;
	background: url('/upload/logo.png');
	background-size: cover;
    background-position: center;
    height: 140px;
}
.form_field_input input:focus,.form_field_input select:focus{
	outline: none;
}
.lot_detail_item_title{
	font-size: 30px;
	padding-left: 15px;
}
.lot_detail_item{
	background-color: #1d1d1d;
    border-radius: 20px;
    padding: 20px;
}
.lot_detail_item_info, .lot_detail_item_pay_info, .lot_detail_item_button{
	background-color: #292929;
    border-radius: 15px;
    padding: 15px;
    margin-top: 15px;
	display: flex;
    gap: 30px;
}
.lot_detail_item_info_field{
	display: flex;
    gap: 10px;
}
.lot_detail_item_info_field_title,.lot_detail_item_pay_info_field_title{
	width: 240px;
}
.lot_detail_item_pay_info_field_value input{
	line-height: 30px;
    border: 0;
    margin-top: 10px;
    border-radius: 10px;
    width: 220px;
}
.lot_detail_item_pay_button{
	cursor: pointer;
}
.popup_content .button{
	display: block;
    text-decoration: none;
    margin-top: 15px;
}
.lot_by_detail_wrapp{
	display: flex;
    gap: 50px;
}
.lot_by_detail_info, .lot_by_list_info{
	background-color: #1d1d1d;
    border-radius: 20px;
    padding: 20px;
	width: 100%;
}
.lot_by_detail_info_title, .lot_by_list_info_title{
	font-size: 30px;
    padding-left: 15px;
}
.lot_by_detail_info_field{
    background-color: #292929;
    border-radius: 15px;
    padding: 15px;
    margin-top: 15px;
    display: flex;
    gap: 30px;
}
.lot_by_list_info_item{
	background-color: #292929;
    border-radius: 15px;
    padding: 15px;
    margin-top: 15px;
    display: flex;
    gap: 30px;
	text-decoration: none;
    color: #FFFFFF;
}
.lot_by_list_info_item:hover{
	background-color: #ff00c8;
}
.lot_by_list_info_field_name,.lot_by_list_info_titles_name{
	width: 100%;
}
.lot_by_list_info_field,.lot_by_list_info_titles_field{
	min-width: 200px;
}
.lot_by_list_info_titles{
    padding: 15px;
    margin-top: 15px;
    display: flex;
    gap: 30px;
    text-decoration: none;
    color: #FFFFFF;
	font-weight: bold;
}
.lot_by_detail_info_field_name{
	width: 150px;
}
.header_search{
    min-width: 291px;
    background: url(/upload/search.png);
    background-size: cover;
    background-position: center;
    height: 49px;	
}