/*
Program   : CSS Style
Title     : dialog
Date      : 2022-02-14
Autor     : Thamir O. Santos
Version   : 1.0
Copy Right: The code, text, and other elements on this program, includes and other objects are Copyright © 2020-2022 The Thamir Oliveira Santos.Use, copying or distribution, in whole or in part without authorization is a crime. All rights reserved.

Changes   :
2022-02-14 - initial
*/

.dialog-lock {
	display: block;
	overflow: hidden;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.50;
	z-index: 1;
}

.dialog-box .dialog-body {
	vertical-align: top;
}

.dialog-box {
	display: table;
	overflow: hidden;
	position: fixed;
	left: 0;
	top: 10px;
	width: 100%;
	height: 100%;
	text-align: center;
	z-index: 9;
}

.dialog-box-question {
	background-color: #fff;
	border-radius: 5px;
	border: 1px solid #e2e2e2;
	margin-left: auto;
	margin-right: auto;
	padding-top: 10px !important;
}

.dialog-box-question h2 {
	display: block;
  overflow: hidden;
  padding: 5px;
  border-bottom: 1px solid #e2e2e2;
  font-family: Ubuntu;
  font-size: 18px;
  color: #000;
  margin: 0px;
  padding-bottom: 12px;
  margin-bottom: 20px;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0px;
}

.dialog-box-question p {
	display: block;
  overflow: hidden;
  padding: 5px;
  border:0px;
  font-family: Ubuntu;
  font-size: 16px;
  color: #404040;
  margin: 0px;
  padding-bottom: 12px;
  margin-bottom: 20px;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0px;
}

.dialog-box-question .action-bar-edit li {
	margin-left: 20px;
}

.dialog-box-question button {
	min-width: 115px;
	margin-left: 20px;
}

.dialog-content {
	display: block;
	overflow-x: hidden;
	overflow-y: auto;
	margin-left: auto;
	margin-right: auto;
	width: auto;
	height: auto;
	width: 100%;
	height: 100%;
	padding-top: 30px;
}

/* dialog snack */
.dialog-snack {
	display: block;
	overflow: hidden;
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 80px;
	z-index: 20;
}

.dialog-snack h2 {
  margin: 10px;
  margin-bottom: 5px;
  color: #fff;
  font-family: 'Open Sans';
  font-size: 18px;
}

.dialog-snack h2 button {
	float: right;
}

.dialog-snack h2 button {
	padding: 8px;
	padding-left: 18px;
	padding-right: 18px;
	border: 0px;
	background-color: inherit;
	font-family: Open Sans;
	font-size: 14px;
	font-weight: normal;
	color: #fff;
	border-radius: 4px;
	cursor: pointer;
}

.dialog-snack h2 button:hover {
	background-color: #404040;
}

.dialog-snack p {
  margin: 10px;
  margin-top: 0px;
  color: #fff;
  font-family: 'Open Sans';
  font-size: 14px;
}


#dialog-alert {
	border:1px solid #e2e2e2 !important;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	z-index: 99;
	background-color: #fff;
}

#dialog-alert h3 {
  font-size: 17px;
  font-family: 'Ubuntu';
  padding: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 17px;
}

#dialog-alert p {
	display: block;
	overflow: hidden;
	width: 100%;
  font-size: 16px;
  font-family: 'Ubuntu';
  color: #404040;
  padding: 10px;
  padding-bottom: 10px;
  margin-bottom: 17px;
}

#dialog-alert .button-ok {
	background-color: transparent;
	color:#25a6df;
	border:1px solid #25a6df;
	text-align: center;
	padding: 5px;
	padding-left: 20px;
	padding-right: 20px;
	margin: 10px !important;
	float: right;
}

#dialog-alert .button-ok:hover {
	border:1px solid #25a6df;
	background-color: #25a6df;
	color:#fff;
	border-radius: 3px;
}

#dialog-alert .action-bar {
	display: block;
	overflow: hidden;
	margin:0px !important;
	width: 97%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px !important;
}
