

/* GATILHO DO CABEÇALHO */

a[href="#leo-cep"] {
	display: inline-flex !important;
	align-items: center;
	gap: 7px;
}

.leo-cep-trigger-icon {
	width: 19px;
	height: 19px;
	display: inline-flex;
	flex: 0 0 19px;
}

.leo-cep-trigger-icon svg {
	width: 100%;
	height: 100%;
}


/* FUNDO DO MODAL */

.leo-cep-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	background: rgba(0, 0, 0, 0.45);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
	box-sizing: border-box;
}

.leo-cep-overlay.is-open {
	display: flex;
}


/* CAIXA */

.leo-cep-modal {
	position: relative;
	width: 100%;
	max-width: 500px;
	background: #ffffff;
	border-radius: 16px;
	padding: 30px 28px 32px;
	box-sizing: border-box;
	box-shadow: 0 18px 60px rgba(0,0,0,.22);
}

.leo-cep-modal h2 {
	margin: 0 40px 8px 0;
	font-size: 22px;
	line-height: 1.25;
	color: #151515;
}

.leo-cep-description {
	margin: 0 0 26px;
	color: #747b89;
	font-size: 15px;
	line-height: 1.55;
}


/* FECHAR */

.leo-cep-close {
	position: absolute;
	top: 15px;
	right: 18px;
	border: 0;
	background: transparent;
	color: #e4ad00;
	font-size: 35px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}


/* CAMPO CEP */

#leo-cep-input {
	display: block;
	width: 100%;
	height: 58px;
	padding: 0 15px;
	box-sizing: border-box;
	border: 1px solid #d9dde4;
	border-radius: 10px;
	background: #ffffff;
	font-size: 17px;
	color: #252525;
	outline: none;
	box-shadow: none;
}

#leo-cep-input:focus {
	border-color: #ffd400;
	box-shadow: 0 0 0 3px rgba(255, 212, 0, .15);
}


/* MENSAGEM */

.leo-cep-message {
	min-height: 22px;
	margin-top: 7px;
	font-size: 13px;
	color: #d93025;
}

.leo-cep-message.success {
	color: #128443;
}


/* BOTÃO CONFIRMAR */

.leo-cep-submit {
	width: 100%;
	height: 48px;
	border: 0;
	border-radius: 9px;
	background: #ffd400;
	color: #123b82;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: .2s ease;
}

.leo-cep-submit:hover {
	background: #f0c400;
}

.leo-cep-submit:disabled {
	opacity: .6;
	cursor: wait;
}


/* NÃO SEI MEU CEP */

.leo-cep-help {
	display: inline-block;
	margin-top: 22px;
	color: #e4ad00;
	font-size: 14px;
	text-decoration: none;
}

.leo-cep-help:hover {
	text-decoration: underline;
}


/* ACESSIBILIDADE */

.leo-screen-reader {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}


/* CELULAR */

@media (max-width: 689px) {

	.leo-cep-modal {
		max-width: 94%;
		padding: 26px 22px 28px;
	}

	.leo-cep-modal h2 {
		font-size: 20px;
	}

	#leo-cep-input {
		height: 55px;
	}
}

