@import url("root.css");

html {
  /*scroll-behavior: smooth;*/
}

body {
  position: relative;
}

body.no-scroll {
  overflow-y: scroll; /* Разрешает видимость полосы прокрутки */
  position: fixed; /* Запрещает прокрутку страницы */
  width: 100%; /* Фиксирует ширину страницы */
  top: calc(-1 * var(--scroll-position)); /* Запоминает место прокрутки */
}

nav{
	padding: 1.2rem;
	background: var(--panel-bg-color);
}
nav a{
	padding: 1.1rem;
}
footer{
	padding: 0 0 1rem 0;
	background: var(--panel-bg-color);
}
input[type=button] {
	color: var(--text-color);
	background: var(--panel-bg-color);

	padding: 0.3rem;
	margin: 0.2rem;
	font-size: 1rem;
}
hr {
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background-color: var(--Elements_Tertiary);
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.container {
  width: 100%;
  max-width: var(--c_max-width-d);
  margin-right: auto;
  margin-left: auto;
  /*flex: 1;*/
  /*padding: 1rem;*/
  background: var(--container-bg-color);
  /*overflow: hidden;*/
}

.wrappper {
  position: relative;
  max-width: var(--c_max-width-d-w);
  padding: var(--padding_big);
  /*margin: 0 24px 0 24px;*/
  background: var(--panel-bg-color);
  border-radius: var(--bor_radius);
  /*overflow: hidden;*/
}

.row {
  display: table;
  width: 100%;
}

#popups_blur.blur_d {
  background: rgba(17, 17, 17, 0.96);
  /*backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);*/
}
.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: fill;
  z-index: 100;
}

/* Button */
.buttons {
  display: flex;
  gap: 2px;
}
.but {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  gap: 6px;
  /*min-width: max-content;*/
  color: var(--Elements_Inverse);
  background: var(--Theme_Primary);
  border-radius: var(--Radius_Elements_Base);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
  user-select: none;
  overflow: hidden;
}
.buttons .but {
  border-radius: 0px;
}
.buttons .but:first-child {
  border-top-left-radius: var(--bor_radius_tre);
  border-bottom-left-radius: var(--bor_radius_tre);
}
.buttons .but:last-child {
  border-top-right-radius: var(--bor_radius_tre);
  border-bottom-right-radius: var(--bor_radius_tre);
}
.but.reverse {
  flex-direction: row-reverse;
}
.but .b_text {
  /*display: inline-block;*/
  display: flex; gap: 6px;
  flex-wrap: nowrap;
  position: relative;
  padding: 0px 6px 0px 6px;
  order: 0;
}
.but .b_text i, .but .b_name i {
  line-height: unset !important;
}
.but.s .b_text {
  padding: 0px 8px 0px 8px;
}
.but.s .b_text:has(+ .ico) {
  padding: 0px 4px 0px 0px;
}
.but .ico {
  order: 1;
}
.but:not(.icon) .ico {
  display: inline-block;
}
.but .b_text .b_name {
  display: inline-block;
}
.but .b_text .b_count {
  display: inline-block;
}
.but .b_text .b_count_round {
  /*position: absolute;*/
  margin-left: 6px;
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  right: -20px;
  top: calc(50% - 11px);
  color: var(--Elements_Inverse);
  background-color: var(--Theme_Primary);
  border-radius: 50%;
}
.but.no_text .b_text {
  display: none;
}

.but.gray {
  color: var(--Theme_Primary);
  background-color: var(--Fills_Primary);
}

.but, .but.base {
  height: 48px;
  line-height: 48px;
  padding: 0px 10px 0px 10px;
  font-size: 16px;
}
.but.s {
  height: 36px;
  line-height: 36px;
  font-size: 12px;
  padding: 0px 12px 0px 12px;
}
.but.xl {
  height: 60px;
  line-height: 60px;
  font-weight: 700;
}
.but.xl_2 {
  height: 60px;
  line-height: 17px;
}
.but.xl .b_text {
  font-weight: 700;
}
.but.xl_2 .b_text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
.but.xl_2 .b_text span.dop {
  display: block;
  font-size: 12px;
  font-weight: 400;
}

.but:hover {color: var(--Elements_Inverse);}
.but.secondary {
  color: var(--Elements_Primary);
  background: var(--Fills_Primary);
}
.but.secondary.xl_2 .b_text span.dop {
  color: var(--Elements_Secondary);
}
.but.secondary_2 {
  color: var(--Theme_Primary);
  background: var(--Fills_Primary);
}
.but.secondary_2.xl_2 .b_text span.dop {
  color: var(--Elements_Secondary);
}
.but.tertiary {
  color: var(--Theme_Primary);
  background: var(--Theme_Tertiary);
}
.but.tertiary.xl_2 .b_text span.dop {
  color: var(--Elements_Primary);
}
.but.quaternary {
  color: var(--Elements_Primary);
  background: var(--Fills_Secondary);
}
.but.quaternary.xl_2 .b_text span.dop {
  color: var(--Elements_Secondary);
}
.but.quaternary_2 {
  color: var(--Theme_Primary);
  background: var(--Fills_Secondary);
}
.but.quaternary_2.xl_2 .b_text span.dop {
  color: var(--Elements_Secondary);
}
.but.disabled {
  color: var(--Elements_Tertiary) !important;
  background: var(--Fills_Primary) !important;
  pointer-events: none;
  cursor: not-allowed;
}
.but.disabled.quaternary {
  background: transparent !important;
}
.but.disabled.xl_2 .b_text span.dop {
  color: var(--Elements_Tertiary);
}
.but.outlined, .but.outlined_2 {
  color: var(--Theme_Primary);
  background: transparent;
  outline: 1px solid var(--Theme_Primary);
  outline-offset: -1px;
}
.but.outlined_2:hover {
  outline: 2px solid var(--Theme_Primary);
  outline-offset: -2px;
}
.but.outlined.xl_2 .b_text span.dop, .but.outlined_2.xl_2 .b_text span.dop {
  color: var(--Theme_Primary);
}
.but.rounded {
  border-radius: 999px;
}

.but.tags {
  height: 32px;
  line-height: 32px;
  color: var(--Elements_Secondary);
  background-color: var(--Fills_Primary);
  border-radius: 999px;
}
.but.tags.checked {
  height: 32px;
  line-height: 32px;
  color: var(--Grays_White);
  background-color: var(--Theme_Primary);
  border-radius: 999px;
}

.but.bor_1 {
  line-height: 30px;
  border: 1px solid var(--Theme_Primary);
}
.but.bor_2, .but.base.bor_2 {
  line-height: 36px;
}
.but.icon, .but.base.icon {
  padding: 0px 12px 0px 12px;
}
.but .ico i, .but.base .ico i {
  /*font-size: 16px;*/
}

.but.transp {
  background: transparent;
}
.but.danger {
  color: var(--c_white);
  background: var(--c_red);
}
.but.action {
  font-size: 12px;
  color: var(--c_red);
}
/*
.but.active {
  background: var(--c_white) !important;
}
*/
.but.dwhite.active {
  background-color: var(--c_lyellow) !important;
}
.but.checked {
  background: var(--c_lgreen);
}
.but.icon.active .ico {
  color: var(--c_red);
}

.but:hover:not(.no_hover):not(.disabled) {
  /*color: var(--Elements_Inverse);*/
  /*background: var(--Theme_Secondary) !important;*/
  /*border-color: var(--Theme_Secondary);*/
  /*filter: brightness( var(--brt_hover) );*/
}
.but:hover:not(.outlined_2):not(.no_hover):not(.disabled)::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--Theme_Tertiary);
}
/*
.but:not(.action).active, .but.danger:not(.active,.disabled):hover {
  color: var(--c_black);
  border-color: var(--c_white);
}
*/
.but.disabled:hover {
  color: transparent;
  background: transparent;
  cursor: not-allowed;
}
.but.disabled.xl_2:hover .b_text span.dop {
  color: transparent;
}

.but .b_sel {
  position: relative;
  display: inline-block;
  height: 100%;
}
.but.reverse .b_sel {
  /*left: -13px;*/
}
.but.disabled .b_sel {
  color: inherit !important;
}
.but.reverse .b_sel {
  right: auto;
}
.but .b_sel:before {
  /*padding: 4px;*/
  border-radius: 4px;
  color: inherit;
  font-size: 24px;
  font-family: 'icomoon' !important;
  font-weight: normal;
  font-style: normal;
  /*display: inline-block;*/
  /*line-height: 1;*/
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
}
.but .b_sel.sel {
  transition: all 275ms;
}
.but.b-show > .b_sel.sel {
  transform: rotate(180deg);
}
.but .b_sel:before, .but > .b_sel.sel:before {
  content: "\e907";
}
.but .b_sel.esc:before {
  content: "\e905";
}
.but .b_sel.sort:before {
  content: "\e912";
}
.but .b_sel.filt:before {
  content: "\e90d";
}
.but .b_sel.phone:before {
  content: "\e90e";
}
.but .b_sel.tg:before {
  content: "\e914";
}
.but .b_sel.wa:before {
  content: "\e915";
}
.but .b_sel.search_save:before {
  content: "\e911";
}
.but .b_sel.calculate:before {
  content: "\e935";
}
.but .b_sel.add_car:before {
  content: "\e936";
}
.but .b_sel.add:before {
  content: "\e91b";
}
.but .b_sel.report_ts:before {
  content: "\e90f";
  padding: 0;
  font-size: 22px;
}
.b_sel.favor.no:before {
  font-weight: 400;
}
.b_sel.favor:before {
  content: "\f02e";
  font-weight: 900;
}
.b_sel.disti.no:before {
  font-weight: 400;
}
.b_sel.disti:before {
  content: "\f007";
  font-weight: 900;
}
.but.locked .b_sel:before {
  content: "\e934" !important;
}
.but:not(.disabled) .b_sel.esc:hover:before {
  color: var(--Elements_Primary);
  /*background-color: var(--Backgrounds_Primary);*/
  /*outline: 1px solid var(--Elements_Inverse);*/
}
.but:not(.disabled):has( .b_sel.esc ):hover .b_text .b_name {
  color: var(--Elements_Primary) !important;
}
.but_ico_text {
  display: flex; flex-flow: column; width: 64px; height: 56px; border-radius: var(--bor_radius_tre); justify-content: center;
}
.but_ico_text.no_text {
  width: 44px; height: 44px;
  background-color: var(--Fills_Primary);
}
.but_ico_text i, .but_ico_text span.material-symbols-outlined, .but_ico_text i[class^="icon-"] {
	width: 100%; height: 40px; line-height: 40px; font-size: 24px; text-align: center;
}
.but_ico_text p {
	width: 100%; height: 16px; line-height: 16px; font-size: 10px; text-align: center;
}
.but_ico {
  display: flex; flex-flow: column; /*width: 32px; height: 32px;*/ border-radius: var(--bor_radius_tre);
}
.but_ico i, .but_ico span.material-symbols-outlined, .but_ico i[class^="icon-"] {
	display: inline-block; width: 32px; height: 32px; line-height: 32px; font-size: 24px; text-align: center; color: var(--Elements_Primary);
}
.but_ico_text:hover, .but_ico:hover {
  color: var(--Theme_Primary) !important;
}
.but_ico_text:hover i, .but_ico:hover i {
  color: var(--Theme_Primary) !important;
}
.but .query {
  position: absolute;
  width: 100%;
  left: 0;
}
.but .query input {
  padding-left: 16px;
}

/* B_filter */
.but.b_filter {
  display: inline-flex;
  width: var(--el_fix_widht);
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: var(--Elements_Secondary);
  background: var(--Fills_Primary);
  align-content: space-between;
  flex-wrap: nowrap;
}
.but.b_filter.b-show {
  border: 1px solid var(--Theme_Primary);
}
.but.b_filter .b_text {
  position: relative;
  display: inline-block;
  height: 100%;
  width: 100%;
  order: 0;
  overflow: hidden;
  text-align: left;
}
.but.b_filter .b_text .b_name {
  display: inline-block;
  text-align: left;
}
.but.b_filter .b_text .b_name {
  display: inline-block;
  margin-left: 0;
  width: 100%;
  font-size: 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
}
.but.b_filter .b_text .b_count {
  display: inline-block;
  margin-left: 0;
  width: 100%;
  font-size: 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.but.b_filter.xl_text {
  height: 60px;
  line-height: 17px;
}
.but.b_filter.xl_text .b_text {
  display: flex;
  justify-content: center;
  align-items: center;
  /*font-weight: 700;*/
}
.but.b_filter.xl_text .b_text span.dop {
  display: block;
  color: var(--Elements_Secondary);
  font-size: 12px;
  font-weight: 400;
}
.but.b_filter.xl_text .b_sel:before {
  line-height: 60px;
}

.but.b_filter.selected, .but.b_filter.active {
  background: var(--Theme_Secondary);
}
.but.b_filter.selected .b_text, .but.b_filter.active .b_text {
  width: 100%;
  text-align: left;
  color: var(--Elements_Primary);
}
.but.b_filter.blocked {
  color: var(--Elements_Tertiary) !important;
  background: var(--Fills_Primary) !important;
  pointer-events: none;
  cursor: not-allowed;
}
.but.b_filter.xl_text.blocked .b_text span.dop {
  color: inherit;
}
.but.b_filter.blocked .b_sel {
  /*opacity: 0;*/
}

.but.no_ico .b_sel {
  display: none;
}
.but.no_text {
  width: unset;
}
.but.no_text .b_text {
  display: none;
}

/* Chips */
.but.chips {
  height: var(--Height_Base);
  line-height: var(--Height_Base);
  /*font-size: 16px;*/
  padding: 0 20px;
  gap: 6px;
  color: var(--Elements_Primary);
  background-color: var(--Fills_Primary);
  border-radius: var(--Radius_Round);
}
.but.chips:has(> div:first-child.ico) {
  padding-left: 16px;
}
.but.chips:has(> div:first-child.ico img) {
  padding-left: 6px;
}
.but.chips:has(> div:first-child.ico.big img) {
  padding-left: 0;
}
.but.chips:has(> div:last-child.ico) {
  padding-right: 16px;
}
.but.chips:has(> div:last-child.ico img) {
  padding-right: 6px;
}
.but.chips:has(> div:last-child.ico.big img) {
  padding-right: 0;
}
.but.chips .b_name {
  display: flex;
  align-items: center;
  gap: 6px;
}
.but.chips.s {
  height: var(--Height_S);
  line-height: var(--Height_S);
  padding: 0 16px;
}
.but.chips.s:has(> div:first-child.ico) {
  padding-left: 12px;
}
.but.chips.s:has(> div:first-child.ico img) {
  padding-left: 6px;
}
.but.chips.s:has(> div:first-child.ico.big img) {
  padding-left: 0;
}
.but.chips.s:has(> div:last-child.ico) {
  padding-right: 12px;
}
.but.chips.s:has(> div:last-child.ico img) {
  padding-right: 6px;
}
.but.chips.s:has(> div:last-child.ico.big img) {
  padding-right: 0;
}
.but.chips:not(:has(> div:first-child.ico)):not(:has(> div:last-child.ico)) .b_text {
  padding: 0 !important;
}
.but.chips.secondary {
  background-color: transparent;
  outline: 1px solid var(--Fills_Primary);
  outline-offset: -1px;
}
.but.chips .ico {
  display: flex;
  align-items: center;
  order: unset !important;
}
.but.chips .ico img {
  height: 36px;
}
.but.chips .ico.big img {
  height: var(--Height_Base);
}
.but.chips.s .ico img {
  height: 24px;
}
.but.chips.s .ico.big img {
  height: var(--Height_S);
}
.but.chips .b_text {
  padding: 0 !important;
}
.but.chips .b_count {
  /*padding: 0 6px;*/
  color: var(--Elements_Secondary);
}
.but.chips:hover::before {
  background-color: var(--Hover_Primary) !important;
}
.but.chips.checked {
  background-color: var(--Theme_Secondary);
}
.but.chips.checked:hover::before {
  background-color: var(--Hover_Secondary) !important;
}


/* Badge */
.badge_group {
  display: flex;
  gap: 1px;
}
.badge {
    display: inline-block;
    height: 24px;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    background-color: var(--Fills_Primary);
    color: var(--Elements_Primary);
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 999px;
}
.badge_group .badge {
  border-radius: 0px;
}
.badge_group .badge:first-child {
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}
.badge_group .badge:last-child {
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}
.badge span {
  display: inline-block;
  vertical-align: top;
}
.badge.i, .badge.link {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
}

.badge.link:after, a.link:after {
  content: "\e940";
  margin-left: 4px;
  font-family: 'icomoon' !important;
  font-size: 16px;
}
.bg-purple80 {
    background-color: var(--Colors_Purple80) !important;
    color: var(--Grays_Black) !important;
}
.bg-ice80 {
    background-color: var(--Colors_Ice80) !important;
    color: var(--Grays_Black) !important;
}
.bg-green80 {
    background-color: var(--Colors_Green80) !important;
    color: var(--Grays_Black) !important;
}
.bg-orange80 {
    background-color: var(--Colors_Orange80) !important;
    color: var(--Grays_Black) !important;
}
.bg-pink80 {
    background-color: var(--Colors_Pink80) !important;
    color: var(--Grays_Black) !important;
}
.bg-primary {
    background-color: var(--Backgrounds_Primary) !important;
    color: var(--Elements_Primary) !important;
}
.bg-transp {
    background-color: transparent !important;
    color: var(--Elements_Primary) !important;
    outline: 1px solid var(--Theme_Secondary);
}
.bg-red15 {
    background-color: var(--Colors_Red15) !important;
    color: var(--Colors_Red) !important;
}
.bg-new {
    background-color: var(--Colors_New) !important;
    color: var(--Grays_Black) !important;
}

/* Segmented Control */
.seg-container {
  margin: 0;
  padding: 0;
  max-width: 361px;
  height: 48px;
  padding: 4px;
  background-color: var(--Fills_Primary);
  border-radius: var(--Radius_Elements_Base);
}
.seg-container.s {
  height: 36px;
  padding: 4px;
}
.seg-container .seg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: 40px;
  line-height: 40px;
  gap: 2px;
}
.seg-container.s .seg {
  height: 28px;
  line-height: 28px;
}
.seg > input[type="radio"] {
  display: none;
}
.seg > label {
  display: inline-block;
  color: var(--Elements_Primary);
  font-size: 14px;
  border: none;
  border-radius: 8px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
  flex: 1;
}
.seg > input[type="radio"]:checked + label {
  background-color: var(--Windows_Primary);
}

/* Tabs */
.tab-container {
  margin: 0;
  padding: 0;
  max-width: 361px;
}
.tab-container.mobile {
  padding: 4px 0 0 0;
}
.tab {
  display: flex;
  width: 361px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2px;
}
.tab > input[type="radio"] {
  display: none;
}
.tab > label {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  color: var(--Elements_Secondary);
  font-size: 14px;
  border: none;
  border-radius: var(--bor_radius_tre);
  background-color: var(--Fills_Primary);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
  flex: 1;
}
.tab > label:not(:last-child) {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.tab > label:nth-child(n+3) {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.tab > input[type="radio"]:checked + label {
  color: var(--Elements_Primary);
  background-color: var(--Theme_Secondary);
}


/* checkbox */
.checkbox-wrapper input[type="checkbox"] {
  display: none;
  visibility: hidden;
}
.checkbox-wrapper .cbx {
  margin: auto;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}
.checkbox-wrapper .cbx span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}
.checkbox-wrapper .cbx span:first-child {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: var(--bor_radius_tre);
  transform: scale(1);
  vertical-align: middle;
  /*border: 1px solid var(--Elements_Tertiary);*/
  background-color: var(--Fills_Primary);
  transition: all 0.2s ease;
}
.checkbox-wrapper .cbx span:first-child svg {
  position: absolute;
  top: 6px;
  left: 4px;
  fill: none;
  stroke: var(--Grays_White);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 23px;
  stroke-dashoffset: 23px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.checkbox-wrapper .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--Theme_Primary);
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
}
.checkbox-wrapper .cbx span:last-child {
  /*padding-left: 8px;*/
  font-size: 14px;
}
.checkbox-wrapper .cbx:hover span:first-child {
  border-color: var(--Theme_Primary);
}
.checkbox-wrapper .inp-cbx:checked + .cbx span:first-child {
  background: var(--Theme_Primary);
  border-color: var(--Theme_Primary);
  animation: wave-sc 0.4s ease;
}
.checkbox-wrapper .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.checkbox-wrapper .inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(2);
  opacity: 0;
  transition: all 0.6s ease;
}
@keyframes wave-sc {
  50% {
    transform: scale(0.9);
  }
}


/* select clear */
.radio-item_clear [type="radio"] {
  display: none;
}
.radio-item_clear + .radio-item {
  margin-top: 4px;
}
.radio-item_clear label {
  display: block;
  padding: 6px 10px 6px 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  min-width: 320px;
  /*min-height: 40px;*/
  white-space: nowrap;
  position: relative;
  transition: 0.4s ease-in-out 0s;
}
.radio-item_clear label:after,
.radio-item_clear label:before {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.radio-item_clear label:after {
  height: 24px;
  width: 24px;
  border: 1px solid var(--Elements_Tertiary);
  left: 0px;
  top: calc(50% - 12px);
  transition: border-color 0.2s ease;
}
.radio-item_clear label:hover:after {
  border-color: var(--Theme_Primary);
}

.radio-item_clear label:before {
  background: var(--Windows_Primary);
  border: 6px solid var(--Theme_Primary);
  height: 24px;
  width: 24px;
  left: 0px;
  top: calc(50% - 13px);
  transform: scale(1.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease-in-out 0s;
}
.radio-item_clear [type="radio"]:checked ~ label::before {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.radio-item_clear [type="radio"]:checked ~ label::after {
  opacity: 0;
}


/* select manager */
.radio-section {
  display: flex;
  align-items: center;
  justify-content: left;
}
.radio-item [type="radio"] {
  display: none;
}
.radio-item + .radio-item {
  margin-top: 4px;
}
.radio-item label {
  display: block;
  padding: 15px 15px 15px 50px;
  border: 1px solid var(--Elements_Tertiary);
  border-radius: var(--bor_radius_tre);
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  min-width: 320px;
  min-height: 74px;
  white-space: nowrap;
  position: relative;
  transition: 0.4s ease-in-out 0s;
}
.radio-item label:after,
.radio-item label:before {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.radio-item label:after {
  height: 24px;
  width: 24px;
  border: 1px solid var(--Elements_Tertiary);
  left: 15px;
  top: calc(50% - 12px);
}
.radio-item label:before {
  /*background: var(--c_red);*/
  border: 8px solid var(--Theme_Primary);
  height: 26px;
  width: 26px;
  left: 14px;
  top: calc(50% - 13px);
  transform: scale(2);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease-in-out 0s;
}
.radio-item [type="radio"]:checked ~ label {
  border-color: transparent;
  background: var(--Theme_Primary);
}
.radio-item [type="radio"]:checked ~ label::before {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.radio-item [type="radio"]:checked ~ label::after {
  opacity: 0;
}
.radio-item img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.radio-item .fl_r {
  display: inline-block;
  height: 44px;
  width: 200px;
  padding-top: 10px;
}


/* Checkbox-ios */
.checkbox-ios {
  display: inline-block;
  height: 18px;
  line-height: 18px;
  margin: 0 10px 0 0;
  position: relative;
  vertical-align: middle;
  font-size: 14px;
  user-select: none;
}
.checkbox-ios.big {
  height: 28px;
  line-height: 28px;
  margin: 0 10px 0 0;
}
.checkbox-ios .checkbox-ios-switch {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  width: 34px;
  height: 18px;
  border: none;
  border-radius: 11px;
  vertical-align: top;
  background: var(--Elements_Tertiary);
  transition: .2s;
}
.checkbox-ios.big .checkbox-ios-switch {
  width: 64px;
  height: 28px;
  border-radius: 14px;
  background: var(--Elements_Tertiary);
}
.checkbox-ios .checkbox-ios-switch:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--Windows_Primary);
  transition: .15s;
}
.checkbox-ios.big .checkbox-ios-switch:before {
  width: 39px;
  height: 24px;
  border-radius: 999px;
  background: var(--Windows_Primary);
}
.checkbox-ios input[type=checkbox] {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.checkbox-ios input[type=checkbox]:not(:disabled):active + .checkbox-ios-switch:before {
  box-shadow: inset 0 0 2px rgba(0, 0, 0, .3);
}
.checkbox-ios input[type=checkbox]:checked + .checkbox-ios-switch {
  background: var(--Theme_Primary);
}
.checkbox-ios.big input[type=checkbox]:checked + .checkbox-ios-switch {
  background: var(--Theme_Primary);
}
.checkbox-ios input[type=checkbox]:checked + .checkbox-ios-switch:before {
  transform: translateX(16px);
  background: var(--Windows_Primary);
}
.checkbox-ios.big input[type=checkbox]:checked + .checkbox-ios-switch:before {
  transform: translateX(21px);
  background: var(--Windows_Primary);
}
.checkbox-ios input[type="checkbox"]:not(:disabled) + .checkbox-ios-switch {
  cursor: pointer;
  border-color: rgba(0, 0, 0, .3);
}
.checkbox-ios input[type=checkbox]:disabled + .checkbox-ios-switch {
  border: 1px solid;
}
.checkbox-ios input[type=checkbox]:disabled + .checkbox-ios-switch:before {
  top: 1px;
  left: 1px;
}
.checkbox-ios.focused .checkbox-ios-switch:before {
  box-shadow: inset 0px 0px 4px #ff5623;
}


/* Form */
.form-control.is-valid, .was-validated .form-control:valid {
  border: 1px solid var(--Colors_Green);
}
.form-control.is-invalid, .was-validated .form-control:invalid {
  border: 1px solid var(--Colors_Red);
}

/* Input */
input:-webkit-autofill,
input:-webkit-autofill:focus {
  transition: background-color 0s 600000s, color 0s 600000s !important;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
input[type="search"]::-webkit-search-cancel-button {
  /* Remove default */
  -webkit-appearance: none;
  appearance: none;
  height: 12px;
  width: 12px;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjEyMy4wNXB4IiBoZWlnaHQ9IjEyMy4wNXB4IiB2aWV3Qm94PSIwIDAgMTIzLjA1IDEyMy4wNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTIzLjA1IDEyMy4wNTsiDQoJIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPHBhdGggZD0iTTEyMS4zMjUsMTAuOTI1bC04LjUtOC4zOTljLTIuMy0yLjMtNi4xLTIuMy04LjUsMGwtNDIuNCw0Mi4zOTlMMTguNzI2LDEuNzI2Yy0yLjMwMS0yLjMwMS02LjEwMS0yLjMwMS04LjUsMGwtOC41LDguNQ0KCQljLTIuMzAxLDIuMy0yLjMwMSw2LjEsMCw4LjVsNDMuMSw0My4xbC00Mi4zLDQyLjVjLTIuMywyLjMtMi4zLDYuMSwwLDguNWw4LjUsOC41YzIuMywyLjMsNi4xLDIuMyw4LjUsMGw0Mi4zOTktNDIuNGw0Mi40LDQyLjQNCgkJYzIuMywyLjMsNi4xLDIuMyw4LjUsMGw4LjUtOC41YzIuMy0yLjMsMi4zLTYuMSwwLTguNWwtNDIuNS00Mi40bDQyLjQtNDIuMzk5QzEyMy42MjUsMTcuMTI1LDEyMy42MjUsMTMuMzI1LDEyMS4zMjUsMTAuOTI1eiIvPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=);
  background-size: 12px 12px;
}
.input_container_clear {
  position: relative;
  /*width: 320px;*/
  height: 48px;
  border-radius: var(--bor_radius_tre);
  /*border: 1px solid transparent;*/
  background-color: var(--Windows_Primary);
}
.input_container_clear label {
  position: absolute;
  top: -24px;
  left: 0px;
  display: inline-block;
}
.input_container_clear input {
  border: none;
  color: var(--Elements_Primary);
  background: var(--Fills_Primary);
  width: 100%;
  height: 48px;
  max-height: 50px;
  margin: 0;
  padding: 12px 15px;
  font-size: 16px;
  /*font-weight: 700;*/
  /*letter-spacing: 0.05em;*/
  color: inherit;
  border: 1px solid transparent;
  border-radius: inherit;
}
.input_container_clear input:focus {
  background-color: var(--Theme_Secondary);
}
.input_container_clear input.passwd {
  padding-right: 37px;
}
.passwd_control {
  position: absolute;
  top: 9px;
  right: 8px;
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("assets/files_d/css/img/view.svg") 0 0 no-repeat;
  opacity: .5;
}
.passwd_control.view {
  background: url("assets/files_d/css/img/no-view.svg") 0 0 no-repeat;
}
.input_container_clear input::placeholder {
  font-size: 14px;
  font-weight: 300;
  color: var(--Elements_Secondary);
}
.input_container_clear input:focus {
  outline: none;
}
.input_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 320px;
  height: 44px;
  border-radius: var(--bor_radius_tre);
  border: 1px solid transparent;
  background-color: var(--Windows_Primary);
}
.input_container form {
  display: flex;
  width: 320px;
  height: 44px;
  padding: 2px;
  border-radius: inherit;
  color: var(--Elements_Primary);
  margin: 0 auto;
}
.input_container form input[type="search"] {
  border: none;
  background: transparent;
  width: calc(100% - 70px);
  margin: 0;
  padding: 7px 8px;
  font-size: 14px;
  color: inherit;
  border: 1px solid transparent;
  border-radius: inherit;
}
.input_container form input[type="search"]::placeholder {
  color: var(--Elements_Secondary);
}
.input_container form button[type="submit"] {
  overflow: hidden;
  width: 70px;
  height: 40px;
  padding: 0;
  margin: 0;
  color: var(--Windows_Primary);
  background-color: var(--Colors_Red);
  border: 1px solid transparent;
  border-radius: inherit;
  cursor: pointer;
}
.input_container form button[type="submit"]:hover {
  opacity: .9;
}
.input_container form button[type="submit"]:focus,
.input_container form input[type="search"]:focus {
  outline: none;
}
.input_container form form.nosubmit {
 border: none;
 padding: 0;
}
.input_container form input.nosubmit {
  border: 1px solid #555;
  width: 100%;
  padding: 9px 4px 9px 40px;
   background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat 13px center;
}
.input_container form.nosubmit button[type="submit"] {
  text-indent: -999px;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
}

/* Fields */
.query {
  position: relative;
  width: var(--el_fix_widht);
}
.query > input {
    width: 100%;
    height: 48px;
    line-height: 48px;
    border-radius: var(--bor_radius_tre);
    /*border: 1px solid var(--c_line);*/
    color: var(--Elements_Primary);
    background-color: var(--Fills_Primary);
    outline: none;
    padding: 0 16px 0 38px;
    font-size: 16px;
}
.query.s > input {
    height: 32px;
    line-height: 32px;
}
.query > i {
  position: absolute;
  display: block;
  left: 8px;
  top: 10px;
  height: 24px;
  color: var(--Elements_Tertiary);
  font-size: 24px;
  cursor: pointer;
}
.query.s > i {
  top: 4px;
}
.query > i.search {
  color: var(--Theme_Primary);
}

.input > input {
  width: 100%;
  height: 48px;
  line-height: 48px;
  border-radius: var(--bor_radius_tre);
  color: var(--Elements_Primary);
  background-color: var(--Fills_Primary);
  outline: none;
  padding: 0 38px 0 16px;
  font-size: 16px;
}
.input.s > input {
  height: 32px;
  line-height: 32px;
}
.input > i {
  position: absolute;
  display: block;
  right: 8px;
  top: 10px;
  height: 24px;
  color: var(--Elements_Secondary);
  font-size: 24px;
  cursor: pointer;
}
.input.s > i {
  top: 4px;
}
.input {
  position: relative;
  width: var(--el_fix_widht);
}
.input > input.selected {
  background-color: var(--Theme_Secondary);
}
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group div.input {
  flex: 1;
  flex-grow: 1;
  flex-shrink: 1;
  width: unset;
}
.input-group div.input input {
  border-radius: 0;
}
.input-group div.input:first-child input {
  border-radius: var(--bor_radius_tre) 0 0 var(--bor_radius_tre);
}
.input-group div.input:last-child input {
  border-radius: 0 var(--bor_radius_tre) var(--bor_radius_tre) 0;
}

.scroll_s {
  animation: scrolling forwards;
  animation-timeline: scroll(self);
}
@keyframes scrolling {
  0%,to{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.scroll_s::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}
.scroll_s::-webkit-scrollbar-track {
  background-color: var(--Elements_Tertiary);
}
.scroll_s::-webkit-scrollbar-thumb {
  background-color: var(--Elements_Tertiary);
  border: 2px solid var(--Misc_ScrollBG);
  border-radius: 999px;
}
.scroll_s::-webkit-scrollbar-thumb:hover {
  background-color: var(--Elements_Secondary);
}
.scroll_s::-webkit-scrollbar-button {
  width: 9px;
  height: 9px;
  background-color: var(--Misc_ScrollBG);
}
.scroll_s::-webkit-scrollbar-track-piece {
  background-color: var(--Misc_ScrollBG);
}
/* Buttons */
.scroll_s::-webkit-scrollbar-button:single-button {
  background-color: var(--Misc_ScrollBG);
  display: block;
  border-style: solid;
  height: 9px;
  width: 9px;
}
/* Up */
.scroll_s::-webkit-scrollbar-button:single-button:vertical:decrement {
  border-top-right-radius: var(--bor_radius);
  border-width: 0 4px 4px 4px;
  border-color: transparent transparent var(--Elements_Tertiary) transparent;
}
.scroll_s::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
  border-color: transparent transparent var(--Elements_Secondary) transparent;
}
/* Down */
.scroll_s::-webkit-scrollbar-button:single-button:vertical:increment {
  border-bottom-right-radius: var(--bor_radius);
  border-width: 4px 4px 0 4px;
  border-color: var(--Elements_Tertiary) transparent transparent transparent;
}
.scroll_s::-webkit-scrollbar-button:vertical:single-button:increment:hover {
  border-color: var(--Elements_Secondary) transparent transparent transparent;
}

/* Custom select */
.select_mate {
  position: relative;
  /*float: left;*/
  width: 100%;
  background-color: var(--Fills_Primary);
  border-radius: var(--bor_radius_tre);
  outline: none;
  transition: all 375ms ease-in-out;
}
.select_mate.selected {
  background-color: var(--Theme_Secondary);
}
.select_mate:hover .selecionado_opcion::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--brt_hover);
}
.select_mate select {
  position: absolute;
  overflow: hidden;
  height: 0px;
  opacity: 0;
  z-index: -1;
}
.selecionado_opcion {
  width: 100%;
  height: 48px;
  line-height: 48px;
  color: var(--Elements_Primary);
  padding: 0 38px 0 16px;
  font-size: 16px;
  cursor: pointer;
}
.select_mate:not(.selected) .selecionado_opcion {
  color: var(--Elements_Secondary);
}
.cont_list_select_mate {
  position: relative;
  float: left;
  width: 100%;
}
ul.cont_select_int {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1002;
  overflow: hidden;
  height: 0px;
  width: 100%;
  background-color: #fff;
  padding: 0px;
  margin-bottom: 0px;
  margin-top: 0px;
  border-radius: 0px 0px 3px 3px;
  box-shadow: 1px 4px 10px -2px rgba(0, 0, 0, 0.2);
  /*transition: all 375ms ease-in-out;*/
  max-height: 600px;
  background-color: var(--Fills_Droplist);
  overflow-y: auto;
}
ul.cont_select_int.active {
  background-color: #EEEEEE;
}
.cont_select_int li {
  position: relative;
  float: left;
  width: 100%;
  height: 44px;
  line-height: 44px;
  list-style-type: none;
  padding: 0 38px 0 16px;
  margin: 0px;
  /*transition: all 275ms ease-in-out;*/
  display: block;
  cursor:pointer;
}
.cont_select_int li:first-child {
  padding: 0 38px 0 38px;
  border-bottom: 1px solid var(--Elements_Secondary);
}
.cont_select_int li:first-child:before {
  position: absolute;
  top: 0;
  left: 6px;
  content: "\e905";
  font-family: 'icomoon' !important;
  font-size: 24px;
}
.cont_select_int li::last-child {
  border-radius: 6px;
  border-bottom: 0px;
}
.cont_select_int li:hover {
  background-color: var(--Theme_Secondary);
}

.icon_select_mate {
  position: absolute;
  top: 0;
  right: 10px;
  height: 48px;
  transition: all 275ms;
}
.icon_select_mate i {
  color: var(--Elements_Secondary);
  font-size: 24px;
  line-height: 48px;
}

.input-group div.select_mate {
  flex: 1;
  flex-grow: 1;
  flex-shrink: 1;
  width: unset;
}
.input-group div.select_mate:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group div.select_mate:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Advert */
#leads div.advert div.advert_base > div.advert_flex {
  transition: filter .3s;
}
#leads.reloading div.advert div.advert_base > div.advert_flex {
  filter: opacity(0.25);
  -webkit-filter: opacity(0.25);
  transition: filter 0s;
}
#leads.reloading div.advert div.advert_base > div.advert_flex div.buttons {
  /*opacity: 0;*/
}
#leads.reloading div.advert {
  cursor: wait !important;
  pointer-events: none;
}

div.advert {
  border-radius: var(--bor_radius);
  background-color: transparent;
  cursor: pointer;
}
div.advert_base {
  max-width: var(--c_max-width-d);
  min-width: var(--c_min-width-d);
  height: 232px;
  padding: var(--padding_min);
  /*padding-right: var(--padding_big);*/
  border-radius: var(--bor_radius);
  background-color: var(--Windows_Primary);
}

div.advert.contract {
  pointer-events: none;
}
div.advert.contract .advert_base {
  /*background-color: rgba(255, 255, 255, 0.25);*/
  opacity: 0.25;
  pointer-events: none;
}
div.advert.contract .advert_base .car_2 .buttons .but {
  color: var(--Elements_Tertiary) !important;
  background: var(--Fills_Primary) !important;
  pointer-events: none;
  cursor: not-allowed;
}
div.advert.contract .advert_base .car_3 .icons .but_ico i {
  color: var(--Fills_Primary) !important;
}

div.advert_base .advert_flex {
  display: flex;
  height: 100%;
  flex-wrap: nowrap; justify-content: space-between; gap: 16px;
  /*overflow: hidden;*/
}
div.advert_base .car_1 {
  flex-grow: 0;
  flex-shrink: 0;
  width: 320px; height: 220px;
}
div.advert_base .car_2 {
  flex-grow: 1;
  flex-shrink: 1;
  /*width: 565px;*/ height: 220px;
}
div.advert_base .car_2_2 {
  flex-grow: 0;
  flex-shrink: 0;
  width: 150px; height: 220px;
}
@media all and (max-width: 1200px) {
  div.advert_base .car_2_2 {
    width: 100px;
  }
}
div.advert_base .car_3 {
  flex-grow: 0;
  flex-shrink: 0;
  width: 200px; height: 220px;
}
div.advert_base .car_4 {
  flex-grow: 0;
  flex-shrink: 0;
  width: 324px; height: 220px;
}
@media all and (max-width: 1200px) {
  div.advert_base .car_4 {
    width: 200px;
  }
  div.advert_base .car_4 .but .b_name {
    font-size: 12px !important;
  }
}
div.car_1 div.auto_ico {
  display: inline-block;
  width: 320px;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
}
@media all and (max-width: 1200px) {
  div.advert_base .car_1 {
    width: 290px;
  }
  div.car_1 div.auto_ico {
    width: 290px;
  }
}
div[class^="car_"] > div.dis_f > div:last-of-type, div.car_3 > div.dis_f > div:last-of-type {
  margin-top: 0;
}
div.advert_base:hover:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--bor_radius);
  /*box-shadow: 0 0 32px rgba(0, 0, 0, 0.2);*/
  z-index: -1;
}
div:not(.no_hover).advert_base:hover .car_name {
  color: var(--Theme_Primary);
}

div.advert_base .icons {
  display: inline-block;
  /*position: absolute;*/
  right: 0px;
  bottom: 6px;
  font-size: 0;
}
div.advert_base .icons.vert {
  width: 48px;
}
div.advert_base .icons:not(.vert) {
  height: 48px;
}

div.advert_base .icons > div {
  width: 48px;
  height: 48px;
  /*border: 1px solid var(--Fills_Primary);*/
}
div.advert_base .icons > div > a.but_ico {
  width: 48px;
  height: 48px;
  border-radius: unset;
}
div.advert_base .icons > div > a.but_ico i {
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 24px;
}

div.advert_base .icons.vert > div {
  margin-top: -1px;
}
div.advert_base .icons.vert > div:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  /*border-radius: 4px 4px 0 0;*/
  margin-top: 0px;
}
div.advert_base .icons.vert > div:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  /*border-radius: 0 0 4px 4px;*/
}

div.advert_base .icons:not(.vert) > div {
  margin-left: -1px;
}
div.advert_base .icons:not(.vert) > div:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  /*border-radius: 4px 0 0 4px;*/
  margin-left: 0px;
}
div.advert_base .icons:not(.vert) > div:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  /*border-radius: 0 4px 4px 0;*/
}

div.advert_base .buttons, div.advert_base .icons > div {
  /*display: none;*/
  display: inline-block;
}
div.advert_base:hover .buttons, div.advert_base:hover .icons > div {
  display: inline-block;
}
div.advert_base .icons > div:has( a.but_ico > i.icon-bookmark_fill ) {
  display: inline-block;
}
div.advert_base:not(:hover) .icons > div:has( a.but_ico > i.icon-bookmark_fill ) {
  border-radius: 4px;
}
div.advert_base .icons > div > a.but_ico > i.icon-bookmark_fill {
  color: var(--Theme_Primary);
}

/* other */
.no_bg {
  background: transparent !important;
}

.shadow {
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.5);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.5);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.5);
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.scroll_none::-webkit-scrollbar {
  width: 0;
}

.scroll_none {
  -ms-overflow-style: none;
}

.hover_text::before {
  content: attr(text);
}

.hover_text:hover::before {
  content: attr(hover_text);
  color: var(--c_red) !important;
}

.stick {
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  font-size: 12px;
}

.but.progress, button.progress {
  appearance: none;
  transition: all 0.15s ease-in-out;
  user-select: none;
}
.but.progress:hover:active, button.progress:hover:active {
  transform: scale(0.95);
}
.but.progress[progress=wait]:focus, button.progress[progress=wait]:focus {
  pointer-events: none;
}
/*
.but.progress[progress=wait]:focus::before, button.progress[progress=wait]:focus::before {
}
*/
button[progress=wait] {
  color: var(--Theme_Primary);
  cursor: not-allowed;
}
.but.progress[progress=wait]::after, button.progress[progress=wait]::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: button-loading-spinner 1s ease infinite;
}
@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}

/* Details */
.details {
  position: relative;
  display: block;
  max-width: 640px;
  margin: 0 auto 8px;
  background: transparent;
  border-radius: 6px;
  transition: 0.3s;
  overflow: hidden;
}
.details::after {
  position: absolute;
  right: 16px;
  top: 12px;
  content: "\e907";
  font-family: 'icomoon' !important;
  font-size: 24px;
  display: block;
  transform-origin: center;
  transition: .3s;
}
.details[open]::after {
  transform: rotate(180deg);
}
.details[open] {
  padding-bottom: 60px;
}
.details[open] .details__title {
  margin-bottom: 2px;
}
.details__title {
  background: var(--Fills_Tertiary);
  border-radius: 6px;
  padding: 0 16px;
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  transition: .3s;
}
.details__title::-webkit-details-marker {
  display: none;
}
.details__content {
  padding: 0;
  font-size: 18px;
  margin-bottom: -60px;
}
.details__content div, .details__content p {
  margin: 2px 0;
}
.details__content div:last-child, .details__content p:last-child {
  margin-bottom: 0;
}
.details__content div:first-child, .details__content p:first-child {
  margin-top: 0;
}

/* stage & dropdown & preloader */
.dropdown_active {
  background-color: var(--Theme_Tertiary);
}
[id^="ads_count"] {
  color: var(--Elements_Secondary) !important;
}
[id^="ads_count"].active {
  color: var(--Elements_Primary) !important;
}
[id^="ads_count"] span[data] {
  padding: 0 2px 0 0;
}
.stage {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 16px 0;
  /*margin: 0 -5%;*/
  overflow: hidden;
}
.dot-windmill_off {
  position: relative;
  width: 25px;
  height: 25px;
  background-image: var(--preloader_url);
  animation: dot-windmill 2s infinite linear;
}
@keyframes dot-windmill {
  0% {
    transform: rotateZ(0deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotateZ(720deg) translate3d(0, 0, 0);
  }
}

.preloader-base {
    position: absolute;
    height: 100%; width: unset; aspect-ratio: 1; background-size: cover; background-repeat: no-repeat;
    /*background-image: url({patch}/img/icon/preloader-advert-base.svg");*/
    background-image: var(--preloader-advert-base_url);
}
.preloader-round {
    position: relative;
    height: 100%; width: unset; aspect-ratio: 1; background-size: cover; background-repeat: no-repeat;
    /*background-image: url({patch}/img/icon/preloader-advert-round.svg");*/
    background-image: var(--preloader-advert-round_url);
    animation: dot-windmill 2s infinite linear;
}
