@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .filter-box input[type=checkbox], .filter-box input[type=radio] {
    --active: #0e366a;
    --active-inner: #fff;
    --border: #BBC1E1;
    --border-hover: #0e366a;
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  }
  .filter-box input[type=checkbox]:after, .filter-box input[type=radio]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }
  .filter-box input[type=checkbox]:checked, .filter-box input[type=radio]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
  .filter-box input[type=checkbox]:disabled, .filter-box input[type=radio]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }
  .filter-box input[type=checkbox]:disabled:checked, .filter-box input[type=radio]:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  .filter-box input[type=checkbox]:disabled + label, .filter-box input[type=radio]:disabled + label {
    cursor: not-allowed;
  }
  .filter-box input[type=checkbox]:hover:not(:checked):not(:disabled), .filter-box input[type=radio]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  .filter-box input[type=checkbox]:focus, .filter-box input[type=radio]:focus {
    box-shadow: 0 0 0 var(--focus);
  }
  .filter-box input[type=checkbox]:not(.switch), .filter-box input[type=radio]:not(.switch) {
    width: 21px;
  }
  .filter-box input[type=checkbox]:not(.switch):after, .filter-box input[type=radio]:not(.switch):after {
    opacity: var(--o, 0);
  }
  .filter-box input[type=checkbox]:not(.switch):checked, .filter-box input[type=radio]:not(.switch):checked {
    --o: 1;
  }
  .filter-box input[type=checkbox] + label, .filter-box input[type=radio] + label {
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
  }

  .filter-box input[type=checkbox]:not(.switch) {
    border-radius: 7px;
  }
  .filter-box input[type=checkbox]:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    transform: rotate(var(--r, 20deg));
  }
  .filter-box input[type=checkbox]:not(.switch):checked {
    --r: 43deg;
  }
  .filter-box input[type=checkbox].switch {
    width: 38px;
    border-radius: 11px;
  }
  .filter-box input[type=checkbox].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    transform: translateX(var(--x, 0));
  }
  .filter-box input[type=checkbox].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }
  .filter-box input[type=checkbox].switch:disabled:not(:checked):after {
    opacity: 0.6;
  }

  .filter-box input[type=radio] {
    border-radius: 50%;
  }
  .filter-box input[type=radio]:after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    transform: scale(var(--s, 0.7));
  }
  .filter-box input[type=radio]:checked {
    --s: .5;
  }
}


.group-field{
	margin: 15px 0 15px 0;
    border: 1px solid rgba(0,0,0,0.2);
    padding: 10px;
}
.group-field .group-field-title{
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #e7e8ec;
}

.time-select-root span {
    padding: 0;
    margin: 0;
    margin-top: -1px;
    padding-top: 4px;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    width: 19.64%;
    border-right: 1px solid #eeeeef;
    cursor: pointer;
    background: #eeeeef;
    margin-left: 3px;
}

.time-select-root span.active {
    background: #ffffff;
}

.time-select-root {
    text-shadow: #000 0px 0px 1px;
    -webkit-font-smoothing: antialiased;
}
.pagination-root
{
    text-align: center;
}

@media (max-width: 1000px) {
    .time-select-root span
    {
        width: 18.64%;
    }
}
.filter-box {
    position: absolute;
    width: 13em;
    right: 0;
    background: white;
    border: 1px solid #0e366a;
    padding: 6px;
    border-left: 0;
    border-right: 0;
    z-index: 5;
}
#icon-ad-filter
{
    cursor: pointer;
}
.bookmark-ad
{
  margin-right: 1em;
      margin-right: 1em;
    border-bottom: 1px solid #2c95ff;
    padding-left: 1em;
    padding-right: 1em;
    padding-bottom: 5px;
    padding-top: 5px;
    cursor: pointer;
    border-top: 1px solid #2c95ff;
    border-radius: 8%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.bookmark-ad:hover
{
  border-radius: 19%;
}


.material-extra-wrapper select {
    width: 5em;
    margin-right: 1em;
}

.material-extra-wrapper input[type="number"] {
    border: 0;
    border-bottom: 1px solid #2675c3;
    margin-right: 1em;
    margin-left: 1em;
    font-size: 15px;
}

.material-extra-wrapper input#material_is_monthly {
    margin-right: 0.5em;
}

.material-extra-wrapper {
    margin-bottom: 0.5em;
}

.price-extra-wrapper select {
    width: 5em;
    margin-right: 1em;
    margin-left: 1em;
}

.price-extra-wrapper input[type="number"] {
    border: 0;
    border-bottom: 1px solid #2675c3;
    margin-right: 1em;
    margin-left: 1em;
    font-size: 15px;
}

@media screen and (max-width: 768px) {

   .price-extra-wrapper input[type="number"] {
        width: 40% !important;
    }
}


.price-extra-wrapper input#is_nds {
    margin-right: 0.5em;
}

.price-extra-wrapper {
    margin-bottom: 0.5em;
}

.ad-price {
    font-size: 13px;
    margin-top: 5px;
    color: rgba(0,0,0,0.6);
}

.related-item-time {
    margin-top: 4px;
    margin-bottom: 4px;
}

input#isCompanyAds
{
        min-height: 2em;
    padding: 10px;
    margin-top: -2em;
    border: 1px solid rgba(0,0,0,0.2);
    background-color: #fff;
    background-clip: padding-box;
}

.company-edit-field-tip {
    color: #797979;
    padding: 1em;
    border: 1px solid #4387cb;
    border-radius: 5px;
}
.make_this_phone_main {
    position: absolute;
    right: 3em;
    top: 8px;
    width: 13em;
    text-align: center;
    background: #4387cb;
    color: white;
    border-radius: 2px;
    cursor: pointer;
}
.make_this_phone_main:hover {
    background: #4c99e6;
}

.fix-z-index {
    top: 0;
}

@media screen and (max-width: 73.99em) {

    .bookmark-ad {
        position: absolute;
        left: 0;
    }

}

.multiple-year-selector {
    float: right;
    text-align: center;
    line-height: 40px;
    width: 50%;
    color: #d7d8db;
    font-size: 30px;
    cursor: pointer;
}

.multiple-year-selector.active {
    color: #0b366a;
}

.apply-informer-multiselect {
    cursor: pointer;
    text-align: center;
    padding: 1em;
    background: #f4f4f4;
    color: #0b366a;
}

#wrapper-for-informer-multiselect
{
        text-align: center;
    padding: 1em;
    color: #0b366a;
    background: #eeeeee;
    cursor: pointer;
    border-radius: 10px;
}

#year-list .link.active
{
        background: #8cbeee;
    color: #ffffff;
}

.informer-year-item {
    width: 100%;
    line-height: 37px;
    display: inline-block;
    text-align: center;
}
.modal-body a
{
    color:  #146abf;
}
.block_fr a
{
    color:  #146abf;
}
.wall-text span{
	margin: 0 5px 0 0;
}

ul.js_search-autocomplete.flex.column a {
    padding: 2px 15px;
    cursor: pointer;
    font-size: 17px;
    width: 100%;
    display: inline-block;
}

ul.js_search-autocomplete.flex.column a.active {
    background: #94d1ee;
}

ul.js_search-autocomplete.flex.column a:hover {
    background: #f4f4f4 !important;
    color: initial !important;
}

.title-country{
	padding-top: 15px;
    font-size: 2em;
}

.ad-button-publish-later
{
        background: linear-gradient(
241deg
, #91c3ff, #ffffff) !important;
}


span[tooltips] label{
	cursor: pointer;
	
}
span[tooltips] span {
	display			: none; 
	padding			: 2px 3px; 
	margin-left		: 8px; 
	/*width			: 20%;*/
}
span[tooltips] span.show {
	display			: inline; 
	position		: absolute; 
	background		: #ffffff; 
	border			: 1px solid #cccccc; 
	color			: #6c6c6c;
}
span[tooltips] span.show .close{    
	position: absolute;
    top: 0;
    right: 5px;
	z-index:5555;
	cursor: pointer;
}
span[tooltips] span.show a{    
	text-decoration: underline;
}

.js_applied-categories {
	display:none;
}

.js_applied-categories.admin{
    display: inline-block;
}

#dt_sccess ul li{
  border: 1px dashed #91c8ff; 
  text-align: center; 
  list-style-type: none;
  margin: 4px 0 4px 0;
}

#dt_sccess ul li span{
	color: red;
    font-weight: bold;
    padding: 0 0 0 5px;
    cursor: pointer;
    vertical-align: bottom;
}

#dt_sccess ul li span:hover{
	color: #d36f6f;
}

input[name="created_at-new"]{
  width: 50%;
}
#calendar-data{
  display: none;
}
.top-head.not_mobile.duble{
	padding:0;
}

.duble .right.top{
	background: #00366a;
	/*
	background-image: repeating-linear-gradient(30deg,
	hsla(0,0%,100%,.1),
	hsla(0,0%,100%,.1) 15px,
	transparent 0, transparent 30px);*/
    
	
	color: #fff;
    padding: 0 15px 5px 15px;
    margin: 0 10px 0 0;
}

.top-head.duble .right.top a{
    color: #fff;
}

.related-item-wrapper a:visited {
   color: #9FA4AF; /* Цвет посещённой ссылки */
}   







/* Tooltip container */
.proplast-tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.proplast-tooltip .tooltiptext {
    visibility: hidden;
    text-align: center;
    padding: 10px;
    display: inline;
    background: #ffffff;
    border: 1px solid #cccccc;
    color: #6c6c6c;
    position: absolute;
    z-index: 1;
    width: 250px;
}

/* Show the tooltip text when you mouse over the tooltip container */
.proplast-tooltip:hover .tooltiptext {
    visibility: visible;
}




#company-list-js ul:nth-child(2n) {
   	padding-left: 20px;
}


#asearch-result ul{
	padding: 15px;
    background: #fff;
    list-style: none;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 10%), 0 10px 20px -5px rgb(0 0 0 / 40%);
    z-index: 100;
}

.link-to-companies {
	font-size: 18px;
	color: #5895d1;
}

#chat-wss{
	position: absolute;
    right: 0;
    bottom: 0;
    font-family: 'Noto Sans', sans-serif;
    width: 100%;
	height: 100%;
    -webkit-box-shadow: 22px 2px 22px -11px rgba(34, 60, 80, 0.4);
    -moz-box-shadow: 22px 2px 22px -11px rgba(34, 60, 80, 0.4);
    box-shadow: 22px 2px 22px -11px rgb(2 2 2 / 52%);
	border: 1px solid #ebebeb;
	z-index:1;
}



#chat-wss iframe{
    height: 100%;
}


#chat-wss.close{
    height: 37px;
	width: 50%;
	z-index:0;
}


.mobile-btn-panel{
	position: fixed;
    bottom: 0;
    z-index: 500;
    right: 0;
    width: 100%;
    background: white;
	font-size: 18px;
    color: #403d3d;
	text-align: center;
	padding-top: 9px;
    padding-bottom: 9px;
	-webkit-box-shadow: 4px -17px 23px -20px rgba(34, 60, 80, 0.36);
	-moz-box-shadow: 4px -17px 23px -20px rgba(34, 60, 80, 0.36);
	box-shadow: 4px -17px 23px -20px rgba(34, 60, 80, 0.36);
	
}

.mobile-btn-panel .caller-popup{
	width: 50%;
    display: inline-block;
	border-right: 1px solid #ebebeb;
}

.mobile-btn-panel .sender-link{
   display: inline-block;
   width: 50%;
}


.mobile-btn-panel .sender-link a{
    color: #403d3d;
}

.b-line-chat{
	width: 355px;
    position: fixed;
    right: 0;
    bottom: 0;
	/*height: 100%;
	z-index: 10;*/
}

@media (min-width: 760px) {
    .mobile-btn-panel{
		display:none;
	} 
}
@media (max-width: 760px) {
    .b-line-chat{
		width: 100%;
	} 
}


ul:first-child{
    margin:0;
	padding:0;
}

/* company-category-edit */

#company-category-edit span.link{
    display: block;
}

#company-category-edit ul:not(:first-child){
    display: none;
}

#company-category-edit ul{
	list-style: none;
}
#company-category-edit ul:first-child{
	padding: 0 0 0 15px;
}

#company-category-edit ul {
  padding: 0 0 0 15px;
  
  ul {
      padding: 0 0 0 15px;
  }
 
}

#company-category-edit ul.last {
	padding: 0 0 0 30px;
}

#company-category-edit li.link.last a{
	    color: #4387cb;
    border: 1px solid #4387cb;
    padding: 5px;
}
#company-category-edit li.link.last a:hover{
	text-decoration: none;
}

#company-category-edit .link.last a.active{
	text-decoration: none;
	background-color: #4387cb;
	color: #fff !important;
    font-weight: bold;
}

#company-category-edit .tab-panels ul{
	margin: 0 0 0 15px;
}


#company-category-edit ul a{
    display: inline-block;
    max-width: 80%;
}
#company-category-edit li label{
    color: black;
    cursor: pointer;
    font-weight: bold;
}

#company-category-edit svg {
    display: inline-block;
    vertical-align: top;
}

#company-category-edit .actevated-li{
    border-top: 1px solid rgba(0,0,0,0.2);
}
#company-category-edit .actevated-ul{
    border-bottom: 1px solid rgba(0,0,0,0.2);
}
#company-category-edit .container.promvtor-informer ul#country li{
    display:inline-block;
    padding: 5px 10px;
    cursor:pointer;
}

#company-category-edit .container.promvtor-informer ul#country li:hover,
#company-category-edit .container.promvtor-informer ul#country li.active{
    background: rgba(255,255,255,0.37);
    color: #fff;
}
.#company-category-edit container.promvtor-informer ul#country li.active{
    cursor:default;
}

#company-category-edit .tab-panel {
  padding: 30px 0;
  border-top: 1px solid #ccc;
}

/* END */



/* CATEGORY MENU Tabs */
.tabs {
	display: flex;
	flex-wrap: wrap; 
}
.tabs label {
    order: 1;
    display: block;
    padding: 5px 10px;
    margin-right: 0.2rem;
    cursor: pointer;
    color: white;
    background: #4387cb;
    font-weight: bold;
}
.tabs .tab {
  order: 99; 
  flex-grow: 1;
  width: 100%;
  display: none;
  padding: 0;
  background: #fff;
}
.tabs input[type="radio"] {
	display: none;
}
.tabs input[type="radio"]:checked + label {
	background: #fff;
    color: black;
}
.tabs input[type="radio"]:checked + label + .tab {
	display: block;
	    margin: 10px 0 10px 0;
}

@media (max-width: 45em) {
  .tabs .tab,
  .tabs label {
    order: initial;
  }
  .tabs label {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}

/* END */

















#company-list-js ul:not(:first-child) {
   	padding: 0px 12px;
}



#company-list-js span.link{
	display: block;
}

#company-list-js ul:not(:first-child){
	display: none;
}
#company-list-js ul a{
    display: inline-block;
	max-width: 80%;
}
#company-list-js li label{
    color: black;
    cursor: pointer;
    font-weight: bold;
}

#company-list-js svg{
	display: inline-block;
    vertical-align: top;
}






.question.mob{
	top: 25%;
    left: 50%;
}

@media screen and (max-width: 73.99em){
	.mobile-menu .menu li {
		position: relative;
	}
}



.actevated-li{
    border-top: 1px solid rgba(0,0,0,0.2);
}
.actevated-ul{
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
.container.promvtor-informer ul#country li{
	display:inline-block;
	padding: 5px 10px;
	cursor:pointer;
}

.container.promvtor-informer ul#country li:hover,
.container.promvtor-informer ul#country li.active{
	background: rgba(255,255,255,0.37);
    color: #fff;
}
.container.promvtor-informer ul#country li.active{
	cursor:default;
}
  
.сurrent-sphere-company{
	margin-bottom:25px
}
.remove-sphere{
	margin: 0 0 0 5px;
    color: #4387cb;
    cursor: pointer;
    border-bottom: 1px dashed #4387cb;
}  

.pager .more-load{
	background-color: #03a9f4;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.pager .more-load:hover{
	background-color:#ffeba0
}

.news-body.dzen li{
	  list-style-type: none;
}
.navigation-article{
	    
}
.navigation-article a{
	color: #386ad5;
    text-decoration: underline;
}
.navigation-article ul{
	margin: 0 0 15px 0px;
    list-style-type: none;
}
.wiki-navigation{
	/*display: flex;*/
}

.wiki-navigation li{
	padding: 0 10px;
}
summary{
    cursor: pointer;
}
#go-up{
	    bottom: 0;
    position: fixed;
    left: 2%;
    cursor: pointer;
}

.news-body p img{
	    cursor: pointer;
}

span.vision-success{
    position: absolute;
    top: 0;
    padding: 0 0.5em 0 0.5em;
    right: 0;
    background: #00000045;
    display: inline-table;
    color: white;
    font-weight: bold;
}

.vision-success.not-auth {
    cursor: context-menu;
}

span.vision-success:before{
    content: "Просмотрено";
}

div.remark {
    display: inline-block;
    vertical-align: sub;
    margin: 0 0 0 6px;
}

div.remark img {
    cursor: pointer;
}

button.remark {
    background: #00366a;
    color: #fff;
    cursor: pointer;
}


.tooltip-remark span {
    display: none;
    margin-left: 25px;
    padding: 2px 3px;
    width: auto;
} 

.tooltip-remark:hover span {
    background: #146abf;
    border: 1px solid #ccc;
    color: #fff;
    display: inline;
    position: absolute;
}

.left.related-item-photo label{
    position: absolute;
    bottom: 0.5em;
    padding: 0 0.5em 0 0.5em;
    right: 0;
    cursor: pointer;
}


.left.related-item-photo img.youtube{
    width: 23px;
}

.news-menu a {
    font-size: 16px;
    background: #ebeae7;
    color: #000;
    padding: 5px 12px;
    border-radius: 7px;
}
.news-menu{
    margin-top: 2em;
}
.news-menu span{
    padding-right: 5px;
    display: inline-block;
    margin-bottom: 10px;
}

.rule-limit-ad{
    color: #4c62b5; 
    text-decoration: underline;
}
ul.ajax-city{
    list-style-type: none;
    position: absolute;
    min-width: 200px;
	z-index: 50;
}
ul.ajax-city li{
    background: #eee;
    padding: 5px 5px 2px 5px;
    color: #337ab7;
}
ul.ajax-city li:hover{
    background: #d5d5d5;
}

/* subclaster */
.not-flex.subtype button{
	width: 25%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
	padding: 0;
    margin: 0;
	position: relative;
}
.not-flex.subtype button span{
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
    vertical-align: bottom;
}

.not-flex.subtype button span label{
	line-height: 25px;
    padding: 0;
	margin: 0 10px 0 10px;
}


.slide-subclaster{
    margin-right: 0.8em;
}

@media screen and (max-width: 768px) {
   .not-flex.subtype button{
       width: 50%;
    }
}



.tooltip-mobile {
    position: relative;
    top: 5%;
    margin: 0 auto;
    display: block;
}

.tooltip-mobile .tooltiptext {
  visibility: hidden;
  width: 95px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 100%;
  margin-left: -60px;
}

.tooltip-mobile .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}

.tooltip-mobile:hover .tooltiptext {
  visibility: visible;
  padding: 10px;
}

.tooltip-top{
	display: inline-flex;
    height: 28px;
    position: relative;
    top: -2px;
    border: 1px solid #bdbdbd;
    border-left: none;
}
.tooltip-mobile label{
	margin: 0 10px;
}
.subtype{
	flex-wrap: wrap;
	flex-direction: row;
}
.subtype div.item{
	
}
#filter-box .time-point{
    display: none;
}
.sub_faset {
    display: table;
    padding: 0 5px 0 5px;
    margin-right: 12px;
}


.sub_faset.pervichnoe-syire{
    background: #a9d08e;
}
.sub_faset.vtorichnoe-syire{
    background: #b4c6e7;
}
.sub_faset.othodyi{
    background: #ffd966;
}
.sub_faset.drugoe{
    background: #f4b084;
}

.img100 {
    width:100%;
}
@media screen and (max-width: 768px) {
   .subtype div.item {
		width: 50%;
	}
	.subtype button{
	    width:80%;
	}
	.tooltip-top{
		width: 20%;
		
	}
	
}

/* END */