:root {
    --bg: #101010;
    --text: white;
    --grey: #8C8C8C;
    --demi: #1c1c1cf2;
}

@font-face {
    font-family: 'Gerbera Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Gerbera Regular'), url('/fonts/Gerbera-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Gerbera Black';
    font-style: normal;
    font-weight: normal;
    src: local('Gerbera Black'), url('/fonts/Gerbera-Black.otf') format('opentype');
}


body {
    touch-action: pan-x pan-y;
}

div#loader {
    background: #101010;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-image: url(/images/logo/arrow.png);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: 50%;
    background-blend-mode: lighten;
    transition: .5s;
}

html {
    background: var(--bg);
}

body {

    
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    
    font-family: 'Gerbera Regular', 'SF Pro Display', 'Roboto', sans-serif;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    color: var(--text);
    margin: 0;
    min-height: 100vh;
    padding-bottom: 180px;
    max-width: 600px;
    margin: 0 auto;
}


button {
    background-color: #282828;
    border: none;
    height: 25px;
    line-height: 25px;
    font-family: 'Gerbera Regular', 'SF Pro Display', 'Roboto', sans-serif;
}


.feed>button {
    width: 100%;
}

.scrollContainer {
    overflow-x: auto;
    width: calc(100% + 10px);
    scroll-snap-type: x mandatory;

}

.scrollable {
    display: flex;
    gap: 10px;

}

.episode {
    width: var(--itemWidth);
    min-width: var(--itemWidth);
    scroll-snap-align: start;
    
}

h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
}

h4 {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--grey);
}

.imagePlacer {
    height: var(--itemWidth);
    position: relative;
    background-size: contain;
    padding: 8px;
    box-sizing: border-box;
}

.imagePlacer::after {
    content: '';
    width: 100%;
    height: var(--halfItemWidth);
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, #101010CC, transparent 80%);
}

.controls {
    position: absolute;
    bottom: 8px;
    font-size: 10px;
    z-index: 20;
    filter: opacity(0.8);
    width: 90%;
}

.uppercase {
    text-transform: uppercase !important;
}

.flex {
    display: flex;
    align-items: center;
}

.flex.spread {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    position: relative;
    width: 100%;
}

div#footer {
    background: var(--demi);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    padding: 15px 15px;
    box-sizing: border-box;
    z-index: 100;
    padding-bottom: 20px;
    max-width: 600px;
    margin: 0 auto;
    right: 0;
}

div#footer>.sized>div {
    filter: opacity(0.5);
    text-align: center;
    margin: 10px 10px 0;
    transition: .3s;
}

div#footer>.sized>div>p {
    margin: 0;
    font-size: 12px;
}

.hidden {
    display: none;
    overflow: hidden;
}

.grid {
    display: grid;
    justify-items: center;
    max-width: 100%;
    gap: 10px;
}

.feed {
    width: auto;
}

.feed>img {
    width: 100%;
}

.grey {
    color: var(--grey);
}

.grid2 {
    grid-template-columns: 1fr 1fr;
}

.grid3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
}

.grid4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.feed>button {
    font-size: 10px;
    color: white;
}


#footer.f2 {
    bottom: 60px;
    height: 60px;

}

img.player {
    width: 40px;
    height: 40px;
}

#footer.f2>div {
    text-align: left;
    filter: opacity(1);
    margin: 5px 10px;
}

.playerName {
    margin-left: 10px;
    overflow: hidden;
}

.playerSub {
    color: var(--grey);
}


[data-status="paused"]::after,
[data-status="stop"]::after {
    content: url(/images/icons/play.svg);
}

[data-status] {
    position: relative;
}


[data-status="playing"]::after {
    content: url(/images/icons/pause.svg);
}


.lineControl{
    -webkit-line-clamp: 3;
    white-space: break-spaces;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.line2{
    -webkit-line-clamp: 2;
}

.line1{
    -webkit-line-clamp: 1;
}

.h48{
    max-height: 48px;
}

.h20{
    max-height: 20px;
}

h4.playerSub {
    font-size: 10px;
    margin-left: 10px;
    margin-bottom: 6px;
    white-space: break-spaces;
    text-transform: none;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 10px;
    max-height: 20px;
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bg);
    width: 100%;
    height: 100%;
    z-index: 100;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

.popover>img {
    width: 70vw;
}

.episodeList>img {
    width: 50px;
    height: 50px;
}

.episodeList>.noWrap {
    width: calc(100% - 90px);
}

span.info {
    font-size: 10px;
}

.noWrap>* {
    margin-left: 10px;
}

p.shortener {
    font-size: 14px;
    color: var(--grey);
    white-space: break-spaces;
}

.picUnder {
    width: 80vw;
    height: 80vw;
    position: relative;
    background-size: 80%;
    margin: 0 auto;
    margin-top: 10vw;
    background-repeat: no-repeat;
    background-position: 50%;
}

.picUnder>img {
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.picHover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.flex.gaped {
    gap: 20px;
}

.pics>img {
    width: 46px;
    position: absolute;
    left: 0;
    bottom: -13px;
}

.tag {
    background: var(--demi);
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    height: 80px;
    overflow: hidden;
    position: relative;
}

.topLess {
    margin-top: 0;
}

input {
    width: 100%;
    box-sizing: border-box;
    line-height: 30px;
    background: var(--demi);
    border: none;
    color: white;
    padding: 0 10px;
}

.progressBar {
    width: 100%;
    height: 4px;
    background: var(--bg);
    margin-top: 4px;
    border-radius: 2px;
}

span.progess.small {
    width: 30px;
    height: 2px;
}

.imagePlacer::before {
    content: '▶';
    padding-top: 10px;
    text-align: center;
    width: 100%;
    height: var(--halfItemWidth);
    position: absolute;
    top: -30vw;
    left: 0;
    background: linear-gradient(180deg, #101010CC, transparent 80%);
    transition: .5s;
}


[data-playing="true"].imagePlacer::before {
    top: 0;
}

.header>span {
    font-size: 14px;
    padding: 5px 10px;
}

.header>span[active="true"] {
    background: var(--demi);
}

[data-played] {
    filter: opacity(0.5);
}

.padding {
    padding: 0 10px;
    box-sizing: border-box;
}

.upFlex {
    display: flex;
    align-items: self-start;
}

.bottomShrink {
    margin-bottom: -10px;
}

.divided.flex.upFlex.gaped {
    /* border-bottom: 1px solid var(--demi); */
    margin-bottom: 10px;
}

button.big {
    width: 100%;
    height: 40px;
    font-size: 16px;
    color: white;
}

p.small {
    color: var(--grey);
    font-size: 10px;
    text-align: center;
    padding: 0 30px;
}

img.blend {
    width: 100%;
    mix-blend-mode: soft-light;
    filter: opacity(1);
    animation: opaque 1s infinite alternate;
}

@keyframes opaque {
    0% {
        filter: opacity(1);
    }

    100% {
        filter: opacity(.6);
    }
}

h2 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -1px;
}

.bubble {
    background: #282828;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 20px;
    font-size: 12px;
    position: relative;
    width: 80%;
    margin: 0 auto 20px;
}

.bubble::after {
    content: url(/images/icons/Tail.svg);
    position: absolute;
    bottom: -1px;
    left: -5px;
}

.content {
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    padding: 0 10px;
}

.pictures {
    width: 100%;
    height: 70vh;
}



.pictures>div,
.pictures>img {
    position: absolute;
    width: 250px;
    height: 250px;
    top: 230px;
    background-size: contain;
    transform: translate(0px, -50%);
}

div.coverLeft.mini,
img.coverLeft.mini {
    left: -230px;
}

div.coverRight.mini,
img.coverRight.mini {
    right: -230px;
    transform-origin: 0 0;
    transition: .3s;
}

div.coverMain,
img.coverMain {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    z-index: 100;
    transform-origin: 0 0;
    transition: .3s;
    object-fit: contain;
    max-width: 80vw;
    max-height: 80vw;
}

div.mini,
img.mini {
    filter: opacity(0.5) brightness(0.5);
}

.left {
    text-align: left;
}

a {
    color: white !important;
}




[data-locked="true"][data-paid="bonus"]::before {
    content:        '🔒';
}

[data-paid="bonus"]::before {
    content:        '🔓';
    background:     var(--bg);
    position:       absolute;
    border-radius:  50%;
    width:          16px;
    height:         16px;
    line-height:    20px;
    top:            -10px;
    left:           -10px;
    transform:  translate(5%, 5%) rotate(-45deg);
    z-index: 1;
    overflow: hidden;
    font-size: 12px;
    border: 3px solid var(--bg);
    text-align: center;
}

[data-paid="bonus"] {
    position: relative;
}


.listRight {
    width: 40px;
    height: 40px;
    min-width: 40px;
}

.bar {
    height: 25px;
    min-width: 1.7px;
    background: var(--grey);
    transition: 1s;
    animation-timing-function: cubic-bezier(0.27, -0.48, 0.5, 1.34);
}

.motion.flex.spread {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 26px;
    min-height: 25px;
}

.bar:nth-child(1),
.bar:nth-child(6) {
    height: 10px;
}

.bar:nth-child(2),
.bar:nth-child(5) {
    height: 18px;
}

@keyframes pop {
    0% {
        height: 15px;
    }

    50% {
        height: 25px;
    }

    100% {
        height: 15px;
    }
}

span.blue {
    color: var(--tg-theme-accent-text-color);
    font-size: small;
    padding-left: 10px;
}

.context::after {
    content: '...';
}

.padding.contextPopup {
    position: absolute;
    right: 50px;
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    padding: 20px;
    border-radius: 20px !important;
    z-index: 200;
}

.padding.contextPopup>div {
    padding: 0px 0 15px;
}

.divided:last-child {
    margin-bottom: 0 !important;
    border: none !important;
    padding-bottom: 0 !important;
}

.context {
    text-align: right;
    height: 100%;
    /* line-height: 40px; */
    cursor: pointer;
}

.hover {
    position: fixed;
    top: 0;
    left: 0;
    content: '';
    background: #1c1c1c73;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.padding.contextPopup {
    z-index: 1001;
}

h3.playerName {
    white-space: break-spaces;
    line-height: 16px;
    max-height: 32px;
}

img.micro {
    height: 15px;
}

.minGap {
    gap: 5px;
}

.lineControls {
    position: relative;
    width: 50px;
    height: 50px;
    min-width: 50px;
}

.lineControls>img {
    width: 100%;
    height: 100%;
}

[data-status-pic="playing"]::after {
    background: #00000045;
    width: 100%;
    height: 100%;
    content: url(/images/icons/pause.svg);
    display: block;
    position: absolute;
    top: 0;
    text-align: center;
    line-height: 60px;
}

.max50 {
    max-height: 30vh;
    overflow: scroll;
    overflow-x: hidden;
}

.playerControl>div {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 20px;
    text-align: center;
    line-height: 30px;
    position: relative;
}

.playerControl.flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    align-content: center;
}

.minus15 {
    background-position: 50% 50% !important;
    background: url(/images/icons/back15.svg);
    background-repeat: no-repeat;
}

.sp {
    background-image: url(/images/icons/play.svg);
    background-size: 100% !important;
}

[data-status-player="playing"] {
    background-image: url(/images/icons/pause.svg) !important;
}

.plus15 {
    background-image: url(/images/icons/forw30.svg);
}

.timer {
    background-image: url(/images/icons/timer.svg);
}

.marginLess {
    margin: -10px 0 15px;
}

.episode.mini {
    min-width: var(--halfItemWidth);
    height: var(--halfItemWidth);
    width: var(--halfItemWidth);
    filter: none !important;
}

.div.imagePlacer.mini {
    height: var(--halfItemWidth);
    filter: none;
}

[disabled] {
    filter: opacity(0.4);
}

.golden {
    color: #FFD705;
    text-shadow: 0px 0px 3px #FFD705;
}

span.shadowed {
    filter: opacity(0.5);
}

.shadowed[active] {
    filter: opacity(1);
}

.mBottom {
    margin-bottom: 30px;
}

.center {
    text-align: center;
}

p.mini {
    font-size: 14px;
}

.popup {
    position: fixed;
    top: 20vh;
    background: #1C1C1C;
    padding: 16px;
    border-radius: 10px;
    width: 80vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 16px;
    z-index: 1000;
    max-width: 600px;
    /* transform: translate(0px, -50%); */
}

.popup>.divided {
    background: #212121;
    padding: 10px;
    border-radius: 5px;
}

.picContainer>.picBG,
.picContainer>.pic {
    height: 160px;
    width: 160px;
    margin: 60px auto 0;
    background-size: contain;
    transition: .3s;
}

.picBG {
    position: absolute;
    left: 0;
    right: 0;
    top: 100px;
    margin: 0 auto !important;
    filter: blur(40px) opacity(0.5);
    z-index: -1;
}

.picContainer {
    text-align: center;
}

div#itemBig {
    padding: 10px 16px;
    box-sizing: border-box;
}

.picContainer>h2 {
    font-size: 24px;
    margin-top: 10px;
    line-height: 24px;
}

.picContainer>button {
    background: white;
    width: 100%;
    line-height: 40px;
    height: 40px;
    font-weight: 600;
    font-size: 16px;
    color: black !important;
    margin: 10px 0;
}

.picContainer {
    padding: 0 30px;
    max-width: 318px;
    margin: 0 auto;
}

.credit.flex.flexIn.gaped {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 14px;
}

[data-playback="play"]::before {
    background: url(/images/icons/play.svg) 50%, 50% no-repeat;
}
[data-playback="pause"]::before {
    background: url(/images/icons/pause.svg) 50%, 50% no-repeat;
}

[data-playback]::before {
    background-size: cover;
    content: '';
    object-fit: contain;
    filter: brightness(0);
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-bottom: -3.5px;
    margin-right: 5px;
}


input[type="range"] {
    --c: white; /* active color */
    --g: 4px; /* the gap */
    --l: 3px; /* line thickness*/
    --s: 22px; /* thumb size*/
    /* width: 400px; */
    height: var(--s); /* needed for Firefox*/
    --_c: color-mix(in srgb, var(--c), #000 var(--p,0%));
    /* -webkit-appearance :none; */ /* ПОПРОБОВАТЬ ПОТОМ ВЕРНУТЬ */
    -moz-appearance :none;
    appearance :none;
    background: none;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    accent-color: white;
    margin: 10px 0;
  }
  input[type="range"]:focus-visible,
  input[type="range"]:hover{
    --p: 25%;
  }
  input[type="range"]:active,
  input[type="range"]:focus-visible{
    --_b: var(--s)
  }
  /* chromium */
  input[type="range" i]::-webkit-slider-thumb{
    height: var(--s);
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 0 0 0 var(--_b,var(--l)) inset var(--_c);
    border-image: linear-gradient(90deg,var(--_c) 50%,#262626 0) 0 1/calc(50% - var(--l)/2) 100vw/0 calc(100vw + var(--g));
    -webkit-appearance: none;
    appearance: none;
    transition: .3s;
  }
  /* Firefox */
  input[type="range"]::-moz-range-thumb {
    height: var(--s);
    width: var(--s);
    background: none;
    border-radius: 50%;
    box-shadow: 0 0 0 var(--_b,var(--l)) inset var(--_c);
    border-image: linear-gradient(90deg,var(--_c) 50%,#262626 0) 0 1/calc(50% - var(--l)/2) 100vw/0 calc(100vw + var(--g));
    -moz-appearance: none;
    appearance: none;
    transition: .3s;
  }
  @supports not (color: color-mix(in srgb,red,red)) {
    input {
      --_c: var(--c);
    }
  }
  
  
  .picContainer>.context,
  .pictures>.context {
    position: absolute;
    right: 10px;
    height: 40px;
    width: 40px;
    top: 0;
}


img.preview {
    width: 50px;
}

span.closeMe {
    position: absolute;
    right: 20px;
    z-index: 100;
    background: var(--dark);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: var(--light);
    text-align: center;
    line-height: 25px;
    cursor: pointer;
    background: #282828;
}

span.small {
    color: var(--grey);
    font-size: 10px;
}

.padding.contextPopup {
    min-width: 280px;
}

.playerControls {
    display: flex;
    margin-right: 20px;
    justify-content: flex-end;
    width: 110px;
}


.imagePlacer.long {
    background-size: cover;
    background-position: 50%;
}

.divided::after {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(180deg, var(--grey) 50%, var(--bg) 50%);
    width: 100%;
    position: absolute;
    opacity: 0.2;
    box-shadow: 0px 0px 2px var(--grey);
    bottom: 0;
    left: 0;
}

.divided {
    position: relative;
}

.divided:last-child::after {
    content: none;
}

p.center.marginLess {
    font-size: 14px;
}

.tagCover>img:nth-child(2) {
    left: 40px;
}

.tagCover>img:nth-child(3) {
    left: 80px;
}

.tagCover>img:nth-child(4) {
    left: 120px;
}

.tagCover>img:nth-child(even) {
    transform: rotate(15deg);
    z-index: 0;
}

.tagCover>img:nth-child(odd) {
    transform: rotate(-15deg);
}

button.big.white {
    background: white;
    color: #282828;
    margin: 10px 0;
}

.load {
    content: url(/images/icons/DownloadG.svg);
}
.load.loading {
    animation: opaque 1s infinite alternate;
}

img.p20 {
    width: 20px;
}

.popup.big {
    width: 100%;
    height: 100%;
    top: 0;
    box-sizing: border-box;
}

.padRight20{
    padding-right: 20px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}


.bullet {
    height: 3px;
    min-width: 10px;
    flex-basis: revert-layer;
    width: 100%;
    border-radius: 2px;
    background: #282828;
}

.flex.fill {
    display: flex;
    gap: 5px;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    flex-basis: fit-content;
}

.popup.big>img {
    /* width: 100%; */
    /* margin-top: 15px; */
    max-height: 50vh;
    object-fit: contain;
}

.bullet[data-active] {
    background: white;
    transition: .3s;
}

.episode::before {
    top: 0px;
    width: 20px;
    left: 0px;
    height: 20px;
    text-align: center;
    line-height: 20px;
}

[data-active] {
    filter: opacity(1) !important;
}
img.footerIcon {
    height: 25px;
}

.p20+p {
    font-size: 15px;
}

.div.imagePlacer.long::before {
    width: 20px;
    height: 20px;
    top: -15px;
    LINE-HEIGHT: 25PX;
    FONT-SIZE: 17PX;
}

.flex.center {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

img.popupCover {
    width: 100vw !important;
    /* min-height: 100vw; */
    margin-left: -20px;
    max-height: 100vh !important;
    max-width: 600px;
}

.darkPopup{
    background: #101010;
}

.w50 {
    width: 50%;
}

[data-white="true"] {
    background: #F5F5F5;
}

[data-white="true"] {
    color: black;
}

.textContainer {
    position: absolute;
    bottom: 110px;
    width: calc(100%);
    box-sizing: border-box;
    background: linear-gradient(180deg, transparent, #101010 10%, transparent);
    left: 0px;
    padding: 0 10px;
}

[data-white="true"]>.textContainer{
    background: linear-gradient(180deg, transparent, #F5F5F5 10%, transparent);
}

[data-white="true"]>.closeMe{
    filter: opacity(.5);
}


[data-round="true"] {
    border-radius: 50%;
    box-shadow: inset 2px 2px 5px 0px #0000008c;
    object-fit: none;
    object-position: 50% 44%;
}

.noteTab[data-active] {
    background: var(--demi);
}

textarea {
    width: 100%;
    line-height: 20px;
    min-height: 60px;
    background: var(--demi);
    color: white;
    padding: 5px;
    box-sizing: border-box;
    border: none;
}

.sendButton{
    background-color: white;
    color: black !important;
    margin-bottom: 10px;
    margin-top: 10px;
}

a.link::before {
    content: url(/images/icons/leave.svg);
    line-height: 1em;
    vertical-align: middle;
}

div.noteTab {
    display: flex;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0px 10px;
    border-radius: 4px;
}

.noteTab>.micro {
    height: 2em;
    border-radius: 3px;
}


div#map {
    width: 100%;
    height: 290px;
    background: aliceblue;
    margin-bottom: 20px;
}

div#map a,
div#map button,
div.gm-bundled-control div.gmnoprint {
    display: none !important;
}


.map {
    width: 30px;
    height: 30px;
    color: red;
    background: white;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    border: 4px solid var(--bg);
    font-size: 20px;
    font-family: 'Gerbera Regular';
    filter: opacity(0.5);
}

.map:hover{
    filter: opacity(1);
}

#mapButton{
    animation: appear .5s forwards;
    filter: opacity(0);
    position: sticky; 
    top: 0;
    z-index: 10;
    box-shadow: var(--bg) 0px 20px 40px 0px;    
}

@keyframes appear {
    /* 0%{
        filter: opacity(0);
    }
    100%{
        filter: opacity(1);
    } */
}


.cut {
    display: -webkit-box;
    -webkit-line-clamp: 20;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sortBlock>.context::after {
    content: url(/images/icons/sortDown.svg);
}

select {
    line-height: 40px;
    height: 40px;
    background: none;
    color: inherit;
    font-family: inherit;
    border: none;
}

option{
    color: black;
}


[data-white]>div>.white{
    background-color: #282828;
    color: white
}

[data-white]>div>button{
    background-color: white;
    color: #282828
}

.timer[data-golden="true"] {
    border-bottom: 1px solid #FFD705;
}

.timer[data-golden="true"]::after {
    content: attr(data-left);
    position: absolute;
    color: #FFD705;
    font-size: x-small;
    left: 0;
    right: 0;
    bottom: -2.6em;
}


label.flex.left {
    display: flex;
    justify-content: flex-start;
}

label.flex.left>input {
    width: auto;
    margin-right: 10px;
}

[draggable="true"] {
    animation: appear .4s forwards;
    /* transition: 5s; */
    /* transform: rotate(0deg); */
    position: relative;
    background-color: var(--bg);
}

.dragging,
[data-dragging] {
    position: absolute;
    z-index: 1000;
}


.mobileDragger {
    display: none;
    
}

@media (pointer:coarse) {
    .mobileDragger{
        display: block;
        position: absolute;
        background: linear-gradient(180deg, white, white 2px, transparent 2px, transparent 4px, white 4px, white 6px, transparent 6px);
        width: 30px;
        height: 20px;
        top: -10px;
        left: 0px;
        z-index: 10000;
        right: 0;
        margin: 0 auto;
        filter: opacity(0.5);
    }
    .episodeList {
        margin-top: 40px;
        padding-top: 10px;
    }
}


iframe#telegram-login-libolibobot {
    margin: 0 auto;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
}

label>input {
    width: initial;
}



.comment {
    padding: 5px 20px;
    background: var(--demi);
    margin-top: 20px;
    border-radius: 4px;
    /* width: 70%; */
}


.comment:nth-of-type(even) {
    margin-left: 20%;
}

.comment:nth-of-type(odd) {
    margin-right: 20%;
}

[data-type="comment"] {
    font-size: small;
    color: var(--grey);
}

.cutShort{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.noteTab.authorTab {
    line-height: 40px;
}

.noteTab.authorTab>p {
    margin-top: 0px;
    margin-left: 10px;
}

.authorTag {
    padding: 5px 10px;
    background: #282828;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}


img.authorPic {
    text-align: center;
    margin: 0 auto;
    display: block;
    border-radius: 50%;
    width: 64px;
}

.imgContainer {
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.imgContainer::after {
    height: 190px;
    width: 100%;
    content: '';
    display: block;
    background: linear-gradient(0deg, var(--bg) 60px, transparent);
    position: absolute;
    bottom: 0;
}

.customHeader {
    padding-top: 480px;
}


p.errorMessage {
    position: absolute;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    bottom: 10px;
    font-size: small;
}