/* Container for the gallery - adjust width/max-width as needed for your layout */
.cg-container {
    position: relative; /* Needed for the absolute indicator */
    width: 1000px;      /* Or adjust to fit your page layout */
    max-width: 95%;    /* Ensures responsiveness */
    margin: 2em auto;   /* Example centering - adjust as needed */
    padding: 1em 0.5em;
    display: flex;
    justify-content: center;
    align-items: center;
     /* background-color: #1a1a1a; /* Optional subtle background */
}

/* Indicator Dot Styles */
.cg-indicator {
    position: absolute;
    top: 10px; /* Position below the top edge slightly */
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: left 1s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.3s ease; /* Added opacity transition */
    z-index: 10;
    transform: translate(-50%, -50%); /* Center on cursor */
    opacity: 0; /* Hidden by default */
    pointer-events: none; /* Prevent indicator from interfering with mouse events */
}

/* Show indicator only when hovering the container */
.cg-container:hover .cg-indicator {
    opacity: 1;
}
@media (max-width: 768px) { /* Adjust 768px breakpoint as needed */
    .cg-indicator {
        display: none !important;
    }
}
/* Gallery Flex Container Styles */
.cg-gallery {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 400px;
    /* overflow: hidden; /* Keep removed */

    /* --- Define Variables & Basic Styles --- */
    position: relative; /* Keep */
    --cg-gallery-glow-color: #ffffff; /* Default glow color */
    --cg-border-radius: 10px;         /* Define radius variable */
   --bg-opacity: 0.75;               /* Background opacity */
    border-radius: var(--cg-border-radius); /* Use variable */

    /* --- Added Border --- */
    /* Start transparent, animation will fade color in/out */
    border: 1px solid transparent;

    /* --- Gradient Background --- */
    
    background: linear-gradient(
        135deg,
        rgba(30, 30, 30, var(--bg-opacity)) 0%,
        rgba(65, 65, 65, var(--bg-opacity)) 50%,
        rgba(30, 30, 30, var(--bg-opacity)) 100%
    ) padding-box; 
    background-size: 400% 400%;
    
    /* --- Added Box Shadow for Soft Glow --- */
    /* Initial state for animation */
    

    /* --- Combined Animations --- */
    opacity: 0; /* Start hidden for fadeIn */
    animation:
        
        cg-gradientShift 10s ease infinite, /* Background */
        
        cg-borderFade 3s ease-in-out infinite, /* Border Opacity */
        fadeIn 1s ease-in forwards; /* Element Fade In */
}

/* Keyframes for Gradient Shift (Keep as is) */

@keyframes cg-gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Keyframes for Fade In (Keep as is) */
@keyframes fadeIn { /* ... */
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Keyframes for Box Shadow Glow (Keep from last attempt) */


/* NEW Keyframes for Border Opacity Fade */
@keyframes cg-borderFade {
    0% {
        /* Use RGBA to control alpha channel of the border */
        border-color: rgba(from var(--cg-gallery-glow-color, #ffffff) r g b / 0.6); /* Low opacity */
    }
    50% {
        border-color: rgba(from var(--cg-gallery-glow-color, #ffffff) r g b / 1.0); /* Full opacity */
    }
    100% {
        border-color: rgba(from var(--cg-gallery-glow-color, #ffffff) r g b / 0.6); /* Low opacity */
    }
}
/* Individual Gallery Item Styles */
.cg-gallery-item {
    /* ... (flex, height, margin, background, etc. remain same) ... */
    flex: 0 1 50px;
    height: 100%;
    margin: 0 5px;
    background-color: #000;
    overflow: hidden;
    cursor: pointer;
    transition: flex 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    opacity: 1;
    border-radius: var(--cg-border-radius); /* Use variable */
}

.cg-gallery-item:first-child {
    margin-left: 0;
}
.cg-gallery-item:last-child {
    margin-right: 0;
}
/* Image Styles within Gallery Items */
.cg-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the item area */
    object-position: center center;
    transform: scale(1.1); /* Slightly zoom for better look on expand */
    /* Prevent image selection/dragging */
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.cg-active-caption {
    position: absolute; /* Position relative to .cg-container */
    bottom: -10px;      /* Adjust distance below the gallery */
    left: 0;
    width: 100%;
    text-align: center;
    font-family: "DOS-font", monospace; /* Use specified font with fallback */
    color: white;
    font-size: 1em;     /* Adjust size as needed */
    padding: 5px 0;
    opacity: 0;         /* Hidden by default */
    transition: opacity 0.4s ease 0.5s; /* Fade in/out with a slight delay */
    pointer-events: none; /* Don't interfere with mouse events */
    z-index: 5; /* Below indicator maybe */
}

/* Futuristic Slideshow Component Styles */
.futuristic-slideshow {
    --glow-color: #ffffff;
    --bg-opacity: 0.75;
    --slideshow-padding: 0px; /* Adjusted */
    --slideshow-border-radius: 10px;

    position: relative;
    display: flex; /* Keeps container centered if needed */
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    max-width: 100%; /* Adjust as needed */
    overflow: visible; /* Allow glow/shadow to extend */
}

.slideshow-container {
    position: relative;
    padding: var(--slideshow-padding);
    border-radius: var(--slideshow-border-radius);
    overflow: visible; /* Allow contents (like dots/glow) outside padding box */
    flex: 1; /* Allows it to grow within .futuristic-slideshow if needed */
    /* Shifting gradient background */
    
 
    background: linear-gradient(
        135deg,
         rgba(30, 30, 30, var(--bg-opacity)) 0%,   
        rgba(65, 65, 65, var(--bg-opacity)) 50%,   
        rgba(30, 30, 30, var(--bg-opacity)) 100%  
    );
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glowing border effect with pulsating animation */
.slideshow-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--slideshow-border-radius);
    padding: 1px; /* Adjusted */
    background: linear-gradient(45deg, transparent 0%, var(--glow-color) 50%, transparent 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 5;
    animation: borderGlow 3s infinite, borderPulse 1.5s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 3px var(--glow-color)); /* Adjusted */
}

@keyframes borderGlow {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

@keyframes borderPulse {
    0% { filter: drop-shadow(0 0 3px var(--glow-color)); } /* Adjusted */
    100% { filter: drop-shadow(0 0 10px var(--glow-color)); } /* Adjusted */
}

.image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Aspect ratio hack for square, adjust if needed */
    overflow: hidden;
    border-radius: var(--slideshow-border-radius); /* Match container radius */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s linear;
    visibility: hidden;

    /* --- Add Flexbox --- */
    display: flex;
    align-items: center; /* Vertical centering */
    justify-content: center; /* Horizontal centering */
    overflow: hidden; /* Ensure image doesn't overflow slide boundaries */
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

/* Styling for links wrapping images */
.slide a {
    display: flex; /* Use flex for the link as well */
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure link fills the slide */
    height: 100%; /* Ensure link fills the slide */
    line-height: 0;
    text-decoration: none;
    padding: 0; /* Keep padding at 0 */
}

.slide-image {
    /* --- Adjust for Flexbox --- */
    /* position: absolute; */ /* REMOVE or comment out */
    /* top: 0; */            /* REMOVE or comment out */
    /* left: 0; */           /* REMOVE or comment out */
    /* width: 100%; */       /* REMOVE or comment out - let flexbox/max handle */
    /* height: 100%; */      /* REMOVE or comment out - let flexbox/max handle */

    display: block;
    object-fit: cover; /* Still needed to cover area */
    object-position: 50% 50%; /* Still preferred for fine-tuning cover */

    /* --- Add Max limits --- */
     width: 100%;
    height: 100%;
}

/* Navigation arrows - Permanently hidden */
.slideshow-nav {
    display: none; /* Keep hidden */
}

/* Dots navigation */
.slideshow-dots {
    position: absolute;
    bottom: 15px; /* Adjust vertical position as needed */
    left: 50%;
    transform: translateX(-50%);
    display: flex; /* Keep flex for layout */
    gap: 10px;
    z-index: 10;
}

.slideshow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slideshow-dot.active {
    background-color: var(--glow-color);
    box-shadow: 0 0 5px var(--glow-color);
    animation: dotPulse 1.5s ease-in-out infinite alternate;
}

@keyframes dotPulse {
    0% { box-shadow: 0 0 5px var(--glow-color); }
    100% { box-shadow: 0 0 10px var(--glow-color); }
}

.slideshow-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.button-link {
  text-decoration: none; /* Ensures no underline appears */
}
.slider {
  padding: 0px 0;
}

.slider {
  padding: 0px 0;
}

.slider__slide img {
  display: block;
  width: 100%;
  border-radius: 8px;
  transition: transform 300ms;
  
}

.slider .slider__arrow {
  top: 0;
  bottom: 0;
  height: 100%;
  transform: none;
  border-radius: unset;
  width: 50px;
  opacity: 0.9;
  clip-path: circle(0%);
}
.slider .slider__arrow svg {
  filter: invert(1);
  width: 24px;
  height: 24px;
}

.slider__arrow.slider__arrow--prev {
  left: 0;
  background: none;
}

.slider__arrow.slider__arrow--next {
  right: 0;
  background: none;
}

a {
  color: #fff;
  padding: 4px 8px;
}

section {
  max-width: 700px;
  margin: 0 auto;
}

.left {
  text-align: left;
}

/*

 */
@font-face {
  font-family: 'Charmset-font';
  src: URL('https://files.cargocollective.com/c2811184/ClassicCobraLaser-8Or9A.otf') format('opentype');
  font-display: fallback;
}

h1{
	font-family: 'Charmset-font' !important;
}

@font-face {
  font-family: 'DOS-font';
  src: URL('https://files.cargocollective.com/c2811184/Orbitron-Medium.ttf') format('truetype');
  font-display: fallback;
}

small{
	font-family: 'DOS-font' !important;
    letter-spacing: 1px;

}
@font-face {
  font-family: 'DOS-font';
  src: URL('https://files.cargocollective.com/c2811184/Orbitron-Medium.ttf') format('truetype');
  font-display: fallback;
}

h2{
	font-family: 'DOS-font' !important;
    letter-spacing: 1px;
  
}

body {
	background-color: #fff;
	color: #000;
}

a:active {
	opacity: 0.7;
}

i,
em {
	font-style: italic;
}

b,
strong {
	font-weight: bolder;
}

sub,
sup {
	position: relative;
	vertical-align: baseline;
}

sub {
	top: 0.3em;
}

sup {
	top: -0.4em;
}

s {
	text-decoration: line-through;
}

img {
	border: 0;
	padding: 0;
}

ul,
ol {
	margin: 0;
	padding: 0 0 0 2em;
}

blockquote {
	margin: 0;
	padding: 0 0 0 2em;
}

hr {
	background: rgba(255, 255, 255, 0.2);
	border: 0;
	height: 1px;
	display: block;
}

.content img {
	float: none;
	margin-bottom: 0;
}

.gallery_image_caption {
    margin-top: 0.8rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
	font-weight: bold;
	color: rgba(255, 255, 255, 1);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif", Icons;
	font-style: normal;
	line-height: 1.3;
    text-shadow: 1px 1px 3px #000;
	margin-left: -3rem;
    margin-right: -3rem;
}

/* Global Toolbar Overlay Styles */
.global-toolbar-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0; /* Using right:0 instead of width:100% helps with scrollbar issues */
  height: 35px; /* Your preferred toolbar height */
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.toolbar-container {
  display: flex;
  height: 100%;
  max-width: 1200px; /* Optional: limit maximum width */
  margin: 0 auto; /* Center the container */
  padding: 0 15px; /* Add some padding on the sides */
}

.toolbar-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.left-section {
  flex: 1;
}

.middle-section {
  position: fixed;
  left: 50vw;
  transform: translateX(-50%);
  bottom: 0;
  height: 35px; /* FIXED: Must match the toolbar height */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 0; /* Removed vertical padding to fit within 35px height */
}

.right-section {
  flex: 1;
}

.toolbar-icon {
  max-height: 25px; /* Keep icon within toolbar bounds */
  width: auto;
  object-fit: contain;
  vertical-align: middle; /* Ensures vertical alignment */
  margin: auto; /* Centers the image in all directions */
}

/* Responsive styles for toolbar */
@media (max-width: 768px) {
  .toolbar-container {
    padding: 0 10px;
  }
  
  .toolbar-icon {
    max-height: 22px; /* Slightly smaller on mobile */
  }
}
/**
 * Loading Animation
 */

.loading[data-loading] {
	position: fixed;
	bottom: 8px; 
    left: 8px;
}

/**
 * Editor styles
 */

[data-predefined-style="true"] bodycopy {
	font-size: 1.5rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.85);
	font-family: "DOS-font", Icons;
	font-style: normal;
	line-height: 1.4;
}

[data-predefined-style="true"] bodycopy a {
	color: rgba(255, 255, 255, 0.85);
	padding-bottom: 0.1em;
	border-bottom: 0.0em solid rgba(127, 127, 127, 0.2);
	text-decoration: none;
}

[data-predefined-style="true"] bodycopy a:hover {

}

bodycopy a.image-link,
bodycopy a.icon-link,
bodycopy a.image-link:hover,
bodycopy a.icon-link:hover {
	border-bottom: 0;
	padding-bottom: 0;
}

[data-predefined-style="true"] h1 {
	font-family: Charmset-font, Icons;
	padding: 0;
	margin: 0;
	font-size: 3rem;
	line-height: 1.1;
	color: rgba(255, 255, 255, 1);
        letter-spacing: 0.075rem;
	font-style: normal;
	font-weight: 100;
}

[data-predefined-style="true"] h1 a {
	color: rgba(255, 255, 255, 1.0);
}

[data-predefined-style="true"] h2 {
	font-family: Syne, Icons;
	font-style: normal;
	font-weight: 300;
	padding: 0;
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
	font-size: 2.4rem;
	line-height: 1.2;
	}

[data-predefined-style="true"] h2 a {
	color: rgba(255, 255, 255, 0.85);
}

[data-predefined-style="true"] small {
	display: inline-block;
	font-size: 1.5rem;
	line-height: 1.3;
	font-family: "VCR OSD Mono", Icons;
	color: rgba(255, 255, 255, 1.0);
	font-style: normal;
	font-weight: 400;
}

[data-predefined-style="true"] small a {
	color: rgba(255, 255, 255, 1.0);
	border-bottom-width: 0em;
}

/**
 * Breakpoints
 */

[data-css-preset] .page {
    background-color: initial /*!page_bgcolor*/;
}

.mobile .page,
[data-css-preset].mobile .page {
	position: relative;
	min-height: 10px;
	max-width: 100%;
	width: 100%;
	background-color: transparent /*!page_bgcolor*/;
}

[data-css-preset] .container {
	margin-left: auto /*!content_center*/;
	margin-right: auto /*!content_center*/;
	text-align: center /*!text_center*/;
}

[data-css-preset] body {
	background-color: #111 /*!body_bgcolor*/;
}

[data-css-preset] .container_width {
	width: 100% /*!content_center*/;
}

[data-css-preset] .content_padding {
	padding-top: 2rem /*!main_margin*/;
	padding-bottom: 2rem /*!main_margin*/;
	padding-left: 2rem /*!main_margin*/;
	padding-right: 2rem /*!main_margin*/;
}

[data-css-preset] text-limit {
	display: inline-block /*!text_width*/;
	max-width: 66rem/*!text_width*/;
}

/**
 * Thumbnails
 */

div[thumbnails] {
	justify-content: flex-start;
}

[data-css-preset] .thumbnails {
   	background-color: rgba(0, 0, 0, 0)/*!thumbnails_bgcolor*/;   
}

[data-css-preset] .thumbnails_width {
    width: 100%/*!thumbnails_width*/;
}

[data-css-preset] [thumbnails-pad] {
    padding: 1rem/*!thumbnails_padding*/;
}

[data-css-preset] [thumbnails-gutter] {
    margin: -2rem/*!thumbnails_padding*/;
}

[data-css-preset] [responsive-layout] [thumbnails-pad] {
    padding: 0.5rem/*!responsive_thumbnails_padding*/; 
}

[data-css-preset] [responsive-layout] [thumbnails-gutter] {
    margin: -1rem/*!responsive_thumbnails_padding*/; 
}

.thumbnails .thumb_image {
	outline: 0px solid rgba(0,0,0,.12);
    outline-offset: -1px;
}

.thumbnails .title {
    margin-top: 1.2rem;
    margin-bottom: .3rem;
    font-size: 1.8rem;
	font-weight: normal;
	color: rgba(255, 255, 255, 0.85);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif", Icons;
	font-style: normal;
	line-height: 1.1;
}

.thumbnails .tags {
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.85);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif", Icons;
	font-style: normal;
	line-height: 1.2;
}

.thumbnails .tags a {
	border-bottom: 0;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.thumbnails .has_title .tags {
	margin-top: 0rem;
}

/**
 * Site Menu
 */

[data-css-preset] #site_menu_button {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1;
    font-size: 40px /*!site_menu_button*/;
    padding: 6px;
    line-height: 1;
    background: rgba(0, 0, 0, 0);
    position: fixed;
	bottom: 3rem /*!site_menu_button*/;
	left: 3rem /*!site_menu_button*/;
}

body.mobile #site_menu_button {
	margin: -6px;
    font-size: 34px;
}

#site_menu_button.custom_icon {
	width: 40px;
    height: auto;
}

#site_menu_button.active {
	display: none;
}

/**
 * Site Menu
 */

#site_menu {
	font-family: "VCR OSD Mono", Icons;
	background: rgba(20, 20, 20, 0.95);
	font-size: 34px;
	font-style: normal;
	font-weight: 400;
	padding: 20px 30px 90px 30px;
	max-width: 400px;
	min-width: 300px;
	text-align: left;
	display: flex;
	justify-content: flex-start;
}

body.mobile #site_menu {
	width: 100%;
}

#site_menu .page-link a {
	color: rgba(255, 255, 255, 0.75);
}

#site_menu .set-link > a {
	color: rgba(255, 255, 255, 0.75);
	font-weight: bold;
}

#site_menu a:active {
	opacity: .7;
}

#site_menu a.active {
	opacity: .4;
}

#site_menu .close {
	display: none;
	color: rgba(255, 255, 255, 0.4);
	line-height: .85em;
	font-size: 45px;
}

body.mobile #site_menu .close {
	display: block;
	font-size: 60px;
	line-height: 1em;
}

#site_menu .break {
	height: 28px;
}

#site_menu .indent {
	margin-left: 28px;
}

/*
 * Shop Button
 */

[data-css-preset] #shop_button {
	color: rgba(255, 255, 255, 0.85);
    background: transparent;
	font-size: 32px;
    font-style: normal;
	font-weight: 400;
    line-height: 1;
    position: fixed;
	padding: 6px;
	top: .5rem /*!shop_button*/;
	right: .5rem /*!shop_button*/;
}

#shop_button.text {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif", Icons;
	font-size: 1.5rem;
    padding: 0;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.85);
}

#shop_button.custom_icon {
	width: 40px;
    height: auto;
}

body.mobile #shop_button:not(.text) {
	margin: -6px;
    font-size: 36px;
}

/*
 * Shop Product Widget
 */

.shop_product {
    width: 100%;
	max-width: 22rem;
    position: relative;
    display: inline-block;
}

.shop_product .price {
	font-family: "DOS-font", Icons;
	font-size: 2rem;
	line-height: 1;
	color: rgba(255, 255, 255, 0.85);
    display: block;
    margin-bottom: 1rem;
	font-style: normal;
	font-weight: 400;
}

.shop_product .dropdown {
    font-family: "DOS-font", Icons;
    font-size: 1.5rem;
    display: inline-block;
	width: 100%;
    border: 1px solid rgba(0,0,0, 0);
    background:  white url(https://static.cargo.site/assets/images/select-line-arrows.svg) no-repeat right;
    margin-bottom: 1rem;
    line-height: 1.2;
    padding: .7rem 2.5rem .8rem 1rem;
	font-style: normal;
	font-weight: 400;
}

.shop_product .button {
    font-family: "DOS-font", Icons;
	font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255,255,255,1);
    flex: 0 0 50%;
    text-align: left;
    display: inline-block;
	line-height: 1;
    padding: .8rem 1rem .6rem;
	font-style: normal;
	font-weight: 400
}

/*
 * Image Zoom
 */

.content img.image-zoom:active {
  opacity: .7;
}

/**
 * Quick View
 */

[data-css-preset] .quick-view {
    padding-top: 5rem /*!quick_view_padding*/;
    padding-bottom: 5rem /*!quick_view_padding*/;
    padding-left: 5rem /*!quick_view_padding*/;
    padding-right: 5rem /*!quick_view_padding*/;
    height: 100% /*!quick_view_height*/;
    width: 100% /*!quick_view_width*/;
}

body.mobile .quick-view {
    width: 100%;
    height: 100%;
    margin: 0;
}


[data-css-preset] .quick-view-background {
	background: transparent /*!quick_view_bgcolor*/;
}

.quick-view-caption {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif Bold", Icons;
    transition: 100ms opacity ease-in-out;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 2rem 0;
    text-align: center;
    font-size: 1.2rem;
	font-style: normal;
	font-weight: 700;
}

.quick-view-caption span {
    padding: 0.5rem 1rem;
    display: inline-block;
    background: rgba(0,0,0,0.5);
    color: white;
}

/**
 * Quick View Navigation 
 */

.quick-view-navigation .left-arrow {
    left: 10px;
}

.quick-view-navigation .right-arrow {
    right: 10px;
}

.quick-view-navigation .left-arrow,
.quick-view-navigation .right-arrow {
    /* Change height/width together to scale */
    height: 36px;
    width: 36px;
    display: none;
}

.quick-view-navigation .left-arrow .inner-color,
.quick-view-navigation .right-arrow .inner-color {
    stroke: #fff;
    stroke-width: 1.5px;
}

.quick-view-navigation .left-arrow .outer-color,
.quick-view-navigation .right-arrow .outer-color {
    stroke: rgba(0, 0, 0, 0.6);
    stroke-width: 2.5px;
}

.quick-view-navigation .close-button {  
    top: 10px;
    right: 10px;
    /* Change height/width together to scale */
    width: 36px;
    height: 36px;
    display: none;
}

.quick-view-navigation .close-button .inner-color {
    stroke: #fff;
    stroke-width: 1.5px;
}

.quick-view-navigation .close-button .outer-color {
    stroke: rgba(0, 0, 0, 0.6);
    stroke-width: 2.5px;
}

/** 
 * Image Gallery Navigation Arrows 
 */
 
.image-gallery-navigation .left-arrow,
.image-gallery-navigation .right-arrow {
    /* Change height/width together to scale */
    height: 36px;
    width: 36px;
}

.image-gallery-navigation .left-arrow .inner-color,
.image-gallery-navigation .right-arrow .inner-color {
    stroke: #fff;
    stroke-width: 1.5px;
}

.image-gallery-navigation .left-arrow .outer-color,
.image-gallery-navigation .right-arrow .outer-color {
    stroke: rgba(0, 0, 0, 0.6);
    stroke-width: 2.5px;
}

/**
 * Wallpaper Backdrop Navigation Arrows 
 */

.wallpaper-navigation .left-arrow,
.wallpaper-navigation .right-arrow {
   /* Change height/width together to scale */
   width: 36px;
   height: 36px;
}

.wallpaper-navigation .left-arrow .inner-color,
.wallpaper-navigation .right-arrow .inner-color {
   stroke: #fff;
    stroke-width: 1.5px;
}

.wallpaper-navigation .left-arrow .outer-color,
.wallpaper-navigation .right-arrow .outer-color {
    stroke: rgba(0, 0, 0, 0.6);
    stroke-width: 2.5px;
}


/**
 * Feed
 */

.feed .content_container .page {
    border-top: 0px dashed rgba(0, 0, 0, 0.2);
}

.feed .content_container .page_container:first-child .page {
	border-top: 0;
}

/*
 * Audio Player
 */

.audio-player {
    max-width: 36rem;
    height: 3.3rem;
    outline: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.4);
    font-size: 1.2rem;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif", Icons;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    margin: 1px 1px 1em 1px;
}

body.mobile .audio-player {
    max-width: 100%;
}

.audio-player .separator {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.audio-player .button {
    background: transparent;
    cursor: pointer;
    fill: rgba(255, 255, 255, 0.85);
}

.audio-player .icon {
    fill: rgba(255, 255, 255, 0.75);
    padding: 30%;
    width: 100%;
    margin: auto;
}

.audio-player .buffer {
    background: rgba(255, 255, 255, 0.05);
}

.audio-player .progress {
    background: rgba(255, 255, 255, 0.09);
}

.audio-player .progress-indicator {
    border: 1px solid rgba(255, 255, 255, 0.7);
    width: 1px;
    height: 100%;
    right: 0;
    position: absolute;
    cursor: ew-resize;
}

.audio-player .note-icon {
    height: 100%;
    width: 3.8rem;
    padding: 1rem;
    fill: rgba(255, 255, 255, 0.6);
}

.audio-player .current-time {
    padding-left: 1rem;
}

.audio-player .total-time {
    padding-right: 1rem;
}

/**
 * Make Eyes follow the Cursor
 * See more at: https://support.cargo.site/Make-Eyes-Follow-the-Cursor
 **/

img[data-caption="#eye"] {
	height: 2.25rem!important;
    width: 2.25rem!important;
}
html {
    cursor: url("https://freight.cargo.site/t/original/i/cd91bc093a46aeae649b0e58ee7683569991c5e98ecd6ea869e48a4fd4cd8b51/CURSOR.png"), auto !important;
}

@media (max-width: 767px) { /* Adjust breakpoint (e.g., 767px for tablets/large phones, 600px for smaller phones) as needed */

    /* Optional: If hiding arrows causes layout shifts or you want more space */
    .futuristic-slideshow {
       /* Example: Reduce side margins if arrows being outside took space */
       /* margin-left: 5px; */
       /* margin-right: 5px; */
       /* Example: Reduce max-width if needed on small screens */
       /* max-width: 95%; */
    }

    /* Optional: Make dots slightly larger/easier to tap on mobile */
    .slideshow-dot {
        /* width: 12px; */
        /* height: 12px; */
    }
    .slideshow-dots {
        /* bottom: 20px; */ /* Adjust if needed */
        /* gap: 12px; */
    }
}