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

.menu .app-brand.demo {
  height: 64px;
  margin-top: 12px;
}

.app-brand-logo.demo svg {
  width: 22px;
  height: 38px;
}

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

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
/* Detached navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
  padding-top: 76px !important;
}
/* Default navbar */
.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: -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;
}


.slider{
  position: relative;
  max-width: 40rem;
  height: 26.625rem;
  margin: 0 auto;
  overflow: hidden;
}
.slider .slide{
  position: absolute;
  top:0;
  width: 100%;
  height: 26.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1s;
  border-radius: 0.5rem;
  overflow: hidden;
}
.slide > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider .btn-slide{
  position:absolute;
  top:50%;
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 50%;
  opacity: 0;
  border: 1px solid rgba(34, 34, 34, 0.287);
  transition: opacity 300ms ease-in-out;
  cursor: pointer;
  overflow: hidden;
  z-index: 10;
  display: grid;
  place-items: center;
}
.slider:hover .btn-slide{
  opacity: 1;
}
.slider .prev{
  left:3rem;
  transform: translate(-50%, -50%);
}
.next{
  right: 3rem;
  transform: translate(50%, -50%);
}
.paging_simple_numbers .next {
  transform: none !important;
}
.dots-container{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.dot{
  width: 25px;
  height: 5px;
  margin: 15px 5px;
  border-radius: .5rem;
  background: rgba(147, 145, 145, 0.47);
  cursor: pointer;
}
.dot.active{
  background:#272727;
}


td.custom-badge{
  position: relative;
}
td.custom-badge::before{
  content: attr(data-content-text);
  position: absolute;
  pointer-events: none;
  text-transform: uppercase;
  top: 50%;
  left: 50%;
  width: 98%;
  height: 65%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--content-color);
  background: var(--content-bg-color);
  border-radius: 0.25rem;
  z-index: 100;
}

.radio-btn
{
  margin: 10px;
  width: 10rem;
  aspect-ratio: 1;
  border: 2px solid transparent;
  display: inline-block;
  border-radius: 10px;
  position: relative;
  text-align: center;
  box-shadow: 0 0 20px #c3c3c367;
  cursor: pointer;
}
.radio-btn i {
  color: #ffffff;
  background-color: #6a6cf6;
  font-size: 20px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) scale(2);
  border-radius: 50px;
  padding: 3px;
  transition: 0.5s;
  pointer-events: none;
  opacity: 0;
}

.custom-notification-radio input:checked + .radio-btn
{
  border: 2px solid #6a6cf6;
}

.custom-notification-radio input:checked + .radio-btn > i
{
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.select2-container--default .select2-selection--single{
  display: block;
  width: 100% !important;
  font-size: 0.9375rem !important;
  height: 38px !important;
  line-height: 1.53 !important;
  color: #697a8d !important;
  background-color: #fff !important;
  border: 1px solid #d9dee3 !important;
  border-radius: 0.375rem !important;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 17px !important;
  height: 100% !important;
  padding-top: 4px !important;
}



#notification-guest-list + span.select2.select2-container.select2-container--default{
  width: 100% !important;
}
