:root {
  --background: #0d0d11;
  --foreground: #fafafa;
  --card: #18181b;
  --popover: #1d1d21;
  --primary: #a8173a;
  --primary-hover: #c9264f;
  --primary-soft: rgba(168, 23, 58, .22);
  --secondary: #27272a;
  --muted: #222228;
  --muted-foreground: #b5b5bc;
  --border: #3f3f46;
  --ring: #fb7185;
  --accent-alt: #ff99a8;
  --bg-page: #0d0d11;
  --bg-surface: #18181b;
  --bg-overlay: rgba(0, 0, 0, .72);
  --text-1: #f8fafc;
  --text-2: #b5b5bc;
  --text-3: #7c7c86;
  --chip-bg: rgba(255, 255, 255, .06);
  --chip-border: rgba(255, 255, 255, .09);
  --chip-text: #d9d9df;
  --item-img-thumb: rgba(255, 255, 255, .06);
  --badge-quality-bg: #ff99a8;
  --badge-quality-text: #16070c;
  --radius-thumbnail: 8px;
  --space-1: 4px;
  --space-1_5: 6px;
  --space-2: 8px;
  --space-2_5: 10px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
}

* {
  box-sizing: border-box;
  outline: none;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--bg-page);
  color: var(--foreground);
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  padding-top: 48px;
  background: radial-gradient(circle at 20% 0, rgba(168, 23, 58, .16), transparent 34%), var(--bg-page);
  color: var(--text-1);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 14px;
  line-height: 1.35;
  -webkit-tap-highlight-color: transparent;
}

body.pm-menu-open,
body.pm-search-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, transform .2s ease;
}

a:hover,
a:focus {
  color: var(--accent-alt);
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  border: 0;
  vertical-align: bottom;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.skip-to-main-content {
  position: absolute;
  top: -120px;
  left: 50%;
  z-index: 10000;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  transform: translateX(-50%);
}

.skip-to-main-content:focus {
  top: 8px;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container,
.footer,
main {
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
}

.container {
  padding-left: 10px;
  padding-right: 10px;
}

main {
  display: block;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 8px 0;
  background: rgba(24, 24, 27, .98);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .24);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 32px;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.header-left {
  flex: 1 1 auto;
}

.header-right {
  flex: 0 0 auto;
}

.button_root_menu,
.show_search,
.show_flag,
.nav_close,
.menu_close,
.form_submit {
  border: 0;
  background: none;
  color: inherit;
  padding: 0;
}

.button_root_menu {
  width: 34px;
  height: 34px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
  background: var(--secondary);
  border: 1px solid rgba(255, 255, 255, .07);
}

.button_root_menu span {
  width: 17px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: var(--text-1);
  transition: transform .2s ease, opacity .2s ease;
}

.button_root_menu.menu_open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.button_root_menu.menu_open span:nth-child(2) {
  opacity: 0;
}

.button_root_menu.menu_open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.logo {
  display: inline-flex;
  align-items: baseline;
  flex: 0 0 auto;
  min-width: 0;
  height: 34px;
  color: var(--text-1);
  font-size: 22px;
  font-weight: 800;
  line-height: 34px;
  letter-spacing: -.05em;
  white-space: nowrap;
  text-transform: lowercase;
}

.logo:hover,
.logo:focus {
  color: var(--text-1);
}

.logo-word {
  color: #fff;
}

.logo-tail {
  margin-left: 2px;
  color: var(--accent-alt);
}

.search {
  display: none;
  flex: 1 1 auto;
  max-width: 500px;
}

.search form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search-text {
  display: block;
  width: 100%;
}

.search input {
  width: 100%;
  height: 34px;
  padding: 0 42px 0 13px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  background: #101014;
  color: var(--text-1);
  box-shadow: none;
  -webkit-appearance: none;
}

.search input::placeholder {
  color: var(--text-3);
}

.search input:focus {
  border-color: var(--ring);
}

.form_submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 8px 8px 0;
  color: var(--muted-foreground);
}

.icon-search,
.icon-like,
.icon-dislike,
.icon-eye {
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
  vertical-align: -3px;
}

.icon-search:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 9px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-search:after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 7px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.icon-like:before {
  content: "+";
  font-weight: 800;
}

.icon-dislike:before {
  content: "-";
  font-weight: 800;
}

.icon-eye:before {
  content: "";
  position: absolute;
  left: 1px;
  top: 4px;
  width: 14px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.top_menu {
  display: none;
}

.top_menu ul {
  display: flex;
  align-items: center;
  gap: 3px;
}

.top_menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted-foreground);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.top_menu li.active a,
.top_menu a:hover {
  background: var(--secondary);
  color: var(--text-1);
}

.show_search,
.show_flag {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--secondary);
  border: 1px solid rgba(255, 255, 255, .07);
  color: var(--text-1);
  font-weight: 700;
  font-size: 11px;
}

.change-lang {
  position: relative;
}

.change-lang__list {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 110;
  display: none;
  width: 220px;
  max-height: 420px;
  overflow: auto;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--popover);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .45);
}

.change-lang__list.active {
  display: block;
}

.change-lang__list a {
  display: block;
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--muted-foreground);
}

.change-lang__list a:hover,
.change-lang__list a.selected {
  background: var(--primary-soft);
  color: var(--text-1);
}

.pm-search-open .search {
  position: fixed;
  top: 49px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: block;
  max-width: none;
  padding: 12px;
  background: rgba(13, 13, 17, .98);
}

.pm-search-open .search form {
  max-width: 760px;
  margin: 0 auto;
}

.pm-search-open .search input {
  height: 42px;
}

.pm-search-open .form_submit {
  height: 42px;
}

.menu_holder {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.menu_holder.open {
  display: block;
}

.menu_close {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .62);
}

.root_menu_holder {
  position: relative;
  width: min(370px, 88vw);
  height: 100%;
  padding: 12px;
  overflow: auto;
  background: var(--popover);
  border-right: 1px solid var(--border);
  box-shadow: 16px 0 60px rgba(0, 0, 0, .45);
  animation: pmMenuIn .18s ease both;
}

@keyframes pmMenuIn {
  from {
    transform: translateX(-18px);
    opacity: .5;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.nav_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 2px 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav_close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--secondary);
  color: var(--text-1);
  font-size: 26px;
  line-height: 1;
}

.root_menu {
  padding-top: 12px;
}

.navigation_menu a {
  display: block;
  padding: 12px 10px;
  border-radius: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  color: var(--text-1);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.navigation_menu a:hover {
  background: var(--primary-soft);
  color: var(--accent-alt);
}

.menu_languages {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.menu_title {
  margin-bottom: 10px;
  color: var(--text-3);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.menu_language_grid,
.footer-language-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.menu_language_grid a,
.footer-language-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid var(--chip-border);
  border-radius: 7px;
  background: var(--chip-bg);
  color: var(--chip-text);
  font-size: 12px;
}

.menu_language_grid a.selected,
.footer-language-grid a.selected,
.menu_language_grid a:hover,
.footer-language-grid a:hover {
  border-color: rgba(255, 153, 168, .45);
  background: var(--primary-soft);
  color: var(--text-1);
}

.dyn-cats {
  background: rgba(24, 24, 27, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.dyn-cats_inline {
  margin: 0 0 var(--space-4);
  border: 0;
  background: transparent;
}

.dyn-cats__track {
  display: flex;
  align-items: center;
  gap: 7px;
  overflow-x: auto;
  padding: 9px 0;
  scrollbar-width: none;
}

.dyn-cats__track::-webkit-scrollbar {
  display: none;
}

.dyn-cats a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid var(--chip-border);
  border-radius: 7px;
  background: var(--chip-bg);
  color: var(--chip-text);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.dyn-cats a:hover,
.dyn-cats a.selected {
  border-color: rgba(255, 153, 168, .42);
  background: var(--primary-soft);
  color: var(--text-1);
}

.content {
  flex: 1 0 auto;
  padding: var(--space-3) 0 0;
}

.global-adv {
  margin: 0 0 var(--space-3);
  overflow: hidden;
  text-align: center;
}

.headline {
  position: relative;
  display: block;
  min-height: 39px;
  margin: 0 0 var(--space-2);
  padding: 5px 4px;
  overflow: hidden;
  color: var(--text-3);
}

.headline:after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 153, 168, .55), rgba(255, 255, 255, .06), transparent);
}

h1,
h2 {
  float: left;
  max-width: 100%;
  padding: 4px 8px 4px 2px;
  margin-left: 6px;
  overflow: hidden;
  color: var(--text-1);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .06em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.list-videos {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -5px;
}

.item {
  display: inline-block;
  width: calc(50% - 10px);
  margin: 0 5px var(--space-4);
  color: var(--text-2);
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  vertical-align: top;
}

.item:hover {
  transform: translateY(-2px);
}

.item_a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-thumbnail);
  color: inherit;
  background: var(--bg-surface);
}

.img_thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--item-img-thumb);
  border-radius: var(--radius-thumbnail);
  background: var(--muted);
  transition: filter .2s ease, transform .2s ease;
}

.item:hover .img_thumb {
  filter: brightness(1.07);
  transform: scale(1.025);
}

.duration,
.quality,
.item_a .xv_views {
  position: absolute;
  z-index: 2;
  display: block;
  height: 17px;
  padding: 0 6px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 600;
  line-height: 17px;
}

.duration {
  top: 5px;
  right: 5px;
  background: var(--bg-overlay);
  color: var(--text-1);
}

.quality {
  top: 5px;
  left: 5px;
  background: var(--badge-quality-bg);
  color: var(--badge-quality-text);
}

.item_a .xv_views {
  left: 5px;
  bottom: 5px;
  max-width: calc(100% - 10px);
  overflow: hidden;
  background: var(--bg-overlay);
  color: var(--text-1);
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.item_title {
  display: block;
  margin: 0;
  padding: var(--space-2) 0 0;
  overflow: hidden;
  color: var(--text-1);
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 700;
  line-height: 1.3;
  text-overflow: ellipsis;
  text-transform: capitalize;
  white-space: nowrap;
}

.item_title:hover {
  color: var(--accent-alt);
}

.item_info_link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: var(--space-1_5);
  row-gap: var(--space-1);
  min-height: 22px;
  overflow: hidden;
  padding: var(--space-1) 0 0;
  line-height: 1;
}

.item_cs {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  height: 18px;
  padding: 0 6px;
  overflow: hidden;
  border: 1px solid var(--chip-border);
  border-radius: 4px;
  background: var(--chip-bg);
  color: var(--chip-text);
  font-size: 11px;
  line-height: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cs_views {
  color: var(--muted-foreground);
}

.listing-error {
  width: 100%;
  margin: var(--space-4) 5px;
  padding: 26px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-surface);
  color: var(--muted-foreground);
  text-align: center;
}

.pagination-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: var(--space-2) 0 var(--space-6);
}

.pagination-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
}

.pagination-holder > div {
  flex-basis: 100%;
  width: 100%;
  height: 0;
  overflow: hidden;
}

.pagination-holder > nav,
.pagination-holder nav.pagination,
.pagination-holder nav.pagination ul,
.pagination-holder ul.pagination,
.pagination-holder .pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination-holder li {
  display: inline-flex;
  margin: 0;
  padding: 0;
}

.pagination-holder a,
.pagination-holder li > span,
.pagination-holder span.current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--bg-surface);
  color: var(--muted-foreground);
  font-weight: 700;
}

.pagination-holder a:hover,
.pagination-holder .chosen > span,
.pagination-holder .active > a,
.pagination-holder span.current,
.pagination-holder .selected {
  border-color: rgba(255, 153, 168, .48);
  background: var(--primary);
  color: #fff;
}

.pagination-holder .pagination-ellipsis span,
.pagination-holder li > span[aria-hidden="true"] {
  min-width: 26px;
  border-color: transparent;
  background: transparent;
  color: var(--text-3);
  box-shadow: none;
}

.pagination-holder a span {
  display: inline;
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.pagination-count {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.video-stage {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  background: var(--bg-surface);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
}

.videoplayer-wrapper,
.video-holder,
.player-wrap {
  width: 100%;
}

.player-wrap {
  position: relative;
  background: #000;
}

.player-wrap:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.player-wrap > div,
.player-wrap iframe,
.player-wrap video {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.video-panel {
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.video-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.rate-button,
.video-stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--chip-border);
  border-radius: 8px;
  background: var(--chip-bg);
  color: var(--chip-text);
  font-weight: 700;
}

.rate-button:hover {
  border-color: rgba(255, 153, 168, .45);
  background: var(--primary-soft);
  color: #fff;
}

.video-rating {
  color: var(--accent-alt);
}

.rating-line {
  height: 4px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #09090b;
}

.rating-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent-alt));
}

.video-info {
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--text-2);
}

.info-row:last-child {
  margin-bottom: 0;
}

.video-description {
  display: block;
  line-height: 1.65;
}

.info-title {
  color: var(--text-3);
  font-weight: 700;
}

.info-value {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.info-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border: 1px solid var(--chip-border);
  border-radius: 7px;
  background: var(--chip-bg);
  color: var(--chip-text);
  font-size: 12px;
}

.info-tag:hover {
  border-color: rgba(255, 153, 168, .45);
  background: var(--primary-soft);
  color: #fff;
}

.related-videos {
  margin-top: var(--space-6);
}

.txt_intro,
.page-description {
  margin: var(--space-6) 0 0;
  padding: var(--space-5);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  background: rgba(24, 24, 27, .72);
  color: var(--text-2);
  line-height: 1.7;
}

.txt_intro h1,
.txt_intro h2,
.txt_intro h3,
.page-description h1,
.page-description h2,
.page-description h3 {
  float: none;
  margin: 0 0 10px;
  padding: 0;
  color: var(--text-1);
  font-size: 17px;
  letter-spacing: .03em;
  white-space: normal;
}

.txt_intro p,
.page-description p {
  margin: 0 0 10px;
}

.footer {
  display: block;
  margin-top: var(--space-8);
  padding: var(--space-5) var(--space-4) var(--space-3);
  border-top: 1px solid var(--border);
  background: transparent;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.7;
  text-align: left;
}

.footer .txt {
  max-width: 1480px;
  margin: 0 auto;
}

.footer-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: var(--space-5);
}

.footer-searches a {
  display: inline-flex;
  padding: 4px 8px;
  border: 1px solid var(--chip-border);
  border-radius: 6px;
  background: var(--chip-bg);
  color: var(--chip-text);
  font-size: 12px;
}

.footer-searches a:hover {
  border-color: rgba(255, 153, 168, .45);
  color: #fff;
}

.footer-columns {
  display: grid;
  gap: 18px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-title {
  color: var(--text-1);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-column a {
  color: var(--muted-foreground);
}

.footer-column a:hover {
  color: var(--accent-alt);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: var(--space-5);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  color: var(--text-3);
  font-size: 11px;
  text-align: center;
}

.footer-counters {
  display: inline-block;
}

.dmca-abuse-modal {
  display: none;
}

.dmca-abuse-modal.open {
  display: block;
}

[dir="rtl"] .root_menu_holder {
  margin-left: 0;
  margin-right: auto;
  border-left: 1px solid var(--border);
  border-right: 0;
}

[dir="rtl"] .form_submit {
  left: 0;
  right: auto;
  border-radius: 8px 0 0 8px;
}

[dir="rtl"] .search input {
  padding-left: 42px;
  padding-right: 13px;
}

[dir="rtl"] h1,
[dir="rtl"] h2 {
  float: right;
}

@media (min-width: 560px) {
  .item {
    width: calc(33.333% - 10px);
  }
}

@media (min-width: 840px) {
  .item {
    width: calc(25% - 12px);
    margin-left: 6px;
    margin-right: 6px;
  }

  .list-videos {
    margin-left: -6px;
    margin-right: -6px;
  }

  .footer-columns {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

@media (min-width: 1024px) {
  body {
    padding-top: 55px;
  }

  .header {
    position: absolute;
    padding: 8px 0;
    box-shadow: none;
  }

  .header-bar {
    min-height: 39px;
  }

  .logo {
    height: 39px;
    min-width: 178px;
    font-size: 28px;
    line-height: 39px;
  }

  .search {
    display: block;
  }

  .show_search {
    display: none;
  }

  .top_menu {
    display: block;
  }

  .content {
    padding-top: var(--space-5);
  }
}

@media (min-width: 1180px) {
  .item {
    width: calc(20% - 12px);
  }
}

@media (min-width: 1480px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 420px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .logo {
    max-width: 178px;
    overflow: hidden;
    font-size: 20px;
    text-overflow: ellipsis;
  }

  .item {
    width: calc(50% - 8px);
    margin-left: 4px;
    margin-right: 4px;
  }

  .list-videos {
    margin-left: -4px;
    margin-right: -4px;
  }

  .item_info_link {
    display: none;
  }
}
