@font-face {
	font-family: ProReg;
	src: url(../fonts/ProductSans-Regular.ttf);
}

@font-face {
	font-family: ProMed;
	src: url(../fonts/ProductSans-Medium.ttf);
}

@font-face {
	font-family: ProBold;
	src: url(../fonts/ProductSans-Bold.ttf);
}

@font-face {
	font-family: ProLight;
	src: url(../fonts/ProductSans-Light.ttf);
}

@font-face {
	font-family: ProBlack;
	src: url(../fonts/ProductSans-Black.ttf);
}
html
{
	overflow-x: hidden;
}

body
{
    padding: 0;
    box-sizing: border-box;
	font-family: ProReg, sans-serif;
	color: #000;
	overflow-x: hidden;
}

h1
{
	font-size: 42px;
}


.h1
{
	font-size: 42px;
	font-family: ProMed, sans-serif;
	margin-bottom: 42px;
	margin-top: 120px;
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	z-index: 2;
}

.h1-notop
{
	margin-top: 40px!important;
}

li::marker 
{
	color: #6600FF;
}

input[type='checkbox'] {
	/* remove browser chrome */
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	/*add styling */
	position: relative;
	width: 16px;
	height: 16px;
	min-width: 16px;
	border: 1px solid #7E37E8;
	overflow: hidden;
	border-radius: 4px;
	cursor: pointer;
	display: inline;
	padding: 0 8px;
}
input[type='checkbox']::before {
	content: '';
	color: #fff;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 2px;
	background-color: #B48BE6;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: -webkit-transform 0.05s ease-in-out;
	transition: -webkit-transform 0.05s ease-in-out;
	transition: transform 0.05s ease-in-out;
	transition: transform 0.05s ease-in-out, -webkit-transform 0.05s ease-in-out;
	/* base64 encoded to make things easier to show
        normally you would use an image or a font
    */
	background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjQ0OCIgaGVpZ2h0PSI0NDgiIHZpZXdCb3g9IjAgMCA0NDggNDQ4Ij4KPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTQxNy43NSAxNDEuNWMwIDYuMjUtMi41IDEyLjUtNyAxN2wtMjE1IDIxNWMtNC41IDQuNS0xMC43NSA3LTE3IDdzLTEyLjUtMi41LTE3LTdsLTEyNC41LTEyNC41Yy00LjUtNC41LTctMTAuNzUtNy0xN3MyLjUtMTIuNSA3LTE3bDM0LTM0YzQuNS00LjUgMTAuNzUtNyAxNy03czEyLjUgMi41IDE3IDdsNzMuNSA3My43NSAxNjQtMTY0LjI1YzQuNS00LjUgMTAuNzUtNyAxNy03czEyLjUgMi41IDE3IDdsMzQgMzRjNC41IDQuNSA3IDEwLjc1IDcgMTd6Ij48L3BhdGg+Cjwvc3ZnPgo=");
}

input[type='checkbox']:checked::before {
	-webkit-transform: scale(1);
	transform: scale(1);
}

input[type='radio']::before
{
	border: 2px solid #9C52F8;
}

input[type='radio']:checked::after
{
	background-color: #9C52F8;
}

input::placeholder
{
	font-size: 16px;
}

a:hover
{
	text-decoration: underline;
	color: #000;
}

.cont
{
    max-width: 1200px;
    margin: 0 auto 120px auto;
}

.top-cont
{
	margin-bottom: 120px;
}

.anchor
{
	height: 100%;
	width: 120px;
	opacity: 0.6;
	position: fixed;
	z-index: 11000;
	font-size: 15px;
	font-family: ProMed, sans-serif;
}

.anchor span
{
	z-index: 150;
	position: absolute;
	padding: 20px;
	color: #7D90A6;
	margin-left: 6px;
}

.anchor-bg
{
	position: absolute;
	background-color: transparent;
	height: 100%;
	color: #7D90A6;
	width: 120px;
}

.anchor-out
{
	display: none;
}

.anchor img
{
	transform: rotate(270deg);
	margin-right: 12px;
	height: 14px;
	margin-top: -4px;
}

.anchor-bg:hover
{
	background-color: #7D90A6;
	opacity: 0.1;
	cursor: pointer;
	text-decoration: none;
}

.anchor:hover span
{
	opacity: 1;
}

.entry
{
	border-radius: 99px;
	background-color: #fff;
	border: 1px solid #E6EDF5;
	font-size: 16px;
	padding: 17px 30px;
	font-family: ProReg, sans-serif;
}

.entry:focus
{
	border: 2px solid #7E37E8;
}

a
{
	text-decoration: none;
	color: #7E37E8;
	font-family: ProMed, sans-serif;
}



.a-hidden
{
	color: #000;
}

.a-hidden a:hover
{
	color: #7E37E8;
	text-decoration: none;
}

.button-main
{
	padding: 17px 40px;
	background-color: #6600FF;
	border: 2px solid #BE93FE;
	font-size: 18px;
	color: white;
	font-family: ProMed, sans-serif;
	border-radius: 99px;
	white-space: nowrap;
	max-height: 60px;
}

.button-main a
{
	color: #fff;
}

.button-blue
{
	padding: 8px 39px 8px 8px;
	background-color: #1965FD;
	border: 2px solid #5396FF;
	font-size: 18px;
	color: white;
	font-family: ProReg, sans-serif;
	border-radius: 99px;
	white-space: nowrap;
	display: flex;
	align-items: center;
	transition: 0.2s ease-out;
	max-height: 60px;
}

.button-blue:hover
{
	color: #fff;
}

.button-blue svg
{
	margin-right: 10px;
}

.btn-primary
{
	background-color: #1965FD;
	border: 2px solid #5396FF;
}


.red-button
{
	padding: 17px 40px;
	background-color: #FE3232;
	font-size: 18px;
	color: white;
	font-family: ProMed, sans-serif;
	border-radius: 99px;
	white-space: nowrap;
	display: flex;
	align-items: center;
	max-height: 60px;
}

.red-button svg, .button-blue svg
{
	margin-right: 10px;
}

.red-button a
{
	color: #fff;
}

.red-button:hover
{
	color: #fff;
	text-decoration: underline;
}

.button-border
{
	border: 2px solid #7E37E8;
	font-size: 16px;
	padding: 12px 30px 12px 50px ;
	border-radius: 99px;
	display: flex;
	align-items: center;
	max-width: 250px;
	color: #000;
	position: relative;
	white-space: nowrap;
	background-color: transparent;
}

.partner-order-btn
{
	margin-top: 30px;
}



.tarif .button-border
{
	max-width: 180px;
    position: absolute;
    right: 148px;
    bottom: 30px;
}

.button-border:hover
{
	background-color: #6600FF;
	color: #fff;
}

.providers-cont-popular-more .button-border:hover svg
{
	fill: #fff;
}

.button-border svg
{
	position: absolute;
	left: 16px;
}

/* .more-button
{
	font-size: 18px;
	width: 100%;
	text-align: center;
	padding: 12px 0;
	background-color: #E8F1F9;
	border-radius: 99px;
	color: #000;
	display: inline-block;
	border: 1px solid #C7D8E9;
} */

.light-button
{
	background-color: #E8F1F9;
}

.button-main:hover
{
	transform: scale(1.02);
	filter: brightness(110%);
	color: white;
	text-decoration: none;
}

.button-grey
{
	padding: 16px 40px 16px 40px;
	background-color: #E8F1F9;
	border: 2px solid #C7D8E9;
	color: #000;
	font-family: ProMed, sans-serif;
	border-radius: 99px;
}

.button-empty
{
    border: 2px solid #7E37E8;
    background-color: transparent;
    color: #7E37E8;
    padding-left: 20px;
    padding-right: 20px;
	display: flex;
	align-items: center;
}
.button-main.button-empty:hover {
	color: #7E37E8;
}

.all-button, .more-button
{
	border: 2px solid #C7D8E9;
	padding: 16px 50px;
	font-size: 18px;
	text-decoration: underline;
	border-radius: 99px;
	color: #000;
	display: flex;
	justify-content: center;
	max-width: 270px;
	flex-wrap: nowrap;
	margin: 0 auto;
	max-height: 60px;
}

.all-button::after
{
	margin-left: 16px;
	content: url(/assets/icons/arrow_black.svg);
}

.more-button::after
{
	margin-left: 16px;
	content: url(/assets/icons/arrow_black.svg);
	transform: rotate(90deg);
}


.button-grey:hover
{
	transform: scale(1.02);
	filter: brightness(110%);
	color: white;
	text-decoration: none;
	-webkit-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.1);
	-moz-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.1);
	box-shadow: 0 15px 25px 0 rgba(28,71,158,0.1);
}

.button-yellow
{
    background-color: #FBC407!important;
    color: #000;
}

.modal-content
{
	padding: 30px 40px;
	position: relative;
	border-radius: 16px;
}

.modal-header
{
	padding: 0;
	margin-bottom: 20px;
}

.modal-body
{
	padding: 0;
}

.modal-body .provider-modal-form__bottom-text--smaller
{
	margin-top: 16px;
}

.provider-modal-form input
{

}

.modal-content .modal-header
{

}

.modal-content .close, .modal-custom .close
{	outline: none;
	opacity: 1;
	position: absolute;
	right: 30px;
	top: 30px;
}

.cont-blue
{
	padding: 40px;
	border-radius: 12px;
	background-color: #F4F7FD;
	max-width: 1120px;
	margin: 0 auto 110px auto;
    box-sizing: content-box;
}



.cont-white
{
	padding: 30px 40px 30px 40px;
	border-radius: 12px;
	border-color: white;
	-webkit-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05);
	-moz-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05);
	box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05);
	max-width: 1120px;
	margin: 0 auto;
	background-color: white;
}

.cont-apricot
{
	background-color: #FFD0C0;
	margin: 0 auto;
	padding: 30px 40px 30px 40px;
	border-radius: 12px;
}

.cont-apricot .h1
{
	font-size: 32px;
	margin-top: 0;
	margin-bottom: 20px;
}

.cont-purple
{
	display: flex;
	margin: 0 auto;
    box-sizing: content-box;
	background-color: #DABCFF;
	max-width: 1200px;
	border-radius: 12px;
	padding: 0;
}

.cont-purple-content
{
	margin: 40px 0px;
	display: flex;
	flex-direction: column;
}

.cont-purple-img
{
	width: 250px;
	height: auto;
	display: flex;
	align-items: end;
	justify-content: center;
}

.cont-purple-img img
{
	width: auto;
	height: 90%;
}

.purple-provider-notfound .cont-purple-img img
{
	height: auto;
}

.purple-provider-notfound .cont-purple-content
{
	margin: 40px 0px 20px;
}

.cont-purple-title
{
	font-size: 32px;
    font-family: ProMed, sans-serif;
	margin-bottom: 10px;
	max-width: 700px;
}

.cont-purple-text
{
	text-align: left;
    margin-bottom: 30px;
	display: flex;
    align-items: flex-start;
	flex-direction: column;
}

.cont-purple-subtitle{
	max-width: 700px;
    font-size: 14px;
    color: #000;
}

.cont-purple-form
{
	display: flex;
}

.mini-header
{
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding-top: 8px;
	padding-bottom: 8px;
	color: #000;
	
}

.mini-header-more
{
	display: flex;
	align-items: center;
}

.mini-header-more a
{
	font-size: 14px;
	font-family: ProReg, sans-serif;
	color: #000;
	margin-right: 12px;
}

.mini-header-more .header-logo-pc img
{
	display: block;
	height: 28px;
	margin-right: 12px;
}

.mini-header-city
{
	font-size: 14px;
	font-family: ProReg, sans-serif;
	display: flex;
	align-items: center;
}

.mini-header-city span
{
	color: #7D90A6;
	margin-right: 24px;
}

.mini-header-city a
{
	color: #000;
}

.mini-header-city img
{
	margin-right: 6px;
}

.header-cont
{
	background-color: white;
}

.header-cont .header-logo-pc
{
	display: none;
}

.header
{
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 14px;
	padding-bottom: 14px;
	
}

/* .header-logo
{
	width: 140px;
	height: auto;
	margin-right: 80px;
} */

.header-menu-phone
{
	display: flex;	
	align-items: center;
	flex-grow: 1;
	justify-content: flex-end;
}

.header-menu
{
	display: flex;
	justify-content: space-between;
}

.header-menu a
{
	color: #000;
	margin-right: 48px;
	font-size: 18px;
}

.header-menu a:hover
{
	text-decoration: none;
	color: #6600FF;
}

.header-phone
{
	color: #7D90A6;
	font-size: 14px;
	text-align: right;
	flex-grow: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
}

.header-phone a
{
	font-size: 18px;
	font-family: ProBold, sans-serif;
	margin-left: 16px;
}

.header-phone a:hover
{
	color: #1965FD;
}

.header-phone .button-blue:hover
{
	color: #fff;
}

.button-blue:hover svg
{
	animation: pulseAnim 0.8s linear 0s infinite normal both;
}

@keyframes pulseAnim {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

.header-phone-number a
{
	font-size: 22px;
	color: #000;
}

.main-block-cont
{
	width: 100%;
	background-color: #F4F7FD;
	padding-top: 30px;
	padding-bottom: 0;
}

.main-block
{
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	background-color: #DABCFF;
    padding: 40px 0 35px 60px;
    border-radius: 40px;
    position: relative;
	overflow: hidden;
	text-align: left;
}

.main-block-title
{
	font-size: 45px;
	font-family: ProMed, sans-serif;
	
}

.main-block-seo-text
{
	margin-top: 20px!important;
}

.main-block-info
{
	width: 65%;
}

.fast-menu
{
	max-width: 1200px;
	margin: 20px auto;
	display: flex;
	justify-content: space-between;
	z-index: 1;
}

.fast-menu a
{
	text-decoration: none;
}

.fast-menu-item
{
	border-radius: 25px;
	border: 1px solid #E6EDF5;
	padding: 20px 40px;
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	justify-content: space-between;
	font-family: ProMed, sans-serif;
	color: #000;
	position: relative;
	transition: 0.15s ease-out;
    align-items: center;
    box-sizing: content-box;
	font-size: 16px;
	height: 80px;
}

.fast-menu-item img
{
	margin-bottom: 12px;
}

.fast-menu-arrow
{
	position: absolute;
	right: 0;
	height: 15px;
	padding-right: 15px;
	opacity: 0;
}

.fast-menu-item:hover
{
	cursor: pointer;
	transform: scale(1.02);
}

.fast-menu-item:hover .fast-menu-arrow
{
	padding-right: 0;
	opacity: 1;
	transition: 0.2s;
}

.type-menu-cont
{
	margin-bottom: 30px;
}

.type-menu-arrow
{
	display: none;
}

.type-menu
{
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.type-menu-item
{
    box-sizing: content-box;
	width: 312px;
	border-radius: 12px;
	padding: 28px 39px 28px 39px;
	color: #000;
}

.type-menu-item:hover
{
	transform: scale(1.02);
	cursor: pointer;
	transition: 0.15s;
	text-decoration: none;
}

.type-menu-item svg
{
	padding-right: 0;
    min-width: none;
    max-width: none;
}

.type-menu-img-text
{
	display: flex;
}

.type-menu-subtitle
{
	font-size: 18px;
	margin-bottom: 5px;
}

.type-menu-title
{
	font-size: 26px;
	font-family: ProBold, sans-serif;
}

.type-menu-text
{
	margin-left: 15px;
}

.type-menu-item p
{
	font-size: 18px;
	margin-top: 8px;
}

.type1
{
	background-color: #DABCFF;
	
}

.type2
{
	background-color: #9FF5CE;
}

.type3
{
	background-color: #A4E2FB;
}

.request-top_providers
{
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
    align-items: stretch;
}

.request
{
	max-width: 1200px;
	margin: 0 auto;
}

.request-column
{
    margin-bottom: 40px;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.request-top_providers .cont-blue
{
    margin-bottom: 0;
}

.request-item
{
	padding: 0 0 16px 0;
	border: 1px solid #E6EDF5;
	background-color: white;
	display: flex;
	flex-direction: column;
    position: relative;
	border-radius: 12px;
	margin-bottom: 20px;
    transition: 0.1s;
	width: 590px;
}



.request-item:hover
{
    box-shadow: none;
}

.request-item-buttons
{
	display: flex;
}

.request-item-buttons .compare-button
{
	margin-left: 12px;
	height: 100%;
}

.tarif .compare-button
{
	position: absolute;
    right: 90px;
    bottom: 30px;
}

/* .compare-button img
{
	height: 100%;
} */

.request-item-price-buttons
{
	display: flex;
	justify-content: space-between;
	margin: 12px 30px;
	align-items: center;
}

.request-item-price
{
	font-size: 26px;
}

.request-item-price-after
{
	font-size: 16px;
}

.request-name
{
    display: flex;
    flex-direction: column;
    word-break: keep-all;
	margin: 12px 30px;
	padding-bottom: 12px;
	border-bottom: 1px solid #E6EDF5;
}

.request-date
{
    display: flex;
    flex-direction: column;
	margin-left: 16px;
}

.request-date-img
{
	display: flex;
	background-color: #F6F9FC;
	border-bottom: 1px solid #E6EDF5;
	padding: 12px 30px;
	border-radius: 12px 12px 0 0;
	align-items: center;
}

.request-cols
{
    display: flex;
	margin: 12px 30px;
	padding-bottom: 12px;
	border-bottom: 1px solid #E6EDF5;
}

.request-item-column
{
    display: flex;
    flex-direction: column;
    
    font-size: 14px;
}

.request-item-column:not(:last-child)
{
	margin-right: 70px;
}

.request-name a
{
    color: #000;
    cursor: pointer;
}

.a-all img
{
    margin-left: 8px;
    height: 12px;
    transition: 0.1s;
}

.a-all:hover img
{
    transform: translateX(8px);
    transition: 0.1s;
}

.request-item .a-all img
{
    height: 12px;
    margin-left: 8px;
    transition: 0.1s;
    margin-top: 3px;
}

.request-item .a-all:hover img
{
    transform: translateX(8px);
}

.request-item .compare-button
{
    margin-right: 10px;
}

.compare-button:hover
{
   transform: scale(1.1);
    cursor: pointer;
}

.compare-button-mob
{
	display: none;
}

.request-item .a-all 
{
    
    display: flex;
    align-items: center;
    width: 18%;
}

.request-column-sub
{
    font-size: 14px;
    font-family: ProReg, sans-serif;
    color: #7D90A6;
    margin-bottom: 4px;
}

.request-column-info
{
    font-family: ProMed, sans-serif;
    font-size: 16px;
	display: flex;
	align-items: center;
}

.request-column-info svg
{
	margin-right: 8px;
}

.top_providers-title-link
{
	display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
}

.top_providers-title-link img
{
	height: 12px;
	margin-left: 10px;
    transition: 0.1s;
}

.top_providers-title-link a
{
	font-family: ProMed, sans-serif;
	margin-top: 7px;
	margin-right: 7px;
	white-space: nowrap;
}

.top_providers-title-link a:hover
{
	
	transition: 0.1s;
}

.top_providers-title-link a:hover img
{
	transform: translateX(8px);
	transition: 0.1s;
}

.request-item-title-price
{
	display: flex;
	justify-content: space-between;
	font-size: 16px;
	font-family: ProMed, sans-serif;
	margin-bottom: 8px;
}

.request-item-title-price a
{
	color: #000;
}

.request-item-title-price a:hover
{
	color: #7E37E8;
}

.request-item-provider-date
{
	display: flex;
	justify-content: space-between;
	color: #7D90A6;
	font-size: 14px;
	font-family: ProReg, sans-serif;
}

.request-item-provider-date a
{
	color: #7D90A6;
}

.request-item-provider-date a:hover
{
	color: #7E37E8;
}

.top_providers-item
{
	display: flex;
	align-items: flex-start;
	margin-bottom: 12px;
	position: relative;
	margin: 0 30px 20px;
}

.provider-full-cont
{
	padding: 30px 0 100px;
	background-color: white;
	border-radius: 12px;
	position: relative;
	margin-bottom: 18px;
	width: 100%;
    box-sizing: content-box;
	border: 1px solid #E6EDF5;
}

.main-providers-cont
{
	display: flex;
	position: relative;
	padding: 20px 30px;
	width: calc(100% - 60px);
	border-radius: 12px;
	border: 1px solid #E6EDF5;
	box-sizing: content-box;
	margin-bottom: 20px;
}

.providers-page-provider
{
    width: auto;
}

.top_providers-logo
{
	height: 110px;
	width: 110px;
	border: 1px solid #ECF4FC;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	transition: 0.15s ease-in-out;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
	box-sizing: content-box;
}

.top_providers-logo:hover
{
	transform: scale(1.05);
	-webkit-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05); 
	-moz-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05); 
	box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05);
}

.top_providers-logo img
{
	width: 100%;
	height: auto;
	position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tarif-logo-subtitle
{
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media screen and (max-width: 1000px) {
	.tarif-logo-subtitle {
		flex-direction: row;
	}
}

.tarif-logo-subtitle .tarif-subtitle
{
    margin-top: 4px;
    max-width: 80px;
    text-align: center;
    font-size: 12px;
    margin-right: 15px;
}

.top_providers-info
{
	margin-left: 20px;
	width: 100%;
	position: relative;
}

.top_providers-name
{

	display: flex;
	justify-content: space-between;
}

.top_providers-name-column
{
	display: flex;
	flex-direction: column;

}

.top_providers-name-link
{
	color: #000;
	font-size: 24px;
	margin-bottom: 5px;
}

.top_providers-name-more
{
	font-size: 14px;
	color: #7E37E8;
}

.top_providers-min_max
{
	display: flex;
}

.main-providers-info
{
	justify-content: space-between;
	align-items: center;
}

.top_providers-min_max-info
{
	display: flex;
}

.top_providers-min_max hr
{
    margin-top: 12px;
}

.tarif-opisanie-cont .top-providers-min_max-item
{
    font-size: 20px;
    margin-bottom: 10px;
    margin-right: 40px;
}

.h1-price_details
{
	font-size: 32px;
	margin-top: 0px;
	margin-bottom: 30px;
}

.finaly-price_details
{
	font-size: 32px;
	margin-top: 0px;
}

.tarif-opisanie-cont .top_providers-min_max
{
    flex-wrap: wrap;
}

.top-providers-min_max-item
{
	font-size: 16px;
	font-family: ProMed, sans-serif;
	margin-left: 30px;
	display: flex;
	align-items: flex-end
}

.top-providers-min_max-item svg
{
	margin-right: 8px;
	margin-bottom: 4px;
}

.top-providers-min_max-cont
{
	display: flex;
	justify-content: flex-start;
}

.tarif-opisanie-important
{
	display: flex;
	padding: 15px 20px;
	font-size: 18px;
	border-radius: 12px;
	border: 1px solid #E6EDF5;
}

.top-providers-button
{
    font-size: 16px;
    margin-right: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.top-providers-button img
{
    margin-left: 8px;
    height: 12px;
    transition: 0.1s;
}

.top-providers-button:hover img
{
    transform: translateX(8px);
    transition: 0.1s;
    
}

.top-providers-min_max-sub
{
	font-size: 12px;
	color: #7D90A6;
	font-family: ProReg, sans-serif;
	margin-bottom: 3px;
}

.top_providers-count
{
	display: flex;
	margin-top: 10px;
}

.top_providers-count-item
{
	font-size: 14px;
	font-family: ProMed, sans-serif;
	padding: 14px 25px 14px 50px;
	border-radius: 99px;
	border: 1px solid #E6EDF5;
	margin-right: 8px;
	color: #000;
    text-align: center;
	position: relative;
}

.top_providers-count-item span
{
	position: absolute;
	height: 32px;
	width: auto;
	min-width: 32px;
	background-color: #E6EDF5;
	left: 8px;
	top: 6px;
	border-radius: 99px;
	display: flex;
	align-items: center;
	justify-content: center;

}

.top_providers-count-item svg
{
	margin-left: 6px;
	fill: #7d90a6;
	position: absolute;
	top: 8px;
	right: 10px;
}

.top_providers-count-item:hover
{
	background-color: #7E37E8;
	color: white;
	cursor: pointer;
	text-decoration: none;
}

.top_providers-count-item:hover span
{
	color: #000;
}

.top_providers-count-item:hover svg
{
	fill: #ffffff;
}

.top_providers
{
	margin: 0;
    width: 100%;
}

.top_providers-columns
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.top_providers-raiting
{
	
	position: absolute;
	right: 30px;
	display: flex;
	font-family: ProMed, sans-serif;
}

.top_providers-raiting-stars svg
{
	margin-right: 8px;
}

.top-tarifs
{
	
	max-width: 1200px;
	margin: 30px auto 0;
}

.top-tarifs .tarifs-tags
{
    margin-top: 0;
    margin-bottom: 15px;
}
.tarif
{
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 30px 0 0 0;
	border: 1px solid #E6EDF5;
	background-color: white;
	border-radius: 12px;
	margin-bottom: 30px;
	position: relative;
    transition: 0.1s;
    box-sizing: content-box;
	overflow: hidden;
}
.tarif.hidden {display: none}
.tarif-opisanie
{
	max-width: 1200px;
	margin: 0 auto 40px auto;
	display: flex;
	flex-direction: row-reverse;
}

.tarif-buttons-right
{
	display: flex;
	position: absolute;
	right: 25px;
	bottom: 30px;
}

.tarif-details-opisanie
{
	width: 70%; 
	margin-right: 20px;
}

.cont-important-opisanie .top-providers-min_max-item
{
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid #C7D8E9;
    font-size: 22px;
    margin-right: 15px;
}

.cont-important-opisanie .top-providers-min_max-item .top-providers-min_max-sub
{
    font-size: 14px;
}

.tarif-important
{
	display: flex;
    justify-content: space-between;
    width: calc(100% - 60px);
    margin-left: 30px;
    margin-right: 30px;
}

.tarif-important-services
{
	display: flex;
	margin-top: 16px;
	margin-left: 30px;
	margin-bottom: 12px;
}



.political-toplug input
{
	width: auto!important;
}

.political-toplug
{
	margin-top: 5px;
	margin-bottom: 14px;
	display: flex;
	
}

.political-toplug label
{
	font-size: 12px;
	color: #7D90A6;
}

.des2
{
	display: none;
}

.tarif-details
{
	display: none;
	width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #F6F9FC;
    border: 1px solid #E6EDF5;
    padding: 0 30px 85px;

	
}
.tarif-opisanie-plugform
{
	display: flex;
	flex-direction: column;
}

.entry-toplug
{
	margin-bottom: 8px;
	width: 100%;
}


.tarif-details-cannel
{
	display: flex;
	align-items: center;
	font-family: ProMed, sans-serif;
	font-size: 14px;
	margin-bottom: 12px;
	margin-right: 20px;
	width: 26%;
}

.tarif-details-cannel-logo
{
	width: 28px;
	height: 28px;
	min-width: 28px;
	border-radius: 5px;
	border: 1px solid #F2F2F2;
	overflow: hidden;
	position: relative;
	margin-right: 8px;
}

.tarif-details-cannel-logo img
{
	width: 100%;
	height: auto;
	position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tarif-cannels
{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}



.tarif-details-column
{
	display: flex;
	flex-direction: column;
	width: 46%;
}

.tarif-details-services
{
	margin-right: 0;
	margin-bottom: 24px;
}
.tarif-details-services--action {
	display: none;
}
.internet-tv-cannals
{
    margin-right: auto;
}

.tarif-details-item
{
    border-bottom: 1px solid #E8F1F9;
	margin-bottom: 12px;
}

.tarif-details-title
{
	margin-bottom: 8px;
    font-family: ProMed, sans-serif;
    display: flex;
    align-items: center;
	font-size: 16px;
	color: #7E37E8;

}

.tarif-details-title img
{
	display: none;
}

.tarif-details-item-title
{
	display: flex;
	justify-content: space-between;
	font-family: ProReg, sans-serif;
	margin-bottom: 8px;
}

.tarif-details-item-description
{
	color: #7D90A6;
	font-size: 14px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
}

.tarif-details-item-count
{
	font-family: ProMed, sans-serif;
	color: #000;
}

.tarif:hover
{
	box-shadow: none;
	cursor: pointer;
}

.tarif-logo
{
	height: 59px;
	width: 59px;
	min-width: 59px;
	border: 1px solid #DFE8F2;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
    margin-right: 15px;
	box-sizing: content-box;
}


.tarif-logo img
{
	width: 100%;
	position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	height: 59px;
	max-width: 59px;
}
@media screen and (max-width: 1000px) {

	.tarif-logo {
		height: 32px;
		width: 32px;
		min-width: 32px;
		margin-right: 8px;
	}
}
.sale-tag
{
	text-align: center;
	font-family: ProMed, sans-serif;
	background-color: #FFD037;
	font-size: 11px;
	color: #000;
}
.sale-tag.--show-mobile {display: none}
@media screen and (max-width: 1000px) {
	.sale-tag.--show-mobile {display: block!important; margin-left: auto}
	.sale-tag.--hide-mobile {display: none!important;}
}

.tarif-hit-tag
{
	width: 112px;
	background-color: #CF47FF;
	margin-bottom: 5px;
}

.tarif-sale-tag
{
	margin-bottom: 5px;
	
}

.tarif-name
{
	font-size: 18px;
	font-family: ProMed, sans-serif;
	margin-bottom: 4px;
	color: #000;
}

.tarif-name:hover
{
    color: #7E37E8;
}

.tarif-title
{
    margin-right: 15px;
	font-size: 14px;
	display: flex;
    flex-direction: column;
}

.tarif-subtitle
{
	font-size: 12px;
	color: #7D90A6;
	margin-bottom: 4px;
}

.tarif-speed, .tarif-price
{
	font-size: 22px;
	font-family: ProMed, sans-serif;
}
.tarif-speed .tarif-speed__label {
	font-size: 14px;color: #7D90A6;font-family: ProReg, sans-serif;
}
.tarif-price
{
	font-size: 26px;
}
.tarif-price__label {
	font-size: 14px;color: #7D90A6;font-family: ProReg,sans-serif;margin-left: 4px;
}
.tarif-old-price
{
	margin-right: 6px;
	position: relative;
}

.tarif-old-price:before
{
	content: '';
	display: block;
	position: absolute;
	width: 110%;
	margin-top: 19px;
	border: 0.5px solid red;
    background-color: red;
	margin-left: -1px;
}
.tarif-old-price.tarif-old-price--providers:before {
	display: block;
	position: absolute;
	width: 110%;
	margin-top: 10px;
	border: 0.5px solid red;
	background-color: red;
	margin-left: -1px;
}
.tarif-speed
{
	margin-bottom: 5px;
}

.tarif-info
{
	font-size: 14px;
	margin-bottom: 5px;
}

.tarif-channels, .tarif-mob-info
{
	font-family: ProMed, sans-serif;
	font-size: 16px;
	margin-bottom: 5px;
}

/*.tarif-channels*/
/*{*/
/*    text-decoration: underline;*/
/*}*/

.tarif-tv
{
	font-size: 14px;
}
.provider-channels__wrapper {max-height: initial;column-count: 3;width: 100%}
.provider-channels__wrapper.--shrink {max-height: 535px;overflow: hidden}
.provider-tarifs-category {position: relative}
.provider-tarifs-category__item.hidden {display: none}
.provider-tarifs-category__arrow-left, .provider-tarifs-category__arrow-right {position: absolute;bottom: 88px;cursor: pointer}
.provider-tarifs-category__arrow-left {left: -32px;transform: rotate(180deg)}
.provider-tarifs-category__arrow-right {right: -32px;}
.tarif-button
{
	padding: 12px 40px 12px 40px;
	position: absolute;
	right: 80px;
	bottom: 26px;
}
.tarif-button.disabled {
	background: #808080!important;
	border: 1px solid #808080;
	color: #fff;
}

.button-border.disabled
{
	background-color: #C7D8E9;
	border: 2px solid #C7D8E9;
	color: #000;
	padding: 12px 30px;
}

.tarif-compare-more
{
	display: flex;
	align-items: center;
	font-size: 12px;
	color: #7D90A6;
	justify-content: space-between;
}

.button-more
{
	border-radius: 99px;
	background-color: #7E37E8;
	min-width: 46px;
	height: 46px;
	margin-left: 10px;
	border: none;
	position: relative;
}

.button-more:hover .button-more-img
{
	margin-top: 8px;
	margin-bottom: auto;
	transition: 0.2s;
}

.button-more-img
{
	transition: 0.2s;
	transform: rotate(90deg);
	height: 12px;
}

.tarif-internet, .tarif-tv, .tarif-mob
{
	width: 180px;
	margin-right: 40px;
	display: flex;
	align-items: start;
}

.tarif-important-services svg
{
	min-width: 28px;
	height: auto;
	margin-right: 12px;
}

.tarif-logo-title
{
	display: flex;
}
@media screen and (max-width: 1000px) {
	.tarif-logo-title
	{
		flex-direction: column;
		width: 100%;
	}
}

.tarif-price-compare
{
	display: flex;
	justify-content: flex-end;
	margin-right: 10px;
}

.tarif-button-more
{
	position: absolute;
    right: 30px;
    bottom: 30px;
}
.tarif-button-more-after {display: none}

.tarif-more-description
{
	position: absolute;
    bottom: -15px;
    font-size: 10px;
    color: #7D90A6;
    right: 50%;
    transform: translateX(50%);
}

.tarif-without
{
	font-family: ProMed, sans-serif;
	font-size: 18px;
}

.main-sales-cont
{
	background-color: #293148;
	color: white;
}

.main-sales-cont a
{
	color: #FFD037;
}

.main-sales-last
{
	display: flex;
	margin-bottom: 20px;
}

.main-sales-last-img
{
	min-width: 408px;
	height: 230px;
	background-size: cover;
	overflow: hidden;
	background-position: center;
	border-radius: 12px;
	margin-right: 20px;
}

.main-sales-last-title
{
	font-size: 18px;
	font-family: ProMed, sans-serif;
	margin-bottom: 4px;
}

.main-sales-last-provider
{
	font-size: 14px;
	margin-bottom: 8px;
	
}

.main-sales-last-provider a
{
	color: #5396FF;
}

.main-sales-item-provider a
{
	color: #5396FF;
	font-size: 14px;
	font-family: ProReg, sans-serif;
}

.main-sales-last-description
{
	color: #C1CBD6;
	text-overflow: ellipsis;
	line-height: 20px;
	overflow: hidden;
	max-height: 153px;
	margin-bottom: 16px;
}

.main-sales-last-date-more
{
	display: flex;
	justify-content: space-between;
}

.main-sales-last-date-more
{
	font-size: 14px;
}

.main-sales-last-date
{
	display: flex;
	color: #7D90A6;
	font-size: 12px;
	font-family: ProMed, sans-serif;
}

.main-sales-last-viewers
{
	margin-left: 20px;
}

.main-sales-last-viewers img
{
	margin-right: 5px;
	margin-bottom: 2px;
}

.main-sales-row
{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.main-sales-item-img
{
	width: 269px;
	height: 152px;
	background-size: cover;
	overflow: hidden;
	background-position: center;
	border-radius: 12px;
	margin-bottom: 12px;
	cursor: pointer;
	transition: 0.2s;
    margin-right: 0;
}

.main-sales-item-img:hover
{
	transform: scale(1.02);
	transition: 0.2s;
	filter: brightness(105%);
}

.main-sales-item
{
	flex-basis: 23%;
	max-width: none;
	position: relative;
	margin-left: 5px;
	margin-right: 5px;
}

.main-sales-more
{
	font-size: 14px;
	position: absolute;
	bottom: 0;
}

.main-sales-item-title
{
	margin-bottom: 10px;
	padding-bottom: 20px;
}

.main-sales-item-title a
{
	color: white;
}

.sales-page-item-title a
{
	color: #000;
	font-family: ProReg, sans-serif;
}

.main-sales-item-date
{
	display: flex;
	justify-content: space-between;
	color: #7D90A6;
	font-size: 12px;
	font-family: ProMed, sans-serif;
	margin-bottom: 3px;
}

.main-sales-item-date img
{
	margin-right: 5px;
	margin-bottom: 2px;
}

.sub-h1
{
	max-width: 700px;
	font-size: 14px;
	color: #000;
	margin-bottom: 20px;
	
}

.call-back-h1
{
	margin-bottom: 10px;
}

.call-back-sub-h1
{
	margin-bottom: 0;
}

.back-call
{
	text-align: left;
	margin-bottom: 30px;
}

.back-call-imgs img
{
	height: 47px;
	width: auto;
	margin-left: 7px;
	margin-right: 7px;
	margin-bottom: 10px;
}

.back-call-img-h1
{
	display: flex;
	align-items: flex-start;
	margin-top: 40px;
}

.back-call-form
{
	display: flex;
}

.back-call-form input
{
	width: 260px;
	margin-right: 8px;
    box-sizing: content-box;
}

.back-call-form-with_time
{
	flex-direction: column;
}

.back-call-form-with_time .provider-modal-form__label
{
	font-size: 18px;
	font-family: ProMed;
	margin-bottom: 20px;
}

.back-call-form-with_time .provider-modal-form__row
{
	justify-content: left;
}

.main-reviews
{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.reviews-item-full
{
	max-width: 1200px!important;
}

.main-reviews-item
{
	padding: 30px 30px 20px 30px;
	border-radius: 12px;
	background-color: white;
	-webkit-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05);
	-moz-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05);
	box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05);
	max-width: 490px;
	margin-bottom: 20px;
    box-sizing: content-box;
}

.providers-review-item
{
    max-width: 530px;
}

.main-reviews-item-name
{
	font-size: 18px;
	font-family: ProMed, sans-serif;
}

.main-reviews-item-name a
{
    color: #000;
    
}

.main-reviews-item-name a:hover
{
   color: #7E37E8; 
}

.main-reviews-item-date
{
	font-size: 14px;
	color: #7D90A6;
	margin-top: 4px;
	display: flex;
}

.main-reviews-item-date a
{
	font-size: 14px;
	font-family: ProReg, sans-serif;
	margin-left: 6px;
}

.main-reviews-item-first
{
	display: flex;
	justify-content: space-between;
}

.main-reviews-raiting
{
	display: flex;
	align-items: center;
	font-family: ProMed, sans-serif;
	font-size: 16px;
}
.main-reviews-raiting.--show-mobile {
	display: none;
}
.main-reviews-appraisals
{
	display: flex;
	justify-content: space-between;
	margin-top: 15px;
}

.reviews-appraisals-full
{
	justify-content: flex-start;
}

.reviews-appraisals-item-full
{
	margin-right: 50px;
}



.main-reviews-appraisals-item
{
	font-size: 12px;
	color: #7D90A6;
	align-items: center;
	justify-content: center;
	display: flex;
	flex-direction: column;
}

.main-reviews-appraisals-item-score
{
	display: flex;
	align-items: center;
	font-size: 20px;
	font-family: ProMed, sans-serif;
	color: #000;
	margin-bottom: 4px;
}

.main-reviews-appraisals-item-score img
{
	margin-right: 9px;
}

.main-reviews-comment
{
	margin-top: 15px;
	font-size: 14px;
	line-height: 18px;
}

.main-reviews-provider
{
	color: #000;
	font-family: ProMed, sans-serif;
	margin-top: 10px;
	font-size: 14px;
	display: flex;
	align-items: flex-start;
}

.main-reviews-provider img
{
	width: 14px;
	margin-right: 6px;
}

.main-providers-list-cont
{
	margin: 0 auto;
	max-width: 1220px;
	text-align: center;
}

.main-providers-list-sub
{
	max-width: 800px;
	margin: 0 auto;
}

.mian-providers-list
{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-top: 30px;
}

.mian-providers-list-item
{
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 30px;
	font-family: ProMed, sans-serif;
	max-width: 101px;
}

.mian-providers-list-logo
{
	height: 101px;
	width: 101px;
	margin-bottom: 10px;
}

.other-info-provider
{
    max-width: calc(1200px - 80px);
}

.search-providers-cont
{
	text-align: center;
	display: flex;
	flex-direction: column;
	padding-left: 150px;
	padding-right: 150px;
	max-width: 900px;
	margin-bottom: 40px;
    box-sizing: content-box;
}




.search-providers-steps
{
	display: flex;
	justify-content: space-between;
	margin: 0 auto 10px auto;
    align-items: center;
}


.search-providers-steps-arrow
{
	width: 17%;
	display: flex;
}

.search-providers-steps-arrow img
{
	margin: 0 auto;
    height: 20px;
}

.search-providers-steps-item
{
	width: 40%;
	display: flex;
	text-align: left;
	align-items: center;
	font-family: ProMed, sans-serif;
}

.search-providers-steps-item img
{
	margin-right: 15px;
    max-height: 30px;
}

.search-providers-steps-sub
{
	text-align: center;
	margin-bottom: 15px;
}

.main-block .search-providers-steps-sub
{
	text-align: left;
}

.search-providers-form-cont
{
	width: 100%;
	margin: 0 auto 12px auto;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.search-providers-form-container
{
	width: 100%;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
}

.search-providers-form-subtitle
{
	width: 100%;
}

.search-providers-adress span
{
    display: flex;
    justify-content: space-between;
    
}

.search-providers-adress-steps
{
    margin-top: 10px;
}

.search-providers-adress .search-providers-form-cont a
{
    white-space: nowrap;
    margin-left: 20px;
    margin-right: 20px;
}

.search-providers-form
{
	display: flex;
	margin-top: 10px;
	width: 100%;
	z-index: 99;
}

.cont-apricot .search-providers-form
{
	justify-content: center;
}

.search-provider-street
{
	width: 50%;
	margin-right: 10px;
}

.search-provider-home
{
	width: 20%;
	margin-right: 10px;
}

.button-search-providers
{
	width: 30%;
	background-color: #6600FF;
}

.search-providers-city
{
	display: flex;
	width: calc(100% - 12px);
	margin: 0 auto;
	align-items: center;
}

.search-providers-city a
{
	text-decoration: underline;
	color: #000;
	margin-right: 12px;
}

.search-providers-city img
{
	margin-right: 8px;
}

.modal-custom .search-providers-city
{
	margin-top: 16px;
}



.seo-text
{
	color: #000;
    background-color: #F6F9FC;
	padding: 30px;
	border-radius: 12px;
}

.seo-text--homepage {
	color: #000; font-family: ProMed, sans-serif; text-align: left;
}

.seo-partner
{
	padding: 0;
}

.check-adress-form .seo-text
{
    margin: 0;
}


.footer-cont
{
	width: 100%;
	background-color: #fff;
	padding-top: 40px;
	margin-top: 60px;
	border-top: 1px solid #C7D8E9;
}

.footer
{
	max-width: 1200px;
	margin: 0 auto;
	
}

.footer-city-phone
{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-bottom: 36px;
}

.footer-phone-number a
{
	font-size: 35px;
	font-family: ProBold, sans-serif;
	color: #000;
	margin-bottom: 10px;
}

.footer-phone-number
{
	display: flex;
	flex-direction: column;
	margin-right: 52px;
}

.footer-phone
{
	display: flex;
	color: #000;
	font-size: 14px;
}

.footer-city img
{
	margin-right: 8px;
}

.footer-city
{
	color: #000;
	font-family: ProMed, sans-serif;
	display: flex;
	align-items: baseline;
}

.footer-city .button-main
{
	margin-top: 10px;
}

.footer-city a
{
	color: #000;
	font-family: ProReg, sans-serif;
}

.footer-row
{
	display: flex; 
	justify-content: space-between; 
	flex-wrap: wrap;
	
}


.footer-row-column
{
	display: flex;
	flex-direction: column;
	margin-top: 20px;
}

.footer-row-column-title
{
	font-size: 26px;
	margin-bottom: 18px;
	color: #7d90a6;
}

.footer-row-column-links a
{
	color: #000;
}


.footer-row-column-links
{
	display: flex;
	flex-direction: column;
	line-height: 40px;
}

.footer hr
{
	border: 1px solid #3B4B65;
	margin-top: 40px;
	margin-bottom: 20px;
}

.footer-seo-text
{
	font-size: 14px;
	color: #000;
    margin: 20px auto 0;
    line-height: 20px;
    background-color: #ECEDED;
    padding: 20px;	
}

.footer-seo-text a
{
	color: #1965FD;
}

.cont
{
	width: 100%;
}

.tarifs
{
	max-width: 1200px;
	margin: 0 auto;
}

.tarifs-items
{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.under-header
{
	border: 1px solid #E8F1F9;
	margin: 0;
}

.links-line-cont
{
	background-color: white;
}

.links-line
{
	max-width: 1200px;
	margin: 0 auto;
	font-size: 14px;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: white;
}

.links-line img
{
	margin-left: 20px;
	margin-right: 20px;
	height: 8px;
}

.links-line a
{
	color: #7D90A6;
	font-family: ProReg, sans-serif;
}
ol.breadcrumbs {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
ol.breadcrumbs > li {
	white-space: nowrap;
	margin: 0 0 4px 0;
}
ol.breadcrumbs > li > a {
	position: relative;
	color: #7D90A6;
	font-family: ProReg, sans-serif;
}
ol.breadcrumbs > li > a > span {
	color: #7D90A6;
	font-family: ProReg, sans-serif;
}
ol.breadcrumbs > li > a:after { content: ''; margin: 0 24px; height: 8px; width: 4px; display: inline-block; background: url('/assets/icons/arrow_b.svg'); background-size: cover}
ol.breadcrumbs > li:last-child { color: #000 !important; }
/* .tarifs-searching-cont-header
{
	background-color: white;
} */

.cont-header-blue
{
	background-color: #F4F7FD;
}



.button-special
{
	padding: 0 52px;
	height: 50px;
}

.tarifs-searching-cont
{
	padding-top: 36px;
	padding-bottom: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.tarifs-searching-cont .h1
{
	margin-top: 0;
	margin-left: 0;
	margin-right: 0;
}

.reviews-title
{
	display: flex;
	justify-content: space-between;
}

.reviews-title .h1
{
	margin: 0;
	max-width: 600px;
}

.tarif-logoname
{
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	padding-top: 20px;
	padding-bottom: 20px;
}

.tarif-opisanie-cont
{
	margin: 0;
	padding: 0;
}

.tarif-opisanie .popular-tarif-row
{
	border: 1px solid #E6EDF5;
	border-radius: 12px;
	padding: 12px 24px 12px 12px;
	margin-right: 12px;
	width: auto;

	font-family: ProMed;
	display: flex;
	align-items: center;
}

.tarif-opisanie-logoname
{
	margin-bottom: 10px;
}

.tarif-opisanie .back-call-cont-main-info, .tarif-opisanie .cont-toplug
{
	margin-top: 0;
}

.tarif-opisanie .tarif-without
{
	font-size: 16px;
	font-family: ProReg;
	position: relative;
}

.tarif-opisanie .tarif-old-price:before
{
	margin-top: 10px;
}

.tarif-opisanie .popular-tarif-row svg
{
	height: 40px;
	width: 40px;
	margin-top: 0px;
}

.tarif-opisanie-h1
{
	margin-bottom: 5px;
}

.tarif-opisanie-logo
{
	width: 66px;
	height: 66px;
}

.under
{
	border: 1px solid #E8F1F9;
	margin: 0;
	padding: 0;
}

.under-bottom
{
    margin-bottom: 20px;
}

.tarif-searching
{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;

}
.tarif-searching.tarif-searching--d-block {
	display: block;
}

.tarif-searching-item span
{
    display: flex;
    justify-content: space-between;
}

.tarif-searching-item a
{
    margin-right: 20px;
}

.tarif-searching-item img
{
    height: 18px;
    margin-right: 6px;
    margin-bottom: 5px;
}

.searching-item-first
{
	width: 40%;
	margin-right: 20px;
	
	
}


.tarif-searching-item-form input
{
	margin-top: 10px;
	
}

.tarif-searching-item-form
{
	display: flex;
	position: relative;
	width: 100%;
}

.tarif-searching-item-form .entry-tarif
{
	margin-right: 8px;
}

.tarif-searching-item-form img
{
	position: absolute;
	margin-bottom: 18px;
	margin-left: 20px;
}

.entry-tarif
{
	width: 215px;
	padding-right: 25px;
	padding-bottom: 10px;
	border: none;
	border-bottom: 1px solid #7D90A6;
	position: relative;
}

.entry-street
{
	width: calc(55% - 20px);
	padding-right: 20px;
}

.entry-home
{
	width: calc(35% - 20px);
	padding-right: 20px;
	margin-left: 4px;
	margin-right: 8px;
}

.entry-tarif:focus + a
{
	display:inline;
}

.entry-street:focus + a
{
	display: inline;
}

.entry-home:focus + a
{
	display: inline;
}

.button-main img
{
	margin-right: 8px;
}

.tarifs-tags
{
	margin: 20px auto 0;
	max-width: 1200px;
	display: flex;
	flex-wrap: wrap;
}

.tag
{
	padding: 12px 15px 10px;
	border: 1px solid #E6EDF5;
	border-radius: 99px;
	margin-bottom: 5px;
	margin-right: 5px;
	font-size: 14px;
	font-family: ProReg, sans-serif;
	color: #000;
}

.tag:hover
{
	
	text-decoration: none;
	border: 1px solid #7E37E8;
	color: #000;
}

.letters-sort__letter .tag
{
	font-size: 18px;
	font-family: ProMed, sans-serif;
}

.tags-bottom
{
	margin-bottom: 16px;
}

.more-info-tag a
{
    padding: 15px 32px;    
}

.more-info-tag
{
    justify-content: center;
}

.tarifs-filter
{
	max-width: 1200px;
	margin: 15px auto 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.tarifs-filter .top_providers-title-link
{
	flex-wrap: wrap;
}

.filter-dropdown
{
	background-color: white;
	padding: 14px 45px 14px 20px;
	border-radius: 12px;
	border: 1px solid #E6EDF5;
	width: 210px;
	position: relative;
	margin-bottom: 8px;
	box-sizing: content-box;
}

.filter-dropdown-slider
{
	min-width: 20%;
}

.filter-dropdown:hover .filter-dropdown-content
{
	display: flex;
	-webkit-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05);
	-moz-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05);
	box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05);
	box-sizing: content-box;
}


.filter-dropdown:hover .filter-dropdown-title img
{
	transform: rotate(270deg);
	
}

.filter-dropdown:hover .filter-dropdown-title
{
	color: #7E37E8;
}

.filter-dropdown-title
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	white-space: nowrap;
	overflow: hidden;
}

.filter-dropdown img
{
	height: auto;
    transform: rotate(90deg);
    background-color: #B48BE6;
    padding: 9px 12px;
    border-radius: 99px;
	position: absolute;
	right: 16px;
}

.filter-dropdown-content
{
	display: none;
	flex-direction: column;
	width: calc(100% - 40px);
	line-height: 25px;
	position: absolute;
	z-index: 99;
	background-color: white;
	padding: 20px 20px 15px 20px;
	margin-left: -21px;
	margin-top: 8px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	border-bottom: 1px solid #E6EDF5;
	border-left: 1px solid #E6EDF5;
	border-right: 1px solid #E6EDF5;
}

.filter-dropdown-content a
{
	font-family: ProReg, sans-serif;
}

.filter-dropdown-slider-content
{
	width: calc(100% - 40px);
}

.filter-dropdown-content label
{
	margin-left: 10px;
	margin-bottom: 8px;
	font-size: 14px;
}
.filter-dropdown-content-buttons
{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 7px;
	justify-content: space-between;
	margin-top: 20px;
	align-items: center;
	
}

.filter-dropdown-content-buttons a
{
	font-family: ProReg, sans-serif;
}
.filter-dropdown-content-buttons .btn-apply {
	text-decoration: none;
	padding: 2px 26px;
	border: 2px solid #7E37E8;
	border-radius: 99px;
	
}
.filter-dropdown-content-buttons .btn-cancel {
	color: #000;
	text-decoration: none;
}
.filter-dropdown-content-buttons .btn-apply:hover,
.filter-dropdown-content-buttons .btn-cancel:hover {
	cursor: pointer;
	text-decoration: underline;
}
.filter-min-max-price
{
	display: flex;
	justify-content: space-between;
	color: #7D90A6;
	font-size: 12px;
    
}

.filter-min-max-price .entry
{
    max-width: 48%;
    padding: 8px 5px 8px 8px;
    margin-bottom: 16px;
    font-size: 14px;
}

.filter-price-select
{
	width: 100%;
	text-align: center;
}

.dropdown-providers-list
{
	overflow: scroll;
	max-height: 250px;
	overflow-x: hidden;
}

.dropdown-providers-list::-webkit-scrollbar {
    width: 4px;
}
.dropdown-providers-list::-webkit-scrollbar-track {
    width: 4px;
	height: 20px;
	background-color: white;
}
.dropdown-providers-list::-webkit-scrollbar-thumb {
    background-color: #BDC7D2;
	border-radius: 99px;
	transition: 0.2s;
	width: 4px;
}

.filter-price-range
{
	width: 100%;
	border: 0;
	background-color: black;
}

.filter-price-range 
{
	height: 3px;
	-webkit-appearance: none;
	background-color: #C7D8E9;
}
			
.filter-price-range::-webkit-slider-thumb 
{
	width: 11px;
	-webkit-appearance: none;
	height: 11px;
	cursor: pointer;
	background: #7E37E8;
	border-radius: 50%;
	transition: box-shadow 0.2s ease-in-out;
	position: relative;
}

.filter-price-count
{
	font-size: 14px;
}

.filter-dropdown-search-providers
{
	display: flex;
	position: relative;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.filter-search-providers-sort
{
	min-width: 50px;
}

.filter-dropdown-search-providers a
{
	font-size: 14px;
	font-family: ProBlack, sans-serif;
	width: 35%;
	text-align: right;
	margin-left: 5px;
}

.filter-dropdown-search-providers img
{
	transform: rotate(360deg);
	width: 8px;
	margin-left: 3px;
}

.entry-filter-search
{
	padding: 8px 15px 8px 15px;
	font-size: 14px;
	width: 95%;
	margin-right: 3px;
	cursor: text!important;
}

.filter-dropdown-content input:hover
{
	cursor: pointer;
}

.filter-dropdown-content label:hover
{
	cursor: pointer;
}

.filter-reset
{
	max-width: 1200px;
	margin: 8px auto 20px;
	color: #7D90A6;
	display: flex;
	justify-content: flex-end;
    flex-wrap:wrap-reverse;
}

.filter-reset span
{
    font-size: 14px;
}

.filter-reset span a
{
    margin-left: 20px;
    font-size: 16px;
}

.between-filter span
{
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.filter-sort a
{
   	color: #7D90A6;
    font-family: ProReg, sans-serif;
    margin-right: 20px;
}

.filter-sort-cont
{
    margin-bottom: 16px;
}

.filter-sort .sort-active
{
    color: #7E37E8;
}

.filter-sort img
{
    margin-right: 6px;
}


.tag-sale
{
	border-color: #FB3874;
	color: #FB3874;
	font-family: ProMed, sans-serif;
}

.tag-sale:hover
{
	background-color: #FB3874;
	color: white;
}

.tag.active, .tag.tag-active
{
    
	border: 1px solid #7E37E8;
    cursor: default;
}

.tag-hit
{
	border-color: #CF47FF;
	color: #CF47FF;
	font-family: ProMed, sans-serif;
}

.tag-hit:hover
{
	background-color: #CF47FF;
	color: white;
}

.tarifs-consultation
{
	padding: 40px;
	background-color: #DEF5FF;
	display: flex;
	color: #000;
	border-radius: 12px;
	justify-content: space-between;
	margin-bottom: 40px;
	width: 100%;
    max-width: 1120px;
	box-sizing: content-box;
}

.tarifs-consultation-text
{
	
	margin-right: 30px;
}

.tarifs-consultation-title
{
	font-size: 26px;
	margin-bottom: 16px;
}

.tarifs-consultation-subtitle
{
	font-size: 14px;
	color:#000;
}

.button-consultation
{
	font-size: 18px;
	background-color: #1965FD;
	border: 2px solid #5396FF;
}

.tarifs-consultation-form
{
	display: flex;
	align-items: center;
}

.entry-consultation-name
{
	width: 128px;
	margin-right: 8px;
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 14px;
	box-sizing: content-box;
}

.entry-consultation-phone
{
	width: 160px;
	margin-right: 8px;
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 14px;
	box-sizing: content-box;
}

.pages-buttons
{
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}
.pagination-with-loadmore-wrapper.pages-buttons {
	margin-bottom: 120px;
	margin-top: 30px;
}
.pages-buttons-numbers
{
	position: absolute;
	right: 0;
	margin-top: -35px;
	display: flex;
}

.pages-button-grey
{
	padding-left: 70px;
	padding-right: 70px;
	-webkit-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05);
	-moz-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05);
	box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05);
}

.pages-button-grey
{
	box-shadow: none;
}

.pages-buttons-noactive
{
	width: 50px;
	height: 50px;
	background-color: white;
	border-radius: 12px;
	-webkit-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.08);
	-moz-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.08);
	box-shadow: 0 15px 25px 0 rgba(28,71,158,0.08);
	color: #000;
	border: none;
	margin-left: 10px;
}

.pages-buttons-active
{
	width: 50px;
	height: 50px;
	color: white!important;
	background-color: #7D90A6;
	border-radius: 12px;
	border: none;
	margin-left: 10px;
}

.pages-buttons-noactive:hover
{
	box-shadow: none;
}

.pages-dots
{
	box-shadow: none;
	font-size: 20px;
	margin-left: 20px;
	margin-right: 10px;
	font-family: ProMed, sans-serif;
	margin-top: 13px;

}
.provider_body {
	background-color: #fff;
}

.header-title-body
{
	background-color: #F6F9FC;
	border-bottom: 1px solid #E6EDF5;
	border-top: 1px solid #E6EDF5;
}

.provider-header-logo
{
	width: 72px;
	height: 72px;
}

.provider-header-cont
{
	background-color: white;
	padding-top: 20px;
}

.provider-header
{
	padding: 40px 0 40px;
	display: flex;
    border-radius: 25px 25px 0 0;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.provider-header .main-reviews-raiting
{
	position: absolute;
	right: 0;
	top: 40px;
}

.provider-header-info-title-rating
{
	display: flex;
	align-items: center;
}

.provider-header-info-title-rating .top_providers-logo
{
	margin-right: 20px;
}

.provider-header-info
{
	display: flex;
	flex-direction: column;
	width: 100%;
}

.provider-header-info-title
{
	font-size: 32px;
	font-family: ProMed, sans-serif;
	margin-bottom: 20px;
}

.provider-header-buttons
{
	display: flex;
	flex-wrap: nowrap;
}

.provider-header-buttons .button-border
{
	max-width: none;
	padding: 17px 40px 15px;
	margin-left: 8px;
	font-size: 18px;
}

.provider-header-buttons-min-max
{
	margin-top: 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.provider-header-min-max
{
	display: flex;
}

.provider-header-min-max .top-providers-min_max-sub
{
	font-size: 14px;
}

.provider-header-min-max span
{
	font-size: 18px;
}

.provider-header-min-max svg
{
	height: 30px;
	width: auto;
}

.provider-header-min-max .top-providers-min_max-item
{
	align-items: normal;
	margin-left: 56px;
}

.button-dark
{
	background-color: #293148;
	margin-left: 8px;
}

.provider-header-tabs-cont
{
	width: 100%;
	border-top: 1px solid #c7d8e9;
}

.provider-header-tabs
{
	display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #F6F9FC;
    
}

.provider-header-tabs img
{
	margin-right: 35px;
}

.provider-tab
{
	display: flex;
	color: #000;
	font-size: 18px;
}

.tarifs-tab
{
    position: relative;
    width: auto;
}


.tarifs-tab:hover + .provider-tab-drop
{
    display: flex;
}

.provider-tab-drop
{
    display: none;
    position: absolute;
    flex-direction: column;
    line-height: 30px;
    padding: 16px;
    min-width: 180px;
    background-color: #F6F9FC;
    border: 1px solid #C7D8E9;
    border-radius: 10px;
    box-shadow: 0 15px 25px 0 rgb(28 71 158 / 5%);
    z-index: 999;
    margin-left: -20px;
}

.provider-tab-drop:hover
{
    display: flex;
}

.provider-tab-drop a
{
    color: #000;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    width: 100%; 
    align-items: center;
}

.provider-tab-drop a:hover img
{
    display: block;
}

.provider-tab-drop a img
{
    margin: 0;
    display: none;
    height: 12px;
}

.provider-tab-count
{
	font-size: 14px;
	font-family: ProMed, sans-serif;
	color: white;
	padding-left: 9px;
	padding-right: 9px;
	border-radius: 99px;
	padding-top: 1px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 6px;
}

.tab-count-tarif
{
	background-color: #FFBB00;
}

.tab-count-review
{
	background-color: #7D90A6;
}
.tab-count-sale
{
	background-color: #FB3874;
}
.tab-count-news
{
	background-color: #000;
}

.provider-header-tabs a
{
	text-decoration: none;
	padding: 20px 52px;
	border-right: 1px solid #C7D8E9;
	border-left: 1px solid #C7D8E9;
	font-family: ProReg;
}

.provider-header-tabs a:hover
{
	
	background-color: #E8F1F9;
}

.provider-tab-drop a
{
	border: none;
	background-color: #F6F9FC;
}

.provider-tab-active
{
	background-color: #E8F1F9;
	font-family: ProMed!important;
}

.provider-tab-active img
{
	display: none;
}


.provider-content
{
	margin-top: 30px;
}

.provider-content-title-sort
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.dropdown-sort
{
	color: #000;
	font-family: ProReg, sans-serif;
}
.dropdown-sort.label {
	margin-left: 0;
}
.dropdown-sort.label:hover {
	text-decoration: underline;
	color: #7E37E8;
}
.filter-dropdown-sort a
{
	color: #000;
	text-decoration: none;
	font-family: ProReg, sans-serif;
}

.filter-dropdown-sort
{
	margin-left: 20px;
	width: 20%;
}

.filter-dropdown-sort img
{
	margin-left: 20px;
}

.filter-dropdown-sort a:hover
{
	color: #7E37E8;
}
.filter-dropdown-content input[name=sort] {
	width: 1px;
	height: 1px;
	opacity: 0.01;
	display: inline-block;
	position: absolute;
}
.provider-content-news
{
	display: flex;
	flex-wrap: wrap;
	max-width: 1220px;
	margin: 10px auto 0;
	justify-content: center;
}

.news-item
{
	background-color: white;
	border-radius: 12px;
	padding: 32px 30px 30px 30px;
	-webkit-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05);
	-moz-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05);
	box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05);
	flex-basis: 19%;
	margin-right: 5px;
	margin-left: 5px;
	position: relative;
	line-height: 24px;
	margin-bottom: 20px;
	box-sizing: content-box;
}

.news-item:hover
{
	box-shadow: none;
}

.news-item a
{
	position: absolute;
	bottom: 0;
	margin-bottom: 30px;
}

.news-item-date
{
	font-size: 14px;
	color: #7D90A6;
	margin-bottom: 10px;
}

.news-item-text
{
	font-size: 20px;
	font-family: ProMed, sans-serif;
	padding-bottom: 40px;
}

.provider-content-news-h1
{
	margin-bottom: 10px;
}

.provider-content-news-title-date
{
	display: flex;
	
}

.provider-checkaddress-buttons
{
	display: flex;
	flex-wrap: wrap;
}

.provider-checkaddress-buttons .button-empty
{
	margin-left: 8px;
}

.provider-content-news-description
{
	line-height: 22px;
}

.provider-content-news-description a
{
	word-break: break-all;
	word-wrap: break-word;
}

ul.provider-content-news-description li {
	color: inherit;margin-bottom: 20px;margin-left: 0
}

.other-news
{
	max-width: 1200px;
	margin: 40px auto 20px;
}

.provider-content-sales-item
{
	margin-bottom: 20px;
	max-width: 250px;
	margin-left: 10px;
	margin-right: 10px;
	position: relative;
	padding: 12px;
    border: 1px solid #C7D8E9;
    border-radius: 10px;
	box-sizing: content-box;
}

.provider-content-sales-item .main-sales-more
{
    margin-bottom: 12px;
}

.provider-content-sales-img
{
	width: 250px;
	height: 162px;
}

.write-review
{
	margin-top: 30px;
}

.review-select-raiting
{
	font-size: 22px;
}

.review-select-stars
{
	margin-left: 20px;
}

.review-select-stars img
{
	height: 20px;
	width: auto;
	margin-right: 7px;
}

.write-review-select
{
	display: flex;
	align-items: center;
}

.write-review-select .filter-dropdown
{
	margin-right: 10px;
}

.score-cont
{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.score-item
{
	margin-top: 30px;
	display: flex;
	max-width: 290px;
	width: 290px;
	align-items: flex-start;
	margin-right: 80px;
}

.score-count
{
	width: 100%;
}

.score-icon
{
	width: 35px;
	height: auto;
	margin-right: 15px;
}

.score-count-first
{
	
	display: flex;
	justify-content: space-between;
	font-size: 18px;
	font-family: ProMed, sans-serif;
}

.score-count-line
{
	height: 3px;
	background-color: #C7D8E9;
	border-radius: 10px;
	width: 100%;
	margin-top: 5px;
}

.score-count-numbers
{
	display: flex;
	justify-content: space-between;
	margin-top: 12px;
	color: #7D90A6;
	margin-left: 18px;
}

.score-count-numbers span:hover, .score-count-numbers span.active
{
	color: #7E37E8;
	cursor: pointer;
	font-family: ProBold, sans-serif;
	transform: scale(1.3);
}

.write-review-area
{
	width: calc(100% - 42px);
	margin-top: 10px;
	height: 150px;
	border-radius: 12px;
}

.write-review-form
{
	margin-top: 40px;
}

.write-review
{
	display: none;
}

.tarif-guarantee-item
{
	text-align: center;
	max-width: 320px;
	padding: 20px 30px;
    box-sizing: content-box;
}

.tarif-guarantee
{
	margin-bottom: 30px;
}

.tarif-guarantee-title
{
	font-size: 26px;
	font-family: ProBold, sans-serif;
	margin-bottom: 10px;
	margin-top: 10px;
}

.tarif-guarantee-description
{
	font-size: 16px;
    font-family: ProReg, sans-serif;
	color: #fff;
}

.tarif-guarantee-img
{
	height: 67px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sequencing-item
{
	max-width: 265px;
	padding: 10px;
	border: none;
}

li
{
	color: #000;
}

li span
{
	font-family: ProMed, sans-serif;
	color: #000;
}

.provider-logo-info
{
	display: flex;
}

.provider-info-button
{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
}

.provider-cont
{
	display: flex;
	flex-direction: column;
	width: calc(100% - 60px);
	-webkit-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.07); 
	-moz-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.07); 
	box-shadow: 0 15px 25px 0 rgba(28,71,158,0.07);
}

.popular-tarifs-subtitle
{
	font-size: 16px;
	color: #7D90A6;
	margin-left: 30px;
}

.providers-cont-popular
{
	margin-top: 16px;
}

.providers-cont-popular img
{
	height: 12px;
	transform: rotate(90deg);
	margin-left: 10px;
	margin-bottom: 2px;
}

.provider-populars-tarifs
{
	width: 100%;
	margin-top: 12px;
	font-family: ProMed, sans-serif;
	display: block;
}

.popular-tarifs-tr
{
	font-size: 14px;
	color: #7D90A6;
	padding: 0 20px;
	font-family: ProReg, sans-serif;
	margin-bottom: 10px;
    display: none;
}

.popular-tarif
{
	padding: 20px 30px;
	background-color: #F6F9FC;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	overflow: hidden;
	position: relative;
	border-top: 1px solid #E6EDF5;
	border-bottom: 1px solid #E6EDF5;
}



.popular-tarif-row-options
{
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
}

.popular-tarif-row
{
	width: 23%;
	display: flex;
	position: relative;
}

.popular-tarif-row svg
{
	margin-right: 10px;
	margin-top: 3px;
}

.popular-tarif-row .tarif-row-details
{
	display: flex;
	flex-direction: column;
	font-size: 16px;
}

.tarif-opisanie .tarif-row-details
{
	margin-top: 5px;
	font-size: 18px;
}

.popular-tarif-row-name
{
	width: 100%;
    font-size: 16px;
	margin-bottom: 12px;
}

.popular-tarif-row-button
{
	width: 9%;
	min-width: 98px;
    margin-top: 18px;
}

.popular-sale-tag
{
    max-height: 22px;
    min-width: 74px;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    position: absolute;
    left: -20px;
    top: 10px;
}

.popular-tarif-row-quest
{
	padding: 3px 8px;
	background-color: #D9E0EC;
	border-radius: 99px;
	margin-left: 3px;
	font-size: 14px;
	max-height: 16px;

}



.popular-tarif-row-quest-text
{
	position: absolute;
	width: 200px;
	background-color: #293148;
	border-radius: 12px;
	color: white;
	padding: 10px;
	font-size: 16px;
	font-family: ProReg, sans-serif;
	margin-bottom: 25px;
	bottom: 0;
	display: none;
    z-index: 80;
}

.provider-populars-tarifs
{
	display: block;
}

.providers-cont-popular-more
{
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 16px 30px 0 30px;
    margin-top: 16px;
    position: absolute;
    width: calc(100% - 60px);
    bottom: 20px;
}

.providers-cont-popular-more img
{
	transform: rotate(0deg);
}

.houses-search
{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	font-size: 18px;
	margin-top: 30px;
}

.entry-home-onstreet
{
	width: 90px;
	padding-left: 45px;
	margin-right: 8px;
	box-sizing: content-box;
}

.tarif-minisearching
{
	display: flex;
}

.tarif-minisearching form
{
	position: relative;
}


.tarif-minisearching .tarif-searching-button
{
	border: none;
	background-color: transparent;
	padding: 4px;
	position: absolute;
	right: 0;
}

.tarifs-filter-search
{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 1200px;
    margin: 20px auto;
}

.home-search-tags a, .letters-sort__letter
{
	font-size: 18px;
	font-family: ProMed, sans-serif;
}

.home-search-tags
{
	margin-bottom: 30px;
}

.tag-more
{
	
	border: none;
	padding: 6px 10px 5px 10px;
	display: flex;
    align-items: center;
}

.tag-more:hover
{
	background-color: transparent;
	color: #7E37E8;
	text-decoration: underline;
}

.sad-h1
{
	text-align: center;
	margin-top: 50px;
	color: #7D90A6;
	font-size: 32px;
	font-family: ProMed, sans-serif;
}

.sad-img
{
	margin: 0 auto;
	width: 100%;
	text-align: center;
}

.back-links
{
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	margin-top: 20px;
	flex-wrap: wrap;
}

.back-links a
{
	margin-left: 25px;
	margin-right: 25px;
	margin-bottom: 20px;
}

.sales-cont
{
	margin-top: 30px;
}

.sales-filters
{
	justify-content: flex-start;
}

.sales-filters .filter-dropdown
{
	margin-right: 8px;
}

.sales-pic img
{
	margin-top: -20px;
	z-index: 0;
}

.sales-pic .search-providers-form-cont
{
    z-index: 100;
    width: 60%;
    margin: 0;
}

.sales-pic-rating
{
    padding-bottom: 0!important;
}

.provider-rating
{
	display: flex;
	align-items: center;
	
}

.provider-rating .top_providers-info .top_providers-raiting-stars
{
    margin-left: 6px;
}

.rating-count
{
	width: 10%;
	min-width: 80px;
	color: #7D90A6;
	text-align: center;
}

.provider-rating .provider-full-cont
{
	width: 90%;
}

.rating-count-num
{
	font-size: 45px;
	color: #000;
}

.reviews-sub
{
	margin-bottom: 0;
	margin-top: 15px;
}

.reviews-appraisals-rating
{
	margin-top: 10px;
}

.reviews-appraisals-tarifs-more
{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	width: 100%;
}

.rating-popular-more
{
	display: block;
	margin-left: auto;
	margin-right: 0;
	margin-top: 10px;
}

.one-sale-cont
{
	box-sizing: content-box;
	display: flex;
	margin-top: 40px;
}

.one-sale-img
{
	width: 409px;
	height: 231px;
}

.one-sale-img:hover
{
	cursor: default;
	transform: none;
}

.sale-first-provider-date
{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
}

.sale-first-column
{
	margin-right: 20px;
	width: 37%;
}

.sale-second-column
{
	width: 63%;
}

.text-cont
{
	margin-top: 20px;
}

.modal-cont
{
	position: fixed;
    overflow: auto;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	display: none;
	z-index: 9900;
}

.modal-custom
{
	background-color: white;
	min-width: min(580px, 100vw);
	max-width: min(650px, 100vw);
	padding: 30px 40px;
	margin: 0 auto;
	border-radius: 12px;
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
	z-index: 9999;
}

.modal-form .entry-toplug
{
	max-width: none;
	width: calc(100% - 40px);	
}

.modal-h1
{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	font-size: 26px;
	width: 100%;
}

.modal-h1 img, .modal-header > button > img
{
	height: 23px;
	width: 23px;
}

.modal-h1 img:hover, .modal-header > button > img:hover
{
	transform: scale(1.05);
	cursor: pointer;
}

.hide-tarif-modal-text
{
	font-size: 16px;
	width: 90px;
	margin: 0 auto;
	text-align: center;
	margin-top: 20px;
	color: #7E37E8;
	font-family: ProMed, sans-serif;
	outline: none!important;
	border: none;
	background: none;
}

.hide-tarif-modal-text:hover
{
	filter:brightness(130%); 
	cursor: pointer;
	transform: scale(1.08);
}

.political-toplug label:hover
{
	cursor: pointer;
}

.political-toplug input:hover
{
	cursor: pointer;
}

.modal-bg
{
	background-color: #293148;
	opacity: 0.9;
	width: 100%;
	position: fixed;
    overflow: auto;
    left: 0;
    top: 0;
    height: 100%;
}

.tarif-details-item-description-noflex
{
	display: block;
}

.reviews-logo
{
	height: 40px;
	min-width: 40px;
	width: 40px;
	margin-right: 10px;
}

.reviews-logo-name
{
	display: flex;
}

.main-reviews-item-name-date
{
	margin-right: 20px;
}

.top_providers-logo-more
{
	display: flex;
	align-items: center;
    background-color: #7E37E8;
    
}

.top_providers-logo-more a
{
  color: #ffffff;  
}

.search-providers-main-block
{
	padding: 0;
	margin-top: 18px;
}

.search-providers-steps
{
	font-size: 14px;
}

.main-block-img
{
	position: absolute;
	right: -4px;
    top: 0;
}

.quest-after-banner
{
    font-size: 18px;
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.mian-providers-list-item a
{
	color: #000;
    margin: auto;
}

.top_providers-logo-more a
{
    color: #ffffff;
}

.mian-providers-list-item:hover .top_providers-logo
{
	transform: scale(1.05);
	transition: 0.1s;
	
	-webkit-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05);
	-moz-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05);
	box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05);
}

.mian-providers-list-item:hover img
{
	filter: brightness(110%);
}

.filter-sub-title
{
	font-size: 16px;
	font-family: ProMed, sans-serif;
	margin-top: 20px;
	display: flex;
	max-width: 1200px;
    margin: 10px auto;
}

.filter-sub-title img
{
	margin-right: 6px;
}

.district-list-cont
{
	margin-bottom: 120px;
	box-sizing: content-box;
}

.district-list
{
	column-count: 4;
	column-width: auto;
	/*max-height: 200px;*/
	line-height: 25px;
	margin-bottom: 20px;
}

.district-list a
{
	color: #000;
	display: block;
}

.district-list a:hover
{
	color: #7E37E8;
}

.last-reviews
{
	margin-top: 40px;
	margin-bottom: 40px;
}

.last-sales
{
	margin-bottom: 20px;
}

.popular-tarif-row .old-price-hr
{
	margin-top: 10px;
}

.all-button-bottom
{
	margin-bottom: 40px;
}

.providers-name-rating
{
	display: flex;
	max-width: none;
}

.providers-name-rating .top_providers-min_max
{
	margin-top: 0;
	margin-left: 20px;
}

.providers-name-rating .top-providers-min_max-sub
{
	margin-bottom: 0;
}

.providers-name-rating .top_providers-name
{
	display: flex;
	flex-wrap: wrap;
	
}

.seo-text-bottom
{
	margin-bottom: 40px;
}


.old-sale:hover .provider-content-sales-img
{
	filter: brightness(40%);
	z-index: 0;
}

.old-sale-description
{
	display: none;
}

.old-sale:hover .old-sale-description
{
	
	opacity: 1;
	display: block;
	position: absolute;
	color: white;
	width: calc(100% - 24px);
	margin-top: 70px;
	font-size: 20px;
	text-align: center;
	z-index: 10;
}

.provider-content-news-h1
{
	margin-right: 20px;
}

.provider-news-header
{
	margin: 0;
	
}

.provider-news-logo
{
	margin-right: 15px;
	width: 60px;
	min-width: 60px;
	max-width: 60px;
	height: 60px;
	max-height: 60px;
}

.cont-toplug
{
	padding: 30px;
	border: 1px solid #C7D8E9;
	flex-direction: column;
	text-align: left;
	align-items: stretch;
	margin-top: 8px;
	border-radius: 12px;
	background-color: #F6F9FC;
	margin-left: 30px;
}

.cont-toplug .under
{
	margin-bottom: 24px;
}

.cont-toplug .button-main
{
	width: 100%;
}

.cont-toplug .tarif-details-item
{
    padding: 0;
    border: none;
    
}

.cont-toplug .back-call-imgs
{
	margin: 0 auto;
}

.back-call-cont-main-info
{
	margin-top: 8px;
    width: 40%;
}

.tarif-opisanie-plugform .entry-toplug
{
	margin-right: 0;
}

.tarif-important-info
{
	border: 1px solid #C7D8E9;
	padding: 20px;
	background-color: #000;
	color: white;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 12px;
}

.tarif-important-info .tarif-old-price
{
	margin-right: 10px;
}

.tarif-page-price
{
	font-size: 30px;
	margin-bottom: 5px;
	margin-right: 0;
}

.tarif-page-price .old-price-hr
{
	margin-top: 22px;
}

.tarif-page-price .tarif-old-price
{
	font-size: 20px;
}

.tarif-price-fee
{
	font-size: 18px;
}

.compare-button
{
	display: block;
}


.header-logo-mob
{
	display: none;
}

.menu-mob
{
	display: none;
}

.header-call-back-mob
{
	display: none;
}

.back-call-form form
{
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}


.back-call-form .entry
{
    margin-right: 4px;
    margin-bottom: 8px;
}
	
.back-call-form .button-main
{
    margin-right: 4px;
    margin-bottom: 8px;
}

.search-providers-form input
{
	box-sizing: content-box;
	margin: 0 4px 8px 4px;
}

.search-providers-form button
{
	margin: 0 12px 8px 4px;
}

.mobile-menu-button
{
	display: none;
}

.header-call-back-mob-mini
{
	display: none;
}

.popular-tarif-mobile-title
	{
		display: block;
		font-size: 12px;
		color: #7D90A6;
		font-family: ProReg, sans-serif;
		margin-bottom: 4px;
		margin-left: 0;
	}

.popular-tarif-row-quest-cont
{
	display: flex;
	flex-wrap: wrap;
	font-family: ProMed, sans-serif;
	font-size: 16px;
}

.popular-tarif-row-quest-cont:hover .popular-tarif-row-quest
{
	background-color: #293148;
	color: white;
	cursor: help;
}

.popular-tarif-row-quest-cont:hover
{
	cursor: help;
}

.popular-tarif-row-quest-cont:hover + .popular-tarif-row-quest-text
{
	display: block;
	-webkit-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05); 
-moz-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05); 
box-shadow: 0 15px 25px 0 rgba(28,71,158,0.05);

}

.search-number-house .button-main
{
	width: auto;
}

.review-filter
{
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}

.review-filter .button-special
{
	margin-top: 10px;
}

.review-filter-dropdowns
{
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
	
}

.review-filter-dropdowns .filter-dropdown
{
	margin-left: 8px;
	min-width: 210px;
	max-width: 210px;
}

.review-consultation-img-text
{
	display: flex;
}

.provider-tab-arrow
{
	display: none;
}

.tarifs-searching-cont .light-button
{
	display: none;
}

.cont-header-blue-pic
{
	background-color: #F4F7FD!important;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	padding-bottom: 80px;
}



.cont-header-blue-h1
{
	max-width: 600px;
	font-size: 40px;
	font-family: ProBold, sans-serif;
}

.cont-header-blue-pic img
{
	position: absolute;
	right: 0;
	z-index: 0;
}

.cont-header-blue-pic span img
{
    position: inherit;
    margin: 10px auto ;
}

.mob-menu-modal
{
	display: none;
}

.filter-sub-title-review
{
	display: none;
}

.tarif-opisanie-type
{
	width: calc(100% - 40px);
	padding: 17px;
	margin-top: 8px;
	
}

.type-menu-img-text img
{
	width: 50px;
}

.tarif-opisanie-type .type-menu-subtitle
{
	font-size: 16px;
}

.tarif-opisanie-type .type-menu-title
{
	font-size: 22px;
}

.modal-request .modal-h1
{
	margin-bottom: 8px;
}

.modal-request .sub-h1
{
	margin-top: 10px;
}

.about-company
{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
}

.about-company-item
{
    border: none;
	border-radius: 12px;
	background-color: #7E37E8;
	color: #fff;
}

.about-company-item .tarif-guarantee-img
{
    height: auto;
    margin-bottom: 20px;
    max-height: 175px;
}

.about-company-cont
{
    margin-bottom: 100px;
}


.footer-city .footer-logo-pc img
{
    height: 50px;
    margin-bottom: 20px;
}
.footer-logo-pc {display: block}
.faq-questions
{
    margin-top: 20px;
}

.faq-item
{
    border: 1px solid #C7D8E9;
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 8px;
	background-color: #ffffff;
}

.faq-item-title
{
    font-size: 18px;
    font-family: ProMed, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-item.expanded .faq-item-subtitle {
    display: flex;
}
.open-faq
{
    font-size: 26px;
    color: #7E37E8;
    display: block;
    margin-left: 15px;
}
.faq-item.expanded .open-faq {
    display: none;
}
.close-faq
{
    display: none;
}
.faq-item.expanded .close-faq {
    display: block;
}
.faq-item-subtitle
{
    font-size: 14px;
    color: #7D90A6;
    margin-top: 15px;
    align-items: flex-start;
    display: none;
}

.faq-item-subtitle img
{
    margin-right: 8px;
    margin-top: 1px;
}

.choose-tarif
{
    background-color: #293148;
    display: flex;
    flex-direction: row;
    padding: 30px 40px;
    max-width: 1120px;
    text-align: left;
    border-radius: 10px!important;
}

.choose-tarif button
{
    min-width: 200px;
}

.choose-tarif .search-provider-home
{
    min-width: 180px;
}

.choose-tarif .seo-text
{
    margin-left: 0;
    margin-bottom: 20px;
}

.choose-tarif img
{
    margin-right: 20px;
    max-height: 180px;
}

.choose-tarif .h1
{
    color: white;
}

.check-adress
{
    background-color: #ffffff;
    
}

.check-adress .h1
{
   color: #000; 
}

.streets-column-item
{
    display: flex;
    flex-direction: column;
    font-size: 32px;
    margin-right: 20px;
    margin-bottom: 40px;
    width: 22%;
}
.streets-column-item--hide, .streets-column-item a.streets-column-item--hide {
	display: none;
}

.streets-column-item a
{
    font-size: 16px;
    margin-top: 12px;
	margin-right: 40px;
    color: #000;
    cursor: pointer;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border-bottom: 1px solid #C7D8E9;
    padding-bottom: 12px;	
}

.streets-column-item ul li a
{
	font-size: 14px;
	line-height: 16px;
}

.streets-column-item img
{
	margin-left: 20px;
	margin-top: 2px;
	transform: rotate(90deg);
	height: 12px;
	display: none;
}

.streets-column-item a:hover
{
    color: #7E37E8;
}

.streets-column-item a:hover img
{
    display: block;
	transform: rotate(0deg);
}

.zona-ohvata__street-list__column-block-title
{
	margin-bottom: 16px;
	font-size: 24px;
	
}

.zona-ohvata__street-list__column-block
{
	margin-top: 32px;
}

.zona-ohvata__street-list a
{
	color: #000;
}

.zona-ohvata__street-list li
{
	font-size: 16px;
    margin-top: 12px;
    margin-right: 40px;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #C7D8E9;
    padding-bottom: 12px;
}

.streets-column-item-active
{
	color: #7E37E8!important;
}

.streets-column-item-active img
{
	display: block;
	transform: rotate(270deg);
}

.streets-columns
{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    
}

.check-adress-form .search-provider-home
{
    min-width: 250px;
}

.slider
{
    border-radius: 99px;
    width: 30px;
    height: 16px;
    background-color: #7D90A6;
    position: relative;
    cursor: pointer;
    transition: 0.2s;
}

.slider-on:hover .slider-circle
{
    transform: translateX(-2px);
    transition: 0.2s;
}

.slider-off:hover .slider-circle
{
    transform: translateX(2px);
    transition: 0.2s;
}

.slider-off
{
   background-color: #7D90A6; 
}

.slider-on
{
    background-color: #7E37E8;
    transition: 0.2s;
}

.slider-on .slider-circle
{
    position: absolute;
    background-color: white;
    height: 12px;
    width: 12px;
    border-radius: 99px;
    top: 2px;
    right: 2px;
}

.slider-off .slider-circle
{
    position: absolute;
    background-color: white;
    height: 12px;
    width: 12px;
    border-radius: 99px;
    top: 2px;
    left: 2px;
}

.toplug-tarif-scroll-cont
{
    position: fixed;
    background-color: #000;
	color: #fff;
    width: 100%;
    -webkit-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.1);
    -moz-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.1);
    box-shadow: 0 15px 25px 0 rgba(28,71,158,0.1);
    z-index: 99;
	padding: 10px 0;
}

.out-to-plug
{
    display: none;
}

.toplug-tarif-scroll
{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.toplug-tarif-scroll-left
{
    display: flex;
	width: 50%
}

.toplug-tarif-scroll-right
{
	display: flex;
	align-items: center;
}

.toplug-tarif-scroll-right .tarif-old-price
{
	font-size: 14px;
}

.toplug-tarif-scroll-right .tarif-old-price hr
{
	margin-top: 5px;
}

.toplug-tarif-scroll-title
{
    display: flex;
    flex-direction: column;
	max-width: 400px;
}

.toplug-tarif-scroll-right button
{
    font-size: 14px;
    padding: 14px 28px;
}

.toplug-tarif-scroll-title .tarif-details-item-description
{
    margin-top: 3px;
}

.ya-img
{
	margin-right: 0!important;
	max-height: 20px!important;
	margin-bottom: 0!important;
}

.oborud-cont 
{
	margin-bottom: 40px;
	box-sizing: content-box;
}

.oborud-cont .main-sales-last
{
	margin-bottom: 0;
}

.oborud-cont .seo-text
{
	margin-bottom: 40px;
	font-family: ProReg, sans-serif;
	font-size: 14px;
	padding: 0;
    background-color: transparent;
}

.oborud-cont .seo-text div
{
	font-size: 16px;
	margin-bottom: 15px;
}

.oborud-cont .seo-text img
{
	margin-right: 12px;
	height: 16px;
	margin-bottom: 2px;
}

.oborud-cont .main-sales-last-title
{
	margin: 20px;
}

.oborud-cont .main-sales-last-img
{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 400px;
}
.provider-hardware__router {position: relative;height: auto}
.provider-hardware__router > svg {position: absolute;color: var(--prov-main-color);left: 120px;top: 20px;}
.provider-hardware__tvbox > img {margin: 60px auto;display: block}
.tarif_pack
{
	min-width: 49%;
	background-color: #C7D8E9;
	border-radius: 12px;
	display: flex;
	justify-content: space-between;
	height: 185px;
}

.tarif_pack:not(:last-child)
.tarif_pack:not(:last-child)
{
	margin-right: 10px;
}

.tarif_pack:not(:first-child)
{
	margin-left: 10px;
}

.other-tarifs_packs
{
	display: flex;
	justify-content: space-between;	
}

.tarif_pack img
{
	margin-right: 35px;
	margin-top: 15px;
}

.tarif_pack-title
{
	font-size: 26px;
	margin-top: 30px;
	margin-left: 30px;
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}


.tarif_pack-title a
{
	font-size: 16px;
}

.other-tarifs_packs-cont
{
	margin-top: 20px;
}

.ymaps-2-1-79-inner-panes {
    filter: hue-rotate(290deg);
    -webkit-filter: hue-rotate(290deg);
    -moz-filter: hue-rotate(290deg);
    -o-filter: hue-rotate(290deg);
}
.form_search_map_wrapper {
    display: none;
    border: 1px solid #fea733;
    width: 100%;
    height: 401px;
    border-radius: 4px;
    background: #fff;
    margin-top: 16px;
}
.form_search_map_wrapper.opened {
    display: block;
}
.autocomplete-suggestions { background: #FFF; overflow: auto; box-shadow: 3px 3px 4px #eee; padding: 10px }
.autocomplete-suggestion { padding: 2px 5px; white-space: nowrap; overflow: hidden; }
.autocomplete-selected { background: #F0F0F0; }
.autocomplete-suggestions strong { font-weight: normal; color: #3399FF; }
.autocomplete-group { padding: 2px 5px; }
.autocomplete-group strong { display: block; border-bottom: 1px solid #000; }
.tarifs-tabs__tab {display: none}
.tarifs-tabs__tab.active {display: block}
.cmp-tarif-btn-float {
	position: fixed;
	display: none;
	left: 12px;
	bottom: 20px;
	z-index: 120;
	border-radius: 99px;
	font-size: 18px;
}
.cmp-tarif-btn-float.--show {
	display: flex;
}

@media screen and (max-width: 1444px)
{
	   .anchor
	{
		height: 56px;
		width: 60px;
		opacity: 1;
		position: fixed;
		z-index: 11000;
		font-size: 10px;
		font-family: ProReg, sans-serif;
		bottom: 26px;
		right: 10px;
		display: flex;
		justify-content: center;
		align-items: center;
		transition: 0.12s;
		
	}

	.anchor img
	{
		z-index: 150;
		color: #7D90A6;
		opacity: 1;
		padding: 0;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		transition: 0.12s;
	}

	.anchor-bg
	{
		position: absolute;
		background-color: #C7D8E9;
		border-radius: 12px;
		/* border: 2px solid #7E37E8; */
		height: 100%;
		color: #7D90A6;
		width: 60px;
		transition: 0.12s;
		box-shadow: 0 15px 25px 0 rgb(28 71 158 / 25%);
	}

	.anchor-out
	{
		display: none;
	}

	.anchor img
	{
		transform: rotate(270deg);
		margin-right: 0;
		height: 14px;
		width: 8px;

	}
	
	.anchor-bg:hover
	{
		background-color: #E8F1F9;
	}

	.anchor:hover
	{
		border-radius: 12px;
		background-color: #E8F1F9;
		opacity: 1;
		cursor: pointer;
		text-decoration: none;
		height: 60px;
	}

	.anchor:hover span
	{
		opacity: 1;
	}
}

@media screen and (max-width: 1200px)
{
    .cont, .toplug-tarif-scroll
    {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .main-providers-list-sub
    {
        margin-left: 20px;
        margin-right: 20px;
    }
    
	.top_providers-columns
    {
       display: block; 
    }
    
    .provider-full-cont
    {
        width: auto;
    }
    
	.tarif-logoname
	{
		max-width: none;
        margin-left: 20px;
        margin-right: 20px;
	}
	
	.tarif-guarantee-item
	{
		width: 25%;
	}
	
	.tarif-guarantee, .top_providers
	{
		margin-left: 20px;
		margin-right: 20px;
	}
	
	.tarifs-searching-cont-header
	{
		margin-left: 0;
		margin-right: 0;
	}
	
	.tarif-opisanie
	{
		margin-left: 20px;
		margin-right: 20px;
	}
	
	.tarif-opisanie-logo
	{
		margin-right: 0;
	}
	
	.cont-white
	{
		margin-left: 20px;
		margin-right: 20px;
	}
	
	.provider-content-news
	{
		margin-left: 20px;
		margin-right: 20px;
	}
	
	.news-item
	{
		flex-basis: 27%;
	}
	
	.other-news
	{
		margin: 30px 20px 30px 20px;
	}
	
	.provider-header 
	{
		margin: 0 20px;
	}
	
	.provider-header-tabs
	{

		justify-content: space-between;
	}
	
	.provider-header-tabs a
	{
		margin: 0;
	}
	
	.provider-header-tabs img
	{
		margin-left: 10px;
		margin-right: 10px;
	}
	
	.tarifs-consultation
	{
		max-height: 400px;
        width: calc(100% - 60px);
	}
	
	.tarifs-tags
	{
		margin-left: 20px;
		margin-right: 20px;
	}
	
	.main-sales-item
	{
		
		flex-basis: 23%;
		margin-left: 10px;
		margin-right: 10px;	
	}
	
	.main-sales-row
	{
		width: 100%;
	}

	.tarifs
	{
		margin-left: 20px;
		margin-right: 20px;
	}
	
	.main-reviews
	{
		flex-direction: column;
	}
	
	.main-reviews-item
	{
		
		max-width: 1200px;
	}
	
	.main-reviews-appraisals
	{
		justify-content: flex-start;
	}
	
	.main-reviews-appraisals-item
	{
		margin-right: 40px;
	}
	.main-reviews-appraisals-item:last-child {margin-right: 0}
	
	.mian-providers-list
	{
		margin-left: 20px;
		margin-right: 20px;
		justify-content: center;
	}
	
	.mian-providers-list-item
	{
		max-width: 95px;
	}
	
	.main-block-seo-text
	{
		margin: 0;
	}
	
	.seo-text
	{
		margin: 0 20px;
	}
	
	.header
	{
		margin: 0 20px;
	}
	
	.main-sales-row
	{
		display: flex;

	}
	
	.main-sales-item-img
	{
		width: auto;
	}
	
	.type-menu-item
	{
		margin-left: 10px;
		margin-right: 10px;
		padding: 20px 30px;
	}
	
	.request-top_providers
	{
		flex-wrap: wrap;
	}
    
    .request
    {
       margin: 0 20px; 
    }
	
	.cont-blue
	{
		padding: 40px 20px;
		max-width: 100%;
		border-radius: 0;
	}
	
	.top_providers
	{
		width: 100%;
		margin-top: 40px;
	}
	
	.top_providers-name
	{
		max-width: none;
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
	
	
	.fast-menu-item
	{
		margin-left: 10px;
		margin-right: 10px;
		margin-bottom: 8px;
	}

	
	
	.footer-row
	{
		margin-left: 20px;
		margin-right: 20px;
	}
	
	.footer-city-phone
	{
		margin-left: 20px;
		margin-right: 20px;
	}
	
	.tarif-logo-title
	{
		width: auto;
	}
	
	.fast-menu
	{
		width: auto;
	}
	
	.fast-menu-item
	{
		
		flex-direction: column;
		min-height: 80px;
		text-align: center;
		padding: 16px;
	}
	
	.fast-menu-item img
	{
		margin-right: 0;
		margin-top: 10px;
	}
	
	.fast-menu-item span
	{
		margin-top: 15px;
		font-size: 16px;
	}
	
	.fast-menu a
	{
		width: 20%;
		display: flex;
	}
	
	.mini-header
	{
		margin: 0 20px;
	}
	
	.main-block
	{
		margin: 0 8px;
	}
	
	.tarifs-searching-cont
	{
		margin: 0 20px;
	}
	
	.links-line
	{
		margin: 0 20px;
	}
	
	.tarifs-filter
	{
		margin-left:20px;
		margin-right: 20px;
	}
	
	.filter-dropdown
	{
		min-width: 200px;
	}
	
	.filter-reset
	{
		margin-left:20px;
		margin-right: 20px;
	}
	
	.pages-buttons
	{
		margin-left:20px;
		margin-right: 20px;
	}
	
	.write-review-send-filter
	{
		margin-left: 0;
		margin-right: 0;
	}
	
	.tarif-opisanie-type
	{
		margin-left: 0;
		margin-right: 0;
		padding: 17px;
		width: calc(100% - 38px);
		font-size: 16px;
	}
	
	.cont-toplug
	{
		margin-left: 0;
		margin-right: 0;
	}
	
}

@media screen and (max-width: 1100px)
{
	.one-sale-img
	{
		height: 180px;
	}
	
	.header-phone-number a
	{
		font-size: 20px;
	}
	
	.header-phone .header-back-call
	{
		font-size: 14px;
	}
	
	.header-phone span
	{
		font-size: 12px;
	}
	
	.header-menu-a
	{
		font-size: 14px;
	}
	
	.main-block-title
	{
		font-size: 40px;
	}
	
	.main-block-info
	{
		width: 65%;
	}
	
	.main-block-img
	{
		width: 35%;
	}
	
	.main-block-info .seo-text, .seo-partner
	{
		margin-left: 0;
		margin-right: 0;
	}
	
	.news-item
	{
		flex-basis: 26%;
	}
}



@media screen and (max-width: 1057px)
{
    .request-item .a-all
    {
        font-size: 14px;
    }
    
    .request-column-sub
    {
        font-size: 12px;
    }
    
	.request-column-info
    {
        font-size: 14px;
    }
	
	.main-sales-item
	{
		flex-basis: 31%;
	}
}

@media screen and (max-width: 1007px)
{
	.tarifs-filter .filter-dropdown
	{
		width: 43%;
	}
}


@media screen and (max-width: 1000px)
{
	 .choose-tarif .search-provider-street
    {
        max-width: 180px;
    }
	
	.tarif-opisanie
	{
		display: flex;
		flex-direction: column;
	}
	
	.news-item
	{
		flex-basis: 24%;
	}
	
	.tarifs-consultation
	{
		flex-direction: column;
		align-items: center;
		padding: 20px 25px;
		min-width: 240px;
		width: 310px;
		height: 80%;
		text-align: center;
		flex-wrap: wrap;
        justify-content: flex-start;
	}
    
    .tarifs-consultation-text
    {
        margin-right: 0;
    }
	
    .tarif-opisanie
    {
        flex-direction: column-reverse;
    }
	
	.tarif-opisanie-type
	{
		width: 250px;
		margin-top: 0;
		margin-left: 10px;
		display: flex;
		align-items: center;
	}
	
	.tarif-opisanie-type .type-menu-img-text
	{
		margin: auto 0;
	}
	
	.back-call-cont-main-info
	{
		margin-top: 10px;
		display: flex;
		flex-direction: row;
	}
	
	.tarif-important-info
	{
		margin-left: 0;
		margin-right: 0;
		padding: 20px;
		height: 60px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 250px;
	}
	
	.tarif-price-fee
	{
		font-size: 20px;
	}
	
	.tarif-details-opisanie
	{
		width: 100%;
	}
	
	.review-consultation
	{
		margin-left: 0;
		margin-right: 0;
	}
	
	.tarifs-consultation-form
	{
		flex-direction: column;
		width: 100%;
	}
	
	.tarifs-consultation-form .entry
	{
		width: calc(100% - 40px);
		margin-right: 0;
		margin-bottom: 8px;
	}
	
	.tarifs-consultation-form .button-consultation
	{
		width: 100%;
	}
	
	.tarifs-consultation img
	{
		max-width: 70px;
		margin-bottom: 10px;
		margin-right: 0;
	}
	
	.tarifs-consultation-subtitle
	{
		margin-bottom: 20px;
	}
	
	.tarifs-consultation-title
	{
		margin-right: 0;
	}
	
	.review-consultation
	{
		align-items: flex-start;
		text-align: left;
		width: auto;
	}
	
	.review-consultation .tarifs-consultation-form
	{
		flex-direction: row;
	}
	
	.review-consultation-img-text img
	{
		margin-right: 20px;
	}
	
	.review-consultation-form .button-consultation
	{
		width: 20%;
	}
	
	.review-consultation-form .entry
	{
		width: auto;
		margin-bottom: 0;
		margin-right: 8px;
		width: 20%;
	}
	
	.tarif-searching
	{
		flex-direction: column;
		align-items: flex-start;
	}
	
	.tarif-searching-item
	{
		width: 100%;
		margin-bottom: 20px;
	}
	
	.tarif-details-title
	{
		font-size: 14px;
	}
	
	.tarif-details-item-title
	{
		font-size: 14px;
	}
	
	.tarif-details-item-description
	{
		font-size: 12px;
		margin-bottom: 6px;
	}
	
	.tarif-details-services
	{
		margin-top: 10px;
	}
	
	.tarif-details-column
	{
		width: 100%;
	}
	
	.back-call-form input
	{
		max-width: 260px;
		width: auto;
	}
	
	.back-call-cont
	{
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	
	.call-back-sub-h1
	{
		max-width: none;
	}
	
	.back-call-form
	{
		/* margin-left: 67px;
		margin-top: 16px; */
		flex-wrap: wrap;
	}
	
	.back-call-form .blue-button
	{
		margin-top: 10px;
	}
	
	
	.tarif-important
	{
		display: block;
	}
	
	.tarif-internet, .tarif-tv, .tarif-mob
	{
		width: auto;
		margin-top: 20px;
	}
	
	.tarif-price
	{
		margin-bottom: 50px;
	}
	
	.tarif-title
	{
		width: 100%;
		margin-top: 10px;
		margin-right: 0;
	}
	
	.top-tarifs
	{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	.top_providers-title-link .a-all
	{
		display: none;
	}
	
	.providers-cont-popular-more a
	{
		display: block;
	}
	
	.tarif-price-compare
	{
		justify-content: space-between;
		margin-top: 20px;
	}
	
	.tarif-button-more
	{
		justify-content: space-between;
	}
	
	.tarif-button
	{
		left: 25px;
		right: 0;
		max-width: 180px;
	}
	
	.tarif
	{
		padding: 20px 25px 120px 25px;
		position: relative;
		
		width: 310px;
	}
	
	.tarif-details
	{
		padding-bottom: 0;
	}
	
	.compare-button
	{
		display: none;
	}
    
    .request-item .compare-button
    {
        display: block;
        
    }
	
	.tarif-button-more
	{
		align-items: center;
	}

	
	.tarif-price-compare
	{
		margin-right: 0;
	}
	
	.search-providers-main-block .search-provider-home
	{
		min-width: 100px;
	}
	
	.search-providers-main-block .search-provider-street
	{
		min-width: 200px;
	}
	
	.search-providers-main-block .search-providers-steps-item img
	{
		display: none;
	}
	
	.header-logo
	{
		width: 100px;
		margin-right: 40px;
	}
	
	.button-more
	{
		margin-left: 0;
	}
	
	.pages-buttons-numbers
	{
		position: relative;
		margin-top: 20px;
	}
	
	.pages-buttons
	{
		display: flex;
		flex-direction: column;
		width: auto;
		align-items: center;
	}
	
	.modal-form
	{
		margin-left: 0;	
		width: 100%;
	}
	
	.modal-form .entry-toplug
	{
		width: calc(100% - 40px);
	}
	
	.tarif-guarantee-img img
	{
		width: 50px;
	}
	
	.tarif-guarantee-title
	{
		font-size: 22px;
	}
	
	.tarif-guarantee-description
	{
		color: #fff;
	}
    
    
    .about-company-item .tarif-guarantee-img img
    {
        
        height: 120px;
        width: auto;
    }
    
    
    .choose-tarif .search-providers-form
    {
        flex-wrap: wrap;
    }
    
    .cont-toplug
    {
        width: 100%;
    }
    
	.tarif-opisanie .back-call-cont-main-info
	{
		width: 100%;
	}
	
}


@media screen and (max-width: 940px)
{
	.other-tarifs_packs
	{
		flex-direction: column;
	}
	
	.tarif_pack:not(:first-child) 
	{
		margin-top: 16px;
    	margin-left: 0;
	}
	
	.one-sale-img
	{
		height: 120px;
	}
	
	.header-phone-number a
	{
		font-size: 16px;
	}
	
	.header-phone .header-back-call
	{
		font-size: 14px;
	}
	
	.header-menu-a
	{
		font-size: 13px;
	}
	
	.header-logo
	{
		margin-right: 20px;
	}

}


@media screen and (max-width: 910px)
{
	.type-menu-subtitle
	{
		font-size: 16px;
	}
	
	.type-menu-title
	{
		font-size: 22px;
	}
	
	.type-menu-item p
	{
		display: none;
	}
	
	.type-menu-item
	{
		padding: 20px;
	}
	
	.type-menu-img-text img
	{
		width: 60px;
		height: 60px;
	}
	
	.type-menu-img-text
	{
		align-items: center;
	}
	
	.header-logo
	{
		width: auto;
	}
	
	/* .header-logo-mob
	{
		display: block;
		width: 30px;
	} */
	
	
	.header-menu-a
	{
		font-size: 14px;
	}
	
	.fast-menu-item img
	{
		width: 25px;
		margin: 0 auto;
	}
	
	.fast-menu-item
	{
		min-height: 80px;
	}
	
	.search-providers-city
	{
		font-size: 14px;
	}

	.modal-custom .search-providers-city
	{
		font-size: 16px;
	}
	
	.main-block-info
	{
		width: 75%;
	}
	
	.main-block-img
	{
		width: auto;
	}
	
	
	
	.search-providers-cont
	{
		width: auto;
		padding-left: 20px;
		padding-right: 20px;
		border-radius: 0;
	}
	.search-providers-cont-main
	{
		padding: 0;
		margin: 0 20px;
	}
	
	.search-providers-main-block
	{
		margin: 20px 0 10px 0;
	}
	
	.district-list
	{
		column-count: 3;
		max-height: none;
	}
	
	.main-sales-item
	{
		flex-basis: 45%;
	}
	
	.provider-content-sales-img
	{
		height: 200px;
	}
    
    .request-item-column
    {
        width: 20%;
    }
	
	
}


@media screen and (max-width: 874px)
{
    .sales-pic .search-providers-form-cont
    {
        width: auto;
    }
    
	.news-item
	{
		flex-basis: 23%;
	}
	
	/* .tarifs-consultation
	{
		width: 280px;
	} */
	
	.review-consultation
	{
		align-items: flex-start;
		text-align: left;
		width: auto;
	}
	
	.review-consultation-form .button-consultation
	{
		width: 30%;
	}
	
	.review-consultation-form
	{
		width: 100%;
		
	}
	
	.review-consultation-form .entry
	{
		width: auto;
		margin-right: 8px;
		width: 28%;
	}
	
	.main-sales-last
	{
		flex-direction: column;
	}
	
	.main-sales-last-img
	{
		margin-right: 0;
		margin-bottom: 20px;
		height: 340px;
	}
	
	.oborud-cont .main-sales-last-img
	{
		max-width: none;
	}
	
	.tarif
	{
		width: 280px;
	}
	
	.tarif-button
	{
		padding-left: 30px;
		padding-right: 30px;
	}
	
	.sales-pic img 
	{
		opacity: 0.8;
		filter: blur(30px) brightness(120%);
	}
}

@media screen and (max-width: 844px)
{
	.footer-row-column .button-main
	{
		align-self: flex-end;
	}
	
	.tarif-guarantee-item
	{
		width: 23%;
	}
}


@media screen and (max-width: 890px)
{
    
    .provider-full-cont
    {
        padding-bottom: 50px;
    }
	
	.provider_button_pick-up
	{
		bottom: 20px;
	}
}

@media screen and (max-width: 800px)
{
	.news-item
	{
		flex-basis: 39%;
	}
	
	.provider-header-cont
	{
		padding-top: 10px;
	}
	
	.provider-header-logo
	{
		width: 100px;
		height: 100px;
	}
	
	.provider-header
	{
		flex-direction: column;
		align-items: center;
		text-align: center;
	}


	
	.provider-header-info .main-reviews-raiting
	{
		margin: 0 auto;
	}
	
	.provider-header-info-title-rating
	{
		display: flex;
		flex-direction: column;
	}
	
	.provider-header-info
	{
		margin-left: 0;
	}
	
	.provider-header-buttons
	{
		margin-top: 0;
	}
	
	.provider-header-tabs
	{
		margin-top: 20px;
	}
	
	.score-cont
	{
		justify-content: space-between;
	}
	
	.score-item
	{
		margin-right: 0;
	}
	
	.write-review-select
	{
		align-items: flex-start;
		flex-direction: column;
	}
	
	.review-select-raiting
	{
		margin-top: 20px;
	}
	
}


@media screen and (max-width: 768px)
{

	.header-cont .header-logo-pc
	{
		display: block;
	}

	.tarif-minisearching
	{
		width: 100%;
	}

	.tarif-minisearching form
	{
		width: calc(100% - 20px);
		margin: 0 auto;
	}
	
	.entry-tarif
	{
		width: 100%;
	}



	.search-providers-form-container
	{
		flex-wrap: wrap;
	}
	.tarif-logoname
	{
		padding: 0;
	}

	.modal-content .tarif-logoname
	{
		margin: 0;
	}

	.h1
	{
		margin-left: 10px;
		margin-right: 10px;
	}

	.top-cont
	{
		margin-bottom: 60px;
	}

	.modal-city-title-search
	{
		margin-right: 20px!important;
		flex-wrap: wrap;
	}

	#selectCity .modal-title
	{
		margin-bottom: 12px;
	}

	#selectCity .close
	{
		right: -24px;
    	top: -28px;
	}

	.modal-content .close, .modal-custom .close
	{
		right: 16px;
		top: 16px;
	}

	.modal-content label
	{
		display: inline;
	}

	#selectCity .modal-content label
	{
		display: block;
	}

	#selectCity .tarifs-tags
	{
		margin-left: 0;
	}

	.modal-content
	{
		padding: 20px;
	}

	.modal-content .button-blue
	{
		margin: 0 auto;
		width: 100%;
		justify-content: center;
	}
		
	

	.provider-checkaddress-buttons
	{
		flex-direction: column;
		align-items: center;
	}

	.provider-checkaddress-buttons a
	{
		width: 100%;
		text-align: center;
	}

	.provider-checkaddress-buttons .button-empty
	{
		margin-left: 0;
		margin-top: 8px;
		justify-content: center;
	}



	.cont
	{
		width: calc(100% - 20px);
	}

	.check-adress-form .search-provider-home
	{
		min-width: auto;
	}

	.provider-modal-choices
	{
		flex-direction: column;
	}

	.provider-modal-choices__item
	{
		width: auto;
		margin-bottom: 8px;
	}

	.provider-tab-arrow
	{
		display: block;
	}

	.popular-tarif-row-name
	{
		width: 100%;
		margin-bottom: 15px;
		margin-left: 8px;
	}

	.tarifs-filter
	{
		margin-left: 10px;
		margin-right: 10px;
	}

	.filter-sub-title
	{
		margin-left: 10px;
		margin-right: 10px;
	}

	.tarifs-filter-search
	{
		flex-direction: column;
		margin-left: 10px;
		margin-right: 10px;
	}

	/* .tarifs-filter-search .tarif-minisearching
	{
		display: none;
	} */
	
	.modal-custom
	{
		padding: 20px;
		width: calc(100% - 20px);
		min-width: 240px;
	}
	

	.tarif-row-details .popular-tarif-mobile-title
	{
		margin-bottom: 0;
	}
	.providers-cont-popular-more
	{
		flex-direction: column;
		margin: 36px 10px 12px;
		width: calc(100% - 20px);
	}

	.providers-cont-popular-more a
	{
		width: 100%;
		max-width: none;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		color: #7e37e8;	
		text-decoration: underline;
		padding: 0;
		margin-bottom: 8px;
	}

	.providers-cont-popular-more .button-border:hover
	{
		background-color: transparent;
		color: #7e37e8;
	}

	.popular-tarif-row-options .button-border
	{
		max-width: none;
		width: 100%;
		justify-content: center;
		padding: 12px 0;
	}

	.providers-cont-popular-more a svg
	{
		display: none;
	}

	.popular-tarif-row-options .button-border svg
	{
		position: relative;
		left: 0;
		margin-right: 8px;
	}

	.tarifs
	{
		margin: 0 10px;
	}

	.provider-full-cont
	{
		padding: 16px 0 0;
	}

	.top_providers-item
	{
		margin: 0 0px 20px;
		align-items: center;
	}

	.mini-header-city
	{
		width: 100%;
		justify-content: space-between;
	}

	.provider-modal-form__row
	{
		flex-wrap: wrap;
	}

	.provider-header
	{
		margin: 0 10px;
	}

	.provider-header-buttons .button-border
	{
		justify-content: center;
		padding: auto;
		padding: 17px 0px 15px;
	}

	/* .about-company-cont .seo-text
	{
		margin: 0 20px 0 0;
	} */

	.about-company-cont .seo-text
	{
		margin: 0;
	}

	.provider-header-buttons
	{
		flex-direction: column;
		width: 100%;
	}

	.provider-header-min-max .top-providers-min_max-item
	{
		margin-left: 0;
		text-align: left;
	}

	.provider-header-buttons .button-border
	{
		margin-left: 0;
		text-wrap: wrap;
	}

	.provider-header-min-max
	{
		justify-content: space-between;
		width: 100%;
	}

	.provider-header-buttons-min-max
	{
		flex-direction: column-reverse;
		margin-top: 0;
	}

	.provider-header-min-max
	{
		margin-bottom: 16px;
	}



	.all-button a
	{
		margin-bottom: 8px;
	}

	.footer-cont .seo-text
	{
		margin: 20px 0 0 0;
		border-radius: 0px;
	}

	.seo-text
	{
		padding: 20px;
	}

	.back-call-form input
	{
		max-width: none;
		width: 100%;
	}

	.back-call-form .button-main
	{
		margin: 0;
		width: 100%;
	}

	.type-menu-item svg
	{
		padding-right: 20px;
		min-width: 70px;
		max-width: 70px;
	}

	.request-item-buttons
	{
		margin-top: 12px;
	}

	.cont-purple
	{
		flex-direction: column;
		align-items: center;
		padding: 20px 12px 0;
		border-radius: 0;
	}

	.cont-purple-text
	{
		text-align: center;
	}

	.cont-purple-content
	{
		margin: 12px 0 40px;
	}

	.cont-purple-img
	{
		width: 150px;
	}

	.cont-purple-title
	{
		font-size: 28px;
		width: 100%;
	}

	.cont-purple-form
	{
		flex-direction: column;
	}

	.cont-purple-form input
	{
		width: auto;
		margin-right: 0px;
		margin-bottom: 8px;
	}

	.tarif-details
	{
		padding: 0 20px;
		margin-bottom: 12px;
	}

	.main-block .search-providers-steps-sub
	{
		text-align: center;
	}


	.tarif .button-border
	{
		max-width: none;
		position: absolute;
		margin: 0;
		width: 70%;
		right: 0;
		left: 16px;
		bottom: 20px;
		justify-content: center;
		padding: 8px 0;
		font-family: ProMed;
		font-size: 18px;
		min-height: 46px;
	}

	/* .button-border svg
	{
		position: relative;
		margin-right: 8px;
		left: 0;
	} */

	.compare-button-mob
	{
		display: block;
	}


	.tarif .compare-button
	{
		right: 16px;
		bottom: 90px;
	}

	.request-item .compare-button img
	{
		max-width: none;
	}

	.request-item-price-buttons
	{
		flex-wrap: wrap;
		align-items: start;
	}

	.tarif-old-price
	{
		margin-right: 12px;
	}

	.tarif-price-button-compare-more
	{
		width: auto;
		position: absolute;
		bottom: 40px;
		left: 16px;
	}

	.tarif-price
	{
		margin-bottom: 50px;
	}

	.compare-button
	{
		display: block;
	}

	.tarif .compare-button-mob
	{
		display: none;
	}

	.tarif-button-more
	{
		right: 16px;
    	bottom: 20px;
	}

	.tarif-important
	{
		width: auto;
		margin: 20px 16px 0;
		display: flex;
		flex-wrap: wrap;

	}

	.tarifs-tabs
	{
		width: calc(100% - 20px);
	}

	.tarif-logo-title
	{
		flex-direction: row;
	}

	.tarif-important-services
	{
		flex-direction: column;
		margin-left: 16px;
		margin-right: 16px;
	}

	.tarif
	{
		padding: 0;
		width: 100%;
		padding-bottom: 140px;
		margin-left: 10px;
		margin-right: 10px;
	}

	.main-providers-cont
	{
		padding: 20px 16px;
		width: auto;
	}

	.main-providers-cont .button-main
	{
		width: 100%;
		padding: 12px 0;
		text-align: center;
	}

	.top-providers-min_max-item
	{
		margin-left: 0;
	}

	.top-providers-min_max-cont
	{
		justify-content: space-between;
		margin: 16px 12px 0px 12px;
	
	}

	.popular-tarifs-subtitle
	{
		margin-left: 12px;
	}

	.top_providers-count-item
	{
		width: 46%;
		text-align: left;
	}

	.top_providers-count
	{
		margin: 12px 12px 0px 12px;
	}

	.popular-tarif-row-quest-cont, .tarif-channels, .tarif-mob-info
	{
		font-size: 14px;
	}

	.popular-tarif-row
	{
		width: 49%;
		display: flex;
		margin-left: 0;
		margin-bottom: 12px;
	}


	.main-providers-cont
	{
		
		flex-direction: column;
	}

	.top_providers-min_max
	{
		flex-direction: column;
	}

	.top_providers-min_max-info
	{
		flex-direction: column-reverse;
		width: 100%;
		margin-bottom: 12px;
		margin-top: 16px;
	}

	.top_providers-name .main-reviews-raiting
	{
		position: absolute;
		right: 0;
		top: -65px;
	}

	.top_providers-name
	{
		flex-direction: column;
		/* position: absolute; */
		/* margin-left: 95px; */
		/* margin-top: -80px; */
		width: auto;
		/* height: 80px; */
		max-height: none;
		justify-content: center;
		text-align: center;
		/* margin-right: 20px;*/
		margin-top: 8px;
	}


	.top_providers-logo
	{
		height: 65px;
		width: 65px;
	}

	.header
	{
		padding: 0;
		margin: 8px 0;
	}

	#header-phone .button-blue
	{
		padding: 0;
		background-color: transparent;
		border: none;
		font-size: 16px;
		color: #1965FD;
		border-radius: 0;
	}
	#header-phone .button-blue svg
	{
		display: none;
	}

	.header-phone-number a
	{
		font-size: 20px;
	}

	.fast-menu-item
	{
		padding: 20px;
	}

	.main-block
	{
		padding: 30px 10px;
		text-align: center;
		border-radius: 24px;
	}

	.search-providers-form button
	{
		margin: 0 4px 8px;
	}

	.search-providers-city
	{
		justify-content: center;
	}

	.main-block-title
	{
		font-size: 32px;
	}

	.menu-mob
	{
		display: block;
		margin-right: 8px;
	}
    .tab-drop-cont
    {
        margin: 0;
        width: 100%;
    }
	
	.provider-header-tabs a
	{
		font-size: 16px;
	}
    
    .tarifs-tab .provider-tab-drop
    {
        position: absolute;
    }
    
    .choose-tarif
    {
        flex-direction: column;
        text-align: center;
    }
    
    .choose-tarif img
    {
        margin-bottom: 20px;
    }
    
    .choose-tarif .h1
    {
        margin-bottom: 12px;
    }
    
    .choose-tarif .search-providers-form
    {
        flex-direction: column;
        align-items: center;
    }
    
    .choose-tarif .search-providers-form input
    {
        max-width: none;
        width: calc(100% - 50px);
    }
    
     .choose-tarif .search-providers-form button
    {
        max-width: none;
        width: calc(100% - 10px);
    }
    
    /* .request-item .compare-button
    {
        position: absolute;
        right: 0;
        top: 16px;
    }
	 */
	.mob-menu-modal
	{
		background-color: white;
		position: fixed;
		overflow: auto;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 999;
	}

	#mob-menu-modal .menu-city
	{
		width: auto;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	#mob-menu-modal .menu-city img
	{
		height: auto;
	}

	#mob-menu-modal .mini-header-city a
	{
		display: flex;
		align-items: center;
	}

	/* #mob-menu-modal .mob-menu-list a
	{
		margin-bottom: 12px;
	} */
	
	.mob-menu-list
	{
		display: flex;
		flex-direction: column;
		line-height: 34px;
		margin: 24px 30px;
		font-size: 18px;
	}

	.mob-menu-list .footer-row
	{
		margin: 0;
	}

	.mob-menu-list .footer-row-column
	{
		margin-top: 0;
		margin-bottom: 20px;
	}


	
	.mob-menu-list .header-phone button
	{
		margin-bottom: 12px;
		width: 100%;
		justify-content: center;
	}
	
	.mob-menu-list a
	{
		color: #000; 
	}
	
	.mob-menu-list .header-phone
	{
		text-align: center;
		margin-top: 20px;
		/* line-height: normal; */
		/* position: absolute; */
		/* width: calc(100% - 60px); */
		margin: 0 0 20px 0;
		display: flex;
		justify-content: left;
	}
	.mob-menu-list .header-phone span
	{
		display: block;
		font-size: 14px;
	}
	
	.mob-menu-list .header-phone a
	{
		font-size: 28px;
		margin-top: 12px;
		margin-left: 0px;
	}
	
	.mob-menu-list-title
	{
		margin: 30px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	.mob-menu-list-title .h1
	{
		margin: 0;
	}
	
	.mob-menu-list-title img
	{
		height: 23px;
	}
	
	.menu-city
	{
		color: #000;
		font-size: 16px;
		display: flex;
		margin: 0 30px 10px 30px;
		font-family: ProMed, sans-serif;
	}
	
	.menu-city img
	{
		margin-right: 12px;
		height: 30px;
		margin-top: 3px;
	}

	.one-sale-cont
	{
		flex-direction: column;
	}
	
	.sale-second-column
	{
		width: 100%;
		margin-top: 20px;
	}
	
	.sale-first-column .one-sale-img
	{
		height: 280px;
	}
	
	.sale-first-column
	{
		width: 100%;
	}
	
	.sad-h1
	{
		margin-top: 50px;
	}
	
	.provider-header-tabs
	{
		flex-wrap: wrap;
		justify-content: space-around;
		margin-top: 0;
		flex-direction: column;
	}
	
	.provider-header-buttons button
	{
		margin-bottom: 8px;
	}
	
	.provider-tab-line
	{
		display: none;
	}
	
	.provider-header-tabs-cont
	{
		border-top: none;
	}

	.provider-header-tabs a
	{
		padding: 16px 20px;
		font-size: 16px;
		border-radius: 0;
		width: calc(100%);
		justify-content: space-between;
		align-items: center;
		border-bottom: 1px solid #E6EDF5;
		border-top: 1px solid #E6EDF5;
	}

    .tarifs-tab
    {
        padding: 0;
        
    }
    
    /* .provider-header-tabs .tab-drop-cont a
    {
        width: auto;
    } */
    
    .provider-header-tabs .provider-tab-drop a
    {
        padding: 5px 20px 5px 32px;
        font-size: 14px;
		background-color: #e8f1f9;
    }
    
    .provider-header-tabs .provider-tab-drop
    {
        position: inherit;
        right: 26px;
        margin-left: 0;
        padding: 0;
        
    }
	
	.tag
	{
		padding: 6px 15px;
	}
	
	.links-line img
	{
		margin-left: 10px;
		margin-right: 10px;
	}
	
	.links-line
	{
		font-size: 12px;
	}
	
	.main-block-img
	{
		display: none;
	}
	
	.mobile-menu-button
	{
		width: 100%;
		position: fixed;
		z-index: 999;
		bottom: 0;
		display: block;
		transition: 0.16s ease-in-out;
	}
	
	.mobile-menu-button.out
	{
		margin-bottom: -100px;
	}
	
	.mobile-menu-button-inside
	{
		width: 80px;
		padding: 18px 35px 18px 35px;
		border-radius: 40px;
		background-color: #7E37E8;
		color: white;
		font-size: 16px;
		font-family: ProMed, sans-serif;	
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto;
		margin-bottom: 26px;
		-webkit-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.35);
		-moz-box-shadow: 0 15px 25px 0 rgba(28,71,158,0.35);
		box-shadow: 0 15px 25px 0 rgba(28,71,158,0.35);
		box-sizing: content-box;
	}

	
	.mobile-menu-button-inside img
	{
		margin-right: 6px;
		height: 20px;
	}
	
	.header-menu-a
	{
		display: none;
	}
	
	
	.header-phone span
	{
		display: none;
	}
	
	.mini-header-more
	{
		display: none;
	}
	
	.header-logo
	{
		display: flex;
		align-items: center;
	}
	
	.header-logo-mob
	{
		display: none;
	}
	
	.header-logo-pc
	{
		display: block;
		width: 130px;
	}
	
	.menu-mob img
	{
		height: 40px;
		min-height: 40px;
		min-width: 40px;
	}

	.main-block-info
	{
		text-align: center;
		margin: 0 auto;
		width: 100%;
	}
	
	.search-providers-steps
	{
		width: 100%;
		
	}
	
	.search-providers-main-block .search-providers-steps-item img
	{
		display: block;
	}
	
	.search-providers-main-block .search-providers-steps-item
	{
		font-size: 12px;
	}
    
    .search-providers-steps-item
    {
       font-size: 12px; 
    }
    
   
	
	.search-providers-main-block
	{
		margin-bottom: 0;
	}
	
	.main-block-cont
	{
		padding-bottom: 0;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	
    .request-item
    {
        flex-wrap: wrap;
    }
    
    .request-item .a-all
    {
        width: 100%;
        margin-top: 10px;
    }
    

	.request-cols
	{
		justify-content: space-between;
		flex-wrap: wrap;
		padding-bottom: 4px;
	}

    .request-item-column
    {
        width: auto;
		margin-bottom: 8px;
    }

    
    .request-item
    {
        position: relative;
    }
    
    /* .request-date
    {
        position: absolute;
        right: 12px;
        bottom: 16px;
        width: auto;
    } */
    
    /* .request-date .request-column-sub
    {
        display: none;
    }
     */
    /* .request-date .request-column-info
    {
        font-size: 12px;
        color: #7D90A6;
    }
	 */
	.h1
	{
		font-size: 32px;
		margin-bottom: 28px;
    	margin-top: 80px;
	}
	
	.type-menu-title
	{
		font-size: 20px;
	}
	
	.type-menu-subtitle
	{
		font-size: 14px;
	}
	
	.type-menu-img-text img 
	{
		width: 45px;
		height: 45px;
	}
	
	.type-menu-item
	{
		padding: 15px;
	}
	
	.cont-blue
	{
		padding: 30px 20px;
	}

	
	/* .tarifs-consultation
	{
		width: 260px;
	} */
	
	.review-consultation
	{
		width: auto;
	}
	
	.top_providers-title-link .h1
	{
		text-align: center;
	}
	
	.main-sales-item-title a
	{
		font-size: 14px;
	}
	
	.main-sales-item-date 
	{
		font-size: 10px;
	}
	
	.main-sales-last-description
	{
		font-size: 14px;
		max-height: 100px;
	}
	
	.main-sales-row
	{
		flex-wrap: wrap;
		justify-content: space-around;
	}
	
	.main-sales-item
	{
		margin-bottom: 20px;
		flex-basis: 43%;
	}
	
	.main-sales-item-img
	{
		height: 165px;
	}
	
	.menu-close
	{
		background-color: #000;
	}
	
	.tarif-guarantee
	{
		flex-direction: column;
		align-items: center;
		width: auto;
	}
	
	.tarif-guarantee-item
	{
		width: 100%;
		max-width: none;
		display: flex;
		flex-direction: row;
		text-align: left;
		padding: 20px;
	}
	
	.tarif-guarantee-img
	{
		width: 20%;
		margin-right: 20px;
	}
	
	.tarif-opisanie-h1
	{
		margin-bottom: 0;
	}
    
    .about-company-item .tarif-guarantee-img
    {
        height: 100px;
        min-width: 100px;
    }
    
    .about-company-item .tarif-guarantee-img img
    {
        width: 100px;
        height: 100px;
    }
    
    .cont-toplug .h1
    {
        margin: 0 0 10px 0;
    }

}


@media screen and (max-width: 700px)
{

	.main-reviews-appraisals-item
	{
		margin-right: 20px;
	}
    .filter-reset span
    {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    
	.filter-sub-title-review
	{
		display: block;
		margin-bottom: 15px;
		margin-top: 10px;
	}
	
	.cont-header-blue-pic
	{
		padding-bottom: 20px;
		margin-left: 0;
		margin-right: 0;
		padding: 20px;
	}
	
	.cont-header-blue-h1
	{
		font-size: 32px;
		text-align: center;
	}
	
	
	.tarifs-items
	{
		justify-content: center;
	}
	
	.write-review-form .entry
	{
		width: calc(100% - 40px);
	}
	
	.write-review-select .filter-dropdown
	{
		width: calc(100% - 40px)!important;
	}
	.score-item
	{
		margin-right: 0;
		max-width: none;
		width: 100%;
	}
	
	.searching-result
	{
		margin-bottom: 0;
	}
	
	.provider-rating
	{
		flex-direction: column;
	}
	
	.rating-count
	{
		width: calc(100% - 20px);
		display: flex;
		align-items: center;
		flex-direction: row-reverse;
		justify-content: space-between;
	}
	
	.rating-count-num
	{
		font-size: 40px;
	}
	
	.rating-count span
	{
		font-size: 22px;
		color: #000;
	}
	
	.provider-rating .provider-full-cont
	{
		width: calc(100% - 40px);
	}
	
	.houses-search
	{
		font-size: 16px;
	}
	
	.top_providers-item .top_providers-logo
	{
		width: 80px;
		height: 80px;
	}
	
	.top_providers-info
	{
		margin-left: 0;
	}
	
	.top_providers-name a
	{
		word-wrap: break-word;
	}
	
	.top-providers-min_max
	{
		justify-content: space-between;
	}
	
	.top-providers-min_max-item
	{
		font-size: 16px;
		
	}
	
	.top_providers-item
	{
		flex-direction: column;
		position: relative;
	}
	
	.popular-tarif
	{
		flex-wrap: wrap;
		padding: 20px;
	}
	
	.popular-tarif-row-options
	{
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
	}
	
	
	
	

	
	.popular-tarif-row-button
	{
		width: 100%;
		text-align: center;
	}
	

	
	.popular-tarifs-tr
	{
		display: none;
	}
	
	
	
	.top_providers-count
	{
		flex-wrap: wrap;
		margin-top: 10px;
	}
	
	.top_providers-count-item
	{
		margin-top: 10px;
	}

	.fast-menu
	{
		flex-wrap: wrap;
		justify-content: center;
		margin-bottom: 10px;
		margin-top: 20px;
	}
	
	.fast-menu a
	{
		width: 48%;
		margin-left: 5px;
		margin-right: 5px;
	}
	
	.fast-menu-item
	{
		width: 100%;
		margin-left: 5px;
		margin-right: 5px;
		margin-bottom: 10px;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		min-height: inherit;
		padding: 16px;
        height: auto;
	}

	.fast-menu-item span
	{
		font-size: 18px;
		text-align: left;
		margin-top: 0;
		margin-left: 10px;
	}
	
	.fast-menu-item img 
	{
		width: 30px;
		margin-right: 12px;
		margin-left: 0;
	}
	
	.type-menu
	{
		
		justify-content: center;
		width: auto;

	}
	
	.type-menu-item
	{
		width: 26%;
		margin-left: 5px;
		margin-right: 5px;
		margin-bottom: 10px;
		
	}
	
	.tarif-opisanie-type
	{
		width: 45%;
		margin-bottom: 0;
	}
	
	.tarif-important-info
	{
		width: 45%;
	}
	
	.type-menu-img-text
	{
		flex-direction: column;
		text-align: center;
	}
	
	.tarif-opisanie-type .type-menu-img-text
	{
		flex-direction: row;
	}
	
	.type-menu-text
	{
		margin-left: 0;
		margin-top: 10px;
	}
	
	.tarif-opisanie-type .type-menu-text
	{
		margin-top: 0;
		margin-left: 10px;
		text-align: left;
	}
	
	.type-menu-subtitle
	{
		margin-bottom: 0;
	}
	
	.main-reviews-appraisals
	{
		flex-wrap: wrap;
	}
	
	.request-column
	{
		justify-content: center;
	}
    
    
	
	.district-list
	{
		column-count: 2;
	}
	
	.tarifs-filter .filter-dropdown
	{
		width: 100%;
	}
	
	.filter-dropdown
	{
		width: 100%;
	}
	
	.tarif-logo-title
	{
		width: 100%;
	}
	
	
	
	.tarif-internet, .tarif-tv, .tarif-mob
	{
		width: 45%;
	}
	
	.review-consultation
	{
		width: calc(100% - 50px);
	}
	
	.write-review-send-filter .filter-dropdown
	{
		margin-top: 20px;
	}
	
	.news-item
	{
		flex-basis: 36%;
	}
	
	.review-filter-dropdowns .filter-dropdown
	{
		margin-left: 0;
		max-width: 100%;
	}
	
	
	.toplug-tarif-scroll-title .tarif-details-item-description
	{
		display: none;
	}
	
	.toplug-tarif-scroll-right .top-providers-min_max-sub
	{
		display: none;
	}
	
	.toplug-tarif-scroll
	{
		flex-direction: column;
		align-items: flex-start;
	}
	
	.toplug-tarif-scroll-title
	{
		margin-left: 40px;
		font-size: 14px;
		margin-bottom: 6px;
		max-width: none;
	}
	
	.toplug-tarif-scroll-left
	{
		width: 55%;
		margin-right: 10px;
	}
	
	.toplug-tarif-scroll-right
	{
		margin-left: 40px;
	}
	
	.toplug-tarif-scroll-right .top-providers-min_max-item span
	{
		font-size: 14px!important;
	}
	
	.toplug-tarif-scroll-right .top-providers-min_max-item
	{
		font-size: 14px!important;
	}
	
	.toplug-tarif-scroll-right button
	{
		position: absolute;
		right: 20px;
		top: 10px;
	}
	
	.toplug-tarif-scroll-left .reviews-logo
	{
		position: absolute;
		min-width: 30px;
		width: 30px;
		height: 30px;
		border-radius: 6px;
	}
	
	.toplug-tarif-scroll-cont
	{
		padding-bottom: 10px;
	}
	
	.toplug-tarif-scroll-right button
	{
		padding: 12px 20px;
		font-size: 12px;
		border-radius: 6px;
	}

	.provider-channels__wrapper {column-count: 2}
}


@media screen and (max-width: 630px)
{
	.streets-columns
	{
		justify-content: space-between;
	}
	
    .tarif-logoname
    {
        display: flex;
        flex-direction: column;
    }
    
    .tarif-opisanie-logoname
    {
        flex-direction: row;
    }

    .streets-column-item
    {
        width: 40%;
    }
    
	.provider-content-news-title-date
	{
		flex-direction: column;
	}
	
	.cont-white
	{
		padding: 20px;
	}
	
	.provider-news-logo
	{
		margin-bottom: 10px;
	}
	
	.reviews-appraisals-item-full
	{
		margin-right: 30px;
		margin-bottom: 15px;
	}
	
	.main-sales-item
	{
		max-width: none;
		
	}
	
	.main-sales-item-img
	{
		height: 130px;
	}
	
}

@media screen and (max-width: 590px)
{
	ol.breadcrumbs > li > a:after {margin-right: 8px; margin-left: 8px}
    .cont-important-opisanie .top_providers-min_max
    {
       justify-content: space-between; 
        flex-wrap: wrap;
    }
    
    .cont-important-opisanie .top-providers-min_max-item
    {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    
    .filter-sort
    {
        overflow-x: scroll;
        white-space: nowrap;
        padding: 5px 0 5px 10px;
    }
    
    .filter-sort::-webkit-scrollbar
    {
        height: 10px; 
    }
    
    
    /* .request-name
    {
        position: absolute;
        width: auto;
        margin-left: 50px;
    } */
    
    /* .request-item
    {
        display: flex;
        padding-bottom: 40px;
        justify-content: flex-start;
        flex-direction: column;
    } */
    
    .request-item .a-all
    {
        position: absolute;
        bottom: 16px;
    }
    
    /* .request-cols
    {
        width: 100%;
        margin-top: 8px;
    }
     */
	.sale-first-column .one-sale-img
	{
		height: 220px;
	}
	
	.news-item
	{
		flex-basis: 100%;
	}
	
	
	.provider-tab
	{
		position: relative;
		
	}
	

	
	.provider-header-info-title
	{
		font-size: 24px;
	}
	
	.provider-header-tabs
	{
		flex-direction: column;
	}
	
	
    
    .provider-header-tabs .tab-drop-cont
    {
        width: 100%;
    }
	
	.provider-header-buttons button
	{
		width: 100%;
		margin-left: 0;
		white-space:pre-wrap;
	}
	
	.provider-header-buttons .button-dark
	{
		padding-top: 0;
		padding-bottom: 0;
		height: 51px;
	}
	
	.review-consultation
	{
		min-width: inherit;
	}
	
	.review-consultation-img-text
	{
		flex-direction: column;
		align-items: center;
		text-align: center;
		margin: 0 auto;
		width: 100%;
		margin-bottom: 10px;
	}
	
	.review-consultation-img-text img
	{
		margin-right: 0;
	}
	
	.review-consultation-form
	{
		flex-direction: column;
		flex-wrap: wrap;
	}
	
	.review-consultation-form .entry
	{
		width: 100%;
		margin-bottom: 8px;
		margin-right: 0;
	}
	
	.review-consultation-form .button-consultation
	{
		width: 100%;
	}
	
	.sales-pic img 
	{
		opacity: 0.5;
		filter: blur(30px) brightness(200%);
		transform: scale(3);
	}
    
    .cont-header-blue-pic span img
    {
        opacity: 0.99;
        filter: none;
        transform: none;
    }
    
    .cont-header-blue-pic span
    {
        opacity: 0.99;
    }
	
	.provider_button_pick-up
	{
		right: 15px;
	}
	
	.houses-search
	{
		flex-wrap: wrap;
		margin-top: 20px;
	}
	
	.entry-home-onstreet, .search-number-house
	{
		width: 100%;
	}
	
	.top_providers-min_max
	{
		justify-content: space-between;
	}
	
	.top_providers-count
	{
		justify-content: space-between;
	}
    
    .top-providers-button
    {
        top: 130px;
        right: calc(50% - 70px);
    }
	
	 .button-search-providers
	{
		width: 100%;
	} 
	
	.main-reviews-item-first
	{
		flex-direction: column;
	}
	
	.main-reviews-item-first .reviews-logo-name
	{
		margin-bottom: 10px;
	}
    
    .main-reviews-item
    {
        padding-left: 16px;
        padding-right: 16px;
    }
	
	.search-providers-form
	{
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.search-providers-form input
	{
		width: 100%;
	}
	
	.main-sales-last-img
	{
		height: auto;
		min-height: 250px;
		max-height: 400px;
		min-width: 100px;
	}
	
	.search-providers-steps-item
	{
		flex-direction: column;
		text-align: center;
	}
	
	.search-providers-steps-item img
	{
		margin-right: 0;
		margin-bottom: 8px;
	}
	
	.back-call-img-h1
	{
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	
	.back-call
	{
		text-align: center;
		margin-left: 0;
	}
	
	.back-call-form
	{
		margin-left: 0;
		max-height: none;
	}
	
	.back-call-form form
	{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.call-back-h1
	{
		margin-top: 10px;
	}
	
	.footer-phone
	{
		align-items: flex-start;
		flex-wrap: wrap;
		margin-top: 20px;
	}

	.footer-city-phone
	{
		margin-left: 10px;
		margin-right: 10px;
		flex-direction: column-reverse;
	}

	.footer-row-column
	{
		margin-right: 20px;
	}
	
	.footer-phone-number span
	{
		margin-bottom: 20px;
	}
	
	.footer-city-phone .button-blue
	{
		width: 100%;
		justify-content: center;
	}
	
	.top-providers-min_max-item
	{
		margin-right: 0;
	}
	
	.write-review-send-filter .button-special
	{
		width: 100%;
	}
	
	.review-select-raiting
	{
		width: 100%;
		justify-content: space-between;
	}
	.cont, .district-list-cont {
		margin-bottom: 90px;
	}
	.cont-blue {
		margin-bottom: 80px;
	}
	.pagination-with-loadmore-wrapper.pages-buttons, .pages-buttons {
		margin-bottom: 90px;
	}

	.provider-tab
	{
		background-color: #f6f9fc;
	}

	.provider-tab-active 
	{
		background-color: #E8F1F9;
	}
}

@media screen and (max-width: 500px)
{

	.cmp-tarif-btn-float
	{
		border-radius: 12px;
	}

	.tarif-details-services--action {
		display: block;
	}
	.tarif-details-services--action .tarif-details-title {
		color: #FB3874;
	}
	.tarif-details-services--action .tarif-details-item {
		border-color: #FB3874;
	}
	.provider-header-logo-cont {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
	}
	.main-reviews-raiting.--show-mobile {
		display: flex;

	}
	.main-reviews-raiting.--hide-mobile {
		display: none;
	}
	.provider-header-logo {
		width: 80px;
		height: 80px;
	}
	.provider-tab-drop a:hover img {
		display: none;
	}
	.tarif_pack img
	{
		margin-right: 20px;
		max-height: 100px;
		align-self: flex-end;
	}
	
	.tarif_pack-title
	{
		font-size: 22px;
	}
	
	.tarif_pack-title a
	{
		margin-top: 20px;
	}
	
	.tarif_pack
	{
		height: auto;
	}
    
     .search-providers-cont .cont-white
    {
        margin-left: 0;
        margin-right: 0;
    }
	
	.back-call-cont-main-info
	{
		flex-direction: column;
	}
	
	.tarif-important-info
	{
		width: calc(100% - 40px);
		margin-bottom: 10px;
	}
	
	.tarif-price-fee
	{
		font-size: 18px;
	}
	
	.review-filter .button-special
	{
		width: 100%;
	}
	
	.searching-item-first 
	{
		margin-right: 0;
	}
	
	.sale-first-column .one-sale-img
	{
		height: 180px;
	}
	
	.tarifs-searching-cont-modal
	{
		margin-left: 0;
		margin-right: 0;
	}
    
    .tarifs-searching-cont-modal span
    {
        margin-left: calc(50% - 70px);
        margin-top: 20px;
    }
	
	/* .tarifs-searching-cont-header .tarif-searching
	{
		display: none;
	} */
    
    .search-providers-adress .tarif-searching
    {
        display: block;
    }
	
	.tarifs-searching-cont .light-button
	{
		width: 100%;
		color: #7E37E8;
		display: none;
		align-items: center;
		justify-content: space-between;
		padding-left: 30px;
		padding-right: 30px;
	}
	
	
	.tarif-searching-item-form
	{
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.entry-home
	{
		margin-left: 0;
	}
	
	.tarif-searching-item-form img
	{
		top: 25px;
		left: 0;
		margin-bottom: 0;
	}
	
	.tarif-searching-item-form .entry
	{
		width: 100%;
		margin-right: 0;
		
	}
	
	.tarif-searching-item-form .button-main
	{
		margin-top: 8px;
		width: 100%;
	}
	
	.main-sales-item
	{
		flex-basis: 70%;
	}
	
	.main-sales-item-img
	{
		height: 170px;
	}
	
	
	.providers-cont-popular-more
	{

		position: relative;
	}
	
	.providers-cont-popular-more .providers-cont-popular
	{
		margin: 0 auto;
		margin-top: 20px;
		margin-bottom: 12px;
	}
	
	.provider_button_pick-up
	{
		position:inherit;
		width: 100%;
		right: 0;
		top: 12px;
	}
	
	.provider-populars-tarifs
	{
		margin-bottom: 0;
	}
	
	.pages-buttons-numbers
	{
		width: 100%;
		justify-content: space-between;
	}
	
	.pages-buttons-active, .pages-buttons-noactive, .pages-dots
	{
		margin-left: 0;
		margin-right: 0;
	}
	
	.header-call-back-mob
	{
		display: none;
	}
	
	.header-call-back-mob-mini
	{
		padding: 0;
		height: 50px;
		width: 50px;
		display: none;
	}
	
	.header-call-back-mob-mini img
	{
		margin: 0 auto;
	}
	
	.fast-menu-cont
	{
		margin-left: 20px;
		margin-right: 20px;
	}

	.fast-menu a
	{
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	
	.fast-menu-arrow
	{
		opacity: 1;
		padding-right: 0;
	}
	
	.fast-menu-item
	{
		padding: 20px;
		padding-right: 50px;
		min-height: 32px;
		margin-bottom: 8px;
	}
	
	
	.type-menu-cont 
	{
		margin-left: 20px;
		margin-right: 20px;
	}
	
	.type-menu
	{
		flex-direction: column;

	}
	
	
	
	.type-menu-item
	{
		width: auto;
		margin-left: 0;
		margin-right: 0;
		position: relative;
	}
	
	.type-menu-img-text
	{
		flex-direction: row;
		text-align: left;
	}
	
	.type-menu-img-text img
	{
		margin-right: 15px;
	}
	
	.type-menu-arrow
	{
		display: block;
		position: absolute;
		right: 25px;
		top: 35px;
		margin: auto 0;
	}
	
	.modal-custom .button-main
	{
		width: 100%;
	}
	
	.tarif-guarantee-item
	{
		flex-direction: column;
		text-align: center;
		align-items: center;
		margin-bottom: 8px;
	}
	
	.tarif-logoname .tarif-logo
	{
		width: 50px;
		min-width: 50px;
		height: 50px;
		min-width: inherit;
		min-height: 50px;
		
	}
	
	.tarif-opisanie-type .type-menu-title
	{
		font-size: 20px;
	}
    
    .request-item-price-buttons
    {
        flex-direction: column;
    }
    
    .about-company-item .tarif-guarantee-img
    {
        margin-bottom: 0;
         width: 130px;
    }
    
    .about-company-item .tarif-guarantee-img img
    {
        width: 100%;
    }
    
     .title-icon-tags
    {
        display: none;
    }
    
    .tarif
    {
        border: 1px solid #C7D8E9;
    }
    
    .tarif-opisanie-h1
    {
        font-size: 26px;
    }
    
    .cont-toplug
    {
        width: auto;
    }
}


@media screen and (max-width: 480px)
{

	.search-providers-form-container .red-button
	{
		width: 100%;
		justify-content: center;
	}
	.mian-providers-list
	{
		margin-left: 10px;
		margin-right: 10px;
	}
	.mian-providers-list-item {
		width: calc(33vw - 30px);
		max-width: initial;
	}
	.mian-providers-list-logo {
		height: 80px;
		width: 80px;
	}
	.mian-providers-list-item a {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
    .choose-tarif img
    {
        height: 140px;
        margin-bottom: 10px;
    }
    
	.header-logo-pc
	{
		width: 100px;
	}
	
	.district-list
	{
		column-count: 1;
	}
	
	.main-sales-last-img
	{
		width: 100%;
		min-height: 150px;
		height: 150px;
		margin-bottom: 10px;
	}
	
	.main-sales-row 
	{
		align-items: center;
		flex-direction: column;
	}
	
	.main-sales-item
	{
		width: 100%;
		
		margin-bottom: 20px;
		margin-left: 0;
		margin-right: 0;
	}
	
	.main-sales-item-img
	{
		margin-bottom: 5px;
	}
	
	.main-sales-item-date
	{
		font-size: 12px;
	}
	
	.main-sales-item-title
	{
		padding-bottom: 10px;
	}
	
	.footer-phone-number a
	{
		font-size: 32px;
	}

	.footer-phone-number
	{
		margin-right: 0;
	}
	
	.tarif-internet, .tarif-tv, .tarif-mob
	{
		width: 100%;
		margin-right: 0;
	}
	
	.main-sales-item
	{
		flex-basis: 87%;
	}
	
	.provider-content-sales-img
	{
		height: 180px;
	}
	.cont-white, .cont, .fast-menu-cont, .top_providers, .header, .mini-header, .tarif-logoname, .links-line
	{
		margin-left: 10px;
		margin-right: 10px;
	}

	.tarif-opisanie
	{
		margin-left: 0;
		margin-right: 0;
	}
}

@media screen and (max-width: 425px)
{
	.tarif_pack
	{
		flex-direction: column;
		justify-content: space-between;

	}
	
	.tarif_pack-title
	{
		margin-left: 20px;
		margin-right: 20px;
		margin-bottom: 20px;
	}
	
	.tarif_pack img
	{
		align-self: auto;
		max-height: 120px;
		margin-top: 0;
	}
	
    .provider-content-news
	{
		margin-left: 0;
		margin-right: 0;
	}
    
     .cont-important-opisanie .top-providers-min_max-item
    {
        width: 100%;
        padding: 12px 16px;
    }
    
    .search-providers-adress span
    {
        flex-direction: column;
        
    }
    
    .search-providers-adress .search-providers-form-cont a
    {
        margin-left: 0;
        margin-top: 10px;
        margin-right: 0;
    }
    
    .sale-first-column .one-sale-img
	{
		height: 120px;
	}
    
    .cont-white
    {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .cont-white, .cont, .fast-menu-cont, .top_providers, .header, .mini-header, .tarif-logoname, .links-line
    {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .tarifs-tags
    {
        overflow-x: scroll;
        flex-wrap: nowrap;
        margin-left: 10px;
        margin-right: 0;
    }
    
    .tag
    {
        white-space: nowrap;
    }
    
    .cont-blue
    {
        padding: 30px 10px;
    }
    
    .request
    {
        margin: 0 10px;
    }
    
    .filter-sort-cont, .filter-sort
    {
        margin-right: 0;
    }
    
    .filter-reset span
    {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
     .filter-reset span a
    {
        margin-left: 0;
        margin-top: 12px;
    }
    
    .filter-sort a
    {
        padding: 5px 12px;
    }

    .more-info-tag
    {
        overflow: inherit;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-left: 0;
    }
    
     .more-info-tag a
    {
        font-size: 14px;
        padding: 12px 16px;
        width: 100%;
        margin-right: 0;
        
    }
    
    .tarif-opisanie-logoname
    {
        flex-direction: column;
        text-align: left;
    }

	.tarifs-searching-cont
	{
		margin: 0 20px;
	}

	.modal-content .tarifs-searching-cont .h1
	{
		margin: 0;
	}

	.modal-content .tarifs-searching-cont
	{
		margin: 0;
	}
    
    .tarif-opisanie-h1
    {
        margin-bottom: 8px;
        margin-top: 10px;
    }
    
    .cont-toplug
    {
        padding: 20px;
    }
	
	.toplug-tarif-scroll
	{
		margin-left: 10px;
		margin-right: 10px;
	}
	
	.toplug-tarif-scroll-left .reviews-logo
	{
		display: none;
	}
	
	.toplug-tarif-scroll-title, .toplug-tarif-scroll-right
	{
		margin-left: 0;
	}
    
	.toplug-tarif-scroll-right button
	{
		right: 10px;
	}
	
    .toplug-tarif-scroll-left
	{
		max-width: 50%;
	}
    
}


.more-address .infoblock a:hover {
	text-decoration: underline;
}.more-address .infoblock.--columns a {width: 100%}
.more-address .infoblock.--columns {columns: 5}
.warning{color:#000;background:#fff4d4;position:relative;padding: 20px 30px 20px 70px;margin:16px 0;}.warning:before{font-family:FontAwesome;content:"\f06a";color:#f58128;font-size:30px;position:absolute;top:50%;left:20px;margin-top:-15px;}
.check{color:#000;background:#def9e5;position:relative;padding: 20px 30px 20px 70px;margin:16px 0;}.check:before{font-family:FontAwesome;content:"\f058";color:#34bc58;font-size:30px;position:absolute;top:50%;left:20px;margin-top:-15px;}
#selectCity {position: absolute;overflow: auto}
#selectCity .modal-dialog {max-width: 100%;min-height: 100vh;margin: 124px auto 0}
#selectCity .modal-content {min-height: 100vh}
#selectCity .modal-header {border: none;display: block;
position: relative;}
#selectCity .modal-content .container {padding-left: 0; padding-right: 0;}
#selectCity .modal-title {font-size: 32px; font-weight: 300;color: #000; display: inline}
#selectCity .modal-title .city-label {color: #7E37E8;white-space: nowrap}
#selectCity .close {    
	padding: 0;
    outline: none;
    position: absolute;
	right: 0px;
    top: 0px;
	padding: 12px;
}


.modal-city-title-search
{
	display: flex;
	justify-content: space-between;
	margin-right: 40px;
}

.city-modal__search {
	width: 520px;
	position: relative;
}
.city-modal__search input {
	border: 2px solid #E6EDF5;
	border-radius: 99px;
	color: #000;
	padding: 16px 25px;
	width: 100%;
}

.city-modal__search input::placeholder {
	color: #7D90A6;
}
.city-modal__search-icon 
{
	position: absolute; 
	top: 16px; 
	right: 22px;
}

.city-modal__radio {
	margin: 8px 2px;
	display: inline-block;
	width: 50%;
    text-align: center;
    text-transform: uppercase;
}
.city-modal__radio:nth-of-type(2) {
	margin-left: 46px;
}
.city-modal__radio-label {font-size: 18px;font-weight: 500;cursor: pointer;
padding: 4px;}
.city-modal__radio input[type="radio"] {
	position: absolute;
	opacity: 0;
}
.city-modal__radio input[type="radio"] + .city-modal__radio-label {
	color: #000;
}
.city-modal__radio input[type="radio"] + .city-modal__radio-label:before {
	
	content: "";
	background: #fff;
	border-radius: 100%;
	border: 2px solid #7D90A6;
	display: none;
	width: 16px;
	height: 16px;
	position: relative;
	top: 2px;
	margin-right: 8px;
	vertical-align: top;
	cursor: pointer;
	text-align: center;
	-webkit-transition: all 250ms ease;
	transition: all 250ms ease;
}

.city-modal__radio input[type="radio"]:checked + .city-modal__radio-label {
	color: #7E37E8;
	width: 100%;
    border: 1px solid #7E37E8;
}

.city-modal__radio
{
	background-color: #F6F9FC;
}

.city-modal__radio input[type="radio"]:disabled
{
	border: 1px solid #c50c15;
}

.city-modal__radio input[type="radio"]:checked + .city-modal__radio-label:before {
	display: none;
	background-color: #000;
	border-color: #000;
	box-shadow: inset 0 0 0 2.5px #fff;
}
.city-modal__radio input[type="radio"]:focus + .city-modal__radio-label:before {
	outline: none;
	border-color: #000;
}
.city-modal__radio input[type="radio"]:disabled + .city-modal__radio-label:before {
	box-shadow: inset 0 0 0 2.5px #f4f4f4;
	border-color: #b4b4b4;
	background: #b4b4b4;
}
.city-modal__radio input[type="radio"] + .city-modal__radio-label:empty:before {
	margin-right: 0;
}
.city-modal__filter {
	margin-top: 22px;
	display: flex;
}
.city-modal__letters {
	margin-top: 7px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border: 2px solid #E6EDF5;
    border-radius: 12px;
}
.city-modal__letters.--type2 {
	display: none;
}
.city-modal__letter {
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    padding: 12px;
    border-right: 2px solid #E6EDF5;
    min-width: 40px;
}
.city-modal__letter:hover {
	color: #7E37E8;
}
.city-modal__letter:last-of-type {

	border-right: none;
}
.city-modal__letter.--active {
	color: #7E37E8;
}
.city-modal__columns {
	display: flex;
	margin-top: 12px;
	padding-left: 2px;
}
.city-modal__columns.--type2 {
	display: none;
}
.city-modal__column {
	width: 33%;
}
.city-modal__column-block {
	margin-bottom: 30px;
}
.city-modal__city-list > li > .city-modal__city-link {
	font-size: 16px;
    font-family: ProReg;
}
.city-modal__city-list > li.--bold > .city-modal__city-link {
	font-weight: 300;
    font-size: 18px;
    font-family: 'ProMed';
}
.city-modal__city-list > li > .city-modal__city-link:hover {
	color: #7E37E8
}
.city-modal__columns.--type2 .city-modal__city-list > li > .city-modal__city-link {
	color: #000;
}
.city-modal__columns.--type2 .city-modal__city-list > li > .city-modal__city-link:hover {
	color: #7E37E8
}

.city-modal__city-list.--popular > li > .city-modal__city-link:hover {
	color: #7E37E8!important
}
.city-modal__city-list > li {
	margin-bottom: 9px;
	display: block;
}
.city-modal__state-list > li > .ahref {
	font-size: 16px;
	color: #000;
	font-weight: 500;
	cursor: pointer;
}

.city-modal__state-list > li > .ahref::before
{
	content: '+';
	color: #7E37E8;
	margin-right: 8px;
	font-size: 18px;
}

.city-modal__state-list > li > .ahref:hover {
	color: #7E37E8;
	cursor: pointer;
}
.city-modal__column-block-title {
	margin-bottom: 16px;
	font-size: 32px;
}
.city-modal__state-list li {
	margin-bottom: 12px;
    display: block;
    border-bottom: 1px solid #C7D8E9;
    padding-bottom: 12px;
    margin-right: 30px;
}

.city-modal__city-list > li
{
	border: none;
    margin-bottom: 12px;
    padding: 0;
    margin-left: 0px;
    border-bottom: 1px solid #C7D8E9;
    padding-bottom: 12px;
    margin-right: 42px;
}

/* .city-modal__state-list > li > .ahref:after {
	content: " ";
	border: solid #000;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	transform: rotate(45deg) translateY(-4px);
	-webkit-transform: rotate(45deg) translateY(-4px);
	margin-left: 10px;
	margin-top: 1px;
	cursor: pointer;
}  */

.city-modal__state-list > li > .city-modal__city-link:hover:after {
	border-color: #5396ff;
}
.city-modal__state-list li > ul.city-modal__city-list {
	display: none;
}
.city-modal__state-list li.--expand > ul.city-modal__city-list {
	display: block;
	margin-left: 12px;
	margin-top: 12px;
}

/* .city-modal__state-list li.--expand + .city-modal__state-list .ahref::before
{
	content: '-';
} */

.city-modal__state-list li.--expand > .city-modal__city-link {
	color: #5396ff
}
.city-modal__state-list li.--expand > .city-modal__city-link:after {
	border-color: #5396ff;
	transform: rotate(-135deg) translateY(-2px);
	-webkit-transform: rotate(-135deg) translateY(-2px);
}
.city-modal__city-link {cursor: pointer}
#city-modal__search-suggestions {margin-top: -10px}
#city-modal__search-suggestions .autocomplete-suggestions {
		border-radius: 12px;
		padding: 0;
		box-shadow: none;
		background-color: #e8f1f9;
}
#city-modal__search-suggestions .autocomplete-suggestion {padding-left: 56px;padding-bottom: 6px;padding-top: 6px;font-size: 14px;cursor: pointer}
#city-modal__search-suggestions .autocomplete-no-suggestion {padding-left: 56px;padding-bottom: 10px;padding-top: 10px;font-size: 14px}
#city-modal__search-suggestions .autocomplete-selected { background: #c7d8e9; color: #000;}
.autocomplete-bold {font-weight: 700}
.autocomplete-state {font-size: 12px;padding-top: 4px}
@media screen and (max-width: 768px) {
	.more-address .infoblock.--columns {columns: 3}
}
@media screen and (max-width: 575px) {
	/* #selectCity .modal-content .container {padding-left: 16px; padding-right: 16px} */
	#selectCity .modal-dialog {margin-top: 0.5rem}
	.city-modal__columns {flex-direction: column}
	.city-modal__column {width: 100%}
	/* #selectCity .modal-header {padding-left: 4px} */
	/* #selectCity .close { 

		position: absolute;
		right: -30px;
		top: -30px;
		padding: 1rem;
	} */

	.city-modal__search.--float input {
		box-shadow: 10px 20px 15px rgba(0, 0, 0, 0.1);
	}
	.city-modal__search.--float {
		position: fixed;
		top: 16px;
		right: 16px;
		left: 16px;
		width: calc(100% - 32px);
		z-index: 1000;
	}
	.city-modal__filter.--float {margin-top: 82px}
	.more-address .infoblock.--columns {columns: 2}
}
@media screen and (max-width: 395px) {
	.city-modal__radio {display: block}
	.city-modal__radio:nth-of-type(2) {
		margin-left: 2px;
	}
}
@media screen and (max-width: 375px) {
	#selectCity .modal-content .container {padding-left: 8px; padding-right: 8px}
	.more-address .infoblock.--columns {columns: 1}
}
#compareTarifs {position: absolute;overflow: auto}
#compareTarifs .modal-dialog {max-width: 100%;min-height: 100vh;margin: 126px auto 0}
#compareTarifs .modal-content {min-height: 100vh}
#compareTarifs .modal-header {border: none;padding-right: 4px}
#compareTarifs .modal-content .container {padding-left: 30px; padding-right: 0; padding-top: 27px}
#compareTarifs .modal-title {font-size: 26px; font-weight: 700;color: #000;padding-left: 2px}
#compareTarifs .close {padding: 0; margin: 4px -12px;outline: none;}
.table-tarifs-compare{width: calc(100% - 200px);border: none;margin-top: -16px;border-collapse: separate!important;border-spacing: 4px 10px;margin-left: 208px;}
.table-tarifs-compare::-webkit-scrollbar {
	height: 3px;
	width: 3px;
}
.table-tarifs-compare::-webkit-scrollbar-track {
	background-color: #fff;
}
.table-tarifs-compare::-webkit-scrollbar-thumb {
	background-color: #c5c5c5;
	outline: 1px solid #c5c5c5;
}
.table-tarifs-compare.--noscroll::-webkit-scrollbar {
	height: 3px;
}
.table-tarifs-compare.--noscroll::-webkit-scrollbar-track {
	background-color: #fff;
}
.table-tarifs-compare.--noscroll::-webkit-scrollbar-thumb {
	background-color: #fff;
	outline: 1px solid #fff;
}
.table-tarifs-compare td, .table-tarifs-compare tr{border: none}
.table-tarifs-compare td {padding-top: 5px;padding-bottom: 5px; min-width: 220px;max-width: 220px;padding-left: 29px;line-height: 12px;}
.table-tarifs-compare td:first-child{min-width: 200px;max-width: 200px;padding-left: 17px}
.table-tarifs-compare tr.tarif-data td {padding-top: 9px;padding-bottom: 9px;font-weight: 500;letter-spacing: -.35px;font-size: 14px;line-height: 16px}
.table-tarifs-compare tr.caption td {font-size: 16px;font-weight: 600;letter-spacing: -.4px;padding-top: 18px;padding-bottom: 22px;}
.table-tarifs-compare tr.caption.--topmargin td {padding-top: 38px;}
.table-tarifs-compare tr.--gray td {background-color: #f9f9f9!important;}
.table-tarifs-compare .headcol {
	position: absolute;
	width: 200px;
	left: 19px;
	top: auto;
}
.table-tarifs-compare_img img {
	width: auto;
	display: block;
	max-height: 100%;
	object-fit: contain;
	height: 63px; max-width: 63px;
	border: 1px solid #c5c5c5;
	border-radius: 9.5px;
	padding: 8px;
}
.table-tarifs-compare_img:hover img {
	border: 1px solid #007bff;
}
.table-tarifs-compare__provider {
	letter-spacing: -.35px;
	color: #007bff;
	font-size: 14px;
	font-weight: 400;
	margin-top: -8px;
}
.table-tarifs-compare__provider:hover {
	color: #003166;
}
.table-tarifs-compare__name {
	letter-spacing: -.35px;
	color: #000;
	font-size: 14px;
	font-weight: 600;
}
.table-tarifs-compare__price {
	letter-spacing: -.35px;
	color: #000;
	font-size: 14px;
	font-weight: 500;
	margin-top: 4px;
}
.fa-arrow-circle-left, .fa-arrow-circle-right {
	color: #c5c5c5;
	width: 26px;
	height: 26px;
	position: absolute;
	cursor: pointer;
}
.fa-arrow-circle-left:hover, .fa-arrow-circle-right:hover {
	color: #000;
}
.fa-arrow-circle-left {
	left: 121px;
	top: 34px;
}
.fa-arrow-circle-right {
	right: -6px;
	top: 34px;
}
.table-tarifs-compare__removeall {
	letter-spacing: -.35px;
	color: #007bff;
	font-size: 14px;
	font-weight: 600;
	margin-top: 16px;
	display: block;
}
.tarif-compare-btn-remove {
	font-weight: 500;
	letter-spacing: -.35px;
	color: #7a7a7a;
	font-size: 14px;
	margin: 16px auto;
	text-align: center;
	display: block;
}
.tarif-compare-btn-remove:hover {
	color: #000;
}
#compareTarifs .tarif-data .btn.btn-primary {
	border-radius: 10px;font-size: 14px;height: 45px;width: 180px
}
.tarifs-compare-dots {display: none}
@media screen and (max-width: 768px) {
	.tarifs-compare-dots {display: flex; justify-content: center; align-items: center;margin-top: -16px;margin-bottom: 24px;}
	.tarifs-compare-dots__dot {border-radius: 50%; border: 1px solid #000; height: 6px; width: 6px; margin: 2px;}
	.tarifs-compare-dots__dot.active {background: #000}
	.cmp-tarif-btn-float {
		bottom: 0px;
		left: 0;
		font-size: 14px;
		height: 16px;
		width: 100%;
		display: none;
		align-items: center;
		justify-content: center;
		padding: 0;
		padding: 12px 0;
		border-radius: 0;
		border: none;
	}
	#compareTarifs .modal-content .container {padding-left: 0}
	.table-tarifs-compare tr.tarif-data td {font-size: 10px;font-weight: 600;letter-spacing: -.25px;}
	.table-tarifs-compare .headcol {width: auto;right: 19px;left:19px;font-size: 10px;font-weight: 500;letter-spacing: -.25px;color: #9c9c94;}
	.table-tarifs-compare {margin-left: 0; width: 100%}
	.fa-arrow-circle-left,.fa-arrow-circle-right{display: none}
	.table-tarifs-compare.--noscroll .headcol{display: none}
	.table-tarifs-compare.--noscroll {text-align: center}
	.table-tarifs-compare.--noscroll td {line-height: 10px;}
	.table-tarifs-compare tr.caption td.headcol{text-align: center;font-size: 12px;font-weight: 600;letter-spacing: -.3px;color: #000}
	.table-tarifs-compare tr.--gray td {
		background-color: #fff!important;
	}
	.table-tarifs-compare td {min-width: 30vw;max-width: 30vw; padding: 4px}
	.table-tarifs-compare_img img {width: 48px;height: 48px;margin: 0 auto}
	.table-tarifs-compare__provider,.table-tarifs-compare__name,.table-tarifs-compare__price {font-size: 10px;letter-spacing: -.25px;}
	#compareTarifs .action-label {background: #fff; font-size: 10px;font-weight: 500;color: #f53da1}
	.table-tarifs-compare tr.tarif-data:not(.caption) td:not(.headcol) {padding-top: 36px;}
	.table-tarifs-compare tr.tarif-data td.headcol {padding: 9px 4px;min-height: 36px!important;}
	.table-tarifs-compare tr.caption td {padding-top: 32px; padding-bottom: 8px;}
	.table-tarifs-compare__removeall,.tarif-compare-btn-remove {font-size: 12px;letter-spacing: -.3px;}
	#compareTarifs .tarif-data .btn.btn-primary {
		font-size: 12px;
		width: auto; 
		background: #fff; 
		color: #007bff; height: auto; border: none;
	}
	#compareTarifs .tarif-data .btn.btn-primary:hover {
		background: #fff; color: #0069d9;
	}
	td.headcol.table-tarifs-compare__removeall-wrap {bottom: 16px;}
	.table-tarifs-compare::-webkit-scrollbar {
		height: 3px;
	}
	.table-tarifs-compare::-webkit-scrollbar-track {
		background-color: #fff;
	}
	.table-tarifs-compare::-webkit-scrollbar-thumb {
		background-color: #fff;
		outline: 1px solid #fff;
	}
	#compareTarifs .modal-title {font-size: 18px;}
	.table-tarifs-compare td:first-child {min-width: 80vw}
}
@media screen and (max-width: 575px) {
	#compareTarifs .modal-content .container {padding-left: 16px; padding-right: 16px}
	#compareTarifs .modal-dialog {margin-top: 1.5rem}
	#compareTarifs .modal-header {padding-left: 4px}
	#compareTarifs .close {    position: absolute;right: 16px;top: 10px}
	.table-tarifs-compare td {min-width: 27vw;max-width: 27vw}
}
@media screen and (max-width: 375px) {
	#compareTarifs .modal-content .container {padding-left: 8px; padding-right: 8px}

	.header-phone-number a
	{
		font-size: 16px;
	}
}
.steps-line {display: flex;width: 100%;justify-content: flex-start}
.steps-line__step {flex:1;display: flex;justify-content: flex-start;align-items: center}
.steps-line__step-line {background:#d4d4d4;height: 2px;width: calc(50% - 9px);}
.steps-line__step-num {
	background-color: #ffffff;
	border-radius: 50%;
	border: 1px solid #d4d4d4;
	width: 18px;
	height: 18px;
	overflow: hidden;
	font-weight: 500;
	color: #757575;
	font-size: 14px;
	text-align: center;
	vertical-align: middle;
	line-height: 16px;
}
.steps-line__step.active .steps-line__step-line {background: #fea733}
.steps-line__step.active .steps-line__step-num {border: 1px solid #fea733;color:#000}
.steps-container {margin-top: 24px}
.steps-page {display: none;flex-direction: column; justify-content: flex-start}
.steps-page.active {display: flex}
.steps-page__title {font-size: 16px;font-weight: 700;color: #000;margin-bottom: 10px}
.steps-page__subtitle {font-weight: 500;color: #757575;margin-bottom: 12px;font-size: 14px}
.steps-page__content {margin-top: 8px}
.modal.podbor_tarifs_modal .modal-dialog {
	background-color: #ffffff;
	border-radius: 10px;
	min-width: 760px;
	min-height: 630px;
	overflow: hidden;
}
.podbor_tarifs_modal .modal-body {min-height: 432px;}
.podbor_tarifs_modal .container {padding: 30px 40px}
.podbor_tarifs_modal .modal-header {padding-bottom: 0;border: none}
.podbor_tarifs_modal .modal-title {font-size: 22px;font-weight: 600;color: #000;margin-bottom: 10px}
.podbor_tarifs_modal .modal-subtitle {font-size: 14px;font-weight: 500;color: #757575;margin-bottom: 10px;padding: 0 16px}
.podbor_tarifs_modal .modal-footer {display: flex;justify-content: space-between;align-items: center;border: none}
.podbor_tarifs_modal .modal-footer-left {visibility: hidden;font-weight: 600;color: #0175eb;font-size: 14px;flex:1;text-align: left;white-space: nowrap}
.podbor_tarifs_modal .modal-footer-left > img {margin-right: 10px}
.podbor_tarifs_modal .modal-footer-center {font-weight: 600;font-size: 14px;color: #000;flex:1;text-align: center}
.podbor_tarifs_modal .modal-footer-right {flex:1;text-align: right;position: relative}
.podbor_tarifs_modal .modal-footer-right .skip-text {position: absolute; right: 5px;top: -36px;display: none;font-size: 12px;font-weight: 500;font-style: italic;color: #757575;}
.podbor_tarifs_modal .modal-submit {
	background: #0175eb;
	border-radius: 10px;
	overflow: hidden;
	font-weight: 500;
	color: #ffffff;
	padding: 16px 32px;
	font-size: 14px;
}
.podbor_tarifs_modal .modal-submit.skip {
	display: none;
	background: #fff;
	color: #0175eb;
	border: 1px solid #0175eb;
	font-weight: 500;
}
.podbor_tarifs_modal .order-call_checkbox {
	display: flex;
	align-items: center;
	margin-top: 3px;
}
.podbor_tarifs_modal .modal-footer-right.last-step {display: none;justify-content: space-between}
.podbor_tarifs_modal .order-call_checkbox label {font-size: 12px;text-align: left}
.podbor_tarifs_modal .order-call_checkbox input {margin-left: -48px;margin-right: 4px; width: 12px!important; height: 14px!important;}
.step1-modal-list {display: flex;justify-content: flex-start}
.step1-modal-list__item {
	border-radius: 9px;
	width: 150px;
	height: 174px;
	overflow: hidden;
	margin-right: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	cursor: pointer;
	position: relative;
}
.step1-modal-list__item:nth-child(1) {border: 1px solid #0175eb;}
.step1-modal-list__item:nth-child(2) {border: 1px solid #f41b92;}
.step1-modal-list__item:nth-child(3) {border: 1px solid #fea733;}
.step1-modal-list__item .title {font-size: 16px;font-weight: 700;text-transform: uppercase;display: flex;flex-direction: column;justify-content: space-around; align-items: center;}
.step1-modal-list__item .label {font-size: 12px;font-weight: 500;opacity: 0.7;text-transform: capitalize; margin-bottom: 8px}
.step1-modal-list__item .price {margin-top: 8px;margin-bottom: 16px}
.step1-modal-list__item > svg {margin-top: 16px}
.step1-modal-list__item .radio-box > svg {display: none}
.step1-modal-list__item .radio-box.active > svg {display: block}
.step1-modal-list__item .radio-box {
	border-radius: 50%;
	width: 16px;
	height: 16px;
	overflow: hidden;
	position: absolute;
	top: 16px;
	right: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.step1-modal-list__item:nth-child(1) .radio-box {border: 1px solid #0175eb;}
.step1-modal-list__item:nth-child(2) .radio-box {border: 1px solid #f41b92;}
.step1-modal-list__item:nth-child(3) .radio-box {border: 1px solid #fea733;}
.step1-modal-list__item:nth-child(1) .radio-box.active {background: #0175eb;}
.step1-modal-list__item:nth-child(2) .radio-box.active {background: #f41b92;}
.step1-modal-list__item:nth-child(3) .radio-box.active {background: #fea733;}
.step2-modal-list {display: flex;justify-content: space-between}
.step2-modal-list__item {display: flex;justify-content: flex-start;flex-direction: column; flex: 1 0 50%}
.podbor_tarifs_modal .checkbox label {font-weight: 600;font-size: 14px; color: #000;vertical-align: middle;vertical-align: middle;max-width: 90%}
.podbor_tarifs_modal .checkbox {margin: 10px 0;display: flex}
.podbor_tarifs_modal .checkbox input {
	border-radius: 1.5px;
	border: 1px solid #707070;
	width: 14px;
	height: 14px;
	vertical-align: middle;
	margin-right: 10px;
}
.podbor_tarifs_modal .text-input {
	color: #000;
	font-weight: 500;
	font-size: 14px;
	background: #ffffff;
	border-radius: 7.5px;
	border: 1px solid #cbcbcb;
	width: 100%;
	overflow: hidden;
	padding: 16px 25px;
}
.podbor_tarifs_modal .text-input::placeholder {
	color: #a1a1a1;
}
.podbor_tarifs_modal textarea.text-input {
	min-height: 156px;
}
.podbor_tarifs_modal .required {position: relative}
.podbor_tarifs_modal .required::after {
	content: '*';
	font-size: 16px;
	font-weight: 600;
	color: #ff6464;
	position: absolute;
	top: 16px;
	right: 24px;
}
.podbor_tarifs_modal select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	background: url(/assets/images/arrow_select.svg) top 20px right 20px no-repeat!important;
}
.steps-page.step3 .steps-page__content {
	display: flex;flex-direction: row; justify-content: space-between;flex-wrap: wrap;
}
.steps-page.step3 .steps-page__content select {width: 284px}
.steps-page.step3 .steps-page__content input[type="text"] {width: 348px;}
.steps-page.step5 .price-month, .steps-page.step5 .speed_bytes {
	max-width: 332px;
}
.steps-page.step5 .price-month label, .steps-page.step5 .speed_bytes label {
	font-weight: 600;font-size: 14px;color: #000;padding: 0;margin-bottom: 0!important;
}
.steps-page.step5 .col-form-label {padding: 0;margin-bottom: 24px;margin-top: -8px}
.steps-page.step5 .irs-single {font-size: 12px;font-weight: 500;color: #757575;background: none;margin-top: 6px;display: block!important;}
.steps-page.step5 .irs-line {
	background-color: #d4d4d4;
	border-radius: 3px;
	height: 6px;
}
.steps-page.step6 .steps-page__content {
	display: flex;flex-direction: row; justify-content: flex-start;flex-wrap: wrap;
}
.steps-page.step6 .steps-page__content input[type="text"] {margin-right: 8px;width: 184px;}
.steps-page.step6 .steps-page__content input[type="text"]:first-of-type {width: 328px}
.steps-page__title.second {margin-top: 20px}
.steps-page__content__flex-hor {display: flex;flex-direction: row; justify-content: flex-start;flex-wrap: wrap;}
.steps-page__content__flex-hor input.text-input {margin-right: 8px;width: 267px;}
.steps-page__content__flex-hor input.text-input:first-of-type {width: 225px;}
.steps-page__content__title {font-weight: 600;color:#000;font-size: 14px;margin-top: 16px;margin-bottom: 8px}
.podbor_tarifs_modal .radio label {font-weight: 600;color:#000;font-size: 14px;margin-top: 8px;vertical-align: middle}
.podbor_tarifs_modal .radio input {margin-right: 8px;margin-top: 8px;vertical-align: middle}
.steps-page__content__flex-hor.--consultation-inputs {display: none;margin-top: 16px}
.steps-page__content__flex-hor.--consultation-inputs input.text-input {margin-right: 8px;width: 120px;}
.steps-page__content__flex-hor.--consultation-inputs input.text-input:first-of-type {width: 120px;}
.steps-page__content__title.--round-border {border-radius: 4.5px;border: 1px solid #fea733;padding: 4px 6px;display: inline-block}
.steps-page__content__text {font-size: 12px;font-weight: 500;color: #757575;line-height: 14px}
.podbor_tarifs_modal .text-input.--date {
	padding-left: 42px;
	background: url(/assets/images/date.svg) top 16px left 14px no-repeat
}
.podbor_tarifs_modal .text-input.--time {
	padding-left: 42px;
	background: url(/assets/images/times.svg) top 16px left 14px no-repeat
}
.podbor_tarifs_modal .mobile-only {display: none}
@media screen and (max-width: 767px) {
	.podbor_tarifs_modal .modal-dialog {min-width: auto; max-width: 100%}
	.podbor_tarifs_modal .container {padding: 10px 5px;}
	.step1-modal-list {flex-direction: column}
	.step1-modal-list__item {margin-right: 0;margin-left: 0; margin-bottom: 16px;width: 100%;height: 134px}
	.podbor_tarifs_modal .modal-footer-center {display: none!important;}
	.step2-modal-list {flex-direction: column}
	.step2-modal-list__item {margin-right: 0; width: 100%}
	.podbor_tarifs_modal .text-input {width: 100%; margin-bottom: 16px}
	.steps-page.step3 .steps-page__content select {width: 100%}
	.steps-page.step6 .steps-page__content input[type="text"] {width: 100%}
	.steps-page__content__flex-hor input.text-input {width: 100%;}
	#steps-page__yandex_map {max-width: 100%}
	.podbor_tarifs_modal .mobile-only {display: flex;margin-top: 16px}
	.modal-footer-right.last-step .order-call_checkbox {display: none!important;}
	.podbor_tarifs_modal .order-call_checkbox input {margin-left: auto}
	.podbor_tarifs_modal .modal-footer-right.last-step {justify-content: flex-end}
	.podbor_tarifs_modal .modal-submit {font-size: 12px; padding: 8px 16px}
	.steps-page__title {font-size: 14px}
	.podbor_tarifs_modal .modal-title {font-size: 20px}
	.podbor_tarifs_modal .modal-subtitle {font-size: 12px}
	.podbor_tarifs_modal .modal-footer-left {font-size: 12px}
	.podbor_tarifs_modal .modal-footer-center {font-size: 12px}
	.podbor_tarifs_modal .modal-footer-right .skip-text {font-size: 10px; top: -26px}
	.step1-modal-list__item .title {font-size: 14px}
	.step1-modal-list__item .label {font-size: 10px}
	.podbor_tarifs_modal .checkbox label {font-size: 12px}
	.podbor_tarifs_modal .text-input {font-size: 12px}
	.steps-page__content__title {font-size: 12px}
	.podbor_tarifs_modal .radio label {font-size: 12px}
	.steps-page__content__text {font-size: 10px;line-height: 12px}
	.steps-page__subtitle {font-size: 12px}
	.podbor_tarifs_modal .order-call_checkbox label {font-size: 10px}
	.steps-page.step5 .price-month, .steps-page.step5 .speed_bytes {max-width: 260px}
	.steps-page.step5 .irs-single {margin-left: 10px}
	.steps-page.step5 .irs-single:after {content: none}
}
@media screen and (max-width: 340px) {
	.steps-page__content__flex-hor.--consultation-inputs input.text-input {width: 100%!important;}
	.header-phone a
	{
		margin-left: 0;
	}
}


.switch {
	border-radius: 99px;
	width: 30px;
	height: 16px;
	background-color: #7D90A6;
	position: relative;
	cursor: pointer;
	transition: 0.2s;
	display: inline-block;
}
.switch:hover .slider-btn:before
{
	left: 4px;
	transition: 0.2s;
}
.switch:hover input:checked + .slider-btn:before {
	left: 0;
	transition: 0.2s;
}
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.slider-btn {
	float: right;
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #7D90A6;
	-webkit-transition: .2s;
	transition: .2s;
}
.slider-btn:before {
	position: absolute;
	content: "";
	height: 12px;
	width: 12px;
	left: 2px;
	bottom: 2px;
	background-color: white;
	-webkit-transition: .2s;
	transition: .2s;
	border-radius: 99px;
}
input:checked + .slider-btn {
	background-color: #7E37E8;
}
input:checked + .slider-btn:before {
	-webkit-transform: translateX(14px);
	-ms-transform: translateX(14px);
	transform: translateX(14px);
}
.slider-btn.round {
	border-radius: 99px;
}
.slider-btn.round:before {
	border-radius: 50%;
}
.tarif-row {width: 100%;box-sizing: border-box}
.tarif-row.hide {
	display: none;
}
.tarif-row.show {
	display: flex;
}
.provider-warning-card {padding: 20px 0 10px}
.provider-warning-card__item {display: flex;background-color: #ffffff;border-radius: 10px;width: 100%;padding: 20px}
.provider-warning-card__icon {margin-right: 16px}
.provider-warning-card__body {display: flex;flex-direction: column;align-items: flex-start;justify-content: flex-start}
.provider-warning-card__title {color: #182026;font-size: 14px;font-weight: 700}
.provider-warning-card__text {color: #182026;font-size: 12px;font-weight: 500;line-height: 17px}
.loading-info {
	display: flex;
	justify-content: center;
	padding-top: 16px;
}
.modal--any-width .modal-dialog {
	max-width: 90vw;
}
.modal-header, .modal-footer {
	border: none;
}
.modal-title {
	font-family: ProMed, sans-serif;
	font-size: 32px;
	width: 100%;
	margin-right: 20px;
	display: inline-block;
	line-height: normal!important;
}
.provider-modal-form__label, .provider-modal-form, .provider-modal-form__bottom-text {
	font-size: 14px;
	margin-bottom: 10px;
}
.provider-modal-form {
	margin-top: 30px;
	margin-bottom: 20px;
}

.provider-modal-form__row {
	display: flex;
	flex-direction: row;
	justify-content: left;
}




.provider-modal-form__row input
{
	width: auto;
	margin-bottom: 8px;
}

.provider-modal-form__row button
{
	margin-bottom: 8px;
	width: 100%;
}

.provider-modal-form__row .radio-list
{
    margin-right: 24px;
}

.provider-modal-form__row .radio-list .radio {
	white-space: nowrap;
	margin-bottom: 12px;
}
.provider-modal-form__bottom-text--smaller {
	font-size: 14px;
}
.provider-modal-form input:not([type=radio]):not([type=checkbox]), .provider-modal-form textarea {
	border-radius: 99px;
	background-color: #fff;
	border: 1px solid #E6EDF5;
	font-size: 16px;
	padding: 17px 30px;
	font-family: ProReg, sans-serif;
	width: 100%;
	margin-bottom: 8px;
}
.provider-modal-form textarea {
	height: auto;
}
.provider-modal-form input:not([type=radio]):focus, .provider-modal-form textarea:focus {
	border: 2px solid #7E37E8;
}
.provider-modal-form__row > input[name="phone"] {
	margin-right: 8px;
	margin-bottom: 0;
}
.provider-modal-form input[type="radio"] {
	margin-top: 4px;
	margin-right: 4px;
}
.provider-modal-form__row .steps-page__content__flex-hor.--consultation-inputs {
	margin-top: 0;
}
.provider-modal-form__button:hover, .provider-modal-form button:hover {
	transform: scale(1.02);
	filter: brightness(110%);
}
/* .provider-modal-form__button, .provider-modal-form button {
	padding: 16px 40px 16px 40px;
	background-color: #7E37E8;
	color: white;
	font-family: ProMed, sans-serif;
	border: none;
	border-radius: 12px;
	white-space: nowrap;
	font-size: 16px;
	outline: none!important;
} */
.modal .modal-dialog {
	min-width: 580px;
}
#providerConsultant .modal-dialog {
	min-width: 808px;
}
@media screen and (max-width: 700px) {
	.modal .modal-dialog, #providerConsultant .modal-dialog {
		width: 98vw;
		min-width: 240px;
		margin-right: auto;
		margin-left: auto;
	}
	#providerReturnCall  .modal-dialog {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%)!important;
	}
	#providerConsultant .modal-dialog {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%)!important;
	}
}
.modal-dialog__provider-name {
	text-decoration: none;
	color: #7E37E8;
	font-family: ProMed, sans-serif;
	margin-bottom: 10px;
	display: flex;
}

.provider-modal-form input {
	margin-right: 4px;
	margin-bottom: 8px;
}
.order-call.provider-modal-form button {
	margin-top: 20px;
}
.modal-header {
	padding-bottom: 0
}
.modal-body {
	padding-top: 0
}
.modal-footer {
	padding-top: 0
}
.provider-modal-form__button + .provider-modal-form__bottom-text--smaller {
	margin-top: 10px;
}
.--bold {
	font-weight: 700;
}
.underline {
	text-decoration: underline;
}
.custom-radio {
	display: block;
	position: relative;
	padding-left: 25px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 14px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.custom-radio input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 15px;
	width: 15px;
	background-color: transparent;
	border-radius: 50%;
	border: 1px solid #fff;
}
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.custom-radio input:checked ~ .checkmark:after {
	display: block;
}
.custom-radio .checkmark:after {
	top: 2px;
	left: 2px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--prov-main-color);
}
.provider-modal-form__support {margin-top: 12px}
.provider-modal-form__support-text {margin-bottom: 8px;font-size: 16px;font-weight: 500;color: #182026;opacity: 0.6}
.provider-modal-form__support-phone {color: #182026;font-size: 38px;font-weight: 600;text-decoration: underline;}
.provider-modal-form__support-phone:active {color: #182026;}
.provider-modal-form__support-phone:focus {color: #182026;}
.provider-modal-form__support-phone:hover{color: var(--prov-main-color);}
.provider-modal .--choice2 {display: none;text-align: center}
.provider-modal-choices {display: flex;justify-content: space-between}
.provider-modal-choices__item {background-color: #e8ecf2;border-radius: 10px;min-height: 110px;overflow: hidden;padding: 20px}
.provider-modal-choices__item .checkmark {border: 1px solid #000;margin-top: 2px}
.provider-modal-choices__item .checkmark:after {background: #000;}
.provider-modal-choices__item .custom-radio {font-size: 18px;font-weight: 500;}
.provider-modal-choices__item-text {font-size: 14px;opacity: 0.6;margin-top: 12px;max-width: 80%;padding-left: 25px}