/* === Base (центрирование и поведение) === */
.social-row{
  --radius: 999px; --pad-y:.6rem; --pad-x:.9rem; --gap:.8rem;
  display:flex; justify-content:center; align-items:center; flex-wrap:wrap; gap:var(--gap);
  margin:.5rem auto 0; text-align:center;
      margin-bottom: 20px;
}
.social-row__item{
  display:inline-flex; align-items:center; gap:.55rem;
  padding:var(--pad-y) var(--pad-x);
  border-radius:var(--radius);
  text-decoration:none;
  color:#fff;                         /* по умолчанию светлый текст */
  border:1px solid transparent;
  box-shadow:0 6px 18px rgba(0,0,0,.18);
  transition:transform .18s cubic-bezier(.2,.7,.3,1),
             box-shadow .18s cubic-bezier(.2,.7,.3,1),
             filter .18s ease, border-color .18s ease;
  will-change:transform, box-shadow;
}
.social-row__item:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(0,0,0,.22);
  filter:saturate(1.08) brightness(1.02);
}
.social-row__item:active{ transform:translateY(0); box-shadow:0 6px 16px rgba(0,0,0,.2) }
.social-row__item:focus-visible{
  outline:none;
  box-shadow:
    0 0 0 3px rgba(255,255,255,.45),
    0 8px 22px rgba(0,0,0,.28);
}

/* Иконка/лейбл */
.social-row__icon{ width:20px; height:20px; display:block; fill:currentColor }
.social-row__label{ font-weight:700; font-size:14px; letter-spacing:.2px; line-height:1 }

/* Размеры-опции */
.social-row--compact .social-row__label{ display:none }
.social-row--compact .social-row__item{ padding:.5rem .6rem }
.social-row--lg{ --pad-y:.75rem; --pad-x:1rem; --gap:1rem }
.social-row--lg .social-row__icon{ width:22px; height:22px }
.social-row--lg .social-row__label{ font-size:15px }

/* === Брендовые цвета теперь как ОСНОВНАЯ раскраска === */
/* Используем color-mix, но дадим фолбэк на однотонный цвет */

.social--vk{
  /* fallback однотонный */
  background:#4c75a3; border-color:#3d6188;
  /* если поддерживается color-mix — мягкий градиент */
  background:linear-gradient(135deg, #4c75a3 0%, color-mix(in hsl, #4c75a3, white 12%) 100%);
  color:#fff;
}
.social--vk:hover{ border-color:color-mix(in hsl, #4c75a3, black 12%) }

.social--tw{
  background:#111; border-color:#000; color:#fff;
  background:linear-gradient(135deg, #111 0%, color-mix(in hsl, #111, white 10%) 100%);
}
.social--tw:hover{ border-color:#000 }

.social--tg{
  background:#229ED9; border-color:#1b7eae; color:#fff;
  background:linear-gradient(135deg, #229ED9 0%, color-mix(in hsl, #229ED9, white 16%) 100%);
}
.social--tg:hover{ border-color:color-mix(in hsl, #229ED9, black 14%) }

/* Тёмная тема — чуть усилить контраст */
@media (prefers-color-scheme: dark){
  .social-row__item{ box-shadow:0 8px 22px rgba(0,0,0,.35) }
}

/* Доступность: меньше анимаций */
@media (prefers-reduced-motion: reduce){
  .social-row__item{ transition:none }
  .social-row__item:hover,.social-row__item:active{ transform:none; box-shadow:0 6px 16px rgba(0,0,0,.2) }
}

/* ===== (опционально) модификатор для бледной версии
   добавь .is-plain на ссылку если где-то нужен нейтральный стиль
*/
.social-row__item.is-plain{
  color:#111; background:rgba(0,0,0,.04); border-color:rgba(0,0,0,.08);
}
@media (prefers-color-scheme: dark){
  .social-row__item.is-plain{ color:#fff; background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.15) }
}



        .slider-bar {
     
            height: 10px;
            background-color: #ddd;
            position: relative;
            cursor: pointer;
        }
 
		
		.slider-container {


}

.slider-bar {

    height: 10px;
    background-color: #ddd;
    position: relative;
    cursor: pointer;
    top: 25px;
    height: 5px;
    background-color: #fd7500;
}

.slider-thumb {
    width: 20px;
    height: 20px;
    background-color: #007bff;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    cursor: pointer;
    /* top: 20px; */
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #f1f1f1;
    -webkit-box-shadow: inset 0 0 0 2px #f1f1f1;
    box-shadow: inset 0 0 0 2px #f1f1f1;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.slider-block {
    height: 40px;
    position: relative;

}
.slider-container {
    width: 185px;
}

.slider-bar {
    position: relative;
    height: 4px;
    /* background: #ccc; */
    width: 200px;
}

.custom-dropdown {
    position: relative;
    width: 90%;
}

.dropdown-btn {
    width: 100%;
    padding: 10px;
    text-align: left;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
}

.dropdown-search {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.dropdown-list {
    display: none;
    position: absolute;
    width: 100%;
    border: 1px solid #ccc;
    background: white;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
    z-index: 9;
    color: #000000;
}

.dropdown-list li {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-list li:hover {
    background: #f0f0f0;
    color: #000000;
}

.flag-icon {
    width: 20px;
    height: auto;
    margin-right: 10px;
}

.dropdown-list li {
    cursor: pointer;
    user-select: none; /* Запрещает выделение текста */
}



.auth-congrats-overlay{
  position: fixed; inset: 0; background: rgba(0,0,0,.6);
  display: flex; align-items: center; justify-content: center; z-index: 9999;
}
.auth-congrats-box{
  background: #111; color: #fff; border-radius: 16px; padding: 20px 24px; max-width: 420px; width: 92%;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.auth-congrats-title{ font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.auth-congrats-text{ opacity: .9; margin-bottom: 16px; }
.auth-congrats-actions{ display:flex; justify-content:flex-end; gap: 8px; }
.btn.btn-primary{
  background:#ff8c00; color:#111; border:none; padding:10px 16px; border-radius:10px; cursor:pointer; font-weight:700;
}
.btn.btn-primary:hover{ filter: brightness(1.05); }



/* Стили для чекбокса */
label.rememberme {
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  font-size: 0.95rem;
  user-select: none;
}

label.rememberme input[type="checkbox"] {
  /* убираем дефолт */
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background: #222;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

label.rememberme input[type="checkbox"]:hover {
  border-color: #888;
}

label.rememberme input[type="checkbox"]:checked {
  background: #3c8dbc; /* цвет заливки */
  border-color: #3c8dbc;
}

label.rememberme input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  left: 2px;
  top: -2px;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}


.box .items-list {
  margin: -15px -15px 0 0;
  font-size: 0;
  line-height: 0;
}

.box.categories-list .items-list {
  padding: 20px 0 0;
  margin: 0 -15px;
  -webkit-column-count: 5;
  -moz-column-count: 5;
  column-count: 5;
  position: relative;
}

.box.groups .thumbs-holder .category-group .title-group {
  color: #e6184e;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
}

.box.groups .thumbs-holder .category-group {
  padding: 0 0 20px;
}

@media screen and (max-width: 1480px) {
  .box.categories-list .items-list {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
}

@media screen and (max-width: 1200px) {
  .box.categories-list .items-list {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
}

@media screen and (max-width: 550px) {
  .box.categories-list .items-list {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}



/* Общий контейнер скелетона */
.skeleton {
  pointer-events: none;
  opacity: 0.7;
  /* Можно добавить отступы или размеры, если нужно:
     display: inline-block;
     width: 320px; (или что у вас в карточке)
  */
}

/* Превью-блок (контейнер для спиннера) */
.skeleton .thumb {
  width: 100%;
  padding-top: 56.25%; /* 16:9 соотношение */
  position: relative;
  background: #f0f0f0; /* фон до появления картинки */
  overflow: hidden;
}

/* Сам квадратный спиннер */
.skeleton .skeleton-thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;  /* смещаем на половину ширины/высоты */
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.4);
  border-radius: 4px;       /* можно 0 для без скругления */
  transform-origin: center;
  animation: spin 1s linear infinite;
  background: none;
}

/* Убираем текстовые блоки (они не нужны при спиннере) */
.skeleton .skeleton-text {
  display: none;
}

/* Анимация вращения */
@keyframes spin {
  to { transform: rotate(360deg); }
}


.tab-description-categ {
    background: #fff;
    border: 1px solid #bcc2d3;
    -webkit-border-radius: 1px;
    border-radius: 1px;
    padding: 10px;
    margin: 10px 0 20px;
}

body.dark .tab-description-categ {
 background: rgba(0, 0, 0, 0.97);
    box-shadow: rgb(0, 0, 0) 0px 128px 250px 0px;
}

@media (max-width: 767px) {
.box.models-list .item .info-model {
  display: flex;
  flex-wrap: wrap;        /* позволяет перенос при нехватке места */
  gap: 8px 12px;          /* вертикальный и горизонтальный отступ */
  justify-content: flex-start;
  align-items: center;
  }

.box.models-list .item .info-model > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  white-space: nowrap;    /* предотвращает перенос текста внутри */
  }
}



.tab-container {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}
[data-target-id] {
  position: relative;
  left: 0; right: 0; top: 0;
  width: 100%;
  transition: opacity .18s;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
[data-target-id].show {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.disintegrate-stripes {
  position: absolute;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  display: flex;
}
.disintegrate-stripe {
  flex: 1 1 0;
  background: #fff;
  box-shadow: 0 0 8px 0 #8888;
  margin: 0 0.5px;
  transition: transform .7s, opacity .7s;
  will-change: transform, opacity;
  opacity: 1;
  border-radius: 2px;
}


/* Кнопка "Загрузить ещё" */
button.load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.25rem;
  border: 0;
  border-radius: .75rem;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
  color: #fff;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37, 99, 235, .25);
  transition: transform .08s ease, box-shadow .2s ease, filter .2s ease;
  -webkit-tap-highlight-color: transparent;
  
}

/* Центр без обёртки — работает почти везде */
button.load-more {
  display: block;           /* чтобы сработал margin:auto */
  margin: 1.5rem auto;      /* по центру по горизонтали */
  width: auto;              /* на случай, если где-то задано 100% */
}

/* Если родитель — flex-контейнер */
button.load-more { align-self: center; }

/* Если родитель — grid-контейнер */
button.load-more { justify-self: center; }

/* Наведение */
button.load-more:hover {
  filter: brightness(1.05);
  box-shadow: 0 8px 22px rgba(37, 99, 235, .28);
}

/* Нажатие */
button.load-more:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 4px 14px rgba(37, 99, 235, .22);
}

/* Фокус клавиатурой */
button.load-more:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 60%, white);
  outline-offset: 2px;
}

/* Отключена */
button.load-more:disabled {
  opacity: .6;
  cursor: not-allowed;
  filter: none;
  box-shadow: none;
}

/* Состояние загрузки (если добавляете aria-busy="true") */
button.load-more[aria-busy="true"] {
  pointer-events: none;
  position: relative;
}
button.load-more[aria-busy="true"]::after {
  content: "";
  width: 1em; height: 1em;
  border-radius: 50%;
  border: 2px solid #fff;
  border-right-color: transparent;
  animation: loadmore-spin .8s linear infinite;
  margin-left: .5rem;
}
@keyframes loadmore-spin { to { transform: rotate(360deg); } }


/* Адаптация для мобильных */
@media (max-width: 600px) {
  #load-more-gallery {
    margin: 16px auto;
    padding: 10px 20px;
    font-size: 14px;
  }
}



.rv-skeleton{display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:12px}
.rv-skeleton .rv-item{height:160px;background:#eee;border-radius:8px;animation:rvp 1.2s ease-in-out infinite}
@keyframes rvp{0%{opacity:.6}50%{opacity:.3}100%{opacity:.6}}

button.row-item.btn-show-more {
    color: var(--icon-color, var(--text-color, #333333));
    font-family: fantasy;
}



span.title-label {
    font-size: 1.1em;
    color: var(--icon-color, var(--text-color, #333333)) --icon-color is not defined;
    font-family: fantasy;
}

.selected-model {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.selected-model .card-model { /* подставь реальный класс карточки */
    flex: 0 0 320px;
}

.model-summary {
    flex: 1 1 auto;
    max-width: 100%;
}

.model-summary__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 1px solid #e2e5ea;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

table.model-summary__table tr {
    display: inline;
}

.model-summary__table tr + tr td {
    border-top: 1px solid #e8ebef;
}

.model-summary__table td {
    padding: 12px 16px;
    font-size: 14px;
}

.model-summary__label {
    width: 160px;
    background: #f5f7fa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #6a7078;
    border-right: 1px solid #e2e5ea;
    white-space: nowrap;
}

.box.models-list .model-summary {
    display: inline-block;
    vertical-align: top;
    padding: 15px 15px 0px 0px;
}

.model-summary__value {
    font-weight: 600;
    color: #2c2f33;
}

@media (max-width: 720px) {
    .selected-model { flex-direction: column; }
    .selected-model .card-model { width:100%; }
    .model-summary__label {
        display:block;
        width:auto;
        border-right:none;
        border-bottom:0;
    }
    .model-summary__value {
        display:block;
        padding-top:0;
    }
    .model-summary__table td {
        display:block;
        border-right:none!important;
    }
    .model-summary__table tr + tr td:first-child {
        border-top:1px solid #e8ebef;
    }
}



.alphabet-filter-channel li {
    text-align: center;
    display: inline-block;
}

.alphabet-filter-channel li a {
    color: rgb(94, 94, 94);
    padding: 10px;

    text-align: center;
    display: inline-block;
    vertical-align: top;
    color: rgb(94, 94, 94);
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
    margin: 0px 3px 5px 0px;
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(160, 160, 160);
    border-image: initial;

    transition: 0.3s;
    background-color: rgba(94, 94, 94, 0.15);
}



li.alphabet__link.disable span {
    color: rgb(94, 94, 94);
    padding: 10px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    color: #fff;
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
    margin: 0px 3px 5px 0px;
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(160, 160, 160);
    border-image: initial;
    /* transition: 0.3s; */
    background-color: rgb(8 8 8 / 79%);
}

img.zodiac-icon {
    width: 30px;
    height: auto;
    margin-right: 10px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-item svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
    margin-right: 5px;
}

.dark .info-item svg {
    fill: rgb(0 0 0);
}

span.rank {
    display: inline-flex;
padding: 0.15rem 0.45rem;
    border-radius: 9999px;
    font-size: 0.875rem;

}
/* блок ранга */
.rank            { display:inline-flex; align-items:center; gap:0.4rem; line-height:1; }
.rank svg        { width:1em; height:1em; flex:0 0 auto; }

/* «погоны» */
.rank-diff       {
	display:flex;            /* вертикально */
	flex-direction:column;
	align-items:center;
	font-size:0.75em;        /* чуть меньше числа ранга */
	line-height:1;
}
.rank-diff span  { line-height:1; }

/* цвета */
.rank-diff.up    { color:#16a34a; }  /* зелёный  */
.rank-diff.down  { color:#dc2626; }  /* красный  */
.rank-diff.same  { color:#6b7280; }  /* серый    */

/* направляем вниз и вбок через rotate */
.rank-diff.down  /* { transform:rotate(180deg); } */ /* вниз  */
.rank-diff.same {
    /* transform: rotate(90deg); */
}/* вправо («нет изменений») */



span.rank svg {
    line-height: initial;
    -moz-osx-font-smoothing: grayscale;
    width: 22px;
    margin-right: 5px;
}

span.rank-diff.same svg {
    /* width: 20px; */
    font-size: 22px;
}

.styled-info .info-item img.model-flag {
    width: 30px;
    vertical-align: middle;
}


.alphabet-filter-channel li.is-active a {
	    border-color: #e6184e;
    background: #e6184e;
    color: #fff;
}

.alphabet-filter-channel li:hover a {
    border-color: #e6184e;
    background: #e6184e;
    color: #fff;
}

.alphabet-filter-channel li.disable a {

    background-color: rgba(94, 94, 94, 0.5);
    pointer-events: none;
    cursor: default;
}


.styled-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.styled-info .info-item {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 0 3px rgba(0,0,0,0.05);
  font-size: 14px;
  flex: 1 1 45%;
}

@media screen and (max-width: 992px) {
    .styled-info .info-item {
        flex: 1 1 100%;
    }
}

.styled-info .info-item i {
  margin-right: 8px;
  color: #888;
  min-width: 18px;
  text-align: center;
}

.styled-info .info-item .label {
  font-weight: 600;
  margin-right: 5px;
  color: #333;
}

.styled-info .info-item .value {
  color: #000;
}


.search-form-ajax .input {
    width: 447px;
    -webkit-box-shadow: 0 0 3px rgba(94, 94, 94, 0.5);
    box-shadow: 0 0 3px rgba(94, 94, 94, 0.5);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
    opacity: .45;
    color: #5e5e5e;
    font-size: 15px;
    line-height: 17px;
    font-weight: 300;
    border: 0;
    padding: 7px 37px 7px 10px;
    -webkit-transition: -webkit-box-shadow .3s;
    transition: -webkit-box-shadow .3s;
    -o-transition: box-shadow .3s;
    transition: box-shadow .3s;
    transition: box-shadow .3s, -webkit-box-shadow .3s;
}

.search-form-ajax {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
.search-form-ajax .input {
    width: 100%;
  }
  
.search-form-ajax {
    width: 100%;
    margin: 10px 0 10px;
  }
  
  
}

.search-form-ajax .btn-search {
    position: absolute;
    top: 0;
    padding: 7px 10px;
    right: 0;
    line-height: 0;
}

.serach-info-autocomplete .autocomplete-suggestion {
    display: block;
    width: 100%;
}

.serach-info-autocomplete {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
    z-index: 99999 !important;
    overflow: hidden;
    max-height: 9999px !important;
}




.serach-info-autocomplete .link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 7px 10px;
    color: #5e5e5e;
    font-size: 16px;
    line-height: 18px;
    font-weight: 300;
    -webkit-transition: color .3s, background .3s;
    -o-transition: color .3s, background .3s;
    transition: color .3s, background .3s;
    display: block;
}
	
.serach-info-autocomplete .link i {
    font-size: 17px;
    margin: 0 5px 0 0;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    display: inline-block;
    color: #5e5e5e;
}


.search_all {
    padding: 10px;
    border-top: 1px solid #333;
    text-align: center;
    display: block;
    width: 100%;
}


.search_all a {




    align-items: center;
    -webkit-box-pack: start;


    justify-content: flex-start;


    flex-wrap: nowrap;
    padding: 7px 10px;

    font-size: 16px;
    line-height: 18px;

    font-weight: 500;
    color: #e6184f;
    display: initial;

    transition: color .3s, background .3s;
}

.dark .alphabet-filter-channel li a {
    border: 1px solid rgb(160, 160, 160);
    color: rgb(255, 255, 255);
}


.serach-info-autocomplete .link strong {
    font-weight: 500;
    color: #e6184f;
    display: initial;
    -webkit-transition: color .3s, background .3s;
    -o-transition: color .3s, background .3s;
    transition: color .3s, background .3s;
}

	
	.serach-info-autocomplete .title .link {
    pointer-events: none;
    cursor: default;
    display: block;
    width: 100%;
    background-color: #f8f6f6;
    color: #e6184e;
    font-weight: 500;
}

.search-form-ajax .btn-search i {
    font-size: 17px;
    color: #5e5e5e;
    opacity: .5;
}


.rating-holder.rating-display {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #f9f9f9;
}

.rating-item {
  flex: 1 1 45%;
  min-width: 140px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  transition: background 0.3s ease, transform 0.2s ease;
}

.rating-item:hover {
  background: #eef6ff;
  transform: scale(1.02);
}

.rating-item i {
  font-size: 20px;
  color: #555;
  transition: color 0.3s ease;
}

.rating-item:hover i {
  color: #007bff;
}

.label {
  font-weight: 600;
  color: #333;
}

.value {
  margin-left: auto;
  font-weight: 700;
  font-size: 16px;
}

.rating-fav {
    margin-bottom: 20px;
    display: block;
    width
}


.value-like    { color: #28a745; }
.value-dislike { color: #dc3545; }
.value-rating  { color: #ffc107; }
.value-rank    { color: #6f42c1; }
.value-total   { color: #17a2b8; }
.value-views   { color: #343a40; }



/* 📱 Адаптивность */
@media (max-width: 600px) {
	  .rating-item {
    flex: 1 1 100%;
  }
  
.styled-info .info-item {
    flex: 1 1 100%;
}
}


.dark .filter-group .row-item {
    background-color: #282828;
    color: #fff;
    border: none;
}


.dark .filter-group strong {
    color: #fff;
}


 .player .player-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}


.box.models-list .item-text {
    width: calc(100% - 250px);
	    display: inline-block;
    vertical-align: top;
    padding: 15px 15px 0 0;
}

.item-text p {

    color: #100f0f;

    display: flex
;
    justify-content: center;
    align-items: center;

    height: 100px;
    font-size: 18px;
    text-align: center;
}


.item-text .reset-button {
    width: 200px;
    display: block;
    font-size: 14px;
    text-transform: capitalize;
    color: #ffffff;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    cursor: pointer;
    text-align: center;
    width: 200px;
    margin: 10px auto 0;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.item-text .btn-fil:hover {
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
    transform: scale(1.05);
}

.item-text .btn-fil:active {
    transform: scale(0.95);
}



@media screen and (max-width: 767px) {
    .box.models-list .item-text {
        width: 100%;
    }
}



.search-form .btn-search {
    position: absolute;
    top: 0;
    padding: 7px 10px;
    right: 0;
    line-height: 0;
}
.search-form .btn-search i {
    font-size: 17px;
    color: #5e5e5e;
    opacity: .5;
}

.search-form {
    position: relative;
	    margin: 0 auto;
}

.icon-search:before {
    content: "\e90b";
}
.search-form .btn-search i {
    font-size: 17px;
    color: #5e5e5e;
    opacity: .5;
}



.select2-selection__arrow b, [class*=" icon-"], [class^=icon-] {
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


@media screen and (max-width: 767px) {
  .search-form .input {
        width: 100%;
    }
 .search-form {
        width: 100%;
        margin: 10px 0 0;
    }
}


.gallery {
    display: flex
;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}


.gallery a {
    display: inline-block;
    margin: 10px;
    width: 200px;
    height: 200px;
    overflow: hidden;
    position: relative;
}




@media screen and (max-width: 768px) {
    .gallery a {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
        box-sizing: border-box;
        margin: 0;
        width: auto;
        height: auto;
    }
}


.gallery a img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}



.search-form input:focus-visible {
  outline: 1px auto transparent !important; /* ширина и стиль — те же, цвет — прозрачный */
}


.block-screenshots .gallery a img {

    -webkit-filter: blur(4px);
    filter: blur(4px);
}


.block-screenshots .gallery a:hover img {
 -webkit-filter: blur(0px);
    filter: blur(0px);
}


   


.pagination .pagination-holder .item-pagin .link.dis {
    display: none;
}


.player-holder .tabs-content .info-block.show {
    display: block;
}



#btn-filt {
display:none;
}


@media screen and (max-width: 1024px) {
	#btn-filt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #ff3c8d, #ff894c);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(255, 60, 141, 0.3);
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 0.5px;
      margin: 10px auto;
}

#btn-filt:hover {
  background: linear-gradient(135deg, #ff894c, #ff3c8d);
  box-shadow: 0 6px 14px rgba(255, 60, 141, 0.4);
  transform: translateY(-2px);
}

#btn-filt:active {
  transform: scale(0.96);
  box-shadow: 0 2px 6px rgba(255, 60, 141, 0.2);
}

#btn-filt span {
  pointer-events: none;
}
}





.stat {
    text-align: center;
}



span.title-model {
    color: #3b12ce;
}


.filter-group .row-item {
    display: inline-block;
    vertical-align: top;
    margin: 0 3px 5px 0;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #a0a0a0;
    color: #5e5e5e;
    font-size: 12px;
    line-height: 12px;
    padding: 5px;
    font-weight: 500;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}


.filter-group .row-item {
    display: inline-block;
    vertical-align: top;
    margin: 0 3px 5px 0;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #a0a0a0;
    color: #5e5e5e;
    font-size: 12px;
    line-height: 12px;
    padding: 5px;
    font-weight: 500;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}


.filter-group  a.row-item.active, .filter-group a:hover  {
    color: #fff;
    background: #e6184e;
}


.filter-group  a.row-item.active {
  pointer-events: none;      /* не даёт кликать */
  cursor: default;           /* курсор обычный */

}


@media screen and (min-width: 1024px) {
	
	 .video-holder .categor-holder .row-item:hover {
    color: #fff;

    border-color: #e6184e;

    background: #e6184e;

  }

}


.filter-group strong {
    color: #5e5e5e;
    font-size: 16px;
    line-height: 18px;
    padding: 0 0 10px;
    font-weight: 500;
	display: block;
}





	span.title-filter {
    color: #1ce20d;
}

img.logo-dark {
    display: none;
}

.dark img.logo-light {
    display: none;
}

.dark img.logo-dark {
    display: block!important;
}

.box .sort-holder .sort .selected.active {
    pointer-events: auto;
    cursor: pointer;
}

.box .channals-list .item .img-holder.channel {
    padding-bottom: 57%;
}

.box .channals-list .item .img-holder.channel holder .img {
    width: auto;
    height: 100%;
}

.video-player {
    width: 100%;
    display: none;
}


.card__content video {
    display: none;
    position: absolute;
    z-index: 2;
    object-fit: fill;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    left: -2px;
    top: -2px;
}

.video-trigger:hover .video-player, .video-trigger:focus .video-player {
    display: block;
}




.sign-list .current {
    font-weight: bold;
    color: #007bff;
}
.sign-list div {
    display: inline-block;
    margin-right: 10px;
}
.step-form {
    margin-top: 20px;
}



.fancybox-content-inner, .fancybox-outer {
  height: auto !important;
}

.loader {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



img.eye-icon {
	    width: 20px;
}

.buttonForm-30c7d {
    margin-bottom: 10px;
}

.button-c84fb {
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .16);
    color: #303030;
    display: flex;
    height: 40px;
    justify-content: center;
    width: 100%;
}


.xh-button.large {
    border-radius: 20px;
    font-size: 14px;
    height: 40px;
    line-height: 38px;
    min-width: 60px;
    padding: 0 20px 2px;
}

.xh-button.full-width, .xh-button.full-width-square {
    width: 100%;
}

.xh-button.full-width-square, .xh-button.square {
    border-radius: 5px;
    font-weight: 700;
}
.xh-button.red {
    background: #e34449;
    border-color: #e34449;
    color: #fff;
}

form#login-form, form#register-form {
    margin-bottom: 15px;
}


.comment-row {
    display: flex
;
    -webkit-box-align: center;
    align-items: center;
    flex-shrink: 0;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.iconWrapper-c84fb {
    display: flex;
    margin-right: 10px;
}

.primary-8643e {
    color: #303030;
}


.section {
    padding-bottom: 15px;
}

.ExploreFilters {
    font-size: 62.5%;
}


.list-grid-ads>:first-child {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}
.btn-ps-cat span {
  color: #fd7500;
}

.btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.roomlist_container {
    flex: 1 1 0px;
    margin: 0px 15px;
    position: relative;
	    margin: 12px 12px 17px;
}



.list-playlists .img, .list-playlists-2 .img {
    width: 100%;
    border: 1px solid #1f1f21;
    padding-bottom: 56.25%;
    position: relative;
}

.item .img img.video2 {
    right: 5px;
    top: 46px;
}
.item .img img.video2, .item .img img.video3, .item .img img.video4 {
    border: 1px solid #505050;
    position: absolute;
    width: 80px;
    height: 46px;
    z-index: 1;
}

.item .img img.video3 {
    right: 5px;
    top: 98px;
}


.overlay-side {
    text-transform: capitalize;
    font-size: 12px;
    width: 90px !important;
    background: rgba(0, 0, 0, 0.8);
    color: #f1f1f1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
}


.overlay-side span em {
    display: block;
    font: 22px "Roboto Condensed", sans-serif;
}

.playlist-overlay {
    background: rgba(0, 0, 0, 0.7);
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
}


.list-playlists .img .playlist-overlay a, .list-playlists-2 .img .playlist-overlay a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: #f1f1f1;
    height: 50%;
    border-top: 1px solid #0d0e12;
    cursor: pointer;
}


.playAll svg, .viewPl svg {
    font-size: 15px !important;
    margin-right: 8px !important;
}


.item i, .item svg {
    font-size: 14px;
    margin-right: 5px;
}


.playAll .pTxt, .viewPl .pTxt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
}


.list-grid-ads .item .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    font: 13px 'Roboto', sans-serif;
    margin: 5px 0 2px 0;
    text-transform: capitalize;
}

.item .title-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.list-grid .item .row-model, .list-grid-ads .item .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    padding: 0px 4px 2px;
}


.list-grid-ads .item .row {
    padding: 0px;
}



.flex-c {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.item .m-num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    color: #909090;
    font-size: 12px;
    padding: 3px 10px 0 0;
}


.item i, .item svg {
    font-size: 14px;
    margin-right: 5px;
}
.icon-svg {
    display: block;
    width: 1em;
    height: 1em;
    margin: 0;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}


.ps-user {
    font: 400 11px "Roboto", sans-serif;
    padding: 5px 0 0 0;
}

.list-playlists .item .m-num.rate, .list-playlists-2 .item .m-num.rate {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}




.item-control .item-control-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}


.item-control .item-contr-edi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
}

.toggle-button {
    color: #f1f1f1;
    text-transform: capitalize;
    padding: 7px 9px;
    background: #313131;
    cursor: pointer;
}



.item-control .toggle-button {
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 500;
    background: #2d2d2d;
    border-radius: 3px;
    padding: 6px 10px;
    color: #fff;
    margin: 0 5px 0 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.item-control .toggle-button:last-child {
    margin: 0;
}
.item-control .toggle-button:last-child {
    margin: 0;
}
.item .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-family: 'Roboto Condensed', sans-serif;
    padding: 0 4px 2px 2px;
}





.grad {
    --btn-bg: var(--orange-grad);
    --btn-color: #fff;
    -webkit-transition: background 0.3s ease-out;
    transition: background 0.3s ease-out;
    background-size: 1px 50px;
}
.btn, .btn:active, .btn:focus, .btn:hover {
    color: #fff;
}






.rot-180 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.icon-svg {
    display: block;
    width: 1em;
    height: 1em;
    margin: 0;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

/* fonts */
@font-face {
  font-family: 'UbuntuRegular';
  src: url('../fonts/ubunturegular/ubuntur-webfont.eot?1188017abdc0');
  src: url('../fonts/ubunturegular/ubuntur-webfont.eot?&1188017abdc0#iefix') format('eot'),
  url('../fonts/ubunturegular/ubuntur-webfont.woff?896a82003cd1') format('woff'),
  url('../fonts/ubunturegular/ubuntur-webfont.ttf?37cf452b3f58') format('truetype'),
  url('../fonts/ubunturegular/ubuntur-webfont.svg?396700312810#webfontH0ji1hXa') format('svg');
  font-weight: normal;
  font-style: normal;
  }
@font-face {
  font-family: 'UbuntuBold';
  src: url('../fonts/ubuntub-webfont.eot?a870ebadce32');
  src: url('../fonts/ubuntub-webfont.eot?&a870ebadce32#iefix') format('eot'),
  url('../fonts/ubuntub-webfont.woff?6455d1004bc5') format('woff'),
  url('../fonts/ubuntub-webfont.ttf?abee57aeee27') format('truetype'),
  url('../fonts/ubuntub-webfont.svg?693d742037eb#webfontOIyUgfKw') format('svg');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'UbuntuMedium';
  src: url('../fonts/ubuntumedium/ubuntum-webfont.eot?d8f8ba0da549');
  src: url('../fonts/ubuntumedium/ubuntum-webfont.eot?&d8f8ba0da549#iefix') format('eot'),
  url('../fonts/ubuntumedium/ubuntum-webfont.woff?a7fc63c36394') format('woff'),
  url('../fonts/ubuntumedium/ubuntum-webfont.ttf?b720a4d699c2') format('truetype'),
  url('../fonts/ubuntumedium/ubuntum-webfont.svg?c08a26c0b9c4#webfontl8qOUOft') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'UbuntuLight';
  src: url('../fonts/ubuntul-webfont.eot?&e88fce520190#iefix') format('eot'),
  url('../fonts/ubuntul-webfont.woff?ab8a55e7d148') format('woff'),
  url('../fonts/ubuntul-webfont.ttf?107b250100bf') format('truetype'),
  url('../fonts/ubuntul-webfont.svg?273b9d2d1b08') format('svg');
  font-weight: normal;
  font-style: normal;
}

.main-content-container {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
    min-width: 1px;
}

.embed-wrap {

    text-align: center;
}

img.room_thumbnail {

    width: auto;
    height: 101px;
}

a.room_thumbnail_container {
    min-height: 101px;
    display: block;
}

#roomlist_root .roomlist_container ul.list .room_thumbnail, #roomlist_root .placeholder_roomlist_container ul.list .room_thumbnail {
    /* width: 100%; */
    /* height: auto; */
	    min-height: 101px;
    display: block;
}


.ico-fav-0, .ico-fav-1 {
    opacity: 0;
    visibility: hidden;
}
.ico-fav-0,  .ico-fav-1 {
    width: 26px;
    height: 26px;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.68);
    border-radius: 50%;
    -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
    opacity: 0;
    visibility: hidden;
}

.video-trigger .ico-fav-0.fixed, .video-trigger .ico-fav-1.fixed, .video-trigger:hover [class*=ico-fav] {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.video-trigger .ico-fav-0:hover, .video-trigger .ico-fav-1:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}


span.favorite-tooltip, span.favorite-message {
    position: absolute;
    z-index: 9;
    /* position: relative; */
    background: #000000;
    border-radius: 5px;
    padding: 7px 5px;
    /* FONT-WEIGHT: 500; */
    /* transform: rotate(180deg); */
    margin-top: 5px;
    color: red;
    right: 40px;
}

span.favorite-tooltip, span.favorite-message {
    position: absolute;
    z-index: 9;
    /* position: relative; */
    background: #000000;
    border-radius: 5px;
    padding: 7px 5px;
    /* FONT-WEIGHT: 500; */
    /* transform: rotate(180deg); */
    margin-top: 5px;
    color: red;
    right: 40px;
    position: absolute;
    top: 5px;
    /* right: 5px; */
}

.tag-search {
    position: relative;
    max-width: 300px;
}

#tag-search-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

div#tag-search-results {
    display: none;
}

.tag-result {
    display: block;
    padding: 8px;
    color: #333;
    text-decoration: none;
}
[data-filter="filterCategory"]{
    list-style: none;
}

b.num {
    margin-left: 5px;
}



.models .models_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.model_container .item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}


.cardTitle.title a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.channel-stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
}

.tag-result:hover {
    background: #f0f0f0;
}


.model.rating-container .success {
    color: #12ff00;

}

.gender-tab {
    display: inline-block;
    position: relative;
    font: 13.0029px / 16px UbuntuMedium, Arial, Helvetica, sans-serif;
}


.advanced-search-button-container {
    position: relative;
    list-style-type: none;
    float: right;
    margin: 0px;
    padding: 0px;
    z-index: 2;

}


@media screen and (min-width: 650px) {
.sort-block {
    display: flex;

}	
	
}
.channel_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.list-tags .title{margin-right:30px;color: #2a323f;font-size:21px;font-weight:700;line-height:1.2;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}


.list-tags .item .title{height:auto;font-size:24px;font-weight:700;line-height:25px;margin:0;padding:20px 0 15px 10px}

.category-list {
    list-style: none;
}



.search-container {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 25px;
    padding: 5px 10px;
    max-width: 100%;
    margin: 2px 10px;
}


.search-btn svg {
    fill: #666;
    transition: fill 0.3s ease;
}

.search-btn:hover svg {
    fill: #000;
}

.search-container input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 16px;
    color: #333;
    background-color: transparent;
    width: 100%;
}
.search-container input::placeholder {
    color: #aaa;
}

#searchResults {
    margin-top: 1px;
    /* max-width: 400px; */
    /* margin: 10px auto; */
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    display: none;
}

#searchResults ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#searchResults ul li {
    margin: 5px 0;
}

#searchResults ul li a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

#searchResults ul li a:hover {
    color: #0056b3;
}


.seo-description b, .seo-description h2 {
font: 13.0029px / 16px UbuntuMedium, Arial, Helvetica, sans-serif;
}

.seo-description ul.list-style {
    list-style: auto;
    line-height: 1.6;
    margin-bottom: 1rem;
    list-style-position: outside;
	    margin-left: 5rem;
}

.seo-description h1, .seo-description h2, .seo-description h3, .seo-description h4, .seo-description h5, .seo-description h6 {
    font-family: Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: inherit;
    text-rendering: optimizeLegibility;
    margin-top: 0;
    margin-bottom: .5rem;
    line-height: 1.4;
}


.seo-description h2 {
    line-height: 1.5;
    color: #adadad;
}

.seo-description h1,  .seo-description h2, .seo-description h3, .seo-description h4, .seo-description h5, .seo-description h6, .seo-description p, .seo-description ul, .seo-description div.cam-block
  {
	  text-align: left;
    margin-left: 3rem;
    margin-right: 1%;
    color: #000;
}
.seo-description b {
    margin-bottom: .5rem;
	}
	
	.seo-description a {
  
    color: #0073e6;
}

.seo-description a:hover {
    color: #0606f0;
}



	
.seo-description  p {
    font-size: inherit;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-rendering: optimizeLegibility;
}

.seo-description strong {
    font-weight: bold;  /* Жирное выделение для важного текста */
    color: #0073e6;  /* Цвет для выделенного текста */
}






.AddPlaylist.show {
    display: block;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #aaa;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
	    z-index: 9;
}

.stats-cont b svg.icon-svg.icon-thumbs-down, .stats-cont b svg.icon-svg.icon-thumbs-up {
    margin-right: 5px;
    font-size: 15px;
}



form .radio+label:before, form .radio+span:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: #111;
    border: 2px solid #fd7500;
    border-radius: 50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.video-trigger-dropdown-videos .img {

    height: 90px;
}


#tab_addto span.favorite-tooltip {
    right: unset;
    left: 260px;
    top: 0;
}

#tab_addto span.favorite-message {
    right: unset;
  left: 260px;
    top: 0;
}

.related-albums .list-sort li, .related-videos .list-sort li, .related-videos-two list-sort li {

    cursor: pointer;
}

.video-trigger.description em {
    color: #fff;
}
.video-trigger.description {
    border: none;
    color: #ed930d;
}

a.next.page-numbers, a.prev.page-numbers {
    color: #f1f1f1;
    padding: 0 20px;
    background: var(--orange-grad);
}

.list_categories_dropdown .video-trigger .img {
    padding: 0;
    overflow: hidden;
    height: 100%;
}



div#avatarModal {
    z-index: 88;
}

 .fancybox-skin {
    border-radius: 3px;
    background: #212121;
}



.channel-infos .btn-other.active {
    border-bottom: 2px solid #ff6407;
}

.tab-panel {
    display: none;
}
.video-trigger .img .thumb:first-child, .video-trigger .img picture .thumb {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}


.tab-panel.show {
    display: block;
}


.model.rating-container {
    position: relative;
}






.page--numbers {
    gap: 10px;
}

.pagination .page--item {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    min-width: 48px;
    height: 48px;
    background: #111;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    border: 3px solid transparent;
}

.pagination .page--active {
    color: #fff;
    background: #000;
    border-color: #fd7500;
    pointer-events: none;
}

.pagination .page--arrow {
    color: #f1f1f1;
    background: #fd7500;
    padding: 0 30px;
}

.page--arrow.dis {
    pointer-events: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    background: #0b0b0b;
    border: 1px solid #111;
}

.page--arrow.dis img {
    opacity: 0.1;
}





.chan-avatar {
	    width: 230px;
    height: auto;
}

.chan-avatar img {
    -o-object-fit: cover;
    object-fit: fill;
    -o-object-position: 0 0;
    object-position: 0 0;
}

.dropdown__link.open {
    display: none;
}

.player-wrapper {
    width: 100%;
}

.player-wrapper iframe { 
max-width: 100%;

}

.video-player {
    width: 100%;
    display: none; /* Скрываем видео изначально */
}

.video-trigger:hover .video-player, .video-trigger:focus .video-player  {
    display: block; /* Показываем видео при наведении */
}


img.card__img-gallery {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}





.gallery a:hover img.small-img,
.gallery a:focus img.small-img {
    transform: scale(1.5); /* Увеличение при наведении или фокусе */
    cursor: pointer;
}


.fancybox-button--close {
    display: block !important; 
    opacity: 1 !important; 
    visibility: visible !important;
}

.fancybox-toolbar {
    right: 0!important;
    top: 50px!important;
}
.fancybox-caption, .fancybox-infobar, .fancybox-navigation .fancybox-button, .fancybox-toolbar {
    direction: ltr;
    /* opacity: 0; */
    position: absolute;
    transition: opacity .25s ease, visibility 0s ease .25s;
    /* visibility: hidden; */
    z-index: 99997;
}

form .file-control .textfield {
    padding-left: 75px;
}

/* Стилизация инфобара */
.fancybox-infobar {
    color: #666; /* Цвет текста инфобара */
    font-size: 14px; /* Размер шрифта */
    padding: 10px; /* Внутренний отступ */
}

/* Стилизация кнопок */
.fancybox-button {
    width: 40px; /* Ширина кнопки */
    height: 40px; /* Высота кнопки */
    background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный чёрный фон */
    border: none; /* Убрать границу */
    border-radius: 5px; /* Скруглённые углы */
}

/* Иконки кнопок */
.fancybox-button svg {
    fill: #fff; /* Белый цвет иконок */
    width: 20px; /* Ширина иконки */
    height: 20px; /* Высота иконки */
}

/* Стилизация кнопки закрытия */
.fancybox-button--close {
    position: absolute; /* Абсолютное позиционирование */
    top: 10px; /* Отступ сверху */
    right: 10px; /* Отступ справа */
    background-color: #f00; /* Красный фон */
}

/* Стилизация кнопок навигации */
.fancybox-button--arrow_left, .fancybox-button--arrow_right {
    background-color: #000; /* Чёрный фон */
}


.video-trigger video {
    display: none;
    object-fit: fill;
    width: calc(100% + 10px);
    height: calc(100% + 10px);

    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 9;
}
.video-trigger:hover .video-player, .video-trigger:focus .video-player {
    display: block;
}


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

.player-wrap {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}


.player-wrap  iframe {
    height: auto;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
}


.box .item .img-holder.gallery .img {
    height: 100%;
}

.box .item .img-holder .img {

    height: 100%;
}


 }
 
 



 
