/* BUSCA DINAMICA */

#dlgBuscaDinamica .info-status{
	font-size: 0.87rem;
    color: white;
    padding: 0.25rem;
    border-radius: 0.5rem;
    text-align: center;
    margin: 0;
}
			
#dlgBuscaDinamica .message{
	font-size: 1rem;
    width: 100%;
    display: grid;
    text-align: center;
    margin-top: 8px;
}

.search-box-general{
	position: absolute;
    top: 60px;
    background: #00000021;
    width: 100vw;
    height: 100vh;
    display: none;
    z-index: 6;
}

.search-box-general .search-item{
	background: white;
    border-radius: 4px 24px 24px 24px;
    padding: 12px;
    box-shadow: 1px 1px 3px #eee;
    margin-top: 8px;
    cursor: pointer;
    display: block;
}

.search-box-general .search-item:hover{
	background: #fffff5;
}

.search-box-general .search-box-info{
	background: #f5f5f5;
    width: 450px;
    height: calc( 100vh - 100px );
    margin: -8px calc(50% - 316px);
    overflow: auto;
    border-radius: 8px;
    padding: 16px;
    font-size: 13px;
}

.search-box-info-scroll{
	background: #EFEBE2;
    padding: 8px;
    height: calc( 100vh - 200px);
    overflow: auto;
    border-radius: 5px;
}

.not-finded-info{
	background: white;
    padding: 16px 8px 16px 8px;
    border-radius: 4px 16px 16px 16px;
}

.not-finded-info p + p{
	margin: 0;
}
	
.not-finded-info p{
	margin-top: 8px;
	font-weight: 500;	
}

.card-not-finded .logo{
	width: 35px;
    height: 35px;
    border-radius: 999px;
    background: white;
    padding: 2px;
    margin-right: 8px;
}

.card-not-finded + .card-not-finded{
	margin-top: 8px;
}

.search-div{
	position: fixed;
    left: calc( 50% - 180px);
    width: 350px;
    margin-top: 5px;
    z-index: 2;
    display: flex;
    column-gap: 8px;
    line-height: 35px;
    font-weight: 500;
    font-size: 14px;
}

.search-div input{
	background: #ffffff;
    border-radius: 8px;
    color: #000 !important;
    margin-top: 2px;
    height: 32px !important;
    border: solid 1px #eee;
}

.search-div input::placeholder{
	text-transform: none;
	color: #d3d3d3;
	white-space: pre-wrap;
}

.card-novidade{
	display: flex;
	padding: 2px;
	border-radius: 10px;
}
       		
.card-novidade:hover{
	background: #f5f5f5;
}
       		
.card-novidade .image_card {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 8px;
}
       		
.card-novidade .image_card img{
	width: 100%;
    height: 100%;
    object-fit: cover;
}
       		
.card-novidade .text_card {
    width: calc(70% - 1rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding: 0;
}

.card-novidade .text_card h2 {
    font-size: 1.4rem;
    color: #1c1c1c;
    transition: all 0.2s ease-in-out;
    margin-bottom: 2rem;
}

.card-novidade .text_card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 300;
    color: #1c1c1c;
}

.card-novidade .autor {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.card-novidade .autor img{
	width: 1.23rem;
	margin-right: 8px;
}

/* FIM BUSCA DINAMICA */