html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.form-control {
    border-color: #929ca6; /* Darker color for the border */
}

.bootstrap-select .dropdown-toggle {
    border-color: #929ca6; /* Darker color for the border */
}

    .bootstrap-select .dropdown-toggle:focus {
        border-color: #929ca6;
        box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.25); /* Optional: customize the shadow */
    }

.centered-text {
    text-align: center;
}

.modalReceipt-body {
    height: 65vh;
    overflow-y: hidden;
    padding: 0;
}

.modal-dialog {
    max-width: auto; /* Adjust width as needed */
}

.modal-body iframe {
    width: 100%;
    height: 100%;
}

.custom-modal-padding {
    padding-top: 5px !important; /* Adjust this value as needed */
}

.responsive-image {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
}
@keyframes bounce-horizontal {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

.bounce-horizontal {
    animation: bounce-horizontal 1s infinite;
}
.required::after {
    content: " *";
    color: red;
}