// VARIABLES
$smooth_font: false;
$base_font_size: 16px;

:root {
	--plyr-color-main: var(--vlt-accent-1);

	// Others
	--vlt-transition-duration: 250ms;
	--vlt-transition-easing: ease;
	--vlt-linear-gradient: linear-gradient(64deg, var(--vlt-color-yellow) 0%, var(--vlt-color-yellow-light) 100%);

	--vlt-topbar-min-height: #{px2rem(46px)};
	--vlt-navbar-min-height: #{px2rem(80px)};
	--vlt-aside-navbar-width: #{px2rem(320px)};
	--vlt-hover-opacity: .5;

	--vlt-border-radius: #{px2rem(14px)};
	--vlt-border-radius-xxs: #{px2rem(3px)};
	--vlt-border-radius-xs: #{px2rem(6px)};
	--vlt-border-radius-sm: #{px2rem(10px)};
	--vlt-border-radius-lg: #{px2rem(20px)};

	--vlt-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
	--vlt-box-shadow-lg: 0px 0px 60px rgba(0, 0, 0, 0.1);

	// Accent colors
	@include defineColorHSL("--vlt-accent-1", var(--vlt-accent-1-h), var(--vlt-accent-1-s), var(--vlt-accent-1-l));
	@include defineColorHSL("--vlt-accent-1-hover", var(--vlt-accent-1-h), var(--vlt-accent-1-s), calc(var(--vlt-accent-1-l) - 5%));
	@include defineColorHSL("--vlt-accent-2", var(--vlt-accent-2-h), var(--vlt-accent-2-s), var(--vlt-accent-2-l));
	@include defineColorHSL("--vlt-accent-2-hover", var(--vlt-accent-2-h), var(--vlt-accent-2-s), calc(var(--vlt-accent-2-l) - 5%));
	@include defineColorHSL("--vlt-accent-3", var(--vlt-accent-3-h), var(--vlt-accent-3-s), var(--vlt-accent-3-l));
	@include defineColorHSL("--vlt-accent-3-hover", var(--vlt-accent-3-h), var(--vlt-accent-3-s), calc(var(--vlt-accent-3-l) - 5%));

	// Global colors
	@include defineColorHSL("--vlt-color-dark", 255, 8%, 9%); // #17161A
	@include defineColorHSL("--vlt-color-dark-light", 260, 4%, 15%); // #262528
	@include defineColorHSL("--vlt-color-gray-darker", 240, 2%, 53%); // #858589
	@include defineColorHSL("--vlt-color-gray-dark", 260, 2%, 30%); // #4b4a4d
	@include defineColorHSL("--vlt-color-gray", 240, 2%, 70%); // #b1b1b4
	@include defineColorHSL("--vlt-color-gray-middle", 240, 11%, 93%); // #EAEAEE
	@include defineColorHSL("--vlt-color-gray-light", 240, 11%, 96%); // #F5F5F7
	@include defineColorHSL("--vlt-color-white", 0, 0%, 100%);
	@include defineColorHSL("--vlt-color-yellow", 30, 100%, 96%);
	@include defineColorHSL("--vlt-color-yellow-light", 257, 37%, 96%);

	@include defineColorHSLA("--vlt-color-dark-0p2", 255, 8%, 9%, .2);
	@include defineColorHSLA("--vlt-color-dark-0p8", 255, 8%, 9%, .8);

	@include defineColorHSLA("--vlt-color-gray-0p2", 240, 2%, 70%, .2);
	@include defineColorHSLA("--vlt-color-gray-0p3", 240, 2%, 70%, .3);
	@include defineColorHSLA("--vlt-color-gray-0p17", 240, 2%, 70%, .17);
	@include defineColorHSLA("--vlt-color-gray-0p20", 240, 2%, 70%, .20);
	@include defineColorHSLA("--vlt-color-gray-0p25", 240, 2%, 70%, .25);
	@include defineColorHSLA("--vlt-color-gray-0p7", 240, 2%, 70%, .7);
	@include defineColorHSLA("--vlt-color-white-0p2", 0, 0%, 100%, .2);
	@include defineColorHSLA("--vlt-color-white-0p6", 0, 0%, 100%, .6);

	@include defineColorHSLA("--vlt-color-gray-darker-0p6", 240, 2%, 53%, .6); // #858589
	@include defineColorHSLA("--vlt-color-gray-darker-0p4", 240, 2%, 53%, .4); // #858589
	@include defineColorHSLA("--vlt-color-gray-darker-0p25", 240, 2%, 53%, .25); // #858589
	@include defineColorHSLA("--vlt-color-gray-darker-0p3", 240, 2%, 53%, .3); // #858589

}

// ICONS
$icons: (
	"socicons": "Socicon"
);

// Z-INDEXES
$z-indexes: (
	"default": 1,
	"header": 10,
	"navbar": 20,
	"site-overlay": 30,
	"topbar": 40,
	"slide-menu": 50,
	"aside-menu": 60,
	"post-navigation": 70,
	"back-to-top": 80,
	"fullscreen-menu": 90,
	"fancybox": 100,
	"site-protection": 110,
	"site-preloader": 120
);

// SOCIAL COLORS
$social-colors: (
	"internet" : #1a55f8,
	"moddb" : #CC0300,
	"indiedb" : #77C628,
	"traxsource" : #40A0FF,
	"gamefor" : #506F82,
	"pixiv" : #049CFF,
	"myanimelist" : #2E51A2,
	"blackberry" : #000000,
	"wickr" : #F29100,
	"spip" : #E00D6F,
	"napster" : #000000,
	"beatport" : #94d500,
	"hackerone" : #ec1075,
	"hackernews" : #FF6601,
	"smashwords" : #4181C3,
	"kobo" : #BF0000,
	"bookbub" : #E70005,
	"mailru" : #FDA840,
	"gitlab" : #E65228,
	"instructables" : #f8b514,
	"portfolio" : #54AFFF,
	"codered" : #FF033B,
	"origin" : #F56C2E,
	"nextdoor" : #01B247,
	"udemy" : #17aa1c,
	"livemaster" : #e76d00,
	"crunchbase" : #0288d1,
	"homefy" : #7DCDA3,
	"calendly" : #00a3fa,
	"realtor" : #D52228,
	"tidal" : #01FFFF,
	"qobuz" : #298FBF,
	"natgeo" : #222222,
	"mastodon" : #2986D6,
	"unsplash" : #000000,
	"homeadvisor" : #EF8B1D,
	"angieslist" : #299F37,
	"codepen" : #000000,
	"slack" : #4B6BC6,
	"openaigym" : #29A8B3,
	"logmein" : #45B6F3,
	"fiverr" : #0DB62A,
	"gotomeeting" : #FD7A2B,
	"aliexpress" : #E92C00,
	"guru" : #4C81C0,
	"appstore" : #007AFF,
	"homes" : #F7841B,
	"zoom" : #2D8CFF,
	"alibaba" : #FF6A00,
	"craigslist" : #561A8B,
	"wix" : #0096FF,
	"redfin" : #C82022,
	"googlecalendar" : #3D81F6,
	"shopify" : #5C6AC4,
	"freelancer" : #0088CA,
	"seedrs" : #7FBB31,
	"bing" : #008485,
	"doodle" : #0064DC,
	"bonanza" : #FF4950,
	"squarespace" : #121212,
	"toptal" : #4C73AA,
	"gust" : #1E2E3E,
	"ask" : #CF0000,
	"trulia" : #20BF63,
	"loomly" : #00425f,
	"ghost" : #33393C,
	"upwork" : #5BBC2F,
	"fundable" : #1d181f,
	"booking" : #003580,
	"googlemaps" : #4285F4,
	"zillow" : #0074e4,
	"niconico" : #000000,
	"toneden" : #777BF9,
	"augment" : #E71204,
	"bitbucket" : #243759,
	"fyuse" : #FF3143,
	"yt-gaming" : #E91D00,
	"sketchfab" : #00A5D6,
	"mobcrush" : #FFEE00,
	"microsoft" : #666666,
	"pandora" : #224099,
	"messenger" : #0084ff,
	"gamewisp" : #F8A853,
	"bloglovin" : #000000,
	"tunein" : #36b4a7,
	"gamejolt" : #191919,
	"trello" : #0079bf,
	"spreadshirt" : #00b2a6,
	"airbnb" : #ff5a5f,
	"alliance" : #144587,
	"amazon" : #ff9900,
	"amplement" : #0996c3,
	"android" : #8ec047,
	"angellist" : #000000,
	"apple" : #B9BFC1,
	"appnet" : #494949,
	"baidu" : #2629d9,
	"bandcamp" : #619aa9,
	"battlenet" : #0096CD,
	"mixer" : #1FBAED,
	"bebee" : #f28f16,
	"bebo" : #EF1011,
	"behance" : #000000,
	"blizzard" : #01B2F1,
	"blogger" : #ec661c,
	"buffer" : #000000,
	"chrome" : #757575,
	"coderwall" : #3E8DCC,
	"curse" : #f26522,
	"dailymotion" : #004e72,
	"deezer" : #32323d,
	"delicious" : #020202,
	"deviantart" : #c5d200,
	"diablo" : #8B1209,
	"digg" : #1d1d1b,
	"discord" : #7289da,
	"disqus" : #2e9fff,
	"douban" : #3ca353,
	"draugiem" : #ffa32b,
	"dribbble" : #e84d88,
	"drupal" : #00598e,
	"ebay" : #333333,
	"ello" : #000000,
	"endomodo" : #86ad00,
	"envato" : #597c3a,
	"etsy" : #F56400,
	"facebook" : #3e5b98,
	"feedburner" : #ffcc00,
	"filmweb" : #ffc404,
	"firefox" : #484848,
	"flattr" : #F67C1A,
	"flickr" : #1e1e1b,
	"formulr" : #ff5a60,
	"forrst" : #5B9A68,
	"foursquare" : #f94877,
	"friendfeed" : #2F72C4,
	"github" : #221e1b,
	"goodreads" : #463020,
	"google" : #4285f4,
	"googlescholar" : #4285f4,
	"googlegroups" : #4F8EF5,
	"googlephotos" : #212121,
	"googleplus" : #dd4b39,
	"grooveshark" : #000000,
	"hackerrank" : #2ec866,
	"hacker-news" : #ff6600,
	"hearthstone" : #EC9313,
	"hellocoton" : #d30d66,
	"heroes" : #2397F7,
	"smashcast" : #3498db,
	"horde" : #84121C,
	"houzz" : #7CC04B,
	"icq" : #7EBD00,
	"identica" : #000000,
	"imdb" : #E8BA00,
	"instagram" : #c83b8b,
	"issuu" : #F26F61,
	"istock" : #000000,
	"itunes" : #ff5e51,
	"keybase" : #FF7100,
	"lanyrd" : #3c80c9,
	"lastfm" : #d41316,
	"line" : #00B901,
	"linkedin" : #3371b7,
	"livejournal" : #0099CC,
	"lyft" : #FF00BF,
	"macos" : #000000,
	"mail" : #f3894d,
	"medium" : #000000,
	"meetup" : #e2373c,
	"mixcloud" : #000000,
	"modelmayhem" : #000000,
	"mumble" : #5AB5D1,
	"myspace" : #323232,
	"newsvine" : #075B2F,
	"nintendo" : #F58A33,
	"npm" : #C12127,
	"odnoklassniki" : #f48420,
	"openid" : #f78c40,
	"opera" : #FF1B2D,
	"outlook" : #0072C6,
	"overwatch" : #9E9E9E,
	"patreon" : #F96854,
	"paypal" : #009cde,
	"periscope" : #3AA4C6,
	"persona" : #e6753d,
	"pinterest" : #c92619,
	"play" : #000000,
	"player" : #6E41BD,
	"playstation" : #000000,
	"pocket" : #ED4055,
	"qq" : #4297d3,
	"quora" : #cb202d,
	"raidcall" : #073558,
	"ravelry" : #B6014C,
	"reddit" : #e74a1e,
	"renren" : #2266b0,
	"researchgate" : #00CCBB,
	"residentadvisor" : #B3BE1B,
	"reverbnation" : #000000,
	"rss" : #f26109,
	"sharethis" : #01bf01,
	"skype" : #28abe3,
	"slideshare" : #4ba3a6,
	"smugmug" : #ACFD32,
	"snapchat" : #fffa37,
	"songkick" : #F80046,
	"soundcloud" : #fe3801,
	"spotify" : #7bb342,
	"stackexchange" : #2f2f2f,
	"stackoverflow" : #FD9827,
	"starcraft" : #002250,
	"stayfriends" : #F08A1C,
	"steam" : #171a21,
	"storehouse" : #25B0E6,
	"strava" : #FC4C02,
	"streamjar" : #503a60,
	"stumbleupon" : #e64011,
	"swarm" : #FC9D3C,
	"teamspeak" : #465674,
	"teamviewer" : #168EF4,
	"technorati" : #5cb030,
	"telegram" : #0088cc,
	"tripadvisor" : #4B7E37,
	"tripit" : #1982C3,
	"triplej" : #E53531,
	"tumblr" : #45556c,
	"twitch" : #6441a5,
	"twitter" : #4da7de,
	"uber" : #000000,
	"ventrilo" : #77808A,
	"viadeo" : #e4a000,
	"viber" : #7b519d,
	"viewbug" : #2B9FCF,
	"vimeo" : #51b5e7,
	"vine" : #00b389,
	"vkontakte" : #5a7fa6,
	"warcraft" : #1EB10A,
	"wechat" : #09b507,
	"weibo" : #e31c34,
	"whatsapp" : #20B038,
	"wikipedia" : #000000,
	"windows" : #00BDF6,
	"wordpress" : #464646,
	"wykop" : #328efe,
	"xbox" : #92C83E,
	"xing" : #005a60,
	"yahoo" : #6e2a85,
	"yammer" : #1175C4,
	"yandex" : #FF0000,
	"yelp" : #c83218,
	"younow" : #61C03E,
	"youtube" : #e02a20,
	"zapier" : #FF4A00,
	"zerply" : #9DBC7A,
	"zomato" : #cb202d,
	"zynga" : #DC0606
);