/** Add css rules here for your application. */


/** Example rules used by the template application (remove for your app) */
h1 {
  font-size: 2em;
  font-weight: bold;
  color: #777777;
  margin: 40px 0 70px;
  text-align: center;
}

.sendButton {
  display: block;
  font-size: 16pt;
}

.dialogVPanel {
  margin: 5px;
}

.serverResponseLabelError {
  color: red;
}

/** Set ids using widget.getElement().setId("idOfElement") */
#closeButton {
  margin: 15px 6px 6px;
}

body {
	margin: 0 ! important;
	font-family: open sans,Arial Unicode MS, Arial,Roboto, sans-serif;
}

.version {
}

.c_spinner {
  position: absolute;
  width:100%;
  height:100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.i_spinner {
  background-image: url("../images/spinner.svg");
  -webkit-animation: loader_rotate 1s linear;
  -o-animation: loader_rotate 1s linear;
  animation: loader_rotate 1s linear;
  background-size: 32px;
  background-position: center center;
  background-repeat: no-repeat;
  height : 32px;
  width: 32px;
  animation-iteration-count: infinite;
  display: inline-block;
}

@keyframes loader_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}