#pop_container {
	font-size: 13px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #FFF;
	border: 0;
	color: #333;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 16px;
	border: none;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
}

#pop_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #666;
	background: none;
	border: solid 1px #FFF;
	border-bottom: 0;
	cursor: default;
	padding: 0em;
	margin: 0em;
	display:none;
}

#pop_content {
	background: none;
	padding: 1.5rem;
	margin: 0em;
    text-align: center;
}


#pop_message {
	text-align:center;
	padding-left: 0;
	padding: 20px 10px 30px;
	font-size: 16px;
}

#pop_panel {
	display: flex;
	justify-content: space;
	gap: 5px;
}

#pop_panel button {
	padding: 13px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #555;
	background: #fff;
	border: 1px solid #b8b8b8;
	border-radius: var(--ma-border-radius);
}

#pop_panel > button {
	padding-left: 10px;
	padding-right: 10px;
	width: 100%;
}

#pop_panel button.btn-default {
	background: #fff;
	color: #555;
	border: 1px solid #b8b8b8;
}

#pop_panel button.btn-primary {
	color: #fff;
	background: var(--ma-primary-hex);
	border: 1px solid var(--ma-primary-hex);
}

#pop_panel button#button_yes {
	color: #555;
	background: #fff;
	border: 1px solid #b8b8b8;
}

#pop_panel button#button_no {
	color: #fff;
	background: #273e82;
	border: 1px solid #273e82;
}

#pop_panel button#pop_cancel {
	color: #555;
	background: #fff;
	border: 1px solid #b8b8b8;
}

#pop_panel button#pop_ok {
	color: #fff;
	background: var(--ma-primary-hex);
	border: 1px solid var(--ma-primary-hex);
}

#pop_prompt {
	margin: .5em 0em;
}

#pop_panel button{
	line-height: 16px;
}