/* ============================================
   FOCUS & ACCESSIBILITY - CRITICAL FIX
   ============================================ */
*:focus {
  outline: none;
}

*:focus-visible {
  outline: 2px solid #C83649;
  outline-offset: 2px;
}

/* ============================================
   REDUCED MOTION SUPPORT
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   BASE STYLES
   ============================================ */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: #151515;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  margin: 10px auto 10px 0;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  text-wrap: balance;
}

/* ============================================
   BUTTONS & INPUTS
   ============================================ */
.btn-exc1 {
  display: block;
  margin: 10px auto 20px auto;
  padding: 10px;
  border-radius: 5px;
  background: #360A17;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 2px solid #E4CAA5;
  box-shadow: 0 0 10px rgb(0 0 0 / 15%);
  text-shadow: 0 1px 2px rgb(0 0 0 / 50%);
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
  -webkit-transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(200, 54, 73, 0.3);
}
.btn-exc1:hover {
  background: #C83649;
  text-decoration: none;
  color: #E4CAA5;
}
.btn-exc1 span {
  color: #E4CAA5;
}
.btn-exc1:hover span {
  color: #ffffff;
}

.hzagl {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.hzagl h1, .hzagl h2, .hzagl h3 {
  margin: 0 auto 0 0;
}

.input {
  width: 100%;
  height: 35px;
  padding: 0 10px;
  border: 0;
  border-radius: 3px;
  background-color: #fff;
  box-sizing: border-box;
  font-size: 16px;
  color: #333;
}

.btn {
  min-width: 35px;
  height: 35px;
  padding: 0 10px;
  display: inline-block;
  border: 0;
  border-radius: 3px;
  box-sizing: border-box;
  background-color: #C83649;
  font-size: 14px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 35px;
  white-space: nowrap;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(200, 54, 73, 0.3);
}
.btn:hover {
  background-color: #a82d3d;
  text-decoration: none;
}
.btn.btn-alt {
  background-color: #E4CAA5;
  color: #000;
}
.btn.btn-sm {
  height: 24px;
  font-size: 14px;
  line-height: 24px;
}

/* ============================================
   LAYOUT
   ============================================ */
.wrapperc {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  margin-top: 100px;
  flex-grow: 1;
}

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background-color: #360A17;
  border-bottom: 2px solid #C83649;
  z-index: 9;
}
.headerblock {
  display: flex;
  align-items: center;
}

.alogo {
  display: inline-block;
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 35px;
  white-space: nowrap;
}
.alogo:hover {
  text-decoration: none;
}
.alogo span {
  color: #EAD8C1;
}
.alogo img {
  vertical-align: middle;
  min-width: 120px;
}

.togglers {
  margin-left: auto;
  display: none;
}
.togglers span {
  margin-right: 10px;
  display: inline-block;
  font-size: 22px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.togglers span:last-child {
  margin-right: 0;
}
.togglers span.toggled {
  color: #EAD8C1;
}

/* ============================================
   SEARCH
   ============================================ */
.search {
  position: relative;
  margin: 0 10px;
  flex-grow: 1;
}
.search label {
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 16px;
  line-height: 35px;
  color: #333;
}
.search-input {
  padding: 0 35px 0 70px;
}
.search-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 35px;
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  touch-action: manipulation;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.nav > ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.nav > ul > li {
  margin: 2px 5px 0 0;
  padding: 0;
  list-style: none;
  text-wrap: nowrap;
}
.nav > ul > li:last-child {
  margin: 2px 0 0 0;
}
.nav .la {
  margin: -2px 5px 0 0;
  vertical-align: middle;
  font-size: 18px;
}

/* ============================================
   LANGUAGE DROPDOWN
   ============================================ */
.dropdown.languages {
  align-self: baseline;
  margin-left: 5px;
  margin-top: 2px;
}
.languages img {
  margin: 0;
  display: inline-block;
}
.languages .flag-icon {
  margin: -1px 0 0 0;
  display: inline-block;
}
.languages li img {
  margin-right: 5px;
  display: inline-block;
}
.languages li .flag-icon {
  margin-right: 5px;
}
.languages .dropdown-lg {
  right: 0;
  left: auto;
}

/* ============================================
   THUMBNAIL GRID
   ============================================ */
.tabg {
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px 10px;
}

.thblock {
  min-width: 0;
}
.athlink, .thposter {
  display: block;
}
.thposter, .thposter2 {
  position: relative;
  padding: 74.83% 0 0 0;
  background-color: #2a2a2a;
}
.thposter img, .thposter2 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.thposter2 {
  padding-top: 75%;
}

.thdlit,
.thumb-rate {
  position: absolute;
  top: 2px;
  padding: 1px 5px;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 3px;
  font-size: 12px;
  color: #fff;
}
.thdlit {
  right: 2px;
}
.thumb-rate {
  left: 2px;
}

.thweb, .th-title, .thopisanie {
  margin: 2px 0;
  display: block;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.thweb span, .th-title span, .thopisanie span {
  color: #837461;
}
.th-title {
  text-transform: uppercase;
}
.thopisanie {
  text-align: left;
}

.thtegi {
  margin: 0 0 5px 0;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
}
.thtegi a {
  padding: 0 5px;
  display: inline-block;
  background-color: #360A17;
  border-radius: 3px;
  color: #c3c3c3;
}
.thtegi a:hover {
  color: #fff;
  text-decoration: none;
}

/* ============================================
   PAGINATION
   ============================================ */
.paginblock {
  margin: 20px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.paginblock li {
  margin: 2px;
  padding: 0;
  list-style: none;
}
.paginblock li.active .btn {
  background-color: #EAD8C1;
  pointer-events: none;
}
.paginblock li .btn {
  min-width: 50px;
  height: 50px;
  line-height: 50px;
}
.paginblock li .btn:hover {
  background-color: #EAD8C1;
  text-decoration: none;
}

/* ============================================
   VIDEO PLAYER
   ============================================ */
.videoblock {
  margin: 10px 0;
  display: flex;
}
.vcontent {
  flex-grow: 1;
}
.video-player, .video-player-2 {
  position: relative;
  padding: 56.25% 0 0 0;
}
.video-player > iframe, .video-player-2 > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.video-player-aside, .video-player-2-aside {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 5px 5px 5px;
  background-color: rgba(0, 0, 0, 0.75);
}
.video-player-aside.hidden, .video-player-2-aside.hidden {
  display: none;
}
.video-player-aside-title, .video-player-2-aside-title {
  position: relative;
  padding: 5px 0;
}
.video-player-aside-title span, .video-player-2-aside-title span {
  position: absolute;
  top: 2px;
  right: 0;
  font-size: 18px;
  cursor: pointer;
}
.video-player-aside-block, .video-player-2-aside-block {
  width: 300px;
}
.video-player-aside-close, .video-player-2-aside-close {
  width: 100%;
  margin: 5px 0 0 0;
  display: block;
  font-weight: bold;
}
.video-player-2 {
  padding: 75% 0 0 0;
}

.vidinfo {
  margin: 10px 0;
  background: #C83649;
  border: 1px solid #242427;
}
.vidnazv {
  padding: 0 0 10px 0;
  background: transparent;
}
.vidnazv h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}

.video-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  box-sizing: border-box;
}

.vidtext {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}

.vidtextlist {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  box-sizing: border-box;
}

.vidtextlist li {
  list-style: none;
  white-space: nowrap;
  padding-left: 24px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px;
}

.vidtext .la {
  margin: -2px 5px 0 0;
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
}

.voters-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  min-width: 120px;
  box-sizing: border-box;
  margin: 10px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.rating button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  position: relative;
  touch-action: manipulation;
}

.rating button::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.rating button:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8.864.046C7.908-.193 7.02.53 6.956 1.466c-.072 1.051-.23 2.016-.428 2.59-.125.36-.479 1.013-1.04 1.639-.557.623-1.282 1.178-2.131 1.41C2.685 7.288 2 7.87 2 8.72v4.001c0 .845.682 1.464 1.448 1.545 1.07.114 1.564.415 2.068.723l.048.03c.272.165.578.348.97.484.397.136.861.217 1.466.217h3.5c.937 0 1.599-.477 1.934-1.064a1.86 1.86 0 0 0 .254-.912c0-.152-.023-.312-.077-.464.201-.263.38-.578.488-.901.11-.33.172-.762.004-1.149.069-.13.12-.269.159-.403.077-.27.113-.568.113-.857 0-.288-.036-.585-.113-.856a2 2 0 0 0-.138-.362 1.9 1.9 0 0 0 .234-1.734c-.206-.592-.682-1.1-1.2-1.272-.847-.282-1.803-.276-2.516-.211a10 10 0 0 0-.443.05 9.4 9.4 0 0 0-.062-4.509A1.38 1.38 0 0 0 9.125.111zM11.5 14.721H8c-.51 0-.863-.069-1.14-.164-.281-.097-.506-.228-.776-.393l-.04-.024c-.555-.339-1.198-.731-2.49-.868-.333-.036-.554-.29-.554-.55V8.72c0-.254.226-.543.62-.65 1.095-.3 1.977-.996 2.614-1.708.635-.71 1.064-1.475 1.238-1.978.243-.7.407-1.768.482-2.85.025-.362.36-.594.667-.518l.262.066c.16.04.258.143.288.255a8.34 8.34 0 0 1-.145 4.725.5.5 0 0 0 .595.644l.003-.001.014-.003.058-.014a9 9 0 0 1 1.036-.157c.663-.06 1.457-.054 2.11.164.175.058.45.3.57.65.107.308.087.67-.266 1.022l-.353.353.353.354c.043.043.105.141.154.315.048.167.075.37.075.581 0 .212-.027.414-.075.582-.05.174-.111.272-.154.315l-.353.353.353.354c.047.047.109.177.005.488a2.2 2.2 0 0 1-.505.805l-.353.353.353.354c.006.005.041.05.041.17a.9.9 0 0 1-.121.416c-.165.288-.503.56-1.066.56z'/%3E%3C/svg%3E");
}

.rating button:last-child::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8.864 15.674c-.956.24-1.843-.484-1.908-1.42-.072-1.05-.23-2.015-.428-2.59-.125-.36-.479-1.012-1.04-1.638-.557-.624-1.282-1.179-2.131-1.41C2.685 8.432 2 7.85 2 7V3c0-.845.682-1.464 1.448-1.546 1.07-.113 1.564-.415 2.068-.723l.048-.029c.272-.166.578-.349.97-.484C6.931.08 7.395 0 8 0h3.5c.937 0 1.599.478 1.934 1.064.164.287.254.607.254.913 0 .152-.023.312-.077.464.201.262.38.577.488.9.11.33.172.762.004 1.15.069.13.12.268.159.403.077.27.113.567.113.856s-.036.586-.113.856c-.035.12-.08.244-.138.363.394.571.418 1.2.234 1.733-.206.592-.682 1.1-1.2 1.272-.847.283-1.803.276-2.516.211a10 10 0 0 1-.443-.05 9.36 9.36 0 0 1-.062 4.51c-.138.508-.55.848-1.012.964zM11.5 1H8c-.51 0-.863.068-1.14.163-.281.097-.506.229-.776.393l-.04.025c-.555.338-1.198.73-2.49.868-.333.035-.554.29-.554.55V7c0 .255.226.543.62.65 1.095.3 1.977.997 2.614 1.709.635.71 1.064 1.475 1.238 1.977.243.7.407 1.768.482 2.85.025.362.36.595.667.518l.262-.065c.16-.04.258-.144.288-.255a8.34 8.34 0 0 0-.145-4.726.5.5 0 0 1 .595-.643h.003l.014.004.058.013a9 9 0 0 0 1.036.157c.663.06 1.457.054 2.11-.163.175-.059.45-.301.57-.651.107-.308.087-.67-.266-1.021L12.793 7l.353-.354c.043-.042.105-.14.154-.315.048-.167.075-.37.075-.581s-.027-.414-.075-.581c-.05-.174-.111-.273-.154-.315l-.353-.354.353-.354c.047-.047.109-.176.005-.488a2.2 2.2 0 0 0-.505-.804l-.353-.354.353-.354c.006-.005.041-.05.041-.17a.9.9 0 0 0-.121-.415C12.4 1.272 12.063 1 11.5 1'/%3E%3C/svg%3E");
}

.value {
  display: flex;
  align-items: center;
  gap: 5px;
}

.scale {
  width: 100px;
  height: 5px;
  background-color: #444;
  border-radius: 3px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: #D52F0C;
  transition: width 0.3s ease;
}

.message {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4CAF50;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.message.show {
  opacity: 1;
  visibility: visible;
}

.vidcatg {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin: 0;
  box-sizing: border-box;
}

.vidcatg a {
  margin: 0;
  padding: 2px 8px;
  background-color: #360A17;
  border-radius: 3px;
  color: #eee;
}

.vidcatg a:hover {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1199px) {
  .vidtext {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .voters-box {
    width: 100%;
    justify-content: center;
    order: -1;
  }
  .video-text-content {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .video-textlist {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .vidcatg {
    justify-content: center;
    text-align: center;
  }
}

.vidaside {
  margin: 0 0 0 10px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.vidaside > div {
  margin-bottom: 10px;
}
.vidaside > div:last-child {
  margin-bottom: 0;
}

/* ============================================
   LISTS
   ============================================ */
.spopular {
  margin: 0 0 20px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.spopular li {
  margin: 0 10px 0 0;
  padding: 0;
  list-style: none;
}
.spopular li .la {
  margin: -2px 5px 0 0;
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
}

.searchesq {
  margin: 0 0 20px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.searchesq li {
  margin: 0 10px 0 0;
  padding: 0;
  list-style: none;
}
.searchesq li .la {
  margin: -2px 5px 0 0;
  vertical-align: middle;
  color: #EAD8C1;
}
.searchesq .size-1 { font-size: 12px; }
.searchesq .size-2 { font-size: 15px; }
.searchesq .size-3 { font-size: 18px; }
.searchesq .size-4 { font-size: 20px; }
.searchesq .size-5 { font-size: 22px; }

.catsblock {
  margin: 0 0 20px 0;
  padding: 0;
  column-count: 8;
  column-gap: 10px;
  font-size: 16px;
}
.catsblock li {
  width: 100%;
  margin: 0;
  padding: 4px 0;
  box-sizing: border-box;
  display: inline-block;
  border-bottom: 1px solid transparent;
  list-style: none;
}
.cat-title {
  font-weight: bold;
  color: #E4CAA5;
  border-color: #C83649 !important;
}

.assilki {
  margin: 0 0 20px 0;
  padding: 0;
  column-count: 6;
  column-gap: 10px;
}
.assilki li {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 4px 0;
  box-sizing: border-box;
  list-style: none;
}
.assilki li span {
  margin: 0 5px 0 0;
  display: inline-block;
}

/* ============================================
   DROPDOWN
   ============================================ */
.dropdown {
  position: relative;
}
.dropdown-lg {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 2px 0 0 0;
  padding: 10px 5px;
  background-color: rgba(54, 10, 23, 0.9);
  border: 1px solid #C83649;
  border-radius: 3px;
  display: none;
  z-index: 2;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  overscroll-behavior: contain;
}
.dropdown-lg.toggled {
  display: grid;
}
.dropdown-lg li {
  margin: 0;
  padding: 4px 20px;
  list-style: none;
  white-space: nowrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footerblock {
  padding: 20px 0;
  color: #aaa;
}
.footerblock .alogo {
  margin-bottom: 10px;
}
.footercont {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footermenu {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footermenu li {
  margin: 0 10px 0 0;
  padding: 0;
  list-style: none;
}
.footermenu li:last-child {
  margin-right: 0;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.btn-up {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 48px;
  height: 48px;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: #360A17;
  border: 2px solid #666;
  border-radius: 24px;
  box-sizing: border-box;
  touch-action: manipulation;
}
.btn-up.toggled {
  display: flex;
}
.btn-up:hover {
  text-decoration: none;
}
.btn-up .la {
  font-size: 30px;
  line-height: 30px;
}

/* ============================================
   OVERLAY & ASIDE MENU
   ============================================ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 99;
  display: none;
}
.overlay.toggled {
  display: block;
}

.asidemenu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background-color: #360A17;
  border-left: 2px solid #000;
  overscroll-behavior: contain;
}
.asidemenucont {
  position: relative;
}
.asidemenucont ul {
  margin: 10px;
  padding: 0;
}
.asidemenucont ul li {
  margin: 0 0 5px 0;
  padding: 0;
  list-style: none;
}
.asidemenucont ul li .btn {
  padding: 0 20px;
  display: block;
  text-align: left;
}
.asidemenucont ul li .la {
  margin: -2px 5px 0 0;
  vertical-align: middle;
  font-size: 18px;
}
.aside-nav-close {
  position: absolute;
  top: 10px;
  left: -40px;
  font-size: 30px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.asidemenu .dropdown-lg {
  position: static;
  max-height: 198px;
  margin: 5px 0;
  padding: 10px;
  background-color: #C83649;
  overflow: auto;
  overscroll-behavior: contain;
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  box-sizing: border-box;
  display: none;
}
.topbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  column-count: 4;
  column-gap: 4px;
}
.topbar ul li {
  position: relative;
  width: 100%;
  margin: 0 0 4px 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
.topbar ul li a {
  display: block;
  padding: 5px;
  text-align: center;
  background: #210e14;
  color: #ffffff;
}
.topbar ul li a:hover {
  background: #C83649;
  color: #ffffff;
}
.dec-topbar .topbar {
  display: block;
  margin: 0 0 5px 0;
}
.nazv-block .dropdown.languages {
  display: none;
}

/* ============================================
   FORMS
   ============================================ */
.abform-wrapper1 {
  display: none;
}
.abbtn1 {
  cursor: pointer;
  color: #ffffff;
}
.abbtn1:hover {
  text-decoration: underline;
}
.abform-wrapper1.toggled {
  display: flex;
  height: 100vh;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
#contactForm {
  position: fixed;
  top: calc(50% - 105px);
  background: #151515;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 10px;
  width: 300px;
}
.abclose1 {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #ffffff;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}
.form-group {
  margin-bottom: 10px;
}
.form-group input {
  display: block;
  width: 100%;
  border-radius: 5px;
  border: 0;
  padding: 5px;
  box-sizing: border-box;
  font-size: 16px;
}
.form-group textarea {
  display: block;
  width: 100%;
  border-radius: 5px;
  border: 0;
  padding: 5px;
  box-sizing: border-box;
}
.abzagl1 {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #ffffff;
}
#contactForm .btn:hover {
  text-decoration: underline;
}
#msgSubmit {
  margin-bottom: 10px;
}

/* ============================================
   AD CONTAINERS
   ============================================ */
.mob-rek-a {
  width: 100%;
  padding: 0 10px;
  text-align: center;
  box-sizing: border-box;
  clear: both;
  display: none;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media screen and (max-width: 1199px) {
  .headerblock {
    flex-wrap: wrap;
  }
  .togglers {
    display: flex;
  }
  .search {
    width: 100%;
    margin: 10px 0 0 0;
    display: none;
  }
  .search.toggled {
    display: block;
  }
  .nav {
    width: 100%;
    margin: 10px 0 0 0;
    display: none;
  }
  .nav.toggled {
    display: block;
  }
  .nav ul {
    flex-direction: column;
  }
  .nav ul li {
    margin-right: 0;
  }
  .nav .btn {
    display: block;
  }
  .nav .dropdown-lg {
    position: static;
    text-align: center;
  }
  .tabg {
    grid-template-columns: repeat(5, 1fr);
  }
  .catsblock {
    column-count: 6;
  }
  .assilki {
    column-count: 5;
  }
  .btn-sort {
    display: none;
  }
  .vidaside {
    display: none;
  }
  .topbar {
    display: block;
    margin-top: 10px;
  }
  .dec-topbar .topbar {
    display: none;
  }
  .topbar ul li a {
    font-size: 0.9em;
  }
  .main {
    margin-top: 60px;
  }
  .nazv-block {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    position: relative;
  }
  .nazv-block h1 {
    margin: 0;
  }
  .nazv-block .dropdown.languages {
    display: block;
  }
  .nazv-block .languages .dropdown-lg {
    top: 0;
    margin: 0;
    right: 40px;
  }
  .videoblock {
    margin: 0 0 10px 0;
  }
  .dropdown.languages {
    margin: 0;
  }
}

@media screen and (max-width: 1023px) {
  .tabg {
    grid-template-columns: repeat(4, 1fr);
  }
  .catsblock {
    column-count: initial;
  }
  .catsblock li {
    width: auto;
    margin-right: 10px;
    display: inline-block;
  }
  .catsblock li.cat-title {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .assilki {
    column-count: 4;
  }
}

@media screen and (max-width: 767px) {
  .tabg {
    grid-template-columns: repeat(3, 1fr);
  }
  .assilki {
    column-count: 3;
  }
  .video-player-aside {
    transform: translate(-50%, -25%);
  }
  .mob-rek-a {
    display: block;
    grid-column-start: 1;
    grid-column-end: 4;
  }
  .nazv-block .languages .dropdown-lg {
    width: calc(100% - 50px);
    top: 10px;
    left: 0;
    grid-template-columns: repeat(4, 1fr);
  }
  .nazv-block .dropdown.languages {
    position: unset;
  }
  .vidnazv.nazv-block .languages .dropdown-lg {
    width: calc(100% - 60px);
  }
}

@media screen and (max-width: 650px) {
  .nazv-block .languages .dropdown-lg {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 580px) {
  .topbar ul {
    column-count: 2;
    column-gap: 5px;
  }
  .topbar ul li {
    break-inside: avoid;
  }
  .main {
    margin-top: 60px;
  }
}

@media screen and (max-width: 500px) {
  .nazv-block .languages .dropdown-lg {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  h1, h2, h3 {
    font-size: 20px;
    line-height: normal;
    text-align: center;
  }
  .btn-exc1 {
    font-size: 0.9em;
    margin-bottom: 10px;
  }
  .tabg {
    grid-template-columns: repeat(2, 1fr);
  }
  .assilki {
    column-count: 2;
  }
  .nazv-block .dropdown-toggle {
    height: 30px;
    padding: 0 5px;
  }
  .vidnazv h1 {
    font-size: 20px;
  }
  .mob-rek-a {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

@media screen and (max-width: 450px) {
  .nazv-block .languages .dropdown-lg li {
    padding: 4px;
    font-size: 12px;
  }
}

@media screen and (max-width: 640px) {
  .video-player {
    min-height: 320px;
  }
}