* {
  outline: none;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #171717;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

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

.muted {
  color: #707070 !important;
}

a.muted:hover {
  color: #171717 !important;
}

.bold {
  font-weight: 700;
}

h1, h2, h3 {
  margin: 10px auto 10px 0;
  font-size: 24px;
  font-weight: 700;
}

.title {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.title h1, .title h2, .title h3 {
  margin: 0 20px 0 0;
}

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

.btn {
  height: 36px;
  padding: 0 15px;
  display: inline-block;
  border: 0;
  border-radius: 3px;
  box-sizing: border-box;
  background-color: #e0e0e0;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  color: #171717;
  text-align: center;
  cursor: pointer;
  line-height: 36px;
}
.btn:hover {
  background-color: #707070;
  color: #fff;
  text-decoration: none;
}
.btn.btn-transparent {
  background-color: transparent;
}
.btn.btn-transparent:hover {
  background-color: transparent;
  color: #171717;
}
.btn.btn-alt {
  background-color: #ae0000;
  color: #fff;
}
.btn.btn-alt:hover {
  background-color: #cd0606;
  color: #fff;
}
.btn.btn-empty {
  background-color: transparent;
  border: 1px solid #d3d3d3;
  line-height: 34px;
}
.btn.btn-empty:hover {
  background-color: #f5f5f5;
  color: #171717;
}
.btn.btn-empty.btn-sm {
  line-height: 23px;
}
.btn.btn-empty.btn-md {
  line-height: 28px;
}
.btn.btn-empty.btn-lg {
  line-height: 40px;
}
.btn.btn-sm {
  height: 25px;
  padding: 0 10px;
  font-weight: 400;
  line-height: 25px;
}
.btn.btn-md {
  height: 28px;
  padding: 0 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
}
.btn.btn-lg {
  height: 42px;
  padding: 0 20px;
  line-height: 42px;
}

.order {
  display: flex;
  flex-wrap: wrap;
}
.order > * {
  margin-right: 5px;
}
.order > *:last-child {
  margin-right: 0;
}
.order .btn {
  min-width: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order .btn .la {
  margin: 0 0 0 6px;
}
.order .dropdown-container {
  left: auto;
  right: 0;
  min-width: 150px;
}

.dropdown {
  position: relative;
}
.dropdown-container {
  position: absolute;
  margin: 0;
  padding: 10px 0;
  display: none;
  background-color: #f9f9f9;
  border-radius: 3px;
  z-index: 2;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.dropdown-container.active {
  display: block;
}
.dropdown-container ul {
  margin: 0;
  padding: 0;
}
.dropdown-container li {
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}
.dropdown-container a {
  padding: 3px 20px;
  display: block;
  font-weight: 500;
  color: #171717;
  text-decoration: none;
}
.dropdown-container a:hover {
  background-color: #e7e7e7;
  color: #171717;
}

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

.main {
  flex-grow: 1;
}

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

.show-sm {
  display: none;
}

.logo {
  width: 133px;
  height: 42px;
  display: block;
}
.logo img {
  margin: -13px 0 0 0;
  display: block;
}

.nav-toggle, .search-toggle {
  font-size: 24px;
  cursor: pointer;
  display: none;
}

.header {
  padding: 12px 0;
  background-color: #f5f5f5;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .input {
  height: 42px;
  border-color: transparent;
}
.header .input:focus {
  border-color: #ccc;
}
.header .btn {
  padding: 0 20px;
  height: 42px;
  line-height: 42px;
}
.header-text {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.header-join {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
}
.header-join li {
  margin: 0 24px 0 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}
.header-join li:last-child {
  margin-right: 0;
}
.header-join li a {
  color: #171717;
}
.header-join .btn {
  font-size: 18px;
  font-weight: 500;
}

.search {
  display: flex;
}
.search .input {
  width: 320px;
  max-width: 100%;
  font-style: italic;
}
.search .btn {
  margin: 0 0 0 10px;
}
.search.search-open {
  display: flex;
}

.nav {
  padding: 8px 0;
  background-color: #630000;
  color: #fff;
}
.nav a {
  color: #fff;
}
.nav-main {
  margin: 0;
  padding: 0;
  display: flex;
}
.nav-main > li {
  margin: 0 30px 0 0;
  padding: 0;
  list-style: none;
  font-size: 18px;
  font-weight: 500;
}
.nav-main > li.active {
  position: relative;
}
.nav-main > li.active a {
  pointer-events: none;
}
.nav-main > li.active a:hover {
  text-decoration: none;
}
.nav-main > li.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  display: block;
  background-color: #fff;
}
.nav.nav-open {
  display: block;
}

.tags {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
}
.tags .btn {
  margin: 2px;
}

.spot {
  margin: 10px 0;
  padding: 10px 0;
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.spot .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.paginator {
  margin: 10px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.paginator li {
  margin: 5px;
  padding: 0;
  list-style: none;
}
.paginator .la {
  margin: -2px 0 0 0;
  vertical-align: middle;
  font-size: 24px;
}

.thumbs {
  margin: 10px -2.5px 20px -2.5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.th {
  width: calc(100% / 5 - 5px);
  margin: 0 2.5px 5px 2.5px;
  flex-shrink: 0;
}
.th-image {
  position: relative;
  padding: 56.25% 0 0 0;
  display: block;
}
.th-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.th-image:hover + .th-desc {
  text-decoration: underline;
}
.th-res {
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 0 5px;
  display: block;
  background-color: #171717;
  border-radius: 3px;
  font-size: 12px;
  color: #fff;
  line-height: 19px;
}
.th-desc {
  width: 100%;
  max-height: 40px;
  margin: 4px 0 0 0;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  color: #171717;
  text-align: center;
  line-height: 20px;
}
.th-desc:hover {
  text-decoration: underline;
}
.th-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #707070;
  text-align: center;
}
.th-info a {
  margin: 0 5px;
  color: #171717;
}
.th-info a:hover {
  color: #cd0606;
}
.th-info span {
  margin: 0 5px;
}

.listing-content .th {
  width: calc(100% / 4 - 5px);
}

.listing {
  position: relative;
  display: flex;
  flex-direction: column;
}
.listing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 33%;
  display: block;
  background-color: #f5f5f5;
  z-index: -1;
}
.listing .container {
  display: flex;
  flex-grow: 1;
}
.listing-content {
  order: 2;
  padding: 0 0 0 20px;
  box-sizing: border-box;
  flex-grow: 1;
  background-color: #fff;
}
.listing-aside {
  order: 1;
  width: 229px;
  padding: 0 10px 0 0;
  box-sizing: border-box;
  flex-shrink: 0;
  background-color: #f5f5f5;
  border-right: 1px solid #d3d3d3;
}
.listing-aside h3 {
  margin: 0;
  font-size: 18px;
  line-height: normal;
}
.listing-aside a {
  color: #171717;
}
.listing-aside ul {
  margin: 15px 0;
  padding: 0;
}
.listing-aside ul li {
  margin: 3px 0;
  padding: 0;
  list-style: none;
}
.listing-aside ul li .la {
  margin: -2px 5px 0 0;
  vertical-align: middle;
  font-size: 20px;
}

.listing-group {
  margin: 0 0 25px 0;
}
.listing-group h3 {
  margin: 0;
  font-size: 18px;
  line-height: normal;
}
.listing-group a {
  color: #171717;
}
.listing-group ul {
  margin: 5px 0;
  padding: 0;
}
.listing-group ul li {
  margin: 3px 0;
  padding: 0;
  list-style: none;
}
.listing-group ul li .la {
  margin: -2px 5px 0 0;
  vertical-align: middle;
  font-size: 20px;
}

.listing-sort {
  margin-bottom: 25px !important;
  font-weight: 500;
}

.video-container {
  display: flex;
}

.video {
  flex-grow: 1;
}
.video h1 {
  line-height: normal;
}
.video-tags-wrapper {
  position: relative;
  margin: 10px auto 10px 0;
  display: flex;
}
.video-tags-wrapper.expanded {
  display: block;
}
.video-tags-wrapper.expanded .video-tags {
  padding-right: 0;
  display: inline;
}
.video-tags-wrapper.expanded .btn-more {
  position: static;
}
.video-tags-wrapper .btn-more {
  position: absolute;
  right: 0;
  bottom: 2px;
}
.video-tags {
  padding-right: 30px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
.video-tags .btn {
  margin: 2px 4px 2px 0;
}
.video-desc {
  position: relative;
  margin: 10px 0;
}
.video-desc-content {
  overflow: hidden;
}
.video-desc .read-more {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0 0 0 10px;
  display: inline-block;
  background-color: #fff;
}
.video-desc.expanded .video-desc-content {
  display: inline;
}
.video-desc.expanded .read-more {
  position: static;
}
.video-sponsored {
  margin: 10px 0;
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
}
.video-sponsored-bottom {
 /* float: right; */
}
.video-player {
  position: relative;
  padding: 56.25% 0 0 0;
}
.video-player > iframe, .video-player .player-code {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.video-panel {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.video-panel .btn {
  margin-right: 5px;
  margin-bottom: 5px;
}
.video-panel .btn:last-child {
  margin-right: 0;
}
.video-panel .la {
  margin: -4px 0 0 0;
  vertical-align: middle;
  font-size: 24px;
}
.video-stats {
  margin-right: 5px;
  margin-bottom: 5px;
  flex-grow: 1;
  text-align: center;
  font-size: 14px;
}
.video-aside {
  margin: 5px 0 0 10px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.video-aside > div {
  margin: 5px 0;
  flex-shrink: 0;
}
.video-aside > div:last-child {
  margin-bottom: 0;
}

.comments {
  width: 100%;
  max-width: 950px;
  margin: 40px 0 0 0;
}
.comments-title {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.comments-title h3 {
  margin: 0 30px 0 0;
  font-size: 18px;
}
.comments-title .la {
  margin: -2px 6px 0 0;
  vertical-align: middle;
  font-size: 24px;
}
.comments-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  margin: 0 20px 0 0;
  display: block;
  flex-shrink: 0;
  background-color: #e7e7e7;
  border-radius: 24px;
  overflow: hidden;
}
.comments-avatar .la {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: -1px 0 0 0;
  font-size: 30px;
  color: #a0a0a0;
}
.comments-avatar img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.comments-form {
  margin: 10px 0 20px 0;
  display: flex;
}
.comments-form-actions {
  flex-grow: 1;
}
.comments-form-actions textarea {
  width: 100%;
  height: 30px;
  padding: 6px 0;
  box-sizing: border-box;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid #d1d1d1;
  resize: none;
  line-height: 17px;
}
.comments-form-actions textarea:focus {
  border-color: #171717;
}
.comments-form-buttons {
  margin: 8px 0 0 0;
  text-align: right;
}
.comments > .comments-form .comments-form-buttons {
  display: none;
}
.comments-single {
  margin: 10px 0;
  display: flex;
}
.comments-single-body {
  flex-grow: 1;
}
.comments-single-title a {
  margin-right: 10px;
  display: inline-block;
  font-weight: 700;
  color: #171717;
}
.comments-single-text {
  margin: 5px 0 10px 0;
}
.comments-single-bottom {
  margin: 10px 0;
  display: flex;
}
.comments-single-rate {
  margin: 0 10px 0 0;
  display: flex;
  align-items: center;
}
.comments-single-rate span {
  padding: 0 10px;
}
.comments-single-rate .btn {
  padding: 0 5px;
}
.comments-single-rate .la {
  margin: -2px 0 0 0;
  font-size: 22px;
  vertical-align: middle;
}
.comments-single-replies {
  margin: 10px 0;
}
.comments-single-replies > a {
  font-size: 14px;
  font-weight: 500;
  color: #171717;
}
.comments-single-replies > a .la {
  margin: 0 5px 0 0;
}
.comments-single-replies-list {
  display: none;
}
.comments-single-reply-form {
  padding-top: 10px;
  display: none;
}

.bottom {
  margin: 20px 0 0 0;
}
.bottom .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer {
  margin-top: 40px;
  background-color: #630000;
  color: #bca3a3;
  text-align: center;
}
.footer span, .footer a {
  color: #fff;
}
.footer-nav {
  margin: 20px auto 10px auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav li {
  margin: 5px 10px;
  padding: 0;
  list-style: none;
  font-size: 18px;
  font-weight: 500;
}
.footer .disclaimer {
  margin: 10px auto;
}
.footer .copyright {
  padding: 10px 0;
  border-top: 1px solid #6f2020;
}

.video-tags-wrapper.expanded .video-tags {
  padding-right: 30px;
  display: block;
}
.video-tags-wrapper.expanded .btn-more {
  position: absolute;
}
.video-tags-wrapper .btn-more {
  position: absolute;
  right: 0;
  top: 2px;
}

.video-aside > div:nth-child(2), .video-aside > div:nth-child(3) {
  display: none;
}
@media screen and (min-width: 768px) {
  .video-aside > div:nth-child(2) {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .video-aside > div:nth-child(3) {
    display: block;
  }
}

@media screen and (max-width: 1199px) {
  .listing::before {
    display: none;
  }
  .listing .container {
    flex-direction: column;
  }
  .listing-content {
    padding: 0;
  }
  .listing-aside {
    width: 100%;
    background-color: transparent;
    border: 0;
  }

  .listing-content .th {
    width: calc(100% / 5 - 5px);
  }
  .listing-content .listing-group {
    margin: 20px 0;
    display: block;
  }
  .listing-content .listing-group ul {
    display: flex;
    flex-wrap: wrap;
  }
  .listing-content .listing-group ul li {
    margin: 2px 15px 2px 0;
  }

  .listing-group {
    display: none;
  }

  .listing-sort {
    margin: 20px 0 0 0 !important;
    display: flex;
    flex-wrap: wrap;
  }
  .listing-sort li {
    margin: 0 20px 0 0 !important;
  }
}
@media screen and (max-width: 1023px) {
  #tags {
    margin: 10px 0;
    display: none;
  }
  #tags .tags {
    margin: 0;
  }
  #tags.tags-open {
    display: block;
  }

  .show-sm {
    display: block;
  }

  .nav-toggle, .search-toggle {
    display: block;
  }

  .header .container {
    flex-wrap: wrap;
  }
  .header-join, .header-text {
    display: none;
  }

  .search {
    width: 100%;
    padding-top: 10px;
    display: none;
  }
  .search .input {
    width: 100%;
  }

  .nav {
    display: none;
  }
  .nav-main {
    flex-direction: column;
  }
  .nav-main li {
    margin: 5px 0;
  }
  .nav-main li.active a {
    text-decoration: underline;
  }
  .nav-main li.active::after {
    display: none;
  }
  .nav-main li a {
    display: block;
  }

  .th, .listing-content .th {
    width: calc(100% / 3 - 5px);
  }

  .listing-sort {
    width: initial !important;
    margin: 0 -20px 0 -10px !important;
    padding: 10px !important;
    background-color: #f5f5f5;
    display: none;
    box-sizing: border-box;
  }
  .listing-sort.listing-sort-open {
    display: flex;
  }

  .video-container {
    flex-direction: column;
  }

  .video-aside {
    margin: 0;
    overflow: hidden;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  .video-aside > div {
    margin: 0 5px;
  }

  .video-stats {
    order: 1;
    width: 100%;
    margin: 10px 0 0 0;
    text-align: left;
  }

  .comments-form-buttons {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .th, .listing-content .th {
    width: calc(100% / 2 - 5px);
  }

  .video {
    display: flex;
    flex-direction: column;
  }
  .video > h1 {
    order: 1;
    margin-bottom: 0;
  }
  .video-text {
    order: 3;
  }
  .video-content {
    order: 2;
  }
  .video-panel .btn span {
    display: none;
  }
  .video-panel .btn.btn-rate-up span, .video-panel .btn.btn-rate-down span {
    display: inline-block;
    font-size: 12px;
  }
  .video-sponsored-bottom {
    order: 4;
    margin-top: 0;
  }
}
@media screen and (max-width: 479px) {
  .order .dropdown-container {
    right: auto;
    left: 0;
  }

  .thumbs {
    margin-right: 0;
    margin-left: 0;
  }

  .th, .listing-content .th {
    width: 100%;
    margin: 0 0 5px 0;
  }

  .related-content {
    margin-right: -2.5px;
    margin-left: -2.5px;
  }

  .related-content .th {
    width: calc(100% / 2 - 5px);
    margin: 0 2.5px 5px 2.5px;
  }

  .video h1 {
    font-size: 18px;
    line-height: normal;
  }
  .video-panel .btn {
    padding: 0 5px;
  }
  .video-panel .btn i {
    font-size: 22px;
  }
  .video-sponsored {
    text-align: center;
  }
  .video-sponsored .btn {
    margin: 0 auto;
    display: block;
  }
}

.player-related-videos {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 5px 10px 30px 10px;
  background: #000000;
  overflow: hidden;
}
.player-related-videos .player-related-videos-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
}
.player-related-videos .player-related-videos-item {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-top: 5px;
}
.player-related-videos .player-related-videos-item .title {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 52px;
  overflow: hidden;
  text-align: left;
  padding: 5px;
  color: #ffffff;
  background: linear-gradient(
    to bottom,
    rgba(12, 12, 12, 0.8) 0px,
    transparent 50px
  );
}
.player-related-videos .player-related-videos-item .duration {
  display: block;
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #ffffff;
  background: rgba(12, 12, 12, 0.8);
  padding: 2px 5px;
}
.no-touch .player-related-videos .player-related-videos-item .title,
.no-touch .player-related-videos .player-related-videos-item .duration {
  display: none;
}
.no-touch .player-related-videos .player-related-videos-item:hover .title,
.no-touch .player-related-videos .player-related-videos-item:hover .duration {
  display: block;
}