@import url(/Assets/CSS/ionicons.min.css);
@import url(https://fonts.googleapis.com/css?family=Questrial);
@import url(https://fonts.googleapis.com/css?family=DM+Sans:400,500,700&display=swap);

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    -webkit-text-size-adjust: 100%;
    line-height: 1.15
}

body {
    margin: 0
}

main {
    display: block
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}
.signup-button {
  display: none!important;
}
a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}

:root {
    --toastify-color-light: #fff;
    --toastify-color-dark: #121212;
    --toastify-color-info: #3498db;
    --toastify-color-success: #07bc0c;
    --toastify-color-warning: #f1c40f;
    --toastify-color-error: #e74c3c;
    --toastify-color-transparent: hsla(0, 0%, 100%, .7);
    --toastify-icon-color-info: var(--toastify-color-info);
    --toastify-icon-color-success: var(--toastify-color-success);
    --toastify-icon-color-warning: var(--toastify-color-warning);
    --toastify-icon-color-error: var(--toastify-color-error);
    --toastify-toast-width: 320px;
    --toastify-toast-background: #fff;
    --toastify-toast-min-height: 64px;
    --toastify-toast-max-height: 800px;
    --toastify-font-family: sans-serif;
    --toastify-z-index: 9999;
    --toastify-text-color-light: #757575;
    --toastify-text-color-dark: #fff;
    --toastify-text-color-info: #fff;
    --toastify-text-color-success: #fff;
    --toastify-text-color-warning: #fff;
    --toastify-text-color-error: #fff;
    --toastify-spinner-color: #616161;
    --toastify-spinner-color-empty-area: #e0e0e0;
    --toastify-color-progress-light: linear-gradient(90deg, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
    --toastify-color-progress-dark: #bb86fc;
    --toastify-color-progress-info: var(--toastify-color-info);
    --toastify-color-progress-success: var(--toastify-color-success);
    --toastify-color-progress-warning: var(--toastify-color-warning);
    --toastify-color-progress-error: var(--toastify-color-error)
}

.Toastify__toast-container {
    box-sizing: border-box;
    color: #fff;
    padding: 4px;
    position: fixed;
    -webkit-transform: translateZ(var(--toastify-z-index));
    width: var(--toastify-toast-width);
    z-index: var(--toastify-z-index)
}

.Toastify__toast-container--top-left {
    left: 1em;
    top: 1em
}

.Toastify__toast-container--top-center {
    left: 50%;
    top: 1em;
    transform: translateX(-50%)
}

.Toastify__toast-container--top-right {
    right: 1em;
    top: 1em
}

.Toastify__toast-container--bottom-left {
    bottom: 1em;
    left: 1em
}

.Toastify__toast-container--bottom-center {
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%)
}

.Toastify__toast-container--bottom-right {
    bottom: 1em;
    right: 1em
}

@media only screen and (max-width:480px) {
    .Toastify__toast-container {
        left: 0;
        margin: 0;
        padding: 0;
        width: 100vw
    }

    .Toastify__toast-container--top-center,
    .Toastify__toast-container--top-left,
    .Toastify__toast-container--top-right {
        top: 0;
        transform: translateX(0)
    }

    .Toastify__toast-container--bottom-center,
    .Toastify__toast-container--bottom-left,
    .Toastify__toast-container--bottom-right {
        bottom: 0;
        transform: translateX(0)
    }

    .Toastify__toast-container--rtl {
        left: auto;
        right: 0
    }
}

.Toastify__toast {
    -ms-flex-pack: justify;
    border-radius: 4px;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1), 0 2px 15px 0 rgba(0, 0, 0, .05);
    box-sizing: border-box;
    cursor: pointer;
    direction: ltr;
    display: -ms-flexbox;
    display: flex;
    font-family: var(--toastify-font-family);
    justify-content: space-between;
    margin-bottom: 1rem;
    max-height: var(--toastify-toast-max-height);
    min-height: var(--toastify-toast-min-height);
    overflow: hidden;
    padding: 8px;
    position: relative
}

.Toastify__toast--rtl {
    direction: rtl
}

.Toastify__toast-body {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: auto 0;
    padding: 6px
}

.Toastify__toast-body>div:last-child {
    -ms-flex: 1;
    flex: 1
}

.Toastify__toast-icon {
    -webkit-margin-end: 10px;
    -ms-flex-negative: 0;
    display: -ms-flexbox;
    display: flex;
    flex-shrink: 0;
    margin-inline-end: 10px;
    width: 20px
}

.Toastify--animate {
    animation-duration: .7s;
    animation-fill-mode: both
}

.Toastify--animate-icon {
    animation-duration: .3s;
    animation-fill-mode: both
}

@media only screen and (max-width:480px) {
    .Toastify__toast {
        border-radius: 0;
        margin-bottom: 0
    }
}

.Toastify__toast-theme--dark {
    background: var(--toastify-color-dark);
    color: var(--toastify-text-color-dark)
}

.Toastify__toast-theme--colored.Toastify__toast--default,
.Toastify__toast-theme--light {
    background: var(--toastify-color-light);
    color: var(--toastify-text-color-light)
}

.Toastify__toast-theme--colored.Toastify__toast--info {
    background: var(--toastify-color-info);
    color: var(--toastify-text-color-info)
}

.Toastify__toast-theme--colored.Toastify__toast--success {
    background: var(--toastify-color-success);
    color: var(--toastify-text-color-success)
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
    background: var(--toastify-color-warning);
    color: var(--toastify-text-color-warning)
}

.Toastify__toast-theme--colored.Toastify__toast--error {
    background: var(--toastify-color-error);
    color: var(--toastify-text-color-error)
}

.Toastify__progress-bar-theme--light {
    background: var(--toastify-color-progress-light)
}

.Toastify__progress-bar-theme--dark {
    background: var(--toastify-color-progress-dark)
}

.Toastify__progress-bar--info {
    background: var(--toastify-color-progress-info)
}

.Toastify__progress-bar--success {
    background: var(--toastify-color-progress-success)
}

.Toastify__progress-bar--warning {
    background: var(--toastify-color-progress-warning)
}

.Toastify__progress-bar--error {
    background: var(--toastify-color-progress-error)
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
    background: var(--toastify-color-transparent)
}

.Toastify__close-button {
    -ms-flex-item-align: start;
    align-self: flex-start;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: .7;
    outline: none;
    padding: 0;
    transition: .3s ease
}

.Toastify__close-button--light {
    color: #000;
    opacity: .3
}

.Toastify__close-button>svg {
    fill: currentColor;
    height: 16px;
    width: 14px
}

.Toastify__close-button:focus,
.Toastify__close-button:hover {
    opacity: 1
}

@keyframes Toastify__trackProgress {
    0% {
        transform: scaleX(1)
    }

    to {
        transform: scaleX(0)
    }
}

.Toastify__progress-bar {
    bottom: 0;
    height: 5px;
    left: 0;
    opacity: .7;
    position: absolute;
    transform-origin: left;
    width: 100%;
    z-index: var(--toastify-z-index)
}

.Toastify__progress-bar--animated {
    animation: Toastify__trackProgress linear 1 forwards
}

.Toastify__progress-bar--controlled {
    transition: transform .2s
}

.Toastify__progress-bar--rtl {
    left: auto;
    right: 0;
    transform-origin: right
}

.Toastify__spinner {
    animation: Toastify__spin .65s linear infinite;
    border: 2px solid;
    border-color: var(--toastify-spinner-color-empty-area);
    border-radius: 100%;
    border-right-color: var(--toastify-spinner-color);
    box-sizing: border-box;
    height: 20px;
    width: 20px
}

@keyframes Toastify__bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        transform: translate3d(10px, 0, 0)
    }

    90% {
        transform: translate3d(-5px, 0, 0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes Toastify__bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0)
    }

    75% {
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        transform: translate3d(5px, 0, 0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes Toastify__bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }

    75% {
        transform: translate3d(0, 10px, 0)
    }

    90% {
        transform: translate3d(0, -5px, 0)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes Toastify__bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0)
    }

    75% {
        transform: translate3d(0, -10px, 0)
    }

    90% {
        transform: translate3d(0, 5px, 0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.Toastify__bounce-enter--bottom-left,
.Toastify__bounce-enter--top-left {
    animation-name: Toastify__bounceInLeft
}

.Toastify__bounce-enter--bottom-right,
.Toastify__bounce-enter--top-right {
    animation-name: Toastify__bounceInRight
}

.Toastify__bounce-enter--top-center {
    animation-name: Toastify__bounceInDown
}

.Toastify__bounce-enter--bottom-center {
    animation-name: Toastify__bounceInUp
}

.Toastify__bounce-exit--bottom-left,
.Toastify__bounce-exit--top-left {
    animation-name: Toastify__bounceOutLeft
}

.Toastify__bounce-exit--bottom-right,
.Toastify__bounce-exit--top-right {
    animation-name: Toastify__bounceOutRight
}

.Toastify__bounce-exit--top-center {
    animation-name: Toastify__bounceOutUp
}

.Toastify__bounce-exit--bottom-center {
    animation-name: Toastify__bounceOutDown
}

@keyframes Toastify__zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

@keyframes Toastify__zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

.Toastify__zoom-enter {
    animation-name: Toastify__zoomIn
}

.Toastify__zoom-exit {
    animation-name: Toastify__zoomOut
}

@keyframes Toastify__flipIn {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }

    40% {
        animation-timing-function: ease-in;
        transform: perspective(400px) rotateX(-20deg)
    }

    60% {
        opacity: 1;
        transform: perspective(400px) rotateX(10deg)
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

@keyframes Toastify__flipOut {
    0% {
        transform: perspective(400px)
    }

    30% {
        opacity: 1;
        transform: perspective(400px) rotateX(-20deg)
    }

    to {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }
}

.Toastify__flip-enter {
    animation-name: Toastify__flipIn
}

.Toastify__flip-exit {
    animation-name: Toastify__flipOut
}

@keyframes Toastify__slideInRight {
    0% {
        transform: translate3d(110%, 0, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInLeft {
    0% {
        transform: translate3d(-110%, 0, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInUp {
    0% {
        transform: translate3d(0, 110%, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInDown {
    0% {
        transform: translate3d(0, -110%, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideOutRight {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(110%, 0, 0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutLeft {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(-110%, 0, 0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(0, 500px, 0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(0, -500px, 0);
        visibility: hidden
    }
}

.Toastify__slide-enter--bottom-left,
.Toastify__slide-enter--top-left {
    animation-name: Toastify__slideInLeft
}

.Toastify__slide-enter--bottom-right,
.Toastify__slide-enter--top-right {
    animation-name: Toastify__slideInRight
}

.Toastify__slide-enter--top-center {
    animation-name: Toastify__slideInDown
}

.Toastify__slide-enter--bottom-center {
    animation-name: Toastify__slideInUp
}

.Toastify__slide-exit--bottom-left,
.Toastify__slide-exit--top-left {
    animation-name: Toastify__slideOutLeft
}

.Toastify__slide-exit--bottom-right,
.Toastify__slide-exit--top-right {
    animation-name: Toastify__slideOutRight
}

.Toastify__slide-exit--top-center {
    animation-name: Toastify__slideOutUp
}

.Toastify__slide-exit--bottom-center {
    animation-name: Toastify__slideOutDown
}

@keyframes Toastify__spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.loading-card .poster {
    border-radius: 15px;
    height: 250px
}

.loading-card .poster,
.loading-card .title {
    animation: skeleton-animation .9s ease infinite alternate
}

.loading-card .title {
    height: 1em;
    margin: 10px auto;
    width: 80%
}

.loading-card-grid {
    flex: 0 0 auto;
    margin-right: 20px;
    width: 165px
}

.loading-card-grid .poster {
    border-radius: 15px;
    height: 250px
}

.loading-card-grid .poster,
.loading-card-grid .title {
    animation: skeleton-animation .9s ease infinite alternate
}

.loading-card-grid .title {
    height: 1em;
    margin: 10px auto;
    width: 80%
}

.poster-grid {
    grid-gap: 20px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr))
}

.card-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    overflow-y: hidden
}

.img-with-fb {
    max-width: 100%;
    object-fit: cover
}

.fallback-img {
    align-items: center;
    color: #d3d3d3;
    display: flex;
    flex-direction: column;
    font-size: 2em;
    height: 100%;
    justify-content: center
}

.fallback-img .no-img-text {
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 10px
}

.poster-card {
    display: block
}

.poster-card .box-shadow {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .3)
}

.poster-card .poster {
    border-radius: 15px;
    transition: all .2s ease;
    width: 100%
}

.poster-card .overlay-text {
    display: inline-block;
    position: relative
}

.poster-card .overlay-text-rating {
    backdrop-filter: blur(16px) saturate(180%);
    background: rgb(255 0 0);
    border-radius: 6px;
    bottom: 15px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 8px;
    position: absolute;
    right: 8px
}

.poster-card .poster.fallback-img {
    height: 80%
}

.poster-card .poster:hover {
    --webkit-filter: blur(4px);
    filter: blur(.5px);
    opacity: .7;
    outline: var(--outline-img) auto 1px;
    transform: scale(1.1);
    transition: all .4s ease
}

.poster-card .title {
    font-size: 1em;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.poster-card .meta {
    color: #6c757d;
    display: block;
    font-size: .9em;
    height: 50px;
    overflow: hidden
}

.poster-card .dot {
    background: #5e5e5e;
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 3px;
    margin: 0 5px;
    vertical-align: 2px;
    width: 3px
}

.poster-card .type {
    border: 1px solid #868e96;
    border-radius: 3px;
    display: inline-block;
    float: right;
    font-size: .8em;
    font-style: normal;
    padding: 0 3px
}

.leftbutton {
    left: calc(var(--container-padding)*-1 + 10px)
}

.leftbutton,
.rightbutton {
    bottom: 0;
    position: absolute;
    top: 0
}

.rightbutton {
    right: calc(var(--container-padding)*-1 + 10px)
}

.outer-div {
    position: relative
}

.scrolling-wrapper-flexbox {
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: none
}

.scrolling-wrapper-flexbox::-webkit-scrollbar {
    display: none
}

.scrolling-wrapper-flexbox .card {
    flex: 0 0 auto;
    margin-right: 20px;
    margin-top: 20px;
    width: 145px
}

.scrolling-wrapper-flexbox .card1 {
    flex: 0 0 auto;
    margin-right: 20px;
    margin-top: 20px;
    width: 160px
}

.scroll-button {
    font-size: 25px;
    outline: none;
    transition: opacity .3s;
    z-index: 10
}

.scroll-button.hidden {
    opacity: 0
}

.scroll-button svg {
    border-radius: 50%;
    cursor: pointer;
    height: 30px;
    width: 30px
}

#homepage .home {
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 20px
}

#homepage .main-blogs {
    align-items: center;
    display: none !important;
}

#homepage .buttongg {
    background: rgb(255 3 138);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    margin-left: 3px;
    padding: 3px 8px
}
#homepage .buttongg1 {
    background: #229ED9;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    margin-left: 3px;
    /**box-shadow: 0px 1px 6px 1px #f0f0f0;**/
    padding: 3px 8px
    
}

#homepage .main-blog__author .tips {
    align-items: flex-start;
    flex-direction: column-reverse
}

#homepage .main-blog__title1 {
    max-width: 12ch
}

#homepage .main-blog__title,
#homepage .main-blog__title1 {
    color: #fff;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 30px
}

#homepage .main-blog__title {
    max-width: 20ch
}

#homepage .main-blog {
    align-self: stretch;
    background-blend-mode: overlay;
    background-color: rgba(71, 174, 255, .75);
    background-image: url(https://i.ibb.co/mrnj1cS/img3.webp);
    background-position-x: 95%;
    background-position-y: 100%;
    background-repeat: no-repeat;
    -webkit-background-size: 18%;
    -moz-background-size: 18%;
    -o-background-size: 18%;
    background-size: 18%;
    border-radius: 20px;
    box-shadow: 0 6px 30px -10px #4a74c9;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 30px;
    position: relative;
    transition: background .3s;
    width: 100%
}

#homepage .main-blog+.main-blog {
    background-image: url(https://i.ibb.co/1MGcHrB/img1.webp);
    background-position-x: 90%;
    background-position-y: 100%;
    background-size: 45%;
    margin-left: 20px;
    width: 40%
}

#homepage .main-blog__author {
    align-items: center;
    display: flex;
    padding-bottom: 10px
}

#homepage .author-detail {
    margin-left: 0
}

#homepage .auth-detail {
    margin-left: 10px
}

#homepage .main-blog1 {
    align-self: stretch;
    background-blend-mode: overlay;
    background-color: rgba(71, 174, 255, .75);
    background-image: url(https://i.ibb.co/LvNXhbF/avatar.webp);
    background-position-x: 96%;
    background-repeat: no-repeat;
    -webkit-background-size: 27%;
    -moz-background-size: 27%;
    -o-background-size: 27%;
    background-size: 27%;
    border-radius: 20px;
    box-shadow: 0 6px 30px -10px #4a74c9;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 30px;
    position: relative;
    transition: background .3s;
    width: 100%
}

#homepage .main-blog1+.main-blog1 {
    background-image: url(https://i.ibb.co/LvNXhbF/avatar.webp);
    margin-left: 20px;
    width: 65%
}

#homepage .main-blog+.main-blog .author-img {
    border-color: hsla(0, 0%, 100%, .75);
    margin-top: 14px
}

#homepage .main-blog+.main-blog .author-img__wrapper svg {
    border-color: #ffe6b2;
    color: #e7bb7d
}

@media screen and (max-width:1290.98px) {
    #homepage .main-blogs {
        -webkit-overflow-scrolling: touch;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        scrollbar-width: none
    }

    #homepage .main-blog {
        background-blend-mode: overlay;
        background-position-x: 90%;
        background-size: 20%;
        flex: 0 0 auto;
        height: 250px
    }

    #homepage .main-blog1 {
        background-blend-mode: overlay;
        background-position-x: 96%;
        background-size: 66%
    }
}

#homepage .main-blogs::-webkit-scrollbar {
    display: none
}

@media screen and (max-width:575.98px) {
    #homepage .author-info {
        margin-bottom: 10px
    }

    #homepage .main-blog+.main-blog {
        width: 100%
    }

    #homepage .main-blog {
        background-blend-mode: overlay;
        background-position-x: 100%;
        background-size: 30%;
        flex: 0 0 auto;
        height: 250px
    }

    #homepage .main-blog1 {
        background-blend-mode: overlay;
        background-position-x: 96%;
        background-size: 66%
    }
}

#homepage .main-blog__time {
    right: 20px
}

#homepage .main-blog__time,
#homepage .main-blog__time1 {
    bottom: 20px;
    display: inline-flex;
    position: absolute
}

#homepage .author-img {
    border: 1px solid hsla(0, 0%, 100%, .75);
    border-radius: 50%;
    height: 52px;
    -o-object-fit: cover;
    object-fit: cover;
    padding: 4px;
    width: 52px
}

#homepage .author-img__wrapper {
    flex-shrink: 0;
    position: relative
}

#homepage .author-img__wrapper svg {
    background-color: #fff;
    border: 2px solid #0daabc;
    border-radius: 50%;
    bottom: 5px;
    color: #0daabc;
    padding: 2px;
    position: absolute;
    right: 0;
    width: 16px
}

#homepage .author-name {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px
}

#homepage .author-info {
    color: #fff;
    font-size: 13px;
    font-weight: 400
}

#homepage .seperate {
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    height: 3px;
    margin: 0 6px;
    vertical-align: middle;
    width: 3px
}

.featured-app {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: var(--featured-video-bg);
    border: 1px solid rgba(209, 213, 219, .3);
    border-radius: 12px;
    bottom: 0;
    color: #111;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    left: 0;
    margin-bottom: 10px;
    margin-left: 35px;
    margin-right: 35px;
    padding: 15px;
    position: fixed;
    right: 0;
    top: auto;
    z-index: 10000
}

.featured-app img {
    width: 15%
}

@media(min-width:1024px) {
    .featured-app {
        left: 75%;
        transform: translateX(-50%);
        width: 40%
    }

    .featured-app img {
        width: 60px
    }

    .app__title {
        font-size: 30px
    }
}

@media(max-width:480px) {
    .app__title {
        font-size: 11px !important
    }
}

.app__icon {
    border-radius: 7px;
    display: inline-block;
    margin-right: 5px;
    max-width: 100%;
    vertical-align: middle
}

.div-block-57 {
    color: var(--font-color);
    margin-left: 2px;
    padding-left: 20px;
    width: 100%
}

.app__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 13px;
    margin-bottom: 0;
    text-overflow: ellipsis;
    white-space: nowrap
}

.app__tagline {
    font-size: 15px;
    line-height: 1.3em;
    margin-top: 6px;
    opacity: .65
}

.product-button {
    border-radius: 20px;
    cursor: pointer;
    font-size: 4px;
    font-weight: 500;
    margin-left: 10px;
    min-width: 60px;
    padding: 5px 12px;
    position: absolute;
    right: -10px;
    text-align: center;
    text-transform: uppercase;
    top: 10px
}

.product-button svg {
    color: var(--font-color)
}

@media(max-width:575px) {
    .featured-app {
        margin-left: 6px;
        margin-right: 10px
    }

    .app__icon {
        border-radius: 7px;
        margin-right: 0
    }

    .app__tagline {
        font-size: 12px;
        line-height: .3em
    }
}

body.dark-mode .featured-app {
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: var(--featured-video-bg);
    border: 1px solid hsla(0, 0%, 100%, .125);
    border-radius: 12px
}

.error-text {
    font-size: 20px;
    height: 50vh
}

.error-text,
main {
    display: flex;
    justify-content: center
}

main {
    align-items: center;
    flex-direction: column;
    font-family: Merriweather Sans, sans-serif;
    width: 100vw
}

main #errorText {
    font-size: 22px;
    margin: 14px 0
}

main #errorLink {
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 3px 6px 0 rgb(0 0 0/10%), 0 1px 3px 0 rgb(0 0 0/8%);
    color: #000;
    font-size: 20px;
    padding: 12px;
    text-decoration: none;
    transition: all .5s ease-in-out
}

main #errorLink:active,
main #errorLink:hover {
    background: hsla(0, 0%, 100%, .1);
    color: #fff
}

main #g6219 {
    -webkit-animation: an1 12s ease-out .5s infinite;
    animation: an1 12s ease-out .5s infinite;
    transform-origin: 85px 4px
}

#searchpage .info {
    font-size: 14px;
    opacity: .5
}

#searchpage h1 {
    margin-top: 0
}

#sidebar .sidebar-link svg {
    cursor: pointer;
    transition: .2s
}

#sidebar .sidebar-link:hover svg {
    background: var(--tab-bg);
    box-shadow: 0 3px 6px 0 rgb(0 0 0/10%), 0 1px 3px 0 rgb(0 0 0/8%);
    color: var(--tab-color)
}

#sidebar .sidebar-link.is-active svg {
    background: var(--tab-bg);
    box-shadow: 0 3px 6px 0 rgb(0 0 0/10%), 0 1px 3px 0 rgb(0 0 0/8%);
    color: var(--tab-color)
}

#sidebar .sidebar-link.is-active,
#sidebar .sidebar-link:hover {
    color: var(--font-color);
    font-weight: 600
}

html {
    --bg: #1d1f20;
    --switcher-bg: #232527;
    --shadow-color: #000000b0;
    --color-text: #777;
    --color-text-active: #7489ff;
    --color-arrow: #88888852
}

html[data-theme=light-mode] {
    --bg: #fcfcfc;
    --switcher-bg: #fff;
    --shadow-color: #00000044;
    --color-text: #88888895;
    --color-text-active: #7489ff;
    --color-arrow: #656565
}

body.dark-light svg {
    fill: transparent;
    cursor: pointer;
    margin-right: 8px;
    transition: .5s;
    width: 22px
}

body.dark-mode body.dark-light svg {
    fill: #ffce45;
    stroke: #ffce45;
    width: 25px
}

.container-darkmode {
    align-items: center;
    display: flex;
    justify-content: center
}

.switcher {
    cursor: pointer;
    user-select: none
}

.switcher input[type=checkbox] {
    display: none;
    height: 0;
    width: 0
}

.switcher input[type=checkbox]+div>i {
    transition: all .4s cubic-bezier(.995, -.265, .855, .505)
}

.switcher input[type=checkbox]:checked+div .arrow {
    transform: rotate(-180deg)
}

.switcher input[type=checkbox]:checked+div>:first-child {
    fill: #ffce45;
    stroke: #ffce45
}

.switcher input[type=checkbox]:not(:checked)+div>:last-child {
    color: var(--color-text-active)
}

.cnAjFT {
    background: #3994ff;
    border: initial none;
    border-color: initial;
    border-image: initial;
    border-radius: 8px;
    box-sizing: border-box;
    color: #f2f4fb;
    cursor: pointer;
    font-family: proxima-nova, sans-serif;
    font-size: 10px;
    line-height: 22px;
    min-height: 38px;
    outline: none;
    padding-inline-end: 16px;
    padding-inline-start: 16px;
    position: relative;
    text-decoration: none;
    transition: background-color .15s ease-out 0s, color, opacity, border;
    user-select: none
}

.dBJWmB {
    left: 50%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: translateX(-50%)
}

.dBJWmB,
.eXyiay {
    transition: opacity .15s ease-out 0s
}

.eXyiay {
    -webkit-box-align: center;
    -webkit-box-pack: center;
    align-items: center;
    display: flex;
    justify-content: center
}

.login-btn {
    background: #fff;
    border: 1px solid #d6d6d6;
    color: var(--text-color);
    padding-bottom: 2px;
    padding-right: 0;
    padding-top: 2px
}

.login-btn:active {
    background: #ccc;
    color: #000
}

.login-btn:hover {
    opacity: .6
}

.signup-button {
    align-self: center;
    text-decoration: underline
}

.login-bars {
    grid-gap: 5px;
    display: grid;
    grid-template-columns: minmax(100px, 150px) minmax(100px, 150px) 35px 20px;
    grid-template-rows: 30px
}

.password-div {
    position: relative
}

.g-sign-in-button {
    background-color: var(--icon-bgcolor);
    border-radius: .5rem;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .25);
    color: var(--body-color);
    display: none; /*inline-block;*/
    height: 50px;
    margin: 10px;
    transition: background-color .218s, border-color .218s, box-shadow .218s;
    width: 240px
}

.g-sign-in-button:active {
    background-color: var(--icon-bgcolor);
    transition: background-color .2s
}

.g-sign-in-button .content-wrapper {
    border: 1px solid transparent;
    height: 100%;
    width: 100%
}

.g-sign-in-button img {
    height: 18px;
    width: 18px
}

.g-sign-in-button .logo-wrapper {
    border-radius: 1px;
    display: inline-block;
    height: 100%;
    padding: 15px;
    width: 48px
}

.g-sign-in-button .text-container {
    border: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .21px;
    line-height: 48px;
    text-align: center;
    vertical-align: top;
    width: 180px
}

.password-input {
    height: 100%;
    width: 100%
}

.forgot-password {
    font-size: 12px
}

.login-btn-mobile {
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center
}

.login-barsMobile #email-bar,
.login-barsMobile #pass-bar {
    width: 100%
}

.signup-btn-mobile {
    text-align: center
}

.user-settings {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
    padding-left: 15px
}

.user-settings svg {
    background-color: var(--icon-bgcolor);
    border-radius: 10px;
    box-shadow: var(--default-box-shadow);
    color: var(--body-color);
    flex-shrink: 0;
    margin-right: 16px;
    padding: 8px;
    transition: box-shadow .15s ease;
    width: 30px
}

@media screen and (max-width:575px) {
    .user-settings svg {
        display: block
    }
}

.user-img {
    border-radius: 50%;
    flex-shrink: 0;
    height: 30px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 30px
}

.user-name {
    font-size: 14px;
    margin: 0 6px 0 12px
}

@media screen and (max-width:575px) {
    .user-name {
        display: none
    }
}

#sidebar {
    align-items: center;
    border-right: 1px solid var(--border-color);
    bottom: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: env(safe-area-inset-top) 0 0 env(safe-area-inset-left);
    position: fixed;
    top: 0;
    transition-duration: .2s;
    z-index: 9999
}

#sidebar .notif {
    font-size: 10px;
    font-weight: 100
}

#sidebar .sidebar {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 30px;
    transition-duration: .2s
}

#sidebar .sidebar-content {
    transition-duration: .2s;
    width: 230px
}

#sidebar .sidebar-content.is-active {
    width: 85px
}

#sidebar .sidebar-content.is-active .logo-expand,
#sidebar .sidebar-content.is-active .notif,
#sidebar .sidebar-content.is-active .side-text,
#sidebar .sidebar-content.is-active .side-title {
    display: none
}

#sidebar .sidebar-content.is-active .logo {
    display: flex
}

#sidebar .sidebar-content.is-active .side-wrapper {
    width: 30px
}

#sidebar .sidebar-content.is-active .side-menu svg {
    margin-right: 30px
}

#sidebar .sidebar .logo {
    align-items: center;
    display: none;
    flex-shrink: 0;
    height: 30px;
    justify-content: center;
    width: 30px
}

#sidebar .sidebar .logo-expand {
    font-size: 19px;
    font-weight: 600;
    line-height: 34px;
    position: -webkit-sticky;
    position: sticky;
    text-decoration: none;
    top: 0
}

#sidebar .logo-expand svg {
    color: var(--body-color);
    position: absolute;
    right: -5px;
    top: -15px;
    width: 15px
}

#sidebar .sidebar .logo-expand:before {
    content: "";
    height: 70px;
    left: 0;
    position: absolute;
    top: -30px;
    width: 200px;
    z-index: -1
}

@-webkit-keyframes bottom {
    0% {
        opacity: 0;
        transform: translateY(100px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes bottom {
    0% {
        opacity: 0;
        transform: translateY(100px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

#sidebar .side-menu {
    display: flex;
    flex-direction: column
}

#sidebar .side-menu a {
    align-items: center;
    color: #808191;
    display: flex;
    text-decoration: none
}

#sidebar .side-menu a+a {
    margin-top: 26px
}

#sidebar .side-menu svg {
    background-color: var(--icon-bgcolor);
    border-radius: 10px;
    box-shadow: 0 3px 6px 0 rgb(0 0 0/10%), 0 1px 3px 0 rgb(0 0 0/8%);
    color: var(--body-color);
    flex-shrink: 0;
    margin-right: 16px;
    padding: 8px;
    transition: box-shadow .15s ease;
    width: 30px
}

#sidebar .side-menu title:hover {
    color: var(--font-color);
    font-weight: 600
}

#sidebar .side-menu a:hover {
    color: var(--font-color)
}

#sidebar .side-title {
    font-size: 12px;
    letter-spacing: .07em;
    margin-bottom: 24px
}

#sidebar .side-wrapper {
    border-bottom: 1px solid var(--border-color);
    padding: 36px 0;
    width: 145px
}

#sidebar .side-wrapper+.side-wrapper+.side-wrapper {
    border-bottom: none
}

::-moz-placeholder {
    color: var(--placeholder-color)
}

:-ms-input-placeholder {
    color: var(--placeholder-color)
}

::placeholder {
    color: var(--placeholder-color)
}

.search-menu {
    align-items: center;
    border-radius: 8px;
    display: flex;
    flex-shrink: 0;
    white-space: nowrap;
    width: 100%
}

.search-bar {
    display: flex;
    height: 34px;
    max-width: 450px;
    width: 100%
}

.search-bar input {
    background-color: var(--search-button-bg);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56.966 56.966' fill='%23717790c7'%3E%3Cpath d='M55.146 51.887 41.588 37.786A22.926 22.926 0 0 0 46.984 23c0-12.682-10.318-23-23-23s-23 10.318-23 23 10.318 23 23 23c4.761 0 9.298-1.436 13.177-4.162l13.661 14.208c.571.593 1.339.92 2.162.92.779 0 1.518-.297 2.079-.837a3.004 3.004 0 0 0 .083-4.242zM23.984 6c9.374 0 17 7.626 17 17s-7.626 17-17 17-17-7.626-17-17 7.626-17 17-17z'/%3E%3C/svg%3E");
    background-position: 96%;
    background-repeat: no-repeat;
    background-size: 14px;
    border: none;
    border-radius: 8px;
    box-shadow: var(--default-box-shadow);
    color: var(--placeholder-color);
    font-size: 14px;
    font-weight: 500;
    height: 100%;
    outline: 0;
    padding: 0 40px 0 16px;
    transition: box-shadow .15s ease;
    width: 100%
}

.searchbar {
    display: grid;
    grid-template-columns: 50%;
    width: 100%
}

.app-header {
    align-items: center;
    background-color: #e5ecef;
    display: flex;
    flex-shrink: 0;
    height: 60px;
    justify-content: space-between;
    padding: env(safe-area-inset-top) 0 0 env(safe-area-inset-left);
    position: sticky;
    position: -webkit-sticky;
    right: 0;
    top: 0;
    transition: all .3s;
    transition: box-shadow .3s;
    z-index: 99
}

#app-header-desktop {
    grid-gap: 40px;
    grid-template-columns: minmax(100px, 500px) auto;
    padding: 42px
}

#app-header-desktop #user-info {
    grid-gap: 20px;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: 30px
}

#app-header-desktop #user-info .user-img {
    border-radius: 50%;
    height: 40px;
    overflow: hidden;
    width: 40px
}

#app-header-mobile {
    grid-gap: 15px;
    grid-template-columns: auto 1fr auto auto;
    height: 65px;
    padding: 10px 15px
}

#app-header-mobile .searchbar {
    display: grid;
    grid-template-columns: auto;
    width: 100%
}

#app-header-mobile #search-hide svg {
    width: 38px
}

#app-header-mobile #header-search-btn svg,
#app-header-mobile #toggle-btn svg {
    width: 25px
}

#app-header-mobile>button {
    color: inherit;
    font-size: 20px;
    text-align: center;
    width: 35px
}

#app-header-mobile #header-title {
    font-weight: 800;
    padding: 6px 0 6px 50px;
    text-align: center
}

.loginModal {
    color: var(--text-color)
}

.header-wrapper {
    height: 0;
    overflow: visible;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 99
}

.header-wrapper.active,
.header-wrapper.default {
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    height: auto
}

.header-wrapper.active {
    box-shadow: 0 4px 20px rgba(88, 99, 148, .17)
}

.header-wrapper.dark .app-header {
    -webkit-backdrop-filter: none;
    background: none;
    color: #fff
}

#banner {
    height: 80vh;
    position: relative
}

#banner img {
    height: 100%;
    object-fit: cover;
    object-position: 50% 0;
    width: 100%
}

#banner .curve-edge {
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
    bottom: -10px;
    height: 40px;
    left: 0;
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 1
}

#banner .gradient {
    background: -moz-linear-gradient(top, rgba(125, 185, 232, 0) 0, #151728 100%);
    background: -webkit-linear-gradient(top, rgba(125, 185, 232, 0), #151728);
    background: linear-gradient(180deg, rgba(125, 185, 232, 0) 0, #151728);
    bottom: 0;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#007db9e8", endColorstr="#151728", GradientType=0);
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

@media(min-width:320px)and (max-width:480px) {
    #banner {
        height: 60vh
    }
}

.like1.red {
    background-color: #4784ff;
    box-shadow: 0 6px 30px -10px #4a74c9
}

.like1.red:active {
    background: #004ae0;
    color: #fff
}

.like1.red:disabled {
    background: #4784ff;
    box-shadow: 0 6px 30px -10px #4784ff;
    cursor: not-allowed
}

.like1 {
    align-items: center;
    background-color: var(--button-bg);
    border: 0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(50, 50, 93, .15), 0 1px 0 rgba(0, 0, 0, .02);
    color: #fff;
    cursor: pointer;
    display: flex;
    font-family: var(--body-font);
    font-size: 14px;
    padding: 11px 16px
}

.like1 svg {
    flex-shrink: 0;
    margin-right: 2px;
    padding: 0;
    width: 15px
}

.like+.like1 {
    margin-left: 5px
}

.modals {
    background: var(--theme-bg);
    border-radius: 10px;
    left: 50%;
    min-width: 300px;
    padding: 30px 20px 20px;
    position: fixed;
    top: 50%;
    transition: all .4s;
    z-index: 50000
}

.modals.open {
    transform: translate(-50%, -70%)
}

.modals.closed {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 100%)
}

.modal-underlay {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: #000;
    bottom: 0;
    display: inherit;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity .4s;
    z-index: 49999
}

.modal-underlay.open {
    opacity: .5;
    pointer-events: inherit
}

.modal-underlay.closed {
    opacity: 0;
    pointer-events: none
}

.primary-btn {
    background-color: var(--default-color);
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 10px 35px
}

.primary-btn:active {
    background: #004ae0;
    color: #fff
}

.primary-btn:disabled {
    background: rgba(71, 132, 255, .3);
    cursor: not-allowed
}

.listpicker-modal-modal h1 {
    font-size: 30px;
    margin: 0;
    padding-left: 10px;
    text-align: center
}

.listpicker-modal-modal .trash-icon-button {
    position: relative
}

.listpicker-modal-modal .trash-icon-button button {
    left: 10px;
    position: absolute;
    top: 5px
}

.listpicker-modal-modal form {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    text-align: center
}

.listpicker-modal-modal form input {
    margin-bottom: 10px
}

.listpicker-modal-modal .buttons {
    text-align: center;
    width: 100%
}

.listpicker-modal-modal .buttons .cancel-btn {
    color: rgba(var(--text-color), .3);
    margin-right: 10px;
    padding: 0 20px;
    text-align: center
}

.like {
    align-items: center;
    background-color: #fd7e14;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 6px 30px -10px #fd7e14;
    color: var(--genre-font-color);
    cursor: pointer;
    display: flex;
    font-size: 14px;
    padding: 11px 16px
}

.like svg {
    flex-shrink: 0;
    margin-right: 4px;
    padding: 0;
    width: 15px
}

.play-buttons {
    display: inline-block;
    position: relative
}

.play-button svg {
    margin-left: 6px;
    width: 25px
}

.button-wrapper {
    align-items: center;
    display: flex
}

.play-button-container {
    -webkit-box-align: center;
    -webkit-box-pack: center;
    align-items: center;
    background: -webkit-linear-gradient(330deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, .2));
    background: linear-gradient(120deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, .2));
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    box-shadow: 0 24px 72px 0 rgba(0, 0, 0, .5);
    display: -webkit-box;
    display: flex;
    height: 80px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    width: 80px;
    z-index: 50005
}

.play-button-container:before {
    -webkit-box-align: center;
    -webkit-box-pack: center;
    align-items: center;
    animation: pulse-border 1.5s ease-out infinite;
    background: -webkit-linear-gradient(330deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, .2));
    background: linear-gradient(120deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, .2));
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    box-shadow: 0 24px 72px 0 rgba(0, 0, 0, .5);
    content: "";
    display: -webkit-box;
    display: flex;
    height: 80px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    width: 80px
}

@keyframes pulse-border {
    0% {
        opacity: 1;
        transform: translate3d(-50%, -50%, 0) scale(1)
    }

    to {
        opacity: 0;
        transform: translate3d(-50%, -50%, 0) scale(1.5)
    }
}

.play-button-container:hover {
    cursor: pointer
}

.play-button-container:hover .play-button {
    -webkit-transform: scale(1.16);
    transform: scale(1.16)
}

.play-button-container .play-button {
    -webkit-box-align: center;
    -webkit-box-pack: center;
    align-items: center;
    background: #49e24b;
    border-radius: 100%;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .3);
    display: -webkit-box;
    display: flex;
    height: 60px;
    justify-content: center;
    opacity: .8;
    -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    width: 60px;
    z-index: 50004
}

.gooey {
    height: 40px;
    left: 50%;
    margin: -20px 0 0 -71px;
    position: absolute;
    top: 50%;
    width: 142px;
    z-index: 50008
}

.gooey .dot {
    animation: dot 2.8s infinite;
    background: gold;
    box-shadow: 0 6px 30px -10px gold;
    border-radius: 50%;
    height: 16px;
    left: 15px;
    position: absolute;
    top: 12px;
    transform: translateX(0);
    width: 16px
}

.gooey .dots {
    animation: dots 2.8s infinite;
    margin-left: 31px;
    margin-top: 12px;
    transform: translateX(0)
}

.gooey .dots span {
    box-shadow: 0 6px 30px -10px gold;
    background: #49e24b;
    border-radius: 50%;
    display: block;
    float: left;
    height: 16px;
    margin-left: 16px;
    width: 16px
}

@-moz-keyframes dot {
    50% {
        transform: translateX(96px)
    }
}

@-webkit-keyframes dot {
    50% {
        transform: translateX(96px)
    }
}

@-o-keyframes dot {
    50% {
        transform: translateX(96px)
    }
}

@keyframes dot {
    50% {
        transform: translateX(96px)
    }
}

@-moz-keyframes dots {
    50% {
        transform: translateX(-31px)
    }
}

@-webkit-keyframes dots {
    50% {
        transform: translateX(-31px)
    }
}

@-o-keyframes dots {
    50% {
        transform: translateX(-31px)
    }
}

@keyframes dots {
    50% {
        transform: translateX(-31px)
    }
}

.lds-ripple {
    display: inline-block;
    height: 80px;
    position: relative;
    width: 80px
}

.lds-ripple div {
    animation: lds-ripple 1s cubic-bezier(0, .2, .8, 1) infinite;
    border: 4px solid #fff;
    border-radius: 50%;
    opacity: 1;
    position: absolute
}

.lds-ripple div:nth-child(2) {
    animation-delay: -.5s
}

@keyframes lds-ripple {
    0% {
        height: 0;
        left: 36px;
        opacity: 1;
        top: 36px;
        width: 0
    }

    to {
        height: 72px;
        left: 0;
        opacity: 0;
        top: 0;
        width: 72px
    }
}

.homepage_cad {
    bottom: 10px;
    display: none;
    left: 10px;
    position: fixed;
    right: 10px;
    top: 10px;
    z-index: 49999
}

.carbon-cad_close-btn {
    color: #b1b0b5;
    font-size: 10px;
    left: 50%;
    position: absolute;
    top: -5px;
    transform: translate(-50%)
}

.skipad {
    background-color: #2191fb;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    text-transform: lowercase
}

.carbon-cad {
    border-radius: 0;
    display: block;
    height: 100%;
    max-width: none;
    position: relative;
    width: 100%
}

#sticky-cad,
.carbon-cad {
    background: var(--icon-bgcolor);
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none
}

.carbon-cad,
.floating-cad {
    box-shadow: 0 0 0 1px rgb(0 0 0/11%), 0 10px 10px -5px rgb(0 0 0/5%)
}

.details-title {
    grid-gap: 30px;
    align-items: flex-end;
    display: grid;
    grid-template-columns: auto 1fr;
    margin-bottom: 25px;
    padding: 0 var(--container-padding)
}

.details-title .poster {
    background: transparent;
    border-radius: 30px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .3);
    height: 285px;
    margin-top: -140px;
    min-height: 285px;
    width: 190px;
    z-index: 9
}

@media screen and (max-width:650px) {
    .details-title .video-p-wrapper .button-wrapper {
        margin: 20px auto 0
    }

    .details-title .video-p-wrapper .video-p-detail {
        display: flex;
        flex-direction: column
    }
}

.details-title .video-p-sub {
    color: #808191;
    font-size: 12px
}

.details-title .video-p-sub .video-p-data {
    display: inline-flex;
    margin-left: 3px;
    margin-top: 3px
}

.details-title .video-p-title {
    font-size: 24px;
    line-height: 1.4em;
    margin: 16px 0 20px
}

.details-title .video-p-name {
    margin-bottom: 10px
}

.details-title .video-p-name .video-p-genre {
    background-color: var(--genre-bg-color);
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
    cursor: pointer;
    display: inline-flex;
    font-size: 10px;
    margin-left: 3px;
    margin-top: 3px;
    padding: 7px 10px
}

.details-title .text .title {
    font-size: 40px;
    font-weight: 700;
    margin: 5px 0;
    white-space: pre-wrap
}

.details-title .text .rating {
    font-size: 36px
}

.details-title .text .rating .star-icon {
    color: #ffde4d
}

.details-title .text .info {
    font-size: 14px;
    margin-bottom: 20px
}

.details-title .text .bottom {
    align-content: center;
    display: flex
}

.movie-info {
    padding: 0 var(--container-padding)
}

.movie-info .cast {
    border-radius: 15px;
    min-height: 195px;
    object-fit: cover;
    width: 100%
}

.movie-info .cast:hover {
    opacity: .7;
    transform: scale(1.1);
    transition: all .4s ease
}

.movie-info .name-border {
    font-weight: 800;
    padding-right: 20px
}

.movie-info .name-border-hidden {
    color: #808191;
    font-size: 14px;
    font-weight: 200
}

.movie-info h2 {
    font-size: 18px;
    font-weight: 500;
    padding-top: 10px
}

.movie-info .no-poster {
    align-items: center;
    background: #eee;
    border-radius: 4px;
    color: #d3d3d3;
    display: flex !important;
    font-size: 2em;
    height: 225px;
    justify-content: center;
    margin-right: 20px;
    text-align: center;
    width: 150px
}

.movie-info .bot-padding {
    padding-bottom: 100px
}

.movie-info .embed-container {
    border-radius: 30px;
    height: 0;
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative
}

.movie-info .embed-container embed,
.movie-info .embed-container iframe,
.movie-info .embed-container object {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.loading-details-page #banner,
.loading-details-page .details-title .bottom,
.loading-details-page .details-title .info,
.loading-details-page .details-title .poster,
.loading-details-page .details-title .title {
    animation: skeleton-animation .9s ease infinite alternate
}

.loading-details-page .details-title .bottom,
.loading-details-page .details-title .info,
.loading-details-page .details-title .title {
    height: 1em
}

.loading-details-page .details-title .title {
    width: 80%
}

.loading-details-page .details-title .bottom {
    height: 2em;
    width: 100px
}

.no-poster3 {
    align-items: center;
    background: #4784ff;
    display: flex !important;
    font-size: 2em;
    height: 100% !important;
    justify-content: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
    min-height: 195px;
    text-align: center;
    width: 100% !important
}

.actor-presentation {
    grid-gap: 30px;
    display: grid;
    grid-template-columns: auto 1fr;
    margin-bottom: 50px;
    margin-top: 30px;
    padding: 0 var(--container-padding)
}

.actor-presentation .poster {
    border: 2px solid #f8f9fa;
    border-radius: 6px;
    width: 250px;
    z-index: 9
}

.actor-presentation h1 {
    margin-top: 0
}

.actor-presentation .actor-facts h2 {
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 0
}

.actor-presentation .main-info h2 {
    font-weight: 700
}

.actor-presentation p {
    margin-bottom: 20px;
    margin-top: 0
}

.actor-presentation a {
    margin-right: 5px;
    text-decoration: underline
}

.actor-presentation .personal {
    font-size: 1.3em;
    margin-bottom: 30px;
    margin-top: 30px
}

.loading-text {
    animation: skeleton-animation .9s ease infinite alternate;
    display: inline-block;
    height: 1em;
    margin-right: 7px
}

.loading-text.word {
    width: 3ch
}

.loading-text.short {
    width: 10ch
}

.loading-text.long {
    max-width: 70%;
    width: 15ch
}

.loading-text.half {
    width: calc(50% - 7px)
}

.loading-text.xl {
    width: calc(80% - 7px)
}

.loading-actor-page .poster {
    animation: skeleton-animation .9s ease infinite alternate;
    height: 295px
}

.loading-actor-page .personal {
    font-size: 30px
}

.tabs {
    line-height: 2;
    margin: -20px 0 10px
}

.tabs ul {
    display: inline-block;
    list-style-type: none;
    padding: 0
}

.tabs ul li {
    display: inline-block;
    margin-right: 4px;
    margin-top: 4px
}

.tabs ul li:last-child {
    margin-right: 0
}

.tabs .tab-link {
    background-color: var(--icon-bgcolor);
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
    color: inherit;
    cursor: pointer;
    font-size: 20px;
    font-size: 12px;
    padding: 8px 10px;
    width: 100%
}

.tabs .tab-link.active {
    background-color: var(--tab-bg);
    color: var(--tab-color);
    font-weight: 700
}

.list-delete-btn {
    color: red;
    font-size: 20px;
    padding: 10px 5px 10px 15px
}

.list-delete-btn:active {
    color: #900
}

.loading-table-list-row .poster-name {
    align-items: center;
    display: flex
}

.loading-table-list-row .poster {
    animation: skeleton-animation .9s ease infinite alternate;
    height: 75px
}

.watch-list-table {
    border-collapse: collapse;
    overflow-x: scroll;
    width: 100%
}

.watch-list-table thead {
    border-bottom: 2px solid #ededed
}

.watch-list-table thead .delete-text {
    color: red
}

.watch-list-table thead .move-text {
    color: #3498db
}

.watch-list-table th {
    font-weight: 400;
    padding-bottom: 12px
}

.watch-list-table th:first-child {
    text-align: left
}

.watch-list-table tbody td {
    padding: 20px 5px 0 0;
    text-align: center
}

.watch-list-table tbody .poster-name {
    font-weight: 700;
    text-align: left;
    transition: opacity .3s
}

.watch-list-table tbody .poster-name:hover {
    opacity: .7
}

.watch-list-table tbody .poster-name a {
    align-items: center;
    display: flex
}

.watch-list-table tbody .poster-name .poster {
    border-radius: 5px;
    height: 75px;
    margin-right: 10px;
    min-height: 75px !important;
    min-width: 50px;
    width: 50px
}

.list-move-btn {
    color: #3498db;
    font-size: 20px;
    padding: 10px 5px 10px 15px
}

.list-move-btn:active {
    color: #196090
}

@keyframes skeleton-animation {
    0% {
        background: #ebebeb
    }

    to {
        background: #d2d2d2
    }
}

.loading-card-list-item {
    margin: 30px -12px
}

.loading-card-list-item:first-child {
    margin-top: 30px
}

.loading-card-list-item .poster {
    animation: skeleton-animation .9s ease infinite alternate;
    border-radius: 4px;
    height: 120px
}

.card-list ul {
    list-style-type: none;
    padding: 0
}

.card-list .card-list-item-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    margin: 30px -12px
}

.card-list .card-list-item-wrapper:first-child {
    margin-top: 30px
}

.card-list .card-list-item {
    grid-gap: 5px 15px;
    align-items: flex-end;
    border-radius: 5px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
    display: grid;
    grid-template-areas: "poster title""poster info";
    grid-template-columns: auto 1fr;
    padding: 5px 15px 10px
}

.card-list .card-list-item .poster {
    grid-area: poster;
    line-height: 1;
    margin-top: -20px;
    width: 80px
}

.card-list .card-list-item .poster img {
    border-radius: 5px;
    width: 100%
}

.card-list .card-list-item .title {
    align-self: flex-start;
    color: var(--font-color);
    font-size: 16px;
    grid-area: title;
    padding: 0
}

.card-list .card-list-item .info {
    color: rgba(var(--text-color), .3);
    display: grid;
    font-size: 14px;
    grid-area: info;
    grid-template-areas: "progress rating""added icon"
}

.card-list .card-list-item .info .progress {
    grid-area: progress
}

.card-list .card-list-item .info .rating {
    color: var(--font-color);
    grid-area: rating;
    justify-self: end
}

.card-list .card-list-item .info .rating .fa-star {
    color: #ffde4d
}

.card-list .card-list-item .info .added {
    grid-area: added
}

.card-list .card-list-item .info .media-type {
    grid-area: icon;
    justify-self: end
}

.card-list .buttonWrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.watch-list .title-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px
}

.watch-list .title-bar .edit-btn {
    font-size: 1.2em;
    padding: 7px 0 0
}

.title-grid {
    grid-gap: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr))
}

.title-element {
    background-color: var(--icon-bgcolor);
    border-radius: 10px;
    border-width: 2px 10px 4px 20px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);
    font-size: 15px;
    line-height: 25px;
    overflow: hidden;
    padding: 10px;
    text-align: center;
    text-overflow: ellipsis;
    vertical-align: middle;
    white-space: nowrap
}


.yearbar {
    align-items: center;
    display: flex;
    margin-bottom: 30px
}

#yearbar-text {
    font-size: 20px;
    margin-right: 10px
}

.episodeItem {
    align-items: center;
    background-color: var(--episode-bg-color);
    border-radius: 5px;
    box-shadow: 0 3px 6px 0 rgb(0 0 0/10%), 0 1px 3px 0 rgb(0 0 0/8%);
    display: grid;
    grid-template-columns: 1fr auto;
    margin-bottom: 20px;
    padding: 0 5px 0 200px;
    position: relative;
    transition: box-shadow .15s ease
}

.episodeItem .image-wrapper {
    bottom: 0;
    position: absolute;
    top: 0;
    width: 200px
}

.episodeItem .image-wrapper .episodePic {
    background-color: transparent;
    border-radius: 5px;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: 50% 0;
    width: 100%;
    
}

.episodeTextBox {
    word-wrap: break-word;
    justify-content: center;
    padding: 15px 20px
}

.episodeTextBox .episodeTextContent {
    color: #808191;
    font-weight: 100
}

.episodeTitle {
    font-size: 26px;
    margin: 0 0 10px
}

.episodeCheckbox {
    font-size: 40px;
    padding: 0 20px
}

.play-btn svg {
    width: 45px
}

.image-wrapper .play-btn {
    fill: #fff;
    display: block;
    left: 50%;
    max-width: 50px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    
}

.video-wrap .play-btn svg {
    fill: #fff;
    transition: all .2s ease
}

.video-wrap .play-btn:focus svg,
.video-wrap .play-btn:hover svg {
    fill: #17e617;
    cursor: pointer
}

@media screen and (max-width:600px) {
    .video-wrap .play-btn {
        height: 70px;
        width: 70px
    }
}

:focus {
    outline: none
}

@media only screen and (min-width:481px) {
    .video-js .vjs-seek-button {
        cursor: pointer;
        font-style: normal;
        font-weight: 400
    }

    .video-js .vjs-seek-button.skip-back:before,
    .video-js.vjs-v6 .vjs-seek-button.skip-back .vjs-icon-placeholder:before,
    .video-js.vjs-v7 .vjs-seek-button.skip-back .vjs-icon-placeholder:before {
        content: ""
    }

    .video-js .vjs-seek-button.skip-forward:before {
        content: ""
    }

    .video-js.vjs-v6 .vjs-seek-button.skip-back:before,
    .video-js.vjs-v6 .vjs-seek-button.skip-forward:before,
    .video-js.vjs-v7 .vjs-seek-button.skip-back:before,
    .video-js.vjs-v7 .vjs-seek-button.skip-forward:before {
        content: none
    }

    .video-js.vjs-v6 .vjs-seek-button.skip-forward .vjs-icon-placeholder:before,
    .video-js.vjs-v7 .vjs-seek-button.skip-forward .vjs-icon-placeholder:before {
        content: ""
    }
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.video-js .vjs-modal-dialog,
.vjs-button>.vjs-icon-placeholder:before,
.vjs-modal-dialog .vjs-modal-dialog-content {
    cursor: pointer;
    font-family: Ionicons, Questrial !important;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.vjs-button>.vjs-icon-placeholder:before {
    text-align: center
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.video-js .vjs-play-control .vjs-icon-placeholder:before,
.vjs-icon-play:before {
    content: ""
}

.vjs-icon-play-circle:before {
    content: ""
}

.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before,
.vjs-icon-pause:before {
    content: ""
}

.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before,
.vjs-icon-volume-mute:before {
    content: ""
}

.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before,
.vjs-icon-volume-low:before {
    content: ""
}

.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder,
.vjs-icon-volume-mid {
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400
}

.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before,
.vjs-icon-volume-mid:before {
    content: ""
}

.video-js .vjs-mute-control .vjs-icon-placeholder:before,
.vjs-icon-volume-high:before {
    content: ""
}

.video-js .vjs-fullscreen-control .vjs-icon-placeholder:before,
.vjs-icon-fullscreen-enter:before {
    content: ""
}

.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before,
.vjs-icon-fullscreen-exit:before {
    content: ""
}

.vjs-icon-square {
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400
}

.vjs-icon-square:before {
    content: ""
}

.vjs-icon-spinner {
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400
}

.vjs-icon-spinner:before {
    content: ""
}

.video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js .vjs-subtitles-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.vjs-icon-subtitles:before {
    content: ""
}

.video-js .vjs-captions-button .vjs-icon-placeholder:before,
.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.vjs-icon-captions:before {
    content: ""
}

.video-js .vjs-chapters-button .vjs-icon-placeholder:before,
.vjs-icon-chapters:before {
    content: ""
}

.vjs-icon-share:before {
    content: ""
}

.vjs-icon-cog:before {
    content: ""
}

.video-js .vjs-play-progress:before,
.video-js .vjs-volume-level:before,
.vjs-icon-circle:before,
.vjs-seek-to-live-control .vjs-icon-placeholder:before {
    content: ""
}

.vjs-icon-circle-outline:before {
    content: ""
}

.vjs-icon-circle-inner-circle:before {
    content: ""
}

.vjs-icon-hd:before {
    content: ""
}

.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder,
.vjs-icon-cancel {
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400
}

.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before,
.vjs-icon-cancel:before {
    content: ""
}

.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder,
.vjs-icon-replay {
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400
}

.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before,
.vjs-icon-replay:before {
    content: ""
}

.vjs-icon-facebook:before {
    content: ""
}

.vjs-icon-gplus:before {
    content: ""
}

.vjs-icon-linkedin:before {
    content: ""
}

.vjs-icon-twitter {
    font-style: normal;
    font-weight: 400
}

.vjs-icon-twitter:before {
    content: ""
}

.vjs-icon-tumblr {
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400
}

.vjs-icon-tumblr:before {
    content: ""
}

.vjs-icon-pinterest:before {
    content: ""
}

.video-js .vjs-descriptions-button .vjs-icon-placeholder:before,
.vjs-icon-audio-description:before {
    content: ""
}

.video-js .vjs-audio-button .vjs-icon-placeholder:before,
.vjs-icon-audio:before {
    content: ""
}

.vjs-icon-next-item:before {
    content: ""
}

.vjs-icon-previous-item:before {
    content: ""
}

.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before,
.vjs-icon-picture-in-picture-enter:before {
    content: ""
}

.video-js {
    background-color: #000;
    box-sizing: border-box;
    color: #fff;
    display: block;
    font-family: Ionicons, Questrial !important;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    height: 100%;
    line-height: 1;
    padding: 0;
    position: relative;
    vertical-align: top;
    width: 100%;
    word-break: normal
}

.video-js:-moz-full-screen {
    position: absolute
}

.video-js:-webkit-full-screen {
    height: 100% !important;
    width: 100% !important
}

.video-js[tabindex="-1"] {
    outline: none
}

.video-js *,
.video-js :after,
.video-js :before {
    box-sizing: inherit
}

.video-js ul {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    list-style-position: outside;
    margin: 0
}

.video-js.vjs-16-9,
.video-js.vjs-4-3,
.video-js.vjs-fluid {
    height: 0;
    max-width: 100%;
    width: 100%
}

.video-js.vjs-16-9 {
    padding-top: 56.25%
}

.video-js.vjs-4-3 {
    padding-top: 75%
}

.video-js .vjs-tech,
.video-js.vjs-fill {
    height: 100%;
    width: 100%
}

.video-js .vjs-tech {
    left: 0;
    position: absolute;
    top: 0
}

body.vjs-full-window {
    height: 100%;
    margin: 0;
    padding: 0
}

.vjs-full-window .video-js.vjs-fullscreen {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000
}

.video-js.vjs-fullscreen:not(.vjs-ios-native-fs) {
    height: 100% !important;
    padding-top: 0 !important;
    width: 100% !important
}

.video-js.vjs-fullscreen.vjs-user-inactive {
    cursor: none
}

.vjs-hidden {
    display: none !important
}

.vjs-disabled {
    cursor: default;
    opacity: .5
}

.video-js .vjs-offscreen {
    height: 1px;
    left: -9999px;
    position: absolute;
    top: 0;
    width: 1px
}

.vjs-lock-showing {
    display: block !important;
    opacity: 1;
    visibility: visible
}

.vjs-no-js {
    background-color: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    height: 150px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    width: 300px
}

.vjs-no-js a,
.vjs-no-js a:visited {
    color: #66a8cc
}

.video-js .vjs-big-play-button {
    -webkit-backdrop-filter: blur(20px) saturate(1.5) brightness(1.2);
    backdrop-filter: blur(20px) saturate(1.5) brightness(1.2);
    background: rgba(0, 0, 0, .15);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 600%;
    height: 100px;
    left: calc(50% - 50px);
    line-height: 100px;
    outline: none;
    padding: 0;
    position: absolute;
    text-align: center;
    text-indent: 5px;
    top: calc(50% - 50px);
    width: 100px
}

.vjs-big-play-centered .vjs-big-play-button {
    left: 50%;
    margin-left: -1.5em;
    margin-top: -.81666em;
    top: 50%
}

.video-js .vjs-big-play-button:focus,
.video-js:hover .vjs-big-play-button {
    background-color: #73859f;
    background-color: rgba(115, 133, 159, .5);
    border-color: #fff;
    transition: all 0s
}

.vjs-controls-disabled .vjs-big-play-button,
.vjs-error .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button {
    display: none
}

.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {
    display: block
}

.video-js button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    color: inherit;
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    text-transform: none;
    transition: none
}

.vjs-control .vjs-button {
    height: 100%;
    width: 100%
}

.video-js .vjs-control.vjs-close-button {
    cursor: pointer;
    height: 3em;
    position: absolute;
    right: 0;
    top: .5em;
    z-index: 2
}

.video-js .vjs-modal-dialog {
    background: rgba(0, 0, 0, .8);
    background: linear-gradient(180deg, rgba(0, 0, 0, .8), hsla(0, 0%, 100%, 0));
    overflow: auto
}

.video-js .vjs-modal-dialog>* {
    box-sizing: border-box
}

.vjs-modal-dialog .vjs-modal-dialog-content {
    font-size: 1.2em;
    line-height: 1.5;
    padding: 20px 24px;
    z-index: 1
}

.vjs-menu-button {
    cursor: pointer
}

.vjs-menu-button.vjs-disabled {
    cursor: default
}

.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
    display: none
}

.vjs-menu .vjs-menu-content {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    overflow: auto;
    padding: 0
}

.vjs-menu .vjs-menu-content>* {
    box-sizing: border-box
}

.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
    display: none
}

.vjs-menu li {
    border-radius: 3px;
    color: hsla(0, 0%, 100%, .6);
    font-size: 14px;
    list-style: none;
    margin: 2px 0;
    outline: none;
    padding: 8px 15px;
    text-align: center;
    text-transform: lowercase;
    transition: all .15s ease
}

.js-focus-visible .vjs-menu li.vjs-menu-item:hover,
.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover {
    color: hsla(0, 0%, 100%, .85);
    text-shadow: 0 0 3px hsla(0, 0%, 100%, .5)
}

.js-focus-visible .vjs-menu li.vjs-selected:hover,
.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover {
    background-color: #fff;
    color: #2b333f
}

.vjs-menu li.vjs-menu-title {
    cursor: default;
    font-size: 1em;
    font-weight: 700;
    line-height: 2em;
    margin: 0 0 .3em;
    padding: 0;
    text-align: center;
    text-transform: uppercase
}

.vjs-menu-button-popup .vjs-menu {
    border-top-color: rgba(43, 51, 63, .7);
    bottom: 0;
    display: none;
    height: 0;
    left: -3em;
    margin-bottom: 1.5em;
    position: absolute;
    width: 50px
}

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    border-radius: 3px;
    bottom: 15px;
    color: #fff;
    display: block;
    float: left;
    font-size: 100%;
    margin-bottom: 8px;
    padding: 5px;
    position: absolute;
    -webkit-transition: all .15s;
    transition: all .15s
}

.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    max-height: 5em
}

.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    max-height: 10em
}

.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    max-height: 14em
}

.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    max-height: 25em
}

.vjs-menu-button-popup .vjs-menu.vjs-lock-showing,
.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu {
    display: block
}

.video-js .vjs-menu-button-inline {
    overflow: hidden;
    transition: all .4s
}

.video-js .vjs-menu-button-inline:before {
    width: 2.222222222em
}

.video-js .vjs-menu-button-inline.vjs-slider-active,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline:hover,
.video-js.vjs-no-flex .vjs-menu-button-inline {
    width: 12em
}

.vjs-menu-button-inline .vjs-menu {
    height: 100%;
    left: 4em;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    width: auto
}

.vjs-menu-button-inline.vjs-slider-active .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline:hover .vjs-menu {
    display: block;
    opacity: 1
}

.vjs-no-flex .vjs-menu-button-inline .vjs-menu {
    display: block;
    opacity: 1;
    position: relative;
    width: auto
}

.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu {
    width: auto
}

.vjs-menu-button-inline .vjs-menu-content {
    height: 100%;
    margin: 0;
    overflow: hidden;
    width: auto
}

.video-js .vjs-control-bar {
    -webkit-backdrop-filter: blur(20px) saturate(1.5) brightness(1.2);
    backdrop-filter: blur(20px) saturate(1.5) brightness(1.2);
    background: rgba(0, 0, 0, .6);
    border-radius: 5px;
    bottom: 20px;
    display: none;
    height: 50px;
    left: calc(50% - 350px);
    position: absolute;
    width: 700px
}

@media screen and (max-width:740px) {
    .video-js .vjs-control-bar {
        bottom: 20px;
        left: 20px;
        width: calc(100% - 40px)
    }
}

.vjs-has-started .vjs-control-bar {
    display: flex;
    opacity: 1;
    transition: visibility .1s, opacity .1s;
    visibility: visible
}

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
    opacity: 0;
    transition: visibility 1s, opacity 1s;
    visibility: visible
}

.vjs-controls-disabled .vjs-control-bar,
.vjs-error .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar {
    display: none !important
}

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
    opacity: 1;
    visibility: visible
}

.vjs-has-started.vjs-no-flex .vjs-control-bar {
    display: table
}

.video-js .vjs-control {
    flex: none;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: center;
    width: 4em
}

.vjs-button>.vjs-icon-placeholder:before {
    font-size: 1.8em;
    line-height: 3
}

.video-js .vjs-control:focus,
.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before {
    text-shadow: 0 0 1em #fff
}

.video-js .vjs-control-text {
    clip: rect(0 0 0 0);
    border: 0;
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.vjs-no-flex .vjs-control {
    display: table-cell;
    vertical-align: middle
}

.video-js .vjs-custom-control-spacer {
    display: none
}

.video-js .vjs-progress-control {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex: auto;
    margin-top: 3.5px;
    min-width: 4em;
    touch-action: none
}

.video-js .vjs-progress-control.disabled {
    cursor: default
}

.vjs-live .vjs-progress-control {
    display: none
}

.vjs-liveui .vjs-progress-control {
    align-items: center;
    display: flex
}

.vjs-no-flex .vjs-progress-control {
    width: auto
}

.video-js .vjs-progress-holder {
    flex: auto;
    height: 1px;
    transition: all .2s
}

.video-js .vjs-progress-control .vjs-progress-holder {
    margin: 0 10px
}

.video-js .vjs-progress-control:hover .vjs-progress-holder {
    font-size: 1.6666666667em
}

.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
    font-size: 1em
}

.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div,
.video-js .vjs-progress-holder .vjs-play-progress {
    display: block;
    height: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 0
}

.video-js .vjs-play-progress {
    background-color: #fff
}

.video-js .vjs-play-progress:before {
    font-size: .9em;
    position: absolute;
    right: -.5em;
    top: -.3333333333em;
    z-index: 1
}

.video-js .vjs-load-progress {
    background: rgba(115, 133, 159, .5)
}

.video-js .vjs-load-progress div {
    background: rgba(115, 133, 159, .75)
}

.video-js .vjs-time-tooltip {
    background-color: #fff;
    background-color: hsla(0, 0%, 100%, .8);
    border-radius: .3em;
    color: #000;
    float: right;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    padding: 6px 8px 8px;
    pointer-events: none;
    position: absolute;
    top: -3.4em;
    visibility: hidden;
    z-index: 1
}

.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
    display: none
}

.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-time-tooltip {
    display: block;
    font-size: .6em;
    visibility: visible
}

.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
    font-size: 1em
}

.video-js .vjs-progress-control .vjs-mouse-display {
    background-color: #000;
    display: none;
    height: 100%;
    position: absolute;
    width: 1px;
    z-index: 1
}

.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
    z-index: 0
}

.video-js .vjs-progress-control:hover .vjs-mouse-display {
    display: block
}

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
    opacity: 0;
    transition: visibility 1s, opacity 1s;
    visibility: hidden
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
    display: none
}

.vjs-mouse-display .vjs-time-tooltip {
    background-color: #000;
    background-color: rgba(0, 0, 0, .8);
    color: #fff
}

.video-js .vjs-slider {
    -webkit-touch-callout: none;
    background-color: #73859f;
    background-color: rgba(115, 133, 159, .5);
    cursor: pointer;
    margin: 0 .45em;
    padding: 0;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.video-js .vjs-slider.disabled {
    cursor: default
}

.video-js .vjs-slider:focus {
    box-shadow: 0 0 1em #fff;
    text-shadow: 0 0 1em #fff
}

.video-js .vjs-mute-control {
    cursor: pointer;
    flex: none
}

.video-js .vjs-volume-control {
    cursor: pointer;
    display: flex;
    margin-right: 1em
}

.video-js .vjs-volume-control.vjs-volume-horizontal {
    width: 5em
}

.video-js .vjs-volume-panel .vjs-volume-control {
    height: 1px;
    margin-left: -1px;
    opacity: 0;
    visibility: visible;
    width: 1px
}

.video-js .vjs-volume-panel {
    transition: width 1s
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active,
.video-js .vjs-volume-panel .vjs-volume-control:active,
.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control,
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control,
.video-js .vjs-volume-panel:active .vjs-volume-control,
.video-js .vjs-volume-panel:focus .vjs-volume-control {
    opacity: 1;
    position: relative;
    transition: visibility .1s, opacity .1s, height .1s, width .1s, left 0s, top 0s;
    visibility: visible
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal,
.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal,
.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal {
    height: 3em;
    margin-right: 0;
    width: 5em
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical,
.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical,
.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical {
    left: -3.5em;
    transition: left 0s
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active {
    transition: width .1s;
    width: 10em
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
    width: 4em
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
    height: 8em;
    left: -3000em;
    transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;
    width: 3em
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
    transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s
}

.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
    height: 3em;
    opacity: 1;
    position: relative;
    transition: none;
    visibility: visible;
    width: 5em
}

.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,
.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
    bottom: 3em;
    left: .5em;
    position: absolute
}

.video-js .vjs-volume-panel {
    display: flex
}

.video-js .vjs-volume-bar {
    margin: 1.35em .45em
}

.vjs-volume-bar.vjs-slider-horizontal {
    block: none;
    height: .3em;
    width: 5em
}

.vjs-volume-bar.vjs-slider-vertical {
    block: none;
    height: 5em;
    margin: 1.35em auto;
    width: .3em
}

.video-js .vjs-volume-level {
    background-color: #fff;
    bottom: 0;
    left: 0;
    position: absolute
}

.video-js .vjs-volume-level:before {
    font-size: .9em;
    position: absolute
}

.vjs-slider-vertical .vjs-volume-level {
    width: .3em
}

.vjs-slider-vertical .vjs-volume-level:before {
    left: -.3em;
    top: -.5em
}

.vjs-slider-horizontal .vjs-volume-level {
    height: .3em
}

.vjs-slider-horizontal .vjs-volume-level:before {
    right: -.5em;
    top: -.3em
}

.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
    width: 4em
}

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
    height: 100%
}

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
    line-height: 5em;
    width: 100%
}

.video-js .vjs-volume-vertical {
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, .7);
    bottom: 8em;
    height: 8em;
    width: 3em
}

.video-js .vjs-volume-horizontal .vjs-menu {
    left: -2em
}

.vjs-poster {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%
}

.vjs-poster img {
    display: block;
    margin: 0 auto;
    max-height: 100%;
    padding: 0;
    width: 100%
}

.vjs-has-started .vjs-poster {
    opacity: 0;
    visibility: hidden
}

.vjs-audio.vjs-has-started .vjs-poster {
    display: block
}

.vjs-using-native-controls .vjs-poster {
    display: none
}

.video-js .vjs-live-control {
    align-items: flex-start;
    display: flex;
    flex: auto;
    font-size: 1em;
    line-height: 3em
}

.vjs-no-flex .vjs-live-control {
    display: table-cell;
    text-align: left;
    width: auto
}

.video-js.vjs-liveui .vjs-live-control,
.video-js:not(.vjs-live) .vjs-live-control {
    display: none
}

.video-js .vjs-seek-to-live-control {
    align-items: center;
    cursor: pointer;
    display: inline-flex;
    flex: none;
    font-size: 1em;
    height: 100%;
    line-height: 3em;
    min-width: 4em;
    padding-left: .5em;
    padding-right: .5em;
    width: auto
}

.vjs-no-flex .vjs-seek-to-live-control {
    display: table-cell;
    text-align: left;
    width: auto
}

.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,
.video-js:not(.vjs-live) .vjs-seek-to-live-control {
    display: none
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
    cursor: auto
}

.vjs-seek-to-live-control .vjs-icon-placeholder {
    color: #888;
    margin-right: .5em
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
    color: red
}

.video-js .vjs-time-control {
    flex: none;
    font-size: 1em;
    padding-left: 5px;
    padding-right: 5px;
    top: 23px;
    width: auto
}

.vjs-live .vjs-time-control {
    display: none
}

.video-js .vjs-current-time,
.video-js .vjs-duration,
.vjs-no-flex .vjs-current-time,
.vjs-no-flex .vjs-duration {
    display: block
}

.video-js .vjs-time-divider {
    display: block;
    margin-top: 23px
}

.vjs-live .vjs-time-divider {
    display: none
}

.video-js .vjs-play-control {
    cursor: pointer
}

.video-js .vjs-play-control .vjs-icon-placeholder {
    flex: none
}

.videojs .vjs-text-track-display {
    bottom: 3em;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0
}

.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
    bottom: 1em
}

.video-js .vjs-text-track {
    background-color: #000;
    background-color: rgba(0, 0, 0, .5);
    font-size: 1.4em;
    margin-bottom: .1em;
    text-align: center
}

.vjs-subtitles {
    color: #fff
}

.vjs-captions {
    color: #fc6
}

.vjs-tt-cue {
    display: block
}

.video-js .vjs-text-track-display>div>div>div {
    background: transparent !important;
    display: inline-block !important;
    font-size: 20px !important;
    line-height: 33px !important;
    padding: 5px !important;
    text-shadow: 1px 1px 2px #000
}

video::-webkit-media-text-track-display {
    -moz-transform: translateY(-3em);
    -ms-transform: translateY(-3em);
    -o-transform: translateY(-3em);
    -webkit-transform: translateY(-3em);
    transform: translateY(-3em)
}

.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
    -moz-transform: translateY(-1.5em);
    -ms-transform: translateY(-1.5em);
    -o-transform: translateY(-1.5em);
    -webkit-transform: translateY(-1.5em);
    transform: translateY(-1.5em)
}

.video-js .vjs-fullscreen-control,
.video-js .vjs-picture-in-picture-control {
    cursor: pointer;
    flex: none
}

.vjs-playback-rate .vjs-playback-rate-value,
.vjs-playback-rate>.vjs-menu-button {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.vjs-playback-rate .vjs-playback-rate-value {
    font-size: 1.5em;
    line-height: 2;
    pointer-events: none;
    text-align: center
}

.vjs-playback-rate .vjs-menu {
    left: 0;
    width: 4em
}

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
    font-size: 1.4em;
    text-align: center
}

.vjs-error .vjs-error-display:before {
    color: #fff;
    content: "X";
    font-family: Arial, Helvetica, sans-serif;
    font-size: 4em;
    left: 0;
    line-height: 1;
    margin-top: -.5em;
    position: absolute;
    text-align: center;
    text-shadow: .05em .05em .1em #000;
    top: 50%;
    vertical-align: middle;
    width: 100%
}

.vjs-loading-spinner {
    background-clip: padding-box;
    border: 6px solid rgba(43, 51, 63, .7);
    border-radius: 25px;
    box-sizing: border-box;
    display: none;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .85;
    position: absolute;
    text-align: left;
    top: 50%;
    visibility: hidden;
    width: 50px
}

.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
    -webkit-animation: vjs-spinner-show 0s linear .3s forwards;
    animation: vjs-spinner-show 0s linear .3s forwards;
    display: block
}

.vjs-loading-spinner:after,
.vjs-loading-spinner:before {
    border: inherit;
    border-color: #fff transparent transparent;
    border-radius: inherit;
    box-sizing: inherit;
    content: "";
    height: inherit;
    margin: -6px;
    opacity: 1;
    position: absolute;
    width: inherit
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before {
    -webkit-animation: vjs-spinner-spin 1.1s cubic-bezier(.6, .2, 0, .8) infinite, vjs-spinner-fade 1.1s linear infinite;
    animation: vjs-spinner-spin 1.1s cubic-bezier(.6, .2, 0, .8) infinite, vjs-spinner-fade 1.1s linear infinite
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
    border-top-color: #fff
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
    -webkit-animation-delay: .44s;
    animation-delay: .44s;
    border-top-color: #fff
}

@keyframes vjs-spinner-show {
    to {
        visibility: visible
    }
}

@-webkit-keyframes vjs-spinner-show {
    to {
        visibility: visible
    }
}

@keyframes vjs-spinner-spin {
    to {
        transform: rotate(1turn)
    }
}

@-webkit-keyframes vjs-spinner-spin {
    to {
        -webkit-transform: rotate(1turn)
    }
}

@keyframes vjs-spinner-fade {
    0% {
        border-top-color: #73859f
    }

    20% {
        border-top-color: #73859f
    }

    35% {
        border-top-color: #fff
    }

    60% {
        border-top-color: #73859f
    }

    to {
        border-top-color: #73859f
    }
}

@-webkit-keyframes vjs-spinner-fade {
    0% {
        border-top-color: #73859f
    }

    20% {
        border-top-color: #73859f
    }

    35% {
        border-top-color: #fff
    }

    60% {
        border-top-color: #73859f
    }

    to {
        border-top-color: #73859f
    }
}

.vjs-chapters-button .vjs-menu ul {
    width: 24em
}

.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
    display: inline-block;
    margin-bottom: -.1em;
    vertical-align: middle
}

.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
    content: "";
    font-family: VideoJS;
    font-size: 1.5em;
    line-height: inherit
}

.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
    display: inline-block;
    margin-bottom: -.1em;
    vertical-align: middle
}

.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
    content: " ";
    font-family: VideoJS;
    font-size: 1.5em;
    line-height: inherit
}

.video-js .vjs-remaining-time {
    display: none
}

.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-control,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-control,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-control {
    display: none
}

.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover {
    width: auto
}

.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-subs-caps-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small:not(.vjs-live) .vjs-subs-caps-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small:not(.vjs-liveui) .vjs-subs-caps-button {
    display: none
}

.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-custom-control-spacer,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui .vjs-custom-control-spacer {
    display: block;
    flex: auto
}

.video-js:not(.vjs-fullscreen).vjs-layout-tiny.vjs-no-flex .vjs-custom-control-spacer,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui.vjs-no-flex .vjs-custom-control-spacer {
    width: auto
}

.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-progress-control,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui .vjs-progress-control {
    display: none
}

.vjs-modal-dialog.vjs-text-track-settings {
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, .75);
    color: #fff;
    height: 70%
}

.vjs-text-track-settings .vjs-modal-dialog-content {
    display: table
}

.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-controls,
.vjs-text-track-settings .vjs-track-settings-font {
    display: table-cell
}

.vjs-text-track-settings .vjs-track-settings-controls {
    text-align: right;
    vertical-align: bottom
}

@supports(display:grid) {
    .vjs-text-track-settings .vjs-modal-dialog-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        padding: 20px 24px 0
    }

    .vjs-track-settings-controls .vjs-default-button {
        margin-bottom: 20px
    }

    .vjs-text-track-settings .vjs-track-settings-controls {
        grid-column: 1/-1
    }

    .vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,
    .vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content,
    .vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content {
        grid-template-columns: 1fr
    }
}

.vjs-track-setting>select {
    margin-bottom: .5em;
    margin-right: 1em
}

.vjs-text-track-settings fieldset {
    border: none;
    margin: 5px;
    padding: 3px
}

.vjs-text-track-settings fieldset span {
    display: inline-block
}

.vjs-text-track-settings fieldset span>select {
    max-width: 7.3em
}

.vjs-text-track-settings legend {
    color: #fff;
    margin: 0 0 5px
}

.vjs-text-track-settings .vjs-label {
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    border: 0;
    display: block;
    height: 1px;
    margin: 0 0 5px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.vjs-track-settings-controls button:active,
.vjs-track-settings-controls button:focus {
    background-image: linear-gradient(0deg, #fff 88%, #73859f);
    outline-style: solid;
    outline-width: medium
}

.vjs-track-settings-controls button:hover {
    color: rgba(43, 51, 63, .75)
}

.vjs-track-settings-controls button {
    background-color: #fff;
    background-image: linear-gradient(-180deg, #fff 88%, #73859f);
    border-radius: 2px;
    color: #2b333f;
    cursor: pointer
}

.vjs-track-settings-controls .vjs-default-button {
    margin-right: 1em
}

@media print {
    .video-js>:not(.vjs-tech):not(.vjs-poster) {
        visibility: hidden
    }
}

.vjs-resize-manager {
    border: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1000
}

.js-focus-visible .video-js :focus:not(.focus-visible) {
    background: none;
    outline: none
}

.video-js .vjs-menu :focus:not(:focus-visible),
.video-js :focus:not(:focus-visible) {
    background: none;
    outline: none
}

.episodeMobileItem {
    align-items: center;
    background-color: var(--episode-bg-color);
    border-radius: 10px;
    box-shadow: 0 3px 6px 0 rgb(0 0 0/10%), 0 1px 3px 0 rgb(0 0 0/8%);
    display: flex;
    height: 50px;
    justify-content: space-between;
    margin-bottom: 10px;
    max-width: 100%;
    padding-right: 5px;
    position: relative;
    transition: box-shadow .15s ease
}

.accent-gray .card-button:hover svg,
.accent-gray .current-item svg,
.accent-gray .icon-big,
.accent-gray .icon-small {
    fill: #6d7c90
}

.accent-gray .card-button:hover svg .transparent,
.accent-gray .current-item svg .transparent,
.accent-gray svg .transparent {
    fill: rgba(109, 124, 144, .4)
}

.card-button {
    background-color: #fff;
    border-radius: 30px;
    color: #20292f !important;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.4em;
    margin-top: 10px;
    padding: 16px;
    text-transform: uppercase
}

.card-button svg {
    fill: rgba(109, 124, 144, .5)
}

.card-button svg,
.card-button svg .transparent {
    -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
    transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.card-button svg .transparent {
    fill: rgba(109, 124, 144, .25)
}

.card-button.current-item,
.card-button:hover {
    box-shadow: 0 10px 70px 0 rgba(103, 151, 255, .22), 0 15px 105px 0 rgba(103, 151, 255, .22)
}

.button,
.card-button {
    -webkit-box-align: center;
    align-items: center;
    display: -webkit-box;
    display: flex;
    text-decoration: none
}

.button svg,
.card-button svg {
    height: 28px;
    margin: 0 12px 0 0;
    width: 28px
}

.expandedItemBox {
    background-color: var(--episode-bg-color);
    border-radius: 10px;
    box-shadow: 0 3px 6px 0 rgb(0 0 0/10%), 0 1px 3px 0 rgb(0 0 0/8%);
    height: 100%;
    margin-bottom: 10px;
    max-width: 100%;
    padding: 12px 5px 0 0;
    position: relative;
    transition: box-shadow .15s ease
}

.expandedTitleBar {
    display: flex;
    width: 100%
}

.expandedDescriptionBox {
    padding: 15px
}

.episodeMobileTitle {
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.episodeTitleBox {
    font-size: 18px;
    font-weight: 700;
    padding-left: 10px
}

.episodeNumber {
    font-size: 20px;
    padding: 0 15px
}

.episodeMobileCheckbox {
    font-size: 20px;
    height: 100%;
    padding: 0 10px;
    z-index: 2
}

.expandBoxButton {
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1
}

.secondary-btn {
    background: none;
    border: 2px solid var(--active-light-color);
    border-radius: 50px;
    box-sizing: border-box;
    color: var(--active-light-color);
    display: inline-block;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 10px 35px
}

.secondary-btn:active {
    background: var(--active-light-color);
    color: #fff
}

.season {
    margin-bottom: 70px
}

.season .title-bar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px
}

.season .title-bar h2 {
    margin: 0
}

.loading-episode-page .season-header {
    display: flex;
    justify-content: space-between;
    margin-top: 20px
}

.episode-page .show-title {
    display: inline-block
}

#new-password {
    padding-top: 100px;
    text-align: center
}

#new-password .reset-title {
    font-size: 30px;
    margin-bottom: 2rem
}

#new-password p {
    margin-bottom: 30px
}

.submit-btn {
    background: #fff;
    border: 1px solid #d6d6d6;
    color: var(--text-color);
    padding-bottom: 2px;
    padding-right: 0;
    padding-top: 2px
}

.submit-btn:active {
    background: #ccc;
    color: #000
}

.submit-btn:hover {
    opacity: .6
}

.emailReset {
    border: none;
    color: #a49eac;
    font-size: 1rem;
    font-weight: 700;
    outline: none
}

.login__button {
    background-color: #4784ff;
    border-radius: .5rem;
    box-shadow: 0 6px 30px -10px #4a74c9;
    color: #fff;
    display: block;
    font-weight: 600;
    padding: 1rem;
    text-align: center;
    transition: .3s;
    width: 100%
}

.login__button:hover {
    background-color: #4a74c9
}

.reset-box {
    background-color: #fff;
    border-radius: .5rem;
    column-gap: .5rem;
    display: grid;
    grid-template-columns: max-content 1fr;
    margin-top: 1rem;
    padding: 1.125rem 1rem
}

.emailReset::placeholder {
    color: #a49eac;
    font-size: .9rem
}

#not-found-page {
    padding-top: 100px;
    text-align: center
}

#not-found-page h1 {
    font-size: 7em;
    margin: 0
}

#not-found-page p {
    margin-bottom: 30px
}

.signup-page {
    text-align: center;
    width: 100%
}

.signup-page .login {
    display: grid;
    grid-template-columns: 100%
}

.signup-page .login__content {
    display: grid
}

.signup-page .g-recaptcha {
    transform: scale(.85);
    transform-origin: left top
}

.signup-page .login__forms {
    height: 200px;
    position: relative
}

.signup-page .login__registre {
    animation-duration: .4s;
    animation-name: animate-login;
    border-radius: 1rem;
    bottom: 1rem;
    text-align: center;
    width: 100%
}

@keyframes animate-login {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }

    to {
        transform: scale(1)
    }
}

.signup-page .login__title {
    font-size: 30px;
    margin-bottom: 2rem
}

.signup-page .login__box {
    background-color: #fff;
    border-radius: .5rem;
    box-shadow: var(--default-box-shadow);
    column-gap: .5rem;
    display: grid;
    grid-template-columns: max-content 1fr;
    margin-top: 1rem;
    padding: 1.125rem 1rem
}

.signup-page svg {
    fill: #4784ff
}

.signup-page .login__input {
    border: none;
    color: #a49eac;
    font-size: 1rem;
    font-weight: 700;
    outline: none
}

.signup-page .login__input::placeholder {
    color: #a49eac;
    font-size: .9rem
}

.signup-page .login__forgot {
    color: #a49eac;
    display: block;
    font-size: .85rem;
    font-weight: 600;
    margin-left: auto;
    margin-top: .5rem;
    width: max-content
}

.signup-page .login__button {
    background-color: #4784ff;
    border-radius: .5rem;
    box-shadow: 0 6px 30px -10px #4a74c9;
    color: #fff;
    display: block;
    font-weight: 600;
    margin: 2rem 0;
    padding: 1rem;
    text-align: center;
    transition: .3s;
    width: 100%
}

.signup-page .login__button:hover {
    background-color: #4a74c9
}

.signup-page .login__signin,
.signup-page .login__signup {
    color: #4784ff;
    cursor: pointer
}

@media screen and (min-width:576px) {
    .signup-page .login__forms {
        height: 500px;
        justify-self: center;
        width: 348px
    }
}

@media screen and (min-width:1024px) {
    .signup-page .login {
        height: 100vh;
        overflow: hidden
    }

    .signup-page .login__content {
        grid-template-columns: repeat(2, max-content);
        height: 80vh;
        justify-content: center;
        margin: auto
    }

    .signup-page .login__registre {
        bottom: -2rem;
        left: -11rem
    }
}

.discord {
    position: relative
}

.discord iframe {
    border-radius: 20px;
    height: 80vh;
    width: 100%
}

.help-center .wrapper {
    display: grid;
    gap: 10px;
    grid-auto-rows: minmax(100px, auto);
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto
}

.help-center h1 {
    font-size: 1.5em;
    margin: 10px 0 40px;
    text-align: center;
    text-transform: uppercase
}

.help-center .lista-item {
    background-color: var(--icon-bgcolor-tabs);
    border-radius: 15px;
    box-shadow: 0 3px 6px 0 rgb(0 0 0/10%), 0 1px 3px 0 rgb(0 0 0/8%);
    margin-bottom: 20px;
    padding: 10px
}

.help-center .faq-titulo {
    color: var(--font-color);
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    line-height: 20px;
    padding: 10px
}

.help-center .faq-conteudo {
    color: #6c757d;
    display: none;
    font-size: .875em;
    line-height: 1.4em;
    padding: 10px
}

.help-center .trigger-input {
    display: none
}

.help-center .trigger-input:checked+.trigger-wrapper .faq-conteudo {
    display: block
}

.help-center .trigger-input:checked+.trigger-wrapper .faq-titulo:after {
    transform: rotate(45deg) scale(1.08)
}

@media(max-width:575px) {
    .help-center .wrapper {
        display: grid;
        gap: 10px;
        grid-auto-rows: minmax(100px, auto);
        grid-template-columns: repeat(1, 1fr);
        margin: 0 auto
    }
}

.settings .kYxrQw {
    -webkit-box-pack: justify;
    align-items: flex-start;
    display: flex;
    justify-content: space-between
}

.settings .brWjXb:not(:last-child) {
    margin-bottom: 16px
}

.settings .brWjXb {
    background-color: var(--icon-bgcolor);
    border-radius: 25px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .08);
    padding: 24px
}

.settings .iVeijx {
    flex: 1 1 0%
}

.settings .hmbDft {
    -webkit-box-align: center;
    align-items: center;
    color: #f2f4fb;
    display: flex;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    position: relative
}

.settings .hfwCMq {
    margin: 8px 0 0
}

.settings h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 400
}

.settings .keqMWH {
    background-color: var(--border-color);
    border: none;
    height: 1px;
    margin: 24px 0;
    width: 100%
}

.settings .gmjUwa {
    background: #17181e;
    border: 1px solid transparent;
    border-image: initial;
    border-radius: 8px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .08);
    box-sizing: border-box;
    color: #f2f4fb;
    cursor: pointer;
    font-family: proxima-nova, sans-serif;
    font-size: 16px;
    line-height: 24px;
    max-width: 483px;
    min-height: 48px;
    outline: none;
    padding: 8px 16px;
    position: relative;
    transition: border-radius .15s ease-out 0s, border-color, color, background-color, box-shadow;
    user-select: none;
    width: 100%
}

.settings .gmjUwa,
.settings .jBNrZF {
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    margin: 0
}

.settings .jBNrZF {
    flex: 1 1 0%;
    overflow: hidden
}

.settings .PMXqu {
    -webkit-box-align: center;
    align-items: center;
    border-radius: 8px;
    color: #9b9d9f;
    cursor: pointer;
    display: flex;
    font-weight: 400;
    padding: 8px;
    transition: color .15s ease-out 0s, background-color
}

.settings .jBOakZ {
    max-width: 483px
}

.settings .bjBnwf {
    -webkit-box-align: center;
    align-items: center;
    background-color: #272934;
    border-radius: 8px;
    color: #f2f4fb;
    cursor: pointer;
    display: flex;
    font-weight: 400;
    padding: 8px;
    transition: color .15s ease-out 0s, background-color
}

.settings .hqidmZ {
    background-color: #17181e;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .16);
    box-sizing: border-box;
    left: 0;
    list-style: none;
    max-height: 375px;
    overflow-y: auto;
    padding: 8px;
    position: absolute;
    width: 100%;
    z-index: 1000
}

#overlay {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    display: none;
    z-index: 999
}

.toast-container {
    text-align: center;
    z-index: 99999
}

.toast {
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    padding-top: calc(8px + env(safe-area-inset-bottom)/2)
}

.removeToast {
    background: #303030;
    color: #fff
}

*,
:after,
:before {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-sizing: border-box;
    outline: none
}

html {
    font-smooth: antialiased;
    -webkit-font-smoothing: antialiased;
    --button-shadowBox: 0 6px 30px -10px #4a74c9;
    --default-color: #4784ff;
    --button-ionicon-color: #fff;
    --default-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, .1), 0px 1px 3px 0px rgb(0 0 0/8%);
    box-sizing: border-box;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    scroll-behavior: smooth
}

body.dark-mode {
    --outline-img: #fff;
    --featured-video-bg: #111928;
    --episode-bg-color: hsla(0, 0%, 100%, .1);
    --placeholder-color: #f0f0f0;
    --search-button-bg: hsla(0, 0%, 100%, .1);
    --header-color: #151728;
    --sidebar-color-bg: #151728;
    --tab-bg: #fff;
    --tab-color: #2f2f33;
    --logo-bgcolor: rgba(195, 207, 244, .2);
    --icon-bgcolor: hsla(0, 0%, 100%, .1);
    --icon-bgcolor-tabs: hsla(0, 0%, 100%, .1);
    --genre-bg-color: hsla(0, 0%, 100%, .1);
    --share-bg-color: hsla(0, 0%, 100%, .1);
    --search-box-shadow: 0px;
    --button-bg: #353340;
    --modal--color: rgba(31, 29, 42, .94);
    --modal--fill: #2f2f33;
    --modal--buttons: hsla(0, 0%, 100%, .56);
    --primary: #9d4bff;
    --secondary: #f7fafc;
    --success: #2dce89;
    --warning: #fb6340;
    --danger: #f5365c;
    --muted: #8898aa;
    --input-bg: #353340;
    --pagination-color: #dee2e6;
    --pagination-text: #8898aa;
    --border-color: #eee;
    --episode-button-color: #26262b;
    --theme-bg: #151728;
    --body-color: #f3f6fd;
    --sypnosis-color: #808191;
    --font-color: #f0f0f0;
    --box-item-color: #252836;
    --color-expanded: #83838e;
    --border-color: hsla(236, 7%, 54%, .24);
    --box-shadow: 0 0 0 2px rgba(134, 140, 160, .02);
    --font-weight: 200;
    transition: background-color .3s ease
}

body.dark-mode a:focus img {
    outline: 2px auto #fff
}

@supports(backdrop-filter:blur()) {
    body.dark-mode {
        --header-color: rgba(21, 23, 40, .75);
        --featured-video-bg: rgba(17, 25, 40, .75)
    }
}

body {
    --outline-img: #1f1c2e;
    --featured-video-bg: #fff;
    --episode-bg-color: #fff;
    --placeholder-color: #2f2f33;
    --search-button-bg: #fff;
    --header-color: #fff;
    --sidebar-color-bg: #f3f3f3;
    --tab-bg: #1f1c2e;
    --tab-color: #fff;
    --play-button-bg: var(--default-color);
    --episode-button-color: #1f1c24;
    --logo-bgcolor: #1f1c2e;
    --icon-bgcolor: #fff;
    --icon-bgcolor-tabs: #f3f3f3;
    --genre-bg-color: #fff;
    --share-bg-color: #1f1c24;
    --genre-font-color: #fff;
    --button-bg: #fff;
    --search-box-shadow: 0 2px 6px 0 rgba(136, 148, 171, .2), 0 24px 20px -24px rgba(71, 82, 107, .1);
    --modal--fill: #2f2f33;
    --modal--buttons: hsla(0, 0%, 100%, .71);
    --modal--color: rgba(230, 236, 239, .96);
    --primary: #9d4bff;
    --secondary: #f7fafc;
    --success: #2dce89;
    --warning: #fb6340;
    --danger: #f5365c;
    --muted: #8898aa;
    --input-bg: #f7f7f7;
    --pagination-color: #dee2e6;
    --pagination-text: #8898aa;
    --border-color: #eee;
    --theme-bg: #fff;
    --font-color: #2f2f33;
    --sypnosis-color: #2f2f33;
    --body-color: #808191;
    --box-item-color: #f0f0f0;
    --color-expanded: #83838e;
    --font-weight: 200;
    --border-color: hsla(236, 7%, 54%, .24);
    --box-shadow: 0 1px 3px rgba(50, 50, 93, .15), 0 1px 0 rgba(0, 0, 0, .02);
    background-color: var(--theme-bg);
    color: var(--font-color);
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    transition: background-color .3s ease
}

@supports(backdrop-filter:blur()) {
    body {
        --header-color: hsla(0, 0%, 100%, .75);
        --featured-video-bg: hsla(0, 0%, 100%, .7)
    }
}

body a:focus img {
    outline: 5px auto #1f1c2e
}

body #sidebar {
    background-color: var(--sidebar-color-bg);
    transition: background-color .3s ease
}

body #sidebar .side-title {
    color: var(--body-color)
}

body .app-header {
    background-color: var(--header-color);
    transition: background-color .3s ease
}

body .movie-info .synopsis {
    color: var(--synopsis-color)
}

body #banner .curve-edge {
    background-color: var(--theme-bg);
    transition: background-color .3s ease
}

body .card-list .card-list-item {
    background-color: var(--icon-bgcolor)
}

body .expandedDescriptionBox,
body .movie-info .synopsis {
    
    color: #808191;
    font-weight: 100
}

body .modal {
    background-color: rgba(31, 41, 55, .88)
}

.anim {
    -webkit-animation: bottom .8s var(--delay) both;
    animation: bottom .8s var(--delay) both
}

.change_link_icon {
    position: absolute;
    right: 5%;
    top: 5%;
    z-index: 50001
}

.change_link_icon svg {
    width: 20px
}

.modal {
    -webkit-animation-duration: .35s;
    animation-duration: .35s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    bottom: 0;
    display: none;
    left: 0;
    overflow: auto;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 50000
}

.modal__dialog {
    border-radius: 4px;
    max-width: 100%;
    position: relative;
    transition: all .3s ease
}

.modal__close {
    left: 5%
}

.modal__close.svg {
    width: 30px
}

.modal__close,
.modal__server {
    display: flex;
    position: absolute;
    z-index: 50001
}

.modal__back {
    color: #fff;
    position: absolute;
    z-index: 50001
}

.modal__back svg {
    width: 20px
}

.modal__backs {
    color: #fff;
    left: 50%;
    position: absolute;
    right: 50%;
    top: 5%;
    z-index: 50001
}

.modal__back,
.modal__server {
    left: 3%;
    top: 1.5%
}

.modal__server {
    right: 50px
}

.modal__content,
.modal__content iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.modal__dialog {
    border-radius: 0;
    height: 100%;
    max-width: none;
    width: 100%
}

.modal__dialog .bg-video {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 50002
}

.modal__dialog .bg-video:after {
    background-color: rgba(0, 0, 0, .3);
    background: -moz-linear-gradient(60deg, rgba(0, 0, 0, .939) 20%, hsla(0, 0%, 4%, .426) 100%);
    background: -webkit-linear-gradient(60deg, rgba(0, 0, 0, .939) 20%, hsla(0, 0%, 4%, .426));
    background: linear-gradient(60deg, rgba(0, 0, 0, .939) 20%, hsla(0, 0%, 4%, .426));
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 50003
}

.modal.is-modal-active {
    display: -webkit-box;
    display: flex
}

button {
    -webkit-appearance: none;
    background: none;
    border: none;
    border-radius: 0;
    color: inherit;
    cursor: pointer;
    outline: none;
    padding: 0
}

button:active {
    color: #000
}

a {
    color: inherit;
    outline: 0;
    text-decoration: none
}

h1 {
    font-size: 36px;
    font-weight: 800
}

h2 {
    font-size: 24px;
    font-weight: 400
}

section {
    margin-bottom: 10px
}

.container {
    font-weight: 500;
    padding: 0 var(--container-padding)
}

::-webkit-scrollbar {
    border-radius: 10px;
    width: 4px
}

::-webkit-scrollbar-thumb {
    background-color: #727781;
    border-radius: 10px
}

.activate-modal {
    display: flex
}

.google-drive-text {
    padding: 10px;
    text-align: center;
    width: 80%
}

.gdrive-btn {
    align-content: center;
    background-color: #4884ff;
    border-radius: 10px;
    box-shadow: 0 6px 30px -10px #4a74c9;
    color: #fff;
    margin: auto auto 10px;
    padding: 10px;
    width: 35%
}

.notification-dgrive {
    background-color: #90ee90
}

.notification-dgrive,
.notification-dgrive-error {
    border-radius: 10px;
    margin: auto;
    padding: 10px;
    width: 60%
}

.notification-dgrive-error {
    background-color: red;
    color: #fff
}

.modal-window {
    background-color: hsla(0, 0%, 100%, .25);
    bottom: 0;
    left: 0;
    opacity: 1;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    transition: all .3s;
    z-index: 500001
}

.modal-window>div {
    background: var(--theme-bg);
    left: 50%;
    padding: 2em;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 400px
}

.modal-window header {
    font-weight: 700
}

.modal-window h1 {
    font-size: 150%;
    margin: 0 0 15px
}

.modal-close {
    color: #aaa;
    font-size: 80%;
    line-height: 50px;
    position: absolute;
    right: 0;
    text-align: center;
    text-decoration: none;
    top: 0;
    width: 70px
}

.modal-close:hover {
    color: #000
}

.modal-window>div {
    border-radius: 1rem
}

.modal-window div:not(:last-of-type) {
    margin-bottom: 15px
}

.x {
    backdrop-filter: blur(16px) saturate(180%);
    bottom: 10px;
    color: #fff;
    font-size: 10px;
    padding: 10px;
    text-align: center;
    z-index: 99999
}

:root {
    --body-font: "DM Sans", sans-serif;
    --theme-bg-color: #fafafb;
    --text-color: #646464;
    --active-color: #0162ff;
    --active-light-color: #2b2ecf;
    --header-bg-color: #fff;
    --search-border-color: #efefef;
    --border-color: #d8d8d8;
    --alert-bg-color: #e8f2ff;
    --subtitle-color: #83838e;
    --inactive-color: #f0f0f0;
    --placeholder-color: #9b9ba5;
    --time-button: #fc5757;
    --level-button: #5052d5;
    --button-color: #fff;
    --border-size: 0.125rem;
    --duration: 250ms;
    --ease: cubic-bezier(0.215, 0.61, 0.355, 1);
    --font-family: monospace;
    --color-primary: #fff;
    --color-secondary: #000;
    --color-tertiary: #1e90ff;
    --shadow: rgba(0, 0, 0, .1);
    --space: 1rem;
    --container-padding: 40px
}

#less-container {
    margin-left: 85px;
    transition-duration: .2s
}

#main-container {
    margin-left: 230px;
    transition-duration: .2s
}

@media(max-width:485px) {
    .poster-grid {
        grid-gap: 20px;
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr))
    }
}

@media(max-width:900px) {
    #overlay {
        background-color: #000;
        bottom: 0;
        display: inherit;
        left: 0;
        position: fixed;
        right: 0;
        top: 0;
        transition: opacity .3s
    }

    #overlay.open {
        opacity: .3;
        pointer-events: inherit
    }

    #overlay.closed {
        opacity: 0;
        pointer-events: none
    }

    #sidebar {
        transition: transform .3s
    }

    #sidebar.closed {
        transform: translateX(-250px)
    }

    #sidebar.closed,
    #sidebar.open {
        -webkit-transition: all .3s;
        transition: all .3s
    }

    #sidebar.open {
        transform: translateX(0)
    }

    #app-header-desktop {
        grid-gap: 20px;
        grid-template-columns: auto minmax(150px, 500px) auto
    }
}

@media(min-width:900px) {
    button#toggle-btn svg {
        display: none
    }
}

@media(max-width:900px) {

    #less-container,
    #main-container {
        margin-left: 0
    }

    :root {
        --container-padding: 25px
    }

    h1 {
        text-align: center
    }

    .loading-card-grid {
        width: 165px
    }

    .modal__back,
    .modal__server {
        top: 5px
    }

    .change_link_icon {
        right: 12%;
        top: 5px
    }

    .movie-info .synopsis {
        font-size: 14px
    }

    .tabs {
        text-align: center
    }

    .details-title {
        grid-gap: 20px;
        grid-template-columns: 1fr;
        justify-items: center
    }

    .details-title .poster {
        margin-top: -150px
    }

    .details-title .video-p-name {
        justify-content: center
    }

    .details-title .text {
        text-align: center
    }

    .details-title .text .title {
        font-size: 25px;
        margin: 2px 20px 10px
    }

    .details-title .text .bottom {
        justify-content: center
    }

    .presentation {
        grid-gap: 20px;
        grid-template-columns: 1fr;
        justify-items: center
    }

    #homepage .main-blog__title {
        font-size: 17px;
        max-width: 16ch
    }

    .watch-list .title-bar h1 {
        font-size: 1.7em
    }

    .watch-list .title-bar .edit-btn {
        font-size: 1em
    }
}

@media(max-width:320px) {

    .primary-btn,
    .secondary-btn {
        padding-left: 25px;
        padding-right: 25px
    }
}

@media(max-width:480px) {
    .vid-quality-selector button {
        font-size: 9px
    }
}