html {
    scroll-behavior: smooth;
}































[data-predefined-style="true"] 
h1 a {
    transition: all 0.3s ease-in-out;  /* vloeiende overgang */
}

[data-predefined-style="true"] 
h1 a:hover {
    color: rgba(0, 0, 0, 0);        
    -webkit-text-stroke: 1px #fff;  
    text-stroke: 1px #fff;          
    font-size: 1.01em; /* groeit 10% */
}







/* Zorg dat de overgang vloeiend is */
.thumbnail {
    transition: transform 0.2s ease;
}

/* Hover effect: iets groter maken */
.thumbnail:hover {
    transform: scale(1.03); /* groeit 5% bij hover */
}











[data-css-preset] #site_menu_button {
    color: rgba(255, 255, 255, 1);
    background: rgba(0, 0, 0, 1);
    line-height: 6rem;
    font-size: 10vh; /* !site_menu_button */
    position: fixed;
    right: 2.2rem; /* !site_menu_button */
    transition: all 0.2s ease; /* smooth overgang voor alles */
    display: inline-block; /* nodig voor transform/scale */
}

/* Hover effect: groeit, wordt doorzichtig en krijgt text-stroke */
[data-css-preset] #site_menu_button:hover {
    color: rgba(255, 255, 255, 0);        /* letters doorzichtig */
    -webkit-text-stroke: 1px #fff;        /* contourkleur */
    text-stroke: 1px #fff;                /* fallback */
    transform: scale(1.05);               /* groeit 5% */
    background: rgba(0, 0, 0, 0.5);       /* knop iets doorzichtig */
}







/* ---------- Begin Contact knopje --------- */




.contact-buttons {
    display: flex;        /* naast elkaar */
    gap: 10px;            /* afstand tussen de knoppen */
    margin-top: 5px;
}

/* WhatsApp knop behoudt je styling */
.contact-link {
    display: inline-block;
    background: #25d366;
    color: #fff;
    padding: 8px 12px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    filter: brightness(1.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-link:hover {
    transform: scale(1.04);
}

/* Instagram knop */
.insta-link {
    display: inline-flex;
    align-items: right;
    gap: 6px;
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); /* Instagram roze/oranje/purple */
    color: #fff;
    padding: 8px 12px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    filter: brightness(1.1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.insta-link:hover {
    transform: scale(1.04);
    filter: brightness(1.1);
}



/* Container position */ 
.contact-toggle { 
    position: fixed; 
    bottom: 1.5em; 
    right: 2em; 
    text-align: right; 
    z-index: 9999; 
    font-family: "Neue Haas Grotesk", Icons; 
    font-style: normal; 
    font-weight: 700; 
}
 

/* Verborgen checkbox */ 
#toggle-contact { display: none; } 

.contact-tab {
    position: relative;
    background: rgba(67, 67, 67, 0.49); /* iets lichter voor shine */
    color: #fff;
    padding: 11px 22px;
    border-radius: 50px; /* ronde knop */
    cursor: pointer;
    font-size: 2rem;
    display: inline-block;
    transform: scale(1);
    transition: transform ease-in-out 0.3s, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.73);
    overflow: hidden;

    /* Sterker glas effect */
    backdrop-filter: blur(3px) saturate(220%);
    -webkit-backdrop-filter: blur(3px) saturate(220%);
    
    /* Schaduw op het element zelf */
    box-shadow: 0px 5px 11px rgba(0, 0, 0, 0.61);
}

/* Pseudo-element voor gradient/highlight */
.contact-tab::before {
    content: "";
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0 */
    border-radius: 50px; /* zelfde radius als knop */
    background: linear-gradient(
        195deg,
        rgba(255, 255, 255, 0.55) 10%,
        rgba(255, 255, 255, 0.18) 44%,
        rgba(255, 255, 255, 0.06) 60%,
        rgba(255, 255, 255, 0) 90%
    );
    background-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

 

/* Als .show toegevoegd wordt via JS */ 
.contact-tab.show { 
    opacity: 1; pointer-events: auto; 
}
 

.contact-tab:hover { 
    transform: scale(1.04); 
}
 

/* contact-box blijft gelijk */ 
.contact-box { 
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    border-radius: 33px; /* ronde hoeken */
    max-width: 800px;
    font-size: 2rem;
    position: relative;
    margin-bottom: 10px;
    transition: opacity 0.2s ease-in,
                max-height 0.3s cubic-bezier(0.68, 0.32, 0.00, 0.00),
                padding 0.4s ease-in-out;

    /* Basis achtergrond + shadow */
    background: rgba(67, 67, 67, 0.49); 
    color: #fff;
    backdrop-filter: blur(3px) saturate(220%);
    -webkit-backdrop-filter: blur(3px) saturate(220%);
    box-shadow: 0px 5px 11px rgba(0, 0, 0, 0.61);
    border: 1px solid rgba(255, 255, 255, 0.73); /* randkleur aanpassen */
    overflow: hidden;
}

/* Pseudo-element voor gradient/highlight */
.contact-box::before {
    content: "";
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0 */
    border-radius: 30px; /* zelfde radius als contact-box */
    background: linear-gradient(
        195deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.18) 50%,
        rgba(255, 255, 255, 0.06) 80%,
        rgba(255, 255, 255, 0) 100%
    );
    background-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}





#toggle-contact:checked ~ .contact-box 
{ 
   opacity: 1; 
   max-height: 300px; 
   padding: 20px; }





/* Sluitknop */
.close-btn {
  position: absolute;
  top: 13px;
  right: 13px;
  cursor: pointer;
  color: white;
  font-size: 2.7rem; /* vergroot het icoon */
  line-height: 1; /* voorkomt extra hoogte */
  transition: transform 0.3s ease, background 0.3s ease;

}


.close-btn:hover {
  transform: scale(1.3); 
  transition: transform ease-in-out 0.3s;
}

#toggle-contact:checked ~ .contact-tab {
  opacity: 0;
  pointer-events: none;
}


.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center; /* zorgt dat tekst en kruisje exact op dezelfde lijn staan */
    margin-bottom: 15px;
}

.contact-header p {
    margin: 0; /* verwijdert extra witruimte */
}






/* ---------- Einde Contact knopje --------- */











/* Zorg dat de homepage-content een consistente startpositie heeft */
.content {
    opacity: 1;
    /* kleine blurIn animatie behouden voor fallback */
    animation: blurIn 0.45s ease;
}

@keyframes blurIn {
    from { filter: blur(10px); opacity: 0.9; }
    to { filter: blur(0); opacity: 1; }
}

/* Verbeterde gecombineerde animatie */
.homepage .content {
    opacity: 0;
    animation: slideBlurIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: transform, filter, opacity; /* hint voor browser */
}

@keyframes slideBlurIn {
    from {
        filter: blur(10px);
        opacity: 0;
        transform: translateY(-100px); /* kleiner, minder schok */
    }
    to {
        filter: blur(0);
        opacity: 1;
        transform: translateY(0);
    }
}






/* Zorg dat de homepage-content een consistente startpositie heeft */
















/* Style for all image links */
a img {
    transition: transform 0.1s ease; /* Smooth transition for the transform */
}

/* Press effect on active (clicked) state */
a img:active {
    transform: scale(0.98); /* Slightly scale down the image when clicked */
}

/* Optional: Make images responsive */
img {
    max-width: 100%; /* Ensure the image doesn't exceed the width of its container */
    height: auto; /* Maintain the aspect ratio */
}



























































@font-face {
    font-family: 'Robit-medium';
    src: url('https://files.cargocollective.com/c1670289/Robit-Medium.otf') format('otf');
}



@font-face {
    font-family: 'Robit-bold';
    src: url('https://files.cargocollective.com/c1670289/Robit-Bold.otf') format('otf');
}


























.content img { 
    border-radius: 10px;
       max-width: 100%;
   height: auto;
    
    
}



html {
    cursor: url(https://freight.cargo.site/t/original/i/20d1a6d1a84b30d7b5dc35e767b85e20afe3a55958cd8e9b72769811d8f68178/Artboard-2.png), auto !important;
}

.content img {
    cursor: url(https://freight.cargo.site/t/original/i/1b6a4cfcf7961972466ada72368abae8f0f1f348b201e6ac461fecc914b4d83c/Artboard-4.png), auto !important;
}

b,
strong {
	font-weight: bolder;
}

sub,
sup {
	position: relative;
}

sub {
	top: 0.3em;
}

sup {
	top: -0.4em;
}

s {
	text-decoration: line-through;
}

img {
	border: 1;
	padding: 0; 
    
}

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

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

hr {
	background: rgba(255, 255, 255, 1);
	border: 0;
	height: 1.0px;
	display: block;
    margin-top:  1.7rem;
    margin-bottom: 0rem;
    width: 108%;
    margin-left:  -2rem; /* Negative margins to extend equally on both sides */

    


}

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

.gallery_image_caption {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.4);
	font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Roman", Icons;
	font-style: normal;
	line-height: 1.3;
}


[data-predefined-style="true"] bodycopy {
	font-weight: 400;
	color: #fff;
	font-family: "Neue Haas Grotesk", Icons;
	font-style: normal;
	line-height: 1.3;
        text-align: left;

}


    
    


/* Media query for mobile devices */
@media only screen and (max-width: 600px) {
  bodycopy {
    font-size: 1.8rem; /* Adjust font size for mobile */
  
    
    }
}

/* Styles for desktop devices */
@media only screen and (min-width: 601px) {
  .bodycopy {
    font-size: 1.3rem; /* Adjust font size for desktop */
  }
}











[data-predefined-style="true"] bodycopy a {
	color: rgba(245, 245, 247, 1);
	padding-bottom: 0.1em;
	border-bottom: 0.0em solid rgba(144, 144, 144, 0.2);
    text-decoration: none;
    text-decoration-color: #858585
        
  }

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: "Alte Haas Grotesk", Icons;
	font-style: normal;
	font-weight: 700;
	margin: 0;
	color: #fff;
    	line-height: 0.9;

    letter-spacing: -0.068em
        

      
}





/* Default font size for desktop */
h1 {
  font-size: 7rem;
  line-height: 9vh;



}

/* Media query for mobile devices */
@media only screen and (max-width: 600px) {
  h1 {
    font-size: 6rem; /* Adjust font size for mobile */	
    line-height: 5.8vh;
	letter-spacing: -4px
}
      
  
}

/* Default padding for h1 */
h1 {
  padding-top: 0.0em; /* Default padding for mobile */
  text-align: left;

}

















[data-predefined-style="true"] h2 {
font-family: "Monument Grotesk Variable", Icons;
	font-style: normal;
	line-height: 1.2;
	font-size: 3rem;
	font-weight: 361;
	font-variation-settings: 'slnt' -10, 'MONO' 0;
    text-align: left;
}






/* Default font size for desktop */
h2 {
  font-size: 2.8rem;
    
}

/* Media query for mobile devices */
@media only screen and (max-width: 600px) {
  h2 {
    font-size: 3rem; /* Adjust font size for mobile */
  }
}



















[data-predefined-style="true"] small {
	display: inline-block;
	line-height: 1.0;
	font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Roman", Icons;
	font-style: italic;
	font-weight: 400;
	color: #fff;



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





/* Media query for mobile devices */
@media only screen and (max-width: 600px) {
  small {
    font-size: 2.3rem; /* Adjust font size for mobile */
    text-align: left
    }
}



/* Styles for desktop devices */
@media only screen and (min-width: 601px) {
  small {
    font-size: 1.6rem; /* Adjust font size for desktop */
  }
}













/**
 * Breakpoints
 */


/* Voor alle pagina's standaard */
/* Begin zonder shadow */
div.page[data-id="35893861"] {
    box-shadow: 0 -30px 30px 34px rgba(0,0,0,1);
}







.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_right*/;
	margin-right: 1 /*!content_right*/;
    

}



























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

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

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

}


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

/**
 * Thumbnails
 */

div[thumbnails] {
	justify-content: flexstart;
}

[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: 2.0rem/*!thumbnails_padding*/;
    padding-top: 2rem;
    padding-bottom: 3rem;
        
}

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

[data-css-preset] [responsive-layout] [thumbnails-pad] {
    padding: 3.0rem/*!responsive_thumbnails_padding*/; 
    padding-top: 3.0rem;
        padding-bottom: 5rem;

        white-space: nowrap;
}

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

.thumbnails .thumb_image {
	outline: 0px solid rgba(255, 255, 255, 0);
    outline-offset: 0px;
}
.thumbnails .title .mobile {
    margin-top: .8rem;
    margin-bottom: .2rem;
    font-size: 1.2rem;
	color: rgba(245, 245, 247, 1);
	font-style: normal;
	line-height: 1.2;
    	line-height: 0.3;
    font-family: "Neue Haas Grotesk", Icons;
    font-weight: 500;
    font-style: normal;
}

.thumbnails .tags {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
	font-weight: 400;
    color: rgba(148, 148, 148, 1);
	font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Roman", Icons;
	font-style: normal;
	line-height: 2.1;
    text-align: justify !important;
}

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

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

/**
 * Site Menu
 */







body.mobile #site_menu_button {
	margin: 0% 1%;
    font-size: 6.5vh;
}



/* Default padding for menu button */
[data-css-preset] #site_menu_button {
    right: 0.8rem /* Default padding for mobile */
}

/* Media query for desktop */
@media only screen and (min-width: 768px) {
  [data-css-preset] #site_menu_button {
    top: 1%; /* Adjust padding for desktop */
  }
}



.page a.active {
	color: rgba(133, 133, 133, 1);
}





/**
 * Site Menu
 */




























#site_menu {
	font-family: "Neue Haas Grotesk", Icons;
	background: rgba(29, 29, 31, 0.96);
	font-size: 31px;
	font-style: normal;
	font-weight: 100;
	padding: 20px 30px 90px 30px;
	max-width: 1920px;
	min-width: 1920px;
	text-align: left;
	display: flex;
	justify-content: center;
    line-height: 1.2;
    
}



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


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

#site_menu .break {
	height: 29px;
}

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

/*
 * Shop Button
 */

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

#shop_button.text {
    font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Roman", Icons;
	font-size: 2rem;
    padding: 0;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.85);
	font-style: normal;
}

#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: block;
}

.shop_product .price {
	font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Roman", Icons;
	font-size: 1.6rem;
	line-height: 1;
	color: rgba(0, 0, 0, 0.85);
    display: block;
    margin-bottom: 1rem;
	font-style: normal;
	font-weight: 400;
}

.shop_product .dropdown {
    font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Roman", Icons;
    font-size: 1.6rem;
    display: inline-block;
	width: 100%;
    border: 1px solid rgba(0,0,0,.2);
    background:  white url(https://static.cargo.site/assets/images/select-line-arrows.svg) no-repeat right;
    margin-bottom: 1rem;
    line-height: 1.4;
    padding: .6rem 2.6rem .7rem 1rem;
	font-style: normal;
	font-weight: 400;
    color: rgba(0, 0, 0, 0.85);
}

.shop_product .button {
    font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Roman", Icons;
	font-size: 1.6rem;
    background: rgba(0, 0, 0, 0.7);
    color: rgba(255,255,255,1);
    flex: 0 0 50%;
    text-align: left;
    display: inline-block;
	line-height: 1;
    padding: 0.8rem 1rem 0.9rem;
	font-style: normal;
	font-weight: 400;
}



[data-css-preset] .quick-view {
    padding-top: 2rem /*!quick_view_padding*/;
    padding-bottom: 2rem /*!quick_view_padding*/;
    padding-left: 2rem /*!quick_view_padding*/;
    padding-right: 2rem /*!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: rgba(0, 0, 0, 0.8) /*!quick_view_bgcolor*/;
}

.quick-view-caption {
   	font-family: "Neue Haas Grotesk", Icons;
	font-style: normal;
    transition: 100ms opacity ease-in-out;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 3.5rem 0;
    text-align: center;
    font-size: 1.2rem;
	font-weight: 500;
    line-height: 1.2;
}

.quick-view-caption span {
    padding: 0.5rem 1rem;
    display: inline-block;
    background: rgba(53, 53, 53, 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: 47px;
    width: 100px;
}

.quick-view-navigation .left-arrow .inner-color,
.quick-view-navigation .right-arrow .inner-color {
    stroke: rgba(255, 255, 255, 1);
    stroke-width: 3.7px;
}

.quick-view-navigation .left-arrow .outer-color,
.quick-view-navigation .right-arrow .outer-color {
    stroke: #000;
    stroke-width: 3.7px;
}

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

.quick-view-navigation .close-button .inner-color {
    stroke: rgba(255, 255, 255, 1);
    stroke-width: 3.7px;
}

.quick-view-navigation .close-button .outer-color {
    stroke: #000;
    stroke-width: 3.7px;
}

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


.rotate {
    display: inline-block;
    -webkit-animation: rotate 7s linear infinite;
    animation: rotate 7s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/*
 * Audio Player
 */

.audio-player {
    max-width: 36rem;
    height: 3.3rem;
    outline: 1px solid rgba(0,0,0,0.15);
    color: rgba(0, 0, 0, 0.6);
    background: #fff;
    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(0,0,0,0.15);
}

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

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

.audio-player .buffer {
    background: rgba(0,0,0,0.03);
}

.audio-player .progress {
    background: rgba(0,0,0,0.1);
}

.audio-player .progress-indicator {
    border: 1px solid rgba(0, 0, 0, 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(0, 0, 0, 0.5);
}

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

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







.thumbnails .thumbnail > a {
    position: relative;

}






.thumbnails .thumbnail .title {
    font-size: 1.3rem;
    line-height: 2.4rem;
    color: rgba(148, 148, 148, 1);
    display: flex;
    position: absolute;
	font-family: "Neue Haas Grotesk", Icons;
	font-weight: 100;
	font-style: oblique;

}


.thumbnails .title  {
    display: inline-block;
}










.hover-title {
    display: inline;
    pointer-events: auto;
    cursor: pointer;
}

.hover-image {
    visibility: hidden;
}

body:not(.mobile) .hover-title:hover + .hover-image {
    visibility: visible;
    pointer-events: none;
}







.hover-image {
    visibility: hidden;
}

body:not(.mobile) .hover-title:hover + .hover-image {
    visibility: visible;
    pointer-events: none;
}

.hover-wrapper {
  position: relative;
  display: inline-block;
}

.hover-image {
    display: flex;
    position: fixed;
    top: 50%;
    left: 76%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;


/* Change width and height to scale images */
    width: 90vw;
    height: 90vh;
}

.hover-image img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    margin-bottom: 0;
}


































