/*Dashboard*/
:root{
	--color-soft-green: #afe4dd;
	--color-strong-green: #24b89a;
	--color-purple: #6b63ff;
	--color-soft-purple: #c5abfc;
	--color-soft-blue: #b8e2fc;
	--color-strong-blue:#0d49c6;
	--color-strong-pink: #ff80bc;
	--color-soft-pink: #ffbae0;
}

.cs_featured_products_li:nth-child(1):hover .cs_featured_products_image-container{
	background-color: --color-purple;
}

.row-my_account {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 61px;
}
.my_account_link{
    text-decoration: none !important;
}

.my_account_link:hover{
    box-shadow: 0 20px 25px 10px rgba(0,0,0,.07);
}

.col-content{
    height: 154px;
    width: 388px;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 10px 15px 0 rgba(0,0,0,.03);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    padding: 0 30px 0 20px;
}


.col-account-text p {
    color: #000;
    font-size: 20px;
    font-weight: 900;
    line-height: 24px;
    margin-top: 16px;
    text-decoration: none;
}

.col-account-text p span {
    display: block;
    color: #637178;
    font-size: 16px;
    line-height: 19px;
    margin-top: 10px;
    font-weight: 400;
}

.col-content img{
    border-radius: 100% !important;
}


@media(max-width: 767px){
	.row-my_account {
		display: flex;
		flex-direction: row;
		justify-content: center;
	}
	.col-content {
		height: 154px;
		width: 100%;
		margin: 10px 0;
	}
	
	.account-products .woocommerce .products_wrapper ul.products {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
	
	.account-products .woocommerce .products_wrapper ul.products li.product-category a {
		-webkit-flex-basis: 190px;
		flex-basis: 190px;
		max-width: 100%;
		display: -webkit-flex;
		display: flex;
		-webkit-align-items: center;
		align-items: center;
		margin-bottom: 40px;
		flex-direction: column;
	}
	
	.products_wrapper ul.products li.product-category a img {
		width: 90px;
		height: 90px;
		border-radius: 100%;
	}
	.products_wrapper ul.products li.product-category a .woocommerce-loop-category__title {
    	color: #637178;
		font-size: 20px;
	}
}

