/*  Global Settings */
* {
    margin: 0px;
    padding: 0px;
}

*:focus,
a, a:active,
i, i:active
{
    outline: 0;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    padding-bottom: 50px;
}

.pythia-primary {
    color: #233A67;
}
.pythia-primary-bg {
    background-color: #233A67;
}

.pythia-secondary {
    color: #8DD1EC;
}
.pythia-secondary-bg {
    background-color: #8DD1EC;
}

.pythia-third {
    color: #EE6147;
}
.pythia-third-bg {
    background-color: #EE6147;
}

.is-horizontal-center {
    justify-content: center;
}

.hidden {
    display: none !important;
}

.has-text-wrapped {
    white-space: normal;
    word-break: break-word;
}

.has-text-nowrap {
    white-space: nowrap;
}

.table-responsive {
    overflow-x: auto;
}

.dropdown-menu {
    width: 100%;
    max-width: 16em;
    max-height: 250px;
    overflow: auto;
    box-shadow: 0px 0px 5px lightgrey;
    z-index: 21;
    background-color: #fff
}

.dropdown-content {
    box-shadow: unset;
    border-radius: 0;
}

button .tag {
    margin-left: 5px;
}

.popover .popover-content {
    max-width: 20em;
}

.modal {
    z-index: 45;
}


/* Splash Screen */
.splash-screen {
    position: absolute;
    top: 20%;
    left: 33.3333%;
}

.splash-screen > .init-wrapper {
}

.splash-screen > .init-wrapper > h1 {
    color: #ababab;
}


/* Login Page */
#recoverform {
    display: none;
}


/* Top Bar */
.autocomplete-results {
    position: absolute;
}

@keyframes heartbeat {
    to {
        transform: scale(0.7);
    }
}

[data-badge].has-badge-danger::after {
    top: 20px;
    right: -15px;

    -webkit-animation: heartbeat .5s infinite alternate;
	-moz-animation: heartbeat .5s infinite alternate;
	-ms-animation: heartbeat .5s infinite alternate;
	-o-animation: heartbeat .5s infinite alternate;
    animation: heartbeat .5s infinite alternate;
    content: "";
}


/* SideBar */
#left-menu {
    display: none;
}

#left-menu.is-active {
    display: block;
}

#left-menu .left-menu-notifications {
    position: fixed;
    top: 60px;
    left: 0;

    width: 300px;
    background: #fff;
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 0.75em;

    box-shadow: 0px 2px 4px #d0cece;
}

@media screen and (min-width: 1400px) {
    .is-one-point-five-fullhd {
        width: 12% !important;
    }
}


/* Datasources */
.title-divider {
    margin-top: 0;
}


/* Calendar */
.datetimepicker {
    z-index: 10;
}

.datetimepicker-dummy .datetimepicker-clear-button {
    display: none;
}

.layout_default .picker_done {
    display: none;
}

#user-guide iframe {
    width: 100%;
    height: calc(100vh - 204px)
}

/* Dashboard / Widgets */
.dashboard-wrapper-light {
    background-color: #e8e8e8;
    background: linear-gradient(180deg, darkgrey 0%, #e8e8e8 0.7%, #e8e8e8 70%, #fff 100%);
}

.grid-stack-item {
    padding: 4px !important;
}
.grid-stack-item > div:first-child {
    border: 1px solid whitesmoke;
    border-radius: 4px;
}
.widget-title-bar > div {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.widget-container {
    background-color: #fff;
    box-shadow: 0px 1px 2px darkgray;
    height: 100%;
}
.widget-content {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

/* Wordcloud Tooltip */
body > div.tooltip {
    width: unset !important;
    height: unset !important;
}
