/*
* demo.css
* File include item demo only specific css only
******************************************************************************/

.light-style .menu .app-brand.demo {
  height: auto;
  padding: 10px 10px !important;
}

.dark-style .menu .app-brand.demo {
  height: 64px;
}
.object-cover{
  object-fit: cover !important;
}
.quick-card {
  transition: 0.3s;
  border: 1px solid transparent !important;
}
.quick-card:hover{
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px !important;
border-color: var(--bs-primary) !important;
}

.app-brand-logo.demo {
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -ms-flexbox;
  display: flex;
  width: 34px;
  height: 24px;
}

.app-brand-logo.demo svg {
  width: 35px;
  height: 24px;
}

.app-brand-text.demo {
  font-size: 1.375rem;
}

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
  padding-top: 78px !important;
}
/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks > * {
  display: block !important;
}

.demo-inline-spacing > * {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing > * {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg > * {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-lg.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl > * {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-xl.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.rtl-only {
  display: none !important;
  text-align: left !important;
  direction: ltr !important;
}

[dir='rtl'] .rtl-only {
  display: block !important;
}

/* Dropdown buttons going out of small screens */
@media (max-width: 576px) {
  #dropdown-variation-demo .btn-group .text-truncate {
    width: 254px;
    position: relative;
  }
  #dropdown-variation-demo .btn-group .text-truncate::after {
    position: absolute;
    top: 45%;
    right: 0.65rem;
  }
}

/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1rem;
}
.layout-demo-placeholder img {
  width: 900px;
}
.layout-demo-info {
  text-align: center;
  margin-top: 1rem;
}



.autocomplete-results{
    position:absolute;
    background:white;
    border:1px solid #ddd;
    width:100%;
    max-height:200px;
    overflow-y:auto;
    z-index:9999;
    border-top: 0;
}

.autocomplete-item{
    padding: 8px 10px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    color: #000;
}

.autocomplete-item:hover{
    background:#f1f1f1;
}
.row-gap{
  row-gap: 25px;
}
/* ===== Pagination Wrapper ===== */
.card-footer nav {
    width: 100%;
    display: block;
    font-family: system-ui, -apple-system, sans-serif;
}

/* ===== Hide Mobile Version on Desktop ===== */
.card-footer nav .sm\:hidden {
    display: none;
}

/* ===== Desktop Layout ===== */
.card-footer nav .sm\:flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* ===== Info Text ===== */
.card-footer nav p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}

/* ===== Pagination Container ===== */
.card-footer nav .inline-flex {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== Pagination Buttons ===== */
.card-footer nav a,
.card-footer nav span[aria-current],
.card-footer nav span[aria-disabled] span {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    background: #fff;
    color: #495057;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0;
    overflow: hidden;
    border: none;
}

/* ===== Hover ===== */
.card-footer nav a:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

/* ===== Active Page ===== */
.card-footer nav span[aria-current] span {
    background: var(--bs-primary);
    color: #fff;
    border-color: var(--bs-primary);
    font-weight: 600;
}

/* ===== Disabled ===== */
.card-footer nav span[aria-disabled] span {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== SVG Icons ===== */
.card-footer nav svg {
    width: 16px;
    height: 16px;
}

/* ===== Rounded Fix ===== */
.card-footer nav .rounded-l-md {
    border-radius: 6px 0 0 6px !important;
}

.card-footer nav .rounded-r-md {
    border-radius: 0 6px 6px 0 !important;
}

/* ===== MOBILE ===== */
@media (max-width: 640px) {

    /* Show mobile version */
    .card-footer nav .sm\:hidden {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

    /* Hide desktop */
    .card-footer nav .sm\:flex {
        display: none;
    }

    /* Mobile buttons */
    .card-footer nav .sm\:hidden a,
    .card-footer nav .sm\:hidden span {
        flex: 1;
        text-align: center;
        height: 40px;
    }

}

.promo-section{
    background-image: url('../img/backgrounds/main-promo.png');
    background-size: 100% 100%;
    background-position: top left;
    background-repeat: no-repeat;
    border: 1px solid #ddd;
    border-radius: 15px;
    background-size: cover;
    overflow: hidden;
    min-height: 250px;
    padding: 30px 20px;
    background-position: center;
    .btn{
        box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.12);
    }
    .promo-content{
        max-width: 400px;
    }
    @media only screen and (max-width: 575px){
        min-height: unset;
    }
}
.text-lower{
  text-transform: lowercase;
}
.table-responsive .card-footer,
.table-responsive + .card-footer{
  text-align: center !important;
  justify-content: center !important;
}