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

.card-login{
    margin-left: 55.33333%;
    margin-top: 1%;
    margin-bottom: 1%;
}

.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: #1845cd !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: #1845cd !important;
}

.header-menu .menu-nav > .menu-item:hover:not(.menu-item-here):not(.menu-item-active) > .menu-link .menu-text {
    color: #1845cd !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: #1845cd !important;
}

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

.header-menu .menu-nav > .menu-item.menu-item-active > .menu-link .menu-text {
    color: #1845cd !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: #1845cd !important;
}

.menu-link:hover {
    color: #1845cd !important;
}

.link-detail-logs:hover {
    color: #1845cd !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: #53a43c;
    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 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: #53a43c;}
    50% {color:#53a43c;}
    75% {color:#f3f3f3;}
    100% {color:#f3f3f3;}
}

@keyframes on-run {
    0% {color:#f3f3f3;}
    25% {color: #53a43c;}
    50% {color:#53a43c;}
    75% {color:#f3f3f3;}
    100% {color:#f3f3f3;}
}

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

.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 {
    line-height: 50px;
}

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

.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: #1845cd !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: 9999999;
    display: none;
}

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

.page-link-active-success {
    background-color: #1845cd !important;
}

.page-link-success {
    color: #1845cd !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(#53a43c),
            to(#53a43c),
            color-stop(.6,#53a43c));
}


#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-revisi {
    padding: 20px 30px;
    background: #FFF4DE !important;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    border-radius: 0.42rem;
}



.container-revisi h3 {
    letter-spacing: 1px; color: #856404;
    margin-bottom: 25px;
}

.container-revisi div {
    color: #856404;
    font-size: 14px;
    line-height: 30px;
}

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

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

.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: #1845cd !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:#1845cd !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: #1845cd !important;
}

.header-menu .menu-nav > .menu-item .menu-submenu > .menu-subnav > .menu-item.menu-item-here > .menu-link > .menu-arrow {
    color: #1845cd !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: #1845cd !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: #1BC5BD;
}

.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 #1845cd !important;
}

.pause::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 12px;
    width: 15px;
    height: 30px;
    background-color: transparent;
    border-radius: 1px;
    border: 5px solid #1845cd !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: #1BC5BD;
    stroke-width: 5px;
    transition: stroke-dashoffset 0.7s;
}

.e-c-pointer {
    fill: #FFF;
    stroke: #1BC5BD;
    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;
}

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

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

@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%;
    }
}

/* @media (min-width: 900px) {
    .bg-image {
        background-color: #fff;
    }
    .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%;
    }
} */


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

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

@media only screen and (max-width: 578px) {
    .logo-institusi {
        padding-right: 50px !important;
    }
    .container_content_sertifikasi {
        order: 2;
    }
    .container_logo {
        order: 1;
    }
    .container_button {
        order: 3;
    }
    .card-login{
        margin-left: 0;
        margin-top: 0;
    }
    .bg-image{
        background-image: none;
    }
}


.nav .nav-link.active .nav-text,
.nav .nav-link.active .nav-icon i {
    color: #1BC5BD !important;
}

#kt_login {
    background: url('../img/bg-16.png');
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.card-logo {
    display: block;
    margin: 0 auto;
    padding-top: 2.5rem;
}


@media only screen and (max-width: 1120px) {
    #kt_login {
        background: url('../img/bg11.jpg');
        height: 100%;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media only screen and (min-width: 1120px) {
    .ml-responsive {
        margin-left: 55.33333%;
    }

    .card-logo {
        display: none;
    }
}


.wizard.wizard-1 .wizard-nav .wizard-steps .wizard-step[data-wizard-state="done"] .wizard-label .wizard-title,
.wizard.wizard-1 .wizard-nav .wizard-steps .wizard-step[data-wizard-state="done"] .wizard-label .wizard-icon,
.wizard.wizard-1 .wizard-nav .wizard-steps .wizard-step[data-wizard-state="current"] .wizard-label .wizard-icon,
.wizard.wizard-1 .wizard-nav .wizard-steps .wizard-step[data-wizard-state="current"] .wizard-label .wizard-title {
    color: #1BC5BD !important;
}

.wizard.wizard-1 .wizard-nav .wizard-steps .wizard-step[data-wizard-state="done"] .wizard-arrow svg g [fill],
.wizard.wizard-1 .wizard-nav .wizard-steps .wizard-step[data-wizard-state="current"] .wizard-arrow svg g [fill] {
    fill: #1BC5BD !important;
}

@media (min-width: 767.98px) {
    .wizard-registrasi-header {
        position: sticky;
        top: 54px;
        background: white;
        z-index: 1;
    }

    .wizard-proses-asesi {
        position: sticky;
        top: 70px;
        background: white;
        z-index: 10;
    }
}


.wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step[data-wizard-state="current"] .wizard-label {
    color: #1DC5BD !important;
}


.wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step[data-wizard-state="current"] .wizard-label .wizard-bar:after {
    background-color: #1DC5BD !important;
}

.info-verifikasi-presentasi {
    background-color: #FFF4DE;
    border-color: transparent;
    color: #FFA800;

    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.42rem;
    display: inline-block;
}

.checkbox-success > span {
    background-color: #0cb783 !important;
}


.table-kegiatan-terstruktur tr td {
    font-size: 1.08rem !important;
    font-weight: 400;
    line-height: 2rem;
}

.table-kegiatan-terstruktur .title {
    font-weight: 500 !important;
    margin-bottom: 4px !important;
    text-decoration: underline;
}

.checkbox.checkbox-info > span {
    border: 1px solid #8950fc !important;
}


.radio.radio-outline.radio-success > span {
    background-color: transparent;
    border-color: #1ec5bd !important;
}


.container-info-asesi {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.container-info-asesi .profile {
    flex: 1;
}

.container-info-asesi .detail-profile {
    flex: 2;
}


.nav.nav-tabs.nav-tabs-line.nav-tabs-line-3x .nav-link:hover:not(.disabled), .nav.nav-tabs.nav-tabs-line.nav-tabs-line-3x .nav-link.active, .nav.nav-tabs.nav-tabs-line.nav-tabs-line-3x .show > .nav-link {
    border-bottom: 3px solid #1BC5BD !important;
}

.nav .show > .nav-link .nav-icon .svg-icon svg g [fill], .nav .nav-link:hover:not(.disabled) .nav-icon .svg-icon svg g [fill], .nav .nav-link.active .nav-icon .svg-icon svg g [fill] {
    fill: #1BC5BD !important;
}

.nav .show > .nav-link .nav-text, .nav .nav-link:hover:not(.disabled) .nav-text, .nav .nav-link.active .nav-text {
    color:#1BC5BD !important;
}

.card-tabbed-info-asesi .table-information td:first-child {
    width: 20% !important;
}

.radio.radio-primary > input:checked ~ span {
    background-color:#1BC5BD !important;
}

.table-dokumen-rekaman tr td,
.table-dokumen-rekaman tr th {
    font-size: 11px !important;
    padding:0.5rem !important;
}