/********** Template CSS **********/
:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #28a745;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-gray-dark: #343a40;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #28a745;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #0a0a0a;
}

@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";


body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    font-size: 14px;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #313131;
}
a {
    text-decoration: none;
}
.text-kecil1 {
    font-size: 6px;
}
.text-kecil2 {
    font-size: 7px;
}
.text-kecil3 {
    font-size: 8px;
}
.text-kecil4 {
    font-size: 10px;
}
.text-kecil5 {
    font-size: 12px;
}
.text-normal {
    font-size: 14px;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    z-index: 99;
    font-size: 25px;
    border: none;
    outline: none;
    background-color: none;
    color: white;
    background-color: var(--bs-success);
    cursor: pointer;
    padding: 5px;
    border-radius: 25px;
}
#myBtn:hover {
    background-color: #38c759;
}
.boxhitung {
    width: 24%;
    height: 40px;
    color: #FFFFFF;
    text-align: center;
    font-size: 22px;
    border-color: #FFFFFF;
    margin: auto;
    background: #991A38;
    align-content: center;
    padding-top: 5px;
}

.boxtext {
    width: 24%;
    height: 25px;
    color: #FFFFFF;
    text-align: center;
    font-size: 12px;
    border-color: #FFFFFF;
    margin: auto;
    background: #651125;
    align-content: center;
    padding-top: 2px;
}

.scroll-box300 {
    height: 300px;
    margin: 0px 0px 0px 0px;
    padding: 5px 5px 5px 5px;
    overflow-x: scroll;
    overflow-y: scroll;
    opacity: 0.5;
}

.scroll-box400 {
    height: 400px;
    margin: 0px 0px 0px 0px;
    padding: 5px 5px 5px 5px;
    overflow-x: scroll;
    overflow-y: scroll;
    opacity: 0.5;
}
.scroll-box500 {
    height: 500px;
    margin: 0px 0px 0px 0px;
    padding: 5px 5px 5px 5px;
    overflow-x: scroll;
    overflow-y: scroll;
    opacity: 0.5;
}
.scroll-box750 {
    height: 750px;
    margin: 0px 0px 0px 0px;
    padding: 5px 5px 5px 5px;
    overflow-x: scroll;
    overflow-y: scroll;
    opacity: 0.5;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

/*** Layout ***/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 100vh;
    overflow-y: auto;
    background: var(--bs-gray-900);
    color: var(--bs-white);
    transition: 0.5s;
    z-index: 999;
}

.content {
    margin-left: 250px;
    min-height: 100vh;
    background: var(--bs-dark);
    transition: 0.5s;
}

@media (min-width: 992px) {
    .sidebar {
        margin-left: 0;
    }

    .sidebar.open {
        margin-left: -250px;
    }

    .content {
        width: calc(100% - 250px);
    }

    .content.open {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-left: -250px;
    }

    .sidebar.open {
        margin-left: 0;
    }

    .content {
        width: 100%;
        margin-left: 0;
    }
}

/*** Navbar ***/
.sidebar .navbar .navbar-nav .nav-link {
    padding: 7px 20px;
    color: var(--bs-light);
    font-weight: 500;
    border-left: 3px solid var(--bs-success);
    border-radius: 0 30px 30px 0;
    outline: none;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
    color: var(--bs-success);
    background: var(--bs-dark);
    border-color: var(--bs-success);
}

.sidebar .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-dark);
    border-radius: 40px;
}

.sidebar .navbar .navbar-nav .nav-link:hover i,
.sidebar .navbar .navbar-nav .nav-link.active i {
    background: var(--bs-dark);
}

.sidebar .navbar .dropdown-toggle::after {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.sidebar .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
    color: var(--bs-success);
}

.sidebar .navbar .dropdown-item {
    padding-left: 25px;
    border-radius: 0 30px 30px 0;
    color: var(--bs-white);
}

.sidebar .navbar .dropdown-item:hover,
.sidebar .navbar .dropdown-item.active {
    color: var(--bs-success);
    background: var(--bs-dark);    
    border-left: 3px solid var(--bs-success);
}

.content .navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 12px 0;
    color: var(--bs-light);
    outline: none;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
    color: var(--bs-success);
}

.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-dark);
    border-radius: 40px;
}
/* tulisan main menu */
.content .navbar .dropdown-item {
    color: var(--bs-light);    
}

.content .navbar .dropdown-item:hover,
.content .navbar .dropdown-item.active {
    color: var(--bs-success);
    background: var(--bs-dark);
    border-left: 3px solid var(--bs-success);
}

.content .navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.content .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
    .content .navbar .navbar-nav .nav-link {
        margin-left: 15px;
    }
}


/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--bs-success);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--bs-success);
}


/*** Testimonial ***/
.progress .progress-bar {
    width: 0px;
    transition: 2s;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--bs-success);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--bs-dark);
    border-color: var(--bs-success);
}

#foto::before {
    content: "    Pilih Foto   ";
    position: absolute;
    z-index: 2;
    display: block;
    background-color: #eee;
    /* width: 80px; */
}

.data_table .btn {
    padding: 5px 5px;
    margin: 5px 0px 5px 0;
    /* background: #ffff8f; */
    /* color: #000; */
    /* font-weight: 100; */
    font-size: 12px;
    border: none;
    outline: none;
}

table.data_table td {
    font-size: 12;
}

#FileX::before {
    content: "    Pilih File   ";
    position: absolute;
    z-index: 2;
    display: block;
    background-color: #eee;
    /* width: 80px; */
}

.table .thead .tr .th { 
   text-align: center;
    background: #0d6efd;
    text-decoration: solid;
}
th { 
    vertical-align: middle;
    text-align: center;
 }
td { 
    vertical-align: middle;
 }

 #calendar {
    text-align: center;
    width: 700px;
    height: auto;
    margin: 0 auto;
}

.response {
    height: 10px;
}

.success {
    background: #00BFFF;
    padding: 7px 50px;
    border: #c3e6c3 1px solid;
    display: inline-block;
}

