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

.light-style .menu .app-brand.demo {
  height: 64px;
}

.dark-style .menu .app-brand.demo {
  height: 64px;
}

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

.app-brand-logo.demo svg {
  width: 1.7rem;
  height: 1.7rem;
}

.app-brand-text.demo {
  font-size: 1.75rem;
  letter-spacing: -0.45px;
}

/* ! 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;
}

/* 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;
}

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

.layout-demo-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -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;
}

/*
* Left sidebar 
******************************************************************************/

label[for="toggle-sidebar"] {
  position: relative;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  z-index: 2;
}

.leftsidebar {
  position: fixed;
  top: 0;
  right: -30%;
  width: 30%;
  height: 100%;
  background-color: #333;
  border-radius: 0.267rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #FFFFFF;
  transition: all .3s ease-in-out, background 0s;
  z-index:5;
  padding-top: 100px;
}

input[type="checkbox"]:checked ~ .leftsidebar {
  right: 0;
}

.content-wrapper {
  margin-top: 0 !important;
}
.content-header-left.col-12.mb-2.mt-1 {
  display: none;
}
i.menu-livicon.livicon-evo-holder {
  display: inline-table;
}
i.menu-livicon.livicon-evo-holder {
  display: inline-block;
}
.lievo-svg-wrapper>svg {
  width: 25px;
}
@media only screen and (max-width: 1200px) {
  div#hidemenunav {
    display: none;
  }
  .leftsidebar {
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height: calc(100vh - 9rem);
    background-color: #333;
    border-radius: 0.267rem;
    border-top-left-radius: 0;
    background-color: #FFFFFF;
    transition: all .3s ease-in-out, background 0s;
    z-index: 5;
  }
}
ul.menu-sub {
/* background: #dfdfe2 !important; */
}
.bg-menu-theme .menu-sub > .menu-item > .menu-link:before{
content: none !important;
margin: 0;
}
.menu-vertical .menu-sub .menu-link{
padding-left: 10px !important;
}
.ml-2 {
margin-left: 11px;
}
button.close.close-icon {
box-sizing: content-box;
width: 0.8em;
height: 0.8em;
padding: 0.25em 0.25em;
color: #a8b1bb;
border: 0;
border-radius: 0.25rem;
opacity: 0.95;
background: transparent;
}
.leftsidebar>.card.shadow-none.p-0.m-0>.card-header.py-75 {
display: flex;
justify-content: space-between;
}
.editicon.rounded-circle.border {
position: absolute;
right: -25px;
background: #FFF;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
}
.acc_position>.editicon_mutliple.rounded-circle.border {
background: #FFF;
}
div#template-customizer {
display: none;
}
@media (max-width: 768px) {
  button.btn.btn-outline-primary.tour-filter {
    font-size: 8px;
    display: flex;
    align-items: center;
  }

  button#shepherd-example {
    font-size: 10px;
    display: flex;
    align-items: center;
  }

  .btn-group.mb-2 {
    height: 38px;
  }
}

/* Add styling for the custom input group */
.custom-select-group {
  position: relative;
}

.custom-select {
  border-radius: 25px;
  padding: 10px 40px 10px 20px; /* Adjust the padding as needed */
  background-color: #f7f7f7;
  border: 1px solid #ced4da;
  color: #495057;
  box-shadow: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.input-group-text {
  background-color: transparent;
  border: none;
  padding: 0;
  line-height: 1;
}

.input-group-text i {
  font-size: 1rem;
}

.input-group .custom-select {
  border-radius: 25px 0 0 25px;
  border-right: none;
}

.input-group-append .input-group-text {
  border-left: none;
  border-radius: 0 25px 25px 0;
}

.input-group-append {
  position: absolute;
  right: 10px;
  top: 50%; /* Adjust vertical positioning as needed */
  transform: translateY(-50%);
}

.leaflet-control-attribution.leaflet-control {
  display: none;
}