:root {
	--paddingTopBottom: 20px 0px;
	--mainColor: #1b1b1b;
	--color-black: #1b1b1b;
	--color-gray-1: #E9E9E9;
	--color-gray-2: #BEC5C8;
	--color-gray-3: #828789;
	--color-gray-4: #626667;
	--swiper-navigation-size: 44px;
}

body {
	font-family: PulpDisplay, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;

	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-size: 15px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: .5rem;
	font-weight: 600;
	line-height: 1.2;
}

.h5,
h5 {
	font-size: 1.25rem;
}

.container {
	/* width: 100%; */
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}

.hidden {
	display: none !important;
}

img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	max-height: 500px;
}

a {
	text-decoration: none;
	color: black
}

.preline-text {
	white-space: pre-line;
}

.padding-m {
	padding: 1em;
}

/* MARGINS */
.margin-tb-10 {
	margin-top: 10px;
	margin-bottom: 10px;
}

.margin-tb-20 {
	margin-top: 20px;
	margin-bottom: 20px;
}

.margin-tb-40 {
	margin-top: 40px;
	margin-bottom: 40px;
}

.margin-tb-60 {
	margin-top: 60px;
	margin-bottom: 60px;
}

/* MARGINS */

.no-style-btn {
	border: 0;
	background: none;
	padding: 0;
	cursor: pointer;
}

.no-style-btn>svg {
	fill: #000000;
	height: 22px;
	width: 22px;
}

.multiple-buttons-groups {
	display: flex;
	gap: 1em;
	flex-wrap: nowrap;
}

.open-login-modal {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.btn-secondary {
	background: #fff;
	color: var(--mainColor);
	border: 0;
	padding: 1em;
	width: 100%;
	font-size: 1.15em;
	cursor: pointer;
	text-transform: uppercase;
	display: inline-block;
	box-sizing: border-box;
	font-weight: 700;
	text-align: center;
	border: 2px solid var(--mainColor);
	display: flex;
	align-items: center;
	justify-content: center;
}


.text-uppercase {
	text-transform: uppercase;
}

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

.text-nowrap {
	white-space: nowrap;
}

.products-wrapper-flex {
	display: flex;
	flex-wrap: wrap;
	padding: 2em 1.5em 0;
}

.ma-product-list-wrapper {
	flex-basis: 20%;
	max-width: 20%;
	box-sizing: border-box;
	padding: 2px;
}

.btn-primary {
	background: var(--mainColor);
	color: #fff;
	border: 0;
	padding: 1em;
	width: 100%;
	font-size: 1.15em;
	cursor: pointer;
	text-transform: uppercase;
}

.login-form-container {
	margin: 3em auto;
	width: 100%;
	max-width: 350px;
}

.login-form-container .login-buttons {
	display: flex;
	flex-direction: column;
	margin: 1em 0px;
	gap: .5em;
}

.login-form-container .login-buttons a {
	text-decoration: none;
	color: var(--color-black);
	font-weight: bold;
}

.login-form-container .login-buttons a.btn {
	color: #fff;
	text-align: center;
}

.notification {
	background: var(--color-gray-1);
	text-align: center;
	font-weight: bold;
}

.notification .error-text {
	padding: 1em;
}


.login-buttons.back-to-cart {
	margin-top: 1em;
}

.login-buttons.back-to-cart a {
	color: var(--color-black);
	text-decoration: none;
}

.ma-form-label input[type="checkbox"] {
	display: inline-block;
	width: auto;
	height: auto;
	line-height: 100%;
	margin-right: .5em;
}

button#proceed-button {
	background: var(--mainColor);
	color: #fff;
	border: 0;
	padding: 1em;
	width: 100%;
	font-size: 1.15em;
	cursor: pointer;
	text-transform: uppercase;
}

.ma-form-label {
	display: flex;
	flex-direction: column;
	margin-bottom: 1em;
}

.ma-form-label label {
	margin-bottom: .25em;
	font-size: .9em;
	color: var(--color-black);
}

.ma-form-label input {
	display: block;
	width: 100%;
	height: calc(1.5em + .75rem + 2px);
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: 0;
	-webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	max-width: 100%;
	box-sizing: border-box;
}

.ma-form-label select {
	width: 100%;
	box-sizing: border-box;
	height: calc(1.5em + .75rem + 2px);
	padding: .375rem .75rem;
	border: 1px solid #ced4da;
}

/* RESPONSIVE */
@media only screen and (max-width: 640px) {

	.no-padding {
		padding: 0;
	}

	.no-padding div {
		margin: 0 !important;
	}

	.container {
		margin: 0 20px;
		padding: 0px 1em;
		box-sizing: border-box;
	}

	.login-form-container .login-buttons a {
		box-sizing: border-box;
	}

}

@media only screen and (max-width: 500px) {
	.ma-logo-wrapper {
		max-width: 30%;
	}
}