/**
Theme Name: Spectron Toys
Author: Modern Minds
Author URI: http://modernminds.nl
Description: Spectron Toys - child theme of Astra theme
Version: 1.0.0
Text Domain: spectron-toys
Template: astra
*/

/**
 * Default Footer background color
 * (from 'original' site design)
 * 
 * used when Custom Field => Footer Background Color isn't set via WP
 */
:root {
	--footer-background-color: #1e1e1c;
}


/**
 * Styles for 'Single Brand Template => Stores'
 */
.stores,
.store {
	display: flex;

	align-items: center;
	justify-content: center;
}

.stores {
	width: 100%;

	flex-flow: row wrap;
	gap: 32px 32px;
}

.store {
	width: 200px;
	height: 60px;

	padding: 0 8px;
	border-radius: 8px;
}


/**
* Styles for Custom Animations of Elementor Entrance Animations
*/
.fadeInDownLeft {
	animation-name: fadeInDownLeft;
}

@keyframes fadeInDownLeft {
	from {
		visibility: visible;
		transform: translate3d(-100%, -100%, 0);
	}
	80% {
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transform: translate3d(0,0,0);
	}

	70% {
		animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		transform: translate3d(0, -15px, 0);
	}

	90% {
		transform: translate3d(0,-4px,0);
	}

	to {
		transform: translate3d(0, 0, 0);
	}

}
