@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root{
    --color-one: #e50914;
    --color-one-secondary: rgba(229, 9, 20, 0.7);

    --color-two: #1a1a1a;
    --color-two-secondary: #202020;
    --color-two-border: rgba(121, 119, 119, 0.2);

    --color-three: #fff;     

    --color-four-one: #202020;
    --color-four-two: #353535;
    --color-four-three: #ffffff00;
    --color-four-four: #333232;
    --color-four-five: #514f4f;

    --color-five-one: #141414;
    --color-five-two: #3b3b3b;

    --color-six-one: #0db616;
    --color-six-two: #057a0b;

    --color-seven-one: #ffc107;
    --color-seven-two: #ebb105;
    
    --datatables-background: rgb(59,65,77);
    --datatables-border: rgb(59, 65, 75);
    --datatables-color: rgb(149,159,185);
    --datatables-page-link-color: rgb(149,159,185);
    --datatables-page-link-active-color: rgb(92,124,248);
    --datatables-page-link-border-color: rgba(149,159,180,0.3);
    --datatables-page-link-background: rgb(59,65,77);

    --site-border-color-one: rgba(0, 0, 0, 0.175); 
    --site-border-color-two: #27BBB2; 

    --btn-four-background: #ff5e00;
    --btn-four-hover-background: #db5305;
    --btn-four-color: #fff;
    --btn-four-hover-color: #fff;

    --btn-five-background: #0656ec;
    --btn-five-hover-background: #054dd1;
    --btn-five-color: #fff;
    --btn-five-hover-color: #fff;

    --card-background-one: var(--color-two);
    --card-color-one: #fff;
    --card-one-hover: var(--color-two-secondary);
    --card-one-border: var(--color-two-border);

    --text-color-white: #fff;
    --text-green: #0db616; 
    --text-yellow: #e2af05;
    --text-red: #ec3406;
    --text-blue: #0656ec;
    --text-purple: rgb(92,124,248);
    --text-color: #fff;
    --text-color-hover: #e50914;

    --page-opacity-background: #000;

    --footer-nav-item-color: #27BBB2;
    --footer-nav-item-hover-color: #21948c; 
    --footer-copyright-color: #21948c;

    --stream-list-border: rgb(49,55,66);

    --modal-stream-info-img-border: rgb(49,55,66);
    --modal-stream-icon-loading-color: rgb(149, 159, 185);
    --modal-stream-img-background: rgb(41,46,57);
    --modal-stream-list-border: rgb(59, 65, 75);
    --modal-stream-episodio-hover: rgb(41,46,57);
    --modal-stream-episodio-thumb-hover: rgb(49,55,66);

    --modal-player-background: #000;
    --modal-player-icon-color: #fff;

    --perfil-selecionar-background: rgb(49,55,66);
    --perfil-selecionar-background-hover: rgba(45,51,61,1);
    --perfil-selecionar-color: #fff;

}
body{
    font-family: "Roboto", sans-serif;
    font-style: normal;
    background-color: var(--color-five-one);
}
.body-background-image{
    background-color: rgba(0, 0, 0, 0.8); 
    background-blend-mode: overlay;
    min-height: 100vh; 
    height:100%; 
    background-size: cover; 
    background-repeat:no-repeat;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px transparent;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: var(--color-five-two);
    border-radius: 10px;
}
h1,h2,h3,h4,h5,h6,p,span,small{
    color: var(--text-color);
}
a{
    text-decoration: none;
    color: var(--text-color);
}
a:hover{
   color: var(--text-color-hover);
   transition: 0.5s;
}

.cursor-pointer{
    cursor: pointer;
}
.img-ingresso-rounded-200{
    width: 250px;
    height: 150px;
    border-radius: 10px;
}

.text-green{
    color: var(--color-six-one);
}
.text-yellow{
    color: var(--text-yellow);
}
.text-red{
    color: var(--text-red);
}
.text-blue{
    color: var(--text-blue);
}
.text-purple{
    color: var(--text-purple);
}

.video-js{
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 16/9;
}

.list-group-item{
    background-color: var(--color-two);
    border-color: var(--color-two-border);
    color: var(--color-three);
}