@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

:root {
	--color-black: #343434;
	--color-green-1: #20A741;
	--color-green-2: #C8DECD;
	--color-dark-grey: #5F5F5F;
	--color-grey: #7F7F7F;
	--color-light-grey: #CBCBCB;
	--color-red: #E31E27;
}

::-moz-selection{background:var(--color-green-1);color:#FFF}
::selection{background:var(--color-green-1);color:#FFF}

::-webkit-scrollbar {
	background: #FFF;
	width: 8px;
}
::-webkit-scrollbar-track {
	background: #FFF;
	border-radius: 2px;
	box-shadow: inset 0 0 1px 0 rgba(0,0,0,0.3);
}
::-webkit-scrollbar-thumb {
	background-color: #CCC;
	border-radius: 2px;
	box-shadow: inset 0 0 1px 1px #888;
}
::-webkit-scrollbar-thumb:hover {
	background-color: #AAA;
}

* {
	box-sizing: border-box;
}

html {
    background: transparent;
    color: var(--color-black);
    font: normal 400 16px/1.3 'Montserrat', sans-serif;
	scrollbar-color: #AAA #FFF;
	scrollbar-width: thin;
}

img {
    display: inline-block;
    height: auto;
    max-width: 100%;
}

.column-gap-5{column-gap:5px}
.column-gap-10{column-gap:10px}

.gap-10{gap: 10px}

.mt-20{margin-top:20px}

.button {
    border: 0;
    border-radius: 4px;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
	user-select: none;
}

.modal-dialog {
    border-radius: 5px;
    box-sizing: border-box;
    display: none;
    max-width: 100%;
    position: relative;
    width: 450px;
}
.modal-dialog>.md__close {
    background: rgba(0, 0, 0, .2);
    border-radius: 0 3px 0 3px;
	cursor: pointer;
    height: 35px;
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
}
.modal-dialog>.md__close::before,
.modal-dialog>.md__close::after {
    background: #FFF;
    border-radius: 2px;
    content: '';
    height: 4px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 22px;
}
.modal-dialog>.md__close::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-dialog>.md__close::after {
    transform: translate(-50%, -50%) rotate(45deg);
}
.modal-dialog>.md__title {
    color: #FFF;
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
    padding: 15px 20px;
    text-align: center;
}
.modal-dialog>.md__content {
    padding: 15px;
}

.simple-form .sf__field,
.simple-form .sf__note,
.simple-form .sf__footnote {
    margin-bottom: .75rem
}
.simple-form .sf__field {
    position: relative
}
.simple-form .sf__input,
.simple-form .sf__textarea {
    background-color: transparent;
    border: 2px solid #FFF;
    box-sizing: border-box;
    border-radius: 3px;
    color: #FFF;
    display: block;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1rem;
    outline: none;
    padding: .5rem;
    width: 100%;
}
.simple-form input::placeholder,
.simple-form textarea::placeholder {
    color: #FFF;
    font-size: .75rem;
    font-weight: 400;
    opacity: .7;
}
.simple-form .sf__textarea {
    height: 6.25rem;
	max-height: 15rem;
	min-height: 3.25rem;
	resize: vertical;
}
.simple-form .required {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAJUlEQVR42mM4q2zUCsSfQTQTAwNDCRDzAHEeiNMDxF8ZGBgmAQDLKghpAOazgQAAAABJRU5ErkJggg==');
    background-repeat: no-repeat;
    background-position: right 6px top 6px
}
.simple-form .sf__footnote {
    color: #FFF;
    font-size: .75rem;
	letter-spacing: 1px;
	line-height: 1.2;
	text-shadow: 0 0 2px rgba(0, 0, 0, .8);
}
.simple-form .sf__footnote > a {
	color: #FFF;
}
.simple-form .input-right{box-shadow:inset 0 0 0 1px #3F3,inset 0 0 4px 2px rgba(51,255,51,.6)!important}
.simple-form .input-wrong{box-shadow:inset 0 0 0 1px #F33,inset 0 0 4px 2px rgba(255,51,51,.6)!important}

.page-content {
	min-height: 100%;
	width: 100%;
}

.container {
	margin: 0 auto;
	max-width: 1266px;
	padding-left: 10px;
	padding-right: 10px;
}

.header,
.footer {
	flex: 0 0 auto;
	width: 100%;
}

.header {
	background-color: var(--color-green-1);
	padding: 10px 0;
}

.main {
	flex: 1 0 auto;
	padding: 40px 0;
	width: 100%;
}

.footer {
	background-color: var(--color-green-1);
	padding: 10px 0;
}
.footer__link {
	color: #FFF;
	text-decoration: none;
}

.back-to-original {
	color: #FFF;
	font-size: .875rem;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}

.legend	{
	align-items: center;
	column-gap: 15px;
	display: flex;
	padding: 10px 0;
}
.legend__item {
	align-items: center;
	background-color: #B5DBBF;
	border: 1px solid transparent;
	border-radius: 50%;
	color: var(--color-green-1);
	display: flex;
	font-size: .75rem;
	font-weight: 700;
	justify-content: center;
	height: 60px;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
	width: 60px;
}
.legend__item.active ~ .legend__item {
	background-color: #DCDCDC;
	color: #B0B0B0;
}
.legend__item.active ~ .legend__item__separator {
	border-bottom: 4px dotted #B7B7B7;
}

.legend__item.current {
	border-color: #27753A;
	box-shadow: 0 0 0 8px #FFFFFF60;
}
.legend__item__separator {
	border-bottom: 4px dotted #fff;
	width: 40px;
}
.legend__item.active + .legend__item__separator {
	border-color: #FFF;
}

.main__title {
	font-weight: 700;
	line-height: 1.5;
	text-transform: uppercase;
}
.main__title > div:nth-child(1) {
	color: var(--color-black);
	font-size: 1.25rem;
}
.main__title > div:nth-child(2) {
	color: var(--color-green-1);
	font-size: 1.75rem;
}
.footer__link {
	gap: 5px;
}
.footer__link img {
	height: 12px;
}
.new-order-button {
	background-color: var(--color-green-1);
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	padding: 15px 35px;
}