:root {
	/*! Цвет главного фона */
	--main-bg-collor: #ffffff;
	/*! Цвет фона полей для ввода */
	--input-bg-color: #f0f0f0;
	/*! Цвет обводки полей для воода */
	--input-border-collor: #f0f0f0;
	/*! Цвет кнопки "VIBER"*/
	--viber-color: linear-gradient(180deg, #742ea6, #59267c);
	/*! Цвет кнопки "TELEGRAM" */
	--telegram-color: linear-gradient(180deg, #35c194, #32b38a);
	/*! Цвет кнопки "WHATSAPP" */
	--whatsapp-color: linear-gradient(180deg, #57bb63, #5cc468);
	/*! Цвет кнопки отправки данных */
	--submit-btn-color: linear-gradient(180deg, #4889ddbd, #479be0fa);
	/*! Цвет кнопки new-btn */
	--new-btn-color: linear-gradient(180deg, #05884bbd, #078a42fa);
	/* ! Жирность текста - Жирний */
	--Bold: 900;
	/* ! Жирность текста - Стандарт */
	--Standart: 300;
}






body {
	font-family: "Open Sans", Arial, sans-serif;
}


.hero__title span.red {
    background-image: -webkit-gradient(linear,left top,right top,from(#f83434),to(#ff4700));
    background-image: -webkit-linear-gradient(left,#f83434,#ff4700);
	background-image: linear-gradient(90deg,#34b88d 0,#35c194);

    padding: 2px 11px;
    text-transform: uppercase;
	color: white;

}
	
    
   
   
    



.widget-viev {
	width: 100%;
	max-width: 500px;
	max-height: 100vh;
	border-radius: 10px;
	background-color: var(--main-bg-collor);
	box-shadow: 0 0 30px -6px rgba(0, 0, 0, 0.15);
}
.centered {
	margin: 0;
	top: 50%;
	left: 50%;
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.media-image {
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: contain !important;
}

.form-media img {
	width: 100%;
	height: auto;
}

.widget-content-container {
	margin: 0 12px 0 12px;
}

.form-inputs {
	margin-top: 20px;
	margin-bottom: 20px;
}

.input-element label {
	display: inline-block;
	text-align: left;
	width: 19%;
	height: 40px;
	line-height: 1;
	font-size: 14px;
	color: #797979;
}
.input-element input,
select {
	width: 80%;
	box-shadow: none;
	outline: none;
	line-height: 18px;
	font-size: 16px;
	padding: 10px 15px;
	margin-bottom: 20px;
	border-radius: 4px;
	box-sizing: border-box;
	color: #5a5a5a;
	border: 1px solid var(--input-border-collor);
	background-color: var(--input-bg-color);
}

#phone {
	width: 41%;
}

.form-control {
	width: 38%;
}

.widget-text-container {
	color: #5a5a5a;
	font-size: 16px;
	text-align: left;
	margin-bottom: 5px;
	word-break: break-word;
	padding: 0 10px 10px 15px;
}

.widget-text-container p {
	font-weight: var(--Standart);
}

.widget-list {
	font-weight: var(--Standart);
}

.widget-list ul {
	padding: 0;
}

.widget-list ul li {
	list-style-type: none;
}

.widget-list ul li:before {
	/*content: url(/src/icons/warning.svg);*/
	padding-right: 10px;
}

.widget-appeal {
	text-align: center;
	font-weight: var(--Bold);
}

.widget-channels {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	font-weight: 300;
	justify-content: center;
}

.btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	border: none;
	outline: none;
	cursor: pointer;
	text-decoration: none;
	width: 70%;
	padding: 11px;
	margin: 2px;
	font-size: 14px;
	color: #fff;
	border-radius: 5px 5px 5px 5px;
}

.widget-channels a img {
	width: 28px;
	height: 28px;
	padding: 0px 10px 0px 10px;

}

.viber {
	background: var(--viber-color);
}

.telegram {
	background: var(--telegram-color);
}

.new-btn {
	margin-left: 50%;
	transform: translateX(-50%);
	background: var(--new-btn-color);
}

.whatsapp {
	background: var(--whatsapp-color);
}

.btn-submit {
	width: 50%;
	padding: 20px;
	margin-left: 50%;
	transform: translateX(-50%);
	background: var(--submit-btn-color);
}

.widget-footer {
	display: flex;
	justify-content: space-around;
	padding: 12px 0 15px 12px;
	font-size: 12px;
}

.widget-footer a {
	text-decoration: underline;
	color: #7e7e7e;
}

@media screen and (max-width: 436px) {
	.input-element label {
		width: 100%;
		height: 10px;
		margin: 20px 0 20px 0;
		font-size: 16px;
	}
	.form-control,
	#phone {
		width: 100%;
	}

	.input-element input {
		width: 100%;
		margin: 0;
	}

	.btn-submit {
		margin: 20px 0 0 50%;
	}

	.widget-viev {
		box-shadow: none;
	}
}
