:root{
    --btn-bg-color: #043e3d;
    --bg-color: #045756;
    --btn-green-bg-color:#77bdbb;
}
@font-face {
	font-family: 'Din';
	src: url('/css/Din.woff');
}

html,
body {
   	margin:0;
   	padding:0;
  	font-family: 'Din', Arial,Sans-Serif;
   	color: #404041;
   	min-width: 930px;
}


/*h1,h2,h3,h4 {
  font-weight: normal;

  margin: 0px;
}
h1{
font-size: 27px;
}
h2 {
font-size: 21px;
}
h3 {
font-size: 18px;
}
h4 {
font-size: 16px;
}
*/
hr {
	color: #77bdbb;
	background-color: #77bdbb;
	height: 2px;
	border:none;
}
hr.thin{
    background-color: #D7E6E1;
    height: 1px;
    border:none;
}
label {
	padding-top: 2px;
}

p { 
	font-size: 16px; 
	margin: 0px;
	padding: 0px;
}

img {
	border: 0;
}


form{
	margin:0px;
}
.red{
    color:darkred;
}
.green{
    color:darkgreen;
}

.dialog-fog{
  position:fixed;
  width:100%;
  left:0;
  top:0;
  height:100%;
  background-color:#a1a1a1;
  z-index:300;
  opacity:0.4;
}
.dialog-box{
position: absolute;
    border: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 400px;
    left: calc( 100vw/2 - 200px );
    display: grid;
    grid-template-rows: 30px auto 40px;
    z-index: 900;
    font-family: 'Din', Tahoma;
    background-color: #fefefe;
    box-shadow: 4px 5px 9px 2px #242424b8;
}
.dialog-title{
  display: grid;
    grid-template-columns: auto 20px;
    align-items:center;
    border: 1px solid #cfcfcf;
    padding: 3px;
    
    color: #4a4c4e;
    font-size: 1.1em;
    background: linear-gradient(0deg, rgb(133 133 133) 0%, rgb(199 199 199) 10%, rgb(247 247 247) 80%);
}
.dialog-footer{
  display:grid;
  grid-template-columns: 100%;  
  justify-items:center;
  border-top: 1px solid #cfcfcf;
}
.dialog-footer > div{
  
    align-self: center;
  
    padding: 0 8px;
    box-sizing: border-box;
}
.dialog-button-ex{
    font-family: 'Din';
    border: 0px;
    cursor: pointer;
    background-color: #77bdbb;
    color: #555555;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    padding: 4px 4px;
    /* border-radius: 4px; */
    /* background: linear-gradient(0deg, rgb(68 199 169) 0%, rgb(9 121 92 / 20%) 10%, rgb(119 189 187) 80%); */
    background-color: white;
}
.dialog-close{
  text-align:center;
  font-weight:bold;
  cursor:pointer;
  font-size:1.2em;
}
.dialog-text{
  min-height:100px;
  font-size:1.2em;
  max-height:150px;
  overflow:auto;
  padding:10px;
}
.dialog-btn:hover{
    
    box-shadow: 0px 1px 0px #a0a0a0;
    color: black;
    transform:scale(1.1);
}
.dialog-btn{
    cursor:pointer;
    text-align: center;
    min-width:40px;
    width:40%;
    font-size:1.2em;
}