* {
  outline: none;
}

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

body {
  background-color: #f0f0f0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #412f27;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

a {
  color: #412f27;
  text-decoration: none;
}
a:hover {
  color: #ee5c4f;
}

h1, h2, h3 {
  margin: 10px 0;
  font-size: 18px;
  font-weight: 700;
}
h1 small, h2 small, h3 small {
  font-size: 14px;
  font-weight: 400;
}

.input {
  width: 100%;
  height: 38px;
  padding: 0 10px;
  border: 1px solid #dcdde0;
  border-radius: 5px;
  background-color: #fff;
  box-sizing: border-box;
  font-size: 16px;
  color: #333;
}
.input:focus {
  border-color: #ee5c4f;
}

.button {
  height: 38px;
  padding: 0 15px;
  display: inline-block;
  border: 0;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: #ee5c4f;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  cursor: pointer;
  line-height: 38px;
}
.button:hover {
  opacity: 0.8;
  color: #fff;
}

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

.side-column {
  order: 1;
  min-width: 260px;
  max-width: 260px;
  background-color: #412f27;
}

.content {
  max-width: calc(100% - 260px);
  order: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.main {
  flex-grow: 1;
}

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

.header-row, .footer-row {
  background-color: #fff;
}

.header-row .container {
  min-height: 64px;
  display: flex;
  align-items: center;
}
.header-row .logo {
  order: 1;
}
.header-row .side-column-toggle {
  order: 3;
}

.logo {
  position: relative;
  min-width: 270px;
  max-width: 270px;
  height: 64px;
  margin-right: auto;
}
.logo > img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

.side-column-toggle {
  margin: 0 0 0 30px;
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.sort {
  order: 2;
  margin: 0;
  padding: 0;
  display: flex;
}
.sort li {
  margin: 0 15px;
  padding: 0;
  list-style: none;
}
.sort li a {
  font-weight: 500;
  color: #273252;
}
.sort li a:hover {
  color: #ee5c4f;
}
.sort li a .la {
  margin: -2px 4px 0 0;
  vertical-align: middle;
  font-size: 20px;
}
.sort li:first-child {
  margin-left: 0;
}
.sort li:last-child {
  margin-right: 0;
}
.sort li.active a {
  color: #ee5c4f;
  text-decoration: underline;
}

.dropdown {
  position: relative;
}
.dropdown .la-angle-down {
  margin: -3px 0 0 2px !important;
  font-size: 14px !important;
}

.dropdown-container {
  position: absolute;
  left: 0;
  margin: 5px 0;
  padding: 0;
  background: #fff;
  z-index: 2;
  white-space: nowrap;
  font-size: 14px;
  text-align: left;
  line-height: normal;
  display: none;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}
.dropdown-container li {
  margin: 10px;
  padding: 0 10px;
  display: block;
  list-style: none;
}

.side-column {
  color: #fff;
}
.side-column .side-column-content {
  padding: 0 20px 20px 20px;
}
.side-column .menu {
  margin-bottom: 30px;
  text-transform: uppercase;
}
.side-column .menu .la {
  margin: -2px 4px 0 0;
  vertical-align: middle;
  font-size: 20px;
}
.side-column .dropdown-container {
  background-color: #543d33;
}
.side-column .dropdown-container li {
  padding: 0 20px;
  text-transform: none;
}
.side-column .dropdown-container li::after {
  display: none;
}
.side-column ul {
  margin: 10px 0;
  padding: 0;
}
.side-column ul li {
  position: relative;
  margin: 10px 0;
  padding: 0 0 0 15px;
  list-style: none;
}
.side-column ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 3px;
  display: block;
  background-color: #fabe4c;
}
.side-column ul li a {
  display: block;
}
.side-column a {
  color: #f6f1eb;
}
.side-column .active a, .side-column a:hover {
  color: #ee5c4f;
}

.search {
  position: relative;
  min-height: 64px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  background-color: #fff;
}
.search-input {
  width: 100%;
  height: 31px;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #d9d5d4;
  background-color: transparent;
  color: #412f27;
}
.search-button {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  padding: 0;
  border: 0;
  background-color: transparent;
  font-size: 24px;
  cursor: pointer;
  color: #ee5c4f;
}

.thumbnails {
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.th {
  position: relative;
  width: calc(25% - 10px);
  margin: 0 5px 5px 5px;
  display: block;
  color: #212121;
}
.th a {
  color: #212121;
}
.th:hover {
  text-decoration: none;
}
.th:hover a {
  text-decoration: none;
}
.th:hover .th-title, .th:hover .th-description {
  color: #ee5c4f;
}

.th-img {
  position: relative;
  padding: 75% 0 0 0;
  display: block;
}
.th-img > img, .th-img > source {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.th-q, .th-length {
  position: absolute;
  top: 2px;
  padding: 1px 5px;
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.th-q {
  left: 2px;
  background-color: #ee5c4f;
  color: #fff;
}

.th-length {
  right: 2px;
  background-color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  color: #fff;
}

.th-info {
  width: 100%;
  padding: 5px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.th-title, .th-description, .th-data {
  height: 20px;
  padding: 0;
  display: block;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex-grow: 1;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
}

.th-description, .th-data {
  text-transform: none;
}

.th-data {
  margin: -4px 0 4px 0;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  color: #ee5c4f;
}
.th-data .th-rating .la {
  margin: -2px 0 0 0;
  vertical-align: middle;
  font-size: 18px;
  color: #32be25;
}
.th-data a {
  color: #ee5c4f;
}
.th-data a:hover {
  text-decoration: underline;
}

.th-amount {
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  color: #ee5c4f;
}

.content-wrapper {
  width: 100%;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.content-column {
  position: relative;
}

.content-player {
  position: relative;
  padding: 56.25% 0 0 0;
}
.content-player iframe, .content-player .player-code {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.content-bar {
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dcdde0;
}

.content-rate {
  order: 2;
  position: relative;
  margin: 0 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  line-height: 48px;
}
.content-rate a {
  margin: 0 30px 0 0;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.content-rate a:last-of-type {
  margin: 0;
}
.content-rate a:hover {
  text-decoration: none;
}
.content-rate a[disabled], .content-rate a[disabled]:hover {
  color: #777 !important;
  cursor: default;
}
.content-rate a[disabled] .la, .content-rate a[disabled]:hover .la {
  color: #777 !important;
}
.content-rate .button-like {
  color: #5b850e;
}
.content-rate .button-dislike {
  color: #d11c1c;
}
.content-rate .la {
  margin: -2px 5px 0 0;
  font-size: 30px;
}
.content-rate .la-thumbs-up {
  color: #5b850e;
}
.content-rate .la-thumbs-down {
  color: #d11c1c;
}
.content-rate-line {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: #d11c1c;
}
.content-rate-line span {
  height: 1px;
  display: block;
  background-color: #5b850e;
}

.content-info {
  order: 1;
  display: flex;
  flex-wrap: wrap;
}
.content-info > div {
  margin: 0 30px 0 0;
  display: flex;
}
.content-info > div span {
  margin-right: 5px;
}
.content-info > div .la {
  margin: -2px 5px 0 0;
  font-size: 24px;
  color: #ee5c4f;
}

.content-links a {
  margin: 0 0 0 10px;
  display: inline-block;
}
.content-links .la {
  margin: -2px 2px 0 0;
  vertical-align: middle;
  font-size: 18px;
}

.content-side-column {
  margin: 10px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: center;
}
.content-side-column > div {
  min-width: 300px;
  max-width: 300px;
}

.page-navigation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  line-height: 38px;
}

.paginator-links {
  margin: 8px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.paginator-links li {
  margin: 2px;
  padding: 0;
  list-style: none;
}
.paginator-links .la {
  margin: -2px 4px 0 4px;
  vertical-align: middle;
  font-size: 20px;
}

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

.tags {
  margin: 0 0 15px 0;
  padding: 0;
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.tags li {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 4px 0;
  box-sizing: border-box;
  display: inline-block;
  border-bottom: 1px solid #dcdde0;
  list-style: none;
}
.tags .tags-letter {
  color: #ee5c4f;
}
.tags a {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.tags a span {
  margin: 0 0 0 auto;
  padding: 0 4px;
  display: inline-block;
  background-color: #dcdde0;
  font-size: 12px;
}
.tags a:hover {
  color: #ee5c4f;
}
.tags a:hover span {
  background-color: #ee5c4f;
  color: #fff;
}

.sites {
  margin: 0 0 15px 0;
  padding: 0;
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.sites li {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 4px 0;
  box-sizing: border-box;
  border-bottom: 1px solid #dcdde0;
  display: flex;
}
.sites li a {
  display: flex;
}
.sites li span {
  margin: 0 15px 0 0;
  color: #ee5c4f;
}

.bottom-content {
  width: 100%;
  height: 250px;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}
.bottom-content > div {
  min-width: 300px;
  max-width: 300px;
  margin: 0;
}

.footer-row .disclaimer {
  padding: 20px 0;
}
.footer-row-nav {
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid #dcdde0;
  display: flex;
  flex-wrap: wrap;
}
.footer-row-nav li {
  margin: 0 20px 0 0;
  padding: 0;
  list-style: none;
}
.footer-row-nav li a {
  font-weight: 500;
  color: #212121;
}
.footer-row-nav li.copyright {
  margin: 0 0 0 auto;
  color: #6e6e6f;
}

@media screen and (min-width: 1400px) {
  .th {
    width: calc(20% - 10px);
  }
}
@media screen and (min-width: 1920px) {
  .th {
    width: calc(16.66% - 10px);
  }
}
@media screen and (max-width: 1199px) {
  .wrapper-column {
    min-height: auto;
    display: block;
  }

  .content {
    max-width: 100%;
  }

  .side-column {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100vh;
    display: none;
    z-index: 1000;
  }

  .side-column-open .side-column {
    display: block;
  }
  .side-column-open .content {
    position: relative;
  }
  .side-column-open .content .content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 33, 33, 0.2);
    z-index: 999;
  }

  .container {
    padding: 0 10px;
  }

  .side-column-toggle {
    display: block;
  }

  .header-row .container {
    min-height: auto;
    padding: 0 10px 10px 10px;
    flex-wrap: wrap;
  }
  .header-row .side-column-toggle {
    order: 2;
  }
  .header-row .sort {
    order: 3;
    width: 100%;
    margin: 0;
    padding: 10px 0 0 0;
    border-top: 1px solid #dcdde0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .header-row .sort li {
    margin: 0 8px;
  }

  .content-side-column {
    width: 100%;
    max-height: 250px;
    margin: 0;
    overflow: hidden;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .content-side-column > div {
    margin: 0 5px;
  }

  .bottom-content {
    width: 100%;
    max-height: 250px;
    overflow: hidden;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .bottom-content > div {
    margin: 0 5px;
  }

  .footer-row {
    text-align: center;
  }
  .footer-row-nav {
    justify-content: center;
  }
  .footer-row-nav li.copyright {
    margin-left: 0;
  }
}
@media screen and (max-width: 1023px) {
  .th {
    width: calc(33.33% - 10px);
  }

  .page-navigation {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .tags, .sites {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media screen and (max-width: 767px) {
  .th {
    width: calc(50% - 10px);
  }

  .content-bar {
    margin-top: 0;
    flex-wrap: wrap;
    border: 0;
  }

  .content-rate {
    order: 1;
    width: 100%;
    margin-bottom: 10px;
    justify-content: space-between;
  }

  .content-info {
    order: 2;
    border: 0;
  }
  .content-info > div {
    margin: 5px 10px 5px 0;
  }

  .tags, .sites {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media screen and (max-width: 479px) {
  .tags {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
