@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body, html{
    width: 100%;
    height: 100%;
    margin:0;
    padding:0
}
body, html {
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 0.975rem;
}
#app {
  width: 100%;
  height: 100%;
  position: relative;
}
#section {
    padding: 2rem;
}
.navbar-top {
    width:100%;
    display: flex;
    flex-direction:row;
    justify-content: start !important;
    align-items: center !important;
}
ul.menu-top {
    margin-left: 3rem;
    margin-bottom: 0;
    display: flex;
    gap: 0.75rem;
}
.link-item {
    text-decoration: none;
    color: #000 !important;
}
.link-item.active {
    color: #37d2ef !important;
    font-weight: 700;
}

.widget-step {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 4rem;
}
.step-item {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem 0 0;
}
.step-number {
    padding: 2px;
    width: 32px;
    height: 32px;
    background-color: #8b9392;
    text-align: center;
    line-height: 1.8;
}
.step-number.circle-number {
    border-radius: 50%;
}
.step-title {
    color: #000;
}
.icon-success {
    display: none;
}
.step-item.current > span.step-number {
    background-color: #04baae;
    color: #FFF;
}
.step-item.success > span.step-number {
    background-color: #4caf50;
    color: #FFF;
}
.step-item.success > span.icon-success {
    display: block;
}

.step-content {
    border: 1px solid #d5d5d5;
    padding: 2rem;
    display:none;
}
.step-content.active {
    display: block;
}

.form-control, .form-select {
    border-radius: 0;
}
label {
    color:#635b5b;
}
input:read-only {
    background-color: #e7e3e3;
}
.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover {
    background: #efefef;
    color: #999;
    cursor: not-allowed;
}
.datepicker table tr td.day:hover:not(.disabled) {
    background: #156acd;
    color:#FFF;
}
.datepicker td, .datepicker th {
    width: 35px;
    height: 35px;
}
/** Loader **/
.wrapper-loader {
    display: flex;
    justify-content: center;
}
.loader {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #81D4FA;
    box-shadow: 32px 0 #fff, -32px 0 #fff;
    position: relative;
    animation: flash 0.5s ease-out infinite alternate;
}
.card-option-register {
    width: 350px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}
.card-option-register.kemenkes {
    background-color: #1c769f;
}
.card-option-register.publik {
    background-color: #00bcd4;
}
.card-option-register:hover {
    opacity: 0.8;
}
.option-register-image {
    padding:2rem;
}
.option-register-image img {
    width: 240px;
}
.label-option-register {
    font-size: 1.6rem;
    color:#FFF;
}
.nav-link {
    color: #d5d5d5;
}
.box-antrean {
    text-align: center;
}
label.antrean-label {
    font-size: 2rem;
    line-height: 1.5;
}
div.antrean-nomor {
    font-size: 8rem;
    font-weight: 700;
    letter-spacing:2px;
}
div.antrean-poli {
    font-size: 2rem;
    line-height: 1.5;
}
@keyframes flash {
    0% {
      background-color: #d5d5d5;
      box-shadow: 32px 0 #d5d5d5, -32px 0 #81D4FA;
    }
    50% {
      background-color: #81D4FA;
      box-shadow: 32px 0 #d5d5d5, -32px 0 #d5d5d5;
    }
    100% {
      background-color: #d5d5d5;
      box-shadow: 32px 0 #81D4FA, -32px 0 #d5d5d5;
    }
  }

@media (max-width: 768px) {

    #section { margin-top:7rem;padding:0.75rem}
    .navbar-top {
        background: #FFF;
        position: fixed;
        top: 0;
        z-index:22;
    }
    .card-option-register {
        width: auto;
        height: auto;
    }
    .option-register-image img {
        width:120px
    }
    .label-option-register {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    .widget-step {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 0rem;
    }
    #cari-pasien {
        width: 100%;
    }
    button.btn,a.btn {
        font-size: 0.875rem;
    }
    
}