/*
Theme Name: The Lucky Hand
Author: Bogdan Bujor
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
	--font-base: 'Source Sans Pro', sans-serif;
}

* {
	box-sizing: border-box;
}

body {
	font-family: var(--font-base);
}

img {
	max-width: 100%;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.site-logo {
	margin-top: 40px;
	text-align: center;
}

.product-wrap {
	margin-top: 40px;
	margin-bottom: 40px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-column-gap: 15px;
	grid-row-gap: 30px;
}
.product-name {
	text-align: center;
}
@media (max-width: 767px) {
	.product-wrap {
		grid-template-columns: repeat(2, 1fr);
	}
}

.contact-form {
	max-width: 400px;
	margin-top: 40px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
	padding: 20px;
	background-color: #eee;
}
.wpcf7,
.wpcf7-form,
.form-field,
.form-field label,
.wpcf7-form-control-wrap {
	width: 100%;
}
.form-field {
	margin-bottom: 20px;
}
.form-field label,
.wpcf7-form-control-wrap {
	display: block;
}
.wpcf7-form-control-wrap {
	margin-top: 5px;
}
.form-field input,
.form-field textarea {
	width: 100%;
	padding: 10px;
	font-family: var(--font-base);
}
.wpcf7-list-item {
	width: 100%;
}
.form-field input[type=checkbox] {
	width: auto;
}
.form-field input[type=submit] {
	cursor: pointer;
	background-color: orange;
	color: white;
	border: none;
	border-radius: 0;
	font-size: 18px;
	text-transform: uppercase;
}
.wpcf7-spinner {
	position: absolute;
	display: block;
}