:root 
{

  /** Min Box Width
  */
  --bxw: 200px;
}
/** Item Container
*/
#showcase-main 
{
  display: flex;
  flex-direction: column;
}
#showcase-main:after 
{
  top: 0;
  width: 100%;
  z-index: 0 !important;
  content: '';
  margin-left: -1rem;
  position: fixed;
  backdrop-filter: blur(15px);
  height: calc((var(--dfh) * 2) + 2rem);
  background-color: hsl(0, 0%, 100%, 0.9);
}


#showcase-main .sort-data-container 
{
  background-color: #ffffff;
}

#showcase-main .sort-data-container button 
{
  background-color: #ffffff !important;
}


.showcase-header 
{
  width: 100%;
  display: flex;
  z-index: 1;
  position: sticky;
  min-height: 40px;
  align-items: center;
  top: calc(var(--dfh-0) + 1.8rem);
}


.showcase-header h3 
{
  font-weight: bold;
}


.showcase-header > *
{
  height: 100%;
  display: flex;
  flex-grow: 1;
  align-items: center;
}


.showcase-header .navbar 
{
  gap: 1rem;
  flex-grow: 0;
  border-radius: 7px;
  justify-content: flex-end;
}










/*----------------------------------------------------------------------------
* Showcase Snippet Container Properties
*----------------------------------------------------------------------------*/
.showcase-snippet-container 
{
  gap: 1rem;
  display: grid;
  grid-row: auto;
  list-style: none;
  z-index: -1 !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr) ) !important;
}

.showcase-snippet
{
  display: flex;
  cursor: pointer;
  flex-direction: column;
  border-radius: var(--radius-10);
  border: 1px solid var(--bdr-2);
  transition: scale ease-in-out 0.10s;
}

.showcase-snippet:hover 
{
  /* scale: 1.05; */
  box-shadow: 0 0 5px 5px hsl(0, 0%, 90%, 0.5);
}

.showcase-snippet:active 
{
  scale: 1.0 !important;
  box-shadow: none !important;
  transition: 0.0s !important;
}

.showcase-snippet .image-container 
{
  width: 100%;
  display: flex;
  overflow: hidden;
  aspect-ratio: 16/12;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.showcase-snippet .image-container::before 
{
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  position: absolute;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  background-image: linear-gradient(rgb( 0 0 50 / .2) 0 0);
}

.showcase-snippet .image-container img 
{
  width: 100%;
  z-index: -1;
  object-fit: cover;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}


.showcase-snippet-content 
{
  gap: 0.7rem;
  display: flex;
  overflow: hidden;
  padding: 1rem 1rem 0.5rem 1rem;
  flex-direction: column;
}


.showcase-content-header, 
.showcase-content-footer 
{
  display: flex;  
}

.showcase-content-header > *,
.showcase-content-footer > * 
{
  gap: 0.3rem;
  display: flex;
  flex-grow: 1;
  align-items: center;
  font-family: var(--base-font);
}


.showcase-content-footer > *:first-child
{
  font-size: 1.25rem;
  font-weight: bold;
}


.showcase-content-footer > *:last-child
{
  font-size: 0.9rem;
  justify-content: flex-end;
}

.showcase-content-footer > *:first-child 
{
  font-size: 0.85rem !important;
  font-weight: normal !important;
}

.showcase-price 
{
  font-size: 1.25rem;
  font-weight: bold;
  justify-content: flex-start !important;
}

.showcase-content-footer 
{
  margin-bottom: 0.3rem;
  opacity: 0.9;
}


.showcase-item-name 
{
  font-size: 1.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.showcase-item-location 
{
  gap: 0.1rem;
  justify-content: flex-start !important;
} 

.showcase-item-location .ico 
{
  width: 12px !important;
}










/*----------------------------------------------------------------------------
* Make Snippet Horizontal
*----------------------------------------------------------------------------*/
[data-horz="true"] 
{
  grid-template-columns: 
  repeat(auto-fill, minmax(290px, 1fr) ) !important;
}

[data-horz="true"] .showcase-snippet
{
  max-height: 110px;
  flex-direction: row;
  border-radius: 10px;
}

[data-horz="true"] .image-container 
{
  max-width: 100px;
  aspect-ratio: unset;
  border-radius: unset;
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
}
[data-horz="true"] .image-container img 
{
  width: 100%;
  z-index: -1;
  object-fit: cover;
  border-radius: unset;
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
}
[data-horz="true"] .image-container::before 
{
  border-radius: unset;
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
}


[data-horz="true"] .showcase-snippet-content 
{
  gap: 0.2rem;
  min-width: 60%;
  overflow: hidden;
  flex-grow: 1 !important;
}

[data-horz="true"] .showcase-price 
{
  font-size: 1.15rem;
  font-weight: bold;
  justify-content: flex-start !important;
}

[data-horz="true"] .showcase-item-name 
{
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
[data-horz="true"] .showcase-snippet:hover 
{
  scale: 1.05;
  box-shadow: 0 0 5px 5px hsl(0, 0%, 90%, 0.5);
}









/*----------------------------------------------------------------------------
* Showcase Sidebar Container Properties
*----------------------------------------------------------------------------*/
.showcase-sidebar 
{

  max-height: 60vh;
  min-width: 300px;
  min-height: 350px;
  display: flex;
  position: sticky;
  top: calc(var(--dfh) + 2.8rem);
  flex-direction: column;
  border-radius: var(--radius-15);
  border: 1px solid var(--bdr-1);
}

.showcase-sidebar > header 
{
  display: flex;
  align-items: center;
  padding: 1rem;
  z-index: 10;
  border-bottom: 1px solid var(--bdr-2);
}


.showcase-sidebar > header .title 
{
  font-size: 1.2rem;
  font-weight: bold;
}


.showcase-sidebar .sidebar-body 
{
  overflow: hidden;
  overflow-y: scroll;
  z-index: -1;
  padding: 1rem 0rem 1rem 1rem;

}

.showcase-sidebar .showcase-snippet-container 
{
  padding: unset !important;
}

.showcase-sidebar .showcase-snippet-container  .showcase-snippet
{
  max-width: 270px;
  max-height: 100px;
  margin-bottom: 0rem;
}

.showcase-sidebar .sidebar-footer
{
  display: flex;
  padding:  1rem;
  justify-content: center;
  border-top: 1px solid var(--bdr-2);
}

.showcase-sidebar .sidebar-footer a:active
{
  scale: 0.95;
}
.showcase-sidebar .sidebar-footer a:hover
{
  text-decoration: underline;
}