.container__popup{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index:99;
	font-family:"RightGrotestk";
}
.overlay__popup_lote{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -1;
	background-color:#000000CC;
}
.lote-contenido {
    padding: 60px 50px 80px;
    max-width: 1000px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
	position: relative;
}
.lote-nombre_popup{
	font-size: 40px;
	line-height: 48px;
	color: #250C52;
	width: 100%;
	font-weight: 600;
}
.lote-contenido h5{
	font-weight: 600;
	text-transform:uppercase;
	margin: 0;
}
.lote-contenido h5, .lote-contenido li{
	font-size: 20px;
	line-height: 32px;
	color: #23231A;
	
}
.lote-contenido li::marker{
	color: #FF8200;
}
.lote-distribucion img{
	margin-top: 50px;
}
.close__popup {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
@media (max-width:767px){
	.container__popup{
		width: 100%;
		height: 100%;
		padding: 0 5px;
	}
	.overlay__popup_lote{
		width: 100%;
		height: 100%;
	}
	.lote-contenido {
		padding: 20px;
		width: 100%;
		height: calc(100% - 100px);
		overflow: scroll;
	}
}