
body {
    font-size: 14px;
    padding-top: 14px;
    background: linear-gradient(
    180deg,
    #F8F9FB 0%,
    #F1F3F6 100%
  );
}

.card {
    border-radius: 12px;
}

.card-header {
    padding: 10px;
}

.card-body {
    padding: 15px;
}

.form-label {
    margin-bottom: 3px;
    font-size: 13px;
}

.form-control, .form-select {
    padding: 6px 10px;
    font-size: 14px;
}

.btn {
    padding: 12px;
    font-size: 15px;
}

@media (max-width: 576px) {
    body {
        font-size: 13px;
    }
    .card-body {
        padding: 12px;
    }
}

#loadingSpinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

#loadingSpinner.show {
  display: flex;
}

.form-check-input:checked {
  background-color: #198754;
  border-color: #198754;
}

.fade-success{
  animation: fadeSuccess .4s ease;
}

@keyframes fadeSuccess{
  from{
    opacity:0;
    transform:translateY(10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.success-check-wrapper{
  display:flex;
  align-items:center;
  justify-content:center;
}

.success-check-circle{
  width:80px;
  height:80px;

  border-radius:50%;

  background:linear-gradient(
    135deg,
    #28c76f,
    #20b15a
  );

  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:42px;
  font-weight:bold;

  box-shadow:
    0 10px 25px rgba(40,199,111,.35),
    0 4px 10px rgba(0,0,0,.08);

  animation:successPop .45s ease;
}

@keyframes successPop{
  0%{
    transform:scale(.6);
    opacity:0;
  }

  70%{
    transform:scale(1.08);
  }

  100%{
    transform:scale(1);
    opacity:1;
  }
}

.custom-checkbox{
    width: 1.4rem;
    height: 1.4rem;

    border: 2px solid #0d6efd;
    border-radius: 0.45rem;

    cursor: pointer;

    box-shadow: 0 2px 6px rgba(13,110,253,.15);

    transition: all .2s ease;
}

.custom-checkbox:hover{
    transform: scale(1.05);
}

.custom-checkbox:checked{
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.custom-checkbox:focus{
    box-shadow:
      0 0 0 .2rem rgba(13,110,253,.25),
      0 2px 6px rgba(13,110,253,.2);
}

.success-icon{
    width: 82px;
    height: 82px;

    margin: 0 auto;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
      135deg,
      #28c76f,
      #20b15a
    );

    color: #fff;

    font-size: 38px;

    box-shadow:
      0 12px 24px rgba(40,199,111,.30),
      0 4px 10px rgba(0,0,0,.08);

    animation: popSuccess .45s ease;
}

@keyframes popSuccess{

    0%{
      transform: scale(.7);
      opacity: 0;
    }

    70%{
      transform: scale(1.08);
    }

    100%{
      transform: scale(1);
      opacity: 1;
    }
}

.booking-header {
    height: 140px !important;

    background-image: url('../assets/images/header-booking.jpeg') !important;

    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    padding: 0 !important;
}

.booking-header2 {
    height: 140px !important;

    background-image: url('../assets/images/header-booking1.jpeg') !important;

    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    padding: 0 !important;
}