/* Root */
:root {
	/* --text-color: #4a4a4a; */
	--text-color: #000;
	--white-color: #fff;
	--gray-color: #e7e7e9;
	--red-color: #c82333;
	--corporate-color-1: #00aeef;
	--corporate-color-2: #ff651b;
	--corporate-color-3: #53575a;
	--font-family-roboto: "Roboto", sans-serif;
	--font-family-montserrat: "Montserrat", sans-serif;
	--border-radius: 8px;
	--btn-height: 3.5rem;
	--input-height: 3.5rem;
}
html {
	font-size: 14px;
}
/* Main */
body {
	color: var(--text-color) !important;
	background-color: var(--gray-color) !important;
	font-family: var(--font-family-montserrat);
	overflow-x: hidden;
	overflow-y: scroll;
}
button {
	background: var(--white-color);
}
button:active,
button:hover,
button:focus {
	outline: 0;
	outline-offset: 0;
}
.btn.focus,
.btn:focus {
	box-shadow: unset;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-roboto);
	font-weight: 600;
}
a {
	cursor: pointer;
	font-weight: 500;
	color: var(--corporate-color-1);
}
ul {
	list-style: none;
	padding: 0;
	list-style: none;
	margin: 0 !important;
	padding: 0 !important;
}
li {
	position: relative;
}
.section {
	margin-top: 110px;
	margin-bottom: 110px;
}
.no-padding {
	padding: 0 !important;
}
.crm-webform-iframe {
	background-color: transparent;
}
.crm-webform-default {
	border: none;
}
.page-theme-transparent .content {
	background: transparent;
}
.crm-webform-header-container {
	background: transparent;
}
.text-title {
	font-family: var(--font-family-roboto);
	text-transform: uppercase;
	font-size: 35px;
}
.text-desc {
	font-size: 16px;
	margin-bottom: 30px !important;
	font-family: var(--font-family-montserrat);
}
.bg-none {
	background: unset !important;
}
@media (max-width: 350px) {
	.text-title {
		font-size: 28px;
	}
}
/* Button */
.default-btn {
	/* border: 1px solid var(--text-color); */
	border: 1px solid rgba(0, 16, 61, 0.12);
	color: var(--text-color);
	font-weight: 600;
	text-transform: uppercase;
	border-radius: var(--border-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	height: var(--btn-height);
	margin: 0 auto;
}
.default-btn.active {
	background-color: var(--corporate-color-1);
	color: var(--white-color);
}
.bg-corporate-color-1 {
	border: none;
	color: var(--white-color);
	background-color: var(--corporate-color-1);
}
.bg-corporate-color-2 {
	border: none;
	color: var(--white-color);
	background-color: var(--corporate-color-2);
}
.bg-corporate-color-3 {
	border: none;
	color: var(--white-color);
	background-color: var(--corporate-color-3);
}
.default-btn.bg-corporate-color-2:hover,
.default-btn.bg-corporate-color-1:hover,
.default-btn.active:hover {
	color: var(--white-color);
}
.default-btn:hover {
	color: var(--text-color);
}
.bg-red {
	border: none;
	color: var(--white-color);
	background-color: var(--red-color);
}
/* Text */
.ta-c-1 {
	margin: 0;
	text-align: center;
	text-transform: uppercase;
}
.ta-c-fs-1 {
	margin-bottom: 1rem;
	text-align: center;
	font-size: 18px;
	font-family: "roboto-medium";
}
.ta-c-2 {
	margin-top: 1rem;
	text-align: center;
	margin-bottom: 0;
	text-transform: uppercase;
}
.ta-c-fs-2 {
	text-align: center;
	font-size: 16px;
}
.upper {
	text-transform: uppercase;
}
.mt-6 {
	margin-top: 4rem;
}
.mb-6 {
	margin-top: 4rem;
}
.m-0 {
	margin: 0 !important;
}
/* Header */
.header-color {
	height: 74px;
	width: 100%;
	border-bottom: 1px solid #e4e4e4;
}
.nav_bar {
	list-style: none;
	display: inline-flex;
	margin: 0;
	padding: 0;
}
.nav_bar > a > img {
	width: 50px;
	height: 50px;
	padding: 2px;
	margin-top: 12px;
}
.nav--item {
	margin-bottom: 0;
	cursor: pointer;
}
.nav-element {
	color: var(--text-color);
	font-size: 17px;
	padding: 26px 20px;
	transition: all 0.1s;
	line-height: 73px;
}
.nav--item:hover,
.nav-element:hover {
	color: var(--corporate-color-1);
	text-decoration: none;
}
.user {
	position: relative;
}
.menu-border-left::before {
	content: "";
	display: block;
	width: 1px;
	height: 28px;
	background: #666;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -14px;
}
.user-left {
	right: 75px !important;
	position: absolute !important;
	padding-right: 10px;
}
.user > a {
	position: absolute;
	color: var(--text-color);
	margin: 0;
	top: 0;
	padding: 22px 30px;
	right: 0;
	font-size: 20px;
	transition: all 0.1s;
	cursor: pointer;
}
.user > a:hover {
	color: var(--corporate-color-1);
}
.content {
	position: absolute;
	top: 50%;
	left: 2rem;
	width: 70%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.content h1,
.content h4 {
	color: #1f2822;
}
.content h1 {
	font-size: 6vmin;
}
.content h4 {
	font-size: 3vmin;
}
.content a {
	color: #1f2822;
}
.nav {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0.01rem;
	background-color: #444;
	-webkit-transition: 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
	will-change: width;
	z-index: 99;
}
.nav.is-active {
	width: 100%;
}
.nav__trigger {
	display: block;
	position: absolute;
	top: 20px;
	right: 1rem;
	padding: 8px 0;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	z-index: 999999999;
}
.nav__trigger .bars {
	position: relative;
}
.nav__trigger .bars,
.nav__trigger .bars:before,
.nav__trigger .bars:after {
	width: 28px;
	height: 4px;
	background-color: grey;
	border-radius: 4px;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
.nav__trigger .bars:before,
.nav__trigger .bars:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	will-change: transform;
}
.nav__trigger .bars:before {
	-webkit-transform: translateY(-8px);
	transform: translateY(-8px);
}
.nav__trigger .bars:after {
	-webkit-transform: translateY(8px);
	transform: translateY(8px);
}
.nav__trigger.is-active {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.nav__trigger.is-active .bars:before,
.nav__trigger.is-active .bars:after {
	-webkit-transform: translateX(0) rotate(-90deg);
	transform: translateX(0) rotate(-90deg);
}
.nav__content {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 1200px;
	padding: 1rem 3.75rem 1rem 2.75rem;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: 0s linear 0.25s;
	transition: 0s linear 0.25s;
}
.nav__content.is-active {
	visibility: visible;
	opacity: 1;
	-webkit-transition: 0s linear;
	transition: 0s linear;
}
.nav__content.is-active .nav__item a {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-property: opacity, color, -webkit-transform;
	transition-property: opacity, color, -webkit-transform;
	transition-property: transform, opacity, color;
	transition-property: transform, opacity, color, -webkit-transform;
	-webkit-transition-duration: 0.2s, 0.2s, 0.1s;
	transition-duration: 0.2s, 0.2s, 0.1s;
	-webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1), ease-in-out, ease-in-out;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1), ease-in-out, ease-in-out;
	font-family: "roboto-medium";
}
.nav__content.is-active .nav__list .nav__item:nth-of-type(1) a {
	-webkit-transition-delay: 0s, 0s, 0s;
	transition-delay: 0s, 0s, 0s;
	font-family: "roboto-medium";
}
.nav__content.is-active .nav__list .nav__item:nth-of-type(2) a {
	-webkit-transition-delay: 0.05s, 0.05s, 0s;
	transition-delay: 0.05s, 0.05s, 0s;
	font-family: "roboto-medium";
}
.nav__content.is-active .nav__list .nav__item:nth-of-type(3) a {
	-webkit-transition-delay: 0.1s, 0.1s, 0s;
	transition-delay: 0.1s, 0.1s, 0s;
	font-family: "roboto-medium";
}
.nav__content.is-active .nav__list .nav__item:nth-of-type(4) a {
	-webkit-transition-delay: 0.15s, 0.15s, 0s;
	transition-delay: 0.15s, 0.15s, 0s;
	font-family: "roboto-medium";
}
.nav__content.is-active .nav__list .nav__item:nth-of-type(5) a {
	-webkit-transition-delay: 0.2s, 0.2s, 0s;
	transition-delay: 0.2s, 0.2s, 0s;
}
.nav__content.is-active .nav__list .nav__item:nth-of-type(6) a {
	-webkit-transition-delay: 0.25s, 0.25s, 0s;
	transition-delay: 0.25s, 0.25s, 0s;
	font-family: "roboto-medium";
}
.nav__content.is-active .nav__list .nav__item:nth-of-type(7) a {
	-webkit-transition-delay: 0.3s, 0.3s, 0s;
	transition-delay: 0.3s, 0.3s, 0s;
	font-family: "roboto-medium";
}
.nav__content.is-active .nav__list .nav__item:nth-of-type(8) a {
	-webkit-transition-delay: 0.35s, 0.35s, 0s;
	transition-delay: 0.35s, 0.35s, 0s;
	font-family: "roboto-medium";
}
.nav__content.is-active .nav__list .nav__item:nth-of-type(9) a {
	-webkit-transition-delay: 0.4s, 0.4s, 0s;
	transition-delay: 0.4s, 0.4s, 0s;
	font-family: "roboto-medium";
}
.nav__list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav__item {
	overflow: hidden;
}
.nav__item a {
	display: block;
	padding: 1rem;
	color: var(--white-color);
	text-align: center;
	text-decoration: none;
	font-size: 1em;
	font-weight: 300;
	opacity: 0;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
	font-family: "roboto-light";
}
.nav__item a:hover {
	color: var(--white-color);
}
.nav__divider {
	margin: 1.75rem 0 1.5rem;
	width: 100%;
	height: 2px;
	background-color: #9ac6ac;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.nav__trigger {
	display: none;
}
@media (max-width: 999px) {
	.nav__trigger {
		display: block;
	}
}
/* Connect */
.border-bot > img {
	width: 100%;
}
.btn-link {
	color: var(--text-color);
	font-weight: 500;
}
.btn-link:hover,
.btn-link:focus {
	color: var(--text-color);
	text-decoration: none;
}
.btn-color-all {
	background-color: var(--corporate-color-1);
	color: var(--white-color);
	border-radius: 4px !important;
}
.center {
	max-width: 768px;
	margin: 0 auto;
}
.back-img {
	background-image: url(../img/background.png);
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
}
.wrapper-descktop img {
	width: 100%;
}
.wrapper-mobile {
	display: none;
}
.card,
.card-header {
	background-color: transparent;
	border: none;
}
.down {
	margin-top: 1rem;
	margin-bottom: 1.7em;
	padding-bottom: 30px;
}
.img-vBot {
	position: absolute;
	bottom: -100px;
	text-align: center;
}
.pd-t-80 {
	padding-top: 80px;
}
.pd-t-60 {
	padding-top: 60px;
}
.rule-caption {
	width: 75%;
	margin: 0 auto;
}
.btn-connect {
	width: 25%;
	margin: 4rem 0;
	font-size: 24px !important;
	font-family: var(--font-family-roboto);
}
.btn-connect:hover {
	background-color: #444;
	color: var(--white-color);
}
.alignment-btn {
	width: 150px;
	margin: 0 auto;
}
.btn-more-info-connect {
	/* width: 150px; */
	margin: 0 auto;
}
.btn-more-info-connect:hover {
	color: var(--white-color);
	background-color: #444;
}
.go_sections section:first-child {
	padding-top: 0px;
}
/* Navbar */
.navbar {
	height: 70px;
}
.navbar-nav li {
	width: 85px;
}
.nav-back {
	max-width: 275px;
	margin: auto;
	overflow: auto;
}
.nav-mobile {
	width: 320px;
	margin: auto;
}
.nav-link {
	font-size: 11px;
}
.ppp {
	width: 25px;
	margin: 0 auto;
}
.inline {
	display: inline-block !important;
	overflow: hidden;
}
.nav-item {
	display: block;
	margin-left: 0.5rem;
}
.nav-item > a {
	text-align: center;
}
.bars-top {
	font-size: 20px;
	color: var(--white-color);
}
.hz {
	width: 350px;
	margin: auto;
	overflow: hidden;
}
.connect1 {
	color: #3f9ee4;
}
.wifi12 {
	color: #3f9ee4;
}
.wifi-settings1 {
	color: #3f9ee4;
}
.payment1 {
	color: #3f9ee4;
}
.home1 {
	color: #3f9ee4;
}
/* Side-Bar */
.side-bar {
	position: absolute;
	bottom: 50%;
}
.side-bar li {
	height: 75px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.125);
	cursor: pointer;
}
.side-bar li > a {
	color: #444;
	font-size: 20px;
}
.side-bar li > a:hover {
	text-decoration: none;
}
.bars {
	width: 50px;
	height: 50px;
	border-radius: 3px;
	margin: 0.75rem 0;
	text-align: center;
}
.bars:before {
	color: var(--white-color);
	line-height: 50px;
}
.connect {
	background-color: #3f9ee4;
}
.wifi1 {
	background-color: #3f9ee4;
}
.wifi-settings {
	background-color: #3f9ee4;
}
.payment {
	background-color: #3f9ee4;
}
.home {
	background-color: #3f9ee4;
}
.hotspot {
	background-color: #3f9ee4;
}
/* Новая секция с тарифными планами */
#price {
	/* font-family: var(--font-family-montserrat); Лишнее */
	/* font-weight: 400; лишнее */
	width: 100%;
}
#price .price__title {
	margin-bottom: 30px;
}
#price .price__item .price__speed .price__value {
	font-size: 125px;
	letter-spacing: -9px;
	line-height: 70px;
	position: relative;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	font-weight: 900;
	color: var(--corporate-color-1);
}
#price .price__item .price__speed .price__measurement {
	position: absolute;
	right: -11px;
	font-size: 18px;
	background: var(--text-color);
	line-height: 30px;
	border-radius: 10px;
	letter-spacing: 0px;
	padding: 2px 10px;
	color: var(--white-color);
	font-weight: 700;
	background: rgba(74, 74, 74, 0.65);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	text-shadow: 1px 0 0 rgba(0, 16, 61, 0.4);
}
#price .price__item .price__speed .price__popular {
	position: absolute;
	top: 22px;
	right: -19px;
	font-size: 14px;
	font-family: var(--font-family-roboto);
	line-height: 24px;
	border-radius: 6px;
	letter-spacing: 0px;
	padding: 2px 10px;
	color: #fff;
	font-weight: 400;
	background: rgba(255, 101, 27, 0.8);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	z-index: 1;
}
#price .price__item .price__sum {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	color: #000000b0;
}
#price .price__item .price__sum .price__number {
	margin-top: 25px;
	font-size: 54px;
	font-weight: 900;
	opacity: 0.6;
}
#price .price__item .price__sum .price__number span {
	font-size: 38px;
	top: -11px;
	position: relative;
}
#price .price__item .price__sum .price__unit {
	position: relative;
	top: 4px;
	font-size: 28px;
	font-weight: 600;
	opacity: 0.6;
}
#price .price__item .price__sum .price__unit span {
	font-size: 38px;
	position: relative;
	font-weight: 700;
	top: 2px;
}
#price .price__item .price__desc {
	font-family: var(--font-family-montserrat);
	margin-top: -12px;
}
#price .price__item .value-label {
	font-size: 18px;
	letter-spacing: normal;
	position: absolute;
	left: -35px;
	top: 25px;
	color: var(--text-color);
	opacity: 0.6;
	font-weight: 600;
}
#price .price__btn-connection-conditions {
	font-weight: 500;
	text-transform: lowercase;
	font-size: 14px;
	color: var(--corporate-color-1);
	width: auto;
	border-radius: 0;
}
#price .btn-additional-services {
	font-weight: 500;
	text-transform: lowercase;
	font-size: 14px;
	color: var(--corporate-color-2);
	border-radius: 0;
}
/*  */
#price .custom-buttons-container {
	display: flex;
	justify-content: space-between;
	white-space: nowrap;
	overflow-x: auto;
	justify-content: center;
	gap: 8px;
}
#price .custom-buttons-container .btn {
	margin: 0 !important;
	font-size: 12px;
	width: auto;
	padding: 10px 14px;
}
#price .custom-buttons-container .btn.selected {
	background-color: var(--corporate-color-1);
	color: var(--white-color);
}
@media (max-width: 500px) {
	#price .custom-buttons-container {
		display: flex;
		overflow: auto;
		max-height: 200px;
		max-width: 100%;
	}
	#price .custom-buttons-container .btn {
		flex-shrink: 0;
	}
	#price .custom-buttons-container::-webkit-scrollbar {
		width: 0;
	}
}
/* additional-services */
#connection-conditions .connection-conditions__title,
#additional-services .additional-services__title {
	margin: 1rem 0 0.5rem 0.5rem;
	font-size: 15px;
	font-weight: 500;
}
#additional-services .card-body {
	padding: 0;
}
#connection-conditions li,
#additional-services li,
.faq-section .card-body li {
	margin: 5px 0 5px 2.5rem;
	list-style: circle;
}
#connection-conditions .connection-conditions__link,
.faq-section .card-body .connection-conditions__link {
	font-weight: 500;
	color: var(--corporate-color-1);
}
#connection-conditions .connection-conditions__btn {
	width: 30% !important;
}
#additional-services {
	font-family: var(--font-family-montserrat);
}
@media (max-width: 992px) {
	#price .price__item:nth-child(2) {
		margin-top: 5rem !important;
	}
	#price .price__item:not(:nth-child(4)) {
		margin-bottom: 3rem;
	}
	#price .price__title {
		margin: 0;
	}
	#price .price__link-connection-conditions,
	#price .price__link-additional-services {
		text-align: center !important;
	}
	#price #connection-conditions .connection-conditions__btn {
		width: 75% !important;
	}
}
@media (max-width: 280px) {
	#price .price__item .price__speed .price__value {
		font-size: 113px;
	}
}
/* Side-Bar */
.side-bar {
	position: absolute;
	bottom: 50%;
}
.side-bar li {
	height: 75px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.125);
	cursor: pointer;
}
.side-bar li > a {
	color: #444;
	font-size: 20px;
}
.side-bar li > a:hover {
	text-decoration: none;
}
.bars {
	width: 50px;
	height: 50px;
	border-radius: 3px;
	margin: 0.75rem 0;
	text-align: center;
}
.bars:before {
	color: var(--white-color);
	line-height: 50px;
}
.connect {
	background-color: #3f9ee4;
}
.wifi1 {
	background-color: #3f9ee4;
}
.wifi-settings {
	background-color: #3f9ee4;
}
.payment {
	background-color: #3f9ee4;
}
.home {
	background-color: #3f9ee4;
}
.hotspot {
	background-color: #3f9ee4;
}
/* Question */
.btn {
	white-space: normal !important;
}
.top-10 {
	position: relative;
	width: 100%;
}
.question {
	background-color: transparent !important;
	border-bottom: 1px solid rgba(0, 16, 61, 0.12) !important;
}
.question .card-body {
	background-color: var(--gray-color);
}
.card-header {
	background-color: transparent !important;
}
.btn-admin {
	width: 100%;
	color: var(--text-color) !important;
	text-align: left !important;
}
.btn-admin:hover {
	text-decoration: none !important;
}
.btn-admin:focus {
	text-decoration: none !important;
}
.caption {
	color: var(--text-color);
	font-family: var(--font-family-roboto);
	margin-top: 2rem;
	padding: 0 15px;
}
.fa-plus,
.fa-minus {
	transition: all 0.4s;
	top: 25px;
	right: 5px;
	position: absolute;
	color: #00a1eb;
	font-size: 10px;
}
.fa-plus-active {
	transform: rotate(45deg);
}
.social {
	font-size: 24px;
	margin-left: 0.5rem;
}
.vk {
	color: #4c68ae !important;
}
.inst {
	color: #734530 !important;
}
.whatsapp {
	color: #3e7a41 !important;
}
.imgadapt {
	width: 100%;
}
.btn-treaty {
	background-color: #3eb646 !important;
	color: var(--white-color) !important;
}
.btn-treaty:hover {
	background-color: #444 !important;
}
.btn-order {
	background-color: var(--corporate-color-1);
	color: var(--white-color) !important;
	margin-bottom: 0.5rem;
}
.btn-order:hover {
	background-color: #444;
	color: var(--white-color);
}
.slider_banner {
	overflow: hidden;
}
@media (max-width: 768px) {
	.card.question .btn-link {
		font-size: 14px;
		width: 95%;
	}
}
@media (min-width: 1030px) {
	.navbar-mobile {
		display: none !important;
	}
}
@media (max-width: 1024px) {
	.side-bar {
		display: none;
	}
	.top-10 {
		width: 100%;
	}
	.card-header {
		padding: 0.5rem 0;
	}
	.card-body {
		font-size: 14px;
	}
	.fa-plus {
		font-size: 11px;
		top: 24.5px;
		right: 5px;
	}
	.navbar-mobile {
		display: block !important;
	}
}
@media (max-width: 320px) {
	.btn-admin {
		font-size: 12px !important;
	}
	.card-header {
		padding: 0.25rem 0 !important;
	}
	.fa-plus {
		top: 16px;
		right: 1px;
	}
}
.question .collapse {
	background: var(--white-color);
	border: 1px solid #e4e4e4;
}
.collapse__info {
	transition: all 0.4s;
	display: none;
}
.collapse__info-active {
	display: block;
	transition: all 0.4s;
}
/* Arrow */
.more {
	position: absolute;
	top: 70px;
	right: 35px;
}
.shell {
	position: absolute;
	left: 60px;
	top: 160px;
}
.now {
	position: absolute;
	top: 100px;
	transform: rotate(3deg);
}
.forward {
	position: absolute;
	top: 100px;
	left: 25px;
}
/* Section Tariff */
.caption-tariff {
	width: 290px;
	margin: 0 auto;
	margin-top: 3rem;
}
.text-tariff {
	text-align: center;
	border-radius: 15px;
	padding: 5px;
}
.tariff-info-connect {
	background: var(--white-color);
	border-radius: 4px;
}
.popular-tariff {
	position: absolute;
	top: 21.5px;
	right: 30px;
	padding: 3px 2px;
	background: red;
	color: var(--white-color);
	font-weight: 600;
	font-size: 10px;
	text-transform: uppercase;
	border-radius: 2px;
}
.tariff-name {
	text-transform: uppercase;
	font-size: 24px;
	padding: 15px 0 0 15px;
	font-family: var(--font-family-roboto);
}
.tariff-img-connect {
	padding-right: 13px;
	max-width: 49%;
}
.tariff-img-connect > img {
	padding: 0 5px;
	width: 170px;
}
.nominal-speed-connect,
.price-tariff-connect {
	text-align: center;
}
.start-now-tariff-turbo > img {
	width: 90px;
	position: absolute;
	left: -60px;
	top: 370px;
}
.speed-connect,
.thousand-connect {
	font-size: 30px;
}
.speed-connect::before {
	content: "до ";
	color: #a9abae;
	font-size: 18px;
	font-family: "roboto-light";
}
.mbit-connect {
	color: #a9abae;
	font-size: 18px;
	font-family: "roboto-light";
}
.hundred-connect > small {
	font-size: 20px;
	vertical-align: top;
	line-height: 2;
}
.currency-connect > small {
	font-size: 18px;
	font-weight: 600;
}
.currency-connect::after {
	content: " в месяц";
	color: #a9abae;
	font-weight: 400;
	font-size: 16px;
	font-family: "roboto-light";
}
.prize-speed-connect {
	padding: 15px 0;
	text-align: center;
}
.line-connect {
	width: 2px;
	height: 70px;
	margin: auto 0;
	background: var(--corporate-color-1);
}
.prize-speed-connect > a {
	border-bottom: 1px dashed #a9abae;
	font-size: 14px;
	color: var(--text-color);
	font-family: "roboto-light";
}
.prize-speed-connect > a:hover {
	text-decoration: none;
	color: var(--text-color);
}
.prize-speed-tariff {
	font-size: 20px;
	font-family: var(--font-family-roboto);
}
.prize-speed-tariff > small {
	font-size: 14px;
	color: #a9abae;
	font-family: "roboto-light";
}
.btn-choose {
	text-transform: uppercase;
	width: 100%;
	background: var(--corporate-color-1);
	color: var(--white-color);
	margin-bottom: 1em;
	border-radius: 0 0 4px 4px;
	line-height: 2.3;
	font-family: "roboto-medium";
}
.btn-choose:hover {
	color: var(--white-color);
	background-color: #444;
}
.additional-information-tariffs {
	width: 100%;
}
.caption-info-tariffs-connect > p {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 20px;
	text-align: center;
	margin: 0;
}
.info-tariffs-connect > p {
	text-align: center;
	font-size: 12px;
}
.tariff-adapt-connect {
	max-width: 48%;
	padding-top: 0.5em;
	padding: 22px;
}
/* ID */
#min-ping-show {
	display: none;
}
#discounts-show {
	display: none;
}
#safe-internet-show {
	display: none;
	margin-top: 1.5em;
}
#youtube-connect {
	bottom: -132px;
}
#youtube-show {
	display: none;
}
/* Player Youtube */
.video {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.video iframe,
.video object,
.video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* Slider Top */
.slider-top {
	max-width: 1440px;
	margin: 0 auto;
}
.slider-top img {
	width: 100%;
}
.slick-arrow {
	display: none !important;
}
/* Reliabillity */
.reliabillity h1,
.reliabillity h5,
.reliabillity p {
	text-align: center;
}
.reliabillity > h1 {
	font-weight: 400;
	margin-top: 2em;
}
.reliabillity > h5 {
	font-weight: 400;
	margin-bottom: 2em;
}
/* Internet */
.internet {
	color: #444;
}
.internet p {
	color: #444 !important;
}
.internet:hover {
	color: #444;
	text-decoration: none;
}
.int-img {
	width: 220px;
	margin: 0 auto;
}
.btn-int {
	color: #444;
	background-color: transparent;
	border: 2px solid #450099 !important;
	border-radius: 20px !important;
	padding: 0 20px !important;
	line-height: 48px !important;
	text-transform: uppercase;
	font-weight: 600 !important;
}
.btn-int:hover {
	background-color: #450099;
	color: var(--white-color);
}
/* TV */
.margin-tv {
	margin-top: 5em;
}
.tv-text h2 {
	font-weight: 400;
	margin-bottom: 1em;
}
.tv-text p {
	text-align: left;
	margin-bottom: 2em;
	font-size: 16px;
	color: #444 !important;
}
.btn-play-tv {
	color: var(--white-color);
	background-color: #450099;
	font-size: 20px !important;
	border-radius: 20px !important;
}
.btn-play-tv:hover {
	color: var(--white-color);
	text-decoration: none;
}
.tv-span {
	font-size: 12px;
}
.tv-span::before {
	content: "* ";
	color: red;
	margin-left: 1em;
}
.tv-img {
	width: 100%;
}
/* Friend */
.friend {
	max-width: 1440px;
	margin: 0 auto;
	background-image: url(../img/bonus.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}
.friend h1 {
	text-align: center;
	color: var(--white-color);
	margin-top: 2em;
	padding: 2em 0 0.5em;
	font-weight: 400 !important;
}
.friend h5 {
	color: var(--white-color);
	text-align: center;
	font-weight: 400 !important;
}
.btn-more-info {
	color: var(--white-color);
	font-weight: 600 !important;
	text-transform: uppercase;
	font-size: 14px !important;
	background-color: #450099;
	border-radius: 20px !important;
	padding: 10px 40px !important;
}
.btn-more-info:hover {
	color: #450099;
	background-color: var(--white-color);
}
/* Garant */
#garant {
	margin-top: 4em;
}
.icon {
	display: block;
	position: relative;
	width: 114px;
	height: 114px;
	background-color: var(--white-color);
	border-radius: 50%;
	margin: 0 auto 50px;
	box-shadow: 0 0 65px rgba(203, 203, 203, 0.5);
}
.icon-wifi img {
	position: absolute;
	width: 46px;
	top: 35px;
	left: 35px;
}
.icon-medal img {
	width: 46px;
	position: absolute;
	top: 35px;
	left: 35px;
}
.icon-support img {
	position: absolute;
	width: 46px;
	top: 35px;
	left: 35px;
}
.text-garant h3,
.text-garant h5 {
	font-weight: 400 !important;
	text-align: center;
}
.text-garant h3 {
	margin-bottom: 1em;
}
/* Router Sections */
/* Slider */
.slick-prev:before,
.slick-next:before {
	color: #444 !important;
}
/* Section tp-link */
#tp-link {
	padding-top: 1em;
}
.tp-link {
	max-width: 1440px;
	margin: 0 auto;
}
.tp-link_size {
	max-width: 680px;
	margin: 0 auto;
}
.img-tp-size {
	width: 100%;
}
/* Section youtube */
#youtube {
	margin-top: 2rem;
}
/* Section 2.4G-5G */
.G {
	margin-top: 3rem;
}
.g2 {
	padding-right: 12px !important;
	border-right: 3px solid var(--corporate-color-1);
}
.g2-text {
	padding-left: 2rem;
}
.g2-text h1 {
	font-size: 59px !important;
	text-align: center;
}
.g2-text h4 {
	text-align: center !important;
}
.g2-text-p {
	line-height: 18px;
	margin-top: 3rem;
	font-family: "roboto-medium";
}
/* Section c60 */
#c60 {
	margin-top: 3rem;
}
.hit-sell {
	position: absolute;
	z-index: 50;
	width: 20% !important;
}
.slider-c60,
.slider-c50,
.slider-c20 {
	width: 360px;
	height: 360px;
	margin: 0 auto;
}
.c60-slide {
	background: var(--white-color) !important;
	padding: 15px;
	border-radius: 15px;
	border: 1px solid #ccc;
}
.Present-archer-c60 {
	background: var(--white-color) !important;
	padding: 15px;
	border-radius: 15px;
	border: 1px solid #ccc;
}
.c60-slide p {
	text-align: center;
}
.descr li {
	line-height: 18px;
	margin-top: 0.5rem;
}
.descr li::before {
	content: "•";
	font-size: 30px;
	color: var(--corporate-color-1);
	vertical-align: text-top;
}
.price-router {
	position: relative;
}
.cross {
	position: absolute;
	background-color: red;
	height: 2px;
	width: 60px;
	top: 56px;
	left: 19px;
	transform: rotate(10deg);
}
.old-price {
	font-weight: 600 !important;
	position: absolute;
	top: 40px;
	left: 20px;
	font-size: 21px;
}
.old-price > small {
	font-weight: 600 !important;
	vertical-align: text-top;
}
.old-price::after {
	content: "₸";
	font-size: 14px;
}
.new-price {
	font-weight: 700 !important;
	position: absolute;
	top: 60px;
	left: 30px;
	font-size: 30px;
}
.new-price::after {
	content: "₸";
	font-size: 14px;
}
.new-price > small {
	font-weight: 700 !important;
	vertical-align: text-top;
}
.btn-buy {
	top: 60px;
	right: 50px;
	position: absolute;
	width: 160px;
	font-weight: 600 !important;
	text-transform: uppercase;
	margin-left: 1rem;
	font-family: "roboto-medium";
}
.btn-buy:hover {
	background-color: #444;
	color: var(--white-color);
	text-decoration: none;
}
.text-big-signal {
	text-align: center;
	margin-right: 6rem;
	font-family: "roboto-medium";
}
.text-big-signal h3 {
	margin-bottom: 2rem;
	text-align: center;
	text-transform: inherit;
}
.text-garant-1 h2 {
	font-size: 260%;
}
.text-garant-2 h2 {
	font-size: 260%;
}
.text-garant-3 h2 {
	font-size: 260%;
}
.img-garant {
	position: relative;
	margin-bottom: 5em;
}
.text-garant-1,
.text-garant-2,
.text-garant-3,
.text-garant-4 {
	font-weight: 400 !important;
	position: absolute;
	color: var(--white-color);
}
.text-garant-4 {
	top: 250px;
	right: 130px;
}
.text-garant-4 h1 {
	font-size: 300% !important;
	color: #a1a1a1;
}
.text-garant-3 {
	top: 430px;
	left: 100px;
}
.text-garant-2 {
	top: 230px;
	left: 100px;
}
.text-garant-1 {
	top: 30px;
	left: 100px;
}
.btn-give {
	position: absolute;
	top: 490px;
	width: 400px;
	height: 50px;
	right: 50px;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 4px;
}
.btn-give > p {
	margin: 0;
	position: absolute;
	left: 90px;
	top: 13px;
	font-family: "roboto-medium";
}
.btn-give:hover {
	background-color: #444;
	color: var(--white-color);
	text-decoration: none;
}
/* Mobile */
#top-sect {
	padding-top: 0.5em;
}
.youtube-mobile {
	height: 280px;
	background-image: url(../img/c60-mobile-top.png);
	background-repeat: no-repeat;
	background-position: center;
}
.col-xs-12 {
	width: 100%;
	padding: 0 15px;
}
.col-xs-5 {
	width: 45%;
	padding: 0 12px;
	border-right: 3px solid var(--corporate-color-1);
}
.col-xs-7 {
	width: 55%;
	padding: 0 15px;
}
.col-xs-7 > img {
	width: 100%;
}
.logo-top > p,
.logo-top > h1 {
	text-align: center;
}
/* Section c60-mobile */
.col-xs-6 {
	width: 50%;
	padding: 0 15px;
}
.g-mobile > img {
	width: 100%;
	margin-top: 2em;
}
.col-xs-7 > h1,
.col-xs-7 > h5,
.col-xs-6 > h1,
.col-xs-6 > h5 {
	font-size: 180%;
	text-align: center;
}
.Present-archer-c60 {
	margin-top: 2em;
}
.slider-c60-m-version {
	width: 280px !important;
	height: 280px !important;
}
.descr-mobile {
	margin-top: 2em;
}
.radius-float_mobile {
	float: left;
	margin-right: 1em;
	width: 40%;
}
.radius-mobile > h3 {
	font-size: 150%;
}
.radius-mobile > p {
	color: #444;
	text-align: left;
	margin-bottom: 1em;
	margin-top: 1em;
	font-size: 100%;
}
.text-garant-1-mobile,
.text-garant-2-mobile,
.text-garant-3-mobile,
.text-garant-4-mobile {
	position: absolute;
	font-weight: 400 !important;
	color: var(--white-color);
}
.text-garant-1-mobile {
	top: 50px;
	left: 150px;
}
.text-garant-2-mobile {
	top: 330px;
	left: 150px;
}
.text-garant-3-mobile {
	top: 610px;
	left: 150px;
}
.text-garant-4-mobile {
	top: 870px;
	right: 120px;
}
.text-garant-4-mobile > h1 {
	color: #a1a1a1;
}
.line-top-garant > img {
	height: 5px;
	width: 100%;
	transform: rotate(5deg);
	margin-bottom: 1em;
	margin-top: 1rem;
}
.garant-mobile {
	margin-top: 2em;
}
.garant-mobile-img {
	position: relative;
	margin-bottom: 2em;
}
.archer-c60-text > h1 {
	text-align: center;
}
.garant-mobile-img > img {
	width: 100%;
}
.line-bot-garant > img {
	height: 5px;
	width: 100%;
	transform: rotate(-5deg);
	margin: 1em 0;
}
.btn-give-mobile {
	position: absolute;
	font-size: 18px;
	right: 30px;
	bottom: 0;
	text-transform: uppercase;
	font-weight: 600;
}
.btn-give-mobile:hover {
	color: var(--white-color);
	background-color: #444;
	text-decoration: none;
}
@media (max-width: 1024px) {
	.btn-give {
		right: 50px;
		top: 400px;
		width: 350px;
	}
	.btn-give > p {
		left: 70px;
	}
	.text-garant-1 {
		top: 20px;
	}
	.text-garant-2 {
		top: 190px;
	}
	.text-garant-3 {
		top: 360px;
	}
	.text-garant-4 {
		top: 210px;
		right: 80px;
	}
}
@media (max-width: 999px) {
	.wrapper-descktop {
		display: none;
	}
	.wrapper-mobile {
		display: block;
	}
}
@media (max-width: 768px) {
	.btn-give-mobile {
		bottom: 30px;
		right: 180px;
	}
	.youtube-mobile {
		height: 560px;
	}
	.text-garant-1-mobile > h2,
	.text-garant-2-mobile > h2,
	.text-garant-3-mobile > h2 {
		font-size: 260%;
	}
	.text-garant-1-mobile > h6,
	.text-garant-2-mobile > h6,
	.text-garant-3-mobile > h6 {
		font-size: 140%;
	}
	.btn-buy {
		right: 180px;
	}
	.cross {
		left: 189px;
	}
	.old-price {
		left: 190px;
	}
	.new-price {
		left: 230px;
	}
}
@media (max-width: 425px) {
	.btn-give-mobile {
		bottom: 0;
		right: 50px;
	}
	.youtube-mobile {
		height: 380px;
		background-size: cover;
		background-repeat: no-repeat;
	}
	.text-garant-1-mobile {
		top: 10px;
		left: 80px;
	}
	.text-garant-2-mobile {
		top: 170px;
		left: 80px;
	}
	.text-garant-3-mobile {
		top: 330px;
		left: 80px;
	}
	.text-garant-4-mobile {
		top: 480px;
		right: 50px;
	}
	.text-garant-4-mobile > h1 {
		font-size: 180%;
	}
	.text-garant-1-mobile > h2,
	.text-garant-2-mobile > h2,
	.text-garant-3-mobile > h2 {
		font-size: 170%;
	}
	.text-garant-1-mobile > h6,
	.text-garant-2-mobile > h6,
	.text-garant-3-mobile > h6 {
		font-size: 100%;
	}
	.btn-buy {
		right: 0;
	}
	.cross {
		left: 40px;
	}
	.old-price {
		left: 40px;
	}
	.new-price {
		left: 60px;
	}
}
@media (max-width: 375px) {
	.text-garant-1-mobile {
		top: 0px;
		left: 70px;
	}
	.text-garant-2-mobile {
		top: 140px;
		left: 70px;
	}
	.text-garant-3-mobile {
		top: 280px;
		left: 70px;
	}
	.text-garant-4-mobile {
		top: 420px;
		right: 50px;
	}
	.text-garant-4-mobile > h1 {
		font-size: 150%;
	}
	.btn-give-mobile {
		bottom: 0;
		right: 30px;
	}
	.new-price {
		left: 60px;
	}
	.youtube-monile {
		height: 330px;
	}
}
@media (max-width: 320px) {
	.text-garant-1-mobile {
		top: 5px;
		left: 50px;
	}
	.text-garant-2-mobile {
		top: 120px;
		left: 50px;
	}
	.text-garant-3-mobile {
		top: 240px;
		left: 50px;
	}
	.text-garant-4-mobile {
		top: 360px;
		right: 30px;
	}
	.text-garant-4-mobile > h1 {
		font-size: 140%;
	}
	.text-garant-1-mobile > h2,
	.text-garant-2-mobile > h2,
	.text-garant-3-mobile > h2 {
		font-size: 160%;
	}
	.text-garant-1-mobile > h6,
	.text-garant-2-mobile > h6,
	.text-garant-3-mobile > h6 {
		font-size: 90%;
	}
	.cross {
		left: 10px;
	}
	.old-price {
		left: 10px;
	}
	.new-price {
		left: 25px;
	}
	.youtube-mobile {
		height: 280px;
		background-size: cover;
		background-position: center;
	}
}
/* Services */
.title-center {
	text-align: center;
	font-size: 20px;
}
.title {
	overflow: hidden;
	color: #444;
}
.title::before {
	margin-left: -100%;
}
.title-center::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	width: 100%;
	height: 3px;
	background: var(--corporate-color-1);
	border: solid transparent;
	border-width: 0 10px;
}
.title::after {
	margin-right: -100%;
}
.title-center::after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	width: 100%;
	height: 3px;
	background: var(--corporate-color-1);
	border: solid transparent;
	border-width: 0 10px;
}
.caption-services {
	text-align: center;
}
.caption-services > h5 {
	font-weight: 400 !important;
}
.services-list {
	max-width: 1025px;
	margin: 0 auto;
	margin-top: 2em;
}
.services-list > ul {
	padding: 30px 10px;
	text-align: center;
}
.list-services {
	display: inline-block;
	width: 260px;
	margin: 15px;
	background: var(--white-color) fff;
	border-radius: var(--border-radius);
	vertical-align: top;
}
.padding-list {
	padding: 15px;
	height: 290px;
}
.list-services:hover {
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
}
.img-antivirus {
	margin: 20px 15px;
}
.description {
	text-align: left;
	color: #8f8f8f;
	font-family: "roboto-medium";
}
.services-price {
	display: block;
	padding: 18px;
	border-top: 2px solid #f7f7f7;
	text-decoration: none;
	clear: both;
}
.services-price-free {
	display: block;
	padding: 18px;
	border-top: 2px solid #f7f7f7;
	text-decoration: none;
	clear: both;
}
.services-price-free-have {
	display: block;
	padding: 18px;
	border-top: 2px solid #f7f7f7;
	text-decoration: none;
	clear: both;
}
.services-price-free:hover {
	text-decoration: none;
}
.services-price-free-have:hover {
	text-decoration: none;
}
.services-price:hover {
	text-decoration: none;
}
.services-price::before {
	content: "Подключить";
	font-size: 14px;
	display: inline-block;
	/* float: right; */
	color: var(--corporate-color-1);
	padding-right: 15px;
	margin-top: 13px;
	background: url(../img/arrow-services.png) right center no-repeat;
}
.services-price-free::before {
	content: "улучшить";
	font-size: 14px;
	display: inline-block;
	color: var(--corporate-color-1);
	padding-right: 15px;
	margin-top: 13px;
	background: url(../img/arrow-services.png) right center no-repeat;
}
.services-price-value-free {
	color: #444;
	font-size: 16px;
	font-weight: bold;
}
.services-price-value {
	color: #444;
	font-size: 25px;
	font-weight: bold;
}
.services-price-value::after {
	content: "₸ / день";
	font-size: 13px;
	font-family: "roboto-light";
}
.btn-more {
	width: 200px;
	margin: 0 auto;
}
.button-more {
	font-weight: bold;
	position: relative;
	font-size: 16px;
	height: 50px;
	width: 200px;
	color: #444;
	border: 1px solid var(--corporate-color-1);
	border-radius: 4px;
	cursor: pointer;
	margin: 20px 0;
	transition: all 0.5s;
}
.button-more > p {
	position: absolute;
	top: 13px;
	left: 60px;
}
.button-more::before {
	content: "+";
	padding-right: 120px;
	font-size: 30px;
	display: inline-block;
	vertical-align: sub;
	position: absolute;
	top: 0;
	left: 30px;
	color: var(--corporate-color-1);
	transition: color 0.5s;
}
.button-more:hover {
	color: var(--white-color);
	background-color: var(--corporate-color-1);
}
.button-more:hover:before {
	color: var(--white-color);
}
.list-services {
	transition: all 0.3s;
}
/* Support */
.preview-text {
	padding-top: 3em;
	text-align: center;
}
.support {
	background: var(--corporate-color-1);
	color: var(--white-color);
	text-align: center;
	padding: 63px 0;
}
.text-input > h1 {
	font-size: 58px;
	margin-bottom: 66px;
}
.search-block {
	position: relative;
	max-width: 620px;
	height: 40px;
	margin: 0 auto;
}
.search-block > input {
	width: 100%;
	border: none;
	display: block;
	position: relative;
	margin: 0 auto;
	padding: 0 40px 0 12px;
	border-radius: 5px;
	color: grey;
	box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.2);
	font-size: 1rem;
	height: 100%;
}
.search-block > input:hover,
:active,
:focus {
	outline: 0;
	outline-offset: 0;
}
.search-btn {
	border: none;
	width: 10px;
	color: #444;
	position: absolute;
	top: 7px;
	right: 0;
	z-index: 5;
	width: 32px;
	background: var(--white-color);
	cursor: pointer;
}
.item-padding {
	margin-top: 4em;
}
.support--questions > .item {
	padding: 60px 20px 20px;
	text-align: center;
	border: 1px solid #ebedee;
	border-left: none;
	margin: -1px 0 0;
	color: var(--corporate-color-1);
}
.item:hover {
	color: var(--text-color);
	background: #ebedee;
	text-decoration: none;
}
.item > a {
	font-size: 20px;
}
.item-name {
	display: block;
	margin: 0 0 6px;
	font-size: 20px;
}
.item--questions {
	color: #b4b7bb;
	display: block;
	font-family: "roboto-light";
}
.margin-btn {
	margin-top: 2.5em;
}
.button-soc {
	width: 130px;
	margin: 0 auto;
}
.icon-btn-soc {
	margin-right: 0.2em;
	padding-right: 0.2em;
	border-right: 1px solid #e2e9eb;
}
.btn-vk {
	color: var(--white-color);
	font-size: 24px !important;
	background-color: #4a76a8;
	line-height: 57px;
	padding: 15px !important;
}
.btn-vk:hover {
	color: var(--white-color);
	text-decoration: none;
	background-color: #444;
}
.btn-inst {
	color: var(--white-color);
	width: 179px;
	background-color: #bc2a8d;
	font-size: 24px !important;
	padding: 15px !important;
}
.btn-inst:hover {
	color: var(--white-color);
	text-decoration: none;
	background-color: #444;
}
@media (max-width: 768px) {
	.item {
		width: 50%;
		border: 1px solid #ebedee;
		border-left: none;
	}
	.text-input > h1 {
		font-size: 46px !important;
		margin-bottom: 63px;
	}
	.preview-text > h1 {
		font-size: x-large;
	}
}
@media (max-width: 425px) {
	.search-block {
		margin: 0 2em;
	}
	.item-name {
		font-size: 14px;
	}
	.item--questions {
		font-size: 12px;
	}
}
/* Terminal */
.filter {
	max-width: 320px;
	margin: 0 auto;
	background-color: var(--white-color);
}
.filter-color {
	width: 100%;
	background-color: var(--white-color);
	margin-top: 1em;
}
.filter-item {
	display: inline-flex;
}
.filter--item {
	width: 106.7px;
	padding: 9px;
	font-size: 16px;
	color: grey;
	cursor: pointer;
	text-align: center;
	font-family: "roboto-medium";
}
.terminals {
	background-color: var(--white-color);
	margin-top: 1em;
}
.terminal-item {
	background-color: var(--white-color);
}
.terminal--item {
	border-bottom: 1px solid #ededed;
	position: relative;
	cursor: pointer;
}
.link-worked {
	margin-bottom: 0;
	margin-top: 0.5em;
	line-height: 18px;
	color: #9c9c9c;
	font-family: "roboto-light";
}
.link-worked::before {
	content: "• ";
	font-size: 30px;
	color: #60cd4c;
	vertical-align: text-top;
}
.link-closed {
	margin-bottom: 0;
	margin-top: 0.5em;
	line-height: 18px;
	color: #9c9c9c;
	font-family: "roboto-light";
}
.link-closed::before {
	content: "• ";
	font-size: 30px;
	color: #e24646;
	vertical-align: text-top;
}
.term--work--time {
	text-align: center;
	color: #707070;
	font-size: 12px;
	margin-bottom: 0;
}
.show-text {
	margin: 0;
	text-align: center;
	cursor: pointer;
}
.show--text {
	text-align: center;
	color: #999;
	margin: 0;
	font-family: "roboto-light";
}
.fa-plus {
	transition: all 0.2s;
}
.fa-plus-rotate {
	transform: rotate(45deg);
	transition: all 0.2s;
}
.address-text > h6,
.time > h6 {
	color: #707070;
	text-transform: uppercase;
	padding: 15px 0;
	width: 100%;
	margin: auto !important;
}
.address-text > h6 {
	width: 100%;
	margin: auto !important;
}
.more--address {
	background-color: var(--white-color);
	padding: 15px;
}
.img-map {
	width: 50px;
	margin: 0 auto;
}
.col-xs-10 {
	width: 80%;
	padding: 0 15px;
}
.col-xs-10 > h5,
.col-xs-10 > p {
	font-weight: 400;
	font-size: 108%;
	text-align: left;
	font-family: "roboto-light";
}
.no-padding {
	padding: 0 !important;
}
.link-close::before {
	content: "• ";
	font-size: 30px;
	color: rgb(226, 70, 70);
	vertical-align: text-top;
}
.link-close {
	margin-bottom: 0;
	margin-top: 0.5em;
	line-height: 18px;
	color: #9c9c9c;
}
.more---color {
	width: 100%;
	background-color: var(--white-color);
	padding-bottom: 1em;
}
.more---color > h5 {
	padding: 0 15px;
	font-weight: 400;
	font-size: 108%;
	margin-bottom: 0;
	padding-top: 1em;
	color: #707070;
}
.more--time {
	background-color: var(--white-color);
	max-width: 320px;
	margin: 0 auto;
	margin-top: 1em;
}
.more--time ul {
	display: inline-flex;
	margin: 0;
	padding: 0;
	max-width: 320px;
	margin: 0 auto;
}
.day {
	color: #9c9c9c;
	font-size: 16px !important;
	text-align: center;
	border-bottom: 0.1px solid #c9c9c9;
	width: 35px;
}
.week {
	color: #9c9c9c;
	padding: 4px;
	margin: 0 1px;
	font-size: 14px;
	font-family: "roboto-light";
}
.active-day {
	border: 2px solid #93cb62;
	cursor: pointer;
	color: #9c9c9c;
	margin: 0 1px;
	font-size: 14px;
	padding: 3px 5px;
}
.active-day > .day {
	border-bottom: none;
}
.faq .btn-admin {
	font-size: 17px;
}
.hidden-md-up {
	display: none !important;
}
.xcom_guide-mobile {
	max-width: 275px;
	margin: 0 auto;
	overflow-y: hidden;
	padding-bottom: 1em;
	width: 100%;
}
.xcom_guide-mobile::-webkit-scrollbar {
	width: 0;
}
.xcom_guide-mobile > ul {
	display: inline-flex;
}
.product_item-guide-mobile {
	position: relative;
	box-sizing: border-box;
	height: 65px !important;
	margin-right: 20px;
}
.product_item_link-guide-mobile {
	font-size: 16px;
	color: #444;
	line-height: 63px;
	font-family: "Roboto-Regular", "SFUIText-Regular", Helvetica, Arial, sans-serif;
	font-weight: normal;
	display: inline-block;
	white-space: nowrap;
	height: 100%;
	width: 100%;
	vertical-align: middle;
	box-sizing: border-box;
	text-decoration: none;
	margin: auto;
}
.product_item_link-guide-mobile:hover {
	text-decoration: none;
	color: var(--corporate-color-1);
}
.product_item_link-guide-mobile > i {
	display: block;
	color: var(--corporate-color-1);
	font-size: 26px;
	width: 30px;
	margin: 0 auto;
	text-align: center;
}
.social {
	font-size: 24px;
	margin-left: 0.5rem;
}
.vk {
	color: #4c68ae !important;
}
.inst {
	color: #734530 !important;
}
.whatsapp {
	color: #3e7a41 !important;
}
.imgadapt {
	width: 100%;
}
.btn-treaty {
	background-color: #3eb646 !important;
	font-family: "roboto-medium";
}
.btn-treaty:hover {
	background-color: #444 !important;
}
.btn-create-order {
	background-color: var(--corporate-color-1);
	color: var(--white-color) !important;
	margin-bottom: 0.5rem;
	width: 100%;
	font-family: "roboto-medium";
}
.btn-create-order:hover {
	background-color: #444;
	color: var(--white-color);
}
.faq-text-adapt {
	font-family: "roboto-medium";
	padding: 1.25em 3.25em;
}
.plus--faq {
	transition: all 0.4s;
	top: 25px;
	right: 20px;
	position: absolute;
	color: #00a1eb;
	font-size: 16px;
}
.fa-plus-active {
	transform: rotate(-45deg);
}
.circle {
	list-style-type: none;
	counter-reset: item;
	list-style-position: outside;
}
.circle li {
	margin-left: 2em;
	margin-top: 0em;
	margin-bottom: 0em;
	line-height: 1.8em;
}
.circle li:before {
	content: counter(item) ") ";
	content: counter(item);
	counter-increment: item;
	background: var(--corporate-color-1);
	color: var(--white-color);
	box-shadow: 0em 0.3em 0.9em 0em rgba(0, 0, 0, 0.25);
	border-radius: 2.5em;
	padding: 0.5em 0.51em 0.5em 0.49em;
	font-size: 1em;
	text-align: center;
	line-height: 1.5em;
	width: 34px;
	height: 34px;
	display: inline-block;
	margin-left: -3.4em;
	margin-right: 1em;
	margin-top: 1.2em;
}
.circle .list-orange li:before {
	background: #ff5722;
}
.arrow_to_link {
	padding-left: 13px;
	background: url(../img/icon-arrow.gif) no-repeat 3px center;
}
@media (max-width: 780px) {
	.rotate-btn {
		font-size: 11px;
		white-space: normal;
	}
	.plus--faq {
		top: 13px !important;
		right: 0 !important;
	}
	.top-10 > h1 {
		font-size: 26px;
	}
	.xcom_guide-mobile {
		max-width: 280px;
	}
}
@media (max-width: 1000px) {
	.hidden-md-down {
		display: none;
	}
	.top-10 {
		width: 100%;
		font-size: 12px;
		min-width: 320px;
	}
	.hidden-md-up {
		display: inline-block !important;
	}
}
@media (max-width: 1024px) {
	.top-10 {
		width: 100%;
	}
	.card-header {
		padding: 0.5rem 0;
	}
	.faq-text-adapt {
		font-size: 13px;
	}
}
@media (max-width: 320px) {
	.card-header {
		padding: 0.25rem 0 !important;
	}
}
/* Error Page */
#block-check-errors {
	width: 100%;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.1) inset;
	background: #ebebeb;
	background-image: linear-gradient(top, #dedede 0, #ebebeb 3%, #ebebeb 97%, #dedede 100%);
	overflow-x: hidden;
	padding: 30px 0;
}
.er-icons {
	display: block;
	background: url(../img/icons-error.png) no-repeat;
}
.er-router {
	width: 95px;
	height: 95px;
	margin: 0 auto;
	background-position: 0 0px;
}
.er-payment {
	width: 95px;
	height: 95px;
	margin: 0 auto;
	background-position: 0 -95px;
}
.er-internet {
	width: 95px;
	height: 95px;
	margin: 0 auto;
	background-position: 0 -190px;
}
.er-tarif {
	background: url(../img/turbina-error.png) no-repeat;
	background-size: cover;
	width: 95px;
	height: 95px;
	margin: 0 auto;
	-webkit-filter: grayscale(100%) !important;
	filter: grayscale(100%) !important;
}
.er-xcom {
	background: url(../img/xcom.png) no-repeat;
	background-size: cover;
	width: 95px;
	height: 95px;
	margin: 0 auto;
}
.error-ok {
	width: 48px;
	height: 48px;
	margin: 0 auto;
	background-position: 0 -283px;
	position: absolute;
	bottom: -24px;
	left: 38.5%;
}
.error-not {
	width: 48px;
	height: 48px;
	margin: 0 auto;
	background-position: 0 -327px;
	position: absolute;
	bottom: -24px;
	left: 38.5%;
}
.error-warning {
	width: 48px;
	height: 48px;
	margin: 0 auto;
	background-position: 0 -374px;
	position: absolute;
	bottom: -24px;
	left: 38.5%;
}
.col-20 {
	cursor: pointer;
	width: 20%;
	float: left;
	box-sizing: border-box;
	flex: 0 0 20% !important;
	max-width: 100% !important;
	color: #404040;
}
.col-20:hover,
.col-20:active,
.col-20:focus {
	text-decoration: none;
	color: #404040;
}
.error-select::after {
	border-bottom: 18px solid var(--white-color);
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	bottom: -30px;
	content: "";
	display: block;
	height: 0;
	left: 50%;
	margin-left: -9px;
	position: absolute;
	right: 50%;
	width: 0;
}
.er-arrow::before {
	content: "";
	background: url(../img/icons-error.png) no-repeat;
	background-position: 0 -356px;
	background-size: 80px;
	height: 45px;
	width: 80px;
	display: block;
	left: -19%;
	position: absolute;
	top: 25%;
}
.error_pg-text-center {
	text-align: center;
	margin-top: 1.5rem;
}
.error_pg-text {
	text-align: center;
}
.border-none {
	border: none !important;
}
@media (max-width: 992px) {
	.col-20 {
		padding: 1.5rem 15px;
		border-bottom: 1px solid #cdcdcd;
	}
	.error_pg-text-center {
		text-align: left;
		margin-top: 0;
	}
	.error_pg-text {
		text-align: left;
		display: inline;
	}
	.error_pg-text > h3,
	span {
		display: inline;
	}
	.col-lg-12 {
		flex: 0 0 100% !important;
		max-width: 100% !important;
	}
	.error-select::after {
		display: none;
	}
	.er-router,
	.er-internet,
	.er-xcom,
	.er-payment,
	.er-tarif,
	.er-arrow::before {
		background-position: 0 -99999999px;
		width: 0;
		height: 0;
	}
	.error-not,
	.error-ok,
	.error-warning {
		right: 1px;
		top: 0;
		left: 90%;
		bottom: 0;
		margin: 0;
	}
}
@media (max-width: 768px) {
	.col-md-12 {
		flex: 0 0 100% !important;
		max-width: 100% !important;
	}
	.center-footer {
		max-width: 720px;
		margin: auto;
		text-align: center;
	}
	.schedule {
		margin: 0 auto;
	}
}
/* Contact Us */
.contact_us {
	text-align: center;
	margin-top: 1.5rem;
	justify-content: space-around;
	display: flex;
}
.contact_us img {
	margin-right: 10px;
}
.contact_us a {
	text-decoration: none;
	color: var(--text-color);
	font-size: 1rem;
	margin-left: 1rem;
}
@media only screen and (max-width: 768px) {
	.contact_us {
		text-align: center;
		margin-top: 1.5rem;
		display: block;
	}
}
/* Footer */
#footer {
	width: 100%;
	height: 100%;
	margin-top: 2.5em;
	border-top: 1px solid #e4e4e4;
	font-family: var(--font-family-roboto);
}
#footer .row {
	margin-right: 0;
	margin-left: 0;
}
#footer a {
	padding: 5px 0;
	display: inline-block;
}
.center-footer {
	margin: auto;
	margin-bottom: 1em;
}
.padding-container {
	padding: 2.5em 0 0.5em;
}
.img-copyright {
	width: 220px;
	margin: 0 auto;
}
.address li {
	text-align: left;
}
.monday::before {
	content: "По будням:";
	margin-right: 1em;
}
.saturday::before {
	content: "Суббота:";
	margin-right: 2.2em;
}
.sunday::before {
	content: "Воскресенье:";
	margin-right: 1.1em;
}
.footer-menu {
	width: 240px;
	margin: auto;
}
.footer-menu ul {
	list-style: none;
	padding: 0;
}
.footer-menu li {
	text-align: left;
}
.footer-menu li > a {
	color: var(--text-color);
}
.contact-footer {
	margin: 0 auto;
}
.footer-soc ul {
	list-style: none;
	padding: 0;
	display: inline-flex;
}
.footer-soc p > i {
	padding: 6px;
	display: inline-block;
	font-size: 29px;
	color: var(--text-color);
	vertical-align: bottom;
}
.phone_number-footer > p {
	text-align: center;
}
.mail-footer a,
.mail-footer p {
	text-align: center;
	color: var(--text-color);
}
.mail-footer a:hover {
	text-decoration: none;
	color: var(--text-color);
}
@media (max-width: 4000px) {
	.adapt-width-768 {
		max-width: 33% !important;
		flex: 0 0 33% !important;
	}
}
@media (max-width: 1199px) {
	.copyrigh {
		display: none;
	}
}
@media (max-width: 768px) {
	.adapt-width-768 {
		max-width: 33% !important;
		flex: 0 0 33% !important;
		margin-bottom: 2em;
	}
	.center-footer {
		max-width: 720px;
		margin: auto;
		text-align: center;
	}
	.schedule {
		margin: 0 auto;
	}
}
@media (max-width: 768px) {
	.adapt-width-768 {
		max-width: 100% !important;
		flex: 0 0 100% !important;
	}
	.footer-menu li {
		text-align: center;
	}
	.caption-footer {
		text-align: center;
	}
	.footer-menu li {
		text-align: center;
	}
	.address li {
		text-align: center;
	}
}
/* Media */
@media (max-width: 1440px) {
	.now {
		top: 100px;
		left: 40px;
	}
	.forward {
		left: -5px;
		top: 100px;
	}
	.tariff-img-connect > img {
		width: 100%;
	}
	.start-now-tariff-turbo > img {
		top: 360px;
	}
	.tariff-adapt-connect {
		padding: 0;
	}
	.nominal-speed-connect {
		padding-top: 20px;
	}
}
@media (max-width: 1199px) {
	.shell {
		left: 18px;
		top: 150px;
	}
	.img-vBot {
		bottom: -110px;
		left: -45px;
	}
	.tariff-img-connect > img {
		width: 150px;
		padding-right: 10px;
	}
	.mbit-connect {
		font-size: 15px;
	}
	.speed-connect,
	.thousand-connect {
		font-size: 27px;
	}
	.currency-connect::after {
		font-size: 13px;
	}
	.currency-connect > small {
		font-size: 15px;
	}
	.hundred-connect > small {
		font-size: 15px;
	}
}
@media (max-width: 1024px) {
	.now {
		top: 145px;
		left: -10px;
	}
	.forward {
		left: -5px;
		top: 90px;
	}
	.tariff-img-connect > img {
		padding-top: 5px;
	}
	.start-now-tariff-turbo {
		display: none;
	}
}
@media (max-width: 990px) {
	.tariff-img-connect > img {
		width: 110px;
		padding-top: 10px;
	}
	.nominal-speed-connect {
		padding-top: 14px;
	}
	.speed-connect,
	.thousand-connect {
		font-size: 20px;
	}
	.speed-connect::before {
		font-size: 13px;
	}
	.mbit-connect {
		font-size: 13px;
	}
	.hundred-connect > small {
		font-size: 15px;
		line-height: 1.5;
	}
	.currency-connect > small {
		font-size: 12px;
	}
	.currency-connect::after {
		font-size: 9px;
	}
	.shell {
		display: none;
	}
	.more {
		display: none;
	}
	.forward {
		display: none;
	}
	#tank-900px {
		left: -110px;
	}
	.tariff-adapt-connect {
		padding: 0;
	}
}
@media (max-width: 768px) {
	.caption-tariff {
		width: 100% !important;
	}
	.caption-tariff img {
		width: 100%;
	}
	.caption-tariff > h2,
	.caption-tariff > p {
		top: 0 !important;
		right: 0 !important;
	}
	.img-width {
		width: 100%;
	}
	.btn-connect {
		width: 100%;
	}
	.shell {
		top: 100px;
		left: 0;
		transform: rotate(30deg);
	}
	.now {
		top: 150px;
		left: 20px;
		transform: rotate(5deg);
	}
	.more {
		right: 15px;
	}
	.forward {
		width: 110px;
		top: 150px;
		left: unset;
		transform: rotate(-10deg);
	}
	.rule-caption {
		width: 100%;
	}
	.down-adapt {
		height: 200px;
	}
	#height-tanks {
		height: 130px;
	}
	#youtube-connect {
		position: relative !important;
		bottom: -2px;
		left: 0;
	}
	.down {
		z-index: 90;
	}
	#tanks-connect {
		bottom: 0px !important;
	}
	.prize-speed-connect > a {
		width: 100%;
		font-size: 14px;
	}
	.mbit-connect {
		font-size: 14px;
	}
	.speed-connect,
	.thousand-connect {
		font-size: 24px;
	}
	.currency-connect > small {
		font-size: 14px;
	}
	.currency-connect::after {
		font-size: 10px;
	}
	.hundred-connect > small {
		line-height: 1.9;
		font-size: 16px;
	}
	.tariff-img-connect > img {
		width: 110px;
		padding-top: 10px;
	}
	.tariff-name {
		padding: 10px 0 0 15px;
	}
	.additional-information-tariffs {
		display: none;
	}
	.tariff-adapt-connect {
		padding-right: 6px;
	}
}
@media (max-width: 767px) {
	#min-ping-hide {
		display: none;
	}
	#min-ping-show {
		display: block;
	}
	#discounts-hide {
		display: none;
	}
	#discounts-show {
		display: block;
	}
	#safe-internet-hide {
		display: none;
	}
	#safe-internet-show {
		display: block;
	}
	#youtube-hide {
		display: none;
	}
	#youtube-show {
		display: block;
	}
	#tanks-connect {
		bottom: -40px !important;
		left: 40px;
	}
	.now {
		display: none;
	}
	.shell {
		display: none;
	}
	.more {
		display: none;
	}
	.forward {
		display: none;
	}
	.img-vBot {
		left: 17%;
		bottom: -90px;
	}
	.tariff-img-connect > img {
		width: 250px;
		padding-top: 0;
	}
	.nominal-speed-connect {
		padding-top: 50px;
	}
	.speed-connect,
	.thousand-connect {
		font-size: 36px;
	}
	.hundred-connect > small {
		font-size: 22px;
	}
	.currency-connect > small {
		font-size: 17px;
	}
	.currency-connect::after {
		font-size: 15px;
	}
}
@media (max-width: 500px) {
	.tariff-img-connect > img {
		width: 230px;
	}
}
@media (max-width: 460px) {
	.nominal-speed-connect {
		padding-top: 25px;
	}
}
@media (max-width: 425px) {
	.down-adapt {
		height: 175px;
	}
	.img-vBot {
		left: 8%;
		bottom: -90px;
	}
	.btn-more-info-connect2 {
		z-index: 500;
	}
	.down {
		z-index: 90;
	}
	#youtube-connect {
		position: relative !important;
		bottom: 30px;
		left: 0;
	}
	.tariff-img-connect {
		width: 49%;
		border: none;
	}
	.tariff-adapt-connect {
		width: 60%;
	}
	.tariff-img-connect > img {
		width: 150px;
	}
	.speed-connect,
	.thousand-connect {
		font-size: 34px;
	}
	.hundred-connect > small {
		font-size: 24px;
		line-height: 1.7;
	}
	.currency-connect > small {
		font-size: 17px;
	}
	.currency-connect::after {
		font-size: 12px;
	}
	.prize-speed-connect > p {
		width: 250px;
	}
	.nominal-speed-connect {
		padding-top: 10px;
	}
}
@media (max-width: 375px) {
	.cr1,
	.cr-2 {
		font-size: 32px;
	}
	.back-table {
		margin-top: 3em;
	}
	.down-adapt {
		height: 185px;
	}
	#height-tanks {
		height: 80px;
	}
	.img-width-youtube {
		width: 70%;
	}
	.img-vBot {
		bottom: -100px;
	}
	#tanks-connect {
		bottom: 10px;
	}
}
@media (max-width: 320px) {
	.img-width-youtube {
		width: 80%;
	}
}
/* Камеры XCOM */
.cam-xcom h4 {
	color: #242f40;
	font-weight: 700;
	font-size: 16px;
}
.cam-xcom p {
	line-height: 15px;
	margin-top: 4px;
	color: #717b8f;
	font-weight: 500;
	margin-bottom: 8px;
}
.cam-xcom #cam-xcom-wrapper {
	margin: 16px 0 0 0;
	display: -webkit-inline-box;
	min-height: min-content;
	max-width: -webkit-fill-available;
	overflow: auto;
	overflow-y: hidden;
	-ms-overflow-style: none !important;
	scrollbar-width: none !important;
	transition: all 100ms;
	max-width: -moz-available;
}
.cam-xcom #cam-xcom-wrapper .cam-xcom__item {
	display: block;
	max-width: 262px;
	padding-right: 12px;
	-webkit-user-drag: none;
	text-decoration: none;
}
.cam-xcom #cam-xcom-wrapper .cam-xcom__item h6 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	color: var(--text-color);
	text-decoration: none;
	font-size: 13px;
	margin-top: 5px;
	font-weight: 500;
	line-height: 15px;
	pointer-events: none;
}
.cam-xcom #cam-xcom-wrapper .cam-xcom__item img {
	pointer-events: none;
	border-radius: var(--border-radius);
	height: 165px;
	width: 262px;
}
.cam-xcom #cam-xcom-wrapper::-webkit-scrollbar {
	width: 0;
	height: 0;
}
.cam-xcom #cam-xcom-wrapper:active {
	margin: 16px 0 0 0px;
}
.cam-xcom #cam-xcom-wrapper .cam-xcom__item.cam-xcom-more {
	color: var(--text-color);
	align-items: center;
	height: 165px;
	right: 0;
	text-decoration: none;
	display: flex !important;
}
/* Статус оплаты */
.status-payment {
	width: 500px;
	margin: 0 auto;
	text-transform: lowercase;
}
.status-payment .status-payment__header {
	font-size: 20px;
	font-weight: 600;
}
.status-payment .status-payment__body {
	padding: 13px 16px 13px 24px;
	background: #f8f9fa;
	border-radius: var(--border-radius);
}
.status-payment .status-payment__body .status-payment__waiting {
	display: flex;
	gap: 16px;
	align-items: center;
}
.status-payment .status-payment__body .status-payment__waiting .status-payment__waiting-text .title {
	font-size: 18px;
	font-weight: 500;
}
.status-payment .status-payment__body .status-payment__waiting .status-payment__waiting-text p {
	font-size: 15px;
	color: #242f40;
}
.status-payment .status-payment__body .status-payment__waiting .status-payment__icon.fa-wallet {
	font-size: 24px;
	color: #f4ac32;
}
.status-payment .status-payment__details .status-payment__details-item {
	margin-top: 12px;
	padding: 13px 16px 16px 24px;
	background: #f8f9fa;
	border-radius: var(--border-radius);
}
.status-payment .status-payment__details .status-payment__details-info:before {
	position: absolute;
	content: "";
	bottom: 0px;
	height: 8px;
	width: 100%;
	background-size: 25px 11px;
	background-position: 0px -3px;
	background-image: -webkit-radial-gradient(50% 0%, circle, lightblue 50%, transparent 55%);
	background-image: -moz-radial-gradient(50% 0%, circle, lightblue 50%, transparent 55%);
	background-image: radial-gradient(circle at 50% 0%, var(--gray-color) 50%, transparent 55%);
	transform: rotate(180deg);
	right: 0;
}
.status-payment .status-payment__details .status-payment__details-item {
	display: flex;
	gap: 16px;
	align-items: center;
}
.status-payment .status-payment__details .status-payment__details-item .status-payment__details-amount .status-payment__details-text {
	font-size: 14px;
	color: #717b8f;
}
.status-payment .status-payment__details .status-payment__details-item .status-payment__details-amount .status-payment__details-price {
	font-size: 26px;
	font-weight: 700;
}
.status-payment .status-payment__details .status-payment__details-item .status-payment__details-icon {
	background: #0089d0;
	border-radius: 50%;
	color: var(--white-color);
	font-size: 20px;
	width: 44px;
	height: 44px;
	align-items: center;
	display: flex;
	justify-content: center;
}
.status-payment .status-payment__details .status-payment__details-item .status-payment__details-icon.fa-receipt {
	background: #0089d0;
}
.status-payment .status-payment__details .status-payment__details-item .status-payment__details-icon.fa-check-circle {
	background: #85cb33;
}
.status-payment hr {
	margin: 0;
	position: relative;
	border-top: 2px dashed var(--white-color);
}
.status-payment hr::before {
	content: "";
	height: 28px;
	width: 28px;
	display: block;
	position: absolute;
	left: -15px;
	background: var(--gray-color);
	border-radius: 50%;
	top: -15px;
	z-index: 9999;
}
.status-payment hr::after {
	content: "";
	height: 28px;
	width: 28px;
	display: block;
	position: absolute;
	right: -15px;
	background: var(--gray-color);
	border-radius: 50%;
	top: -15px;
	z-index: 9999;
}
.status-payment .status-payment__details .status-payment__details-info {
	padding: 13px 24px 13px 24px;
	background: #f8f9fa;
	border-radius: var(--border-radius);
	line-height: 12px;
	padding-top: 24px;
	position: relative;
}
.status-payment .status-payment__details .status-payment__details-info {
	font-size: 16px;
}
.status-payment .status-payment__details .status-payment__details-info div {
	display: flex;
	justify-content: space-between;
	line-height: 20px;
}
.status-payment .status-payment__details .status-payment__details-info span {
	color: #717b8f;
}
.status-payment .status-payment__details .status-payment__details-info p {
	font-weight: 500;
}
.status-payment .status-payment__details .status-payment__details-info span.tarif_name {
	text-transform: uppercase;
	font-weight: 600;
}
.status-payment .status-payment__details .status-payment__details-info .status-payment__details-item--tariff p {
	text-transform: uppercase;
}
.status-payment .status-payment__change-tariff {
	background: #ff4431;
	color: var(--white-color);
	border: none;
}
@media (max-width: 768px) {
	.status-payment {
		width: auto;
		margin: 0 auto;
	}
}
@media (max-width: 375px) {
	.status-payment .status-payment__details .status-payment__details-info div {
		display: block;
	}
}

/* support */
.btn-social {
	cursor: pointer;
}

.btn-social {
	color: #fff;
	border: none;
	gap: 0.5rem;
}

.btn-social:hover {
	color: #fff;
}

.btn-whatsapp {
	background-color: #4bc75a;
}

.btn-instagram {
	background: #f09433;
	background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	text-decoration: none !important;
}

.btn-telegram {
	background: #279fd3;
}

@media (max-width: 768px) {
	.btn-social-wrapper {
		gap: 0.5rem;
	}
}
