/* =====================================================================
 *  MySpot — lean base (reset + engine utilities).
 *  Brandas/tipografija/komponentai gyvena dist/css/custom.css (SCSS).
 *  Manrope @font-face: helpers/_fonts.scss.
 * ===================================================================== */

/* --- Reset ---------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
img { max-width: 100%; height: auto; }
button { font: inherit; }

/* --- Form submit state (CF7) --------------------------------------- */
.submitting { position: relative; }
.submitting button,
.submitting input[type="button"] { pointer-events: none; }
.submitting::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.8);
	z-index: 11;
}
.submitting::after {
	content: '';
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	border-radius: 50%;
	border: 2px solid transparent;
	border-top-color: #2B2D2F;
	animation: formSpinner .6s linear infinite;
	z-index: 12;
}
@keyframes formSpinner { to { transform: rotate(360deg); } }
