:root {
	--color-white: #ffffff;
	--color-black: #000000;
	--color-bg: #ffffff;
	--color-hover: #ff0000;
	--container-width: 700px;
    --container-padding: 15px;

	--font-f: 'Montserrat', sans-serif;
}

body {
	margin: 0;
	font-family: var(--font-f);
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	color: var(--color-black);
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	scroll-behavior: smooth;
}
html, div, span, applet, object, iframe,
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, 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
button {
	padding: 0;
	border: none;
	font: inherit;
	color: inherit;
	background-color: transparent;
	cursor: pointer;
	outline: none !important;
}
input {
	outline: none !important;
}

input[type='number'] {
    -moz-appearance: textfield;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

a {
	text-decoration: none !important;
	color: inherit;
	display: inline-block;
	position: relative;
	outline: none !important;
	transition: all 0.2s linear;
}

a:hover {
	color: var(--color-hover);
}

section {
	position: relative;
}

strong, b {
	font-weight: 700;
}

.container {
	width: 100%;
	max-width: calc(var(--container-width) + var(--container-padding) + var(--container-padding));
	margin: 0 auto;
	padding: 0 var(--container-padding);
	position: relative;
	z-index: 2;
}

.img_cont img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.img_cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main {
    min-height: 100vh;
    padding: 15px 0;
}

.uk-button {
    transition: all .3s ease-in-out;
}

.uk-button-success {
    background-color: #32d296;
    color: #ffffff;
}
.uk-button-success:hover {
    background-color: #19956a;
}
.uk-sticky-wrapper {
    background-color: #ffffff;
    padding: 15px 0;
}

.uk-checkbox, .uk-radio {
    min-width: 16px;
    margin-top: 1px;
    margin-right: 4px;
}

.uk-checkbox-label {
    display: flex;
}
