a.button:hover {
  color: #000 !important;
}

.fy-nav__hours {
  margin-top: 24px;
  margin-bottom: 12px;

  font-family: "Basel", Icons;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;

  color: #f4d1a8;
  opacity: 0.7;
}
.fy-contact__disclaimer {
  margin-top: 14px;

  font-family: "Basel", Icons;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: none;
  line-height: 1.5;

  color: #f4d1a8;
  opacity: 0.6;
}
/* =========================
   Contact overlay-on-overlay
   ========================= */

/* Hide 2nd checkbox toggle */
.fy-contact__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Contact button (matches your system) */
.fy-contact__btn {
  display: inline-block;
  margin-top: 14px;
  cursor: pointer;
  user-select: none;

  font-family: "Basel", Icons;
  font-size: clamp(16px, 2vw, 22px);  /* MATCHES MENU LINKS */
  letter-spacing: 0.03em;             /* MATCHES MENU LINKS */
  text-transform: uppercase;

  color: #f4d1a8;
  opacity: 0.85;
}

/* highlight only (no scrunch) */
.fy-contact__btn:hover {
  opacity: 0.75;
}

/* Fullscreen overlay that sits ABOVE your nav overlay */
.fy-contact__overlay {
  position: fixed;
  inset: 0;
  z-index: 200000; /* higher than .fy-nav__overlay (99999) */

  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(1px);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* Show the contact overlay */
.fy-contact__toggle:checked ~ .fy-contact__overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Contact panel (same 1/3 left-panel vibe) */
.fy-contact__panel {
  position: absolute;
  left: 0;
  top: 0;

  width: min(420px, 33vw);
  min-width: 280px;
  height: 100vh;

  background: rgba(0,0,0,0.92);
  padding: 120px 48px 40px;

  font-family: "Basel", Icons;
  color: #f4d1a8;
}

/* Close X */
.fy-contact__close {
  position: fixed;
  top: 24px;
  left: calc(min(420px, 33vw) - 24px);
  transform: translateX(-100%);

  cursor: pointer;
  user-select: none;

  font-family: "Basel", Icons;
  font-size: 28px;
  line-height: 1;
  color: #f4d1a8;
  opacity: 0.9;
}

.fy-contact__close:hover { opacity: 0.75; }

/* Contact text */
.fy-contact__title {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 16px;
}

.fy-contact__info {
  font-family: "Basel", Icons;
  font-size: clamp(16px, 2vw, 22px);  /* SAME AS MENU */
  letter-spacing: 0.03em;             /* SAME AS MENU */
  text-transform: uppercase;
  line-height: 1.4;                   /* slightly tighter than body */
  color: #f4d1a8;
  opacity: 0.9;
}

.fy-nav__contact {
  margin-top: 8px;

  font-family: "Basel", Icons;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;

  color: #f4d1a8;
  opacity: 0.6;
}

.fy-nav__menu .fy-nav__address {
  margin-top: 28px;
  margin-bottom: 20px;
  padding-top: 20px;

  font-family: "Basel", Icons;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;

  color: #f4d1a8;
  opacity: 0.7;
}
.fy-nav__menu .fy-nav__address:hover {
  font-size: 12px !important;
  opacity: 0.9;              /* optional */
  text-decoration: none;      /* optional */
      letter-spacing: 0.12em !important;
  transform: none !important;
  font-weight: inherit !important;
  line-height: 1.6 !important;
}

/* Subscribe wrapper */
.fy-nav__subscribe {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(241, 227, 164, 0.25);
  width: 100%;
  font-family: inherit;

}

/* Label */
.fy-nav__subscribe-label {
  margin: 0 0 10px 0;
  font-size: 12px;              /* smaller than menu */
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f4d1a8;
  opacity: 0.7;
}


/* Form layout */
.fy-nav__subscribe-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Email input */
.fy-nav__subscribe-form input[type="email"] {
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  background: transparent;
  border: none;
  border-bottom: 1px solid #f4d1a8;
  color: #f4d1a8;

  padding: 6px 0;
  outline: none;
}


/* Placeholder */
.fy-nav__subscribe-form input::placeholder {
  color: rgba(241, 227, 164, 0.6);
}

/* Submit arrow */
.fy-nav__subscribe-form input[type="submit"] {
  background: transparent;
  border: none;
  color: #f4d1a8;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
}

.fy-nav__subscribe-form input[type="submit"]:hover {
  opacity: 0.7;
}

/* Wrapper */
.fy-nav {
  position: relative;
  z-index: 9999;
}

/* Hide checkbox but keep it functional */
.fy-nav__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Hamburger button (position it wherever you want) */
.fy-nav__btn {
  cursor: pointer;
  user-select: none;

  /* look */
  font-size: 26px;
  line-height: 1;
  color: #f4d1a8;

  /* optional placement */
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 100000;
}

/* Overlay (hidden by default) */
.fy-nav__overlay {
  font-family: "Basel", Icons !important;
 position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: flex-start;
  justify-content: flex-start;

  background: rgba(0, 0, 0, 0.6); /* dim rest of page */
  backdrop-filter: blur(1px);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}


/* Show overlay when checked */
.fy-nav__toggle:checked ~ .fy-nav__overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Close button */
.fy-nav__close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 100000;

  cursor: pointer;
  user-select: none;

  font-size: 28px;
  line-height: 1;
  color: #f4d1a8;
}

.fy-nav__menu {
  width: 33vw;                /* ⬅️ 1/3 of screen */
  max-width: 420px;           /* keeps it elegant on large screens */
  min-width: 280px;

  height: 100vh;
  background: rgba(0,0,0,0.92);

  padding: 120px 48px 40px;   /* top / sides / bottom */
}

.fy-nav__menu {
  gap: 20px;
}
.fy-nav__menu {
  transform: translateX(-12px);
  transition: transform 0.25s ease;
}

.fy-nav__toggle:checked ~ .fy-nav__overlay .fy-nav__menu {
  transform: translateX(0);
}


/* Cargo-proof link styling */
.fy-nav__menu a,
.fy-nav__menu a:visited,
.fy-nav__menu a:hover,
.fy-nav__menu a:active {
  color: #f4d1a8 !important;
  text-decoration: none !important;

 font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Hover polish */
.fy-nav__menu a:hover {
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

@font-face {
    font-family: 'Basel';
    font-weight: normal;
    font-style: normal;
    src: url('https://files.cargocollective.com/c1817556/BaselClassic-Regular.woff') format('woff');
}

#mc_embed_signup {
    display: flex;
    font:18px;
    font-family: Basel;
    width:px;
    margin-right: 50px;
   	border: none;
  	border-bottom: 1px solid #93806a;
    cursor: pointer;
    transition: 0.3s ease;
}

#mc_embed_signup:hover {
	  	border-bottom: 1px solid #F4D1A8;

    
}

.clear {
	width:20px;
    font-family: Basel;

}

#mc_embed_shell {
position: absolute;
bottom: 1vh;
right: 5%;
}

div.mc-field-group input {
    display: inline-block;
    font-size: 18px;
	background: none;
    outline: none;
	 border: none;
}
      
#mc-embedded-subscribe {	
display: inline;   
background: none;
border: none;
color: #f4d1a8;
font-family: Basel;

}

#site-nav {
    transition-timing-function: ease-in-out;
}


#site-nav a{
	cursor: pointer;
}

.activelink {
    border-bottom: 1px solid #F4D1A8;
}


#site-nav a:hover {
  transition: opacity 0.3s !important;
}


#site-nav a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #F4D1A8;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

#site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}


@media only screen and (max-width: 600px) {
  .footer {
    text-align: center !important;
  }
        
    .landing-text {
	margin-left: .8rem !important;
    bottom: 3vh !important;

}
    
}

.landing-container {
    height:  100%;
    overflow: hidden;
}

.landing-text {
    margin-left: 1rem;
  	width: 100%;
    position: fixed;
    bottom: 3vh;

    
}

#landing-video {
    height: 90vh;
    width: auto;
    position: relative;
    top: 0;
 	margin-left: 50vw !important;
  	transform: translate(-50%);
}
.footer-icon {
	position: absolute;
    bottom: 1vh;
}

.insta-icon {
	right: 2%;
    bottom: 1.5vh;
    
}

#toolset {
	display: none;
}

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

a:hover {
	opacity: 0.7;
}

a:active {
    opacity: .7;
}

.page a.active {
}

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 2.5em;
}

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

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

.content img {
	float: none;
	margin-bottom: 0;
    outline-offset: -1px;
    vertical-align: bottom;
}

[image-gallery="slideshow"] {
    margin-bottom: 2rem;
}

.gallery_image_caption {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.85);
	font-family: Diatype, Icons;
	font-style: normal;
	line-height: 1.2;
    text-align: left;
}

/**
 * Loading Animation
 */

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

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-moz-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-o-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/**
 * Editor styles
 */

[data-predefined-style="true"] bodycopy {
	font-size: 1.5rem;
	color: #f4d1a8;
	font-family: "Basel", Icons;
	font-style: normal;
	line-height: 1.2;
    letter-spacing: 0.05rem;
	font-variation-settings: 'slnt' 0, 'MONO' 0;
}

[data-predefined-style="true"] bodycopy a {
	color: rgba(244, 209, 168, 1);
	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: "Basel", Icons;
	font-style: normal;
	padding: 0;
	margin: 0;
	font-size: 2rem;
	line-height: 1.5;
	color: #f4d1a8;
    font-weight: 500;
    letter-spacing: 1.5em;
	font-variation-settings: 'slnt' 0, 'MONO' 0;
}

[data-predefined-style="true"] h1 a:hover {
	color: #f4d1a8;

}
[data-predefined-style="true"] h2 {
	font-family: "Basel", Icons;
	font-style: normal;
	font-weight: 400;
	padding: 0;
	margin: 0;
	color: #f4d1a8;
	font-size: 2rem;
	line-height: 1.1;
	font-variation-settings: 'slnt' 0, 'MONO' 0;
	}

[data-predefined-style="true"] h2 a:hover {
	color: #f4d1a8;
}

[data-predefined-style="true"] small {
	display: inline-block;
	font-size: 1.2rem;
	line-height: 1.2;
	font-family: "Basel", Icons;
	font-style: normal;
	font-weight: 400;
	color: #f4d1a8;
    letter-spacing: 0;
	font-variation-settings: 'slnt' 0, 'MONO' 1;
}

[data-predefined-style="true"] small a {
	color: #f4d1a8;
	border-bottom-width: 0em;
}

/**
 * Breakpoints
 */


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

.mobile .page,
[data-css-preset].mobile .page {
	position: relative;
	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: rgba(0, 0, 0, 1) /*!body_bgcolor*/;
}

[data-css-preset] .container_width {
	width: 100%/*!content_center*/;
}
[data-css-preset] .content_padding {
	padding-top: 4rem /*!main_margin*/;
	padding-bottom: 4rem /*!main_margin*/;
	padding-left: 4rem /*!main_margin*/;
	padding-right: 4rem /*!main_margin*/;
}

/**
 * Thumbnails
 */

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

[data-css-preset] .thumbnails {
   	background-color: transparent/*!thumbnails_bgcolor*/;   
}

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

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

[data-css-preset] [thumbnails-gutter] {
    margin: -1.5rem/*!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.0rem;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.85);
	font-family: Diatype, Icons;
	font-style: normal;
	line-height: 1.3;
}

.thumbnails .tags {
    margin-top: .8rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.6);
	font-family: "Basel", Icons;
	font-style: normal;
	line-height: 1.2;
}

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

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

/**
 * Site Menu Button
 */

[data-css-preset] #site_menu_button {
    color: #F4D1A8;
    line-height: 1;
    font-size: 28px /*!site_menu_button*/;
    padding: 6px;
    line-height: 1;
    position: fixed;
	top: 3rem /*!site_menu_button*/;
	right: 3rem /*!site_menu_button*/;
}

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

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

#site_menu_button.active {
	display: none;
}


/**
 * Site Menu
 */

#site_menu {
	font-family: "Basel", Icons;
	background: rgba(0, 0, 0, 1);
    color: #F4D1A8;
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	max-width: 400px;
	min-width: 300px;
	text-align: CENTER;
	display: flex;
	justify-content: flex-start;
    align-items: center;
}

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

#site_menu .page-link a {
	color: #F4D1A8;
}

#site_menu .set-link > a {
    color: #F4D1A8;
    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: 50px;
	line-height: 1em;
}

#site_menu .break {
	height: 28px;
}

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

/*
 * 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: 1rem /*!shop_button*/;
	left: 1.5rem /*!shop_button*/;
}

#shop_button.text {
    font-size: 1.6rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.75);
	font-family: Diatype, Icons;
    padding: 0;
    line-height: 1.3;
	font-style: normal;
}

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

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

/*
 * Shop Product Widget
 */

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

.shop_product .price {
	font-family: Diatype, Icons;
	font-size: 1.6rem;
	line-height: 1;
	color: rgba(0, 0, 0, 0.75);
    display: block;
    margin-bottom: 1rem;
	font-style: normal;
	font-weight: 400;
}

.shop_product .dropdown {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif", Icons;
    font-size: 1.2rem;
    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.2;
    padding: .7rem 2.5rem .7rem 1rem;
	font-style: normal;
	font-weight: 400;
    color: rgba(0, 0, 0, 0.75);
}

.shop_product .button {
	font-family: Diatype, Icons;
	font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.75);
    color: rgba(255,255,255,1);
    flex: 0 0 50%;
    text-align: left;
    display: inline-block;
	line-height: 1;
    padding: .8rem 1rem .9rem;
	font-style: normal;
	font-weight: 700;
}

/*
 * Image Zoom
 */

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

/**
 * Quick View
 */

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

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

.quick-view-caption span {
    padding: 0.5rem 1rem;
    display: inline-block;
    background: rgba(0,0,0,0.4);
    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;
}

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

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

.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: #fff;
    stroke-width: 0px;
}

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

/** 
 * 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(0,0,0,0.15);
    color: rgba(0, 0, 0, 0.6);
    background: #fff;
    font-size: 1.4rem;
    line-height: 1.3;
	font-family: Diatype, Icons;
    font-style: normal;
    font-weight: 500;
    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.6);
}

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

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