/*
* LittleLink Button Styles
* https://littlelink.io
* Free to use under the MIT license
* http://www.opensource.org/licenses/mit-license.php
*/

/* Brand Button Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Only include brand-specific button styling here */
.button,button {
  color:var(--button-text,#000000);
  background-color:var(--button-background,transparent);
	border:var(--button-border,none);
	transition:filter 0.2s ease,transform 0.2s ease;
}

/* Global Button Hover Effect
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button:hover,button:hover {
	filter:brightness(90%);
	transform:translateY(-1px);
}

/* Button Icons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.icon {
	filter:var(--icon-filter,none);
}

/* Brand-Specific Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Default */
.button.button-default {
    --button-text: #ffffff;
    /* --button-background: #222; */
    border-radius: 30px;
    border: 2px solid;
    width: 100%;
	background-color:rgba(0,0,0,0.05);
}

/* Bandcamp */
.button-bandcamp {
	--button-text:#ffffff;
	--button-background:#1d9fc3;
}

/* Bluesky */
.button-bluesky {
	--button-text:#FFFFFF;
	--button-background:#1185FE;
}

/* Facebook */
.button-faceb {
	--button-text:#ffffff;
	--button-background:#0866FF;
}

/* Facebook Messenger */
.button-messenger {
	--button-text:#ffffff;
	--button-background:#0866FF;
}

/* Instagram */
.button-instagram {
	
}

/* MixCloud */
.button-mixcloud {
}

/* ResidentAdvisor */
.button-ra {
	--button-text:#eee;
	--button-background:#111;
}

/* SoundCloud */
.button-soundcloud {
	--button-text:#ffffff;
	--button-background:#ff5500;
}

/* Spotify */
.button-spotify {
	--button-text:#191414;
	--button-background:#1db954;
}

/* Spotify Alt */
.button-spotify-alt {
	--button-text:#FFFFFF;
	--button-background:#191414;
	--button-border:1px solid #FFFFFF;
}

/* TikTok */
.button-tiktok {
	--button-text:#ffffff;
	--button-background:#000000;
	--button-border:1px solid #FFFFFF;
}

/* Twitch */
.button-twitch {
	--button-text:#ffffff;
	--button-background:#9146ff;
}

/* Vimeo */
.button-vimeo {
	--button-text:#ffffff;
	--button-background:#1ab7ea;
}

/* WhatsApp */
.button-whatsapp {
	--button-text:#ffffff;
	--button-background:#455a64;
}

/* YouTube */
.button-yt {
	--button-text:#ffffff;
	--button-background:#282828;
}

