.bottom-text-icon {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: -2px;
}

.color-green-logo {
    color: #53a43c !important;
}

.bg-green-logo {
    background: #53a43c !important;
}


.color-dark-green-logo {
    color: #5e733d !important;
}

#kt_login_signup:hover,
#kt_login_forgot:hover {
    color: #407d2f !important;
}

.header-icon {
    background: white;
    padding: 7px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.verify-email-logout:hover span,
.verify-email-logout:hover i {
    color: #F64E60 !important;
}

.header-menu .menu-nav>.menu-item.menu-item-hover:not(.menu-item-here):not(.menu-item-active)>.menu-link .menu-text {
    color: #0900A3 !important;
}

.header-menu .menu-nav>.menu-item .menu-submenu>.menu-subnav>.menu-item:hover:not(.menu-item-here):not(.menu-item-active)>.menu-link .menu-text {
    color: #0900A3 !important;
}

.header-menu .menu-nav>.menu-item:hover:not(.menu-item-here):not(.menu-item-active)>.menu-link .menu-text {
    color: #0900A3 !important;
}

.header-menu .menu-nav>.menu-item .menu-submenu>.menu-subnav>.menu-item:hover:not(.menu-item-here):not(.menu-item-active)>.menu-link .menu-icon {
    color: #0900A3 !important;
}

.header-menu .menu-nav>.menu-item.menu-item-here>.menu-link .menu-text {
    color: #0900A3 !important;
}

.header-menu .menu-nav>.menu-item.menu-item-active>.menu-link .menu-text {
    color: #0900A3 !important;
}

.header-menu .menu-nav>.menu-item .menu-submenu>.menu-subnav>.menu-item:hover:not(.menu-item-here):not(.menu-item-active)>.menu-link .menu-icon.svg-icon svg g [fill],
.header-menu .menu-nav>.menu-item .menu-submenu>.menu-subnav>.menu-item.menu-item-hover:not(.menu-item-here):not(.menu-item-active)>.menu-link .menu-icon.svg-icon svg g [fill] {
    fill: #0900A3 !important;
}

.menu-link:hover {
    color: #0900A3 !important;
}

.link-detail-logs:hover {
    color: #0900A3 !important;
}

/* Style Untuk Loading */

.credit {
    font-size: 16px;
    color: rgba(191, 191, 191, 0.36);
    font-family: Arial Narrow, sans-serif;
    position: fixed;
    right: 2%;
    top: 17%;
    text-align: center;
    display: none;
}

.credit a {
    text-decoration: none;
    display: block;
    color: rgba(191, 191, 191, 0.36);
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease
}

.credit a:hover {
    color: #283e4a
}

header {
    background: #283e4a;
    padding: 10px;
    position: relative;
    height: 40px;
    -webkit-box-shadow: 0px 4px 13px 1px rgba(167, 167, 167, 0.80);
    box-shadow: 0px 4px 13px 1px rgba(167, 167, 167, 0.80);
}

body {
    margin: 0;
}

.container {
    margin: 0 auto;
}

.face {
    /* position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0; */

    text-align: center;
    z-index: 999;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -100px;
    /* display: none; */
}

.loading {
    width: 130px;
    display: block;
    height: 2px;
    margin: 28px auto;
    border-radius: 2px;
    background-color: #cfcfcf;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.loading:before {
    content: '';
    height: 3px;
    width: 68px;
    position: absolute;
    -webkit-transform: translate(-34px, 0);
    -ms-transform: translate(-34px, 0);
    transform: translate(-34px, 0);
    background-color: #0900A3;
    border-radius: 2px;
    -webkit-animation: initial-loading 1.5s infinite ease;
    animation: animation 1.4s infinite ease;
}

@-webkit-keyframes animation {
    0% {
        left: 0
    }

    50% {
        left: 100%
    }

    100% {
        left: 0
    }
}

@keyframes animation {
    0% {
        left: 0
    }

    50% {
        left: 100%
    }

    100% {
        left: 0
    }
}

.face .container>img {
    border: 1px solid #ffffff;
    box-shadow: 0px 0px 5px 0px #fff !important;
    -webkit-box-shadow: 0px 7px 20px 2px rgba(167, 167, 167, 0.60);
    /* box-shadow: 0px 7px 20px 2px rgba(167, 167, 167, 0.60); */
    border-radius: 2px;
    animation: bounce 1.4s ease infinite;
    -webkit-animation: bounce 1.4s ease infinite;
    -moz-animation: bounce 1.4s ease infinite;
    -ms-animation: bounce 1.4s ease infinite;
    -o-animation: bounce 1.4s ease infinite;
    padding: 12px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

@-webkit-keyframes bounce {

    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0);
        filter: blur(0);
    }

    50% {
        -webkit-transform: scale(.9);
        transform: scale(.9);
        -webkit-filter: blur(1.4);
        filter: blur(1.4);
        -webkit-box-shadow: 0px 0.3px 5px .5px rgb(167, 167, 167);
        box-shadow: 0px 0.3px 5px .5px rgb(167, 167, 167);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes bounce {

    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0);
        filter: blur(0);
    }

    50% {
        -webkit-transform: scale(.9);
        transform: scale(.9);
        -webkit-filter: blur(1.4);
        filter: blur(1.4);
        -webkit-box-shadow: 0px 0.3px 5px .5px rgb(167, 167, 167);
        box-shadow: 0px 0.3px 5px .5px rgb(167, 167, 167);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.caption {
    margin-top: 30px;
    text-align: center;
}

.caption h2 {
    font-family: Trebuchet MS;
    color: #cfcfcf;
    margin: 0 0 8px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.caption ul {
    margin: 0;
    padding: 0;
}

.caption li {
    list-style: none;
    display: inline-block;
    letter-spacing: 3px;
    font-size: 18px;
    color: #f3f3f3;
    margin-right: 5px;
    font-family: Arial Narrow, sans-serif;
    animation: on-run 2.6s ease infinite;
    -webkit-animation: on-run 2.6s ease infinite;
    -moz-animation: on-run 2.6s ease infinite;
    -ms-animation: on-run 2.6s ease infinite;
    -o-animation: on-run 2.6s ease infinite;
}

.caption li:nth-child(1) {
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

.caption li:nth-child(2) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    margin-right: 10px;
}

.caption li:nth-child(3) {
    -webkit-animation-delay: .6s;
    animation-delay: .6s
}

.caption li:nth-child(4) {
    -webkit-animation-delay: .8s;
    animation-delay: .8s
}

.caption li:nth-child(5) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    margin-right: 10px;
}

.caption li:nth-child(6) {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s
}

.caption li:nth-child(7) {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s
}

.caption li:nth-child(8) {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s
}

@-webkit-keyframes on-run {
    0% {
        color: #f3f3f3;
    }

    25% {
        color: #0900A3;
    }

    50% {
        color: #0900A3;
    }

    75% {
        color: #f3f3f3;
    }

    100% {
        color: #f3f3f3;
    }
}

@keyframes on-run {
    0% {
        color: #f3f3f3;
    }

    25% {
        color: #0900A3;
    }

    50% {
        color: #0900A3;
    }

    75% {
        color: #f3f3f3;
    }

    100% {
        color: #f3f3f3;
    }
}

.caption li:last-child {
    margin-right: 0
}

.container-zoom {
    width: 100%;
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 0px 10px 0px #00000012;
}

.container-zoom ul {
    padding-left: 20px;
}

.card-zoom {
    max-height: 300px;
    overflow: auto;
}

.container-persyaratan {
    width: 80%;
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 0px 10px 0px #00000012;
}

.container-persyaratan ul {
    padding-left: 20px;
}

.logo_institusi_list_sertifikasi {
    margin: 25px auto;
    max-height: 150px;
}

.title-sertifikasi {
    font-weight: 700;
}

.logo-institusi {
    margin: 25px auto;
    width: 70%;
}

@media only screen and (max-width: 650px) {
    .title-sertifikasi {
        line-height: 25px;
        width: 65%;
        margin-top: 10px;
    }
}

@media only screen and (max-width: 655px) {
    .logo-institusi {
        padding-right: 50px !important;
    }
}

@media only screen and (max-width: 578px) {
    .container_content_sertifikasi {
        order: 2;
    }

    .container_logo {
        order: 1;
    }

    .container_button {
        order: 3;
    }
}

.btn.btn-clean:not(:disabled):not(.disabled).active,
.header-menu-mobile .menu-nav>.menu-item.menu-item-open>.menu-link .menu-text,
.header-menu-mobile .menu-nav>.menu-item.menu-item-open>.menu-link .menu-arrow,
.header-menu-mobile .menu-nav>.menu-item:not(.menu-item-parent):not(.menu-item-open):not(.menu-item-here):not(.menu-item-active):hover>.menu-link .menu-arrow {
    color: #0900A3 !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.blockui>span {
    padding: 0 !important;
}

#container-loading {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: #464e427a;
    z-index: 99999 !important;
    display: none;
}

.logs-img {
    width: inherit !important;
    height: inherit !important;
    border-radius: 100% !important;
}

.page-link-active-success {
    background-color: #0900A3 !important;
}

.page-link-success {
    color: #0900A3 !important;
}

.scrollStyle::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
    border-radius: 10px;
}

.scrollStyle::-webkit-scrollbar {
    width: 7px;
    background-color: #F5F5F5;
}

.scrollStyle::-webkit-scrollbar-thumb {
    background-color: #FFF;
    background-image: -webkit-gradient(linear,
            40% 0%,
            75% 84%,
            from(#0900A3),
            to(#0900A3),
            color-stop(.6, #0900A3));
}


#scrollStyle::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
}

#scrollStyle::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #ffffff;
}

#scrollStyle::-webkit-scrollbar-thumb {
    background-color: #1dc9b7;
    border-radius: 30px;
    background-image: -webkit-gradient(linear, 0 0, 0 100%,
            color-stop(.5, rgba(255, 255, 255, 0.2)),
            color-stop(.5, transparent), to(transparent));
    height: 10px;
}

.table-ketentuan-ttd,
.table-sarana-prasarana {
    font-size: 14px;
}

.table-ketentuan-ttd td,
.table-sarana-prasarana td {
    padding: 5px;
}

.table-ketentuan-ttd td:first-child {
    width: 5%;
}

.example-img-ttd {
    /* background: cover; */
    max-width: 100%;
    height: auto;
    box-shadow: 0px 0px 3px 1px #d6d5d3;
    border-radius: 7px;
}

.table-sarana-prasarana ol,
.table-sarana-prasarana ul {
    line-height: 30px;
    font-weight: 300;

}

.table-sarana-prasarana ol {
    list-style-type: lower-alpha;
}

.table-sarana-prasarana span.subtitle {
    font-weight: 500;
}

.table-formulir-parent tr td {
    padding: 5px 10px;
}

.table-formulir-parent,
.table-content-formulir {
    font-size: 14px;
    line-height: 30px;
    /* color: #fff; */
}

.table-content-formulir tr:first-child td:first-child,
.table-content-formulir tr:first-child td:nth-child(2) {
    vertical-align: middle;
}

.font-weight-600 {
    font-weight: 600 !important;
}




/* .table-custom td {
    border-bottom: 1px solid #000000;
} */




/* #container_timeline {
    max-height: 550px !important;
    overflow: auto !important;
} */


/* .bootstrap-select .dropdown-menu {
    width: 100% !important;
    word-break: break-all;
} */


.select2-container {
    width: 100% !important;
}

.form-control[readonly] {
    background-color: #F3F6F9 !important;
    opacity: 1 !important;
}


.font-size-27px {
    font-size: 27px !important;
}

.align-table-timeline {
    position: relative !important;
    left: 10px !important;
}


.info-button {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 10px 35px !important;
    background: #F3F6F9 !important;
}

.table-information {
    font-size: 1.1rem !important;
    width: 100%;
}

.table-information tr td {
    padding: 10px;
}

.table-information tr td:first-child {
    width: 30% !important;
    font-weight: 500;
}

.table-information tr td:nth-child(2) {
    text-align: center;
}

.container-table-info {
    padding-left: 50px;
}

.container-info {
    padding: 20px 30px;
    background: #F1F8FE !important;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 0.42rem;
}



.container-revisi {
    padding: 20px 30px;
    background: #FEF6D9 !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 0.42rem;
}

.container-success-revisi {
    padding: 20px 30px;
    background: #E5F4E8 !important;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    /* box-shadow: rgb(177, 200, 181) 0px 7px 29px 0px; */
    border-radius: 0.42rem;
}

.container-error-revisi {
    padding: 20px 30px;
    background: #FFF !important;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 0.42rem;
}

.container-info h3 {
    letter-spacing: 1px;
    color: #477DB0;
}

.container-revisi h3 {
    letter-spacing: 1px;
    color: #9B6602;
}

.container-success-revisi h3 {
    letter-spacing: 1px;
    color: #006600;
}

.container-error-revisi h3 {
    letter-spacing: 1px;
    color: #006600;
}

.container-success-revisi {
    color: #006600;
}

.container-error-revisi {
    color: #006600;
}

.container-info {
    color: #477DB0
}

.container-success-revisi .alert-title,
.container-error-revisi .alert-title,
.container-info .alert-title {
    font-size: 1.1rem;
}

.container-success-revisi .alert-total-data,
.container-error-revisi .alert-total-data,
.container-info .alert-total-data {
    font-size: 1.6rem;
    font-weight: 500;
}


.container-info h3,
.container-revisi h3,
.container-error h3,
.container-success-revisi h3 {
    margin-bottom: 25px;
}

.container-info div,
.container-info table tr td {
    color: #477DB0 !important;
    font-size: 14px !important;
    line-height: 30px !important;
}

.container-revisi div,
.container-revisi table tr td {
    color: #9B6602;
    font-size: 14px;
    line-height: 30px;
}

.container-success-revisi div,
.container-success-revisi table tr td {
    color: #006600;
    font-size: 14px;
    line-height: 30px;
}

.container-revisi div span.certname,
.container-info div span.certname {
    font-weight: 500 !important;
    font-style: italic;
}

.container-revisi .font-bold,
.container-info .font-bold {
    font-weight: 500 !important;
}

.container-info .container-catatan,
.container-revisi .container-catatan {
    line-height: 25px !important;
    margin: 30px 0 !important;
}

.ajax-link {
    color: #3699FF !important;
    text-decoration: none !important;
    background-color: transparent !important;
    cursor: pointer !important;
}

.ajax-link:hover {
    color: #0073e9 !important;
}

.header-menu .menu-nav>.menu-item .menu-submenu>.menu-subnav>.menu-item.menu-item-active>.menu-link .menu-text,
.header-menu .menu-nav>.menu-item .menu-submenu>.menu-subnav>.menu-item.menu-item-active>.menu-link .menu-icon {
    color: #0900A3 !important;
}

.header-menu .menu-nav>.menu-item .menu-submenu>.menu-subnav>.menu-item.menu-item-active>.menu-link .menu-icon.svg-icon svg g [fill] {
    fill: #0900A3 !important;
}

.dataTables_wrapper .dataTable .group th,
.dataTables_wrapper .dataTable .group td {
    background-color: #798086 !important;
    color: #fff !important;
}

.header-menu .menu-nav>.menu-item .menu-submenu>.menu-subnav>.menu-item.menu-item-here>.menu-link .menu-text {
    color: #0900A3 !important;
}

.header-menu .menu-nav>.menu-item .menu-submenu>.menu-subnav>.menu-item.menu-item-here>.menu-link>.menu-arrow {
    color: #0900A3 !important;
}

.header-menu .menu-nav>.menu-item .menu-submenu>.menu-subnav>.menu-item:hover:not(.menu-item-here):not(.menu-item-active)>.menu-link>.menu-arrow {
    color: #0900A3 !important;
}

table.dataTable tr.dtrg-group td {
    background-color: #798086 !important;
    color: #fff !important;
}

table.dataTable tr.dtrg-level-1 td {
    background-color: #798086a3 !important;
    color: #fff !important;
}


.preview-soal {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 2px 10px #a5a5a5;
}

.color-text-warning {
    color: #856404 !important;
}

.filesptlead:hover {
    text-decoration: underline !important;
}


.table-penilaian tr td,
.table-penilaian tr th {
    font-size: 1rem;
}

.table-info-exam tr td {
    font-size: 1.08rem;
}

.countdown-label {
    color: #65584c;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    font-size: 10px;
}

#countdown {
    word-wrap: break-word;
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(1, 1, 1, 0.4);
    width: 120px;
    text-align: center;
    background: #f1f1f1;
    border-radius: 5px;
    margin-left: auto;
    width: 120px;
}

#countdown #tiles {
    color: #fff;
    position: relative;
    z-index: 1;
    display: inline-block;
    text-align: center;
    padding: 5px;
    border-radius: 5px 5px 0 0;
    font-size: 15px;
    display: block;
}

.color-full {
    background: #0900A3;
}

.color-half {
    background: #ebc85d;
}

.color-empty {
    background: #e5554e;
}

#countdown #tiles>span {
    width: 70px;
    max-width: 70px;

    padding: 18px 0;
    position: relative;
}

#countdown .labels {
    width: 100%;
    height: 25px;
    text-align: center;
    position: absolute;
    bottom: 8px;
}

#countdown .labels li {
    width: 102px;
    color: #f47321;
    text-shadow: 1px 1px 0px #000;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
}

.countdown-label_question {
    color: #65584c;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    font-size: 10px;
}

.img-card-ujian {
    width: 100px;
    position: relative;
    top: -22px;
    right: 27px;
    opacity: 0.2;
    position: relative;
    height: 100px !important;
}

.info-soal {
    font-size: 44px;
    position: absolute;
    right: 50px;
    top: 85px;
}

.container-countdown {
    position: relative;
    top: 10px;
    width: 180;
    margin: 0 auto;
}

.setters {
    position: absolute;
    left: 85px;
    top: 75px;
}

.minutes-set {
    float: left;
    margin-right: 28px;
}

.seconds-set {
    float: right;
}

.controlls {
    position: absolute;
    top: 50%;
    /* position the top  edge of the element at the middle of the parent */
    left: 50%;
    /* position the left edge of the element at the middle of the parent */
    transform: translate(-50%, -50%);

    /* top: 60px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0; */
}

.display-remain-time {
    font-weight: 100;
    font-size: 44px;
}

#pause {
    outline: none;
    background: transparent;
    border: none;
    margin-top: 10px;
    width: 50px;
    height: 50px;
    position: relative;
}

.play::before {
    display: block;
    content: "";
    position: absolute;
    top: 8px;
    left: 16px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 22px solid #0900A3 !important;
}

.pause::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 12px;
    width: 15px;
    height: 30px;
    background-color: transparent;
    border-radius: 1px;
    border: 5px solid #0900A3 !important;
    border-top: none;
    border-bottom: none;
}

#pause:hover {
    opacity: 0.8;
}

.e-c-base {
    fill: none;
    stroke: #B6B6B6;
    stroke-width: 4px
}

.e-c-progress {
    fill: none;
    stroke: #0900A3;
    stroke-width: 5px;
    transition: stroke-dashoffset 0.7s;
}

.e-c-pointer {
    fill: #FFF;
    stroke: #0900A3;
    stroke-width: 2px;
}

#e-pointer {
    transition: transform 0.7s;
}

.blockElement .blockui>span {
    padding: 0.75rem 1.2rem !important;
}


.table tr td {
    font-size: 1rem !important;
}

.font-size-13 {
    font-size: 13px !important;
}

.err-message-form li {
    font-size: .85rem !important;
}

@media (min-width: 900px) {
    .offset-md-custom {
        margin-left: 45.33333%;
    }
}

@media (min-width: 992px) {
    .offset-6-5 {
        margin-left: 50.33333%;
    }
}

@media (min-width: 1300px) {
    .col-xl-4-custom {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .offset-6-5 {
        margin-left: 54.33333%;
    }
}

.bg-image {
    background-image: url('../img/bg-2.png');
}

.form-shadow {
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
}

@media (min-width: 900px) {
    .bg-image {
        background-image: url('../img/bg-login-bsmr.jpg');
    }

    .form-shadow {
        box-shadow: none;
    }
}

@media(min-width: 990px) and (max-width:991px) {
    .col-md-8-custom {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.mt-form-registered {
    margin-top: 10rem !important;
}

@media(min-width: 900px) {
    .mt-form-registered {
        margin-top: 7.5rem !important;
    }
}

@media(min-width: 992px) {
    .mt-form-registered {
        margin-top: 5.5rem !important;
    }
}


.fc-event-solid-blue {
    background: #369AFE !important;
}

.fc-event-solid-blue-navy {
    background: #082F54 !important;
}

.fc-event-solid-red-teracota {
    background: #CB6842 !important;
}

.fc-event-solid-red {
    background: #FF0100 !important;
}

.fc-event-solid-blue .fc-title,
.fc-event-solid-blue-navy .fc-title,
.fc-event-solid-red-teracota .fc-title,
.fc-event-solid-red .fc-title {
    color: #fff !important;
}


.swal2-input {
    display: block;
    width: 100%;
    height: calc(1.5em + 1.3rem + 2px);
    padding: 0.65rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #3F4254;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #E4E6EF;
    border-radius: 0.42rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out
}

.card-info-asesor {
    padding: 20px 30px;
    background: #FFF !important;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 0.42rem;
    position: relative;
    overflow: hidden;
}

.card-info-asesor .icon {
    position: absolute;
    top: 10px;
    right: 10px;
}

.card-info-asesor .alert-title {
    font-size: 1.1rem;
}

.card-info-asesor .alert-total-data {
    font-size: 1.8rem;
    font-weight: 500;
}

.container-idcard {
    width: 80%;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    overflow: hidden;
}

.container-idcard .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container-idcard .title {
    font-weight: bold;
}

.container-idcard .foto-profile {
    height: 150px;
    border-radius: 10px;
    width: 150px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.container-idcard .foto-profile img {
    height: 150px;
    width: 150px;
    object-fit: cover;
}

.container-idcard .table-biodata tr td {
    font-size: 1.2rem;
    color: #000;
}

.container-idcard .logo-bsmr {
    margin-right: -45px;
}

.container-idcard .signature {
    margin-top: -30px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.truncate-5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.badgeLightBlue {
    position: relative;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 8px;
    background: #dfdefc;
    color: #0900A3;
    border: 1px solid #bbb7fc;
}

#kt_content:-webkit-full-screen {
    width: 100%;
    height: 100%;
    background: #f1f0f9 !important;
    margin: 0;
}

#kt_content:-moz-full-screen {
    background: #f1f0f9 !important;
    margin: 0;
}

#kt_content:-ms-fullscreen {
    background: #f1f0f9 !important;
    margin: 0;
}

#kt_content:fullscreen {
    background: #f1f0f9 !important;
    margin: 0;
}

#kt_content:-webkit-full-screen .container {
    display: flex !important;
    justify-content: space-evenly;
    flex-direction: column;
}


.bg-main {
    background: #083476 !important;
}


.info-schedule-asesmen tr td {
    padding: 3px;
}

.table-rekap-unasesor tr td {
    border-bottom: 1px dashed #f0f0f0;
}

.table-rekap-unasesor .badge-cert {
    padding: 2px 15px;
    border-radius: 8px;
}

.single-notif-desc {
    font-size: .93rem;
    margin-bottom: 6px;
    display: block;
}

.total-notification {
    position: absolute;
    top: 0;
    right: 0;
    background: #F64E60;
    color: white;
}

.bg-unread-notif {
    background: #FAFBFF;
}

.unread-notif {
    width: 7px;
    height: 7px;
    position: absolute;
    top: 6px;
    right: 10px;
    background-color: #F64E60;
    border-radius: 50%;
}

.cursor-not-allowed {
    pointer-events: none;
}

table.table-row-dashed tbody tr td {
    border-top: 1px dashed #F1F1F4 !important;
}

.table-certification td:first-child {
    width: 30%;
}

.cert-title {
    margin-top: 0;
    /* margin-bottom: -5px; */
}

.title-metode-uji {
    margin-top: -15px;
}

.title-tanggal {
    margin-top: -2px;
}

@media only screen and (max-width: 600px) {
    .title-exam-objective {
        margin-top: 10px;
    }

    .cert-title {
        margin-top: -5px;
    }

    .title-metode-uji {
        margin-top: -20px;
    }

    .title-tanggal {
        margin-top: -5px;
    }
}


.radio.radio-outline.radio-primary>span {
    background-color: transparent !important;
    border-color: #0900a3 !important;
}

.table-spec-asesi-asesor {
    width: 100% !important;
}

/* .table-spec-asesi-asesor tr td {
    border: 1px solid red;
} */

.table-spec-asesi-asesor tr td {
    /* width: 50%; */
    font-size: 1.20rem !important;
    padding: 10px 15px;
}


.btn-reset-ttd-doc {
    right: 25px;
    top: 26px;
    border-radius: 9px;
}

.table-spec-bordered tr td {
    border: 1px solid black;
}

table.table-spec-asesi-asesor .container-signature-doc {
    border: 2px dotted #CCCCCC;
    border-radius: 15px;
    cursor: crosshair;
    box-sizing: border-box;
    /* padding: 10px; */
    /* width: 100%;
    height: 150px; */
}

table.table-spec-asesi-asesor .signature-name {
    width: 30%;
}

table.table-spec-asesi-asesor .w-40 {
    width: 40%;
}

table.table-spec-asesi-asesor .w-40 {
    width: 40%;
}


@media (max-width: 1200px) {

    table.table-spec-asesi-asesor .signature-name {
        width: 35%;
    }

    table.table-spec-asesi-asesor .w-50-tablet {
        width: 50%;
    }

    table.table-spec-asesi-asesor .w-20-tablet {
        width: 20%;
    }

    table.table-spec-asesi-asesor .w-60-tablet {
        width: 60%;
    }
}

@media (max-width: 760px) {
    .container-iframe iframe {
        zoom: .7 !important;
    }
}

.table-dokumen-rekaman tr td,
.table-dokumen-rekaman tr th {
    font-size: 11px !important;
    padding:0.5rem !important;
}
.table-list-pemegang-sertifikasi {
    border-spacing: 0;
}

.table-list-pemegang-sertifikasi thead {
    background: #1BC5BD;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
}

.table-list-pemegang-sertifikasi tbody tr:not(:first-child) td {
    border-top: 1px dashed #dcdcdc;
}

.table-list-pemegang-sertifikasi tbody tr td {
    font-size: 14px;
}

.table-list-pemegang-sertifikasi div {
    margin-bottom: 0 !important;
}

.table-list-pemegang-sertifikasi thead tr th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.table-list-pemegang-sertifikasi thead tr th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.table-list-pemegang-sertifikasi,
.table-list-pemegang-sertifikasi thead,
.table-list-pemegang-sertifikasi tbody,
.table-list-pemegang-sertifikasi td,
.table-list-pemegang-sertifikasi th {
  color: #ffffff;
}


.table-list-tracking-asesi {
    border-spacing: 0;
}

.table-list-tracking-asesi thead {
    background: #F3F9FF;
    font-size: 0.85rem;
    font-weight: 500;
    color: #090909;
}

.table-list-tracking-asesi tbody tr:not(:first-child) td {
    border-top: 1px dashed #dcdcdc;
}

.table-list-tracking-asesi tbody tr td {
    font-size: 14px;
}

.table-list-tracking-asesi div {
    margin-bottom: 0 !important;
}

.table-list-tracking-asesi thead tr th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.table-list-tracking-asesi thead tr th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.table-list-tracking-asesi,
.table-list-tracking-asesi thead,
.table-list-tracking-asesi tbody,
.table-list-tracking-asesi td,
.table-list-tracking-asesi th {
  color: #ffffff;
}

.table-list-kadaluarsa-tiga-tahun {
    border-spacing: 0;
}

.table-list-kadaluarsa-tiga-tahun thead {
    background: #1A98FF;
    font-size: 0.85rem;
    font-weight: 500;
    color: #090909;
}

.table-list-kadaluarsa-tiga-tahun tbody tr:not(:first-child) td {
    border-top: 1px dashed #dcdcdc;
}

.table-list-kadaluarsa-tiga-tahun tbody tr td {
    font-size: 14px;
}

.table-list-kadaluarsa-tiga-tahun div {
    margin-bottom: 0 !important;
}

.table-list-kadaluarsa-tiga-tahun thead tr th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.table-list-kadaluarsa-tiga-tahun thead tr th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.table-list-kadaluarsa-tiga-tahun,
.table-list-kadaluarsa-tiga-tahun thead,
.table-list-kadaluarsa-tiga-tahun tbody,
.table-list-kadaluarsa-tiga-tahun td,
.table-list-kadaluarsa-tiga-tahun th {
  color: #ffffff;
}

.table-list-kadaluarsa {
    border-spacing: 0;
}

.table-list-kadaluarsa thead {
    background: #FFF7E6;
    font-size: 0.85rem;
    font-weight: 500;
    color: #090909;
}

.table-list-kadaluarsa tbody tr:not(:first-child) td {
    border-top: 1px dashed #dcdcdc;
}

.table-list-kadaluarsa tbody tr td {
    font-size: 14px;
}

.table-list-kadaluarsa div {
    margin-bottom: 0 !important;
}

.table-list-kadaluarsa thead tr th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.table-list-kadaluarsa thead tr th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.table-list-kadaluarsa,
.table-list-kadaluarsa thead,
.table-list-kadaluarsa tbody,
.table-list-kadaluarsa td,
.table-list-kadaluarsa th {
  color: #ffffff;
}

.table-list-detail-pemegang {
    border-spacing: 0;
}

.table-list-detail-pemegang thead {
    background: #EDFEFF;
    font-size: 0.85rem;
    font-weight: 500;
    color: #090909 !important;
}

.table-list-detail-pemegang tbody tr:not(:first-child) td {
    border-top: 1px dashed #dcdcdc;
}

.table-list-detail-pemegang tbody tr td {
    font-size: 14px;
}

.table-list-detail-pemegang div {
    margin-bottom: 0 !important;
}

.table-list-detail-pemegang thead tr th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.table-list-detail-pemegang thead tr th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.table-list-detail-pemegang,
.table-list-detail-pemegang thead,
.table-list-detail-pemegang tbody,
.table-list-detail-pemegang td,
.table-list-detail-pemegang th {
  color: #ffffff;
}

.table-list-detail-exp {
    border-spacing: 0;
}

.table-list-detail-exp thead {
    background: #F3F9FF;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1A98FF !important;
}

.table-list-detail-exp tbody tr:not(:first-child) td {
    border-top: 1px dashed #dcdcdc;
}

.table-list-detail-exp tbody tr td {
    font-size: 14px;
}

.table-list-detail-exp div {
    margin-bottom: 0 !important;
}

.table-list-detail-exp thead tr th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.table-list-detail-exp thead tr th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.table-list-detail-exp,
.table-list-detail-exp thead,
.table-list-detail-exp tbody,
.table-list-detail-exp td,
.table-list-detail-exp th {
  color: #ffffff;
}


.table-list-detail-pendaftaran {
    border-spacing: 0;
}

.table-list-detail-pendaftaran thead {
    background: #F5F4FF;
    font-size: 0.85rem;
    font-weight: 500;
    color: #090909 !important;
}

.table-list-detail-pendaftaran tbody tr:not(:first-child) td {
    border-top: 1px dashed #dcdcdc;
}

.table-list-detail-pendaftaran tbody tr td {
    font-size: 14px;
}

.table-list-detail-pendaftaran div {
    margin-bottom: 0 !important;
}

.table-list-detail-pendaftaran thead tr th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.table-list-detail-pendaftaran thead tr th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.table-list-detail-pendaftaran,
.table-list-detail-pendaftaran thead,
.table-list-detail-pendaftaran tbody,
.table-list-detail-pendaftaran td,
.table-list-detail-pendaftaran th {
  color: #ffffff;
}


.card-kadaluwarsa{
    background-color: #efecec;
    border-radius: 10px;
    width: 250px;
    height: 60px;
    cursor: pointer;
}

.btnBulan{
    background-color: #D3D3D3;
    font-size: 20px;
    min-width: 52px;
    height: 47px;
    color: #565656;
    border-radius: 10px;
    border: none;
}

.card-kadaluwarsa:hover,
.card-kadaluwarsa.active {
  background-color: #fff8e1; /* Soft yellow background */
}

.card-kadaluwarsa:hover .btnBulan,
.card-kadaluwarsa.active .btnBulan {
  background-color: #fcb933; /* Yellow box */
  color: white;
}
