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

html, body {
  height: 100%;
}

svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes shake2 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes shake3 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
@keyframes heartbeat {
  0% {
    transform: scale(0.75);
  }
  20% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.75);
  }
  60% {
    transform: scale(1);
  }
  80% {
    transform: scale(0.75);
  }
  100% {
    transform: scale(0.75);
  }
}
@keyframes pulse {
  0% {
    transform: scale(0.85);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(0.85);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
body {
  height: 100%;
  background-color: #101010;
  font-family: "PT Sans", sans-serif;
  overscroll-behavior-x: none;
  touch-action: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  margin: 0px;
  overflow: hidden;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body::after {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  z-index: -1;
}

html {
  overscroll-behavior-x: none;
  height: 100%;
}

.c {
  clear: both;
}

.container {
  overflow: hidden;
  max-width: 1220px;
  margin: 0 auto;
  position: relative;
  height: 100%;
}

.rotation {
  -webkit-animation: spin 0.25s linear infinite;
  -moz-animation: spin 0.25s linear infinite;
  animation: spin 0.25s linear infinite;
  -webkit-animation: spin 1s linear infinite;
  -moz-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

.imgbox {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rotate {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: 0.3s all;
}

.plr {
  float: left;
  height: 50px;
  line-height: 50px;
  color: #fff;
  width: 100%;
}
.plr span {
  color: #fa9;
  cursor: pointer;
}
.plr span:hover {
  opacity: 0.75;
}

.noscroll {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow-y: scroll;
}

.shake2 {
  animation: shake2 0.4s infinite cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transition: 0.5s ease-in-out;
}

.logged {
  float: left;
  background-color: #000;
  height: 50px;
  border-radius: 25px;
  width: 100%;
  margin-bottom: 15px;
}

.loggedopc {
  float: left;
  background-color: #000;
  border-radius: 25px;
  width: 100%;
  margin-top: -15px;
  margin-bottom: 15px;
  padding: 10px;
  padding-bottom: 0px;
  display: none;
  box-sizing: border-box;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.loggedopc a {
  float: left;
  width: calc(100% - 20px);
  color: #fff !important;
  background-color: #555 !important;
}

.endoflist {
  width: 65vh;
  height: 50px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  line-height: 50px;
  bottom: 0px;
  z-index: 9999;
  background-color: rgba(10, 10, 10, 0.75);
  color: #fff;
  text-align: center;
  display: none;
  text-transform: uppercase;
  font-size: 14px;
}

.loggeduser {
  float: left;
  height: 50px;
  line-height: 50px;
  width: calc(100% - 50px);
  color: #fff;
  font-size: 16px;
  transition: opacity 0.1s ease-in-out;
}
.loggeduser:hover {
  cursor: pointer;
  opacity: 0.75;
}
.loggeduser b {
  float: right;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/down.svg);
  background-size: 20px;
  width: 30px;
  height: 30px;
  margin-top: 10px;
  margin-right: 5px;
  transition: all 0.2s ease-in-out;
}

.loggedavt {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  margin: 5px;
  border-radius: 50%;
  float: left;
  background-color: #ff9000;
  transition: opacity 0.1s ease-in-out;
  position: relative;
}
.loggedavt:hover {
  cursor: pointer;
  opacity: 0.75;
}
.loggedavt img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #252525;
  box-sizing: border-box;
}

.pageno {
  float: left;
  width: 100%;
  height: 0px;
  display: none;
}

.video-type div {
  text-align: center;
}
.video-type a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.video-type i {
  color: #fff;
}

.gender_straight {
  float: left;
  height: 32px;
  line-height: 32px;
  width: 33.3333333333%;
  background-color: #000;
  margin-bottom: 10px;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  transition: background-color 0.1s ease-in-out;
}
.gender_straight:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
}

.gender_trans {
  float: left;
  height: 32px;
  line-height: 32px;
  width: calc(33.3333333333% - 2px);
  background-color: #000;
  margin-bottom: 10px;
  margin-left: 1px;
  margin-right: 1px;
  transition: background-color 0.1s ease-in-out;
}
.gender_trans:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
}

.gender_gay {
  float: left;
  height: 32px;
  line-height: 32px;
  width: 33.3333333333%;
  background-color: #000;
  margin-bottom: 10px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  background-size: 32px;
  transition: background-color 0.1s ease-in-out;
}
.gender_gay:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
}

.gender_sel {
  background-color: #555;
}

.profilelinks {
  text-decoration: none;
  transition: opacity 0.1s ease-in-out;
  margin-left: 6px;
  float: right;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  width: 32px;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
}
.profilelinks:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
}
.profilelinks b.reddit {
  float: left;
  height: 32px;
  width: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(img/reddit.ico);
  background-size: 24px;
  border-radius: 50%;
  box-sizing: border-box;
}
.profilelinks b.onlyfans {
  float: left;
  height: 32px;
  width: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(img/onlyfans.ico);
  background-size: 24px;
  border-radius: 50%;
  box-sizing: border-box;
}
.profilelinks b.fansly {
  float: left;
  height: 32px;
  width: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(img/fansly.ico);
  background-size: 24px;
  border-radius: 50%;
  box-sizing: border-box;
}

.shake3 {
  animation: shake3 0.4s infinite cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transition: 0.5s ease-in-out;
}

.shake {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.heartbeat {
  animation: heartbeat 1s infinite;
}

.btcount {
  font-size: 14px;
  color: #fff;
}

.modal {
  position: fixed;
  background-color: rgba(20, 20, 20, 0.85);
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 10000;
  display: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overscroll-behavior: contain;
}
.modal::-webkit-scrollbar {
  display: none;
}

.modal2 {
  position: fixed;
  background-color: rgba(20, 20, 20, 0.85);
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 9999;
  display: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal2::-webkit-scrollbar {
  display: none;
}

.profileavatar {
  cursor: pointer;
  position: relative;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  text-transform: uppercase;
  font-size: 32px;
  border-radius: 50%;
  background-color: #333;
  float: left;
  position: relative;
  margin-top: 15px;
  margin-bottom: 5px;
}
.profileavatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: 0px;
  left: 0px;
}
.profileavatar i {
  position: absolute;
  background-color: #000;
  width: 24px;
  height: 24px;
  top: 5px;
  right: 5px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/edit.svg);
  background-size: 10px;
  border: 1px solid #333;
}

.not-email {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
}
.not-email:hover {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
}

.not-upload {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
}
.not-upload:hover {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
}

.disclaimer {
  float: left;
  width: 100%;
  border-bottom: 2px solid #E2454A;
  margin-bottom: 20px;
  padding-bottom: 15px;
  text-align: justify;
  color: #eee;
}
.disclaimer a {
  color: #fff;
}

.selectfile {
  float: left;
  height: 42px;
  line-height: 36px;
  width: 100%;
  border-radius: 5px;
  border: 0px;
  padding: 0px;
  margin: 0px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  background-color: #eee;
  text-align: center;
  color: #000;
}
.selectfile:hover {
  background-color: #fff;
  cursor: pointer;
}

.report-option#r6 {
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-image: url(../icons/right.svg);
  background-size: 12px;
}

.report-option {
  text-align: left;
  width: 100%;
  font-size: 14px;
  transition: opacity 0.1s ease-in-out;
  background-color: #333;
  height: 36px;
  line-height: 36px;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
  border-radius: 18px;
  float: left;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
}
.report-option:hover {
  cursor: pointer;
  opacity: 0.75;
}

.report-option.sel {
  background-color: #ff9000;
  color: #fff;
}

.button {
  float: left;
  height: 42px;
  line-height: 36px;
  width: 100%;
  border-radius: 5px;
  border: 0px;
  padding: 0px;
  margin: 0px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  background-color: #eee;
}
.button:focus {
  outline: 0;
  background-color: #fff;
}

span.help-block {
  font-size: 12px;
  font-style: italic;
  color: #d70000;
  margin-top: 2px;
  display: inline-block;
  width: 100%;
}

#ageModal {
  background-color: rgb(20, 20, 20);
  display: block;
}
#ageModal .modal-content {
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  max-width: 750px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 40px 5px rgba(255, 255, 255, 0.15);
  -moz-box-shadow: 0 0 40px 5px rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 40px 5px rgba(255, 255, 255, 0.15);
  background-color: #000;
  color: #fff;
}
#ageModal .modal-content .message-content {
  background-color: rgb(0, 0, 0);
  color: rgb(204, 204, 204);
  font-size: 1.25em;
}
#ageModal .modal-content button {
  margin-top: 3rem;
  font-size: 1.25rem;
  width: 21rem;
  max-width: 100%;
  padding: 1rem;
  font-weight: 700;
  border: none;
  color: #fff;
  cursor: pointer;
}
#ageModal .modal-content button.enter {
  background: #f90;
}
#ageModal .modal-content button.exit {
  background: #1f1f1f;
}

.lsubmit {
  position: relative;
}
.lsubmit.loading:after {
  margin-left: 5px;
  content: "\f110";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
  animation: spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

.loginblock {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
  width: 450px;
  max-width: 90%;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 1 10px 0 rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  padding: 30px;
  display: none;
}
.loginblock .ltitle {
  float: left;
  width: 100%;
  text-align: left;
  height: 32px;
  line-height: 32px;
  padding-bottom: 15px;
  border-bottom: 2px solid #E2454A;
  margin-bottom: 5px;
  font-size: 18px;
}
.loginblock .ltitle b {
  display: block;
  float: right;
  background-color: #222;
  height: 32px;
  line-height: 32px;
  text-align: center;
  width: 32px;
  border-radius: 50px;
  font-size: 18px;
  transition: opacity 0.1s ease-in-out;
}
.loginblock .ltitle b:hover {
  opacity: 0.75;
  cursor: pointer;
}
.loginblock .lbleft {
  float: left;
  font-size: 11px;
  transition: opacity 0.1s ease-in-out;
}
.loginblock .lbleft:hover {
  cursor: pointer;
  opacity: 0.75;
}
.loginblock .lbright {
  float: right;
  font-size: 11px;
  transition: opacity 0.1s ease-in-out;
}
.loginblock .lbright:hover {
  opacity: 0.75;
  cursor: pointer;
}
.loginblock label {
  float: left;
  height: 42px;
  line-height: 42px;
  width: 100%;
  font-size: 13px;
}
.loginblock input,
.loginblock .button {
  float: left;
  height: 42px;
  line-height: 36px;
  width: 100%;
  border-radius: 5px;
  border: 0px;
  padding: 0px;
  margin: 0px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  background-color: #eee;
}
.loginblock input:focus,
.loginblock .button:focus {
  outline: 0;
  background-color: #fff;
}
.loginblock .lsubmit {
  background-color: #ff9000;
  margin-top: 15px;
  float: left;
  color: #fff;
  margin-bottom: 15px;
  transition: opacity 0.1s ease-in-out;
}
.loginblock .lsubmit:hover {
  opacity: 0.75;
  cursor: pointer;
}

.regblock {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
  width: 450px;
  max-width: 90%;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 1 10px 0 rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  padding: 30px;
  display: none;
}
.regblock .ltitle {
  float: left;
  width: 100%;
  text-align: left;
  height: 32px;
  line-height: 32px;
  padding-bottom: 15px;
  border-bottom: 2px solid #E2454A;
  margin-bottom: 5px;
  font-size: 18px;
}
.regblock .ltitle b {
  display: block;
  float: right;
  background-color: #222;
  height: 32px;
  line-height: 32px;
  text-align: center;
  width: 32px;
  border-radius: 50px;
  font-size: 18px;
  transition: opacity 0.1s ease-in-out;
}
.regblock .ltitle b:hover {
  opacity: 0.75;
  cursor: pointer;
}
.regblock .lbleft {
  float: left;
  font-size: 11px;
  transition: opacity 0.1s ease-in-out;
}
.regblock .lbleft:hover {
  cursor: pointer;
  opacity: 0.75;
}
.regblock .lbright {
  float: right;
  font-size: 11px;
  transition: opacity 0.1s ease-in-out;
}
.regblock .lbright:hover {
  opacity: 0.75;
  cursor: pointer;
}
.regblock label {
  float: left;
  height: 42px;
  line-height: 42px;
  width: 100%;
  font-size: 13px;
}
.regblock input {
  float: left;
  height: 42px;
  line-height: 36px;
  width: 100%;
  border-radius: 5px;
  border: 0px;
  padding: 0px;
  margin: 0px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  background-color: #eee;
}
.regblock input:focus {
  outline: 0;
  background-color: #fff;
}
.regblock select {
  float: left;
  height: 42px;
  line-height: 36px;
  width: 100%;
  border-radius: 5px;
  border: 0px;
  padding: 0px;
  margin: 0px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  background-color: #eee;
}
.regblock select:focus {
  outline: 0;
  background-color: #fff;
}
.regblock .lsubmit {
  background-color: #ff9000;
  margin-top: 15px;
  float: left;
  color: #fff;
  margin-bottom: 15px;
  transition: opacity 0.1s ease-in-out;
  position: relative;
}
.regblock .lsubmit:hover {
  opacity: 0.75;
  cursor: pointer;
}

.forgetblock {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
  width: 450px;
  max-width: 90%;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 1 10px 0 rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  padding: 30px;
  display: none;
}
.forgetblock .ltitle {
  float: left;
  width: 100%;
  text-align: left;
  padding-bottom: 15px;
  border-bottom: 2px solid #E2454A;
  margin-bottom: 5px;
  font-size: 18px;
}
.forgetblock .ltitle b {
  display: block;
  float: right;
  background-color: #222;
  height: 32px;
  line-height: 32px;
  text-align: center;
  width: 32px;
  border-radius: 50px;
  font-size: 18px;
  transition: opacity 0.1s ease-in-out;
}
.forgetblock .ltitle b:hover {
  opacity: 0.75;
  cursor: pointer;
}
.forgetblock .lbleft {
  float: left;
  font-size: 11px;
  transition: opacity 0.1s ease-in-out;
}
.forgetblock .lbleft:hover {
  cursor: pointer;
  opacity: 0.75;
}
.forgetblock .lbright {
  float: right;
  font-size: 11px;
  transition: opacity 0.1s ease-in-out;
}
.forgetblock .lbright:hover {
  opacity: 0.75;
  cursor: pointer;
}
.forgetblock label {
  float: left;
  height: 42px;
  line-height: 42px;
  width: 100%;
  font-size: 13px;
}
.forgetblock input {
  float: left;
  height: 42px;
  line-height: 36px;
  width: 100%;
  border-radius: 5px;
  border: 0px;
  padding: 0px;
  margin: 0px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  background-color: #eee;
}
.forgetblock input:focus {
  outline: 0;
  background-color: #fff;
}
.forgetblock .lsubmit {
  background-color: #ff9000;
  margin-top: 15px;
  float: left;
  color: #fff;
  margin-bottom: 15px;
  transition: opacity 0.1s ease-in-out;
}
.forgetblock .lsubmit:hover {
  opacity: 0.75;
  cursor: pointer;
}

.profileblock {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
  width: 450px;
  max-width: 90%;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 1 10px 0 rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  padding: 30px;
  display: none;
}
.profileblock .ltitle {
  float: left;
  width: 100%;
  text-align: left;
  height: 32px;
  line-height: 32px;
  padding-bottom: 15px;
  border-bottom: 2px solid #E2454A;
  margin-bottom: 5px;
  font-size: 18px;
}
.profileblock .ltitle b {
  display: block;
  float: right;
  background-color: #222;
  height: 32px;
  line-height: 32px;
  text-align: center;
  width: 32px;
  border-radius: 50px;
  font-size: 18px;
  transition: opacity 0.1s ease-in-out;
}
.profileblock .ltitle b:hover {
  opacity: 0.75;
  cursor: pointer;
}
.profileblock .lbleft {
  float: left;
  font-size: 11px;
  transition: opacity 0.1s ease-in-out;
}
.profileblock .lbleft:hover {
  cursor: pointer;
  opacity: 0.75;
}
.profileblock .lbright {
  float: right;
  font-size: 11px;
  transition: opacity 0.1s ease-in-out;
}
.profileblock .lbright:hover {
  opacity: 0.75;
  cursor: pointer;
}
.profileblock label {
  float: left;
  height: 42px;
  line-height: 42px;
  width: 100%;
  font-size: 13px;
}
.profileblock input {
  float: left;
  height: 42px;
  line-height: 36px;
  width: 100%;
  border-radius: 5px;
  border: 0px;
  padding: 0px;
  margin: 0px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  background-color: #eee;
}
.profileblock input:focus {
  outline: 0;
  background-color: #fff;
}
.profileblock select {
  float: left;
  height: 42px;
  line-height: 36px;
  width: 100%;
  border-radius: 5px;
  border: 0px;
  padding: 0px;
  margin: 0px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  background-color: #eee;
}
.profileblock select:focus {
  outline: 0;
  background-color: #fff;
}
.profileblock .lsubmit {
  background-color: #ff9000;
  margin-top: 15px;
  float: left;
  color: #fff;
  margin-bottom: 15px;
  transition: opacity 0.1s ease-in-out;
}
.profileblock .lsubmit:hover {
  opacity: 0.75;
  cursor: pointer;
}

.uploadblock {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
  width: 450px;
  max-width: 90%;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 1 10px 0 rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  padding: 30px;
  display: none;
}
.uploadblock .ltitle {
  float: left;
  width: 100%;
  text-align: left;
  height: 32px;
  line-height: 32px;
  padding-bottom: 15px;
  border-bottom: 2px solid #E2454A;
  margin-bottom: 5px;
  font-size: 18px;
}
.uploadblock .ltitle b {
  display: block;
  float: right;
  background-color: #222;
  height: 32px;
  line-height: 32px;
  text-align: center;
  width: 32px;
  border-radius: 50px;
  font-size: 18px;
  transition: opacity 0.1s ease-in-out;
}
.uploadblock .ltitle b:hover {
  opacity: 0.75;
  cursor: pointer;
}
.uploadblock .lbleft {
  float: left;
  font-size: 11px;
  transition: opacity 0.1s ease-in-out;
}
.uploadblock .lbleft:hover {
  cursor: pointer;
  opacity: 0.75;
}
.uploadblock .lbright {
  float: right;
  font-size: 11px;
  transition: opacity 0.1s ease-in-out;
}
.uploadblock .lbright:hover {
  opacity: 0.75;
  cursor: pointer;
}
.uploadblock label {
  float: left;
  height: 42px;
  line-height: 42px;
  width: 100%;
  font-size: 13px;
}
.uploadblock input {
  float: left;
  height: 42px;
  line-height: 36px;
  width: 100%;
  border-radius: 5px;
  border: 0px;
  padding: 0px;
  margin: 0px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  background-color: #eee;
}
.uploadblock input:focus {
  outline: 0;
  background-color: #fff;
}
.uploadblock select {
  float: left;
  height: 42px;
  line-height: 36px;
  width: 100%;
  border-radius: 5px;
  border: 0px;
  padding: 0px;
  margin: 0px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  background-color: #eee;
}
.uploadblock select:focus {
  outline: 0;
  background-color: #fff;
}
.uploadblock .lsubmit {
  background-color: #ff9000;
  margin-top: 15px;
  float: left;
  color: #fff;
  margin-bottom: 15px;
  transition: opacity 0.1s ease-in-out;
}
.uploadblock .lsubmit:hover {
  opacity: 0.75;
  cursor: pointer;
}

.validateemailblock {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
  width: 450px;
  max-width: 90%;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 1 10px 0 rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  padding: 30px;
  display: none;
}
.validateemailblock .ltitle {
  float: left;
  width: 100%;
  text-align: left;
  height: 32px;
  line-height: 32px;
  padding-bottom: 15px;
  border-bottom: 2px solid #E2454A;
  margin-bottom: 5px;
  font-size: 18px;
}
.validateemailblock .ltitle b {
  display: block;
  float: right;
  background-color: #222;
  height: 32px;
  line-height: 32px;
  text-align: center;
  width: 32px;
  border-radius: 50px;
  font-size: 18px;
  transition: opacity 0.1s ease-in-out;
}
.validateemailblock .ltitle b:hover {
  opacity: 0.75;
  cursor: pointer;
}
.validateemailblock .lbleft {
  float: left;
  font-size: 11px;
  transition: opacity 0.1s ease-in-out;
}
.validateemailblock .lbleft:hover {
  cursor: pointer;
  opacity: 0.75;
}
.validateemailblock .lbright {
  float: right;
  font-size: 11px;
  transition: opacity 0.1s ease-in-out;
}
.validateemailblock .lbright:hover {
  opacity: 0.75;
  cursor: pointer;
}
.validateemailblock label {
  float: left;
  height: 42px;
  line-height: 42px;
  width: 100%;
  font-size: 13px;
}
.validateemailblock input {
  float: left;
  height: 42px;
  line-height: 36px;
  width: 100%;
  border-radius: 5px;
  border: 0px;
  padding: 0px;
  margin: 0px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  background-color: #eee;
}
.validateemailblock input:focus {
  outline: 0;
  background-color: #fff;
}
.validateemailblock .lsubmit {
  background-color: #ff9000;
  margin-top: 15px;
  float: left;
  color: #fff;
  margin-bottom: 15px;
  transition: opacity 0.1s ease-in-out;
}
.validateemailblock .lsubmit:hover {
  opacity: 0.75;
  cursor: pointer;
}

.passwordblock {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
  width: 450px;
  max-width: 90%;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 1 10px 0 rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  padding: 30px;
  display: none;
}
.passwordblock .ltitle {
  float: left;
  width: 100%;
  text-align: left;
  height: 32px;
  line-height: 32px;
  padding-bottom: 15px;
  border-bottom: 2px solid #E2454A;
  margin-bottom: 5px;
  font-size: 18px;
}
.passwordblock .ltitle b {
  display: block;
  float: right;
  background-color: #222;
  height: 32px;
  line-height: 32px;
  text-align: center;
  width: 32px;
  border-radius: 50px;
  font-size: 18px;
  transition: opacity 0.1s ease-in-out;
}
.passwordblock .ltitle b:hover {
  opacity: 0.75;
  cursor: pointer;
}
.passwordblock .lbleft {
  float: left;
  font-size: 11px;
  transition: opacity 0.1s ease-in-out;
}
.passwordblock .lbleft:hover {
  cursor: pointer;
  opacity: 0.75;
}
.passwordblock .lbright {
  float: right;
  font-size: 11px;
  transition: opacity 0.1s ease-in-out;
}
.passwordblock .lbright:hover {
  opacity: 0.75;
  cursor: pointer;
}
.passwordblock label {
  float: left;
  height: 42px;
  line-height: 42px;
  width: 100%;
  font-size: 13px;
}
.passwordblock input {
  float: left;
  height: 42px;
  line-height: 36px;
  width: 100%;
  border-radius: 5px;
  border: 0px;
  padding: 0px;
  margin: 0px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  background-color: #eee;
}
.passwordblock input:focus {
  outline: 0;
  background-color: #fff;
}
.passwordblock .lsubmit {
  background-color: #ff9000;
  margin-top: 15px;
  float: left;
  color: #fff;
  margin-bottom: 15px;
  transition: opacity 0.1s ease-in-out;
}
.passwordblock .lsubmit:hover {
  opacity: 0.75;
  cursor: pointer;
}

.linksblock {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
  width: 450px;
  max-width: 90%;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 1 10px 0 rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  padding: 30px;
  display: none;
}
.linksblock .ltitle {
  float: left;
  width: 100%;
  text-align: left;
  height: 32px;
  line-height: 32px;
  padding-bottom: 15px;
  border-bottom: 2px solid #E2454A;
  margin-bottom: 5px;
  font-size: 18px;
}
.linksblock .ltitle b {
  display: block;
  float: right;
  background-color: #222;
  height: 32px;
  line-height: 32px;
  text-align: center;
  width: 32px;
  border-radius: 50px;
  font-size: 18px;
  transition: opacity 0.1s ease-in-out;
}
.linksblock .ltitle b:hover {
  opacity: 0.75;
  cursor: pointer;
}
.linksblock .lbleft {
  float: left;
  font-size: 11px;
  transition: opacity 0.1s ease-in-out;
}
.linksblock .lbleft:hover {
  cursor: pointer;
  opacity: 0.75;
}
.linksblock .lbright {
  float: right;
  font-size: 11px;
  transition: opacity 0.1s ease-in-out;
}
.linksblock .lbright:hover {
  opacity: 0.75;
  cursor: pointer;
}
.linksblock label {
  float: left;
  height: 42px;
  line-height: 42px;
  width: 100%;
  font-size: 13px;
}
.linksblock input {
  float: left;
  height: 42px;
  line-height: 36px;
  width: 100%;
  border-radius: 5px;
  border: 0px;
  padding: 0px;
  margin: 0px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  background-color: #eee;
}
.linksblock input:focus {
  outline: 0;
  background-color: #fff;
}
.linksblock .lsubmit {
  background-color: #ff9000;
  margin-top: 15px;
  float: left;
  color: #fff;
  margin-bottom: 15px;
  transition: opacity 0.1s ease-in-out;
}
.linksblock .lsubmit:hover {
  opacity: 0.75;
  cursor: pointer;
}

.reportblock {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
  width: 450px;
  max-width: 90%;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 1 10px 0 rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  padding: 30px;
  display: none;
}
.reportblock .ltitle {
  float: left;
  width: 100%;
  text-align: left;
  padding-bottom: 15px;
  border-bottom: 2px solid #E2454A;
  margin-bottom: 5px;
  font-size: 18px;
}
.reportblock .ltitle b {
  display: block;
  float: right;
  background-color: #222;
  height: 32px;
  line-height: 32px;
  text-align: center;
  width: 32px;
  border-radius: 50px;
  font-size: 18px;
  transition: opacity 0.1s ease-in-out;
}
.reportblock .ltitle b:hover {
  opacity: 0.75;
  cursor: pointer;
}
.reportblock .lbleft {
  float: left;
  font-size: 11px;
  transition: opacity 0.1s ease-in-out;
}
.reportblock .lbleft:hover {
  cursor: pointer;
  opacity: 0.75;
}
.reportblock .lbright {
  float: right;
  font-size: 11px;
  transition: opacity 0.1s ease-in-out;
}
.reportblock .lbright:hover {
  opacity: 0.75;
  cursor: pointer;
}
.reportblock label {
  float: left;
  height: 42px;
  line-height: 42px;
  width: 100%;
  font-size: 13px;
}
.reportblock input {
  float: left;
  height: 42px;
  line-height: 36px;
  width: 100%;
  border-radius: 5px;
  border: 0px;
  padding: 0px;
  margin: 0px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  background-color: #eee;
}
.reportblock input:focus {
  outline: 0;
  background-color: #fff;
}
.reportblock textarea {
  float: left;
  height: 100px;
  width: 100%;
  border-radius: 5px;
  border: 0px;
  resize: none;
  margin: 0px;
  outline: 0;
  padding: 10px;
  box-sizing: border-box;
  background-color: #eee;
}
.reportblock .lsubmit {
  background-color: #ff9000;
  margin-top: 15px;
  float: left;
  color: #fff;
  margin-bottom: 15px;
  transition: opacity 0.1s ease-in-out;
}
.reportblock .lsubmit:hover {
  opacity: 0.75;
  cursor: pointer;
}

.confirmblock {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
  width: 450px;
  max-width: 90%;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 1 10px 0 rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  padding: 30px;
  display: none;
}
.confirmblock .ltitle {
  float: left;
  width: 100%;
  text-align: left;
  height: 32px;
  line-height: 32px;
  padding-bottom: 15px;
  border-bottom: 2px solid #E2454A;
  margin-bottom: 5px;
  font-size: 18px;
}
.confirmblock .ltitle b {
  display: block;
  float: right;
  background-color: #222;
  height: 32px;
  line-height: 32px;
  text-align: center;
  width: 32px;
  border-radius: 50px;
  font-size: 18px;
  transition: opacity 0.1s ease-in-out;
}
.confirmblock .ltitle b:hover {
  opacity: 0.75;
  cursor: pointer;
}
.confirmblock .lbleft {
  float: left;
  font-size: 11px;
  transition: opacity 0.1s ease-in-out;
}
.confirmblock .lbleft:hover {
  cursor: pointer;
  opacity: 0.75;
}
.confirmblock .lbright {
  float: right;
  font-size: 11px;
  transition: opacity 0.1s ease-in-out;
}
.confirmblock .lbright:hover {
  opacity: 0.75;
  cursor: pointer;
}
.confirmblock label {
  float: left;
  height: 42px;
  line-height: 42px;
  width: 100%;
  font-size: 13px;
}
.confirmblock input {
  float: left;
  height: 42px;
  line-height: 36px;
  width: 100%;
  border-radius: 5px;
  border: 0px;
  padding: 0px;
  margin: 0px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  background-color: #eee;
}
.confirmblock input:focus {
  outline: 0;
  background-color: #fff;
}
.confirmblock .lsubmit {
  background-color: #ff9000;
  margin-top: 15px;
  float: left;
  color: #fff;
  margin-bottom: 15px;
  transition: opacity 0.1s ease-in-out;
}
.confirmblock .lsubmit:hover {
  opacity: 0.75;
  cursor: pointer;
}

.reporthide {
  display: none;
}

video::-internal-media-controls-overlay-cast-button {
  display: none;
}
video:focus {
  outline: none;
}

.main-content {
  position: relative;
  width: calc(100% - 260px);
  height: 100%;
  float: right;
}
.main-content .content-wrapper {
  display: inline-block;
  width: 60%;
  height: 100%;
  position: relative;
}

.content {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.content2 {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 15;
  display: none;
}

#hiddenblock {
  display: none;
}

.video-player {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.video-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-content-body .video-js {
  width: 100% !important;
  height: 100% !important;
}
.main-content-body .vjs-poster img {
  object-fit: cover;
}
.main-content-body .video-js .vjs-control-bar {
  background: transparent;
}
.main-content-body .video-js .vjs-play-progress {
  background-color: #E2454A;
}
.main-content-body .video-js .vjs-play-progress:before {
  display: none;
}
.main-content-body .video-js .vjs-progress-holder {
  height: 0.4em;
}
.main-content-body .video-js .vjs-big-play-button {
  background: url("../icons/play-solid.svg") center center no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  border: none;
}
.main-content-body .video-js .vjs-big-play-button .vjs-icon-placeholder {
  display: none;
}
.main-content-body .video-js .vjs-big-play-button:focus {
  background-color: transparent;
}
.main-content-body .video-js .vjs-big-play-button:hover {
  background-image: url("../icons/play-solid-hover.svg");
}
.main-content-body .video-js:hover .vjs-big-play-button {
  background-color: transparent;
}

#mainVideo {
  width: 100%;
  height: 100%;
  z-index: 3;
}

.main-content-body {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.main-content-body::-webkit-scrollbar {
  display: none;
}

.main-content-body2 {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #000;
  z-index: 9999;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.main-content-body2::-webkit-scrollbar {
  display: none;
}

.right-sidebar {
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: absolute;
  right: 0;
  width: 40%;
  height: 100%;
  overflow: hidden;
  top: 0px;
  background-color: #202020;
  padding-left: 10px;
  padding-right: 0px;
  box-sizing: border-box;
  z-index: 1;
}
.right-sidebar .side-header {
  font-size: 18px;
  color: #fff;
  padding: 13px;
  background: transparent;
  border-radius: 0;
  margin: 0;
}

.lds-ring {
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 70px;
  height: 70px;
}

.rightside {
  height: calc(100% - 200px);
  overflow: auto;
  z-index: 1;
  background-color: #202020;
  padding-left: 10px;
  padding-right: 9px;
  box-sizing: border-box;
  padding-bottom: 9px;
  position: relative;
}
.rightside::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}
.rightside::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}
.rightside::-webkit-scrollbar-thumb {
  background-color: #D62929;
}

.rightside_top {
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow: hidden;
  top: 0px;
  height: 110px;
  background-color: #202020;
  padding-left: 10px;
  padding-right: 0px;
  box-sizing: border-box;
  position: relative;
}
.rightside_top::-webkit-scrollbar {
  display: none;
}
.rightside_top .post-select {
  display: flex;
}
.rightside_top .post-select div {
  background-color: #ff9000;
  float: left;
  width: calc(33.3333333333% - 4px);
  margin-top: 10px;
  height: 36px;
  line-height: 36px;
  font-size: 14px;
  text-align: center;
  z-index: 9998;
  margin-right: 1px;
  box-sizing: border-box;
  opacity: 0.75;
  color: #000;
}
.rightside_top .post-select div.active {
  color: #fff;
  opacity: 1;
}
.rightside_top .closegallery {
  touch-action: none;
  display: none;
  width: 42px;
  height: 42px;
  float: left;
  border-radius: 50%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/goleft.svg);
  background-size: 80%;
  cursor: pointer;
  transition: opacity 0.1s ease-in-out;
  z-index: 2;
}

.rightside_bottom {
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: fixed;
  left: calc(50% + 32.5vh - 90px);
  width: 400px;
  overflow: hidden;
  bottom: 0px;
  height: 56px;
  background-color: #202020;
  padding-left: 10px;
  padding-right: 0px;
  box-sizing: border-box;
}
.rightside_bottom::-webkit-scrollbar {
  display: none;
}

.profileside {
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
  right: 0;
  top: 0px;
  height: 100%;
  width: 400px;
  position: absolute;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: 5;
  background-color: #202020;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  box-sizing: border-box;
  display: none;
}
.profileside::-webkit-scrollbar {
  display: none;
  display: none;
}
.profileside .loadmore_bt {
  margin-left: 10px;
  width: calc(100% - 20px);
}

.profilecontent {
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
  float: left;
  width: 100%;
  padding-left: 10px;
  padding-right: 9px;
  box-sizing: border-box;
  position: relative;
  padding-bottom: 9px;
  overflow: auto;
  flex: 1;
}
.profilecontent::-webkit-scrollbar {
  display: none;
}
.profilecontent .imgprev {
  aspect-ratio: 10/16;
}
.profilecontent .imgprev img {
  display: block;
}
.profilecontent .imgprev .ctitle {
  display: none;
}
.profilecontent .divprev {
  aspect-ratio: 10/16;
}

.nocomments {
  touch-action: none;
  position: absolute;
  left: 0px;
  top: 0px;
  float: left;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center top calc(50% - 60px);
  background-image: url(../icons/sad.svg);
  background-size: 90px;
  color: #fff;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.commentsblock {
  touch-action: none;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
  background-color: rgba(50, 50, 50, 0.95);
  z-index: 9999;
  display: none;
}
.commentsblock .newcomment {
  position: absolute;
  width: 100%;
  bottom: 0px;
  left: 0px;
  height: 90px;
  background-color: #151515;
  padding: 20px;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.4);
}
.commentsblock .newcomment input[type=text] {
  height: 50px;
  line-height: 50px;
  background-color: #eee;
  border-radius: 25px;
  width: 100%;
  border: 0px;
  outline: 0;
  box-sizing: border-box;
  float: left;
  padding-left: 50px;
  padding-right: 80px;
  font-size: 15px;
}
.commentsblock .newcomment input[type=submit] {
  position: absolute;
  right: 25px;
  bottom: 25px;
  height: 40px;
  width: 70px;
  line-height: 40px;
  border-radius: 20px;
  background-color: #000;
  color: #fff;
  text-align: center;
  border: 0px;
  box-sizing: border-box;
  outline: 0;
  font-size: 12px;
  transition: opacity 0.1s ease-in-out;
}
.commentsblock .newcomment input[type=submit]:hover {
  cursor: pointer;
  opacity: 0.75;
}
.commentsblock .newcomment .replyblock {
  height: 24px;
  line-height: 24px;
  border-radius: 12px;
  color: #000;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 11px;
  background-color: #ccc;
  position: absolute;
  left: 70px;
  top: 33px;
  padding-right: 20px;
  display: none;
  box-sizing: border-box;
}
.commentsblock .newcomment .replyblock b {
  position: absolute;
  top: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/closeb.svg);
  background-size: 12px;
  width: 24px;
  height: 24px;
  display: block;
  transition: opacity 0.1s ease-in-out;
}
.commentsblock .newcomment .replyblock b:hover {
  opacity: 0.75;
  cursor: pointer;
}
.commentsblock .newcomment .cavatar {
  position: absolute;
  left: 25px;
  bottom: 25px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  color: #fff;
  font-size: 18px;
  background-color: #ff9000;
  border-radius: 50%;
}
.commentsblock .titlecomment {
  position: absolute;
  width: 100%;
  top: 0px;
  left: 0px;
  height: 60px;
  line-height: 60px;
  padding-left: 55px;
  font-size: 18px;
  color: #fff;
  text-align: left;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 30px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 30px 2px rgba(0, 0, 0, 0.4);
}
.commentsblock .closecomment {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 10px;
  left: 10px;
  border-radius: 50%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/goleft.svg);
  background-size: 70%;
  cursor: pointer;
  transition: opacity 0.1s ease-in-out;
  z-index: 2;
}
.commentsblock .closecomment:hover {
  cursor: pointer;
  opacity: 0.75;
}
.commentsblock .filtercomment {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 20px;
  border-radius: 50%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/filter.svg);
  background-size: 80%;
  cursor: pointer;
  transition: opacity 0.1s ease-in-out;
  z-index: 2;
}
.commentsblock .filtercomment:hover {
  cursor: pointer;
  opacity: 0.75;
}
.commentsblock .posteravt {
  position: relative;
  float: left;
  height: 40px;
  width: 40px;
  line-height: 40px;
  color: #fff;
  font-size: 18px;
  background-color: #ff9000;
  border-radius: 50%;
  margin-bottom: 10px;
}
.commentsblock .posteravt img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.commentsblock .reply .posteravt {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 18px;
}
.commentsblock .postercomment {
  margin-left: 10px;
  position: relative;
  float: left;
  min-height: 40px;
  max-width: calc(100% - 50px);
  min-width: 200px;
  color: #fff;
  font-size: 12px;
  background-color: #151515;
  border-radius: 5px;
  margin-bottom: 0px;
  padding: 15px;
  box-sizing: border-box;
  text-align: left;
}
.commentsblock .postercomment .commentsinfo {
  text-transform: uppercase;
  float: left;
  width: 100%;
  font-size: 10px;
}
.commentsblock .postercomment .commentsinfo b {
  font-size: 11px;
  color: #fa9;
  transition: opacity 0.1s ease-in-out;
}
.commentsblock .postercomment .commentsinfo b:hover {
  cursor: pointer;
  opacity: 0.75;
}
.commentsblock .postercomment .commentstext {
  float: left;
  width: 100%;
  font-size: 15px;
  font-weight: normal;
  border-top: 0px dotted #ccc;
  margin-top: 6px;
  padding-top: 4px;
}
.commentsblock .postercomment.postercomment2 .commentsinfo b {
  color: #fff;
}
.commentsblock .commentsaction {
  float: left;
  padding-left: 50px;
  font-size: 11px;
  margin-bottom: 15px;
  margin-top: 5px;
}
.commentsblock .commentsaction i {
  font-style: normal;
  transition: opacity 0.1s ease-in-out;
  height: 22px;
  line-height: 22px;
  border-radius: 3px;
  float: left;
  display: block;
  color: #fff;
  padding-right: 7px;
  box-sizing: border-box;
  font-size: 11px;
  margin-right: 5px;
  text-shadow: 1px 1px #000;
}
.commentsblock .commentsaction i:hover {
  cursor: pointer;
  opacity: 0.75;
}
.commentsblock .commentsaction i.flag2 {
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/flag2.svg);
  background-size: 14px;
  width: 18px;
}
.commentsblock .commentsaction i.delete2 {
  background-repeat: no-repeat;
  background-position: left 3px center;
  background-image: url(../icons/close.svg);
  background-size: 14px;
  padding-left: 17px;
}
.commentsblock .commentsaction i.like2 {
  background-repeat: no-repeat;
  background-position: left 5px center;
  background-image: url(../icons/like2.svg);
  background-size: 12px;
  padding-left: 21px;
}
.commentsblock .commentsaction i.reply2 {
  background-repeat: no-repeat;
  background-position: left 5px center;
  background-image: url(../icons/reply2.svg);
  background-size: 12px;
  padding-left: 21px;
}
.commentsblock .commentsaction.commentsaction2 {
  padding-left: 40px;
}
.commentsblock .commentsinner {
  overscroll-behavior: contain;
  position: absolute;
  top: 60px;
  left: 0px;
  width: 100%;
  height: calc(100% - 150px);
  padding: 20px;
  padding-bottom: 10px;
  box-sizing: border-box;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.commentsblock .commentsinner::-webkit-scrollbar {
  display: none;
}
.commentsblock .commentsinner .reply {
  float: left;
  width: 100%;
  padding-left: 50px;
  box-sizing: border-box;
  margin-top: -10px;
}
.commentsblock .commentsinner .reply.sreply {
  padding-left: 40px;
}

.notfoundblock {
  touch-action: none;
  position: fixed;
  bottom: 0px;
  left: calc(50% - 32.5vh - 90px);
  width: 65vh;
  height: 100%;
  text-align: center;
  overflow: hidden;
  background-color: rgba(50, 50, 50, 0.95);
  z-index: 9999;
  display: none;
  display: block;
  background-color: #333;
  color: #fff;
  background-repeat: no-repeat;
  background-position: center top calc(50% - 60px);
  background-image: url(../icons/sad.svg);
  background-size: 90px;
  line-height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.messagesblock {
  touch-action: none;
  position: fixed;
  bottom: 0px;
  left: calc(50% - 32.5vh - 90px);
  width: 65vh;
  height: 100%;
  text-align: center;
  overflow: hidden;
  background-color: rgba(50, 50, 50, 0.95);
  z-index: 9999;
  display: none;
}
.messagesblock .newcomment {
  position: absolute;
  width: 100%;
  bottom: 0px;
  left: 0px;
  height: 90px;
  background-color: #151515;
  padding: 20px;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.4);
}
.messagesblock .newcomment input[type=text] {
  height: 50px;
  line-height: 50px;
  background-color: #eee;
  border-radius: 25px;
  width: 100%;
  border: 0px;
  outline: 0;
  box-sizing: border-box;
  float: left;
  padding-left: 50px;
  padding-right: 80px;
  font-size: 15px;
}
.messagesblock .newcomment input[type=submit] {
  position: absolute;
  right: 25px;
  bottom: 25px;
  height: 40px;
  width: 70px;
  line-height: 40px;
  border-radius: 20px;
  background-color: #000;
  color: #fff;
  text-align: center;
  border: 0px;
  box-sizing: border-box;
  outline: 0;
  font-size: 12px;
  transition: opacity 0.1s ease-in-out;
}
.messagesblock .newcomment input[type=submit]:hover {
  cursor: pointer;
  opacity: 0.75;
}
.messagesblock .newcomment .cavatar {
  position: absolute;
  left: 25px;
  bottom: 25px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  color: #fff;
  font-size: 18px;
  background-color: #ff9000;
  border-radius: 50%;
}
.messagesblock .titlecomment {
  position: absolute;
  width: 100%;
  top: 0px;
  left: 0px;
  height: 60px;
  line-height: 60px;
  padding-left: 55px;
  font-size: 18px;
  color: #fff;
  text-align: left;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 30px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 30px 2px rgba(0, 0, 0, 0.4);
}
.messagesblock .closemessages {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 10px;
  left: 10px;
  border-radius: 50%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/goleft.svg);
  background-size: 70%;
  cursor: pointer;
  transition: opacity 0.1s ease-in-out;
  z-index: 2;
}
.messagesblock .filtercomment {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 20px;
  border-radius: 50%;
  background-color: #444;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/dots.svg);
  background-size: 45%;
  cursor: pointer;
  transition: opacity 0.1s ease-in-out;
  z-index: 9999;
}
.messagesblock .closecomment:hover {
  cursor: pointer;
  cursor: pointer;
  opacity: 0.75;
  opacity: 0.75;
}
.messagesblock .posteravt {
  position: relative;
  float: left;
  height: 40px;
  width: 40px;
  line-height: 40px;
  color: #fff;
  font-size: 18px;
  background-color: #ff9000;
  border-radius: 50%;
  margin-bottom: 10px;
}
.messagesblock .posteravt img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.messagesblock .postercomment {
  margin-left: 10px;
  position: relative;
  float: left;
  min-height: 40px;
  max-width: calc(100% - 50px);
  min-width: 200px;
  color: #fff;
  font-size: 12px;
  background-color: #151515;
  border-radius: 5px;
  margin-bottom: 0px;
  padding: 15px;
  box-sizing: border-box;
  text-align: left;
}
.messagesblock .postercomment .commentsinfo {
  text-transform: uppercase;
  float: left;
  width: 100%;
  font-size: 10px;
}
.messagesblock .postercomment .commentsinfo b {
  font-size: 11px;
  color: #fa9;
  transition: opacity 0.1s ease-in-out;
}
.messagesblock .postercomment .commentsinfo b:hover {
  cursor: pointer;
  opacity: 0.75;
}
.messagesblock .postercomment .commentstext {
  float: left;
  width: 100%;
  font-size: 15px;
  font-weight: normal;
  border-top: 0px dotted #ccc;
  margin-top: 6px;
  padding-top: 4px;
}
.messagesblock .postercomment.postercomment2 .commentsinfo b {
  color: #fff;
}
.messagesblock .commentsaction {
  float: left;
  padding-left: 50px;
  font-size: 11px;
  margin-bottom: 15px;
  margin-top: 5px;
}
.messagesblock .commentsaction i {
  font-style: normal;
  transition: opacity 0.1s ease-in-out;
  height: 22px;
  line-height: 22px;
  border-radius: 3px;
  float: left;
  display: block;
  color: #fff;
  padding-right: 7px;
  box-sizing: border-box;
  font-size: 11px;
  margin-right: 5px;
  text-shadow: 1px 1px #000;
}
.messagesblock .commentsaction i:hover {
  cursor: pointer;
  opacity: 0.75;
}
.messagesblock .commentsaction i.delete2 {
  background-repeat: no-repeat;
  background-position: left 3px center;
  background-image: url(../icons/close.svg);
  background-size: 14px;
  padding-left: 17px;
}
.messagesblock .commentsaction.commentsaction2 {
  padding-left: 40px;
}
.messagesblock .msginner {
  overscroll-behavior: contain;
  position: absolute;
  top: 60px;
  left: 0px;
  width: 100%;
  height: calc(100% - 150px);
  padding: 20px;
  padding-bottom: 10px;
  box-sizing: border-box;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.messagesblock .msginner::-webkit-scrollbar {
  display: none;
}
.messagesblock .msginner.msginner2 {
  height: calc(100% - 60px);
}

.titlecomment .titlecommentavatar {
  float: left;
  width: 42px;
  line-height: 42px;
  height: 42px;
  text-align: center;
  margin-top: 9px;
  border-radius: 50%;
  background-color: #ff9000;
  color: #fff;
  margin-right: 8px;
  overflow: hidden;
}
.titlecomment .titlecommentavatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.postercomment.postercomment2 {
  background-color: #ff9000;
}
.postercomment.postercomment2:after {
  border-right-color: #E2454A;
}

.postercomment:after {
  right: 100%;
  top: 20px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-right-color: #151515;
  border-width: 5px;
  margin-top: -5px;
}

.reply .postercomment:after {
  top: 15px;
}

.box {
  position: relative;
  height: 100%;
  min-height: 100%;
  width: 100%;
  float: left;
  text-align: center;
  overflow: hidden;
  background-color: #000;
}
.box video {
  position: absolute;
  top: 0px;
  left: -1px;
  clip-path: inset(0px 0px);
  display: block;
  width: calc(100% + 1px);
  height: 100%;
  border: none !important;
  border-right: none !important;
  object-fit: cover;
}

.goup {
  position: fixed;
  right: 10px;
  bottom: 440px;
  background-color: rgba(100, 100, 100, 0.25);
  color: #fff;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/up.svg);
  background-size: 35px;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
  z-index: 2;
  transition: right 0.1s ease-in-out;
}

.godown {
  position: fixed;
  right: 10px;
  bottom: 380px;
  background-color: rgba(100, 100, 100, 0.25);
  color: #fff;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/down.svg);
  background-size: 35px;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
  z-index: 2;
}

.video-control {
  position: absolute;
  right: 20px;
  bottom: 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 11;
}
.video-control div {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video-control svg {
  height: 32px;
  width: 32px;
  fill: #fff;
}

.live {
  position: relative;
  background-color: rgba(29, 40, 71, 0.25);
  color: #fff;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
  z-index: 2;
}
.live img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.live span {
  width: 100%;
  height: 12px;
  line-height: 12px;
  position: absolute;
  bottom: -2px;
  left: 0px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  text-shadow: 1px 1px #000;
}
.live i {
  vertical-align: middle;
  margin-top: -2px;
  display: inline-block;
  background-color: #fb0000;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-left: 6px;
  position: absolute;
  top: 2px;
  right: 2px;
  box-shadow: 0 0 0 0 rgb(0, 0, 0);
  transform: scale(1);
  animation: pulse 1s infinite;
}

.heartinside svg path:nth-child(2) {
  transition: all 0.3s;
}

.heartinside.active svg path:nth-child(2) {
  fill: #e3274c !important;
}

.heartinside svg.heartbeat {
  transform-origin: 17px 15px;
  transform: scale(1);
}

.shareblock {
  display: none;
  position: absolute;
  right: 55px;
  bottom: 0px;
  background-color: rgba(100, 100, 100, 0.25);
  color: #fff;
  height: 50px;
  width: 230px;
  border-radius: 25px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
  z-index: 2;
}
.shareblock .reddit {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  float: left;
  margin: 5px;
  margin-right: 0px;
  background-color: #666;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/reddit.svg);
  background-size: 28px;
}
.shareblock .twitter {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  float: left;
  margin: 5px;
  margin-right: 0px;
  background-color: #666;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/twitter.svg);
  background-size: 28px;
}
.shareblock .discord {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  float: left;
  margin: 5px;
  margin-right: 0px;
  background-color: #666;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/discord.svg);
  background-size: 28px;
}
.shareblock .link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  float: left;
  margin: 5px;
  margin-right: 0px;
  background-color: #666;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/link.svg);
  background-size: 21px;
}
.shareblock .dots {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  float: left;
  margin: 5px;
  background-color: #666;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/dots.svg);
  background-size: 25px;
}

.dots:hover {
  opacity: 0.75;
  cursor: pointer;
}

.link:hover {
  opacity: 0.75;
  cursor: pointer;
}

.discord:hover {
  opacity: 0.75;
  cursor: pointer;
}

.reddit:hover {
  opacity: 0.75;
  cursor: pointer;
}

.twitter:hover {
  opacity: 0.75;
  cursor: pointer;
}

.sound {
  position: relative;
}
.sound:before {
  content: "\f026";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  font-size: 30px;
}

.soundon:before {
  content: "\f028";
  font-family: "Font Awesome 6 Free";
}

.nosound:before {
  content: "\f026";
  font-family: "Font Awesome 6 Free";
}

.search {
  position: fixed;
  right: 10px;
  top: 10px;
  background-color: rgba(100, 100, 100, 0.25);
  color: #fff;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/search.svg);
  background-size: 25px;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
  z-index: 2;
}

.pause {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(10, 10, 10, 0.25);
  color: #fff;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  text-align: center;
  line-height: 80px;
  font-size: 32px;
  background-size: 40px;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
  z-index: 9998;
  display: none;
}

.play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(10, 10, 10, 0.25);
  color: #fff;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  text-align: center;
  line-height: 80px;
  font-size: 32px;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
  z-index: 5;
  display: none;
}

.playfirst {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(189, 189, 189, 0.25);
  color: #fff;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
  z-index: 5;
  display: block;
  text-align: center;
  line-height: 80px;
  font-size: 32px;
}
.playfirst:hover {
  background-color: rgba(10, 10, 10, 0.5);
}

.contentloader {
  display: none;
  position: fixed;
  right: calc(50% + 40px);
  top: calc(50% - 40px);
  height: 80px;
  width: 80px;
  z-index: 9999;
}

.menu {
  position: fixed;
  right: calc(50% + 32.5vh + 10px);
  top: 10px;
  background-color: rgba(100, 100, 100, 0.25);
  color: #fff;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/menu.svg);
  background-size: 28px;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
  z-index: 2;
  display: none;
}

.backtoprofile {
  position: fixed;
  right: calc(50% + 32.5vh + 40px);
  top: 10px;
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/goleft.svg);
  background-size: 70%;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
  z-index: 16;
  display: none;
}

.gallery {
  position: fixed;
  right: 10px;
  top: 10px;
  background-color: rgba(100, 100, 100, 0.25);
  color: #fff;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/search.svg);
  background-size: 24px;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
  z-index: 2;
  display: none;
}

.menu-panel {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #202020;
}

.menuclose {
  position: fixed;
  top: 10px;
  right: 10px;
  color: #fff;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/close.svg);
  background-size: 24px;
  cursor: pointer;
  display: none;
  z-index: 10000;
  background-color: rgba(100, 100, 100, 0.25);
}

.ns {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img.logo-img {
  max-width: 120px;
}

.logo {
  color: #fff;
  background-color: #202020;
  font-weight: bold;
  font-size: 42px;
  z-index: 2;
  height: 60px;
  line-height: 60px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.logo a {
  text-decoration: none;
  color: #fff;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
}
.logo a:focus {
  outline: none;
  box-shadow: none;
}
.logo b {
  color: #fa9;
  font-size: 24px;
  margin-left: 3px;
  margin-right: 2px;
}

.logomobile {
  color: #fff;
  background-color: #202020;
  font-weight: bold;
  font-size: 42px;
  z-index: 2;
  height: 60px;
  line-height: 60px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: none;
}
.logomobile a {
  text-decoration: none;
  color: #fff;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
}
.logomobile a:focus {
  outline: none;
  box-shadow: none;
}
.logomobile b {
  color: #fa9;
  font-size: 24px;
  margin-left: 3px;
  margin-right: 2px;
}

h1 {
  padding: 0px;
  margin: 0px;
  overflow: hidden;
  float: left;
  width: 100%;
  font-size: 12px;
  background-color: #000;
  min-height: 24px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
  margin-top: -5px;
  text-align: justify;
  padding-left: 8px;
  padding-right: 8px;
  box-sizing: border-box;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
}

.rightcover {
  left: calc(50% + 32.5vh + 10px);
  top: 0px;
  height: 1px;
  width: 200px;
  position: fixed;
  background-color: #202020;
  z-index: 2;
}

.endoflistrs {
  display: none;
  width: 400px;
  height: 50px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  line-height: 50px;
  bottom: 0px;
  z-index: 9999;
  background-color: rgba(10, 10, 10, 0.75);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
}

.closeprofile {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 10px;
  left: 10px;
  border-radius: 50%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/goleft.svg);
  background-size: 70%;
  cursor: pointer;
  transition: opacity 0.1s ease-in-out;
  z-index: 2;
}

.rightsearchinner {
  float: left;
  width: calc(100% - 10px);
  background-color: #303030;
  padding: 10px;
  box-sizing: border-box;
  height: 62px;
  margin-top: 1px;
  margin-bottom: 1px;
}

.rightsearch {
  touch-action: none;
  float: left;
  width: 100%;
  background-color: #000;
  height: 42px;
  border-radius: 21px;
  padding-left: 12px;
  padding-right: 32px;
  box-sizing: border-box;
  border: 0px;
  outline: 0;
  margin-top: 0px;
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-image: url(../icons/search.svg);
  background-size: 16px;
  color: #fff;
}

.loadmore_bt {
  width: calc(100% - 10px);
  font-size: 14px;
  transition: opacity 0.1s ease-in-out;
  background-color: #ff9000;
  height: 36px;
  line-height: 36px;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
  border-radius: 0px;
  float: left;
  color: #000;
  text-decoration: none;
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: center;
}
.loadmore_bt:hover {
  cursor: pointer;
  opacity: 0.75;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(10, 10, 10, 0.25);
  color: #fff;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9998;
  display: none;
}

.lds-ring {
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 70px;
  height: 70px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  margin: 0px;
  top: 5px;
  left: 5px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rotation {
  -webkit-animation: spin 1s linear infinite;
  -moz-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.spacer {
  background-color: #101010;
  height: 1px;
  float: left;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 15px;
}

.menu-wraper {
  z-index: 1;
  height: 100%;
  width: 240px;
  position: relative;
  background-color: #202020;
  overflow: auto;
  float: left;
}
.menu-wraper::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}
.menu-wraper::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}
.menu-wraper::-webkit-scrollbar-thumb {
  background-color: #D62929;
}
.menu-wraper .nav-user .login {
  color: #fff;
  width: calc(50% - 5px);
  float: left;
  margin-right: 5px;
  margin-bottom: 10px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-wraper .nav-user .register {
  color: #fff;
  width: calc(50% - 5px);
  float: left;
  margin-left: 5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #000;
}
.menu-wraper .copy a {
  width: auto;
  display: inline-block;
  font-size: 11px;
  padding: 0px;
  margin: 0px;
  text-align: initial;
  border-radius: 0px;
  float: none;
  color: #fa9;
  background-color: transparent;
  line-height: initial;
  margin-top: 5px;
  height: auto;
}
.menu-wraper .menu-items a, .menu-wraper .tags a, .menu-wraper .nav-user a {
  text-align: left;
  width: 100%;
  font-size: 14px;
  transition: opacity 0.1s ease-in-out;
  background-color: #ff9000;
  height: 36px;
  line-height: 36px;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
  border-radius: 18px;
  color: #000;
  text-decoration: none;
  margin-bottom: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.menu-wraper .menu-items a svg, .menu-wraper .tags a svg, .menu-wraper .nav-user a svg {
  fill: #000;
}
.menu-wraper .menu-items a:hover, .menu-wraper .tags a:hover, .menu-wraper .nav-user a:hover {
  opacity: 0.75;
}
.menu-wraper a.order_sel {
  color: #fff;
}
.menu-wraper a.order_sel svg {
  fill: #fff;
}
.menu-wraper .tags a {
  background-color: #000;
  color: #fff;
  font-size: 14px;
  height: 32px;
  line-height: 32px;
  overflow: hidden;
  padding-left: 25px;
  background-size: 12px;
  width: 100%;
  float: left;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-right: 5px;
}
.menu-wraper .tags a:before {
  content: "#";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  display: inline-block;
  position: absolute;
  left: 7px;
}
.menu-wraper .tags a b {
  float: right;
  color: #fff;
  font-size: 12px;
  background-color: #151515;
  height: 24px;
  border-radius: 12px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 24px;
}
.menu-wraper .tags a.stag {
  color: #fa9;
  background-image: url(../icons/hash2.svg);
}

.ltitle.ltitlelogin {
  background-repeat: no-repeat;
  background-position: left -5px top 3px;
  padding-left: 29px;
  background-image: url(../icons/login.svg);
  background-size: 25px;
  background-color: #000;
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: auto;
}

.ltitle.ltitleregister {
  background-repeat: no-repeat;
  background-position: left top 3px;
  padding-left: 32px;
  background-image: url(../icons/signup.svg);
  background-size: 25px;
  background-color: #000;
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: auto;
}

.swiper {
  width: 100%;
  height: 100%;
}

.slider-pagination {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(-100%, -50%);
}
.slider-pagination div {
  min-width: unset;
  aspect-ratio: 1/1;
  padding: 0px;
  color: rgb(246, 246, 246);
  background-color: rgba(255, 255, 255, 0.13);
  transition-property: height, width;
  transition-duration: 300ms;
  transition-timing-function: linear;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.slider-pagination div:first-child {
  margin-bottom: 15px;
}
.slider-pagination div:hover {
  background: #ff9000;
  color: #fff;
}
.copy {
  float: left;
  color: #ccc;
  width: 100%;
  text-align: center;
  font-size: 11px;
  margin-bottom: 15px;
}

.title {
  font-weight: normal;
  position: relative;
  float: left;
  color: #fff;
  font-size: 14px;
  text-align: left;
  text-shadow: 0 0 2px rgba(10, 10, 10, 0.85);
  width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.avt {
  transition: transform 0.2s;
  position: relative;
  float: left;
  border-radius: 50%;
  background-color: #ff9000;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 28px;
  color: #fff;
  margin-right: 8px;
}

.creator {
  width: calc(100% - 41px);
  position: relative;
  float: left;
  color: #fff;
  text-transform: capitalize;
  text-shadow: 0 0 2px rgba(10, 10, 10, 0.85);
  text-align: left;
  font-size: 18px;
  margin-top: 2px;
}

.info-block {
  height: 50px;
  float: left;
  width: calc(100% - 65px);
}

.inner {
  float: left;
  width: 100%;
  height: 100%;
}

.inbox {
  cursor: pointer;
  bottom: 10px;
  left: 0px;
  width: calc(100% - 70px);
  position: absolute;
  padding-left: 10px;
  box-sizing: border-box;
  z-index: 9998;
}
.inbox:hover .avt {
  transform: scale(1.1);
}

.bt {
  z-index: 5;
  position: relative;
}

.imgprev {
  display: block;
  position: relative;
  float: left;
  width: calc(33.3333333333% - 1px);
  margin-bottom: 1px;
  aspect-ratio: 10/16;
  border-radius: 0px;
  margin-right: 1px;
  background-color: #000;
  overflow: hidden;
}
.imgprev:hover img {
  cursor: pointer;
  opacity: 0.85;
}
.imgprev:hover .ctitle {
  -webkit-line-clamp: 6;
  background-color: rgb(0, 0, 0);
}
.imgprev .ctitle {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: calc(100% - 16px);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 12px;
  padding: 8px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: background-color 0.2s ease-in-out;
}
.imgprev .views {
  background-size: 18px;
  padding-left: 6px;
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #fff;
  font-size: 11px;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  padding-right: 8px;
  height: 20px;
  line-height: 20px;
  font-weight: 900;
}
.imgprev .views:before {
  content: "\f06e";
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  margin-right: 3px;
}
.imgprev .ctitle.ctitledark {
  color: #fa9;
}
.imgprev img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.divprev {
  display: block;
  position: relative;
  float: left;
  width: calc(33.3333333333% - 1px);
  margin-bottom: 1px;
  aspect-ratio: 10/16;
  border-radius: 0px;
  margin-right: 1px;
  background-color: #000;
  overflow: hidden;
}

.ribbon2 {
  --f: 5px;
  --r: 8px;
  --t: 10px;
  font-size: 12px;
  color: #fff;
  height: 24px;
  line-height: 24px;
  position: absolute;
  inset: var(--t) calc(-1 * var(--f)) auto auto;
  padding: 0 10px var(--f) calc(10px + var(--r));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--f)), calc(100% - var(--f)) 100%, calc(100% - var(--f)) calc(100% - var(--f)), 0 calc(100% - var(--f)), var(--r) calc(50% - var(--f) / 2));
  background: #E2454A;
  box-shadow: 0 calc(-1 * var(--f)) 0 inset rgba(0, 0, 0, 0.3333333333);
}

.ribbon {
  background-color: #ff9000;
  font-size: 12px;
  color: #fff;
  height: 24px;
  line-height: 24px;
  position: absolute;
  border-radius: 12px;
  bottom: 10px;
  width: 90px;
  text-align: center;
  margin-left: calc(50% - 45px);
}

.tooltip {
  position: relative;
}
.tooltip:before {
  content: attr(data-title);
  background-color: #101010;
  color: #FFF;
  font-size: 11px;
  padding: 0px;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: -40px;
  width: 100%;
  display: none;
  border-radius: 5px;
  text-align: center;
}
.tooltip:after {
  content: "";
  position: absolute;
  display: none;
  width: 0;
  height: 0;
  left: calc(50% - 5px);
  top: -5px;
  border-style: solid;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #101010 transparent;
}
.tooltip:hover:after {
  display: block;
}
.tooltip:hover:before {
  display: block;
}

.gender_sel.tooltip:after {
  border-color: transparent transparent #101010 transparent;
}

.headerprofile {
  float: left;
  width: 100%;
  height: 125px;
  background-color: #000;
  position: relative;
  margin-bottom: 65px;
}
.headerprofile .bginner {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 125px;
  overflow: hidden;
}
.headerprofile .bg {
  overflow: hidden;
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  filter: blur(8px);
  -webkit-filter: blur(8px);
}

.headeravatar {
  position: absolute;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  border: 3px solid #202020;
  font-size: 32px;
  left: 10px;
  top: 55px;
  background-color: #ff9000;
  color: #fff;
  border-radius: 50%;
  overflow: hidden;
}
.headeravatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.headerfollow {
  background-color: #ff9000;
  height: 36px;
  line-height: 36px;
  border-radius: 18px;
  font-size: 14px;
  color: #000;
  position: absolute;
  bottom: -46px;
  left: 290px;
  width: 100px;
  text-align: center;
  transition: opacity 0.1s ease-in-out;
}
.headerfollow:hover {
  opacity: 0.75;
  cursor: pointer;
}

.headerfollow.following {
  color: #fff;
}

.headermsg {
  background-color: #000;
  height: 36px;
  line-height: 36px;
  border-radius: 17px;
  font-size: 14px;
  color: #fff;
  position: absolute;
  bottom: -46px;
  left: 185px;
  width: 95px;
  text-align: center;
  transition: opacity 0.1s ease-in-out;
}
.headermsg:hover {
  opacity: 0.75;
  cursor: pointer;
}

.headertip {
  background-color: #000;
  height: 36px;
  line-height: 36px;
  border-radius: 18px;
  font-size: 14px;
  color: #fff;
  position: absolute;
  bottom: -46px;
  left: 140px;
  width: 36px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/tip.svg);
  background-size: 21px;
  transition: opacity 0.1s ease-in-out;
}
.headertip:hover {
  opacity: 0.75;
  cursor: pointer;
}

.tag-list {
  display: inline-block;
  width: 100%;
  text-align: left;
  margin-top: 10px;
}
.tag-list a {
  margin-right: 3px;
  color: #fff;
  text-decoration: none;
  font-style: italic;
  font-size: 90%;
}

.profiletitle {
  float: left;
  font-size: 24px;
  font-weight: bold;
  margin-top: 30px;
  padding: 10px;
  box-sizing: border-box;
  color: #fff;
  text-transform: capitalize;
  position: absolute;
  left: 135px;
  width: calc(100% - 135px);
  bottom: 0px;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profileinfo {
  float: left;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  color: #aaa;
  font-weight: normal;
  box-sizing: border-box;
  padding: 0px;
}
.profileinfo b {
  font-weight: normal;
  color: #fff;
}

.profilebio {
  float: left;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  color: #fff;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  letter-spacing: 1px;
  padding-top: 0px;
  padding-bottom: 5px;
}
.profilebio a {
  color: #fff;
}

.profilesideinner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.profiletype {
  cursor: pointer;
  float: left;
  height: 36px;
  line-height: 36px;
  background-color: #000;
  width: 50%;
  margin: 0px;
  padding: 0px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/video.svg);
  background-size: 24px;
  margin-bottom: 1px;
  margin-right: 0px;
  opacity: 0.3;
}

.profiletype.dis {
  cursor: not-allowed;
  opacity: 0.3;
}

.profiletype.sel {
  opacity: 1;
  border-bottom: 1px solid #E2454A;
  height: 35px;
}

.profiletype.videos {
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/video.svg);
  background-size: 24px;
}

.profiletype.photos {
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/photo.svg);
  background-size: 24px;
}

.profiletype.favs {
  display: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../icons/fav.svg);
  background-size: 21px;
}

.profiletypeinner {
  float: left;
  width: 100%;
  padding-left: 10px;
  padding-right: 9px;
  box-sizing: border-box;
}

.profilelinksinner {
  float: left;
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  margin-bottom: 5px;
}

.headertip.nosel {
  opacity: 0.3;
  cursor: not-allowed;
}

.headermsg.nosel {
  opacity: 0.3;
  cursor: not-allowed;
}

.profilelinks.nosel {
  opacity: 0.3;
  cursor: not-allowed;
}

@media screen and (max-width: 1279px) {
  .commentsblock {
    width: 100%;
    height: 100%;
    left: 0px;
  }
  .commentsblock .newcomment {
    background-color: #222;
    padding: 15px;
    height: 80px;
  }
  .commentsblock .newcomment .replyblock {
    left: 65px;
    top: 28px;
  }
  .commentsblock .newcomment .cavatar {
    left: 20px;
    bottom: 20px;
  }
  .commentsblock .newcomment input[type=submit] {
    right: 20px;
    bottom: 20px;
  }
  .commentsblock .commentsinner {
    padding: 15px;
  }
  .commentsblock .closecomment {
    left: 15px;
  }
  .commentsblock .filtercomment {
    right: 15px;
  }
  .commentsblock .titlecomment {
    padding-left: 65px;
  }
  .commentsblock .ft {
    right: 15px;
  }
  .messagesblock {
    width: 100%;
    height: 100%;
    left: 0px;
  }
  .messagesblock .msginner {
    padding: 15px;
  }
  .messagesblock .newcomment {
    background-color: #222;
    padding: 15px;
    height: 80px;
  }
  .messagesblock .newcomment .cavatar {
    left: 20px;
    bottom: 20px;
  }
  .messagesblock .newcomment input[type=submit] {
    right: 20px;
    bottom: 20px;
  }
  .messagesblock .closecomment {
    left: 15px;
  }
  .messagesblock .filtercomment {
    right: 15px;
  }
  .messagesblock .titlecomment {
    padding-left: 65px;
  }
  .messagesblock .ft {
    right: 15px;
  }
  .endoflist {
    width: 100%;
    left: 0px;
  }
  body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .box {
    width: 100%;
    height: 100%;
  }
  .box video {
    width: auto;
    aspect-ratio: 10/16;
    margin: 0 auto;
    position: relative;
    display: inline-block;
  }
  .notfoundblock {
    width: 100%;
    height: 100%;
    left: 0px;
  }
  .rightside {
    width: 100%;
    height: calc(100% - 100px);
    z-index: 9999;
  }
  .next {
    display: none;
  }
  .prev {
    display: none;
  }
  .rightside_top {
    width: 100%;
    left: 0px;
    top: 0px;
    height: 100px;
    padding-top: 0px;
    z-index: 9999;
    -webkit-box-shadow: 0 0 30px 2px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 30px 2px rgba(0, 0, 0, 0.4);
    background-color: rgba(50, 50, 50, 0.95);
    overflow: auto;
    padding-left: 1px;
    padding-right: 0px;
  }
  .rightside_top .rightopc {
    display: none;
  }
  .rightside_top .closegallery {
    display: block;
    height: 62px;
    width: 62px;
    background-size: 50%;
    background-color: #303030;
    border-radius: 0px;
  }
  .rightside_bottom {
    display: none;
    width: 100%;
    left: 0px;
    bottom: 0px;
    z-index: 9999;
    -webkit-box-shadow: 0 0 30px 2px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 30px 2px rgba(0, 0, 0, 0.4);
    background-color: rgba(50, 50, 50, 0.95);
    height: 56px;
    padding-top: 10px;
  }
  .rightside_bottom .rightopc {
    display: block;
    margin-top: 0px;
  }
  .menu {
    left: 10px;
    display: block;
    z-index: 3;
  }
  .backtoprofile {
    left: 10px;
  }
  .gallery {
    display: block;
    z-index: 3;
  }
  .right-sidebar {
    width: 100%;
    z-index: 12;
  }
  .bar {
    width: calc(100% - 240px);
    left: 230px;
  }
  .content {
    width: calc(100% - 220px);
    height: 100%;
    top: 0px;
    left: 220px;
  }
  .content2 {
    width: calc(100% - 220px);
    height: 100%;
    top: 0px;
    left: 220px;
  }
  .profileside {
    width: 100%;
    left: 0px;
    z-index: 10;
    top: 0px;
    height: 100%;
  }
  .rightsearchinner {
    width: calc(100% - 62px);
    padding-left: 0px;
  }
  .menu-wraper {
    top: 0px;
    left: 0px;
    z-index: 9999;
  }
  .bt {
    left: initial;
    right: 10px;
  }
  .rightsearch {
    border-radius: 21px;
    width: 100%;
  }
  .loadmore_bt {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .profilecontent {
    padding-left: 1px;
    padding-right: 0px;
    padding-bottom: 1px;
  }
  .profilecontent .imgprev {
    height: auto !important;
    aspect-ratio: 10/16 !important;
  }
  .profilecontent .divprev {
    height: auto !important;
    aspect-ratio: 10/16 !important;
  }
  .profiletypeinner {
    padding-left: 1px;
    padding-right: 0px;
    padding-bottom: 1px;
  }
  .rightside {
    padding-left: 1px;
    padding-right: 0px;
    padding-bottom: 1px;
  }
  .right-sidebar {
    display: none;
  }
  .loginblock {
    width: 100%;
    max-height: 100%;
    height: auto;
    max-width: 100%;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    bottom: 0px;
    left: 0px;
    top: inherit;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .regblock {
    width: 100%;
    max-height: 100%;
    height: auto;
    max-width: 100%;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    bottom: 0px;
    left: 0px;
    top: inherit;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .forgetblock {
    width: 100%;
    max-height: 100%;
    height: auto;
    max-width: 100%;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    bottom: 0px;
    left: 0px;
    top: inherit;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .profileblock {
    width: 100%;
    max-height: 100%;
    height: auto;
    max-width: 100%;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    bottom: 0px;
    left: 0px;
    top: inherit;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .uploadblock {
    width: 100%;
    max-height: 100%;
    height: auto;
    max-width: 100%;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    bottom: 0px;
    left: 0px;
    top: inherit;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .validateemailblock {
    width: 100%;
    max-height: 100%;
    height: auto;
    max-width: 100%;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    bottom: 0px;
    left: 0px;
    top: inherit;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .passwordblock {
    width: 100%;
    max-height: 100%;
    height: auto;
    max-width: 100%;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    bottom: 0px;
    left: 0px;
    top: inherit;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .linksblock {
    width: 100%;
    max-height: 100%;
    height: auto;
    max-width: 100%;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    bottom: 0px;
    left: 0px;
    top: inherit;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .reportblock {
    width: 100%;
    max-height: 100%;
    height: auto;
    max-width: 100%;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    bottom: 0px;
    left: 0px;
    top: inherit;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    top: initial;
  }
  .confirmblock {
    width: 100%;
    max-height: 100%;
    height: auto;
    max-width: 100%;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    bottom: 0px;
    left: 0px;
    top: inherit;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .modal {
    overflow: hidden;
  }
  .menu-wraper {
    transition: 0.15s;
    width: 0px;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: block;
  }
  .next {
    display: none;
  }
  .prev {
    display: none;
  }
  .rightside_bottom {
    display: none;
  }
  .logomobile {
    display: block;
    position: fixed;
    top: 10px;
    text-align: left;
    height: auto;
    width: auto;
    left: 68px;
    font-size: 32px;
    line-height: initial;
    text-shadow: 0 0 2px rgba(10, 10, 10, 0.75);
    z-index: 5;
    background-color: transparent;
  }
  .logo b {
    font-size: 24px;
    text-shadow: 0 0 2px rgba(10, 10, 10, 0.75);
  }
  .bar {
    width: calc(100% - 20px);
    left: 10px;
  }
  .content {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
  }
  .content2 {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
  }
  .menu-wraper .nav-user a {
    width: 100% !important;
    margin-left: 0 !important;
    justify-content: flex-start !important;
  }
}
@media screen and (max-width: 480px) {
  .plr {
    font-size: 13px;
  }
  .profileinfo {
    width: 100%;
    margin-bottom: 5px;
  }
  .profilelinks {
    float: left;
    margin-left: 0px;
    margin-right: 6px;
  }
  .headermsg {
    text-indent: -9999px;
    width: 36px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../icons/chat.svg);
    background-size: 20px;
    left: 168px;
  }
  .headerfollow {
    left: 212px;
    width: 95px;
  }
  .headeravatar {
    height: 100px;
    width: 100px;
    line-height: 100px;
    top: 55px;
  }
  .profiletitle {
    left: 120px;
    font-size: 21px;
  }
  .headertip {
    left: 125px;
  }
  .headerprofile {
    height: 105px;
    margin-bottom: 65px;
  }
  .headerprofile .bginner {
    height: 105px;
  }
}
@media screen and (max-height: 480px) and (max-width: 580px) {
  .gallery {
    display: none;
  }
  .box video {
    width: calc(100% + 2px);
    aspect-ratio: auto;
    margin: 0 auto;
    position: relative;
    display: block;
    float: left;
  }
}
@media screen and (max-height: 500px) and (max-width: 1023px) {
  .bt {
    display: none;
  }
}
@media screen and (max-height: 320px) and (max-width: 580px) {
  .bt {
    display: none;
  }
  .inbox {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .box video {
    width: calc(100% + 2px);
    aspect-ratio: auto;
    margin: 0 auto;
    position: relative;
    display: block;
    float: left;
  }
  .main-content {
    width: 100%;
  }
  .main-content .content-wrapper {
    width: 100%;
  }
  .right-sidebar {
    display: none;
  }
}

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