/*dialog {
  position: absolute;
  left: 0; right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  margin: auto;
  border: solid;
  padding: 1em;
  background: white;
  color: black;
  display: block;
}
*/
dialog {
  position: fixed;
  left: 0; right: 0;
  top: 1%;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  margin: auto;
  border: solid;
  padding: 1em;
  background: white;
  color: black;
  display: block;
}

dialog:not([open]) {
  display: none;
}

dialog + .backdrop {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0,0,0,0.1);
}

._dialog_overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
}

dialog.fixed {
  position: fixed;
  top: 50%;
  transform: translate(0, -50%);
}

/*............Rick-S.....................*/

.modal {

  max-width: 50ch;

  padding: 1em;
  border: 0;
  box-shadow: 0 0 1em rgb(0 0 0 / .3);

/*
  & > * {
    margin: 0 0 0.5rem 0;
  }
*/
}

.modal::backdrop {
  background: rgb(0 0 0 / 0.4);
}

.img_title_css{
	position: relative;
	width: 100%;
	padding:10px 0;
	background-color:#009578!important;
	color:#ffffff!important;
}

/* extra styling */

body_dialog { 
  min-height: 100vh;
  margin: 2rem;
  font-family: system-ui;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--gray-8);
/*// background-image: url('https://images.unsplash.com/photo-1644242629712-943ae5c8c4f3?crop=entropy&cs=srgb&fm=jpg&ixid=MnwxNDU4OXwwfDF8cmFuZG9tfHx8fHx8fHx8MTY0Njc1MjQxNA&ixlib=rb-1.2.1&q=85');
  // background-size: cover;
*/
}

h1 em {
  color: var(--cyan-9);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.row_dialog {
  margin-right: -15px;
  margin-left: -15px;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}

.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}

  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}

form {
  display: grid;
  gap: 1em;
}


/*............Rick-E.....................*/

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777777;
}
.text-primary {
  color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

/*............Cheong-S.....................*/

body_dialog {
	margin: 20px;
} 

.radio{
	display: inline-flex;
	overflow: hidden;
	border-radius: 15px;
	box-shadow: 0 0 5px rgba(0,0,0,0.25);
	
}

.radio__input{
	display: none;
}

.radio__label{
	padding: 8px 14px;
	font-size: 14px;
	font-family: sans-serif;
	color: #ffffff;
	background: #009578;
	cursor: pointer;
	transition: background 0.1s;
}

.radio__label:not(:last-of-type){
	border-right: 1px solid #006B56;
}

.radio__input:checked + .radio__label{
	background: #006B56;
}

.radio__input:disabled + .radio__label{
	background: #ccc;
}

.checkbox{
	display: inline-flex;
	overflow: hidden;
	border-radius: 15px;
	box-shadow: 0 0 5px rgba(0,0,0,0.25);
	
}

.checkbox__input{
	display: none;
}

.checkbox__label{
	padding: 8px 14px;
	font-size: 14px;
	font-family: sans-serif;
	color: #ffffff;
	background: #009578;
	cursor: pointer;
	transition: background 0.1s;
}

.checkbox__label:not(:last-of-type){
	border-right: 1px solid #006B56;
}

.checkbox__input:checked + .checkbox__label{
	background: #006B56;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

/*............Cheong-E.....................*/


/*............cbarray-S.....................*/
/*
.container{
	position: relative;
	width: 600px;
	background: #232234;
	padding: 24px;
	margin: 30px auto;
	border-radius: 25px;
}

.container .title{
	color: #ffffff;
	font-size: 2rem;
	text-align: center;
	text-transform: capitalize;
	margin-bottom: 3rem;
}

.container .input-box-wrapper{
	position: relative;
}

.input-box-wrapper .box{
	position: relative;
	display: flex;
	align-items: center;
	border: 1px solid #383854;
	border-bottom: 0;
	padding: 14px 10px;
}

.input-box-wrapper .box:first-child{
	border-radius: 15px 15px 0 0;
}

.input-box-wrapper .box:last-child{
	border-radius: 0 0 15px 15px;
	border-bottom: 1px solid #383854;
}

.input-box-wrapper .box label{
	color: #ffffff;
	text-transform: capitalize;
	margin-left: 20px;
	cursor: pointer;
	display: block;
	width: 100%;
}

.input-box-wrapper .box .checkbox{
	position: relative;
	width: 22px;
	height: 22px;
	cursor: pointer;	
}

.print-value{
	position: relative;
	margin-top: 2rem;
}

.print-values p{
	background: #009578;
	padding: 16px;
	color: #ffffff;
	text-transform: capitalize;
	border-top: 4px solid #006B56;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;		
}
*/
/*............cbarray-E.....................*/

