.woocommerce-custom-dashboard .row{
	display: inline-flex;
	flex-flow: wrap;
	width: 100%;
}

.woocommerce-custom-dashboard form button {
  padding: 10px 20px;
  background: #1986e5;
  color: white;
  border: 1px solid white;
}

.woocommerce-custom-dashboard form button:hover{
	cursor: pointer;
	opacity: 0.75;
}

.woocommerce-custom-dashboard .row .col{
	padding: 10px;
	min-width: 30%;
	background-color:  white;
	margin: 5px;
	text-align: center;
	border: 1px solid #dfdddd;
}

.woocommerce-custom-dashboard form .row .col{
	background-color: #f8f8f8;
}

.woocommerce-custom-dashboard .row .col label{
	text-align: left;
	width: 30%;
	display: inline-block;
}

.woocommerce-custom-dashboard .sales-report .row .col{
	padding: 10px;
	min-width: 20.9999%;
}

.woocommerce-custom-dashboard .today-report .row .col{
	padding: 10px;
	min-width: 20.9999%;
}

@media only screen and (max-width: 600px) {
	
	.woocommerce-custom-dashboard .sales-report .row .col{
		padding: 10px;
		min-width: 95%;
	}

	.woocommerce-custom-dashboard .today-report .row .col{
		padding: 10px;
		min-width: 95%;
	}

	.woocommerce-custom-dashboard .row .col{
		padding: 10px;
		min-width: 95%;
		background-color:  white;
		margin: 5px;
	}
}

#best-selling-chart{
	background: white;
  padding: 15px 25px;
}

#best-selling-chart table{
	  border-collapse: collapse;
    margin: 15px 25px;
}

#best-selling-chart table th{

	text-align: left;
}

#best-selling-chart table tr{

	border-bottom: 1px solid #f0f0f1;
}

#best-selling-chart table tr td.product-name{

	width: fit-content;
}

#best-selling-chart table tr td.sales{
	text-align: right;
}

@keyframes loading_animation {
  0%   {opacity: 0.5;}
  25%  {opacity: 0.7;}
  50%  {opacity: 0.8;}
  100% {opacity: 0.5;}
}