﻿.app-notification {
    position: fixed;
    top: 0;
    left: 40%;
    z-index: 1050;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login.login-v1 .login-container {
    flex: 1;
    max-width: 420px;
    background-color: white;
    position: relative;
    padding: 20px;
    border-radius: 2px;
}

.login.login-v1 {
    min-height: 100vh;
    width: 100%;
    background-image: url("../../img/login-background.jpg");
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-cover {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: black;
    opacity: 0.3;
}

.toaster {
    padding: 10px;
}

.pr-0 {
    padding-right: 0px !important
}

.irs.irs--big .irs-bar {
    height: 4px;
    top: 15px;
    background: #4285f4;
    box-shadow: none;
}

.irs .irs .irs-line {
    height: 4px;
    top: 15px;
    background: var(--app-component-border-color);
    border: none;
}

.irs.irs--big .irs-handle {
    top: 6px;
    width: 20px;
    height: 20px;
    background: #fff;
    border: none;
    box-shadow: 0 2px 5px rgb(33 33 33 / 20%);
}

.equal {
    display: -webkit-flex;
    display: flex;
}

#tblVessel thead tr th, #tblVessel tbody tr td {
    padding: 5px !important;
    font-size: smaller
}
#tblVessel tbody tr {
    cursor: pointer;
}

.selected {
    --bs-bg-opacity: 0.3;
    background-color: rgba(53,106,195,var(--bs-bg-opacity)) !important;
}
svg > g:last-child > g:last-child {
    pointer-events: none
}

div.google-visualization-tooltip {
    pointer-events: none
}

.border-radius-0{
    border-radius: 0px !important;
}

.box-shadow {
    box-shadow: inset 0 0 0 1px var(--app-component-border-color-transparent)
}
.ratting-a {
    background-color: #389c38 !important;
    font-weight:bold;
}
.ratting-b {
    background-color: #a1f0a1 !important;
    font-weight: bold;
}
.ratting-c {
    background-color: #ffff41 !important;
    font-weight: bold;
}
.ratting-d {
    background-color: #ffb631 !important;
    font-weight: bold;
}
.ratting-e {
    background-color: #ff4040 !important;
    font-weight: bold;
}
.spinner-panel {
    animation: rotate 2s linear infinite;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    width: 50px;
    height: 50px;
}

    .spinner-panel .path {
        stroke: #93bfec;
        stroke-linecap: round;
        animation: dash 1.5s ease-in-out infinite;
    }

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

.app-loader {
    background: #000 !important;
    z-index: 1050;
    opacity: 0.6;
}
.popover-body {
    max-height: 300px; /* Max Width of the popover (depending on the container!) */
    overflow-y: auto;
}
.app-header .navbar-form {
    max-width: 100% !important;
}

.panel-body-chart {
    padding: 0.5rem 1rem !important;
}

.ht-132px {
    height: 132px !important;
    min-height: 132px !important;
}

.ht-353px {
    min-height: 353px !important;
}

.relative {
    position: relative !important;
}

.poweredby {
    animation: color-change 1.5s infinite;
    color:none !important;
}

@keyframes color-change {
    0% {
        color: #4285f4;
    }
    50% {
        color: #212121;
    }
    100% {
        color: #4285f4;
    }
}