@keyframes dlg-generic-fade-in-frames {
  0%   {opacity: 0.0;}
  100% {opacity: 1.0;}
}

.dlg-generic-fade-in {
  animation-name: dlg-generic-fade-in-frames;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-delay: 0s;
  animation-timing-function: ease-in;
}

.dialog {
  left: 10000px;
  top: 10000px;
  position: fixed; 
  z-index: -100; 
	border: 2px solid #000000;
  border-radius: 5px;
  box-shadow: 0px 0px 8px 8px #dddddd;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-family: 'Assistant', sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  text-indent: 0px;
  text-shadow: none;
  word-spacing: normal;
  letter-spacing: normal;
  text-rendering: auto;
  background-color: white;
}

.dialog-title-bar {
  width: 100%;
  height: 20px;
  background-color: #aaaaaa;
	border-bottom: 2px solid #000000;
}

.dialog-title-text {
  position: absolute;
  top: 0px;
  left: 18px;
  height: 20px;
  color: white;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  padding: 0px;
  margin: bottom 0px;
  overflow: hidden;
  cursor: move;
}

.dialog-title-close {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 14px;
  width: 14px;
  margin-left: 5px;
  margin-right: 3px;
  margin-top: 2px;
  margin-bottom: 2px;
  background-color: #e6c399;
  color: #0000de;
  border-radius: 7px;
  cursor: pointer;
}

.dialog-title-close:hover {
  background-color: #f6d3a9;
}

.dialog-body {
  width: 100%;
  height: 100%;
  flex: auto;
  overflow-x: auto;
  overflow-y: auto;
}

.dialog-bottom-bar {
  width: 100%;
  height: 20px;
  background-color: #aaaaaa;
	border-top: 2px solid #000000;
  display: flex;
  flex-direction: row;
}

.dialog-bottom-left {
  height: 17px;
  flex-grow: 1;
}

.dialog-bottom-left:hover {
cursor: nw-resize;
}

.dialog-bottom-middle {
  height: 17px;
  flex-grow: 2;
}

.dialog-bottom-middle:hover {
cursor: ns-resize;
}

.dialog-bottom-right {
  height: 17px;
  flex-grow: 1;
}

.dialog-bottom-right:hover {
cursor: ne-resize;
}

.dlg-help-div {
  display: inline-block;
  position: absolute;
  top: -1px;
  left: 0px;
  margin: 0px;
  padding: 0px;
  height: 18px;
  width: 18px;
}

.help-sign {
	position: relative;
	display: block;
  width: 14px;
  height: 14px;
  font-size: 12px;
	padding: 0px;
	margin-left: 2px;
  margin-right: 0px;
  margin-top: 2px;
  margin-right: 2px;
  margin-bottom: 2px;
	transition: none;
  color: #0000de;
  background: #e6c399;
  border-radius: 7px;
  cursor: pointer;
  z-index: auto;
  opacity: 1.0;
  transform: none;
  box-shadow: none;
  vertical-align: middle;
  
}

a.tooltip {
	position: relative;
	display: block;
	pointer-events: auto;
	color: grey;
	left: auto;
	right: auto;
	top: auto;
	bottom: auto;
	padding: 0px;
	margin: 0px;
	transition: none;
	border-color: none;
	border-radius: 0px;
	background: transparent;
	border: none;
  font-size: 12px;
  font-family: 'Assistant', sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  z-index: auto;
  opacity: 1.0;
  visibility: visible;
  transform: none;
  box-shadow: none;
}

a.tooltip span {
	display: none;
}

.a.tooltip:hover {
	overflow: visible;
}

a.tooltip:hover span {
	display: block;
	position: absolute;
	overflow: visible !important;
	pointer-events: auto !important;
	top: -20px;
  font-size: 14px;
	left: 200px;
	width: 250px;
	color: black;
	background: #dddddd;
  border-radius: 4px;
	border: 1px solid black;
	padding: 5px;
  font-family: 'Assistant', sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: left;
  text-indent: 0px;
  text-shadow: none;
  word-spacing: normal;
  letter-spacing: normal;
  text-rendering: auto;
  outline: none;
  z-index: 10005;
}

.dlg-button-choices {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  padding-left: 2px;
  padding-right: 2px;
  border: none;
	background-color: transparent;
}

.dlg-button {
  display: inline-block;
	pointer-events: auto;
  font-size: 16px;
  font-family: 'Assistant', sans-serif;
  font-style: normal;
  font-weight: 800;
  text-decoration: none;
  background-image: none;
  outline: none;
  border: none;
  color: #0000de;
  background-color: #e6c399;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 0px solid #000000;
  box-shadow: 0px 4px 4px 4px #dddddd;
  border-radius: 5px;
  padding: 3px;
  margin: 5px;
}

.dlg-button:hover {
  background-color:#f6d3a9;
  color: #1010ee;
  box-shadow: 0px 5px 5px 5px #bbbbbb;
  cursor: pointer;
}

.dlg-button-col-1 {
}


div.dialog-filter-categories-list::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

div.dialog-filter-categories-list::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(170,170,170,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

div.dialog-filter-shop-list::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

div.dialog-filter-shop-list::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(170,170,170,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}
