/*!
Theme Name: ecommerce
*/

.flex-row-space-between {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.flex-row-space-around {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.flex-row-center {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.flex-col-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.gap10 {
	gap: 10px;
}

.hr {
	background-color: var(--dark-blue);
	width: 100%;
	height: 1px;
}

.text-footer {
	color: var(--dark-blue);
	font-size: var(--h7);
	font-weight: 500;
    text-transform: capitalize;
}

.text-footer-white {
	color: var(--main-bg-color);
	font-size: var(--h5);
	display: flex;
	align-items: center;
}

.footer-bottom-line {
	background-color: var(--dark-blue);
	padding: 0 10px;
}

