@charset "UTF-8";

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

.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;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    border: 6px solid #0100d4;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    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);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #ffb800;
    color: #0100d4;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #ffaf02;
    color: #0100d4;
}

/*====== Custom Text ======*/
.sub-title {
    font-size: calc(22px + 8 * (100vw - 300px) / 1620);
    font-weight: 700;
    font-family: "Caveat", cursive;
    color: #ffff;
}

.sub-title-content {
    font-size: calc(18px + 8 * (100vw - 300px) / 1620);
    font-weight: 700;
    font-family: "Caveat", cursive;
    color: #460e57;
}

.bg-frontend {
    background-color: #f1f1f1 !important;
}

/*--------------------------------------------------------------
# Custom color
--------------------------------------------------------------*/

.text-color-primary {
    color: #0100d4 !important;
}
.text-color-secondary {
    color: #ffb800 !important;
}
.text-color-dark {
    color: #140212 !important;
}
.text-color-info {
    color: #460e57 !important;
}
.text-color-light {
    color: #edf7f7;
}
.text-primary-50 {
    color: rgba(1, 0, 212, 0.5) !important;
}
.text-primary-70 {
    color: rgba(1, 0, 212, 0.6) !important;
}
.text-dark-50 {
    color: rgba(20, 2, 12, 0.5) !important;
}
.text-dark-70 {
    color: rgba(20, 2, 12, 0.7) !important;
}
.bg-color-primary {
    background-color: #0100d4;
}
.bg-soft-color-primary {
    background-color: rgba(1, 0, 212, 0.1);
}
.bg-color-secondary {
    background-color: #ffb800;
}
.bg-soft-color-secondary {
    background-color: rgba(248, 240, 7, 0.1);
}
.bg-color-info {
    background-color: #460e57 !important;
}
.bg-color-dark {
    background-color: #140212;
}
.bg-soft-color-dark {
    background-color: rgba(20, 2, 12, 0.1);
}
.bg-color-light {
    background-color: #edf7f7;
}
.bg-color-lighter {
    background-color: #e5f1f1 !important;
}

.bg-gradient-primary {
    /* background-color: #3044a9 !important; */
    background: linear-gradient(to bottom, #2b7274 0%, #073b3a 100%);
}

.bg {
    line-height: 1.9;
    max-width: 780px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(3rem);
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); */
    border-radius: 10px 0 0 10px;
    /* border: 2px solid rgba(248, 240, 7, 0.7); */
    box-shadow: var(--box-shadow);
}

.login h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    color: #963600;
}
.login label {
    font-weight: 500;
}
.animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
    0% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(-10px);
    }
}

/*--------------------------------------------------------------
# Border
--------------------------------------------------------------*/

.border-dark-70 {
    border-color: rgba(33, 50, 91, 0.7) !important;
}

.border-dark-50 {
    border-color: rgba(33, 50, 91, 0.5) !important;
}

.b-table {
    border: 2px solid #ffb800 !important;
}
.b-t-table {
    border-top: 2px solid #ffb800 !important;
}
.b-t-b-table {
    border: 2px solid #ffb800 !important;
    /* border-bottom: 2px solid #FFB800 !important; */
}
.b-b-table {
    border-bottom: 1px solid #ffb800 !important;
}

.b-l-table {
    border-left: 2px solid #ffb800 !important;
}

.b-r-table {
    border-right: 2px solid #ffb800 !important;
}

.border-bottom-dark {
    border-bottom: 1px solid #011d4a !important;
}

.offer-slider .d-grid h4 {
    font-family: Times;
    /* color: #ffff !important; */
}

/*--------------------------------------------------------------
# Width Column
--------------------------------------------------------------*/

.w-lg-45 {
    width: 45% !important;
}
.w-lg-55 {
    width: 55% !important;
}

.tutorial-text:hover {
    color: #d40c54;
    text-decoration: underline;
}

/*--------------------------------------------------------------
# Parallax
--------------------------------------------------------------*/
/* .parallax {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
} */

/* .parallax img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.w-lg-50 {
    width: 50% !important;
}

.row .image-logo {
    display: flex;
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 100px;
}

#text {
    position: absolute;
} */

/*====== responsive screen ======*/
/* @media only screen and (max-width: 450px) {
    .parallax img {
        position: absolute;
        background-size: auto 600px;
    }
} */

@media only screen and (max-width: 1199px) {
    .parallax {
        position: absolute;
        background-size: auto 600px;
        /* height: 100vh; */
    }

    .parallax h2 {
        font-size: 20px;
    }

    .navbar-brand img {
        width: 100px;
    }

    .login {
        background-image: url(/image/background/phone-bg.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
    }
    .login .flex-grow-1 {
        margin-right: auto !important;
        margin-left: auto !important;
        padding: 0 20px;
    }
}

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

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

/*--------------------------------------------------------------
# Custom animation
--------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
}
/* .hero {
    height: 100vh;
    width: 100%;
    background-image: url("/image/component/bg.png");
    background-size: cover;
    background-position: top center;
    position: relative;
    overflow-x: hidden;
} */

.mountain {
    height: 100vh;
    width: 500%;
    display: block;
    background-image: url("/image/component/mountain.png");
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.gradient {
    height: 100vh;
    width: 500%;
    display: block;
    background-image: url("/image/component/gradient.png");
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.cloud {
    height: 100vh;
    width: 500%;
    background-image: url("/image/component/cloud.png");
    position: absolute;
    bottom: 200px;
    left: 0;
    right: 0;
    display: block;
    z-index: 1;
    background-repeat: repeat-x;
    animation: cloud 25s linear infinite;
}

@keyframes cloud {
    100% {
        transform: translatex(-1300px);
    }
}

.building-shadow {
    height: 500px;
    width: 500%;
    background-image: url("/image/component/building-shadow.png");
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    display: block;
    z-index: 1;
    background-repeat: repeat-x;
    animation: building-shadow 23s linear infinite;
}

@keyframes building-shadow {
    100% {
        transform: translatex(-1400px);
    }
}

.building {
    height: 440px;
    width: 500%;
    background-image: url("/image/component/building.png");
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    display: block;
    z-index: 1;
    background-repeat: repeat-x;
    animation: building 20s linear infinite;
}

@keyframes building {
    100% {
        transform: translatex(-1400px);
    }
}

.road {
    height: 120px;
    width: 500%;
    background-image: url("/image/component/road.png");
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    z-index: 1;
    background-repeat: repeat-x;
    /* animation: road 5s linear infinite; */
}

@keyframes road {
    100% {
        transform: translatex(-1400px);
    }
}

.civil {
    height: 380px;
    width: 500%;
    background-image: url("/image/component/civil.png");
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    z-index: 2;
    background-repeat: repeat-x;
}

/* @keyframes civil {
    100% {
        transform: translateY(-1px);
    }
    50% {
        transform: translateY(1px);
    }
    0% {
        transform: translateY(-1px);
    }
} */

/*--------------------------------------------------------------
# Custom map
--------------------------------------------------------------*/

#map {
    height: 400px;
}

/*--------------------------------------------------------------
# Monitoring Dashboard
--------------------------------------------------------------*/
/*====== header and background resolution ======*/
.card-body-bg {
    /* margin-top: -100px; */
    border-radius: 15px;
}
.card-header h5 {
    color: #ffff;
    text-shadow: 2px 2px 4px rgba(232, 101, 28, 0.4);
    font-weight: 600;
    font-family: Times;
    font-size: 23px;
    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;
}

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

.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;
}

.min-vh-lg-100 {
    min-height: 100vh !important;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}

/*====== custom button and components ======*/
.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;
}
.btn-custom {
    background: #c68300;
    color: #fff;
}
.badges {
    font-size: 14px;
    color: #41e1f2;
    font-weight: 500;
    padding: 16px 20px;
}
.badges-white {
    background: linear-gradient(to bottom, #eb9f0b 0%, #ffb800 100%);
    color: #fff;
    font-family: Roboto, sans;
}
.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);
}
.gx-2 {
    margin-right: 1px;
}
.gx-3 {
    margin-right: 3px;
}
.z-index-1 {
    z-index: 1 !important;
}

/*====== custom table ======*/

.table-primary table thead tr:first-child {
    background: #3044a9;
}
.monitoring-table .input-group {
    text-align: right;
    max-width: 300px;
}
.monitoring-table table th,
.monitoring-table table td {
    text-align: center;
    /* border-radius: 20px; */
}

.monitoring-table thead,
.monitoring-table tbody,
.monitoring-table tfoot {
    background-color: transparent;
    /* border-bottom: 2px solid #f8d62b; */
}
.monitoring-table table thead tr {
    border-top: 1px solid #ffff;
    border-bottom: 1px solid #ffff;
    /* border-radius: 20px; */
}
.monitoring-table table thead tr th {
    vertical-align: middle;
    background-color: rgba(7, 59, 58, 1);
    padding: 0.8rem;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}
.monitoring-table table tbody tr td {
    vertical-align: middle;
    background-color: rgba(7, 59, 58, 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: #f8d62b;
}
.monitoring-table table tfoot tr th {
    background-color: rgba(7, 59, 58, 1);
    vertical-align: middle;
    padding: 0.8rem;
    font-size: 17px;
    font-weight: 600;
    color: #f8d62b;
    font-family: Arial, Helvetica, sans-serif;
}
.monitoring-table table tbody tr td {
    vertical-align: middle;
}
.monitoring-table table tbody tr td span {
    color: #f8d62b;
}
.monitoring-table table tbody tr td .product-name a {
    font-size: 15px;
    color: #898989;
}
.total-data {
    position: fixed;
    bottom: 3rem;
    width: 100%;
    background-color: #3044a9;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(30rem);
    align-items: center;
}
.total-data .monitoring-table .table-wrapper table tfoot tr th {
    color: #f8d62b;
    font-weight: 600;
    font-size: 20px;
}
.realtime-data {
    margin-bottom: 30px;
    width: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 0px;
    overflow: hidden;
    border: 1px solid #3044a9;
    border: none;
}

.realtime-data .nav-item .nav-link {
    background: #3044a9;
    border: 1.8px solid #3044a9;
    padding: 0.7rem 1.5rem;
    /* opacity: 0.5; */
    color: #fff;
}
.realtime-data .nav-item .nav-link-active {
    background: #7f2225;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border: 1.8px solid #7f2225;
}
.realtime-data .nav-item.show,
.realtime-data .nav-item.active {
    background-color: rgba(255, 255, 255, 0.1);
}
.tahun {
    width: 120px;
}
.jenis {
    width: 200px;
}
.table-wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
}
.table {
    width: 100%;
}

/*====== custom running text ======*/

.wrapper {
    display: flex;
    width: 100%;
    height: 3.5em;
    position: fixed;
    bottom: 0;
    background-color: #140212;
    z-index: 999;
}
.text-static {
    position: sticky;
    width: 10%;
    padding: 0.8em;
    background-color: #ffb800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    /* background: linear-gradient(to bottom, #eb9f0b 0%, #FFB800 100%); */
    font-family: Roboto, sans;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    float: left;
    text-align: middle;
    overflow: hidden !important;
    border-radius: 0px 30px 0px 0px;
}
.runningtext {
    position: sticky;
    width: 90%;
    padding: 0.8em;
    padding-left: 10px;
    display: block;
    overflow: hidden !important;
    background-color: #140212;
    z-index: 999;
    font-size: 16px;
    /* font-weight: 500; */
    font-family: Roboto;
}
.runningtext-content {
    color: #fff;
    white-space: nowrap;
    vertical-align: middle;
    position: absolute;
}
.runningtext-content img {
    padding: 0 23px;
}

/*====== Responsive ======*/

@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: 35%;
    }
    .carousel-control-next {
        width: 35%;
        margin-right: 5px;
    }
    .header-dashboard img {
        width: 50px;
    }
    .offer-slider {
        justify-content: center;
        padding-bottom: 14px;
    }
    .offer-slider .col-xl-6 h3 p {
        display: flex;
    }
    .offer-slider .col-xl-3 {
        text-align: center;
        padding: 12px;
    }
    .offer-slider span {
        margin-bottom: -18px;
    }
    .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%;
    }
}
