@charset "UTF-8";
.hideThis {
  display: flex;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.showThis {
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

:root {
  --hue: 223;
  --bg: #000000;
  --fg: hsl(var(--hue), 10%, 10%);
  --trans-dur: 0.3s;
  --trans-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --trans-ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  font-size: calc(20px + 20 * (100vw - 280px) / 3560);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #000;
  overflow: hidden;
  color: #fff;
}

header,
footer {
  flex: 0 0 auto;
}

main {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
}

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

@media screen and (orientation: landscape) and (max-height: 450px) {
  .player .player__window .player__panel {
    display: none;
  }
  button.player__playContainer {
    border: none;
    background: #343434;
    padding: 15px 7px 15px 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  form.header__search {
    display: none;
  }
}
button.dd {
  color: #ffffff;
  font:
    0.7em/0.7 'DM Sans',
    sans-serif;
  transition: color var(--trans-dur);
  border: 1px solid #fff;
  background: transparent;
}

.drop {
  --drop-trans-dur: 0.5s;
  --drop-flare-dist: 0;
  border-radius: 0.5em;
  margin: auto;
  padding: 0.25em 0.25em 0 0.25em;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  min-width: 9em;
  max-width: 100px;
}
.drop,
.drop:after {
  background-color: transparent;
}
.drop:before,
.drop:after {
  content: '';
  position: absolute;
}
.drop:before {
  display: none;
  right: 0;
  bottom: 100%;
  width: 9em;
  height: 9em;
}
.drop:after {
  border-radius: 0.4375em;
  display: block;
  top: 0.125em;
  left: 0.125em;
  width: calc(100% - 0.25em);
  height: calc(100% - 0.25em);
}
.drop__btn {
  border-radius: 0.375em;
  cursor: pointer;
  display: flex;
  align-items: center;
  line-height: 1;
  height: 0.5em;
  outline: transparent;
  margin-bottom: 0.25em;
  padding: 0.75em;
  position: relative;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid #fff;
  color: #fff;
}
.drop__btn:hover,
.drop__btn:focus-visible,
.drop__btn[aria-expanded='true'] {
  background-color: transparent;
}
.drop__btn:focus-visible {
  box-shadow: 0 0 0 0.25em hsla(var(--hue), 90%, 50%, 1);
}
.drop__btn:after {
  border-top: 0.375em solid currentColor;
  border-right: 0.375em solid transparent;
  border-left: 0.375em solid transparent;
  content: '';
  display: block;
  margin-inline-start: auto;
  width: 0;
  height: 0;
  transform-origin: 50% 37.5%;
  transition: transform var(--drop-trans-dur) var(--trans-ease-out);
}
.drop__btn[aria-expanded='true']:after {
  transform: rotate(0.5turn);
}
.drop--collapsing,
.drop--expanding,
.drop__items {
  overflow: hidden;
}
.drop__items {
  height: 0;
}
.drop__items-inner {
  visibility: hidden;
}
.drop--collapsing .drop__btn[aria-expanded='true'] {
  background-color: hsl(0, 0%, 100%);
}
.drop--collapsing .drop__btn[aria-expanded='true']:after {
  transform: rotate(0);
}
.drop--expanding:before {
  display: block;
}
.drop__items .drop__btn:hover,
.drop__items .drop__btn:focus-visible {
  background-color: hsl(var(--hue), 10%, 97.5%);
  color: hsla(var(--hue), 90%, 50%);
}
.drop__items .drop__btn:focus-visible {
  box-shadow: 0 0 0 0.25em hsla(var(--hue), 90%, 50%, 0);
}
.drop__items .drop__btn:after {
  border: 0;
  content: '✓';
  display: none;
  width: auto;
  height: auto;
}
.drop__items .drop__btn--selected:after {
  display: block;
}
.drop__btn[aria-expanded='true'] ~ .drop__items {
  height: auto;
}
.drop__btn[aria-expanded='true'] ~ .drop__items .drop__items-inner {
  visibility: visible;
}
.drop:has([aria-expanded='true']) {
  height: auto;
}
.drop:has([aria-expanded='true']):before {
  transform: translateY(calc(9em + var(--drop-flare-dist)));
  transition: transform var(--drop-trans-dur) linear;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: hsl(var(--hue), 10%, 10%);
    --fg: hsl(var(--hue), 10%, 90%);
  }
  .drop,
  .drop:after {
    background-color: hsl(0, 0%, 0%);
  }
  .drop__btn {
    background-color: hsl(var(--hue), 10%, 10%);
  }
  .drop__btn:hover,
  .drop__btn:focus-visible,
  .drop__btn[aria-expanded='true'] {
    background-color: hsl(var(--hue), 10%, 20%);
  }
  .drop__items .drop__btn:hover,
  .drop__items .drop__btn:focus-visible {
    background-color: hsl(var(--hue), 10%, 15%);
    color: hsla(var(--hue), 90%, 70%);
  }
  .drop--collapsing .drop__btn[aria-expanded='true'] {
    background-color: hsl(var(--hue), 10%, 10%);
  }
}
ul {
  margin: 0;
  padding: 0;
}

.search,
.submit-button {
  -webkit-appearance: none;
}

.clear {
  clear: both;
}

.u_menu,
div#search {
  float: right;
}

.header_holder {
  width: 96%;
  max-width: 1600px;
  border-bottom: 1px solid #f4792e;
}

div#header {
  font-size: 14px;
  margin-bottom: 10px;
}
div#header span {
  font-size: 14px;
}

.header_holder {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hidden-umenu-small {
  background: url(bgmin.png) rgba(0, 0, 0, 0);
  border: 1px solid #616161;
  display: none;
  height: 27px;
  padding-bottom: 4px;
  padding-top: 7px;
  position: absolute;
  top: 0;
  width: 38px;
}

.icon-b {
  background: #cccece;
  border-radius: 5px;
  display: block;
  height: 3px;
  margin: 4px auto;
  width: 20px;
}

#logo {
  float: left;
  margin-left: 5px;
  margin-top: 12px;
  width: 190px;
}

.logo {
  width: 190px;
}

.hidden-umenu {
  background: #222;
  border: 1px solid #616161;
  display: none;
  height: 22px;
  width: 38px;
  padding-bottom: 6px;
  padding-top: 6px;
  margin-top: 12px;
  float: right;
}

.hidden-umenu-small {
  margin-top: 12px;
  float: right;
}

#top-menu {
  margin-left: 20px;
  display: flex;
  float: left;
  flex-direction: row;
  justify-content: space-between;
  display: block;
  float: left;
}
#top-menu span {
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  color: #fff;
  height: 41px;
  line-height: 17px;
  font-family: 'Open Sans', sans-serif;
  font-size: 17px !important;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 19px;
  text-decoration: none;
  display: block;
  float: left;
}
#top-menu span.active {
  color: #f90;
}

.u_menu {
  margin-top: 19px;
}

#search {
  margin-right: 15px;
  margin-top: 14px;
  width: 292px;
}

.search-form-index {
  position: relative;
  width: 100%;
}

.search {
  border: 1px solid #3d3d3d;
  border-right: 0;
  background: #222;
  font-size: 14px;
  height: 18px;
  -webkit-border-radius: 0;
  padding: 5px 0 5px 12px;
  width: 246px;
}

.submit-button {
  border: 1px solid #3d3d3d;
  border-left: 0;
  background: url(assets/images/porno365_icons.png) 0px -102px no-repeat #222;
  height: 28px;
  width: 31px;
}

.search,
.submit-button {
  -webkit-border-radius: 0;
  display: block;
  float: left;
  margin: 0;
  color: #a5a5a5;
  font-size: 13px;
}

.u_menu,
div#search {
  float: right;
}

.u_menu {
  margin-top: 19px;
}

.user_ul {
  color: #fff;
  text-align: left;
}
.user_ul > li {
  display: inline-block;
  margin: 0 10px;
}

.stext_wrapper {
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: 5px;
  color: #ffffff;
}

@media screen and (max-width: 1350px) {
  #search {
    width: 175px !important;
  }
  .search {
    width: 130px;
  }
}
@media screen and (max-width: 1243px) {
  .u_menu {
    display: none;
  }
  .hidden-umenu {
    display: block !important;
  }
}
@media screen and (max-width: 950px) {
  #logo {
    border-bottom: 1px solid #f90;
    clear: both;
    float: none !important;
    margin: 0 auto !important;
    padding-bottom: 13px;
    padding-top: 15px;
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 840px) {
  .hidden-umenu {
    position: absolute;
    top: 3px;
    right: 25px;
  }
}
@media screen and (max-width: 630px) {
  #top-menu {
    width: 100%;
    margin-left: 0;
    padding-bottom: 10px;
  }
  #top-menu span {
    width: 24%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center;
    height: 36px !important;
    padding-top: 14px !important;
  }
  #search {
    display: none !important;
  }
}
@media screen and (max-width: 540px) {
  #logo {
    text-align: left;
  }
  .hidden-umenu-small {
    display: block !important;
  }
  .hidden-umenu,
  .hidden-umenu-small {
    right: 5px !important;
  }
}
@media screen and (max-width: 400px) {
  .logo {
    width: 170px;
  }
}
@media screen and (max-height: 505px) {
  #top-menu,
  #search {
    display: none;
  }
}
@media screen and (max-height: 380px) {
  #header {
    display: none;
  }
}
@media screen and (max-height: 480px) {
  .search {
    display: none;
  }
}
ul {
  margin: 0;
  padding: 0;
}

.search,
.submit-button {
  -webkit-appearance: none;
}

.clear {
  clear: both;
}

.u_menu,
div#search {
  float: right;
}

.header_holder {
  width: 96%;
  max-width: 1600px;
  border-bottom: 1px solid #f4792e;
}

div#header {
  font-size: 14px;
}
div#header span {
  font-size: 14px;
}

.header_holder {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hidden-umenu-small {
  background: url(bgmin.png) rgba(0, 0, 0, 0);
  border: 1px solid #616161;
  display: none;
  height: auto;
  padding-bottom: 4px;
  padding-top: 7px;
  position: absolute;
  top: 0;
  width: 38px;
}

.icon-b {
  background: #cccece;
  border-radius: 5px;
  display: block;
  height: 3px;
  margin: 4px auto;
  width: 20px;
}

#logo {
  float: left;
  margin-left: 5px;
  margin-top: 12px;
}

.logo {
  width: 190px;
}

.hidden-umenu {
  background: #222;
  border: 1px solid #616161;
  display: none;
  height: 22px;
  width: 38px;
  padding-bottom: 6px;
  padding-top: 6px;
  margin-top: 12px;
  float: right;
}

.hidden-umenu-small {
  margin-top: 12px;
  float: right;
}

.u_menu {
  margin-top: 19px;
}

#search {
  margin-right: 15px;
  margin-top: 14px;
  width: 292px;
}

.search-form-index {
  position: relative;
  width: 100%;
}

.search {
  border: 1px solid #3d3d3d;
  border-right: 0;
  background: #222;
  font-size: 14px;
  -webkit-border-radius: 0;
  padding: 5px 0 5px 12px;
  width: 246px;
  height: 28px;
}

.submit-button {
  border: 1px solid #3d3d3d;
  border-left: 0;
  background: url(assets/images/porno365_icons.png) 0px -102px no-repeat #222;
  height: 28px;
  width: 31px;
}

.search,
.submit-button {
  -webkit-border-radius: 0;
  display: block;
  float: left;
  margin: 0;
  color: #a5a5a5;
  font-size: 13px;
}

.u_menu,
div#search {
  float: right;
}

.u_menu {
  margin-top: 19px;
}

.user_ul {
  color: #fff;
  text-align: left;
}
.user_ul li {
  display: inline-block;
  margin: 0 10px;
}

.div_sort {
  background: url(bgmin.png) rgba(0, 0, 0, 0);
  border: 1px solid #2d2d2d;
  display: inline-block;
  margin: 0 2px 0 2px;
  position: relative;
  font-size: 15px;
  line-height: 15px;
  text-align: center;
  cursor: pointer;
}
.div_sort span {
  display: block;
  padding-left: 2px;
  padding-right: 2px;
  padding-top: 5px;
  padding-bottom: 6px;
}
@media screen and (min-width: 356px) {
  .div_sort span {
    padding-left: 6px;
    padding-right: 6px;
  }
}
@media screen and (min-width: 770px) {
  .div_sort span {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.div_sort.active_sort > a {
  color: #f90;
}

.div_sort > a {
  display: block;
  padding-left: 2px;
  padding-right: 2px;
  padding-top: 5px;
  padding-bottom: 6px;
}

.active_sort {
  color: #f90;
  border-color: #4d4d4d;
}

.div_sort > a {
  color: #ededed;
}

@media screen and (min-width: 356px) {
  .div_sort {
    margin-left: 4px;
    margin-right: 4px;
  }
  .div_sort > a {
    padding-left: 6px;
    padding-right: 6px;
  }
}
@media screen and (min-width: 541px) {
  .div_sort {
    margin: 0 5px;
  }
}
@media screen and (min-width: 770px) {
  .div_sort > a {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media screen and (min-width: 770px) and (max-width: 1350px) {
  #search {
    width: 175px !important;
  }
  .search {
    width: 130px;
  }
}
@media screen and (min-width: 770px) and (max-width: 1243px) {
  .u_menu {
    display: none;
  }
  .hidden-umenu {
    display: block !important;
  }
}
@media screen and (min-width: 770px) and (max-width: 950px) {
  #logo {
    border-bottom: 1px solid #f90;
    clear: both;
    float: none !important;
    margin: 0 auto !important;
    padding-bottom: 13px;
    padding-top: 15px;
    text-align: center;
    width: 100%;
  }
}
@media screen and (min-width: 770px) and (max-width: 840px) {
  .hidden-umenu {
    position: absolute;
    top: 3px;
    right: 25px;
  }
}
@media screen and (min-width: 770px) and (max-width: 630px) {
  #top-menu {
    width: 100%;
    margin-left: 0;
  }
  #top-menu > span {
    width: 24%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center;
    height: 36px !important;
    padding-top: 14px !important;
  }
  #search {
    display: none !important;
  }
}
@media screen and (min-width: 770px) and (max-width: 540px) {
  #logo {
    text-align: left;
  }
  .hidden-umenu-small {
    display: block !important;
  }
  .hidden-umenu,
  .hidden-umenu-small {
    right: 5px !important;
  }
}
@media screen and (min-width: 770px) and (max-width: 400px) {
  .logo {
    width: 170px;
  }
}
@media screen and (min-width: 770px) and (max-height: 505px) {
  #top-menu,
  #search {
    display: none;
  }
}
@media screen and (min-width: 770px) and (max-height: 380px) {
  #header {
    display: none;
  }
}
@media screen and (min-width: 770px) and (max-height: 480px) {
  .search {
    display: none;
  }
}
.panel {
  display: flex;
  flex-direction: column;
}
.panel__containerLine {
  width: 100px;
  height: 14px;
  border-radius: 0;
  background: rgba(0, 0, 0, 0);
  pointer-events: auto;
  cursor: pointer;
  margin: 10px 0 0 10px;
}
.panel__containerManagement {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel__line {
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1.4px;
  pointer-events: none;
  transition: transform 0.2s ease-in-out;
  position: absolute;
  border-radius: 10px;
}
.panel__line .circle {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  border: none;
  background-color: #ffffff;
  position: absolute;
  top: 2px;
  transform: translateY(-50%);
  left: 20px;
}
.panel__line::before {
  content: '';
  position: absolute;
  height: inherit;
  left: 0;
  top: 0;
  right: 0;
  width: 30%;
  background: rgb(255, 153, 0);
}
.panel__play {
  width: 20px;
  height: 20px;
  cursor: pointer;
  pointer-events: auto;
  background: transparent;
  border: none;
  position: relative;
}
.panel__play img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.panel__sound {
  background: none;
  border: none;
  margin: 0 10px;
}
.panel__sound img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.panel__time {
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 10px;
  width: 73px;
}
.panel__time span {
  color: #f90;
}
.panel__control {
  display: flex;
}
.panel__setting {
  background: none;
  border: none;
  margin-right: 10px;
}
.panel__wid {
  background: none;
  border: none;
}

.dark {
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 60px;
  -webkit-backface-visibility: hidden;
  top: auto;
  left: auto;
  overflow: visible;
  direction: ltr !important;
  max-width: none !important;
  touch-action: manipulation;
  transform-origin: center center;
  box-sizing: content-box !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  text-indent: 0 !important;
  background: rgb(65, 65, 65);
  background: -moz-linear-gradient(
    180deg,
    rgba(65, 65, 65, 0) 0%,
    rgba(0, 0, 0, 0.8634847689) 100%
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(65, 65, 65, 0) 0%,
    rgba(0, 0, 0, 0.8634847689) 100%
  );
  background: linear-gradient(180deg, rgba(65, 65, 65, 0) 0%, rgba(0, 0, 0, 0.8634847689) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#414141",endColorstr="#000000",GradientType=1);
}

.player {
  width: 100%;
  height: 210.938px;
}
@media screen and (min-height: 600px) {
  .player {
    height: 300px;
  }
}
.player .player__window {
  background: #000000;
  background-size: cover;
  background-position: bottom;
  min-height: 180px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 100%;
}
.player__container {
  position: relative;
}
.player__container img {
  width: 100%;
  display: block;
  object-fit: contain;
}
.player__head {
  position: absolute;
  top: 0;
  left: 5px;
  right: 5px;
  width: auto;
  padding: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.player__quality {
  background: #de2600;
  color: #fff;
  padding: 2px 5px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 3px;
}
.player__time {
  background: rgba(58, 58, 58, 0.7607843137);
  padding: 4px 5px;
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.player__panel {
  position: absolute;
  bottom: 0;
  left: 5px;
  right: 5px;
  width: auto;
  padding: 7px 10px;
}
.player__control {
  width: 100%;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  color: #fff;
  justify-content: center;
  align-items: stretch;
  height: 62vh;
}
@media screen and (orientation: landscape) and (max-height: 450px) {
  .player__control {
    padding: 0 25px;
  }
}
.player__agree {
  display: none;
}
.player__loader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.27);
  display: none;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.player__disclaimer {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 7px;
}
.player__disclaimer button.btn {
  border-radius: 10px;
  padding: 2px 5px;
  background: rgba(255, 0, 0, 0.6);
  border: 1px solid #ddd;
  color: #ffffff;
  width: 100px;
  height: 30px;
}
.player__playContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 330px;
  width: 100%;
  border-radius: 10px;
  margin: 0 auto;
  border: 2px solid #666;
  background: rgba(53, 53, 53, 0.65);
  padding: 20px 7px 20px 7px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.7);
  z-index: 999;
}
.player__playContainer img {
  display: block;
  object-fit: contain;
  width: 50px;
  height: 56px;
}
.player__textBtn {
  color: #fff;
  text-align: left;
  margin-right: 21px;
}
.player__textBtn h2 {
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.3px;
}
.player__textBtn span {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.player__description {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #ffffff;
  text-align: center;
  padding-top: 10px;
}

.btn-group {
  margin-top: 20px;
}

.watch {
  padding: 5px;
}
@media screen and (orientation: landscape) and (max-height: 450px) {
  .watch {
    display: none;
  }
}
.watch__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.watch__eye {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.watch__eye img {
  display: block;
  object-fit: contain;
  width: 100%;
  max-width: 24px;
}
.watch__eye span {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.watch__like,
.watch__dislike {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
.watch__like img,
.watch__dislike img {
  display: block;
  object-fit: contain;
  width: 100%;
  max-width: 24px;
}
.watch__like span,
.watch__dislike span {
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.watch__message {
  position: relative;
}
.watch__message span {
  position: absolute;
  top: 0;
  right: -4px;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #de2600;
  color: #fff;
  border-radius: 6px;
  padding: 2px 4px;
}

.clear {
  clear: both;
}

.video_extras {
  padding: 10px;
  background: url(bgmin.png) rgba(0, 0, 0, 0);
  border: 1px solid #2d2d2d;
  border-left: 0;
  border-right: 0;
  position: relative;
}

.video-views {
  width: 150px;
  float: left;
}

.video-views {
  margin-left: 20px;
  width: 154px !important;
}

.video-bubble {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid #2d2d2d;
  padding: 5px;
  font-size: 14px;
}

.video-views {
  width: 150px;
  float: left;
}

.video-rating {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 174px;
}

.rating_item {
  height: 39px;
  width: 48px;
  position: absolute;
  opacity: 0.8;
}

.rating_score {
  color: #ffbc3f;
  font-size: 16px;
  margin: 0 auto;
  padding: 0 auto;
  text-align: center;
}

.upper_hr {
  margin-top: 1px;
}

.under_hr {
  border-top: 1px solid #c99638;
  color: #e5aa3b;
  font-size: 11px;
  padding-top: 1px;
}

.rating_1 {
  background: url(up3.png);
  left: 0;
}

.rating_2 {
  background: url(down2.png);
  right: 0;
  top: 3px;
}

.video-categories {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  line-height: 0.7;
}

.category-label {
  float: left;
  font-size: 16px;
  margin-top: 2px;
}

.video-categories > span {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid #2d2d2d;
  border-radius: 5px;
  display: block;
  float: left;
  font-size: 15px;
  margin-left: 3px;
  margin-right: 3px;
  padding: 3px 10px;
}

span.href {
  color: #f19104;
}

.video-tags .category-label {
  font-size: 13px !important;
  margin-top: 0;
  margin-right: 5px;
}

.tag.href {
  display: inline-block;
  color: #f19104;
  font-size: 0.7em;
  line-height: 1.2;
}

@media (max-width: 570px) and (min-width: 471px) {
  .video-views.video-bubble {
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 510px) {
  .video-views.video-bubble {
    display: none;
  }
  .video-rating {
    left: 50% !important;
    position: relative !important;
    top: 0 !important;
    transform: translateX(-50%);
  }
}
@media screen and (max-height: 610px) {
  .categories {
    display: none;
  }
}
@media screen and (max-height: 550px) {
  .video-rating {
    left: 50% !important;
    position: relative !important;
    top: 0 !important;
    transform: translateX(-50%);
  }
}
@media screen and (max-height: 460px) {
  .video_extras {
    display: none;
  }
}
@media screen and (orientation: portrait) {
  .footer {
    height: 110px;
  }
}
.footer a {
  color: inherit;
}
.footer__container {
  padding: 5px 10px;
}
.footer__text {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  color: #666666;
}
.footer__agree {
  display: none;
}
.footer__agree p {
  color: #666666;
}
.footer__default {
  display: block;
}

body.agree .footer__default {
  display: none;
}
body.agree .footer__agree {
  display: block;
}
body.agree .hideThis {
  display: none !important;
  opacity: 0;
}
body.agree .showThis {
  display: flex !important;
  opacity: 1;
}
body.agree .player__default {
  display: none;
}
body.agree .player__agree {
  display: flex;
}

body span.close {
  display: none;
}
body.close span.close {
  display: block;
  position: absolute;
  top: 20px;
  right: 51px;
  font-size: 1.5em !important;
  font-family: sans-serif;
  font-weight: 700;
}

body.loader .hideThis {
  display: none !important;
  opacity: 0;
}
body.loader .showThis {
  display: flex !important;
  opacity: 1;
}
body.loader .showThis a,
body.loader .showThis .buy {
  display: none !important;
}
body.loader .player__agree .player__disclaimer,
body.loader .player__agree .player__description {
  display: none;
}
body.loader .player__default {
  display: none;
}
body.loader .player__loader {
  display: flex;
}

.loaderItem {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  position: absolute;
  top: 40%;
  border: 3px solid;
  border-color: #fff #fff transparent transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loaderItem::after,
.loaderItem::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #ff3d00 #ff3d00;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}
.loaderItem::before {
  width: 32px;
  height: 32px;
  border-color: #fff #fff transparent transparent;
  animation: rotation 1.5s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

/*# sourceMappingURL=style.css.map */
