@charset "UTF-8";
@import "../fonts/fontawesome/font-awesome.min.css";
@media only screen and (max-width:550px) {
    .desktop{
        display: none !important;
    }
}
@media only screen and (min-width:551px) {
    .mobile{
        display: none !important;
    }
}
body,td,th{
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(0, 0, 0, 0.9);
    font-size:13px;
    line-height:1.5;
    margin: 0;
    padding: 0;
}
a{
    outline: none;
}
.hide{
    display: none !important;
}
.goHide{
    opacity: 0 !important;
}
.goShow{
    opacity: 1 !important;
}
.centerin{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#loader{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(196, 235, 232);
    z-index: 10000;
    opacity: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

#customMessage{
    top: 0;
    left: 0;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999;
    overflow: auto;
    background-color: rgb(0,0,0,0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
    #customMessage .boxMessage{
        display: inline-block;
        background-color: white;
        box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.32);
        min-width: 300px;
        padding: 25px;
        margin: 0 10px;
        border-left: 5px solid rgb(0, 223, 148);
    }
        #customMessage .boxMessage .judul{
            font-size: 18px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.23);
            padding-bottom: 15px;
        }
        #customMessage .boxMessage .msg{
            margin: 15px 0;
            font-size: 14px;
        }
        #customMessage .boxMessage .copy{
            float: left;
            margin-top: 25px;
            font-size: 9px;
            color: rgba(0, 0, 0, 0.6);
        }
    #customMessage input[type=button]{
        font-size: 13px;
        letter-spacing: 0;
        color: white;
        background-color: rgb(0, 223, 148);
        border: none;
        border-radius: 30px;
        padding: 6px 18px;
        cursor: pointer;
        outline: none;
        margin-top: 15px;
        -webkit-transition: 0.2s;
        transition: 0.2s;
        float: right;
    }
        #customMessage input[type=button]:hover{
            background-color: rgb(5, 198, 133);
        }
    .msgAktif{
        display:block !important;
    }