/* app css stylesheet */
body{
    /*direction: rtl;*/
    /*text-align: right;*/
    padding-top: 65px;
}
.menu {
    list-style: none;
    border-bottom: 0.1em solid black;
    margin-bottom: 2em;
    padding: 0 0 0.5em;
}

.menu:before {
    content: "[";
}

.menu:after {
    content: "]";
}

.menu > li {
    display: inline;
}

.menu > li:before {
    content: "|";
    padding-right: 0.3em;
}

.menu > li:nth-child(1):before {
    content: "";
    padding: 0;
}

.logo{
    margin-top: 5px;
    margin-left: 20px;
}

span.error{
    color: red;
}
.center{
    text-align: center;
}

/*angular-ui*/
.nav, .pagination, .carousel, .panel-title a { cursor: pointer; }

.prm-null{
    background-color: #f2dede;
}
.prm-read{
    background-color: #fcf8e3;
}
.prm-write{
    background-color: #dff0d8;
}
.reporters_threads_buttons{
    margin-bottom: 5px;
}

p.multi-line{
    white-space: pre;
}

/* Spinner*/
.spinner {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: fixed;
  z-index: 100;
  top: 30%;
  left: 50%;
  text-align: center;

  -webkit-animation: rotate 2.0s infinite linear;
  animation: rotate 2.0s infinite linear;
}

.dot1, .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #3A32FF;
  border-radius: 100%;

  -webkit-animation: bounce 2.0s infinite ease-in-out;
  animation: bounce 2.0s infinite ease-in-out;
}

.dot2 {
  top: auto;
  bottom: 0px;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}

@-webkit-keyframes bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes bounce {
  0%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

.carousel-indicators{
    display: none;
}

/* Footer */
html {
    position: relative;
    min-height: 100%;
}
body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}
.footer {
    /*position: absolute;*/
    bottom: 0;
    width: 100%;
    padding: 12px 0px;
    border-radius: 6px;
    background-color: #f5f5f5;
}

.drop-box {
    border: 2px lightgray dashed;
    padding: 22px;
    margin-bottom: 10px;
    border-radius: 6px;
    transition: border-color 0.2s;
}

.drop-box.drag-over{
    border-color: dodgerblue;
}

.signature-pad--body canvas {
  width:100%;
  border:1px solid #ccc;
}
