@charset "UTF-8";

/*====== custom font and background colors ======*/
.font-grey {
    color: #5f6ec7 !important;
}

.bg-grey {
    background-color: #5f6ec7 !important;
    color: #fff;
}

.bg-light-grey {
    background-color: rgba(95, 110, 199, 0.2) !important;
}

.bg-light-white {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.bg-secondary {
    background-color: #9e22c6 !important;
    color: #fff;
}

.text-color-secondary {
    color: #310c6a;
}

.bg-color-secondary {
    background-color: #310c6a;
}

/*====== custom table ======*/
.table-wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
}

.table {
    width: 100%;
}

.table-primary table thead tr:first-child {
    background: #3e1184;
}

.monitoring-table .input-group {
    text-align: right;
    max-width: 300px;
}

.monitoring-table table th,
.monitoring-table table td {
    text-align: center;
}

.monitoring-table table {
    background: linear-gradient(26deg, #3e1184 0%, #8551cc 100%);
}

.monitoring-table thead,
.monitoring-table tbody,
.monitoring-table tfoot {
    background-color: transparent;
    border-bottom: 2px solid #fff;
}

.monitoring-table table thead tr th {
    vertical-align: middle;
    background-color: rgba(62, 17, 132, 0.9);
    color: #fff;
    padding: 0.6rem;
    font-size: 14px;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
}

.monitoring-table table tbody tr td {
    vertical-align: middle;
    background-color: rgba(62, 17, 132, 0.9);
    padding: 0.45rem;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.monitoring-table table tbody tr td span {
    color: #f2b406;
}

.monitoring-table table tfoot tr th {
    vertical-align: middle;
    background-color: rgba(62, 17, 132, 0.9);
    padding: 0.5rem;
    font-size: 17px;
    font-weight: 500;
    color: #f2b406;
    font-family: Arial, Helvetica, sans-serif;
}

.monitoring-table table tbody tr td {
    vertical-align: middle;
}

.total-data {
    position: fixed;
    bottom: 3rem;
    width: 100%;
    background-color: #9e22c6;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(30rem);
    align-items: center;
}

.total-data .monitoring-table .table-wrapper table tfoot tr th {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
}

.wrapper {
    display: flex;
    width: 100%;
    height: 3.5em;
    position: fixed;
    bottom: 0;
    background-color: #002239;
    z-index: 999;
}

/*====== custom background position ======*/
.min-vh-lg-100 {
    min-height: 100vh !important;
}

.bg-img-start {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.bg-img-end {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.bg-img-center {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.d-none {
    display: none !important;
}

.dashboard {
    min-height: 100vh;
}

.header-dashboard {
    align-items: center;
    padding: 30px;
    vertical-align: middle;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.position-relative {
    position: relative !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.gx-2 {
    margin-right: 1px;
}

.gx-3 {
    margin-right: 3px;
}

.z-index-1 {
    z-index: 1 !important;
}

/*====== custom button ======*/
.btn-gradients {
    color: #fff !important;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 5px;
    background: linear-gradient(26deg, #7366ff 0%, #11113a 100%);
    letter-spacing: 0.06rem;
}

.btn-gradients:hover {
    background-size: 100% !important;
}

/*====== custom badges ======*/
.badges {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    padding: 16px 20px;
}

.badges-white {
    background-color: rgba(255, 255, 255, 0.1);
}

.rounded-badges {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    padding: 12px;
    border-radius: 6px;
}

.rounded-badges-white {
    background-color: rgba(255, 255, 255, 0.4);
}

.badge-dotted {
    border: 1px dashed rgba(255, 255, 255, 0.4);
}

/*====== custom running text ======*/
.text-static {
    position: sticky;
    width: 10%;
    padding: 0.8em;
    background-color: #0c6627;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-family: Times;
    float: left;
    text-align: middle;
    overflow: hidden !important;
}

.runningtext {
    position: sticky;
    width: 90%;
    padding: 0.8em;
    padding-left: 10px;
    display: block;
    overflow: hidden !important;
    background-color: #5f10a7;
    z-index: 999;
    /* line-height: 1.2; */
    font-size: 16px;
    font-family: Roboto;
}

.runningtext-content {
    color: #fff;
    white-space: nowrap;
    vertical-align: middle;
    position: absolute;
}

.runningtext-content img {
    padding: 0 23px;
}

/*====== custom border ======*/
.border-warning {
    border-top: 1.7px solid rgba(242, 180, 6, 0.7);
    border-bottom: 1.7px solid rgba(242, 180, 6, 0.7);
}

.opacity-05 {
    opacity: 0.5;
}

.opacity-07 {
    opacity: 0.7;
}

.opacity-08 {
    opacity: 0.8;
}

.opacity-09 {
    opacity: 0.9;
}

/*====== custom card ======*/
.card-header h5 {
    color: #fff;
    font-weight: 500;
    font-family: inter;
    font-size: 18px;
    text-align: center;
}

.card-body-bg {
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(7px);
    margin-top: -60px;
    border-radius: 15px;
    background-color: rgba(62, 17, 132, 0.4);
}

.card-chart-bg {
    background-color: rgba(62, 17, 132, 0.9);
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(10px);
}

.monitoring-header {
    padding: 8px;
    /* background-color: #AD0D0D; */
}

.monitoring-header h5 {
    color: #fff;
    font-weight: 500;
    font-family: Roboto;
    font-size: 20px;
    text-align: center;
}

.monitoring-header-right {
    border-radius: 0 0 0 7px;
    right: 35px;
    top: 33px;
    display: inline-block;
    float: right;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
}

/*====== custom preloader ======*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    border: 6px solid #3e1184;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.preloader-logo {
    position: absolute;
    z-index: 200;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-top: 6px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

/*====== custom login page ======*/
.bg {
    line-height: 1.9;
    max-width: 780px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
    text-shadow: var(--text-shadow);
    border-radius: 10px;
    border: 2px solid #ba8a2b;
    box-shadow: var(--box-shadow);
}

.login {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    background-position: center;
    padding: 20px 12px;
}

.login .login-main {
    width: 450px;
    padding: 40px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 37px rgba(8, 21, 66, 0.05);
    box-shadow: 0 0 37px rgba(8, 21, 66, 0.05);
    margin: 0 auto;
}

.login .login-main .theme-form h4 {
    margin-bottom: 5px;
}

.login .login-main .theme-form label {
    font-size: 15px;
    letter-spacing: 0.4px;
}

.login .login-main .theme-form .checkbox label::before {
    background-color: #f9f9fa;
    border: 1px solid #dfdfdf;
}

.login .login-main .theme-form .or {
    position: relative;
}

.login .login-main .theme-form .or:before {
    content: "";
    position: absolute;
    width: 65%;
    height: 2px;
    background-color: #f3f3ff;
    top: 9px;
    z-index: 0;
    right: 0;
}

.login .login-main .theme-form input {
    background-color: #f3f3ff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.login .login-main .theme-form input::-webkit-input-placeholder {
    color: #999999;
}

.login .login-main .theme-form input:hover,
.login .login-main .theme-form input:focus {
    border: 1px solid #b9c1cc;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.login .login-main .theme-form p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #898989;
}

.login .login-main .theme-form .form-group {
    margin-bottom: 10px;
    position: relative;
}

.login .login-main .theme-form .link {
    position: absolute;
    top: 10px;
    right: 0;
}

/*====== custom particles etc ======*/
.particles-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.particles-wrapper div {
    height: 100%;
}

.particle {
    position: absolute;
}

.particle.particle-dots {
    -webkit-mask-image: url(../img/particle-dot.svg);
    mask-image: url(../img/particle-dot.svg);
    z-index: 0;
    -webkit-mask-size: 18px;
}

.patterns svg {
    position: absolute;
}

.progress-reading {
    z-index: 99999;
    height: 8px;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100vh;
}

.tahun {
    width: 120px;
}

.korwil {
    width: 160px;
}

.jenis {
    width: 200px;
}

#map {
    position: relative;
    height: 500px;
}

/*====== responsive screen ======*/
@media only screen and (max-width: 1199px) {
    .monitoring-table table {
        max-width: 900px;
        overflow: auto;
    }

    .justify-sm-center {
        padding-left: 30px;
        padding-right: 30px;
        text-align: center;
    }

    .carousel-control-prev {
        /* display: none; */
        width: 10%;
    }

    .carousel-control-next {
        width: 10%;
        margin-right: 10px;
    }

    .header-dashboard img {
        width: 50px;
    }

    .text-static {
        width: 20%;
    }

    .runningtext {
        width: 80%;
    }
}

@media (min-width: 992px) {
    .d-lg-flex {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .table-wrapper {
        width: 100%;
    }
}

.card .row .target h5 {
    color: #dc3545;
}

.card .row .realisasi h5 {
    color: #0c6627;
}

.bg {
    line-height: 1.9;
    max-width: 780px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(7px);
    text-shadow: var(--text-shadow);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--box-shadow);
}
