
/* [src] src/css/app.css */
.widget-title {
    font-weight: 400;
}

.smaller {
    font-size: 14px;
}

.big {
    font-size: 18px;
}

.bigger {
    font-size: 28px;
}

.private {
    visibility: hidden;
}

/* * * * * * * * * * * * * * * *
*    Lexoffice spinner         *
* * * * * * ** * * * * * * * * */
.grld-main-spinner-x {
  width: 60px;
  height: 60px;
  background-size: 60px 60px;
  display: inline-block;
  background-image: url("asset/img/loading.gif?v=@@buildno@@");
  background-repeat: no-repeat;
}

.center-xy{
    display: flex;
    justify-content: center;
    align-items: center;
}

.privateModeBackground{
    background: rgba(238,123,32, 0.2)
}

/* * * * * * * * * * * * * * * *
*    Widget specific styles    *
* * * * * * ** * * * * * * * * */
.label-h1-aligned {
    position: relative;
    top: -3px;
}

.lx-card-highlighted {
    border: 1px solid #ee7200;
    box-shadow: #ee7200 0px 1px 2px 0px;
}

.feature-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.feature-list-element {
    padding-left: 1.7em;
    text-indent: -0.7em;
}

/* * * * * * * * * * * * * * * *
*    Private mode pulse        *
* * * * * * ** * * * * * * * * */
.pulse {
  display: block;
  border-radius:3px;
  cursor: pointer;
  animation: pulse 4s infinite 1.5s;
}
.initialPulse {
  display: block;
  border-radius:3px;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(238,123,32,0.4);
  background: rgba(238,123,32,0.4);
  animation: initialPulse 1.5s normal;
}

@keyframes initialPulse {
  0% {
     -moz-box-shadow: 0 0 0 0 rgba(238,123,32, 0.2);
     box-shadow: 0 0 0 0 rgba(238,123,32, 0.2);
     background: rgba(238,123,32,0.2);
  }
  70% {
     -moz-box-shadow: 0 0 0 3000px rgba(204,169,44, 0);
     box-shadow: 0 0 0 3000px rgba(204,169,44, 0);
     background: rgba(238,123,32,0);
  }
  100% {
     -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
     box-shadow: 0 0 0 0 rgba(204,169,44, 0);
     background: rgba(238,123,32,0);
  }
}

@keyframes pulse {
  0% {
     -moz-box-shadow: 0 0 0 0 rgba(238,123,32, 0.3);
     box-shadow: 0 0 0 0 rgba(238,123,32, 0.3);
     background: rgba(238,123,32,0.3);
  }
  70% {
     -moz-box-shadow: 0 0 0 15px rgba(204,169,44, 0);
     box-shadow: 0 0 0 15px rgba(204,169,44, 0);
     background: rgba(238,123,32,0);
  }
  100% {
     -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
     box-shadow: 0 0 0 0 rgba(204,169,44, 0);
     background: rgba(238,123,32,0);
  }
}

.highlighted {
 background-color: yellow;
}

.taxadvisor-avatar {
    border-radius: 50%;
    border: 2px solid #aaa;
    width: 60px;
    height: 60px;
}