/* html {
  scroll-behavior: smooth;
} */
.booking-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 95%;
  height: 40%;
  z-index: 999; /* di atas semua slide */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  pointer-events: none; /* biar slider masih bisa diklik di luar form */
}

.booking-overlay-ls {
  position: absolute;
  top: 0;
  left: 0;
  width: 94%;
  height: 140%;
  z-index: 999; /* di atas semua slide */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  pointer-events: none; /* biar slider masih bisa diklik di luar form */
}
.booking-form-box {
  background: var(--primary-color);
  max-width: 430px;
  max-height: 100px;
  width: 60%;
  margin-right: 4%;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
  pointer-events: all;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active[href="#tabBPJS"] {
    border-top-right-radius: 12px !important;
    background-color: var(--primary-color);
    color : var(--secondary-color) !important;
    border: none !important;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active[href="#tabPrivat"] {
    border-top-left-radius: 10px !important;
    background-color: var(--fourd-color);
    color: var(--secondary-color) !important;
    border: none !important;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link[href="#tabPrivat"] {
    border-top-left-radius: 10px !important;
    background-color: var(--fourd-color);
    color : var(--secondary-color) !important;
}

.nav-tabs {
    border-bottom: 0px solid #dee2e6 !important;
}

.booking-form-box h3 {
  font-weight: 700;
  color: #ffffff;
}

.booking-form-box .row {
    margin-bottom: 13px !important; /* default bootstrap 16px */
}

#bookingForm {
    margin-bottom: 0 !important;
}

.booking-form-box-ls {
    /* 70% solid, 30% tembus */
    /* background: rgba(100, 168, 232, 0.7);  */
    backdrop-filter: blur(8px); /* sedikit lebih blur biar lembut */
    max-width: 1200px;
    margin-left: 50px !important;
    width: 100%;
    /* padding: 20px; */
    border-radius: 10px;
    pointer-events: all;
}

.booking-form-box-ls h3 {
  font-weight: 700;
  color: #ffffff;
}

#tabBPJS {
    background-color: var(--primary-color);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 15px;
}

#tabPrivat {
    background-color: var(--fourd-color);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 20px;
}

.privat {
    background-color: var(--fourd-color);
    border-top-left-radius: 10px;
}

.bpjs {
    background-color: var(--primary-color);
    border-top-right-radius: 10px;
}

.tab-content {
    padding: 0 !important;
    border-radius: 10px;
}

/* .title-area {
    padding-top: 5px;
    padding-bottom: 5px;
} */

/* styling form kecil khusus form kamu */
#bookingForm .form-control,
#bookingForm .btn {
    height: 27px !important;           /* tinggi input */
    padding: 4px 10px !important;      /* biar teks gak mepet */
    font-size: 14px !important;        /* ukuran font sedikit kecil */
    border-radius: 4px !important;     /* biar gak terlalu bulat seperti default */
}

/* kalau mau tombol hijau lebih kecil juga */
#bookingForm .btn {
    line-height: 20px !important;
}

.btn-warning {
    /* background-color: #ff9800;
    border-color: #ff9800; */
    color: #ffffff !important;
}

.specialBtn {
	position:fixed; left:10px; top:10px;
	display:inline-block;
	background:rgba(255,255,255,0.1);
	padding:6px;
	z-index:80;
	color: #fff;

	-webkit-transition: background 600ms;
	   -moz-transition: background 600ms;
		 -o-transition: background 600ms;
			transition: background 600ms;
}

.logo-image {
	position:fixed; left:10px; top:10px;
	display:inline-block;
	/* background:rgba(255,255,255,0.1); */
	padding:6px;
	z-index:80;
	/* color: #fff; */

	-webkit-transition: background 600ms;
	   -moz-transition: background 600ms;
		 -o-transition: background 600ms;
			transition: background 600ms;
}

/* ICONS */
.floating-social{
    position: fixed;
    right: 15px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 999;
}

/* mobile */
@media (max-width: 768px) {
    .floating-social {
        /* right: 10px; */
        bottom: 140px;
    }
}

.social-list{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-bottom:10px;
    transition:.3s;
}

.floating-social.closed .social-list{
    transform:scale(0);
    opacity:0;
}

.social{
    width:35px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    color:white;
    text-decoration:none;
    font-size:18px;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
}
.social-list a {
    text-decoration: none;
    position: relative;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #fff;
}

/* tombol toggle */
.social-toggle{
    height: 35px;
    width: 35px;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 18px;
    background-color: var(--secondary-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transform: rotate(45deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
}

.social-toggle i{
    transition: transform 0.1s ease;
}

/* saat di close */
.floating-social.closed .social-toggle i{
    transform: rotate(90deg);
}

/* Tooltip */
.floating-social a .tooltip {
    position: absolute;
    right: 100%;
    font-size: 14px;
    font-weight: 400;
    background-color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    transform: translateY(-25px);
    opacity: 0;
    transition: all 0.2s linear;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.floating-social a:hover .tooltip {
    opacity: 1;
    transform: translateY(0);
}


.specialIcon-left {
	left: 10px;
	right: auto;
}
.specialIcon-right {
	left: auto;
	right: 10px;
}

.schedule-header {
    background: var(--fourd-color);
    color: #fff;
}

.doctor-name {
    color: black;
}

.hs_heading {
    color: var(--fourd-color-opacity);
}

.table-responsive {
    font-size: 13px !important;
}
select.form-control {
    font-size: 13px !important;
}

/* Calendar */
.fc-toolbar h2 {
    font-size: 14px !important;
    margin-top: 4px !important;
}

.fc table,
.fc-day-number,
.fc-event,
.fc-event .fc-title {
    font-size: 11px !important;
    margin-bottom: 0px !important;
}

.fc th {
    background: var(--fourd-color);
    color: white !important;
    border-color: var(--fourd-color);
}

.footer-bottom {
    color : #fff;
    background: var(--fourd-color-opacity);
    color: var(--secondary-color);
    font-size: 14px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    padding: 7px 10px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    font-size: 13px;
    padding: 15px 10px;
}

.footer-links {
    color: var(--secondary-color) !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 9999;
}



@media (max-width: 768px) {
  .booking-overlay {
    justify-content: center;
    align-items: center;
    right: 0px !important;
    width: 100%;
  }
  .booking-form-box {
    margin: 0 5% 5%;
    width: 90%;
  }
}


.img-rounded {
    border-radius: 10px;
}

/* .btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
} */

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--third-color);
    border-color: var(--third-color);
}

.rules {
    font-size: 12px;
    margin : 0;
    /* color: var(--secondary-color); */
}

@media (min-width: 992px) {
  .element::-webkit-scrollbar {
    display: none;
  }

  .element {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}

/* .footer-bottom {
    background: var(--fourd-color);
    color: #fff;
    font-size: 13px;
    padding: 15px 10px;
} */

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-left,
.footer-right {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.footer-right {
    justify-content: flex-end;
    text-align: right;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        justify-content: center;
        text-align: center;
    }

    .address {
        display: block;
    }
    .footer-bottom {
        font-size: 12px;
        padding: 12px;
        height: 15%;
    }
}