body {
    margin: 0px;
    padding: 0px;
    color: rgba(255, 255, 255, 1.0);
    background: rgba(0, 0, 0, 1.0);
    font-family: Arial, 
                 system-ui, 
                 -apple-system, 
                 BlinkMacSystemFont, 
                 'Segoe UI', 
                 Roboto, 
                 Oxygen, 
                 Ubuntu, 
                 Cantarell, 
                 'Open Sans', 
                 'Helvetica Neue', 
                 sans-serif;
}

@font-face {
    font-family: Medio;
    src: url("../webfonts/medio.otf") format("opentype");
}

.oops {
    width: 100%;
    overflow-y: hidden;
    height: calc(100vh - 20px);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.manifest {
    position: relative;
    align-items: center;
    text-align: center;
    margin-top: -16px;
}

.sidebar {
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    position: fixed;
    background-color: rgba(22, 22, 22, 1.0);
    color: rgba(255, 255, 255, 1.0);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.menu-toggle {
    width: 60px;
    height: 48px;
    cursor: pointer;
}

.menu-toggle .icons {
    width: 18px;
    height: 18px;
    padding: 16px;
    margin-left: 4px;
    display: none;
}

.mobile {
    display: none;
}

.fenomen {
    width: 250px;
    height: 58px;
    position: relative;
}

.fenomen a {
    position: absolute;
    width: 250px;
    height: 58px;
    text-decoration: none;
    color: rgba(255, 255, 255, 1.0);
}

.fenomen a .icons {
    width: 22px;
    height: 22px;
    padding: 17px;
}

.fenomen a .logo {
    position: absolute;
    /* font-family: Medio;
    letter-spacing: 2px; */
    font-size: 24px;
    padding: 14px;
    margin-left: -8px;
    color: transparent;
    -webkit-animation: fade 1s forwards;
    -webkit-animation-delay: 0.1s;
    animation: fade 1s forwards;
    animation-delay: 0.1s;
}

@-webkit-keyframes fade {
    from { color: transparent; }
    to { color: rgba(255, 255, 255, 1.0) }
}

@keyframes fade {
    from { color: transparent; }
    to { color: rgba(255, 255, 255, 1.0) }
}

.fenomen .logo {
    font-size: 24px;
    font-weight: bold;
}

.search-box {
    padding: 9px 10px 8px 10px;
    position: relative;
    margin-top: -50px;
}

#searchInput {
    width: 210px;
    padding: 8px;
    border-radius: 5px;
    border: 0px !important;
    background-color: rgba(33, 33, 33, 1.0);
    color: rgba(255, 255, 255, 1.0);
    display: block;
    margin-left: -250px;
    -webkit-animation: line 1s forwards;
    -webkit-animation-delay: 0.2s;
    animation: line 1s forwards;
    animation-delay: 0.2s;
}

@-webkit-keyframes line {
    from { margin-left: -250px; }
    to { margin-left: 3px }
}

@keyframes line {
    from { margin-left: -250px; }
    to { margin-left: 3px }
}

input[type="text"] {
    outline: none;
}

#searchInput:focus {
    background: rgba(1, 1, 1, 1.0);
}

.sidebar .navbar {
    list-style: none;
    padding: 0px;
    margin: 0px;
    transition: all 0.6s ease;
}

.sidebar .navbar li {
    padding: 15px 20px;
    text-align: left;
    position: relative;
}

.sidebar .navbar li a {
    color: rgba(255, 255, 255, 1.0);
    text-decoration: none;
    font-size: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.sidebar .navbar li a .icons {
    width: 18px;
    height: 18px;
}

.sidebar .navbar li span {
    display: block;
    margin-left: 10px;
    margin-top: -2px;
    font-size: 16px;
    white-space: nowrap;
    height: 16px;
    text-indent: 14px;
}

.sidebar .navbar li .last {
    margin-top: -5px;
}

.video-container {
    margin-left: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    max-height: calc(100vh - 40px);
    object-fit: contain;
    border-radius: 15px;
}

.content-title {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: 900;
    height: 40px;
    max-width: 350px;
    word-wrap: break-word;
    text-align: center;
    color: rgba(255, 255, 255, 1.0);   
    text-transform: capitalize;
    text-shadow: rgba(0, 0, 0, 1.0) 1px 0 10px;
    pointer-events: none;
}

#video-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    width: 80px;
    height: auto;
    position: absolute;
    top: 20px;
    margin-left: -240px;
    z-index: 999;
    pointer-events: auto;
}

#video-content.active {
    opacity: 1;
    visibility: visible;
}

.content-list {
    margin: 0px;
    max-width: 100%;
    width: auto;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 10px;
}

.content-links {
    text-decoration: none;
    padding: 4px 0px 4px 0px;
}

.content-icons {
    width: 60px;
    height: 60px;
}

.like-count {
    margin: 0px;
    max-width: 100%;
    width: auto;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 10px;
    padding-top: 0px;
    cursor: default;
    font-size: 12px;
    font-weight: 900;
    color: rgba(255, 255, 255, 1.0);
    text-shadow: rgba(0, 0, 0, 1.0) 1px 0 10px;
}

.share,
.like {
    width: 20px;
    height: 20px;
    padding: 10px;
    border-radius: 50%;
    background: transparent;
}

.share:hover {
    background: rgba(95, 151, 101, 1.0);
}

.like:hover {
    background: rgba(255, 50, 100, 1.0);
}

.disable-like .like:hover {
    background: transparent;
    border-radius: 0%;
    border: none;
}

.avatar-icon {
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 1.0);
}

.controls {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.round-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(33, 33, 33, 1.0);
    color: rgba(255, 255, 255, 1.0);
    border: none;
    margin: 10px 0;
    cursor: pointer;
    display: block;
}

.round-button:hover,
.sidebar .navbar li:hover,
.btn-login:hover {
    background-color: rgba(43, 43, 43, 1.0);
}

.round-button .icons {
    width: 18px;
    height: 18px;
    margin: 10px 0;
}

.disabled, .disabled:hover {
    background-color: rgba(13, 13, 13, 1.0);
    cursor: default;
}

.sidebar.show {
    width: 250px;
    transition: all 0.3s ease;
}

.sidebar .menu-toggle {
    display: block;
}

.sidebar .fenomen {
    display: block;
}

.bottom {
    padding: 0px 10px 0px 10px;
    position: absolute;
    white-space: nowrap;
    bottom: 10px;
    width: 230px;
    margin-left: -250px;
    -webkit-animation: bottom 1s forwards;
    -webkit-animation-delay: 0.6s;
    animation: bottom 1s forwards;
    animation-delay: 0.6s;
}

@-webkit-keyframes bottom {
    from { margin-left: -250px; }
    to { margin-left: 0px }
}

@keyframes bottom {
    from { margin-left: -250px; }
    to { margin-left: 0px }
}

.btn-login {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 5px;
    color: rgba(255, 255, 255, 1.0);
    background-color: rgba(33, 33, 33, 1.0);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

.btn-login .icons {
    width: 15px;
    height: 15px;
    top: 2px;
    left: -10px;
    position: relative;
}

.btn-login .button-text {
    position: relative;
    top: -1px;
    left: -5px;
}

.links {
    position: relative;
    margin-top: 15px;
    margin-bottom: 10px;
    list-style: none;
}

.links li {
    list-style: none;
    margin-left: -40px;
    padding: 10px 5px 10px 5px;
}

.links li a {
    max-width: 100%;
    font-size: 14px;
    text-decoration: none;
    color: rgba(255, 255, 255, 1.0);
}

.links li a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 12px;
    padding: 10px 0px 10px 5px;
    color: rgba(93, 93, 93, 1.0);
}

.container-page {
    margin-left: 250px;
    padding: 10px 40px 10px 40px;
    transition: all 0.3s ease;
    background: rgba(33, 33, 33, 1.0);
}

.container-page a {
    color: rgba(95, 151, 101, 1.0);
    text-decoration: none;
}

.container-page a:hover {
    text-decoration: underline;
}

.container-page h1 {
    font-size: 24px;
}

.container-page h2 {
    font-size: 22px;
}

.container-page h3 {
    font-size: 18px;
}

.container-page p, .container-page ul li {
    font-size: 16px;
}

.container-page p {
    text-indent: 8px;
}

.container-page p strong {
    font-size: 16px;
    font-weight: 700;
}

.sub-area {
    margin-left: 32px;
}

.sub-text {
    margin-left: 16px;
}

.sub-list {
    margin-left: 8px;
}

@media (min-width: 768px) {
    .sidebar.show .menu-toggle .icons {
        display: block;
    }
    #searchInput.show {
        width: 160px;
    }
}

@media only screen and (max-height: 536px) {
    .sidebar .links,
    .sidebar .copyright {
        display: none;
    }
}

@media (max-width: 767px) {
    .sidebar {
        width: 60px;
        z-index: 1001;
        transition: all 0.3s ease;
    }

    .sidebar .menu-toggle {
        display: inline-block;
        z-index: 1001;
    }

    .sidebar .menu-toggle .icons {
        display: block;
    }

    .sidebar.show .fenomen a .logo {
        display: block;
        color: transparent;
        -webkit-animation: fade 1s forwards;
        -webkit-animation-delay: 0.1s;
        animation: fade 1s forwards;
        animation-delay: 0.1s;
    }

    @-webkit-keyframes fade {
        from { color: transparent; }
        to { color: rgba(255, 255, 255, 1.0) }
    }

    @keyframes fade {
        from { color: transparent; }
        to { color: rgba(255, 255, 255, 1.0) }
    }

    #searchInput,
    .controls,
    .sidebar .navbar li span,
    .sidebar .fenomen a .logo,
    .bottom {
        display: none;
    }

    .sidebar.show .fenomen a .logo {
        display: block;
        margin-top: -60px;
        margin-left: 48px;
    }

    .sidebar.show {
        width: 250px;
        transition: all 0.3s ease;
    }

    #searchInput.show {
        display: block;
        width: 160px;
        margin-left: -200px;
        -webkit-animation: line 1s forwards;
        -webkit-animation-delay: 0.2s;
        animation: line 1s forwards;
        animation-delay: 0.2s;
    }

    @-webkit-keyframes line {
        from { margin-left: -200px; }
        to { margin-left: 50px }
    }

    @keyframes line {
        from { margin-left: -200px; }
        to { margin-left: 50px }
    }

    .sidebar .navbar {
        margin-top: 34px;
        transition: all 0.3s ease;
    }

    .sidebar.show .navbar {
        margin-top: 0px;
    }

    .sidebar .navbar li {
        margin-left: auto;
        margin-right: auto;
    }

    .sidebar.show .navbar li span {
        display: block;
        text-indent: 14px;
    }

    .container-page {
        margin-left: 60px;
        transition: all 0.3s ease;
    }

    .sidebar.show .container-page {
        margin-left: 250px;
    }

    .video-container {
        margin-left: 60px;
    }

    .sidebar.show .bottom {
        display: block;
        margin-left: -250px;
        -webkit-animation: bottom 1s forwards;
        -webkit-animation-delay: 0.6s;
        animation: bottom 1s forwards;
        animation-delay: 0.6s;
    }

    @-webkit-keyframes bottom {
        from { margin-left: -250px; }
        to { margin-left: 0px }
    }

    @keyframes bottom {
        from { margin-left: -250px; }
        to { margin-left: 0px }
    }

    @media only screen and (max-height: 536px) {
        .sidebar.show .links,
        .sidebar.show .copyright {
            display: none;
        }
    }
}

@media (max-width: 480px) {
    .sidebar {
        display: none;
    }

    .container-page {
        margin-left: 0px;
    }

    .video-container {
        margin: 0px;
        padding: 0px;
        position: relative;
        width: 100%;
        height: calc(100vh - 118px);
        overflow: hidden;
    }

    .video-container video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: auto;
        max-height: calc(100vh - 118px);
        object-fit: contain;
        border-radius: 0px;
    }

    .content-title {
        width: 96vw;
    }

    #video-content {
        top: 20px;
    }

    .mobile {
        width: 100%;
        height: 60px;
        z-index: 1001;
        position: fixed;
        bottom: 0px;
        left: 0px;
        display: flex;
        background: rgba(22, 22, 22, 1.0);
    }

    .mobile .navbar {
        margin: 0px;
        padding: 0px;
        list-style: none;
        display: flex;
        flex-direction: row;
        margin-left: auto;
        margin-right: auto;
    }
    
    .mobile .navbar li {
        padding: 18px 24px;
    }
    
    .mobile .navbar li a {
        color: rgba(255, 255, 255, 1.0);
        text-decoration: none;
        font-size: 16px;
    }
    
    .mobile .navbar li a .icons {
        width: 24px;
        height: 24px;
    }
    
    .mobile .navbar li a .logo-icons {
        width: 28px;
        height: 28px;
        margin-top: -3px;
    }

    .oops {
        height: calc(100vh - 140px);
    }
}

#url-input {
    height: 22px;
}

.social {
    padding-left: 0px;
    list-style: none;
    margin-top: 25px;
    margin-bottom: 25px;
}

.social-links {
    display: inline-block;
    text-decoration: none;
}

.social-icons {
    width: 30px;
    height: 30px;
}

.facebook,
.twitter,
.telegram,
.whatsapp,
.instagram,
.profile-share,
.social-add {
    padding: 10px;
    border-radius: 20%;
}

.facebook:hover,
.twitter:hover,
.telegram:hover,
.whatsapp:hover,
.instagram:hover,
.profile-share:hover,
.social-add:hover {
    border-radius: 50%;
}

.facebook:hover {
    background: rgba(24, 119, 242, 1.0);
}

.twitter:hover {
    background: rgba(28, 156, 234, 1.0);
}

.telegram:hover {
    background: rgba(51, 171, 224, 1.0);
}

.whatsapp:hover {
    background: rgba(95, 151, 101, 1.0);
}

.instagram:hover {
    background: rgba(225, 48, 108, 1.0);
}

.profile-share:hover {
    background: rgba(95, 151, 101, 1.0);
}

.social-add:hover {
    background: rgba(123, 20, 170, 1.0);
}

.search-nomedia {
    width: calc(100vw - 290px);
    height: calc(100vh - 75px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-nomedia-icon {
    width: 150px;
    height: 150px;
    opacity: .25;
}

@media (max-width: 767px) {
    .search-nomedia {
        width: calc(100vw - 80px);
    }
}

@media (max-width: 480px) {
    .search-nomedia {
        width: calc(100vw - 40px);
    }
}

#search-bar {
    display: none;
    z-index: 99999;
    position: absolute;
    top: 30px;
    left: 50%;
    opacity: 0;
    margin-left: -130px;
    transition: all 0.3s ease;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes slideUp {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

#search-bar input {
    width: 260px;
    height: 30px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 0px !important;
    background-color: rgba(33, 33, 33, 1.0);
    color: rgba(255, 255, 255, 1.0);
}

