/*fonte anterior <link href='https://fonts.googleapis.com/css?family=Abel' rel='stylesheet'>*/
@import url('https://fonts.googleapis.com/css2?family=Roboto');

:root{
	--font-padrao: 'Roboto'
}

body{
	background-color: #FBFBFB;
	font-family: var(--font-padrao);
}

h1,h2,h3,h4,h5,h6{
	font-family: var(--font-padrao);
}

.bg-img-empresa{
	background: top center url(resources/Imagens/foto-empresa.jpg) no-repeat;
}

.login-margin-top{
	margin-top: 100px;
}
.font-tema{
	font-family: var(--font-padrao);
}

.vertical-bottom{
	vertical-align: bottom !important;
}

/*
.bg-success{
	background-color: #38b44a;
}



.bg-warning{
	background-color: #efb73e
}

.bg-danger{
	background-color: #df382c;
}

.bg-vermelho{
	background-color: #e02c2c !important;
}

.bg-verde{
	background-color: #53bd53 !important;
}
*/


.registroBusca{
	cursor: pointer;
}
/*
.registroBusca td{
	height: 37px;
}*/

div#loader img{
	z-index: 1000;
}

#circle-icon{
	background-color: gray;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	text-align: center;
	line-height: 30px;
	vertical-align: middle;
	padding: 5px;
}


/**
* CSS Para tela Busca.php
*/

.height-viewport{
	height: calc(100vh - 80px);
}


/**
* Colocando efeito no toast do bootstrap.
*/

#toast-busca {
	position: fixed;
	top: 105px;
	right: 10px;
	min-width: 215px;
	font-family: var(--font-padrao);
	z-index: 2000;
	right: 10px;
	animation: toast-animate 0.20s ease-in;
}

@keyframes toast-animate{
	from {
		right: -300px;
	}
	to {
		right: 10px;
	}
}

/**
* CSS para mudar o scroll.
*/

/* total width */
.scrollbar::-webkit-scrollbar {
    background-color:#fff;
    width:16px
}

/* background of the scrollbar except button or resizer */
.scrollbar::-webkit-scrollbar-track {
    background-color:#fff
}
.scrollbar::-webkit-scrollbar-track:hover {
    background-color:#f4f4f4
}

/* scrollbar itself */
.scrollbar::-webkit-scrollbar-thumb {
    background-color:#babac0;
    border-radius:16px;
    border:5px solid #fff
}
.scrollbar::-webkit-scrollbar-thumb:hover {
    background-color:#a0a0a5;
    border:4px solid #f4f4f4
}

/* set button(top and bottom of the scrollbar) */
.scrollbar::-webkit-scrollbar-button {display:none}

/**
* Scroll Dark.
*/

/* total width */
.scrollbar-dark::-webkit-scrollbar {
    background-color:#f9f9f9;
    width:16px
}

/* background of the scrollbar except button or resizer */
.scrollbar-dark::-webkit-scrollbar-track {
    background-color:#d2d2d2
}
.scrollbar-dark::-webkit-scrollbar-track:hover {
    /*background-color:#f4f4f4*/
}

/* scrollbar itself */
.scrollbar-dark::-webkit-scrollbar-thumb {
    background-color:#827a7a;
    border-radius:16px;
    border:5px solid #d2d2d2
}
.scrollbar-dark::-webkit-scrollbar-thumb:hover {
    background-color:#827a7a;
    border:4px solid #d2d2d2
}

/* set button(top and bottom of the scrollbar) */
.scrollbar-dark::-webkit-scrollbar-button {
	display:none
}

ul.navbar-nav > li {
	position: relative;
}
.navbar-nav:first-child .nav-item a.active:before {
    position: absolute;
	content: "";
	bottom: 0;
	left: 0;
    width: 100%;
    height: 20%;
    background-color: rgb(230, 118, 84);
}