@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'poppins', sans-serif;
}

/* Login Style */
.wave{
    position: absolute;
    left: -100px;
    height: 100%;
    z-index: -1;
    
}
.Banner{
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}
.container{
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 7rem;
    padding: 0 2rem;
}
.img{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.img img{
    width: 500px;
    
}


.avatar{
    width: 100px;
}


.login-content{
    display: flex;
    align-items: center;
    text-align: center;
}


.LoginForm{
    width: 360px;
}

.LoginForm h2{
    font-size: 2.9rem;
    text-transform: uppercase;
    margin: 15px 0;
    color: #333;

}

.input-div{
    display: grid;
    grid-template-columns: 7% 93%;
    margin: 25px 0;
    padding: 5px 0;
    border-bottom: 2px solid #d9d9d9;
}

.i{
    display: flex;
    justify-content: center;
    align-items: center;
}
.i i{
    color: #d9d9d9;
}


.input-div > div{
    position: relative;
    height: 45px;
}

.input-div > div h5{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
    transition: .3s;
}

.input-div:before, .input-div:after{
	content: '';
	position: absolute;
	bottom: -2px;
	width: 0%;
	height: 2px;
	background-color: #38d39f;
	transition: .4s;
}


.input-div:before{
	right: 50%;
}

.input-div:after{
	left: 50%;
}

.input-div.focus:before, .input-div.focus:after{
	width: 50%;
}

.input-div.focus > div > h5{
	top: -5px;
	font-size: 15px;
}

.input-div.focus > .i > i{
	color: #38d39f;
}

.login-content .input-div .ShowPwd.active::before{
    color: #333;
    content: "\f070";
}
.login-content .input-div .ShowPwd{    
    color: #ccc;
    cursor: pointer;
}


.input-div > div > .input{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	background: none;
	padding: 0.5rem 0.7rem;
	font-size: 1.2rem;
	color: #555;
	font-family: 'poppins', sans-serif;
}
.input-div.LoginEmail{
    margin-top: 0;    
}
.input-div.LoginPassword{
    margin-bottom: 4px;    
}

.LoginForm a{
    display: block;
    text-align: right;
    text-decoration: none;
    color: #999;
    font-size: 0.9rem;
    transition: .3s;
}

.LoginForm a:hover{
    color: #38d39f;
}
.LoginForm span{
    display: block;
    text-align: right;
    text-decoration: none;
    color: #999;
    font-size: 0.9rem;
    transition: .3s;
    cursor: pointer;
}

.LoginForm span:hover{
    color: #38d39f;
}

.btn_login{
    display: block;
	width: 100%;
	height: 50px;
	border-radius: 25px;
	outline: none;
	border: none;
	background-image: linear-gradient(to right, #32be8f, #38d39f, #32be8f);
	background-size: 200%;
	font-size: 1.2rem;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	margin: 1rem 0;
	cursor: pointer;
	transition: .5s;
}

.btn_login:hover{
    background-position: right;
}
.btn_reset{
    display: block;
	width: 100%;
	height: 50px;
	border-radius: 25px;
	outline: none;
	border: none;
	background-image: linear-gradient(to right, #32be8f, #38d39f, #32be8f);
	background-size: 200%;
	font-size: 1.2rem;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	margin: 1rem 0;
	cursor: pointer;
	transition: .5s;
}

.btn_reset:hover{
    background-position: right;
}



.login-content form .error-txt{
    color: #721c24;
    background: #f8d7da;
    padding: 8px 10px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 1px solid #f5c6cb;
    display: none;
}

















/*
.urls-detail::-webkit-scrollbar{
    width: 0px;
}
*/

/* Web Backend */

.backend{
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: 'poppins', sans-serif;
    overflow: hidden;
}

.backend header{
    position: fixed;
    background: #1378bb;
    padding: 0 0 0 20px;
    width: 100%;
    height: 50px;
    z-index: 50;
}
.backend .left_area h3{
    color: rgb(43, 250, 95);
    margin-top: -15px;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 900;
}
.backend .left_area span{
    color: #F6CF2C;    
}


.backend .FRightArea{
    width: 100px;
    height: 56px;
    position: relative;
    top: -72px;
    left: calc(100vw - 397px);
    /* float: right; */
    border-radius: 0 5px 5px 0;
}
.backend .logout_btn{
    padding: 5px;
    background: #e19a17;
    text-decoration: none;
    float: right;
    margin-top: -35px;
    margin-right: 5px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    transition: 0.5s;
    transition-property: background;
}
.backend .logout_btn:hover{
    background: #d30b0b;
}
.backend .sidebar{
    background: #0c4f7c;
    margin-top: 50px;
    padding-top: 30px;
    position: fixed;
    left: 0px;
    width: 250px;
    height: 100%;
    transition: 0.5s;
    transition-property: left;
}
.backend .sidebar .profile_image{
    width: 100px;
    height: 100px;
    border-radius: 100px;
    margin-bottom: 10px;
}
.backend .sidebar h4{
    color: #ccc;
    margin-top: 0;
    margin-bottom: 5px;
}
.backend .sidebar h5{
    color: rgb(143, 187, 39);
    margin-top: 0;
    margin-bottom: 15px;
}
.backend .sidebar a{
    color: #fff;
    display: block;
    width: 100%;
    line-height: 60px;
    text-decoration: none;
    padding-left: 40px;
    box-sizing: border-box;
    transition: 0.5s;
    transition-property: background;
}
.backend .sidebar a:hover{
    background: #F6CF2C;
    color: #0c4f7c;
}
.backend .sidebar i{
    padding-right: 10px;
}

.backend #sidebar_btn{
    z-index: 51;
    color: #fff;
    position: fixed;
    cursor: pointer;
    left: 250px;
    font-size: 20px;
    margin: 5px 0;
    transition: 0.5s;
    transition-property: color;
}
.backend #sidebar_btn:hover{
    color: #F6CF2C;
}

.backend #check:checked ~ .sidebar{
    left: -190px;
}
.backend #check:checked ~ .sidebar a span{
    display: none;
}
.backend .sidebar center{
    display: inherit;
    transition: 0.5s;
    transition-property: display;
}
.backend #check:checked ~ .sidebar center{
    display: none;
}
.backend #check:checked ~ .sidebar a{
    font-size: 20px;
    margin-left: 170px;
    width: 80px;
}


.backend .content{
    margin-left: 250px;
    background-position: center;
    background-size: cover;
    width: calc(100vw - 250px);
    height: 100vh;
    transition: 0.5s;
    transition-property: margin-left;
    overflow: auto;
}


@media screen and (max-width: 1050px){
	.container{
		grid-gap: 5rem;
	}
}

@media screen and (max-width: 1000px){
	form{
		width: 290px;
	}

	.login-content h2{
        font-size: 2.4rem;
        margin: 8px 0;
	}

	.img img{
		width: 400px;
	}
}

@media screen and (max-width: 600px){
	.container{
		grid-template-columns: 1fr;
	}

	.img{
		display: none;
	}

	.wave{
		display: none;
	}

	.login-content{
		justify-content: center;
	}
    #sidebar_btn{
        display: none;
    }
    .profile_image{
        display: none;
    }
    .CaptionProfile{
        display: none;
    }
    #LeftSB{
        width: 60px;
    }
    .sidebar a span{
        display: none;
    }
    .sidebar a{
        font-size: 20px;
        margin-left: -20px;
        width: 80px;
    }
    /* .backend .content{
        margin-left: 15vw;
        background-position: center;
        background-size: cover;
        width: 85vw;
        height: 100vh;
        transition: 0.5s;
        transition-property: margin-left;
        overflow: auto;
    } */

    .backend .content{
        margin-left: 60px;
        background-position: center;
        background-size: cover;
        width: calc(100vw - 60px);
        height: 100vh;
        transition: 0.5s;
        transition-property: margin-left;
        overflow: auto;
    }
}


/* .backend .content{
    margin-left: 250px;
    background-position: center;
    background-size: cover;
    width: calc(100vw - 250px);
    height: 100vh;
    transition: 0.5s;
    transition-property: margin-left;
    overflow: auto;
} */


.backend #check:checked ~ .content{
    margin-left: 60px;
    width: calc(100vw - 60px);
}
.backend #check{
    display: none;
}
.backend .content .main{
    color: #3c3f49;
    padding: 60px 20px 20px 20px;
    text-decoration: none;
    font-family: 'poppins', sans-serif;
}

.backend .content .main .flex-grow{
    padding-bottom: 20px;
    padding-top: 20px;
}
.backend .content .main .card .card-title{
    color: lavender;
}
.cariData .url-icon{
    position: absolute;
    width: 50px;
    text-align: center;
    font-size: 23px;
    color: #c4c4c4;
    pointer-events: none;
    top: 10px;
    
}

.captionMenu{
    display: flex;
}
.captionMenu h4{
    padding-left: 10px;
}

.cariData input:valid ~ .url-icon{
    color: #20B2AA;
}
.cariData input{
    padding: 0 0 0 45px;
    outline: none;
    caret-color: #20B2AA;
    border: 2px solid #ddd;
    border-radius: 5px 0 0 5px;
    transition: all 0.5s ease;
    /* min-width: 500px;
    max-width: 50vw; */
    min-width: 40vw;
    max-width: 50vw;
    /* width: 50vw; */
}
.cariData input:valid{
    border-color: #20B2AA;
}

.cariData input::placeholder{
    color: #c4c4c4;
}

.cariData input:focus::placeholder{
    color: #d9d9d9;
}


.input-group .btn_add{
    border-radius: 0 5px 5px 0;
    padding: 5px 5px 5px 5px;
    color: #fff;
    border: none;
    cursor: pointer;
    background: #20B2AA;
    transition: all 0.5s ease;
}

.input-group .btn_add:hover{
    background: #13837d;
}

.input-group .btn_add:focus{
    background: #2682d8;
    border: none;
    outline: none;

}

.TabelLaporan{
    display: none;
}
.TabelLaporan.print{
    display: inherit;
}


.urls-area{
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 5px;
    max-height: 70vh;
    overflow-y: scroll;
}

.urls-area::-webkit-scrollbar{
    width: 0px;
}

.urls-area :is(.title-area, .data-area){
    display: flex;
    width: 100%;
    justify-content: space-between;
    /* align-items: stretch; */
}


.urls-area li{
    list-style: none;
    width: 100%;
    border-right: 1px solid #ddd;
    /* display: inherit; */
}

.urls-area li:last-child{
    border-right: 0px;
}

.urls-area .title-area li{
    text-align: center;
    background: #1c969e;
    color: #fff;
    padding: 10px 0;
    
}

.urls-area .data-area li{
    display: flex;
    padding: 8px 10px;
    word-break: break-all;
}
.urls-area .data-area li a:hover{
    color: #20B2AA;
    text-decoration: underline;

}
.urls-area .data-area li:last-child a:hover{
    text-decoration: none;
}

.urls-area .data-area:hover{
    background: #f8f4b3;
}
.urls-area .data-area:nth-child(odd){
    background: #f2f2f2;
}
.urls-area .data-area:nth-child(odd):hover{
    background: #f8f4b3;
}













/* Print Area */
.print-area{
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 5px;
}

.print-area::-webkit-scrollbar{
    width: 0px;
}

.print-area :is(.title-area, .data-area){
    display: flex;
    width: 100%;
    justify-content: space-between;
    /* align-items: stretch; */
}


.print-area li{
    list-style: none;
    width: 100%;
    border-right: 1px solid #ddd;
    /* display: inherit; */
}

.print-area li:last-child{
    border-right: 0px;
}

.print-area .title-area li{
    text-align: center;
    background: #1c969e;
    color: #fff;
    padding: 10px 0;
    
}

.print-area .data-area li{
    display: flex;
    padding: 8px 10px;
    word-break: break-all;
}
.print-area .data-area li a:hover{
    color: #20B2AA;
    text-decoration: underline;

}
.print-area .data-area li:last-child a:hover{
    text-decoration: none;
}

.print-area .data-area:hover{
    background: #f8f4b3;
}
.print-area .data-area:nth-child(odd){
    background: #f2f2f2;
}
.print-area .data-area:nth-child(odd):hover{
    background: #f8f4b3;
}














.urls-detail{
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 5px;
    /* max-height: 550px; */
    max-height: calc(100vh - 300px);
    overflow-y: scroll;
    border-bottom: 0px;
}

.urls-detail::-webkit-scrollbar{
    width: 0px;
}

.urls-detail :is(.horizontal-area){
    display: flex;
    width: 100%;
    justify-content: flex-start;
}

.urls-detail li{
    list-style: none;
    width: 100%;
    border-right: 1px solid #ddd;
}
.urls-detail li:last-child{
    border-right: 0px;
    /*  */
}

.urls-detail .horizontal-area li{
    display: flex;
    align-items: flex-start;
    justify-content: left;
    padding: 8px 10px;
    word-break: break-all;
    border-bottom: 1px solid #ddd;
}

.urls-detail li:nth-child(1){
    max-width: 18%;
    background-color: #61748c;
    color: #dbe1f2;
    font-weight: 400;
    border-right: 0px;
}

.urls-detail li:nth-child(2){
    max-width: 2%;
    background-color: #61748c;
    color: #dbe1f2;
    border-left: 0px;
}
.urls-detail li:nth-child(3){
    max-width: 80%;    
    
}




.berita ol{
    padding-left: 40px;
}
/* .berita p {
    text-indent: 50px;
    text-align: justify;
    letter-spacing: 3px;
  } */


.blur-effect{
    position: absolute;
    height: 100%;
    width: 100%;
    top:0;
    left:0;
    backdrop-filter: blur(5px);
    background:rgba(7, 75, 111, 0.01);
    display: none;
    z-index: 100;
}
.blur-effect.show{
    display: block;
}


.popup-box{
    position: absolute;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: #000 solid 2px;
    width: 80vw;
    max-height: 90vh;
    overflow: auto;
    
    top: 50%;
    left: 50%;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 200;
}

.popup-box .card-header{
    font-weight: 600;
}

.popup-box::-webkit-scrollbar{
    width: 0px;
}

.popup-box.show{
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}


.blur-filter{
    position: absolute;
    height: 100%;
    width: 100%;
    top:0;
    left:0;
    /* backdrop-filter: blur(5px); */
    background:rgba(70, 83, 90, 0.7);
    display: none;
    z-index: 100;
}
.blur-filter.show{
    display: block;
}
.popup-filter{
    position: absolute;
    background: #fff;
    padding: 0px;
    border-radius: 10px;
    border: #000 solid 2px;
    /* width: 80vw; */
    width: 60vw;
    max-height: 90vh;
    overflow: auto;
    top: 10vh;
    left: 40vw;
    
    /* top: 50%;
    left: 50%; */
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 200;
}

.popup-filter .card-header{
    font-weight: 600;
}

.popup-filter::-webkit-scrollbar{
    width: 0px;
}

.popup-filter.show{
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}



.popup-box .info-box{
    color: #0f5753;
    background: #bef4f1;
    border: 1px solid #7de8e3;
    padding: 10px;
    font-size: 17px;
    text-align: center;
}

/* ini untuk pesan error */
.info-box.error{
    color: #721c24;
    background: #f8d7da;
    border-color: #f5c6cb;
}

.fa-trash-alt{
    position: relative;
    right: 40px;
    top: -60px;
    color: rgb(220, 217, 217);
    background-color: #2d5d8a;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer; 
    padding: 5px 5px 5px 5px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    
    
    /* left: 60px;
    top: -60px;
    */
    
}

.thumb-evidence{
    width: 350px;
    height: 200px;
}

.berita{
    z-index: 3000;
}

#summernote{
    padding: 30px;
}

.unLockPwd.active::before{
    color: #333;
    content: "\f070";
}
.unLockPwd{    
    color: #ccc;
    cursor: pointer;
}

.MapWilayah{
    width: 100%;
    height: 100%;
    background-color: rgb(137, 144, 146);
}


/* Tabel in  popup-box*/
.tabel-areas{
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 5px;
    max-height: 450px;
    overflow-y: scroll;
}

.tabel-areas::-webkit-scrollbar{
    width: 0px;
}

.tabel-areas :is(.title-areas, .data-areas){
    display: flex;
    width: 100%;
    justify-content: space-between;
}


.tabel-areas li{
    list-style: none;
    width: 100%;
    border-right: 1px solid #ddd;
}

.tabel-areas li:last-child{
    border-right: 0px;
}

.tabel-areas .title-areas li{
    text-align: center;
    background: #1c969e;
    color: #fff;
    padding: 10px 0;
    
}

.tabel-areas .data-areas li{
    display: flex;
    padding: 8px 10px;
    word-break: break-all;
}

.tabel-areas .data-areas li a:hover{
    color: #20B2AA;
    text-decoration: underline;

}
.tabel-areas .data-areas li:last-child a:hover{
    text-decoration: none;
}

.tabel-areas .data-areas:hover{
    background: #f8f4b3;
}
.tabel-areas .data-areas:nth-child(odd){
    background: #f2f2f2;
}
.tabel-areas .data-areas:nth-child(odd):hover{
    background: #f8f4b3;
    
}
/* tabel-areas title-areas data-areas  End tabel areas */
/*
*{ 
    color-adjust: exact;  
    -webkit-print-color-adjust: exact; 
    print-color-adjust: exact; 
}
*/

.tes{
    text-align: left;
    vertical-align: top;
}



.map-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}

.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}


/* Progress Bar */

.progress{
    position: relative;
    height: 10px;
    width: 100%;
    /* border: 5px solid #1378bb; */
    border-radius: 10px;
}
.progress .colorProgress{
    position: absolute;
    background-color: #ffffff;
    width: 0px;
    height: 10px;
    border-radius: 5px;
    animation: progresAnima 3s infinite linear;    
}
@keyframes progresAnima{
    0%{
      width: 0%;
      background-color: rgb(82, 3, 3);
    }
    30%{
      width: 15%;
      background-color: rgb(201, 74, 6);
    }
    60%{
      width: 25%;
      background-color: rgb(200, 221, 8);
    }
    80%{
      width: 60%;
      background-color: rgb(5, 77, 5);
    }
    100%{
      width: 100%;
      background-color: rgb(11, 197, 11);
    }
};