:root {
	--primary-color: #3AA83D;
	--secondary-color: #fd9000;
}

body {
	font-family: 'Ubuntu', sans-serif;
	background: #f9f8f5;
}

p {
	line-height: 1.2;
}

.row {
	margin: 0;
	width: 100%;
}

#content,
.page404 {
	margin-top: 38px;
}

.page404 p {
	margin-top: 50px;
	line-height: 1.5;
}

.page404 p>a {
	color: var(--primary-color);
}

.homepage #content {
	margin-top: 0;
}

h1 {
	font-size: 40px;

	font-weight: 700;
	color: #000;
}

.section-title {
	position: relative;
}

.section-title .logo {
	position: absolute;
	left: 0;
}


.progress-container {
	margin-top: 73px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	margin-bottom: 38px;
}

.progress-steps {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-bottom: 20px;
}

.stepbar {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #d9d9d9;
	;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.stepbar.active {
	background: var(--primary-color);
	color: white;
	border-color: #3E9541;
}

.progress-bar {
	height: 4px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #ddd;
	left: 0;
	width: 100%;
	z-index: 1;
}

.progress-fill {
	height: 100%;
	background: #4CAF50;
	width: 0%;
	transition: 0.3s;
	position: relative;
}

.progress-fill::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: var(--primary-color);
	left: 0;
	top: -1px;
	z-index: 9999;
}

.progress-fill::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: var(--primary-color);
	left: 0;
	top: 1px;
	z-index: 9999;
}

.buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}

button,
.buttons .button {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 500;
	font-size: 22px;
	border-radius: 9px;
	background: #f4f2eb;
	padding: 18px;
	width: 189px;
	border: none;
	text-decoration: none;
}

button:disabled {
	cursor: not-allowed;
	pointer-events: all !important;
}

#nextBtn {
	background-color: var(--primary-color);
	color: #fff;
}


button[disabled] svg>path {
	fill: #868686;
}

#nextBtn span {
	margin-right: 15px;
}

#prevBtn span {
	margin-left: 15px;
	color: #000;
}

.goal-wrapper {
	margin-bottom: 21px;
}

.goal-item,
.program-item {
	cursor: pointer;
	display: block;
	position: relative;
	width: 100%;
	max-width: 231px;
	margin-left: auto;
	margin-right: auto;
}

.goal-item__title {
	font-weight: 700;
	margin-top: 8px;
	font-size: 20px;
	color: #000;
}

.goal-item__img {
	border-radius: 13px;
	border: 2px solid #fff;
}

.goal-item__img img {
	border-radius: 13px;
}

.goal-item.active .goal-item__img,
.program-item.active .program-item__bg {
	background-color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.goal-item.active::after,
.program-item.active::after {
	background: url('/images/check.svg');
	background-repeat: no-repeat;
	background-size: cover;
	width: 28px;
	height: 28px;
	position: absolute;
	content: '';
	top: -12px;
	right: -12px;
	background-color: #fff;
	border-radius: 50px;
}

.step {
	margin-bottom: 68px;
}


.fs-20 {
	font-weight: 700;
	font-size: 20px;
	color: #000;
}

.radio-block {
	display: flex;
	justify-content: center;
	gap: 50px;
}

.radio-block label {
	margin-left: 13px;
	cursor: pointer;
	position: relative;
}

.radio-item input[type="radio"] {
	display: none;
}

.radio-item input+label::after {
	position: absolute;
	display: inline-block;
	width: 28px;
	content: '';
	height: 28px;
	cursor: pointer;
	background-image: url('/images/uncheck.svg');
	background-repeat: no-repeat;
	left: -40px;
}

.radio-item input[type="radio"]:checked+label::after {
	background-image: url('/images/check.svg');
	background-repeat: no-repeat;
}

.form-input {
	border: 1px solid #ededec;
	border-radius: 9px;
	height: 62px;
	background: #fff;
	width: 100%;
	font-size: 20px;
	display: block;
	padding: 19px 9px;
}

select {
	color: #000;
}

.form-input::placeholder {
	color: #a4a4a4;
}

.form-input:focus {
	outline: 2px solid var(--primary-color);
	/* border: ; */
}

.quiz-section {
	padding-bottom: 38px;
}

.programs .program-item__bg {
	max-width: 231px;
	width: 100%;
	height: 126px;
	text-align: center;
	line-height: 1;
	padding: 0px 22px;
	border-radius: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 32px;
	color: #fff;
	margin-bottom: 8px;
}

.programs .program-item__title {
	font-weight: 700;
	font-size: 20px;
	color: #000;
	margin-bottom: 0;
}

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

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.to-all-programs {
	text-decoration: none;
}

.to-all-programs .program-item__bg {
	background: #fff;
	text-align: left;
	border: 1px solid #d9d9d9;
}

.to-all-programs span {
	font-weight: 300;
	display: inline-block;
	font-size: 16px;
	color: #000;
}

.to-all-programs span svg {
	margin-top: -30px;
}

.quiz-section.loading .buttons {
	display: none;
}

.quiz-section.loading h1 {
	padding-top: 90px;
}

.detox-prices .green-bg,
.protein-prices .green-bg {
	position: relative;
	background-color: var(--primary-color);
	padding: 4px;
	border-radius: 9px;
	color: #fff;
}

.detox-program__description,
.protein-program__description {
	border-radius: 9px;
	color: #fff;
	background-color: var(--primary-color);
	padding: 14px 16px;
	margin-bottom: 16px;
}

.protein-program__description {
	max-width: 300px;
}

.detox-program__title,
.protein-program__title {
	color: #fff;
	margin-bottom: 8px;
}

.detox-program__text {
	font-weight: 300;
	font-size: 20px;
	color: #fff;
	line-height: 1.2;
}

.detox-day__number {
	font-weight: 700;
	font-size: 28px;
	margin-right: 2px;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.detox-day__number>span {
	background: var(--secondary-color);
	padding: 5px;
	border-radius: 8px;
	color: #fff;
}

.detox-day .number {
	font-weight: 700;
	font-size: 46px;
	line-height: 1;
	margin-right: 5px;
	color: var(--primary-color);
}

.detox-day {
	margin-bottom: 5px;
	display: flex;
	align-items: center;
}

.detox-day__title {
	line-height: 1;
	margin-bottom: 0;
	font-weight: 700;
	font-size: 20px;
	color: #000;
}

.detox_day__compound {
	font-weight: 300;
	line-height: 1;
	margin-bottom: 0;
	font-size: 14px;
	color: #000;
}

.detox-day-item {
	margin-bottom: 42px;
}

.loading-container h1 {
	padding-top: 90px;
}

.program-container {
	margin-bottom: 166px;
}

.allergy-block {
	margin-top: 33px;
}

.allergy-block h3 {
	margin-bottom: 17px;
}

input[name="allergy"],
input[name="name"] {
	max-width: 313px;
	margin-left: auto;
	margin-right: auto;
}

.exclude-products-block {
	margin-top: 18px;
}

.exclude-products-block h3 {
	margin-bottom: 23px;
}

.delivery-info {
	font-weight: 400;
	padding: 11px 7px;
	font-size: 20px;
	text-align: center;
	color: #fff;
	background-color: var(--secondary-color);
	border-radius: 9px;
	margin-left: auto;
	margin-right: auto;
}

.styled-container {
	position: relative;
	border-radius: 13px;
	background-color: #ffff !important;
	padding-top: 50px;
	background-repeat: no-repeat;
	padding-bottom: 50px;
}

.step1-section .styled-container {
	background: url('/images/bg-step1.png');
	background-position: bottom left;
	background-repeat: no-repeat;
}

.step2-section .styled-container {
	background: url('/images/bg-step2-1.png'), url('/images/bg-step2-2.png');
	background-position: top 116px right, bottom 100px left;
	background-repeat: no-repeat;
}

.step3-section .styled-container {
	background: url('/images/bg-step3.png');
	background-position: bottom left;
	background-repeat: no-repeat;
}

.all-programs .styled-container {
	background: url('/images/programs-bg.png');
	background-position: top right;
	background-repeat: no-repeat;
}

.step4-section .styled-container {
	background: url('/images/bg-step4-1.png'), url('/images/bg-step4-2.png');
	background-position: top right, top 150px left;
	background-repeat: no-repeat;
}

.step5-section .styled-container {
	background: url('/images/bg-step5.png');
	background-position: top 100px right;
	background-repeat: no-repeat;
}

.loading-container {
	background: url('/images/bg-loading.png');
	background-position: bottom left;
	background-repeat: no-repeat;
}

.homepage {
	font-family: 'Montserrat';
	background: #eaeaea;
}

.logo-block img {
	width: 126px;
}

.logo-block {
	background-image: url('/images/l1.png'), url('/images/l2.png'), url('/images/step1-bg.png'), url('/images/step-2-bg.png'), linear-gradient(180deg, #2d912f 0%, #156b17 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 160px;
	padding: 15px 0;
	background-position: top right, top left;
	background-repeat: no-repeat;
	background-size: contain;
}



.homepage .title {
	font-weight: 700;
	font-size: 20px;
	color: #000;
}

.homepage .subtitle {
	font-weight: 400;
	font-size: 12px;
	color: #323232;
}

.homepage .title-block {
	padding: 14px 0;
	background-color: #eaeaea;
}

.homepage-container {
	max-width: 1000px !important;
	background: #eaeaea;
	min-height: 100vh;
	box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
}

.to-menu-btn,
.how-works-delivery {
	display: flex;
	justify-content: space-between;
	padding: 11px 15px;
	background-color: var(--primary-color);
	border-radius: 7px;
	font-weight: 500;
	font-size: 15px;
	color: #fff;
	text-decoration: none;
}

.how-works-delivery {
	background: var(--secondary-color);
	color: #fff;
}


.rounded-block {
	background-color: #fff;
	padding: 17px 0;
	border-radius: 15px;
	margin-bottom: 14px;
}

.worktime-block p {
	font-weight: 500;
	font-size: 10px;
	color: #000;
	margin-bottom: 5px;
}

.homepage .block-title {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 15px;
	color: #000000;
	margin-bottom: 0;
}

.homepage hr {
	height: 1px;
	margin-top: 13px;
	margin-bottom: 13px;
	background: #d9d9d9;
}

.homepage .phone-link,
.instagram-link {
	font-weight: 500;
	font-size: 10px;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: #878787;
}

.instagram-link {
	width: 87px;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	display: flex;
	background: #833ab4;
	background: linear-gradient(to right,
			#833ab4, #fd1d1d, #fcb045);
	border-radius: 7px;
	padding: 4px 6px;
}

.instagram-link p {
	margin-left: 4px;
	margin-bottom: 0;
	font-style: normal;
	font-weight: 500;
	font-size: 10px;
	line-height: 12px;
	color: #000000;
}

.how-section h2 {
	font-weight: 700;
	font-size: 16px;
	color: #000;
}

.how-section p {
	margin-bottom: 8px;
	font-weight: 400;
	font-size: 12px;
	color: #323232;
}

.how-section .group {
	margin-bottom: 22px;
}

.how-section .group span {
	background-color: var(--secondary-color);
	color: #fff;
	padding: 0px 3px;
	border-radius: 5px;
}

.how-section .group p {
	line-height: 1.7;
	font-family: "Source Sans 3", sans-serif;
}

.day-bonus__block {
	text-align: right;
}

.simple-product-block .day-bonus__info {
	transform: rotate(15deg);
	position: absolute;
	right: -46px;
	top: -10px;
}

.simple-product-block .price-item:last-child .day-bonus__info {
	background-color: var(--secondary-color);
	color: #fff;
}

.day-bonus__info {

	background-color: #F9E900;
	font-weight: 700;
	font-size: 12px;
	color: #000;
	border-radius: 9px;
	padding: 2px 6px;
}

.meat-day__number {
	font-weight: 700;
	font-size: 46px;
	line-height: 1;
	text-align: center;
	margin-right: 4px;
	color: var(--primary-color);
}

.meat-day__info {
	font-weight: 700;
	font-size: 20px;
	color: #000;
}

.meat-info__block {
	margin-bottom: 16px;
	display: flex;
	align-items: flex-start;
}

.meat-block {
	margin-top: 34px;
}

.quiz-section .logo img {
	border-radius: 8px;
	width: 76px;
}

svg {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.ccal-block p {
	font-size: 18px;
}

.ccal-block span {
	font-weight: bold;
}


.simple-product-block .protein-prices {
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.simple-product-block .price-flex {
	display: flex;
	justify-content: space-between;
}

.simple-product-block .dots {
	display: flex;
	flex-grow: 1;
	border-bottom: 2px dotted #000;
	height: 26px;
	padding-left: 15px;
	margin-left: 10px;
	margin-right: 10px;
}

.simple-product-block .protein-program__description {
	background-color: var(--secondary-color);
}