@import url('https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700');
@import 'animate.css';
@import 'awesome.css';
@import 'tooltip.css';

*{ padding: 0; }
ul{ list-style: none; }
div, input, textarea, li, span, label{ box-sizing: border-box; }

a{ 
    width: inherit; 
    text-decoration: none; 
    color: inherit; 
    cursor: pointer; transition:0.3s;
}

a:hover{ 
    width: inherit; 
    text-decoration: none; 
    color: var(--color3); 
    cursor: pointer;
}

img{
    max-width: 100%;
}

button{ background-color: transparent; cursor: pointer; }
button, input, textarea, select{ border: none; outline: none; }
header, nav, content, footer, div, form, input, textarea, select, li, button, label{ float: left; } 
html{ -webkit-tap-highlight-color: rgba(0,0,0,0); }
html, body{ min-width: 100%; min-height: 100%; }

body{
	background-color: var(--color2);
	background-image: url('https://i.imgur.com/jyFQeIy.png');
	font-family: 'Rubik', sans-serif;
	margin: 0; 
	word-wrap: break-word;
}

:root{
    --color1: #e5e5e5;
    --color2: #1a1a1a;
    --color3: #ffffff;
    --color4: #262626;
    --color-buttons: #06a4bd;
    --color-not-home: #06a4bd;
    --color-eve-home: #d9578a;
    --color-emb-home: #d9578a;
    --color-room-home: #06a4bd;
    --color-roomimg-home: #eef0f2;
    --color-userdest-home: #d9578a;
    --color-userdestimg-home: #eef0f2;
    --color-forum-home: #06a4bd;
    --color-forumtitle-home: #1a1a1a;
    --color-rankf-home: #d9578a;
    --color-galeria-home: #06a4bd;
    --color-top-home: #d9578a;
    --color-horario: #d9578a;
    --color-horario-buttons: #e5e5e5;
}

body::-webkit-scrollbar {
  width: 12px;               /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: var(--color1);        /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: var(--color-buttons);    /* color of the scroll thumb */
  border-radius: 12px;       /* roundness of the scroll thumb */
  border: 3px solid var(--color1);  /* creates padding around scroll thumb */
}

ol, ul{
    padding: 0;
    width: 100%!important;
}

.container{
    float: none;
}

.row{
    width:100%;
}

#paginationEmblems, [data-content="pagination"] > #results{
    width: 100%;
}

#alerts{
	width:100%;
	height:100%;
	position:fixed;
	top:0;
	left:0;
	background-color:rgba(0,0,0,0.8);
	z-index:99999;
	display: none;
	opacity:0;
}
#alerts .alert{
	width:300px;
	height:auto;
	position:absolute;
	top:50%;
	margin-left:calc(50% - 150px);
	background-color:var(--color1);
	border-radius: 12px;
	transform:translateY(-50%);
	padding: 0;
}
#alerts .alert .title{
	width: 100%;
	height: 45px;
	padding: 0 12px;
	position: relative;
	background-color: var(--color-buttons);
	border-radius: 12px;
	font-size: 13px;
	color: var(--color1);
	line-height: 45px;
}
#alerts .alert .title button{
	width: 30px;
	height: 30px;
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: #FFF;
	border-radius: 3px;
	text-align: center;
	font-size: 11px;
	color: #666;
	line-height: 30px;
}
#alerts .alert .content{
	width: 100%;
	height: auto;
	padding: 12px;
	font-size: 12px;
	color: var(--color2);
}
#alerts .alert .data{
	width: 100%;
	height: 30px;
	padding: 0 12px 12px 33px;
	margin: 0;
	position: relative;
	font-size: 11px;
	color: var(--color2);
	line-height: 30px;
}
#alerts .alert .data .avatar{
	width: 33px;
	height: 45px;
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius : 0 0 0 12px;
}

#center{
	width: 990px;
	margin: 0 auto;
	float: none;
}

.Ellipses{
	padding: 2px 0;
	margin: -2px 0;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.quote{
    width: 100%;
    height: auto;
    margin: 12px 0 0 0;
}

#player{
   width: 780px;
    height: auto;
    position: absolute;
    right: 50%;
    z-index: 9999;
    display: flex;
    border-radius: 10px;
    left: 10px;
}

#player #center{
    width: auto;
}

#player .avatar{
	width: 64px;
	height: calc(100% + 18px);
    margin: -18px 0 0 0;
	position: relative;
}
#player .avatar::before{
	width: 13px;
	height: 36px;
	position: absolute;
	right: 10px;
	bottom: 0;
	background-image: url('../img/playerMicro.png');
	content: '';
}
#player .avatar i{
	position: absolute;
	bottom: 5px;
	left: 0;
	font-size: 10px;
	opacity: 0.7;
}
#player .data{
    width: auto;
    height: 50px;
    margin: 6px 0 6px 6px;
    padding: 12px;
    background-color: var(--color3);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color2);
    display: flex;
    align-items: center;
    justify-content: center;
}
#player .data.unicos{
	/*width: auto;
	min-width: 40px;
	max-height: 70px;*/
}

#player .data.volume{
	padding-right: 10px;
}

#player .data.volume input[type=range]{
    width: 100px;
    background-color: transparent;
    float: right;
    -webkit-appearance: none;
    margin: 0;
}

#player .data.volume input[type=range]::-webkit-slider-runnable-track{
	width: 100%;
	height: 5px;
	background-color: rgba(0,0,0,0.1);
	border-radius: 3px;
	cursor: pointer;
}

#player .data.volume input[type=range]::-webkit-slider-thumb{
	width: 14px;
	height: 14px;
	margin-top: -5px;
	background-color: #666;
	border-radius: 50%;
	-webkit-appearance: none;
}

#player .data.volume input[type=range]:focus::-webkit-slider-runnable-track{ background-color: rgba(0,0,0,0.15); }


#player button{
    width: 50px;
    height: 50px;
    margin: 6px 0 6px 6px;
    padding: 12px;
    background-color: var(--color3);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color2);
    display: flex;
    align-items: center;
    justify-content: center;
}

#alert{
    width: 100%;
    height: auto;
    padding: 12px;
    background-color: rgb(22, 22, 33);
    border-radius: 12px;
    font-size: 12px;
    color: var(--color1);
}
#alert.red{
	background-color:#dc3545;
}
#alert.green{
	background-color:#198754;
}

header{
	width: 100%;
    height: 420px;
    position: relative;
    background-image: url('https://i.imgur.com/N73n42M.png');
    background-size: cover;
    background-position: center;
    z-index: 10;
}

header nav{
	height: 70px;
	background: linear-gradient(0deg, #0F2A55 8%, #ffffff00);
	background-color: #08161e;
    float: left;
    width: 100%;
    box-shadow: rgba(255, 255, 255, 0.10) 0px 2px 0px;
}

header nav a:hover{ text-decoration: none; }

header nav > ul > li{
	width: auto;
	height: 70px;
	position: relative;
}

header nav > ul > li p{
	width: auto;
	height: 70px;
	padding: 0 10px;
	font-size: 13px;
	font-weight: 700;
    color: white; 
	line-height: 70px;
	transition: color 0.3s;
	cursor: pointer;
	margin: 0;
}

header nav > ul > li:hover p{ color: var(--color-buttons); }

header nav > ul > li > ul{
    width: 135px!important;
    height: auto;
    position: absolute;
    top: 40px;
    right: calc((100% - 135px) / 2);
    background-color: var(--color3);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    padding: 9px 12px 9px 12px;
}

header nav > ul > li > ul::before{
    border: 5px solid transparent;
    border-bottom-color: var(--color3);
    position: absolute;
    top: -10px;
    right: calc(50% - 5px);
    content: '';
}

header nav > ul > li:hover > ul{ top: 55px; opacity: 1; visibility: visible; }

header nav > ul > li > ul li{
    width: 100%;
    height: auto;
    padding: 3px 0;
    text-align: right;
    font-size: 12px;
    font-weight: 400;
    color: var(--color2);
    line-height: initial;
    transition: 0.3s;
}

header nav > ul > li > ul li:hover{ 
    padding-left: 15px;
    transform: scale(1.05);
}

header form, header .userArea{
    width: 512px;
    height: 45px;
    margin-top: calc(-95px / 2);
    float: right;
}

header form button{
    width: auto;
    height: 45px;
    margin-left: 6px;
    padding: 12px;
    background-color: var(--color-buttons);
    border-radius: 3px;
    border: 1px solid #000000;
    font-size: 11px;
    color: #FFF;
    font-weight: 450;
    transition: 1s;
}
header form button:hover {
    background-color: #0e7c8e;
}

#formLogin .login {
    background-color: var(--bs-success);
    transition: 1s;
}
#formLogin .login:hover {
    background-color: #146e45;
}

header form a button{ margin-left: 0; }

header form input{
	width: 158px;
	height: 45px;
	margin-left: 5px;
	padding: 12px;
	background-color: #FAFAFA;
	border-radius: 3px;
    border: 1px solid #000000;
	font-size: 11px;
	color: #666;
}

.register{
    margin-left: 6px;
    position: absolute;
}

header .avatar{
	width: 64px;
	height: 80px;
	margin: -10px 0 0 0;
	float: right;
}

header .func{ width: auto; margin-top: 2px; float: right; text-align: right; font-size: 9px; color: #666; }
header .func a:hover{ text-decoration: underline; }

header .userArea button{
width: auto;
    height: 45px;
    margin-left: 6px;
    padding: 12px;
    background-color: var(--color-buttons);
    border-radius: 12px;
    font-size: 10px;
    color: var(--color1);
    font-weight: 600;
}

header .userArea button.logout{
    background-color: var(--bs-danger);
}

header .logo {
    max-width: 190%;
    max-height: 104%;
    margin-top: 118px;
    margin-left: -179px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, .5));
}
header .logo:hover{
    background-image: url(https://cdn.discordapp.com/attachments/1091852355177283604/1093667233877721128/RadioHabblive_Vetor.png);
    background-repeat: no-repeat;
    max-width: 150%;
    max-height: 200%;
    
    
}


header .logodiv{
   width: 101%;
    height: 259px;
    padding: 50px 46px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
}


header #ballon{
	width: 225px;
	height: 50px;
	padding: 0 10px;
	margin: 10px 0 0 25px;
	background-color: #FFF;
	border-radius: 5px;
	text-align: center;
	font-size: 12px;
	color: #666;
	line-height: 50px;
}

header #slide{
    width: 500px;
    height: 250px;
    margin: 65px 0;
    position: relative;
    float: right;
    background: var(--color2);
    border-radius: 12px;
}

header #slide .link-slide{
    width: 100%;
    height: 100%;
    display: flex;
}

header #slide .navslide{
    width: calc(100% + 60px);
    height: auto;
    position: absolute;
    left: -30px;
    top: calc(50% - 15px);
    z-index: 999;
    display: block;
}

header #slide .navslide button{
    text-align: center;
    font-size: 18px;
    color: #FFF;
    transition: opacity 0.3s;
}

header #slide .navslide button:last-of-type{ float: right; }
header #slide .navslide button:hover{ opacity: 0.7; }

header #slide ul{
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin: 0;
}

header #slide ul li{
	width: 100%!important;
    height: 100%!important;
    position: absolute;
    background-position: center;
    background-size: cover;
    border-radius: 12px;
}

header #slide ul li .data{
    width: calc(100% - 24px);
    height: auto;
    position: absolute;
    margin: 0 12px;
    bottom: 12px;
    background-image: linear-gradient(90deg, #121212, transparent);
    border-radius: 12px;
    padding: 12px;
}

header #slide ul li .data p{ 
    font-size: 12px; 
    color: #FFF;
    margin: 0;
    padding: 2px 0;
}

header #slide ul li .data p:first-of-type{ 
    font-size: 15px; 
    font-weight: 600;
}

footer{
    width: 100%;
    height: auto;
    padding: 24px 0 74px 0;
    background-image: linear-gradient(to top, #0F2A55, #08161E);
    box-sizing: border-box;
}

footer #logo{
	width: 40px;
	height: 40px;
	background-image: url('../img/xxxx.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

footer #copy{
    font-size: 12px;
    color: #FFF;
}

footer p{
    margin-bottom: 6px;
}

content{
	width: 100%;
	height: auto;
}

/*content #container{
	width: 100%;
	height: auto;
	padding: 12px 0;
}*/

content .item > .title{
    width: 100%;
    font-size: 1.75rem;
    color: var(--color1);
    font-weight: 500;
}

content .item > .title > .i{
    margin-right: 0.75rem;
    position: relative;
    font-size: 1.75rem;
}

content .item > .title > .functions{
	width: auto;
	height: 35px;
	float: right;
}

content .item > .title > .functions > button{
    width: auto;
    height: 35px;
    min-width: 35px;
    margin-left: 6px;
    position: relative;
    background-color: var(--color1);
    border-radius: 100%;
    text-align: center;
    font-size: 13px;
    color: var(--color2);
    line-height: 32px;
    transition: opacity 0.3s;
    z-index: 999;
}

content .item > .title > .functions button:not(.more):hover{ opacity: 0.7; }

content .item > .title > .functions > button ul{
    width: 100px!important;
    height: auto;
    position: absolute;
    top: 40px;
    right: calc(6px - 12px);
    background-color: var(--color1);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    padding: 9px 12px 9px 12px;
}

content .item > .title > .functions > button ul::before{
	border: 5px solid transparent;
    border-bottom-color: var(--color1);
    position: absolute;
    top: -10px;
    right: 12px;
    content: '';
}

content .item > .title > .functions > button ul li{
    width: 100%;
    height: auto;
    padding: 3px 0;
    text-align: right;
    font-size: 12px;
    font-weight: 400;
    color: var(--color2);
    line-height: initial;
    transition: 0.3s;
}

content .item > .title > .functions > button ul li:hover{ 
    padding-left: 15px;
    transform: scale(1.05);
}

content .item > .title > .functions > button:hover ul{
	top: 45px;
	opacity: 1;
	visibility: visible;
}

content .item > .title > .functions > button:first-of-type{ 
    margin-left: 0; 
}

content .item > .title > .functions > form{
	width: 100px;
	height: 35px;
	margin-right: 5px;
	background-color: #FFF;
	border-radius: 5px;
}

content .item > .title > .functions > form > input{
	width: 70px;
	height: 25px;
	margin: 5px 0 0 5px;
	background-color: transparent;
	font-size: 11px;
}

content .item > .title > .functions > form > button{
	width: 20px;
	height: 25px;
	margin: 5px 0 0 2px;
	background-color: transparent;
	font-size: 12px;
	color: #666;
}

content .item > .content{
	width: 100%;
	height: auto;
	margin-top: 12px;
}