html,
body {
	top: 0!important;
}
/*::: DOCUMENTS TABLE FEATURE :::::*/
.documentos-doc1 {
	position: relative;
	width: 100%;
	text-align: start;
	color: #000000;
	font-size: 20px;
	font-weight: normal;
	font-style: italic;
}

.documentos-doc1:hover {
	color: #583716;
}

.documentos-doc2 {
	position: relative;
	width: 100%;
	text-align: end;
	color: #323232;
	font-size: 15px;
	font-weight: normal;
}

.documentos-doc2:hover {
	text-decoration: underline;
}

/*::::::::::: ANSWERS ::::::::::*/
.answers-support {
	position: fixed;
	height: 100%;
	width: 100%;
	background: #000000af;
	z-index: 100;
	top: 0;
	left: 0;
	margin: 0;
}

.answers-support .answers {
	position: fixed;
	height: 90%;
	width: 70%;
	background: #ffffff;
	top: 5%;
	left: 15%;
	margin: 0;
	border-radius: 2px;
}

.settings-first-support {
	padding: 0;
	padding-top: 50px;
	overflow: hidden;
}

.d-none {
	display: none !important;
}

@media screen and (max-width: 650px) {

	.settings-first-support {
		padding: 20px;
		padding-top: 30px;
	}

}

@keyframes fadeout {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes zoom {
	from {
		transform: scale(0);
	}

	to {
		transform: scale(1);
	}
}


/*::::::::: CLOSE BUTTON ::::::::::::*/
.answers-close-icon {
	color: #ffffff;
	font-size: 20px;
	position: absolute;
	top: 30px;
	right: 60px;
	cursor: pointer;
	transition: ease-in-out .3s;
	display: none;
}

.answers-close-icon:hover {
	color: rgb(214, 214, 214);
}

.dark-background .btn {
	height: 15px;
	text-align: center;
	padding: 0;
	width: 60px;
	cursor: pointer;
	top: 35px;
	right: 50px;
	cursor: pointer;
	position: absolute;
	z-index: 100;
}

.answers-support .btn {
	height: 15px;
	text-align: center;
	padding: 0;
	width: 60px;
	cursor: pointer;
	top: 35px;
	right: 50px;
	cursor: pointer;
	position: absolute;
	z-index: 100;
}

.btn-two {
	transition: all 0.3s;
	position: relative;
}

.btn-two span {
	display: block;
	width: 100%;
	height: 40px;
	margin-top: -5px;
	font-size: 14px;
	font-weight: normal;
	transition: all 0.3s;
	padding: 0;
	text-align: center;
	color: #fff;
	z-index: 2;
}

.btn-two span:hover {
	z-index: 2;
	color: rgba(255, 255, 255, 0);
}

.btn-two::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	transition: all 0.3s;
	border: 1px solid rgba(255, 255, 255, 0);
	background-color: rgba(255, 255, 255, 0);
}

.btn-two::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	transition: all 0.3s;
	border: 1px solid rgba(255, 255, 255, 0);
	background-color: rgba(255, 255, 255, 0);
}

.btn-two:hover::before {
	transform: rotate(-45deg);
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-two:hover::after {
	transform: rotate(45deg);
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.4);
}

@media screen and (max-width: 950px) {
	.answers-support .answers {
		height: 100%;
		width: 100%;
		top: 0;
		left: 0;
		border-radius: 0px;
	}

	.answers-close-icon {
		color: #ffffff;
		font-size: 18px;
		z-index: 2;
		top: 26px;
		right: 20px;
		display: block;
	}

	.answers-support .btn {
		display: none;
	}

	.dark-background .btn {
		display: none;
	}

}

.soft-scroll-bar::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

.soft-scroll-bar::-webkit-scrollbar-track {
	background: #dbdcdd;
}

.soft-scroll-bar::-webkit-scrollbar-thumb {
	background: #b8b8b8;
	border-radius: 0px;
}

.go_center {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
}

.table-header {
	position: absolute;
	width: 100%;
	height: 10%;
	background: #583716;
	color: white;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
}

.table-body{
	position: absolute;
	margin: 0;
	top: 10%;
	width: 100%;
	height: 90%;
	padding: 15px;
	left: 0;
	background: #ffffff;
	overflow-y: scroll;
}

.doc-card{
	position: relative;
	min-height: 120px;
	width: 100%;
	left: 0;
	margin-top: 15px;
	background: #e9e9e9;
	box-shadow: 0 30px 60px -14px rgb(0 0 0 / 25%);
	color: rgb(52, 52, 52);
	padding: 15px;
	border-radius: 0.5rem;
	border: 1px solid #e9e9e9;
	transition: 0.3s ease-in-out;
}

.doc-card:hover{
	border: 1px solid rgb(184, 184, 184);
}

.doc-card h4{
	font-weight: normal;
	color: #1d1d1d;
	margin: 10px;
	text-align: center;
	font-size: 20px;
	transition: 0.3s ease-in-out;
}

.doc-card h4:hover{
	color: #583716;
}

.doc-card h5{
	font-weight: normal;
	margin: 10px;
	text-align: start;
	font-size: 16px;
	font-style: italic;
	color: rgb(0, 128, 193);
}

.doc-card a p{
	font-weight: bold;
	margin: 10px;
	text-align: end;
	font-size: 16px;
	transition: 0.3s ease-in-out;
	color: #583716;
}

.doc-card a p:hover{
	color: rgb(0, 128, 193);
}

.ver-quadro-btn{
	position: relative;
	margin-top: 15px;
	width: 120px;
	height: 40px;
	color: #583716;
	border: 1px solid #583716;
	background: none;
	border-radius: 3px;
	transition: .4 ease-in-out;
}

.ver-quadro-btn:hover{
	color: #fff;
	background: #583716;
	transition: .4s ease-in-out;
}

.ver-quadro-btn a{
	width: 100%;
	height: 100%;
}


/*::::: TRANSLATE :::::*/
/*::: ESTRUTURAS :::*/
.dark-background {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #000000e0;
    z-index: 100;
    top: 0;
    left: 0;
    margin: 0;
}

.dark-background .white-support {
    position: fixed;
    height: 200px;
    width: 400px;
    background: #ffffff;
    margin: 0;
    border-radius: 2px;
    padding: 30px;
}

.dark-background .white-support-2 {
    width: 600px;
    height: 200px;
    background: white;
}

.dark-background .white-support-4 {
    width: 500px;
    height: 250px;
    overflow-y: hidden;
}

@media screen and (max-width: 650px) {
    .dark-background .white-support-2 {
        width: 95%;
        left: 2.5%;
    }
}
.white-support-4 p {
    font-size: 14px;
    font-weight: bold;
    margin-top: 30px;
    width: 100%;
    text-align: center;
    padding: 5px;
}

.choose-categories {
    position: relative;
    margin-top: 15px;
    width: 95%;
    left: 2.5%;
    height: 150px;
    overflow-y: scroll;
    padding: 5px;
}


.btn-standard-3 {
    position: relative;
    width: 100%;
    height: 40px;
    font-size: 13px;
    color: #000000;
    background: none;
    border: 1px solid transparent;
    transition: .4s ease-in-out;
    cursor: pointer;
    display: inline;
    font-weight: normal;
}

.btn-standard-3 i {
    font-size: 16px;
}

.btn-standard-3:hover {
    border: 1px solid #cdcdcd;
}

.buttons p {
    margin: 0;
    padding: 0;
    width: 120px;
    display: inline-block;
    font-weight: normal;
}

.goog-te-banner-frame {
    display: none;
}

.skiptranslate {
    display: none !important;
}

.language-flag {
    width: 35px;
    border-radius: 2px;
    margin-right: 15px;
}

.choose-languages {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 5px;
    margin: 0;
}

.language-btn-floating {
    position: fixed;
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    background: #036dc9;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    transition: 0.4s ease-in-out;
    z-index: 100;
}

.language-btn-floating:hover {
    border: 2px solid #583716;
}

.language-btn-floating img {
    position: relative;
	width: 30px;
    left: 6px;
}

/*::::: ACCEPT COOKIES :::::*/
.bottom-popup{
	background: #fff;
	width: 100%;
	height: 152px;
	position: fixed;
	left: 0;
	bottom: 0;
	margin: 0;
	padding: 30px;
	box-shadow: -150px 30px 60px 6px rgb(0 0 0);
	z-index: 1000;
	animation: comeUp 1.5s;
}

.bottom-popup p{
	position: relative;
	width: 100%;
	text-align: center;
	display: block;
	color: rgb(70, 70, 70);
}

.cookies-buttons{
	position: relative;
	width: 100%;
	
}

.bottom-popup button{
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
}

@keyframes comeUp {
	from {
		bottom: -152px;
	}

	to {
		bottom: 0;
	}
}

/*::::::: 5 COLUMNS BOOTSTRAP ::::::*/
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

@media (max-width: 992px) {
    .col-xs-5ths {
		width: 100%;
		float: unset;
	}
	
}