.ofrecer_pop_box {
	position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow: hidden;
    top: 0px;
	z-index: 98;
	display: none;
    justify-content: center;
    align-items: flex-start;
	padding-top: 200px;
}
.ofrecer_b_contenido {
	position: relative;
	transition: all 0.5s ease-in-out;
	border: 1px solid #AAA;
	border-radius: 3px;
	background-color: #FFF;
	padding: 20px;
	width: 600px;
}
.ofrecer_b_close {
	position: absolute;
	width: 20px;
	height: 20px;
	top: -23px;
	right: -23px;
	width: 25px;
	height: 25px;
	z-index: 99;
	cursor: pointer;
}
.ofrecer_box_txt {
	width: 100%;
	display: flex;
    flex-direction: column;
}
.ofrecer_text {
	font-size: 16px;
	margin: 5px 0;
}

.ofrecer_bt_box {
	margin: 20px 0 0 0;
	width: 100%;
	display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.ofrecer_bt {
	padding: 10px 15px;
	border: 1px solid #000;
	border-radius: 5px;
	box-shadow: 2px 2px 4px #AAA;
	margin: 0 10px;
	transition: all 0.1s ease-in-out;
	cursor: pointer;
	font-size: 14px;
}
.ofrecer_bt:hover {
	transform: translate(-1px, -1px);
	box-shadow: 3px 3px 4px #AAA;
}