@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap");

:root {
  --mt-red: #df2626;
  --mt-red-hover: #e02e2e;
  --mt-dark: #3a3a3a;
  --mt-dark-2: #212121;
  --mt-head: #ebebeb;
  --mt-body: #f5f5f5;
  --mt-panel: #e1e1e1;
  --mt-border: #c4c4c4;
  --mt-text: #222222;
  --mt-muted: #777777;
  --mt-footer: #494949;
  --mt-container: 1230px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  background: var(--mt-body);
  color: var(--mt-text);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.35;
}

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

a {
  color: var(--mt-red);
  text-decoration: none;
}

a:hover,
a:focus {
  color: #000;
  text-decoration: none;
}

button,
input {
  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;
}

.container {
  width: 100%;
  max-width: var(--mt-container);
  margin: 0 auto;
  padding: 0 15px;
}

.relative {
  position: relative;
}

.clearfix::after,
.header-content::after,
.headline::after,
.list-videos::after {
  content: "";
  display: block;
  clear: both;
}

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

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

.wrapper {
  position: relative;
  z-index: 10;
}

header .header-head {
  background: var(--mt-head);
  border-bottom: 1px solid #d1d1d1;
}

header .header-content {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
}

.btn-mobile,
.btn-mobile-search {
  display: none;
}

.menuTrigger {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  padding: 7px;
}

.menuTrigger span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #4b4b4b;
}

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

.logo-text {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 43px;
  color: var(--mt-red);
  font-weight: 700;
  letter-spacing: -.6px;
  text-transform: none;
}

.logo-text:hover {
  color: var(--mt-red);
}

.logo-word {
  font-size: 31px;
  line-height: 1;
}

.logo-xxx {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  background: var(--mt-red);
  color: #fff;
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.block-btn-header {
  order: 4;
  flex: 0 0 auto;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid #c6c6c6;
  border-radius: 3px;
  background: #dadada;
  color: #494949;
  font-size: 13px;
  line-height: 1;
}

.btn:hover,
.btn:focus,
.btn.active {
  border-color: var(--mt-red);
  background: var(--mt-red);
  color: #fff;
}

.uppercase {
  text-transform: uppercase;
}

.btn-gray {
  background: #d1d1d1;
  color: #4b4b4b;
}

.lang-group {
  position: relative;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 2000;
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 2px;
  min-width: 300px;
  max-height: 360px;
  overflow-y: auto;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--mt-border);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.lang-group.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu a {
  display: block;
  padding: 7px 9px;
  color: #494949;
  font-size: 12px;
}

.lang-menu a:hover,
.lang-menu a.selected {
  background: var(--mt-red);
  color: #fff;
}

.search-header {
  flex: 1 1 420px;
  min-width: 260px;
}

.search-header form {
  display: block;
  width: 100%;
  background: #f5f5f5;
  border: 1px solid #cfcfcf;
}

.form-mobile {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
}

.search-text {
  flex: 1 1 auto;
}

.search-text input {
  width: 100%;
  height: 38px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: #222;
  font-size: 14px;
}

.search-button {
  flex: 0 0 86px;
  border: 0;
  background: #ccc;
  color: #4b4b4b;
  font-weight: 600;
  text-transform: uppercase;
}

.search-button:hover {
  background: var(--mt-red);
  color: #fff;
}

header .header-navbar {
  background: var(--mt-dark);
}

header .header-navbar ul.header-ul {
  float: left;
}

header .header-navbar ul.header-ul > li {
  float: left;
  position: relative;
}

header .header-navbar ul.header-ul > li > a,
header .header-navbar ul.header-ul > li > span > a {
  display: flex !important;
  align-items: center !important;
  min-height: 40px;
  padding: 11px 14px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

header .header-navbar ul.header-ul > li.selected > a,
header .header-navbar ul.header-ul > li > a:hover,
header .header-navbar ul.header-ul > li:hover > a {
  background: var(--mt-red);
  color: #fff;
}

.icon-custom {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  vertical-align: middle;
}

.ic-home {
  background: #fff;
}

.caret_in {
  width: 0;
  height: 0;
  margin-left: 8px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #fff;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1200;
  display: none;
  min-width: 190px;
  background: var(--mt-dark);
  border: 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 9px 16px;
  color: #fff;
}

.dropdown-menu a:hover {
  background: var(--mt-dark-2);
  color: #fff;
}

.header-ul-soc {
  float: right;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.language-current {
  display: inline-block;
  padding: 4px 10px;
  color: #bdbdbd;
  font-weight: 700;
}

.mobile-search-panel {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 15px;
  background: rgba(0, 0, 0, .55);
}

.mt-search-open .mobile-search-panel {
  display: flex;
}

.mobile-search-panel form {
  position: relative;
  display: flex;
  width: min(620px, 100%);
  padding: 18px;
  background: #ebebeb;
  border: 1px solid #c4c4c4;
}

.mobile-search-panel input {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid #cfcfcf;
  padding: 0 12px;
}

.mobile-search-panel button {
  min-height: 38px;
  border: 0;
  background: var(--mt-red);
  color: #fff;
  padding: 0 14px;
}

.mobile-search-panel .close-search {
  position: absolute;
  top: -14px;
  right: -10px;
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 50%;
  background: #333;
}

.content {
  padding: 54px 0 0;
}

.main-content {
  max-width: var(--mt-container);
  margin: 0 auto;
  padding: 0 15px;
}

.mt-ad {
  margin: 12px 0;
  text-align: center;
}

.headline {
  position: relative;
  margin: 0 0 18px;
  padding: 0 0 12px 16px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--mt-border);
  box-shadow: none;
}

.headline::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 14px;
  left: 0;
  width: 4px;
  background: var(--mt-red);
  border-radius: 3px;
}

.headline h1,
.headline h2 {
  max-width: 760px;
  padding-top: 0;
  color: #111111;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.35px;
  line-height: 1.18;
  text-transform: none;
}

.sort-btn-group {
  float: right;
  position: relative;
  margin-left: 3px;
  font-size: 0;
}

.sort-btn-group ul {
  text-align: right;
}

.sort-btn-group ul > li {
  display: inline-block;
  margin: 0 2px;
}

.btn-link {
  min-height: 28px;
  padding: 6px 10px;
  background: #e1e1e1;
  border-color: #d0d0d0;
  color: #222;
  font-weight: 600;
}

.box {
  margin-top: 10px;
}

.list-videos {
  display: block;
  margin: 0 -6px;
  font-size: 0;
}

.list-videos .item {
  display: inline-block;
  vertical-align: top;
  width: 20%;
  padding: 0 6px;
  margin: 0 0 18px;
  font-size: 13px;
}

.list-videos .item > a {
  display: block;
  color: #222;
}

.item .img {
  position: relative;
  overflow: hidden;
  background: #d6d6d6;
  border: 1px solid #d1d1d1;
}

.item .img img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  transition: opacity .2s ease, transform .2s ease;
}

.item:hover .img img {
  opacity: .88;
  transform: scale(1.02);
}

.preloadLine {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 0;
  height: 2px;
  background: var(--mt-red);
  transition: width .8s ease;
}

.item:hover .preloadLine {
  width: 100%;
}

.item .item__flags {
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 3;
}

.item .item__flags.views {
  left: 5px;
  right: auto;
}

.item__flag--duration {
  display: inline-block;
  padding: 2px 5px;
  border-radius: 2px;
  background: rgba(0, 0, 0, .68);
  color: #fff;
  font-size: 11px;
  line-height: 16px;
}

.icon-blockeye::before {
  content: "◉";
  margin-right: 4px;
  font-size: 9px;
}

.item .title {
  display: block;
  min-height: 36px;
  margin: 7px 0 0;
  overflow: hidden;
  color: var(--mt-red);
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
}

.item .title:hover {
  color: #000;
}

.item .wrap {
  min-height: 18px;
  overflow: hidden;
  color: var(--mt-muted);
  font-size: 12px;
  line-height: 17px;
}

.item .last-wrap {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 2px;
  color: #777;
}

.search-cloud,
.tags-cloud {
  margin: 14px 0;
  padding: 10px;
  background: #e1e1e1;
  border-bottom: 2px solid var(--mt-border);
  text-align: center;
}

.search-cloud a,
.tags-cloud a {
  display: inline-block;
  margin: 2px;
  padding: 6px 9px;
  color: #494949;
  background: #dadada;
  border: 1px solid #c6c6c6;
  border-radius: 3px;
  font-size: 12px;
}

.search-cloud a:hover,
.tags-cloud a:hover {
  background: var(--mt-red);
  border-color: var(--mt-red);
  color: #fff;
}

.empty-content {
  padding: 30px 15px;
  color: #555;
  font-size: 14px;
  text-align: center;
}

.pagination {
  margin: 10px 0 20px;
  text-align: center;
}

.pagination-holder ul,
.pagination ul {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.pagination li {
  display: inline-block;
}

.pagination li a,
.pagination li span,
.pagination-holder a,
.pagination-holder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 34px;
  margin: 2px;
  padding: 8px 11px;
  border: 1px solid #c6c6c6;
  border-radius: 3px;
  background: #dadada;
  color: #494949;
  font-size: 15px;
  font-weight: 400;
}

.pagination li a:hover,
.pagination li span:hover,
.pagination-holder a:hover,
.pagination-holder span:hover,
.pagination li.page-current span {
  border-color: var(--mt-red);
  background: var(--mt-red);
  color: #fff;
}

.pagination-count {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
  color: #777;
  font-size: 12px;
}

.page-description {
  margin: 25px 0;
  padding: 16px;
  background: #e1e1e1;
  color: #444;
  line-height: 1.6;
  text-align: center;
}

.block-video {
  margin-top: 10px;
}

.headline-breadcrumbs {
  margin-bottom: 10px;
}

.video-holder {
  background: #111;
  border: 1px solid #c4c4c4;
}

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

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

.player-wrap #player,
.player-wrap .jwplayer {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.video-info-main {
  margin: 12px 0 24px;
  padding: 12px;
  background: #e1e1e1;
  border-bottom: 2px solid #c4c4c4;
}

.video-info-content .last-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #555;
}

.rating-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 0;
}

.video-description {
  margin-top: 14px;
  color: #333;
  font-size: 14px;
  line-height: 1.55;
}

.video-tags {
  text-align: left;
}

footer {
  margin-top: 30px;
  padding-bottom: 25px;
  background: var(--mt-footer);
  color: #bfbfbf;
}

footer .footer-content {
  padding: 20px 0 0;
  text-align: center;
}

footer .logo-footer {
  margin-bottom: 15px;
}

footer .footer-navigation-lg {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 4px;
  margin-top: 12px;
}

footer .footer-navigation {
  display: inline-block;
  width: 32%;
  min-height: 150px;
  margin: 0 2px;
  background: rgba(0, 0, 0, .21);
  text-align: left;
  vertical-align: top;
}

footer .footer-title {
  padding: 15px 12px;
  background: rgba(0, 0, 0, .21);
  color: #fff;
  font-size: 18px;
}

footer .footer-navigation ul {
  padding: 8px 0;
}

footer .footer-navigation ul li a {
  display: inline-block;
  padding: 8px 24px;
  color: #989898;
  font-size: 13px;
  text-decoration: underline;
}

footer .footer-navigation ul li a:hover,
footer .footer-navigation ul li a.selected {
  color: #fff;
  text-decoration: none;
}

footer .copyright {
  margin: 16px 0 0;
  color: #bfbfbf;
  font-size: 13px;
}

.footer-counters {
  margin-top: 10px;
}

body[dir="rtl"] .header-content,
body[dir="rtl"] .header-ul,
body[dir="rtl"] .last-wrap,
body[dir="rtl"] .video-info-content .last-wrap {
  direction: rtl;
}

@media (max-width: 1199px) {
  .list-videos .item {
    width: 25%;
  }
}

@media (max-width: 991px) {
  .list-videos .item {
    width: 33.333%;
  }

  .logo-word {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .container,
  .main-content {
    padding: 0 8px;
  }

  .content {
    padding-top: 32px;
  }

  header .header-content {
    min-height: 54px;
    gap: 8px;
  }

  .btn-mobile,
  .btn-mobile-search {
    display: block;
  }

  .logo-word {
    max-width: 42vw;
    overflow: hidden;
    font-size: 21px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .logo-xxx {
    display: none;
  }

  .search-header {
    display: none;
  }

  .block-btn-header {
    margin-left: 0;
  }

  .lang-group .btn {
    min-width: 42px;
    padding: 7px 9px;
  }

  .lang-menu {
    right: -42px;
    grid-template-columns: 1fr;
    min-width: 230px;
  }

  header .header-navbar {
    position: fixed;
    top: 55px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1800;
    display: none;
    overflow-y: auto;
    background: rgba(0, 0, 0, .55);
  }

  header .header-navbar.is-opened {
    display: block;
  }

  header .header-navbar .sidebar-left {
    width: min(320px, 88vw);
    min-height: 100%;
    background: var(--mt-dark);
  }

  header .header-navbar ul.header-ul {
    float: none;
  }

  header .header-navbar ul.header-ul > li {
    float: none;
    display: block;
    border-bottom: 1px solid #4b4b4b;
  }

  header .header-navbar ul.header-ul > li > a {
    min-height: 44px;
    padding: 13px 20px;
    text-transform: none;
  }

  .dropdown-menu {
    position: static;
    display: block;
    min-width: 0;
    background: #303030;
  }

  .dropdown-menu a {
    padding-left: 42px;
    color: #bdbdbd;
  }

  .header-ul-soc {
    display: none;
  }

  .headline {
    margin-bottom: 12px;
    padding: 0 0 10px 13px;
  }

  .headline::before {
    top: 2px;
    bottom: 12px;
    width: 4px;
  }

  .headline h1,
  .headline h2 {
    float: none;
    max-width: none;
    margin-bottom: 7px;
    text-align: left;
    font-size: 20px;
  }

  .sort-btn-group {
    float: none;
    margin-left: 0;
    text-align: center;
  }

  .sort-btn-group ul {
    text-align: center;
  }

  .list-videos {
    margin: 0 -4px;
  }

  .list-videos .item {
    width: 50%;
    padding: 0 4px;
  }

  .item .last-wrap {
    display: none;
  }

  footer .footer-navigation-lg {
    display: block;
  }

  footer .footer-navigation {
    width: 100%;
    min-height: 0;
    margin: 0 0 8px;
  }
}

@media (max-width: 480px) {
  .list-videos .item {
    width: 100%;
  }

  .logo-word {
    max-width: 36vw;
    font-size: 19px;
  }

  .mobile-search-panel form {
    padding: 14px;
  }

  .mobile-search-panel button {
    padding: 0 10px;
  }
}
