
:root {
  --kinazJScolorYellow: #a7a73f; /* global scope */
  --kinazJScolorPurple: #a0246c; /* global scope */
  --kinazJScolorGreen: #218b99; /* global scope */
    --fc-small-font-size: .85em;
    --fc-page-bg-color: #fff;
    --fc-neutral-bg-color: hsla(0, 0%, 82%, .3);
    --fc-neutral-text-color: grey;
    --fc-border-color: #ddd;
    --fc-button-text-color: #fff;
    --fc-button-bg-color: #2c3e50;
    --fc-button-border-color: #2c3e50;
    --fc-button-hover-bg-color: #1e2b37;
    --fc-button-hover-border-color: #1a252f;
    --fc-button-active-bg-color: #1a252f;
    --fc-button-active-border-color: #151e27;
    --fc-event-bg-color: #a0246a;
    --fc-event-border-color: #882b79;
    --fc-event-text-color: #fff;
    --fc-event-selected-overlay-color: rgba(0, 0, 0, .25);
    --fc-more-link-bg-color: #d0d0d0;
    --fc-more-link-text-color: inherit;
    --fc-event-resizer-thickness: 8px;
    --fc-event-resizer-dot-total-width: 8px;
    --fc-event-resizer-dot-border-width: 1px;
    --fc-non-business-color: hsla(0, 0%, 84%, .3);
    --fc-bg-event-color: #8fdf82;
    --fc-bg-event-opacity: 0.3;
    --fc-highlight-color: rgba(188, 232, 241, .3);
    --fc-today-bg-color: rgba(255, 220, 40, .15);
    --fc-now-indicator-color: e74a3b;
}

@keyframes spin {
  0% {
    transform: rotate(0deg); /* Start at 0 degrees */
  }
  100% {
    transform: rotate(360deg); /* End at 360 degrees (a full turn) */
  }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

#loading{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1040;
    display: none;
}

#loadingBackground{
    
    position: absolute;
    width: 100%;
    height: 100%;
    background: black;
    opacity: .5;
}

#loadingImage{
    height: 250px;
    width: 200px;
    position: relative;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}

#loadingImage img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
#loadingImageText {
    color: var(--kinazJScolorGreen);
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 0;
    font-size: 50px;
    font-weight: 900;
}

#loadingImageText span {
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
    text-shadow: 0px 0px 20px white;
}


#loadingImageText span:nth-child(1) {
    animation-delay: 0s;
}
#loadingImageText span:nth-child(2) {
    animation-delay: 0.2s;
}
#loadingImageText span:nth-child(3) {
    animation-delay: 0.4s;
}
#loadingImageText span:nth-child(4) {
    animation-delay: 0.6s;
}
#loadingImageText span:nth-child(5) {
    animation-delay: 0.8s;
}

#messageList{
    position: absolute;
    z-index: 1040;
    right: 0;
    list-style-type: none;
    padding: 0;
    max-height: 100%;
    overflow: hidden;
}

.messageListRow {
    width: 300px;
    height: 75px;
    background: white;
    margin: 15px;
    position: relative;
    padding: 10px;
    padding-left: 30px;
    border-radius: 12px;
    border: #d1d3e2 solid 3px;
}

.messageListRow.warning{
    color: var(--kinazJScolorYellow) !important;
    border-color: var(--kinazJScolorYellow) !important;
}

.messageListRow.danger{
    color: var(--kinazJScolorPurple) !important;
    border-color: var(--kinazJScolorPurple) !important;
}
.messageListRow.success{
    color: var(--kinazJScolorGreen) !important;
    border-color: var(--kinazJScolorGreen) !important;
}

.messageListRowClose {
    position: absolute;
    margin: 0 5px;
    cursor: pointer;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.messageListRowText{
    vertical-align: middle;
    height: 100%;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    justify-content: center;
    display: flex;
}