html,
body {
    position: relative;
    height: 100%;
    /*cursor: none;*/
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--body_bg);
    overflow: hidden;
}

html,
body,
.loading {
    background: #000;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

iframe {
    width: 100%;
    height: 100%;
}

footer {
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 2px solid var(--news_left_bg);
    z-index: 1;
}

.bn-news li {
    font-weight: 600;
    padding: 0 50px;
    color: var(--news_yazi) !important;
}

.breaking-news-ticker {
    border: 0;
}

.bn-news {
    background-color: var(--news_bg);
}

.bn-label {
    color: var(--news_left_yazi);
    background-color: var(--news_left_bg);
}

.swiper-date img {
    max-width: 30px;
}

.social-content {
    overflow: hidden;
    width: max-content;
    height: 50px;
    line-height: 50px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 9999;
}

.social-content .content,
.social-content .icon {
    float: right;
}

.social-content .content {
    width: max-content;
    padding: 0 20px 0 15px;
}

.social-content .icon i {
    padding: 14px 0;
    width: 50px;
    height: 53px;
    text-align: center;
    vertical-align: middle;
}


/* Loading efect */

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.loading {
    -webkit-animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}