/**
 * Advanced WooCommerce Product Sales Reporting - Statistics & Forecast - Backend CSS
 *
 * @author  WPFactory
 */

/* ANIMATION RIGHT TO LEFT*/
@-webkit-keyframes rightToLeft{
	0% {
		opacity: 0;
		-webkit-transform: translateX(300px);
		-moz-transform: translateX(300px);
		transform: translateX(300px) ;

	}
	30% {
		opacity: 1;
		-webkit-transform: translateX(0px) ;
		-moz-transform: translateX(0px) ;
		transform: translateX(0px) ;

	}
	100% {
		opacity: 1;
		-webkit-transform: scale(1) ;
		-moz-transform:  scale(1) ;
		transform:  scale(1) ;

	}
}

.rightToLeft{
	-webkit-animation: rightToLeft 2s ease-in-out;
	-moz-animation: rightToLeft 2s ease-in-out;
	-o-animation: rightToLeft 2s ease-in-out;
	-ms-animation: rightToLeft 2s ease-in-out;
	animation: rightToLeft 2s ease-in-out;

}

.web_logo{
		float:right;
}
.web_logo img{
	width: 150px;
}

.webdWoocommerceReportingStatistics .rating i.fa-star{
	color:gold;
}
/* === ajaxify === */
.webdWoocommerceReportingStatistics.loading > * {
	opacity:0.2;
}

.webdWoocommerceReportingStatistics.loading:before {
	position:fixed;
	content: "Loading...";
	font-size:2em;
	padding: 22px;
	background: #000;
	background: url(../images/loading.gif) no-repeat center center;
	color: #777;
	width: 50%;
	height:50%;
	margin-left:15%;
	box-sizing: border-box;
	text-align:center;
}

/* =============== RESPONSES  ================== */

.webdWoocommerceReportingStatistics .msg,.webdWoocommerceReportingStatistics .response{
		background:#ccc;
		padding:10px;
		border:1px solid #777;
		display:none;
}
.webdWoocommerceReportingStatistics .success{
		background:lightGreen;
		padding:5px;
		border:1px solid green;
		color:#fff;
}
.webdWoocommerceReportingStatistics .error{
		background:#FFCCCB;
		padding:5px;
		border:1px solid red;
}
.webdWoocommerceReportingStatistics .warning{
		background:#d9534f;
		padding:5px;
		color:#fff;
}

.webdWoocommerceReportingStatistics .nav-tab-wrapper{
	margin-bottom:20px;
}

.webdWoocommerceReportingStatistics .text-center{
	text-align:center;
}

.webdWoocommerceReportingStatistics .totals{
	font-weight:bold;
}

.webdWoocommerceReportingStatistics .clearfix{
	overflow:hidden;
	clear:both;
	width:100%;
	box-sizing:border-box;
}

.webdWoocommerceReportingStatistics .custom_fields{
  color: #50575e;
  font-style: italic;
  background: #f6f6f6;
  border: 1px solid 1px solid #c5c5c5;
  display: flex;
  align-items: center;
  margin: 0 auto;
	margin-bottom: 0px;
  margin-bottom: 10px;
  box-shadow: 0 0 2px #ccc;
}

.webdWoocommerceReportingStatistics .report_widget{
		background:#fff;
		padding:5px;
		border:3px solid #ccc;
		transition:all .2s linear;
		box-sizing:border-box;
		overflow:hidden;
		margin-bottom:10px;
}
.webdWoocommerceReportingStatistics .report_widget:hover{
		border:3px solid #12B41F;
}

.webdWoocommerceReportingStatistics .reportCalendar{
		text-align:center;
		padding:10px;

}
.webdWoocommerceReportingStatistics .reportCalendar input{
		border-radius:3px;

}
.webdWoocommerceReportingStatistics .reportCalendar input.from,.webdWoocommerceReportingStatistics .reportCalendar input.to{
		padding:4px;

}

.webdWoocommerceReportingStatistics.column1,
.webdWoocommerceReportingStatistics.columns2,
.webdWoocommerceReportingStatistics.columns3,
.webdWoocommerceReportingStatistics.columns4,
.webdWoocommerceReportingStatistics.columns5,
.webdWoocommerceReportingStatistics.columns6{
	/*box-sizing:border-box;*/
	float:left;
	box-sizing:border-box;
	padding:5px;
	margin:0 0.5%;
}

.webdWoocommerceReportingStatistics.column1{
	width:100%;
	float:none;
}
.webdWoocommerceReportingStatisticscolumns2{
	width:49% ;
}
.webdWoocommerceReportingStatistics.columns3{
	width:32.3% ;
}
.webdWoocommerceReportingStatistics.columns4{
	width:24%;
}
.webdWoocommerceReportingStatistics.columns5{
	width:19%;
}
.webdWoocommerceReportingStatistics.columns6{
	width:15.6%;
}

*/
.webdWoocommerceReportingStatistics .report_widget tbody tr,.webdWoocommerceReportingStatistics .report_widget thead th,
.webdWoocommerceReportingStatistics #tabs2 tbody tr,.webdWoocommerceReportingStatistics #tabs2 thead th{
		text-align:center;
}

/*  PRO VERSION MODAL */
#webdWoocommerceReportingStatisticsModal, #extendwp_extensions_popup {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
#webdWoocommerceReportingStatisticsModal .modal-content, .extendwp_extensions_content {
	background-color: #fefefe;
	margin: 10% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 50%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
#webdWoocommerceReportingStatisticsModal .close, .extendwp_close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

#webdWoocommerceReportingStatisticsModal .close:hover,
#webdWoocommerceReportingStatisticsModal .close:focus , .extendwp_close:hover, .extendwp_close:focus{
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.verticalAlign{
  display: flex;
  align-items: center;
  justify-content: center;
}

.extend_flex{
	display:flex;
	align-content:center;
	justify-content:space-around;
	flex-wrap:wrap;
}
.extend_flex > div{
	width:25% !important;
	padding:15px !important;
	box-sizing:border-box !important;
}
.extend_flex img{
	max-width:100%;
}

.webdWoocommerceReportingStatistics .premium_button{
		color:#fff;
		background:#42b72a;
		padding:5px;
		margin:5px;
		text-decoration:none;
		font-size:1.2em;
		border-radius:0px;
}

.webdWoocommerceReportingStatistics .premium_msg{
		background:#F08080;
		border:1px solid red;
		text-align:center;
		padding:10px;
		margin:10px;
		text-align:center;
}
.webdWoocommerceReportingStatistics h1.proVersion a{
	color:#F08080;
}

.webdWoocommerceReportingStatistics .reportCalendar input{
	border-radius:5px !important;
}

#webdWoocommerceReportingStatisticsModal .proUrl{
	color:#fff;
	background:#42b72a;
	padding:10px;
	font-weight:bold;
	text-decoration:none;
}

.webdWoocommerceReportingStatistics .flexmeContainer{
	display: flex;
	justify-content: space-between;
	align-items:center;
	flex-wrap: wrap;
	margin-bottom:30px;
}
.webdWoocommerceReportingStatistics .flexmeContainer div{
	align-self: center;
	text-align:center;
	height:auto;
	background:#fff;
	box-sizing:border-box;
	margin-bottom:20px;
	width:24%;

}
.webdWoocommerceReportingStatistics.flexmeContainer .dashicons-yes-alt{
	color:#42b72a;
}
.webdWoocommerceReportingStatistics.flexmeContainer .dashicons-warning{
	color:#FF8C00;
}
.webdWoocommerceReportingStatistics .flexmeContainer .dashicons-dismiss{
	color:#db4938;
}

.webdWoocommerceReportingStatistics .column1, .webdWoocommerceReportingStatistics .columns2, .webdWoocommerceReportingStatistics .overview , .webdWoocommerceReportingStatistics .no_orders {
	display:none;
}

.webdWoocommerceReportingStatistics .progress{
	font-weight:600;
	font-size:16px;
}
.webdWoocommerceReportingStatistics .progressBar{
	background:#90EE90;
	width:0px;
	height:30px;
	margin:10px 0;
}

@media only screen and (max-width: 980px) {
	.webdWoocommerceReportingStatistics .flexmeContainer{
		display: block;
	}
	.webdWoocommerceReportingStatistics .flexmeContainer div{
		width:99%;
	}
}

@media (min-width:768px){

	.webdWoocommerceReportingStatistics table thead,.webdWoocommerceReportingStatistics table tbody{
		display:block;
	}
	.webdWoocommerceReportingStatistics table tr {
		display:flex;
		flex: 0 0 100%;
		flex-shrink: 0;
	}
	.webdWoocommerceReportingStatistics tbody{
		max-height:400px;
		overflow:auto;
		overflow-y:scroll;
	}
	.webdWoocommerceReportingStatistics td,.webdWoocommerceReportingStatistics th{
		width: calc(100% - 9px);
		text-align:center !important;
	}

}

.webdWoocommerceReportingStatistics button{
	background:#42b72a;
	color:#fff;
	text-align:right;
	border:none;
	margin:10px;
	padding:5px;
	cursor:pointer;
}

.webdWoocommerceReportingStatistics .overview{
	background:#efefef;
	border-radius:4px;
	box-shadow:0 2px 3px #ccc;
	padding:5px;
}
.webdWoocommerceReportingStatistics  .overview .report_widget:nth-child(even) i, .webdWoocommerceReportingStatistics .overview .report_widget:nth-child(even) span{
	color:#42b72a;
}
.webdWoocommerceReportingStatistics .overview .report_widget:nth-child(odd) i, .webdWoocommerceReportingStatistics .overview .report_widget:nth-child(odd) span{
	color:#FF8C00;
}

.webdWoocommerceReportingStatistics .overview .report_widget.em,.webdWoocommerceReportingStatistics .report_widget.em{
	background:#9B5C8F;
	color:#fff;
	font-weight:bold;
	border:3px solid #fff;
}
.webdWoocommerceReportingStatistics .overview .report_widget.em:hover{
	border:none;
}

.webdWoocommerceReportingStatistics .overview .report_widget.em i, .webdWoocommerceReportingStatistics .overview .report_widget.em span, .webdWoocommerceReportingStatistics .report_widget.em h3{
	color:#fff;
}
.webdWoocommerceReportingStatistics .overview span{
		font-size:20px;
}

.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{
	background:#fff !important;
}

.webdWoocommerceReportingStatistics .dateFilter {
	margin-bottom: 10px;
}

@media (max-width:767px){
	.webdWoocommerceReportingStatistics.columns2,
	.webdWoocommerceReportingStatistics.columns3,
	.webdWoocommerceReportingStatistics.columns4,
	.webdWoocommerceReportingStatistics.columns5,
	.webdWoocommerceReportingStatistics.columns6{
		float:none !important;
		width:99% !important;
	}

	.webdWoocommerceReportingStatistics .chart-container{
		width:100%;
		height:400px;
		position:relative;
	}

	.webdWoocommerceReportingStatistics  canvas{
		width:90% !important;
		height:90% !important;
	}

	.extend_flex{
		display:block
	}
	.extend_flex > div{
		width:100% !important;
		padding:10px !important;
		box-sizing:border-box !important;
	}
}
