#toggleMenu {
    display: none;
}

/* videojs */
.embed_post-dimensions.vjs-fluid:not(.vjs-audio-only-mode) {
    padding-top: 60.777778%;
}

.vjs-remaining-time.vjs-time-control.vjs-control {
    display: none;
}

.video-js .vjs-control-bar {
    background-color: transparent;
}

.single_iframe .single_iframe-list {
    display: none;
}

.single_iframe:hover .single_iframe-list {
    display: block;
    visibility: visible;
    opacity: 1;
    transition: visibility 1s, opacity 1s;
}

/* HEADER */
.page_header {
    display: block;
    z-index: 3;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.page_header-sidebar {
    text-align: center;
}

.page_header-inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    background-color: var(--primary-color);
}

.page_header-content i {
    font-size: 2rem;
    color: var(--white-color);
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 997;
}

.page-header-logo img {
    max-width: 16%;
}


/* MAIN */
.sidebar {
    -webkit-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    display: block;
    z-index: 3;
    position: fixed;
    top: 75px;
    width: 250px;
    height: calc(100vh - 75px);
    padding: 30px 20px 30px 0;
    overflow-y: auto;
    border-right: 1px dashed #2d2d2d;
    background-color: #131315;
    transition: all 0.25s linear;
    padding: 20px;
}

.sidebar_items {
    padding: 6px 6px;
    margin-bottom: 10px;
}

.sidebar_items:last-child {
    margin-bottom: 0;
}

.sidebar_link {
    text-decoration: none;
    color: var(--white-color);
    font-size: 1.6rem;
    width: 100%;
    display: block;
}

.sidebar_link .flag-icon {
    margin-right: 6px;
}

.page_wrapper .page_content {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-grow: 1;
    align-items: stretch;
    padding-top: 75px;
}

.page_wrapper .page_main {
    display: block;
    position: relative;
    /* height: calc(100vh - 75px);
    padding: 45px;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh; */
}

.sidebar+.page_main {
    -webkit-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    left: 250px;
    width: calc(100% - 250px);
    padding: 40px 60px;
    transition: all 0.25s linear;
    background-color: #141414;
    /* background-color: var(--black-color); */
}

#page_main {
    min-height: 100vh;
}

.live_wrapper {
    margin-bottom: 30px;
}

.live_wrapper:last-child {
    margin-bottom: 0;
}

.live_heading {
    margin-bottom: 12px;
    font-size: 2.2rem;
    color: var(--white-color);

}

.live_heading span {
    box-shadow: inset 0 -3px var(--primary-color);
    padding-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.live_items {
    position: relative;
    text-decoration: none;
    border-radius: var(--border-radius-main);
    overflow: hidden;
}

.live_box {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.live_items-img {
    width: 248px;
    height: 160px;
}

.live_items-img img {
    max-height: 100%;
    object-fit: cover;
    width: 100%;
    height: auto;
}

.live_items-title {
    display: -webkit-box;
    max-height: 3.2rem;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 1;
    line-height: 1.5;
    padding: 0 6px;
    position: absolute;
    bottom: 0;
    background-color: var(--black-transparent);
    width: 100%;
    color: var(--white-color);
    font-size: 1.2rem;
}

.live_items-badge-list {
    position: absolute;
    top: 6px;
    left: 6px;
    color: var(--white-color);
    font-size: 1.2rem;
    display: flex;
}

.live_items-badge-item {
    background-color: var(--black-transparent);
    padding: 2px 4px 4px 4px;
    border-radius: var(--border-radius-mini);
    margin-right: 4px;
}

.live_items-badge-item:last-child {
    margin-right: 0;
}

.live_items-badge-item.live_animate {
    animation: colorChange 1s infinite alternate;
}

.live_items-views {
    position: absolute;
    top: 6px;
    right: 6px;
    background-color: var(--black-transparent);
    padding: 0px 6px;
    border-radius: var(--border-radius-main);
    color: var(--white-color);
    font-size: 1.2rem;
}

.live_items-overlay {
    background-color: #00000091;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
}

.live_items-play {
    position: absolute;
    color: var(--white-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    font-size: 4rem;
    animation: zoomInOut 1.2s ease-in-out infinite;
}

/* SINGLE */
.single_wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.single_iframe {
    position: relative;
    flex: 2;
}

.video-container {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#single_embed video {
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single_iframe-live,
.single_iframe-viewer {
    position: absolute;
    color: var(--white-color);
    padding: 4px 14px;
    border-radius: var(--border-radius-main);
    font-size: 1.6rem;
}

.single_iframe-live {
    top: 10px;
    left: 10px;
    color: var(--white-color);
    font-weight: bold;
    animation: colorChange 2s infinite alternate;
}

.single_iframe-viewer {
    top: 10px;
    right: 10px;
    background-color: var(--black-transparent);
}

.single_iframe-action {
    background-color: #3c3c3c;
    color: var(--white-color);
    /* display: flex; */
    /* justify-content: space-between; */
    padding: 10px 12px;
}

.single_iframe-heart {
    font-size: 3rem;
    display: flex;
    align-items: center;
}

.single_iframe-sendtip {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single_iframe-sendtip a {
    color: #f8f8f8;
    padding: 4px 10px;
    text-decoration: none;
    font-size: 1.6rem;
    margin-right: 12px;
    border-radius: 50px;
    background-color: #61922f;
    transition: all 0.5s ease;
}

.single_iframe-sendtip a:nth-child(1) {
    background-color: rgba(216,216,216,.2);
}

.single_iframe-sendtip a:last-child {
    margin-right: 0;
}

.single_iframe-sendtip a i {
    background-color: rgba(0, 0, 0, .4);
    padding: 6px;
    border-radius: 50%;
}

.single_iframe-sendtip a:nth-child(1):hover {
    background-color: rgba(216,216,216,.4);
}

.single_iframe-sendtip a:nth-child(2):hover {
    background-color: #82c043;
}

.single_boxchat {
    background-color: #3c3c3c;
    color: var(--white-color);
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    position: relative;
}

#new-message-btn {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 6px 20px;
    border-radius: 20px;
    cursor: pointer;
    animation: opacity-fade-show .3s forwards;
    display: none;
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: 90ms ease-in-out;
}

@keyframes opacity-fade-show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.single_boxchat-tab {
    display: flex;
    justify-items: flex-start;
    align-items: center;
    background-color: #212121;
    box-shadow: inset 0 -2px var(--primary-color)
}

.single_boxchat-tab-items {
    padding: 10px 20px;
}

.single_boxchat-items {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* background-color: #363a3d; */
    border-bottom: 1px dashed #464646;
}

.single_boxchat-items:last-child {
    border-bottom: 0px dashed #464646;
}

.single_boxchat-name,
.single_boxchat-content {
    padding: 10px;
}

.single_boxchat-name {
    color: #527094;
    flex: 1;
    display: -webkit-box;
    max-height: 6rem;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    line-height: 1.5;
}

.single_boxchat-content {
    flex: 3;
}

.single_boxchat-list {
    height: 100%;
    overflow-y: scroll;
    max-height: 575px;
}


.single_boxchat-list::-webkit-scrollbar {
    width: 12px;
}

.single_boxchat-list::-webkit-scrollbar-thumb {
    height: 56px;
    -webkit-border-radius: var(--border-radius-main);
    -moz-border-radius: var(--border-radius-main);
    border-radius: var(--border-radius-main);
    border: 2px solid transparent;
    background-clip: content-box;
    background-color: #aaa;
}

.single_boxchat-list::-webkit-scrollbar-thumb:hover {
    background-color: #4e4e4e;
}

.single_boxchat-input {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px;
    background-color: #212121;
}

.single_boxchat-input input {
    width: 100%;
    background-color: #000;
    outline: none;
    border: none;
    height: 40px;
    padding: 0 10px;
    border-radius: var(--border-radius-main) 0 0 var(--border-radius-main);
    color: var(--white-color);
}

.single_boxchat-input input::placeholder {
    color: var(--white-color);
}

.single_boxchat-btn {
    background-color: #4986c5;
    color: var(--white-color);
    outline: none;
    border: none;
    padding: 0 20px;
    height: 40px;
    border-radius: 0 var(--border-radius-main) var(--border-radius-main) 0;
}

.single_title {
    font-size: 1.6rem;
    color: var(--white-color);
    margin-bottom: 20px;
    overflow-wrap: break-word;
    white-space: normal;
}

.single_related {
    margin-bottom: 20px;
}

.single_related-title {
    color: var(--white-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
    box-shadow: inset 0 -3px var(--primary-color);
    padding-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
}

.single_iframe-fluid {
    display: grid;
    grid-template-columns: 80% 20%;
    width: 100%;
}

.single_video_related {
    color: #fff;
    margin-left: 10px;
}
