$containerBackground: #e6e6ea;
$containerHeader : #d3d3d3;
$containerSubHeader : #dddddf;
$containerMainSelectBg: #c9c9c9;
$containerMainSelectOptionsBg: #bfbfbf;
$colorOne: #04b571;
$colorTwo: #000000;
$colorThree: #ffffff;
$colorFour: #c14244;
$colorFive: #363636;
$colorSix: #ebebeb;
$containerMainSelectBgNew:#ffffff;
$colorSeven: #c0c0c0;
$colorEight: #cecece;

$customFieldItemBg: #dddddf;
$customFieldItemBgAlt: #d1d1d1;

@function wptrove-insert-color-svg($colour) {
    @return '%23' + str-slice('#{$colour}', 2, -1);
}
@mixin wptrove-rounded-button($size: 20px, $bgColor: #000, $textColor: #fff, $paddingVert: 12px, $paddingHor: 36px) {
	font-size: ( $size * 0.6 );
	background-color: $bgColor;
	padding: ( $paddingVert * 0.6 ) ( $paddingHor * 0.6 );
	color: $textColor;
	border-radius: 1.2em;
	@media screen and (min-width: 1201px) {
		font-size: $size;
		background-color: $bgColor;
		padding: $paddingVert $paddingHor;
		color: $textColor;
		border-radius: 1.4em;
	}
	display: inline-block;
	cursor: pointer;
	font-weight: 700;
	line-height: 1.0;
}
@keyframes wptrove-spinner-icon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@mixin wptrove-spinner($size: 48px, $border: #000, $borderTop: #fff, $borderSize: 6px) {
    border: $borderSize solid $border; /* Light grey */
    border-top: $borderSize solid $borderTop; /* Blue */
    border-radius: 50%;
    width: $size;
    height: $size;
    animation: wptrove-spinner-icon 2s linear infinite;
    display: inline-block;
}
@mixin wptrove-container($width:100%, $padding:10%, $margin: 0){
	width: $width;
	margin: $margin;
	padding: $padding;
}
@mixin wptrove-heading-one(){
	font-size: 1.6rem;
	font-weight: bold;
	margin: 0 0 1.5em 0;
	@media screen and (min-width: 1201px) {
		font-size: 2.0rem;
	}
}
@mixin wptrove-svg-bg($size:24px) {
	width: $size;
	height: $size;
	background-position: center;
	background-repeat: no-repeat;
}