* {
  outline: none;
}

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

body {
  background-color: #fff;
  font-family: 'PT Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #080e10;
  line-height: 1.3;
}

img {
  max-width: 100%;
}

.theme-alt body {
  background-color: #0d1416;
  color: #a0a0a0;
}

.container {
  width: 100%;
  max-width: 1493px;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

a {
  font-weight: 400;
  color: #1a2e35;
  text-decoration: none;
}

.theme-alt a {
  color: #fff;
}
a:hover {
  text-decoration: underline;
}

p a {
  font-weight: 400;
  color: #1a2e35;
  text-decoration: underline;
}


h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
  margin: 10px 0;
  font-weight: 700;
  line-height: 1.15;
}

.theme-alt h1, .theme-alt h2, .theme-alt h3, .theme-alt h4, .theme-alt .h1, .theme-alt .h2, .theme-alt .h3, .theme-alt .h4 {
  color: #fff;
}

h1, .h1 {
  font-size: 30px;
}

h2, .h2 {
  font-size: 24px;
}

h3, .h3 {
  font-size: 24px;
}

h4, .h4 {
  font-size: 16px;
}

p {
  margin: 10px 0;
}

.input-text {
  width: 100%;
  height: 44px;
  padding: 0 15px;
  box-sizing: border-box;
  border: 1px solid transparent;
  border-radius: 5px;
  background-color: #f5f5f5;
  font-size: 14px;
}

.input-text:focus {
  border: 1px solid #ccc;
}

.theme-alt .input-text:focus {
  border-color: transparent;
}

.input-text-small {
  height: 32px;
  padding: 0 10px;
}

.input-text-lg {
  height: 48px;
}

textarea.input-text {
  height: auto;
  padding: 10px;
  min-height: 80px;
  resize: vertical;
}

.contact  textarea {
  box-sizing: border-box;
  border-radius: 5px;
  font-size: 14px;
    display: block;
    min-height: 120px;
    max-width: 710px;
    width: 100%;
    border: 1px solid #cdcdcd;
    color: #afafaf;
    padding: 12px 124px 12px 18px;
    -webkit-transition: border-color .3s;
    -o-transition: border-color .3s;
    transition: border-color .3s;
}



select.input-text {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  background-image: url(../images/angle-down.svg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: 32px auto;
}

select::-ms-expand {
  display: none;
}

.input-checkbox {
  display: none;
  box-sizing: border-box;
  padding: 0;
}

.input-checkbox + label {
  margin: 0;
  display: inline-block;
  cursor: pointer;
  display: -webkit-box;
  display: flex;
}

.input-checkbox + label span {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 6px 0 0;
  vertical-align: top;
  box-sizing: border-box;
  border: 2px solid #080e10;
  cursor: pointer;
}

.input-checkbox:checked + label span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  width: 22px;
  height: 22px;
  display: block;
  background: url(../images/check-square.svg) no-repeat center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.theme-alt .input-checkbox + label span {
  border-color: #fff;
}

.theme-alt .input-checkbox:checked + label span::after {
  background-image: url(../images/check-square-alt.svg);
}

.input-container {
  margin: 0 0 10px 0;
}

.checkbox-container {
  text-align: left;
}

.btn {
  height: 44px;
  padding: 0 20px;
  display: inline-block;
  box-sizing: border-box;
  border: 0;
  border-radius: 5px;
  background-color: #e50000;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 44px;
  cursor: pointer;
}

.btn-light {
  background-color: #e8eaea;
  color: #080e10;
}

.theme-alt .btn-light {
  background-color: #252b2d;
  color: #fff;
}

.btn-link {
  background-color: transparent;
  color: #080e10;
}

.theme-alt .btn-link {
  color: #fff;
}

.btn:hover {
  background-color: #bc0303;
  text-decoration: none;
}

.btn-light:hover {
  background-color: #efefef;
  color: #080e10;
}

.theme-alt .btn-light:hover {
  background-color: #252b2d;
  color: #fff;
}

.btn-link:hover {
  background-color: transparent;
  color: #080e10;
  opacity: 0.8;
}

.theme-alt .btn-link:hover {
  color: #fff;
}

.btn-large {
  height: 48px;
  line-height: 48px;
}

.btn-small {
  height: 34px;
  font-size: 14px;
  line-height: 34px;
}

.btn-xsmall {
  height: 26px;
  font-size: 13px;
  line-height: 26px;
}

.text-accent {
  color: #e50000;
}

.wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  overflow-x: hidden;
}

.main {
  -webkit-box-flex: 1;
          flex-grow: 1;
}

.dropdown {
  position: relative;
}

.dropdown-toggle.toggled .la-angle-down {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}

.dropdown-container {
  position: absolute;
  left: 0;
  min-width: 120px;
  padding: 24px;
  box-sizing: border-box;
  display: none;
  border: 1px solid #fff;
  border-radius: 7px;
  box-shadow: 0 0 10px 0 rgba(26, 46, 53, 0.25);
  background-color: #f5f5f5;
  font-size: 14px;
  color: #080e10;
  z-index: 3;
}

.theme-alt .dropdown-container {
  border: 0;
  background-color: #252b2d;
  color: #fff;
}

.dropdown.toggled .dropdown-container {
  display: block;
}

.dropdown-list {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.dropdown-list > li {
  margin: 0 0 6px 0 !important;
  padding: 0;
  list-style: none;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}

.dropdown-list > li:last-child {
  margin: 0 !important;
}

.hidden-lg {
  display: none;
}

.header-container {
  padding-top: 12px;
  padding-bottom: 12px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.logo {
  width: 197px;
  height: 39px;
  margin: 0 20px 0 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  background: url(../images/logo.png) no-repeat center;
  background-size: 100% auto;
}
@media screen and (max-width: 341px) {
.logo{width: 170px!important}
}
.theme-alt .logo {
  background-image: url(../images/logo-footer.png);
}

.header-search {
  position: relative;
  -webkit-box-flex: 1;
          flex-grow: 1;
}

.header-search .input-text {
  height: 48px;
  padding: 0 20px 0 48px;
}

.header-search .header-search-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  display: block;
  font-size: 30px;
  text-align: center;
  line-height: 48px;
  opacity: 0.8;
}

.header-user {
  display: -webkit-box;
  display: flex;
}

.header-user .btn {
  height: 48px;
  line-height: 48px;
}

.header-user .btn-color {
  min-width: 48px;
  margin: 0 0 0 5px;
  padding: 0;
  font-size: 30px;
}

.header-user-mobile {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
}

.header-user-mobile ul {
  margin: 0;
  padding: 0;
  color: #fff;
}

.header-user-mobile ul li {
  margin: 0 0 6px 0;
  padding: 0;
  list-style: none;
}

.header-user-mobile ul li:last-child {
  margin: 0;
}

.header-user-mobile ul li.dropdown-list-title {
  font-size: 18px;
}

.header-user-mobile ul li a {
  color: #fff;
}

.header-user-mobile ul li .la {
  font-size: 24px;
  vertical-align: middle;
}

.header-login .dropdown-container {
  right: 0;
  left: auto;
  width: 320px;
  text-align: center;
}

.header-login .dropdown-container .input-text {
  background-color: #fff;
}

.header-login .dropdown-container .btn {
  width: 100%;
  height: 44px;
  line-height: 44px;
}

.header-login .dropdown-container .checkbox-container {
  margin-bottom: 20px;
}

.header-member .la-user-circle {
  margin: -2px 6px 0 0;
  font-size: 24px;
  vertical-align: middle;
}

.mobile-nav {
  display: none;
}

.btn-search-toggle, .btn-nav-toggle {
  min-width: 48px;
  margin: 0 0 0 5px;
  padding: 0;
  font-size: 30px;
}

.nav {
  position: relative;
  background-color: #1a2e35;
  color: #fff;
}

.nav-container {
  height: 48px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.nav-container > ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: flex;
}

.nav-container > ul > li {
  margin: 0 30px 0 0;
  padding: 0;
  list-style: none;
}

.nav-container > ul > li > a {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  line-height: 48px;
}

.nav-container > ul > li > a .la {
  margin: 0 0 0 5px;
}

.nav-container > ul > li > a.active {
  color: #e50000;
}

.nav-container .dropdown {
  position: static;
}

.nav-container .dropdown-container {
  top: 48px;
  width: 100%;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #fff;
  border-radius: 0;
}

.theme-alt .nav-container .dropdown-container {
  border: 0;
}

.main-container {
  min-height: 100%;
  display: -webkit-box;
  display: flex;
}

.content {
  padding: 10px 0 20px 0;
  -webkit-box-flex: 1;
          flex-grow: 1;
  -webkit-box-ordinal-group: 3;
          order: 2;
}

.sidebar {
  min-width: 192px;
  -webkit-box-ordinal-group: 2;
          order: 1;
  padding: 0 10px 0 0;
  margin: 0 10px 0 0;
  box-sizing: border-box;
  border-right: 1px solid #dfe1e1;
}

.theme-alt .sidebar {
  border-right-color: #1a2e35;
}

.menu {
  margin: 20px 0;
  padding: 0;
}

.menu li {
  margin: 0 0 7px 0;
  padding: 0;
  list-style: none;
}

.menu li a {
  font-weight: 400;
  color: #080e10;
}

.menu li a img {
  margin: 0 5px -5px 0;
}

.menu li .la {
  margin: -2px 10px 0 0;
  font-size: 24px;
  vertical-align: middle;
}

.theme-alt .menu a {
  color: #fff;
}

.sidebar-block {
  margin: 10px 0;
  padding: 10px 0;
  border-top: 1px solid #dfe1e1;
}

.sidebar-block h3 {
  margin: 0 0 10px 0;
  font-size: 16px;
}

.theme-alt .sidebar-block {
  border-top-color: #1a2e35;
}

.sidebar-quality {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.sidebar-filter {
  position: relative;
}

.sidebar-filter .input-text {
  padding-left: 32px;
  border: 1px solid #ccc;
}

.sidebar-filter .filter-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  font-size: 24px;
  text-align: center;
  line-height: 32px;
  opacity: 0.8;
}

.theme-alt .sidebar-filter .input-text {
  border: 0;
}

.theme-alt .irs-min, .theme-alt .irs-max {
  color: #fff;
}

.theme-alt .irs-line, .theme-alt .irs--round .irs-handle {
  background-color: #1a2e35;
}

.sidebar-categories {
  margin: 15px 0;
  padding: 0;
  font-size: 14px;
}

.sidebar-categories li {
  margin: 0 -10px;
  padding: 0;
  list-style: none;
}

.sidebar-categories a {
  padding: 4px 10px;
  display: -webkit-box;
  display: flex;
  font-weight: 400;
  color: #080e10;
}

.sidebar-categories a .la {
  margin-right: 5px;
}

.sidebar-categories a span {
  margin: 0 0 0 auto;
  color: #1a2e35;
}

.sidebar-categories a:hover {
  background: #f5f5f5;
  color: #e50000;
  text-decoration: none;
}

.sidebar-categories a:hover span {
  color: #e50000;
}

.sidebar-categories .sidebar-categories-last a {
  padding: 4px 0 4px 28px;
  color: #e50000;
}

.sidebar-categories .sidebar-categories-last a .la {
  margin: 0 0 0 10px;
  font-size: 20px;
}

.theme-alt .sidebar-categories a {
  color: #fff;
}

.theme-alt .sidebar-categories a span {
  color: #a0a0a0;
}

.theme-alt .sidebar-categories a:hover {
  background-color: #191f21;
}

.theme-alt .sidebar-categories .sidebar-categories-last a {
  color: #e50000;
}

.sidebar-avatar {
  width: 114px;
  height: 114px;
  margin: 0 auto;
  border-radius: 114px;
  overflow: hidden;
}

.sidebar-avatar img {
  width: 100%;
}

.sidebar-secondary {
  padding: 0;
  border: 0;
}

.sidebar-favorite {
  margin: 20px 0;
  padding: 10px;
  background-color: #f5f5f5;
  border-radius: 5px;
}

.theme-alt .sidebar-favorite {
  background-color: #252b2d;
}

.sidebar-model {
  margin: 20px 0 10px 0;
}

.sidebar-model-photo {
  max-width: 100%;
}

.sidebar-model-stats {
  margin: 10px 0;
  padding: 0;
  font-size: 14px;
}

.sidebar-model-stats li {
  margin: 0 0 5px 0;
  padding: 0;
  list-style: none;
}

.sidebar-model-stats li strong {
  font-weight: 400;
  color: #1a2e35;
}

.theme-alt .sidebar-model-stats li strong {
  color: #fff;
}

.sidebar-model-socials {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.sidebar-model-socials .btn {
  margin: 0 10px 10px 0;
  padding: 0 10px;
  font-size: 24px;
}

.gradient-ig {
  background: linear-gradient(45deg, #ffcd65 0%, #e1366b 50%, #a13ba6 100%);
}

.gradient-tw {
  background: linear-gradient(45deg, #39aad6 0%, #6bc4bd 100%);
}

.title {
  margin: 10px 0;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.title h1, .title h2, .title h3, .title .h1, .title .h2, .title .h3 {
  margin: 0 auto 0 0;
  line-height: 34px;
}

.sort {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.sort li {
  margin: 0 2px;
  padding: 0;
  list-style: none;
}

.sort li:first-child {
  margin-left: 0;
}

.sort li:last-child {
  margin-right: 0;
}

.sort .btn {
  padding: 0 10px;
}

.sort .dropdown-container {
  left: auto;
  right: 0;
  min-width: 100%;
}

.sort .length-range {
  display: none;
}

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

.th {
  width: calc(100% / 5 - 6px);
  margin: 3px;
  display: block;
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(26, 46, 53, 0.25);
  font-size: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.no-touch .th:hover {
  text-decoration: none;
}

.no-touch .th:hover .th-image img {
  outline: 1px solid #e50000;
  outline-offset: -1px;
}

.no-touch .th:hover .th-q, .th:hover .th-views {
  left: -300px;
}

.no-touch .th:hover .th-rating, .th:hover .th-duration {
  right: -300px;
}

.no-touch .th:hover .th-actions {
  right: 6px;
}

.theme-alt .th {
  background-color: #192022;
}

.th-image {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}

.th-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.th-image > span {
  position: absolute;
  height: 20px;
  padding: 0 4px;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  color: #1a2e35;
  line-height: 20px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.th-image > span .la {
  margin: -2px 2px 0 0;
  font-size: 18px;
  vertical-align: middle;
}

.th-image .th-rating {
  top: 0;
  right: 0;
}

.th-image .th-views {
  bottom: 0;
  left: 0;
}

.th-image .th-duration {
  right: 0;
  bottom: 0;
}

.theme-alt .th-image > span {
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
}

.th-m {
  width: calc(100% / 6 - 6px);
}

.th-m .th-image {
  padding-top: 133.333333%;
}

.th-q {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  background-color: #0f4c82;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  line-height: 20px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.th-q span {
  padding: 0 4px;
  display: inline-block;
}

.th-q.th-q-hd i {
  padding: 0 4px;
  display: inline-block;
  background-color: #e50000;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.th-q.th-q-uhd i {
  padding: 0 4px;
  display: inline-block;
  background-color: #1a2e35;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffd105;
}

.th-actions {
  z-index: 1;
  position: absolute;
  top: 6px;
  right: -600px;
  width: 26px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.th-actions .th-later, .th-actions .th-fav {
  width: 26px;
  height: 26px;
  margin: 0 0 6px 0;
  display: block;
  border-radius: 5px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 26px;
}

.th-actions .th-later {
  background-color: #6a79f8;
}

.th-actions .th-fav {
  background-color: #e50000;
}

.th-title {
  width: 100%;
  height: 24px;
  margin: 2px 0 0 0;
  padding: 0 5px;
  box-sizing: border-box;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
  color: #080e10;
  line-height: 24px;
}

.theme-alt .th-title {
  color: #fff;
}

.th-description {
  width: 100%;
  height: 36px;
  margin: 2px 0;
  padding: 0 5px;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  font-size: 14px;
  font-weight: 400;
  color: #1a2e35;
  line-height: 18px;
}

.th-description span {
  color: #828282;
}

.theme-alt .th-description {
  color: #bfbfbf;
}

.theme-alt .th-description span {
  color: #a0a0a0;
}

.th-info {
  width: 100%;
  height: 20px;
  margin: 0 0 4px 0;
  padding: 0 5px;
  box-sizing: border-box;
  display: -webkit-box;
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  color: #1a2e35;
  line-height: 20px;
}

.th-info div:first-child {
  margin-right: auto;
}

.th-info .la {
  font-size: 20px;
  vertical-align: middle;
}

.theme-alt .th-info {
  color: #bfbfbf;
}

.th-delete {
  margin: 0 0 5px 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.th-delete label span {
  margin: 0 10px;
}

.th-delete .btn {
  padding: 0 10px;
}

.paginator {
  margin: 30px 0;
  padding: 0;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  text-align: center;
  line-height: 56px;
}

.paginator li {
  margin: 1px;
  padding: 0;
  list-style: none;
}

.paginator a, .paginator span {
  min-width: 56px;
  height: 56px;
  display: block;
  background-color: #e8eaea;
  border-radius: 5px;
  font-weight: 400;
  color: #080e10;
}

.paginator a:hover, .paginator a.active, .paginator span:hover, .paginator span.active {
  background-color: #e50000;
  color: #fff;
  text-decoration: none;
}

.paginator a .la, .paginator span .la {
  margin: -3px 0 0 0;
  font-size: 24px;
  vertical-align: middle;
}

.paginator .paginator-btn a {
  background-color: #a3abae;
  color: #fff;
}

.paginator .paginator-btn a:hover, .paginator .paginator-btn a.active {
  background-color: #e50000;
  color: #fff;
  text-decoration: none;
}

.paginator .paginator-btn:first-child {
  margin-right: 15px;
}

.paginator .paginator-btn:last-child {
  margin-left: 15px;
}

.theme-alt .paginator a, .theme-alt .paginator span {
  background-color: #232a2c;
  color: #fff;
}

.theme-alt .paginator a:hover, .theme-alt .paginator a.active, .theme-alt .paginator span:hover, .theme-alt .paginator span.active {
  background-color: #e50000;
  color: #fff;
  text-decoration: none;
}

.theme-alt .paginator .paginator-btn a {
  background-color: #1a2e35;
  color: #fff;
}

.theme-alt .paginator .paginator-btn a:hover, .theme-alt .paginator .paginator-btn a.active {
  background-color: #e50000;
  color: #fff;
  text-decoration: none;
}

.list {
  margin: 10px 0;
  padding: 0;
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4;
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
}

.list li {
  width: 100%;
  margin: 4px 0;
  padding: 0;
  list-style: none;
  display: inline-block;
}

.list li a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.list li a span {
  margin-left: auto;
  padding: 2px 7px;
  display: inline-block;
  background-color: #e8eaea;
  border-radius: 20px;
  font-size: 13px;
}

.list li a:hover {
  color: #e50000;
  text-decoration: none;
}

.list li a:hover span {
  background-color: #e50000;
  color: #fff;
}

.list.list-full {
  -webkit-column-count: 5;
     -moz-column-count: 5;
          column-count: 5;
}

.theme-alt .list li a span {
  background-color: #181f21;
}

.theme-alt .list li a:hover {
  color: #e50000;
  text-decoration: none;
}

.theme-alt .list li a:hover span {
  background-color: #e50000;
  color: #fff;
}

.dropdown-thumbs-container {
  display: -webkit-box;
  display: flex;
}

.dropdown-thumbs {
  padding: 20px 0 10px 0;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
          flex-grow: 1;
}

.ths {
  width: calc(100% / 5 - 6px);
  margin: 0 3px 6px 3px;
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(26, 46, 53, 0.25);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.ths:hover {
  text-decoration: none;
}

.theme-alt .ths {
  background-color: #192022;
}

.ths-image {
  position: relative;
  padding: 56.25% 0 0 0;
}

.ths-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ths-image:hover img {
  outline: 1px solid #e50000;
  outline-offset: -1px;
}

.ths-title {
  width: 100%;
  height: 24px;
  margin: 2px 0;
  padding: 0 5px;
  box-sizing: border-box;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
  color: #080e10;
  line-height: 24px;
}

.theme-alt .ths-title {
  color: #fff;
}

.btn-all {
  min-width: 160px;
  margin: 0 auto;
}

.dropdown-cat-list {
  min-width: 400px;
  text-align: center;
}

.dropdown-cat-list ul {
  margin: 20px 10px 0 10px;
  padding: 0;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
  -webkit-column-gap: 2%;
     -moz-column-gap: 2%;
          column-gap: 2%;
  font-size: 16px;
  text-align: left;
}

.dropdown-cat-list ul li {
  width: 100%;
  margin: 0 0 5px 0;
  padding: 0;
  list-style: none;
}

.dropdown-tags-container {
  text-align: center;
}

.dropdown-tags-container .list {
  -webkit-column-count: 6;
     -moz-column-count: 6;
          column-count: 6;
  -webkit-column-gap: 2%;
     -moz-column-gap: 2%;
          column-gap: 2%;
  text-align: left;
}

.dropdown-col-title {
  min-width: 234px;
  padding: 0 10px 0 0;
}

.dropdown-col-title h4 {
  margin: 20px 0 10px 0;
}

.dropdown-col-title ul {
  margin: 10px 0;
  padding: 0;
  border-top: 1px solid #e7e9ea;
}

.dropdown-col-title ul li {
  margin: 0;
  padding: 10px 0;
  list-style: none;
  border-bottom: 1px solid #e7e9ea;
}

.dropdown-col-title ul li .la {
  min-width: 32px;
  font-size: 20px;
  vertical-align: middle;
}

.theme-alt .dropdown-col-title ul {
  border-color: rgba(255, 255, 255, 0.1);
}

.theme-alt .dropdown-col-title ul li {
  border-color: rgba(255, 255, 255, 0.1);
}

.dropdown-col-thumbs {
  padding: 20px 0 14px 0;
  -webkit-box-flex: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.dropdown-col-thumbs p {
  width: 100%;
}

.thc {
  width: calc(100% / 5 - 6px);
  margin: 0 3px 6px 3px;
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(26, 46, 53, 0.25);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.thc:hover {
  text-decoration: none;
}

.theme-alt .thc {
  background-color: #192022;
}

.thc-image {
  position: relative;
  padding: 56.25% 0 0 0;
}

.thc-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.thc-image:hover img {
  outline: 1px solid #e50000;
  outline-offset: -1px;
}

.thc-title {
  width: 100%;
  height: 24px;
  margin: 2px 0;
  padding: 0 5px;
  box-sizing: border-box;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
  color: #080e10;
  line-height: 24px;
}

.theme-alt .thc-title {
  color: #fff;
}

.thp {
  width: calc(100% / 8 - 6px);
  margin: 0 3px 6px 3px;
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(26, 46, 53, 0.25);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.thp:hover {
  text-decoration: none;
}

.theme-alt .thp {
  background-color: #192022;
}

.thp-image {
  position: relative;
  padding: 144% 0 0 0;
}

.thp-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.thp-image:hover img {
  outline: 1px solid #e50000;
  outline-offset: -1px;
}

.thp-title {
  width: 100%;
  height: 24px;
  margin: 2px 0;
  padding: 0 5px;
  box-sizing: border-box;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
  color: #080e10;
  line-height: 24px;
}

.theme-alt .thp-title {
  color: #fff;
}

.user-menu {
  width: 100%;
  margin: 10px 0;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.user-menu .btn {
  margin: 0 20px 5px 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  white-space: nowrap;
}

.user-menu .btn .la {
  margin-right: 6px;
  font-size: 24px;
}

.user-menu-bottom {
  margin-top: 20px;
}

.channel-container {
  display: -webkit-box;
  display: flex;
}

.channel-photo {
  min-width: 260px;
  max-width: 260px;
  margin: 10px 10px 0 0;
}

.channel-content {
  -webkit-box-flex: 1;
          flex-grow: 1;
}

.channel-title {
  margin: 10px 0 0 0;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.channel-title-col {
  margin: 0 20px 0 0;
  padding: 0 20px 0 0;
  border-right: 1px solid #dfe1e1;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.channel-title-col:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

.channel-title-col h1, .channel-title-col .h1, .channel-title-col h2, .channel-title-col .h2 {
  margin-top: 0;
  text-align: center;
}

.theme-alt .channel-title-col {
  border-color: rgba(255, 255, 255, 0.1);
}

.channel-description {
  height: auto;
  margin: 20px 0;
  font-size: 14px;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}

.channel-description a {
  font-size: 16px;
  font-weight: 400;
  color: #e50000;
}

.channel-description-container p {
  display: none;
}

.channel-description-container p:first-child {
  display: block;
}

.channel-length {
  min-width: 180px;
  margin-right: 20px;
}

.channel-length .irs--round {
  height: 34px;
}

.channel-length .irs--round .irs-line {
  top: 30px;
}

.channel-length .irs--round .irs-bar {
  top: 30px;
}

.channel-length .irs--round .irs-handle {
  top: 24px;
}

.tabs-toggle {
  margin: 10px 0;
  padding: 0;
  border-bottom: 3px solid #0f4c82;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.tabs-toggle li {
  margin: 0 4px 0 0;
  padding: 0 20px;
  list-style: none;
  background-color: #f7f8f8;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  line-height: 44px;
}

.tabs-toggle li a {
  font-size: 18px;
  font-weight: 700;
}

.tabs-toggle li.toggled {
  background-color: #0f4c82;
  color: #fff;
}

.tabs-toggle li.toggled a {
  color: #fff;
}

.theme-alt .tabs-toggle li {
  background-color: #252b2d;
}

.theme-alt .tabs-toggle li.toggled {
  background-color: #0f4c82;
  color: #fff;
}

.tabs .tab {
  display: none;
}

.tabs .tab:first-child {
  display: block;
}

.video-aside {
  margin: 20px 0 0 0;
}

.video-wrapper {
  display: -webkit-box;
  display: flex;
}

.video-wrapper .video-container {
  -webkit-box-flex: 1;
          flex-grow: 1;
}

.video-wrapper .video-aside {
  min-width: 326px;
  max-width: 326px;
  margin: 0 0 0 6px;
  padding: 0 -3px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  align-content: flex-start;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.video-wrapper .video-aside .title {
  display: none;
}

.video-wrapper .video-aside .thumbs {
  margin: 0 -3px;
}

.video-wrapper .video-aside .th {
  width: calc(50% - 6px);
  margin: 0 3px 6px 3px;
}

.player-container {
  position: relative;
  padding: 56.25% 0 0 0;
}

.player-container .player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.video-links p {
  width: 100%;
  margin: 5px 0;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
}

.video-links .btn {
  margin: 2px 0 2px 4px;
}

.video-comments {
  margin: 20px 0;
}

.video-comments h3 {
  font-size: 18px;
}

.video-comments .block-toggable {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.comment {
  width: 100%;
  margin: 20px 0 0 0;
  display: -webkit-box;
  display: flex;
  font-size: 14px;
}

.comment-author {
  min-width: 50px;
  max-width: 50px;
  margin: 0 10px 0 0;
  border-radius: 50px;
  overflow: hidden;
}

.comment-content {
  -webkit-box-flex: 1;
          flex-grow: 1;
}

.comment-info .comment-name {
  color: #e50000;
}

.comment-info .la {
  font-size: 22px;
  vertical-align: middle;
  color: #0f4c82;
}

.comment-body {
  padding: 5px 10px;
  background-color: #f7f8f8;
  border-radius: 5px;
}

.theme-alt .comment-body {
  background-color: #252b2d;
}

.video-screenshots {
  margin: 20px 0;
}

.video-screenshots h3 {
  font-size: 18px;
}

.video-screenshots-container {
  width: 100%;
  padding: 3px;
  box-sizing: border-box;
  border-radius: 5px;
  background-color: #f7f8f8;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.video-screenshots-container .th:hover .th-duration {
  right: 0;
}

.theme-alt .video-screenshots-container {
  background-color: #232a2c;
}

.video-buttons {
  width: 100%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  -webkit-box-align: center;
          align-items: center;
}

.video-buttons .la:not(.la-angle-down) {
  font-size: 22px;
  vertical-align: middle;
}

.video-actions {
  margin: 0 auto 0 0;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.video-actions .video-favorite {
  margin: 0 10px 10px 0;
}

.video-actions .dropdown {
  margin: 0 0 10px 0;
}

.video-actions .dropdown-container {
  left: auto;
  right: 0;
}

.video-rating {
  margin: 0 10px 10px 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.video-rating a:hover {
  text-decoration: none;
}

.video-rating .la {
  margin: -3px 0 0 0;
  font-size: 28px !important;
  vertical-align: middle;
}

.video-rating .btn {
  padding: 0 10px;
}

.btn-green {
  background-color: #78b808;
  color: #fff;
}

.video-rating-stats {
  margin: 0 10px;
  -webkit-box-flex: 1;
          flex-grow: 1;
}

.video-rating-line {
  width: 100%;
  height: 3px;
  background: #f23733;
}

.video-rating-line span {
  height: 3px;
  display: block;
  background: #78b808;
}

.video-stats {
  margin: 0 0 10px 0;
  display: -webkit-box;
  display: flex;
}

.video-stats span {
  margin: 0 0 0 10px;
}

.video-stats span .la {
  color: #0f4c82;
}

.block-toggler {
  cursor: pointer;
}

.block-toggler .la-angle-down {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}

.block-toggable {
  display: -webkit-box;
  display: flex;
}

.screenshots-hidden .screenshots-toggable, .comments-hidden .comments-toggable {
  display: none;
}

.screenshots-hidden .screenshots-toggler .la-angle-down, .comments-hidden .comments-toggler .la-angle-down {
  -webkit-transform: none;
          transform: none;
}

.show-more {
  margin-top: 20px;
  text-align: center;
}

.account-container {
  width: 100%;
  max-width: 1024px;
  margin: 40px auto;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.account-content {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  box-sizing: border-box;
}

.account-pros {
  margin: 20px 0;
  padding: 0;
}

.account-pros li {
  margin: 20px 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: flex;
}

.account-pros li .la {
  margin: 0 10px 0 0;
  font-size: 24px;
  color: #e50000;
}

.features {
  margin: 0 0 20px 0;
  display: -webkit-box;
  display: flex;
}

.features-image {
  margin: 10px 20px 0 0;
}

.features-text {
  -webkit-box-flex: 1;
          flex-grow: 1;
}

.account-form {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 30px;
  background-color: #f5f5f5;
  border-radius: 5px;
  box-sizing: border-box;
  text-align: center;
}

.account-form .account-form-container {
  margin: 30px 0;
}

.account-form .input-container {
  max-width: 320px;
  margin: 0 auto 20px auto;
}

.account-form .input-text {
  background-color: #fff;
}

.account-form .btn-container {
  max-width: 320px;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.account-form .btn-container .btn {
  -webkit-box-flex: 1;
          flex-grow: 1;
}

.account-form .btn-container .btn-or {
  margin-left: 20px;
}

.account-form .btn-container .btn-or a {
  margin: 0 0 0 10px;
  display: inline-block;
}

.account-form a {
  font-weight: 700;
  color: #e50000;
}

.account-form .btn-light {
  background-color: #a3abae;
  color: #fff;
}

.theme-alt .account-form .btn-light {
  background-color: #1a2e35;
}

.theme-alt .account-form {
  background-color: #192022;
}

.text-bottom {
  margin: 10px 0 0 0;
}

.footer {
  padding: 20px 0;
  background-color: #1a2e35;
  font-size: 14px;
  color: #bfbfbf;
}

.footer-container {
  text-align: center;
}

.footer-container .logo {
  margin: 0 auto;
  display: inline-block;
  background-image: url(../images/logo-footer.png);
}

.footer-container .btn-color {
  min-width: 34px;
  margin: 0 0 0 10px;
  padding: 0;
  display: inline-block;
  background-color: #304249;
  font-size: 24px;
  vertical-align: top;
}

.footer-container p {
  margin: 10px 0 0 0;
}

.footer-menu {
  margin: 10px 0;
  padding: 0;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
          justify-content: center;
  color: #e50000;
}

.footer-menu li {
  margin: 0 10px;
  padding: 0;
  list-style: none;
}

.footer-menu a {
  font-weight: 400;
  color: #e50000;
}




/*zheka*/
.generic-error,
.error-msg {
  color: #e50000;
}
.input-text.error {
  border-color: #e50000;
}
.header-user .dropdown-container .generic-error,
.account-form .generic-error,
.fancybox-skin .body-form .generic-error {
  margin-bottom: 5px;
}
.fancybox-skin {
  background: #f5f5f5;
}
.fancybox-skin .popup-holder {
  padding: 10px !important;
}
.fancybox-skin .title-text {
  font-size: 21px;
  font-weight: bold;
  color: #000;
  margin-bottom: 5px;
}
.fancybox-skin .file-control .file {
  margin-top: 5px;
}
.fancybox-skin .sing-up-login {
  margin-top: 5px;
}
.fancybox-skin #regButton {
  height: 44px;
  padding: 0 20px;
  display: inline-block;
  box-sizing: border-box;
  border: 0;
  border-radius: 5px;
  background-color: #e50000;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 44px;
  cursor: pointer;
}
.nav-container > ul li a {
  cursor: pointer;
}
.page-error {
  text-align: center;
  border: 1px solid #e50000;
  padding: 10px;
  border-radius: 5px;
  color: #e50000;
}
.dropdown-col-title ul li a img {
  width: 21px;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 1023px) {
  .nav {
    z-index: 21;
  }
  .nav-overlay {
    z-index: 20;
  }
}
.video-wrapper .video-aside .thumbs {
  width: 100%;
}