@import "theme-editor.css";



.v-loading-indicator {
  position: fixed; /* Occupy whole screen even if scrolled */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Eat mouse events when visible, doesn't prevent scrolling */
  pointer-events: auto;
  /* Animated with delay to prevent flashing */
  animation: fadein 0.3s ease-out 0.2s normal 1 both;
  z-index: 2147483647;
}
@keyframes fadein {
  0% {
    background: rgba(0,0,0,0);
  }
  100% {
    background: rgba(0,0,0,.5); /* Darkens the UI */
  }
}



vaadin-grid.styling::part(Long-Type) {
    background-color: var(--lumo-error-color-10pct);
}

vaadin-grid.styling::part(Short-Type) {
    background-color: var(--lumo-success-color-10pct);
}
vaadin-grid.styling::part(font-weight-bold) {
    font-weight: bold;
}



.sample2 {
	background-color: lightblue;
}
.topBlock{
	background-color: #fef2cc;
	padding: 15px;
	border-radius: 7px;
}
.urgentBlock{
	background-color: #ff9797;
	padding: 15px;
	border-radius: 7px;
}
.fieldsBlock {
	overflow: auto;
	background-color: #ff9200;
}
.bottomBlock {
	overflow: auto;
	background-color: #00f900;
}
.actionbuttonBlock {
	background-color: #ff40ff;
}
.btnNonMember{
	background-color: #ff1515;
	color: #fff;
}
.btnChoice{
	background-color: #00c700;
}
.btngreen{
	background-color: #77a88d;
	color: #fff;
}
.btngrey{
	background-color: #d5d5d5;
	color: #000;
	min-width: 120px;
}
.btntrans{
	background: none;
	width: auto;
	height: auto;
}
.btntrans:hover, .btntrans:link, .btntrans:visited , .btntrans:active {
	background-color: transparent;
}
.btnred{
	background-color: #fe6670;
	color: #fff;
}
.fontred{
	color: #fe6670;
}
.line_h36{
    line-height: 36px;
}
.lbl{
	color: #bebebe;
}
.LayoutBGColor0 {
	background-color: #ff9200;
}
.LayoutBGColor1 {
	background-color: #00f900;
}
.LayoutBGColor2 {
	background-color: #77a88d;
}
.LayoutBGColor3{
	background-color: #fef2cc;
}

.LongLabel {
	background-color: GreenYellow;
	color: Black;
}

.ShortLabel {
	background-color: OrangeRed;
	color: White;
}

vaadin-grid.styling::part(Long-Type) {
    background-color: GreenYellow;
    color: Black;
    font-weight: bold;
}

vaadin-grid.styling::part(Short-Type) {
    background-color: OrangeRed;
    color: White;
    font-weight: bold;
}
vaadin-grid.styling::part(font-weight-bold) {
    font-weight: bold;
}


