:root {
	--white: #fff;
	--white-two: #fafafa;
	--sky-blue: #5bb0ff;
	--greyish-brown: #4a4a4a;
}
#popup_container{
	min-width: 300px; /* El diálogo no será más pequeño que este */
	max-width: 600px; /* El diálogo se ajustará después de este ancho */
	background: var(--white);
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2), 0 2px 10px -1px rgba(0, 0, 0, 0.12), 0 2px 10px 0 rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2), 0 2px 10px -1px rgba(0, 0, 0, 0.12), 0 2px 10px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2), 0 2px 10px -1px rgba(0, 0, 0, 0.12), 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}
#popup_title{
	font-family: "Roboto Regular";
	font-size: 21px;
	font-weight: 900;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 2.05px;
	color: var(--sky-blue);
	padding-top: 35px;
	text-align: center;
}
#popup_content{
	background: #fff;
	padding: 1em 1.75em;
	margin: 0 auto;
}
#popup_message{
	font-family: "Roboto Light";
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 1.76px;
	text-align: center;
	color: var(--greyish-brown);
	word-wrap: break-word;
}
#popup_line{
	width: 437px;
	height: 1px;
	border: dashed 1px #979797;
	margin : 0 auto;
	margin-top: 17px;
	margin-bottom: 22px;
}
#popup_panel{
	text-align: center;
}
#popup_content.alert{
	/* background-image: url("../images/ico/title.gif"); */
	background-image: #fff;
}
#popup_content.confirm{
	/* background-image: url("../images/ico/title.gif"); */
	background-image: #fff;
}
#popup_content.prompt{
	/* background-image: url("../images/ico/title.gif"); */
	background-image: #fff;
}
#popup_prompt {
	margin: .5em 0em;
}
#popup_ok{
    width: 150px;
    height: 29px;
    border-radius: 19.5px;
    line-height: 0.50;
    font-family: "Roboto Regular";
    font-size: 16px;
    font-weight: 500;
	color: #fff;	
    border: #54a9ff solid 1px;
    box-shadow: 0 -1px 14px -2px rgba(0, 0, 0, 0.1);
    background-color: #54a9ff;
	margin: 5px;
}
#popup_cancel{
	width: 150px;
    height: 29px;
    border-radius: 19.5px;
    line-height: 0.50;
    font-family: "Roboto Regular";
    font-size: 16px;
    font-weight: 500;
    color: #54a9ff;
    border: #54a9ff solid 1px;
    box-shadow: 0 -1px 14px -2px rgba(0, 0, 0, 0.1);
	background-color: #fafafa;
	margin: 5px;
}