:root {
  --fa-bg: #000;
  --fa-panel: #1d1d1f;
  --fa-panel-deep: #030303;
  --fa-line: #737272;
  --fa-muted: #5d5d62;
  --fa-muted-2: #454548;
  --fa-orange: #fe6c00;
  --fa-orange-dark: #982a20;
  --fa-white: #fff;
  --fa-shadow: 0 6px 18px rgba(254, 108, 0, .56);
}

*,
*:before,
*:after {
  box-sizing: border-box;
  outline: none;
}

html {
  height: 100%;
  min-width: 320px;
  background: var(--fa-bg);
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  position: relative;
  color: var(--fa-white);
  background: var(--fa-bg);
  font: 14px/1.2 "Quicksand", "Trebuchet MS", Arial, sans-serif;
}

body.openNavigation {
  overflow: hidden;
}

a {
  color: var(--fa-white);
  text-decoration: none;
}

a,
button {
  transition: background .3s, color .3s, box-shadow .3s, opacity .3s, visibility .3s, transform .3s;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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 14px;
  border-radius: 20px;
  background: var(--fa-orange);
  color: var(--fa-white);
  transform: translateX(-50%);
}

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

.wrapper {
  display: table;
  width: 100%;
  min-height: 100vh;
  table-layout: fixed;
  overflow: hidden;
  position: relative;
}

.mask {
  position: fixed;
  inset: 0;
  z-index: 998;
  width: 100%;
  height: 100%;
  border: 0;
  background-color: rgba(15, 15, 16, .9);
  opacity: 0;
  visibility: hidden;
}

body.openNavigation .mask {
  opacity: 1;
  visibility: visible;
}

.container {
  max-width: 1640px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}

.header {
  padding: 0 30px;
  height: 100px;
}

.header .holder {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 18px 0;
  border-bottom: 1px solid var(--fa-line);
}

.logo {
  flex: 0 0 auto;
}

.logo a {
  display: inline-flex;
  align-items: center;
  min-width: 129px;
  height: 62px;
  color: var(--fa-white);
  font-size: 43px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
  text-transform: lowercase;
}

.logo-word {
  color: var(--fa-white);
  text-shadow: 7px 8px 0 rgba(152, 42, 32, .55);
}

.logo-tail {
  margin-left: 3px;
  color: var(--fa-orange);
  text-shadow: 7px 8px 0 rgba(152, 42, 32, .45);
}

.header_panel {
  flex: 1 1 auto;
  min-width: 1px;
  padding: 0 25px;
  display: flex;
  justify-content: center;
}

.panel_holder {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 999;
}

.navigation {
  display: flex;
  align-items: center;
  margin: 0 -2px;
}

.navigation .button_close {
  position: absolute;
  top: 40px;
  right: 30px;
  display: none;
  border: 0;
  background: none;
  color: var(--fa-white);
}

.navigation .item {
  flex: 1 1 auto;
  min-width: 1px;
  padding: 0 2px;
  font-weight: 500;
  text-transform: uppercase;
}

.navigation a {
  display: flex;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 20px;
  color: var(--fa-white);
  letter-spacing: .35px;
  white-space: nowrap;
}

.navigation .item.active a,
.navigation a:hover {
  background-color: var(--fa-orange);
  box-shadow: var(--fa-shadow);
  color: var(--fa-white);
}

.profile-name {
  display: none;
}

.sub_section {
  display: none;
}

.button_search {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border: 0;
  background: none;
  color: var(--fa-white);
}

.button_search:hover {
  color: var(--fa-orange);
}

.search {
  position: absolute;
  inset: 0;
  width: 100%;
  transform: translate3d(0, -100%, 0);
  opacity: 0;
  visibility: hidden;
}

.header.open .navigation,
.header.open .button_search {
  opacity: 0;
  visibility: hidden;
}

.header.open .search {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.search form,
.search .wrap {
  display: flex;
  width: 100%;
  height: 100%;
}

.search .wrap_input {
  flex: 1 1 auto;
  min-width: 1px;
  display: flex;
  border-radius: 20px;
  background-color: var(--fa-panel);
}

.search .button,
.search .close_button {
  flex: 0 0 auto;
  width: 50px;
  border: 0;
  background: none;
  color: var(--fa-white);
}

.search .input {
  flex: 1 1 auto;
  min-width: 1px;
  width: 100%;
  height: 100%;
  padding: 14px 14px 14px 0;
  border: 0;
  background: none;
  color: var(--fa-white);
  font-size: 14px;
  -webkit-appearance: none;
}

.search .input::placeholder {
  color: #999;
}

.profile_box {
  flex: 0 0 auto;
  position: relative;
}

.button_profile {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 25px;
  background-color: var(--fa-panel);
  color: var(--fa-white);
  font-weight: 700;
  letter-spacing: .04em;
}

.profile_box.open .button_profile,
.button_profile:hover {
  color: var(--fa-orange);
}

.profile_drop {
  position: absolute;
  top: 99%;
  right: 0;
  z-index: 4;
  display: none;
  min-width: 220px;
  max-height: 420px;
  overflow: auto;
  padding: 15px 20px;
  border-radius: 25px 0 25px 25px;
  background-color: var(--fa-panel);
  box-shadow: -4px 16px 31px 1px rgba(0, 0, 0, .71);
  white-space: nowrap;
}

.profile_box.open .profile_drop {
  display: block;
}

.profile_drop:before {
  content: "";
  position: absolute;
  right: 50px;
  bottom: 100%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 30px 0 0 var(--fa-panel);
  transform: rotate(-45deg);
}

.profile_drop .item {
  position: relative;
  z-index: 2;
  padding: 0 1px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .35px;
}

.profile_drop a {
  display: block;
  padding: 12px 20px;
  border-radius: 20px;
  color: var(--fa-muted);
}

.profile_drop a:hover,
.profile_drop a.selected {
  background-color: var(--fa-orange);
  box-shadow: 0 6px 18px rgba(254, 108, 0, .5);
  color: var(--fa-white);
}

.hamburger_box {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 50px;
  margin-left: 20px;
  margin-right: -30px;
  border-radius: 25px 0 0 25px;
  background-color: var(--fa-panel);
}

.hamburger_box:before,
.hamburger_box:after {
  content: "";
  position: absolute;
  right: 1px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 30px 0 0 #1a1a1a;
}

.hamburger_box:before {
  top: -50px;
  transform: rotate(315deg);
}

.hamburger_box:after {
  bottom: -50px;
  transform: rotate(220deg);
}

.hamburger {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 20px;
  height: 20px;
  border: 0;
  background: none;
}

.hamburger:before,
.hamburger:after,
.hamburger span {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background-color: #424245;
}

.hamburger span {
  margin: 5px 0;
}

.hamburger:hover:before,
.hamburger:hover:after,
.hamburger:hover span {
  background-color: var(--fa-white);
}

.icon-search,
.icon-close,
.icon-eye,
.icon-like,
.icon-time {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
  vertical-align: -4px;
}

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

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

.icon-close:before {
  content: "\\00d7";
  font-size: 24px;
  line-height: 17px;
}

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

.icon-like:before {
  content: "+";
  font-weight: 800;
  line-height: 18px;
}

.icon-dislike:before {
  content: "-";
}

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

.icon-time:after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 2px;
  height: 6px;
  background: currentColor;
  transform-origin: bottom;
  transform: rotate(-35deg);
}

.main {
  display: table-row;
  height: 100%;
}

.main > .container {
  padding-top: 20px;
  padding-bottom: 50px;
}

main {
  display: block;
}

.global-adv {
  margin: 0 auto 20px;
  text-align: center;
}

.row_section {
  margin-bottom: 50px;
}

.row_section:last-child {
  margin-bottom: 0;
}

.heading {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.heading h1,
.heading h2 {
  flex: 1 1 auto;
  min-width: 1px;
  position: relative;
  padding: 8px 0;
  color: var(--fa-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.heading h1:after,
.heading h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 1px;
  background-color: var(--fa-orange);
}

.block-tags {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 20px;
}

.block-tags .label {
  display: inline-block;
  margin-top: 4px;
  color: var(--fa-white);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: .35px;
}

.sort-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.item-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 15px;
  border-radius: 15px;
  background-color: var(--fa-panel);
  color: var(--fa-white);
}

.item-tag:hover {
  background-color: var(--fa-white);
  box-shadow: 0 6px 18px rgba(69, 69, 72, .56);
  color: var(--fa-muted-2);
}

.item-tag.choose {
  background-color: var(--fa-orange);
  color: var(--fa-white);
}

.thumbs {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}

.thumb {
  position: relative;
  width: 20%;
  padding: 10px;
}

.thumb .th {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  color: var(--fa-white);
  background: var(--fa-panel);
}

.thumb .wrap_image {
  position: relative;
  padding-bottom: 75%;
  background: var(--fa-panel);
}

.thumb .wrap_image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s, filter .35s;
}

.thumb:hover .wrap_image img {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.thumb .timeline {
  position: absolute;
  top: 5px;
  left: 15px;
  right: 15px;
  z-index: 2;
  height: 2px;
  opacity: 0;
  visibility: hidden;
}

.thumb .timeline span {
  position: absolute;
  inset: 0;
  width: 0;
  border-radius: 1px;
  background-color: var(--fa-orange);
  transition: width 1s;
}

.thumb:hover .timeline {
  opacity: 1;
  visibility: visible;
}

.thumb:hover .timeline span {
  width: 100%;
}

.thumb .tools {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px;
  background-image: linear-gradient(to top, rgba(10, 9, 10, .94) 0%, rgba(10, 9, 10, .31) 67%, rgba(255, 255, 255, 0) 100%);
}

.thumb .desc {
  margin-bottom: 8px;
  overflow: hidden;
  color: var(--fa-white);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.thumb .columns {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}

.thumb .column {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px;
  color: var(--fa-white);
  font-size: 12px;
}

.thumb .progress,
.video-score .progress {
  position: relative;
  width: 45px;
  height: 4px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, .22);
}

.thumb .progress span,
.video-score .progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--fa-orange);
}

.listing-error {
  width: 100%;
  margin: 10px;
  padding: 28px;
  border-radius: 20px;
  background: var(--fa-panel);
  color: var(--fa-muted);
  text-align: center;
}

.pagination-wrap {
  margin-top: 50px;
}

.pagination-holder {
  display: flex;
  justify-content: center;
  width: 100%;
}

.pagination-holder > div[style] {
  display: none;
}

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

.pagination-holder li {
  display: inline-flex;
  margin: 2px;
}

.pagination-holder a,
.pagination-holder li > span,
.pagination-holder span.current {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 20px;
  background-color: var(--fa-panel);
  color: var(--fa-white);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.pagination-holder a:hover,
.pagination-holder .chosen > span,
.pagination-holder .active > a,
.pagination-holder span.current,
.pagination-holder .selected {
  background-color: var(--fa-orange);
  box-shadow: var(--fa-shadow);
  color: var(--fa-white);
}

.pagination-holder .pagination-ellipsis span,
.pagination-holder li > span[aria-hidden="true"] {
  min-width: 40px;
  background: none;
  box-shadow: none;
  color: var(--fa-white);
}

.pagination-holder a span {
  display: inline;
  min-width: 0;
  height: auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.pagination-count {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: var(--fa-muted);
  font-size: 12px;
  letter-spacing: .35px;
}

.inner_player {
  display: flex;
  gap: 20px;
  padding: 10px;
  border-radius: 25px;
  background: var(--fa-panel-deep);
}

.inner_player .column {
  flex: 1 1 auto;
  min-width: 1px;
}

.inner_player .column.second {
  flex: 0 0 300px;
  margin-left: 0;
}

.inner_player .player {
  overflow: hidden;
  border-radius: 20px;
  background: #000;
}

.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-side {
  height: 100%;
  padding: 20px;
  border-radius: 20px;
  background: var(--fa-panel);
}

.video-score > span {
  display: block;
  margin-bottom: 10px;
  color: var(--fa-orange);
  font-size: 32px;
  font-weight: 800;
}

.video-score .progress {
  width: 100%;
  height: 6px;
}

.video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 10px 18px;
  border-radius: 20px;
  background: var(--fa-orange);
  box-shadow: var(--fa-shadow);
  color: var(--fa-white);
  font-weight: 700;
}

.btn.second {
  background: var(--fa-white);
  box-shadow: 0 6px 18px rgba(69, 69, 72, .56);
  color: var(--fa-muted-2);
}

.video-facts {
  display: grid;
  gap: 12px;
  color: var(--fa-muted);
}

.video-facts div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.video-info {
  margin-top: 20px;
}

.intro,
.page-description {
  color: var(--fa-muted-2);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .35px;
}

.video-description,
.page-description {
  padding: 20px;
  border-radius: 20px;
  background: var(--fa-panel);
}

.footer {
  display: table-row;
  height: 1px;
}

.footer_spots {
  padding: 0 0 10px;
}

.footer_spots div {
  margin: 0 auto;
  text-align: center;
}

.footer-searches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 16px;
}

.footer-searches a {
  display: inline-flex;
  padding: 7px 15px;
  border-radius: 15px;
  background: var(--fa-panel);
  color: var(--fa-white);
}

.footer-searches a:hover {
  background: var(--fa-orange);
  box-shadow: var(--fa-shadow);
}

.footer-msg {
  margin: 10px 0;
  color: var(--fa-muted-2);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .35px;
}

.footer .holder {
  padding: 0 30px;
  color: var(--fa-white);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .35px;
}

.footer .columns {
  display: flex;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--fa-panel);
}

.footer .column {
  flex: 0 0 auto;
}

.footer .column.second {
  flex: 1 1 auto;
  min-width: 1px;
  padding: 0 25px;
}

.footer .cols {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}

.footer .item a {
  display: block;
  padding: 10px 16px;
  border-radius: 20px;
  color: var(--fa-muted);
}

.footer .item a:hover,
.footer .item a.selected {
  background: var(--fa-orange);
  color: var(--fa-white);
}

.footer_logo.logo a {
  min-width: auto;
  height: 44px;
  font-size: 30px;
}

.copyright,
.footer-counters {
  color: var(--fa-muted);
  text-align: right;
}

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

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

[dir="rtl"] .heading h1:after,
[dir="rtl"] .heading h2:after {
  left: auto;
  right: 0;
}

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

[dir="rtl"] .profile_drop:before {
  left: 50px;
  right: auto;
}

@media screen and (max-width: 1366px) {
  .thumbs {
    margin: -5px;
  }

  .thumb {
    padding: 5px;
  }
}

@media screen and (max-width: 1280px) {
  .navigation a {
    padding-left: 18px;
    padding-right: 18px;
  }

  .thumb .desc {
    font-size: 13px;
  }

  .footer .holder {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1180px) {
  .thumb {
    width: 25%;
  }
}

@media screen and (max-width: 1000px) {
  .header_panel {
    justify-content: flex-end;
    padding-left: 0;
  }

  .panel_holder {
    position: static;
    width: 100%;
  }

  .navigation {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
    max-width: 420px;
    margin: 0;
    padding: 40px 30px 75px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    background-color: var(--fa-panel-deep);
    box-shadow: -3px 0 87px 14px rgba(0, 0, 0, .84);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }

  body.openNavigation .navigation {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }

  .navigation .button_close {
    display: block;
  }

  .navigation .profile-name {
    display: flex;
    flex-direction: column;
    max-width: 90%;
    margin-bottom: 60px;
    border-bottom: 0;
  }

  .profile-name .welc {
    display: block;
    margin-bottom: 3px;
    color: var(--fa-muted);
    font-size: 14px;
    letter-spacing: .4px;
  }

  .profile-name .name {
    color: var(--fa-white);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }

  .navigation .item {
    flex: 0 0 auto;
    padding: 2px 0;
  }

  .navigation a {
    justify-content: flex-start;
    padding: 12px 20px;
  }

  .sub_section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    padding-top: 40px;
    border-top: 1px solid var(--fa-panel);
  }

  .header.open .logo {
    display: none;
  }

  .header.open .search {
    opacity: 1;
    visibility: visible;
  }

  .search {
    position: static;
    transform: none;
  }

  .search .close_button {
    display: none;
  }

  .profile_box {
    display: none;
  }

  .hamburger_box {
    position: absolute;
    right: 0;
    margin: 0;
  }

  .inner_player {
    flex-direction: column;
  }

  .inner_player .column.second {
    flex-basis: auto;
  }

  .footer .columns {
    flex-direction: column;
    gap: 10px;
  }

  .footer .column.second {
    padding: 5px 0;
  }

  .copyright,
  .footer-counters {
    text-align: center;
  }
}

@media screen and (max-width: 860px) {
  .thumb {
    width: 33.333%;
  }

  .thumb .tools {
    padding: 10px;
  }
}

@media screen and (max-width: 640px) {
  .thumb {
    width: 50%;
  }

  .thumb .tools {
    padding: 8px;
  }

  .thumb .columns {
    margin: -8px;
  }

  .thumb .column {
    padding: 8px;
  }

  .thumb .progress {
    display: none;
  }

  .pagination-holder li {
    display: none;
  }

  .pagination-holder li.pagination-prev,
  .pagination-holder li.pagination-next,
  .pagination-holder li.chosen,
  .pagination-holder li.active {
    display: inline-flex;
  }
}

@media screen and (max-width: 568px) {
  .container,
  .footer .holder {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header {
    padding: 0 20px;
  }

  .navigation {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navigation .button_close {
    right: 20px;
  }

  .logo a {
    min-width: 110px;
    font-size: 34px;
  }

  .thumb .desc {
    margin-bottom: 5px;
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .container,
  .footer .holder {
    padding-left: 10px;
    padding-right: 10px;
  }

  .header {
    padding: 0 10px;
  }

  .navigation {
    padding-left: 10px;
    padding-right: 10px;
    background-color: rgba(0, 0, 0, .94);
  }

  .navigation .button_close {
    right: 10px;
  }

  .hamburger_box {
    margin-right: -10px;
  }

  .block-tags {
    flex-direction: column;
  }
}

@media screen and (max-width: 440px) {
  .thumbs_video .thumb {
    width: 100%;
  }
}
