body {
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 16px;
}

.h1PesquisaCEP {
	display: flex;
	padding: 16px 0;
	padding-top: 16px;
	align-items: center;
	justify-content: space-between;
}

section {
	margin: 4rem 0;
	display: flex;
	align-items: start;
	justify-content: center;
	gap: 16px;
	min-height: 350px;

	@media screen and (max-width: 900px) {
		flex-direction: column;
	}
}

.formCep {
	display: flex;
	flex-direction: column;
	padding: 16px;
	gap: 8px;
	border: 2px solid blue;
	border-radius: 16px;
	justify-content: space-around;
	background-color: white;
}

.modal {
	position: fixed;
	justify-content: center;
	align-items: center;
	margin: auto;
}

.bgModal {
	position: absolute;
	height: 100vh;
	width: 100vw;
	background-color: white;
	opacity: 0.9;
	z-index: 40;
}

.modal form {
	z-index: 50;
	opacity: 1;
}

.search {
	display: flex;
	align-items: start;
	justify-content: start;
	padding: 2rem 0;
}

.formSearch {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 50%;

	@media screen and (max-width: 900px) {
		flex-direction: row;
		width: 100%;
		gap: 16px;
	}
}
.formInput {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.formButtonsAlter {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.titleForm {
	padding-bottom: 8px;
}

.cep-mask {
    background: #f1ffff;
    border: 2px solid blue;
    border-radius: 6px;
    padding: 4px 8px;
    align-items: center;

    &:focus {
        border: 2px solid blue;
    }
}

.buttonEditable {
	margin-top: 16px;
}

.buttonCloseModal {
	width: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-left: auto;
}
/* button {
    padding: 4px 16px;
    border: 2px solid transparent;
    border-radius: 4px;
    background-color: blue;
    color: white;

    &:hover {
        background-color: blueviolet;
        cursor: pointer;
        border: 2px solid blue;
    }
} */

.spanValidate {
	color: blue;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 4px 0;
}

.spanValidateObs {
	color: green;
}
.h3Info {
	margin: 0;
	padding-top: 16px;
	padding-bottom: 8px;
}

.listInformation {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0 16px;
	gap: 8px;

	align-items: start;
	justify-content: start;
}

.h3Tabela {
	padding-top: 48px;
	padding-bottom: 16px;
}

table {
	border-collapse: collapse;
	max-width: 100%;
}
td, th {
	padding: 10px;
}
th {
	background-color: #518acb;
	color: #ffffff;
	border: 1px solid #54585d;
}
td {
	color: #636363;
	border: 1px solid #dddfe1;
}
tr {
	background-color: #f9fafb;
}
tr:nth-child(odd) {
	background-color: #ffffff;
}
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
	list-style-type: none;
	padding: 10px 0;
	display: inline-flex;
	box-sizing: border-box;
}
.pagination li {
	box-sizing: border-box;
	padding-right: 10px;
}
.pagination li a {
	box-sizing: border-box;
	background-color: #e2e6e6;
	padding: 8px;
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
	color: #616872;
	border-radius: 4px;
}
.pagination li a:hover {
	background-color: #d4dada;
}
.pagination .next a, .pagination .prev a {
	text-transform: uppercase;
	font-size: 12px;
}
.pagination .currentpage a {
	background-color: #518acb;
	color: #fff;
}
.pagination .currentpage a:hover {
	background-color: #518acb;
}