.cabinet{
	width: 100%;
}

.cabinet .error{
	text-align: center;
	font-size: 16px;
	color: rgba(0,0,0,0.7);
	padding: 10px 0;
}

.cabinet .cabinet-head{
	background: #fff;
}

.cabinet .cabinet-head ul{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 0;
	margin:0;
	list-style: none;
}

.cabinet .cabinet-head ul li{
	flex:1;
	color:rgba(0,0,0,0.65);
	text-align: center;
	padding: 20px 5px;
	cursor: pointer;
	transition: background 0.4s, color 0.4s;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cabinet .cabinet-head ul li a{
	color:rgba(0,0,0,0.65);
	text-decoration: none;
}

.cabinet .cabinet-head ul li.active{
	color:#fff;
	background: #359e29;
}

.cabinet .cabinet-head ul li:hover{
	color:#fff;
	background: #359e29;
}

.cabinet .cabinet-content{
	margin-top: 30px;
	background: #fff;
	padding: 15px;
	color:rgba(0,0,0,0.7);
}

.cabinet .cabinet-content .cabinet-mycabinet{
	width: 100%;
}

.cabinet .cabinet-content .cabinet-mycabinet .cabinet-mycabinet-information{
	font-size: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.cabinet .cabinet-content .cabinet-mycabinet .cabinet-mycabinet-information .logo{
	flex:0 0 20%;
	display: inline-block;
	border:1px solid rgba(0,0,0,0.3);
	font-size: 14px;
	padding: 20px;
}

.cabinet .cabinet-content .cabinet-mycabinet .cabinet-mycabinet-information .logo img{
}

.cabinet .cabinet-content .cabinet-mycabinet .cabinet-mycabinet-information .user-information{
	float: right;
	font-size: 14px;
	flex:0 0 80%;
	padding: 25px 30px;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	line-height: 22px;
}

.cabinet .cabinet-content .cabinet-mycabinet .cabinet-mycabinet-information .user-information span{
	width: 90px;
	font-size: 16px;
	display: inline-block;
}

/* КОРЗИНА */

.cabinet .cabinet-content .all-price-cart{
	font-size: 18px;
	padding: 15px 0;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	position: relative;
}

.cabinet .cabinet-content .all-price-cart span{
	float: right;
	color:#F5001D;
	margin-right: 155px;
}

.cabinet .cabinet-content .all-price-cart a.create-order{
	display: inline-block;
	padding: 0 15px;
	line-height: 40px;
	color: #fff;
	background: #359e29;
	font-weight: 300;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 13px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	transition: background 0.4s, color 0.4s;
}

.cabinet .cabinet-content .all-price-cart a.create-order:hover{
	background: #359e2999;
	color:rgba(0,0,0,0.75);
}

.cabinet .cabinet-content .cart-products{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
}

.cabinet .cabinet-content .cart-products .product{
	flex:1;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	margin-bottom: 10px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.cabinet .cabinet-content .cart-products .product:last-child{
	margin-bottom: 0;
	border-bottom: 0;
}

.cabinet .cabinet-content .cart-products .product .image{
	flex:0.3;
	text-align: center;
}

.cabinet .cabinet-content .cart-products .product .image img{
	max-width: 80%;
}

.cabinet .cabinet-content .cart-products .product .product-info{
	flex:1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 15px;
}

.cabinet .cabinet-content .cart-products .product .product-info .name{
	font-size: 18px;
	font-weight: 300;
	padding: 7px 0;
}

.cabinet .cabinet-content .cart-products .product .product-info .count{
	font-size: 16px;
	font-weight: 300;
	padding: 7px 0;
	color:#949494;
}

.cabinet .cabinet-content .cart-products .product .product-info .count a{
	padding: 3px;
	color:rgba(0,0,0,0.5);
	text-decoration: none;
	border:1px solid rgba(0,0,0,0.2);
	margin-left: 6px;
}


.cabinet .cabinet-content .cart-products .product .product-info .name a{
	text-decoration: none;
	color:#949494;
	transition: color 0.5s;
}

.cabinet .cabinet-content .cart-products .product .product-info .name a:hover{
	color:#359e29;
}

.cabinet .cabinet-content .cart-products .product .product-info .prices{
	width: 100%;
	font-weight: 300;
	font-size: 16px;
	color:#949494;
}

.cabinet .cabinet-content .cart-products .product .product-info .prices .new-price{
	color:#5FB11C;
}


.cabinet .cabinet-content .cart-products .product .product-info a.botton#del{
	color:#949494;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 500;
	letter-spacing: 0.5px;
	padding: 7px 0;
	transition: color 0.5s;
	width: max-content;
}

.cabinet .cabinet-content .cart-products .product .product-info a.botton#del:hover{
	color:#359e29;
	text-decoration: underline;
}

/*
	ИСТОРИЯ ЗАКАЗОВ
*/

.order-history{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	background: #fff;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	cursor: pointer;
}

.order-history:last-child{
	margin-bottom: 0;
	padding-bottom: 10px;
	border-bottom: none;
}

.order-history .order-history-left{
	display: inline-block;
	width: 49%;
	flex:1;
}

.order-history .order-history-right{
	text-align: right;
	flex:1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 49%;
}

.order-history .order-history-left .order-history-id{
	color:rgba(0,0,0,0.4);
	line-height: 25px;
}

.order-history .order-history-left .order-history-status{
	line-height: 22px;
}

.order-history .order-history-left .order-history-status.start{
	color:#BF3330;
}


.order-history .order-history-left .order-history-status.middle{
	color:#BF8F30;
}

.order-history .order-history-left .order-history-status.success{
	color:#359e29;
}

.order-history .order-history-left .order-history-status span{
	width: 55px;
	color:rgba(0,0,0,0.7);
	display: inline-block;
}

.order-history .order-history-right .summ{
	color:rgba(0,0,0,0.6);
	font-size: 18px;
}

/*
		СПИСОК ЖЕЛАНИЙ
*/


.cabinet .cabinet-content .whitelist-products{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
}

.cabinet .cabinet-content .whitelist-products .product{
	flex:1;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	margin-bottom: 10px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.cabinet .cabinet-content .whitelist-products .product:last-child{
	margin-bottom: 0;
	border-bottom: 0;
}

.cabinet .cabinet-content .whitelist-products .product .image{
	flex:0.3;
}

.cabinet .cabinet-content .whitelist-products .product .image img{
	width: 80%;
	object-fit: contain;
}

.cabinet .cabinet-content .whitelist-products .product .product-info{
	flex:1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 15px;
}

.cabinet .cabinet-content .whitelist-products .product .product-info .name{
	font-size: 18px;
	font-weight: 300;
	padding: 7px 0;
}

.cabinet .cabinet-content .whitelist-products .product .product-info .count{
	font-size: 16px;
	font-weight: 300;
	padding: 7px 0;
	color:#949494;
}


.cabinet .cabinet-content .whitelist-products .product .product-info .name a{
	text-decoration: none;
	color:#949494;
	transition: color 0.5s;
}

.cabinet .cabinet-content .whitelist-products .product .product-info .name a:hover{
	color:#359e29;
}

.cabinet .cabinet-content .whitelist-products .product .product-info .prices{
	width: 100%;
	font-weight: 300;
	font-size: 16px;
	color:#949494;
}

.cabinet .cabinet-content .whitelist-products .product .product-info .prices .new-price{
	color:#5FB11C;
}


.cabinet .cabinet-content .whitelist-products .product .product-info a.botton#to-cart, .cabinet .cabinet-content .whitelist-products .product .product-info a.botton#to-del{
	color:#949494;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 500;
	letter-spacing: 0.5px;
	padding: 7px 0;
	transition: color 0.5s;
}

.cabinet .cabinet-content .whitelist-products .product .product-info a.botton#to-cart:hover{
	color:#359e29;
	text-decoration: underline;
}

/*
		НАСТРОЙКИ
*/

.cabinet .cabinet-content .cabinet-settings{
	width: 60%;
	margin:0 auto;
}

.cabinet .cabinet-content .cabinet-settings .block{
	width: 100%;
	margin-bottom: 20px;
}

.cabinet .cabinet-content .cabinet-settings .block span{
	display: block;
	line-height: 22px;
	font-size: 14px;
	color:rgba(0,0,0,0.6);
}

.cabinet .cabinet-content .cabinet-settings .block input{
	padding: 15px 15px;
	color:rgba(0,0,0,0.6);
	font-size: 15px;
	width: 100%;
	border:0;
	outline: 0;
	border:1px solid #359e29;
}

.cabinet .cabinet-content .cabinet-settings .submits{
	text-align: center;
}

.cabinet .cabinet-content .cabinet-settings .submits input{
	border:none;
	outline: 0;
	background: #359e29;
	padding: 15px 15px;
	color:#fff;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.4s, color 0.4s;
}

.cabinet .cabinet-content .cabinet-settings .submits input:hover{
	background: #359e2999;
	color:rgba(0,0,0,0.7);
}


.cabinet .cabinet-content .bonuses{
	font-size: 18px;
}

.cabinet .cabinet-content .bonuses span{
	color: #359e29;
}

.cabinet .cabinet-content .bonuses__helper{
	margin-top: 15px;
	color: #b3b3b3;
	font-size: 12px;
	line-height: 1.4;
}

.cabinet .cabinet-content .bonuses__helper span {
	color: #6f6f6f;
	font-size: 13px;
	width: 20px;
	display: inline-block;
}

.cabinet .cabinet-content .bonuses__helper a {
	color: #6f6f6f;
	font-size: 13px;
}
