/***********************************************************************************************************************
ERTDialogBox - A jQuery Plugin to replace Javascript's window.alert(), window.confirm() and window.prompt() functions
    R&D Project Manager - Bill Calderwood   
    Product Manager     - Karolina Szynal
    Product Owner       - Stephen Roll    
    Developers          - Harish Majety, Anupama Chigurupati, Ibrahim Baig, Ravi Kumar Kalidindi, Satya Mantriraju
    QE                  - Prasanthi Vemuri, Jayakar Kambala, Durga Mahesh Karumanchi, Siva Kishore Gundu, Bhargav Krishna Nukala  
    Version             - 4.31
    License             - ERT
***********************************************************************************************************************/

/* Overlay */
.messagebox_overlay {
  background-color: rgb(0, 0, 0, 0.6);
  z-index: 9999;
}
.messagebox_overlay *:focus {
  outline: 0;
}

/* MessageBox */
.messagebox {
  font-family: verdana, arial, helvetica, sans-serif;
  font-size: 10pt;
  font-style: normal;
  font-weight: normal;
  text-align: left;
  color: #000000;
  background-color: #fcfcfc;
  border: 1px solid #c8c8c8;
  /* box-shadow          : 0px 2px 4px #a0a0a0; */
  max-height: 90%; /* This value is useful only when "top" option is set to "auto" */
  max-width: 90%;
  min-width: 300px;
}
#close
{
float: right;
margin-right: 20px;
margin-top: 5px;
color: #fff;
display: none;
}
/* Title */
.messagebox_title {
  color: white;
  background-color: #7D2855 !important;
  height: 30px;
  border-bottom: 1px solid #c8c8c8;
  padding: 5px;
  text-align: center;
  font-weight: bold;
}

/* Content */
.messagebox_content {
  padding: 20px;
  font-weight: bolder;
}

/* Label for input */
.messagebox_content_label {
  width: 100%;
  font-style: italic;
  margin-top: 10px;
  margin-bottom: -5px;
}

/* Input (it applies to selects and textareas too) */
.messagebox_content_input {
  width: 100%;
  margin-top: 10px;
  padding: 3px;
  color: #303030;
  border: 1px solid #909090;
  font-family: inherit;
  font-size: inherit;
  font-style: normal;
  font-weight: inherit;
  text-align: left;
}
.messagebox_content_input:hover {
  border-color: #707070;
}
.messagebox_content_input:focus {
  border-color: #707070;
  box-shadow: inset 0px 0px 3px #ffd540;
}
/* Select "fake placeholder" */
.messagebox_content_input_selectplaceholder {
  color: #909090;
}
/* Textarea */
.messagebox_content_input_textarea {
  overflow-y: auto;
}
/* Caption */
.messagebox_content_caption {
  width: 100%;
  margin-top: 15px;
  padding: 5px 0;
}

/* Checkbox */
.messagebox_content_checkbox_wrapper {
  width: 100%;
  margin-top: 10px;
}
.messagebox_content_checkbox {
  margin-right: 5px;
  vertical-align: -2px;
}

/* Error */
.messagebox_content_error {
  background-color: #fad0d5;
  color: #a02020;
  margin-top: 15px;
  margin-bottom: -10px;
  padding: 4px 6px;
  border-radius: 2px;
}

/* Buttons */
.messagebox_buttons {
  background-color: #f5f5f5;
  border-top: 1px solid #c8c8c8;
  padding: 17px 0px 10px 0px;
  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;
}
.messagebox_buttons_button {
  font-size: 12px !important;
    text-decoration: none;
	border-radius: 4px;
	box-shadow: 0 1px 2px #1e1e1e33;
	padding: .5rem !important;
	background: #fff !important;
	border: 1px solid #d7dbdf;
	color: #11181c !important;
	font-weight: 400 !important;
	font-family: Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
	cursor: pointer;
    margin: 0px !important;
}
.messagebox_buttons_button:hover {
  color: #202020;
  background-color: #f0f0f0;
}
.messagebox_buttons_button:active {
  background-color: #e6e6e6;
  border: 1px solid #a0a0a0;
  box-shadow: inset 0px 0px 6px #d0d0d0;
}
.messagebox_buttons_button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
