/*
Theme Name: HeoVL
Theme URI: https://redthemes.com/
Description: Red xTeam
Author: Red
Author URI: https://redthemes.com/
Version: 1
*/
:root {
    --color-core: #ff2070;
    --color-gray: #404040;
    --color-text: #c3c3c3;
    --color-text2: #d1d5db;
}
::-webkit-scrollbar {
    width: 10px;
    background-color: var(--color-gray);
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-core);
}
::-moz-scrollbar {
    width: 10px;
    background-color: var(--color-gray);
}

::-moz-scrollbar-thumb {
    background-color: var(--color-core);
}
a{
    text-decoration: none !important;
    color: var(--color-text) !important;
}
a:hover{
    text-decoration: none !important;
    color: var(--color-core) !important;
}
.text-core{
    color: var(--color-core) !important;
}
.text-custom{
    background: -webkit-gradient(linear, left top, right top, from(#ff8a00), to(var(--color-core)));
    background: linear-gradient(to right, #ff8a00, var(--color-core));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    position: relative;
    background-color: #ff7a10;
}
body{
    background-color: #1a1a20 !important;
    background-image: linear-gradient(to bottom, #090812, #111520 100vh, #07090e 200vh);
    color: #fff !important;
}
.bodybg{
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}
.bodybg img{
    width: 90rem;
}
/* Nav */
.navbarcustom{
    background: -webkit-gradient(linear, left top, right top, from(rgba(114, 214, 245, 0.1)), color-stop(50%, rgba(200, 193, 221, 0.1)), to(rgba(255, 148, 179, 0.1)));
    background: linear-gradient(90deg, rgba(114, 214, 245, 0.1), rgba(200, 193, 221, 0.1) 50%, rgba(255, 148, 179, 0.1));
    -webkit-box-shadow: 0px 3px 14px -1px #14141f;
    -moz-box-shadow: 0px 3px 14px -1px #14141f;
    box-shadow: 0px 5px 10px -1px #14141f;
}
.logo{
    font-weight: 700;
    font-size: 1.5rem !important;
    line-height: 2rem;
}
.navbarcustom input::placeholder {
    color: var(--color-text);
    opacity: 1;
}
.navbarcustom input::placeholder::-ms-input-placeholder { 
    color: var(--color-text);
}
.navbarcustom input{
    box-shadow: none !important;
    width: 100%;
    height: 40px;
    border-radius: 6px;
    background-color: #0d0d0d !important;
    border: none;
    padding: 0 60px 0 20px;
    color: #fff !important;
}
.navbarcustom input:focus, .navbarcustom input:active, .navbarcustom input:hover{
    background: #0d0d0d;
    color: #fff;
    border: none;
}
.navbarcustom .submit, .navbarcustom .submit:hover{
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    overflow: hidden;
    background: transparent;
    border: 0;
    right: 5px;
    color: var(--color-core);
}
.dropdown-menu{
    width: 370px;
    --bs-dropdown-bg: #0d0d0d !important;
}
.dropdown-item.active, .dropdown-item:active, .dropdown-item:focus, .dropdown-item:hover {
    background-color: transparent !important;
}
/*index*/
.section-title{
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
    font-weight: 700;
}
.box-title{
    justify-content: space-between;
}
.box-title h2, .sidebar-title h2{
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
}
.item h3, .suggest-category h3, .sidebar-item h3{
    font-size: 15px;
    font-weight: 400;
}
.item img{
    border-radius: 6px;
}
.item:hover .cripple {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    border-radius: 50%;
    border: 1px solid #fff;
    animation: ripple 900ms ease-out infinite;
}
@keyframes ripple{0%{transform:scale(1)}40%{transform:scale(1.25);opacity:1}90%{transform:scale(1.5)}100%{transform:scale(1.75);opacity:0}}
.item .thumb{
    padding-bottom: 63%;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: hidden;
}
.item:hover .thumb:after{
    opacity: .6;
}
.item:hover .thumb:before{
    opacity: 1;
    transform: scale(1);
}
.item .thumb:after{
    content: "";
    background-color: #263238;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: .2s;
    opacity: 0;
}
.item .thumb:before{
    content: "\f04b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--color-core);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 3rem;
    height: 3.2rem;
    line-height: 3.2rem;
    padding-left: 3px;
    border-radius: 50%;
    text-align: center;
    font-size: 1.1rem;
    z-index: 2;
    transform: scale(0);
    background-color: rgba(0, 0, 0, .4);
    box-shadow: 0 0 0 2px #fff, 0 0 10px rgba(0, 0, 0, .5);
    transition: .2s;
    opacity: 0;
}
.suggest-category span{
    font-size: .75rem;
    line-height: 1rem;
}
.suggest-category img{
    height: 3.5rem;
    width: 3.5rem;
    -o-object-fit: cover;
    object-fit: cover;
}
.suggest-category, .actor-list{
    --tw-border-opacity: 1;
    border: rgb(55 65 81 / var(--tw-border-opacity)) 1px solid;
}
.actor-list img{
    height: 80px;
    width: 80px;
    -o-object-fit: cover;
    object-fit: cover;
}
/* single */
.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}
.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* sidebar */
.truncate-multiline {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sidebar-item .thumb {
    padding-bottom: 28%;
}
/* pagination */
.page-item span{
    background-color: var(--color-core) !important;
    border: 0 !important;
    color: #0d0d0d !important;
    padding: 10px 20px !important;
    cursor: not-allowed;
    font-size: 15px;
    font-weight: bold;
}
.page-item a{
    background-color: #0d0d0d !important;
    border: 0 !important;
    color: var(--color-text) !important;
    padding: 10px 20px !important;
    font-size: 15px;
    font-weight: bold;
}
.page-item a:hover{
    color: #0d0d0d !important;
    background-color: var(--color-core) !important;
}
/*footer*/
.footer{
    padding: 20px 0 40px 0;
    color: var(--color-text);
}
.copyright{
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 1.25rem;
    margin-bottom: .75rem;
    text-transform: uppercase;
}
@media (max-width: 576px){
    .suggest-category img{
        height: 40px;
        width: 28px;
    }
    .suggest-category h3{
        font-size: 12px;
        font-weight: 400;
    }
}