/**
 * global_link
 * @version	1.0
 * @release	01-04-2021
 * @author	msolowski Marcin Sołowski
 * @website	http://msolowski.pl
 */

.global_link
{
	display: inline-flex;
	font-family: var(--root_font_family);
	font-weight: 700;
	font-size: 16px;
	color: var(--root_color_black);
	align-items: center;
	position: relative;
	text-decoration: underline;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	cursor: pointer;
	font-size: var(--global_font_size_p);
}

.global_link span
{
/*	letter-spacing: 3px;
	background-image: linear-gradient(to right, var(--global_color_element_hover), var(--global_color_element_hover));
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 0 1px;
	display: inline-block;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	padding-bottom: 2px; */
}

.global_link:hover
{
	color: var(--root_color_lead);
}

.global_link:active
{
/*	transform: scale(0.95, 0.95); */
}

.global_link:hover span
{
/*	background-size: 100% 1px; */
}

/**********************************************************************************/

.global_link.is_with_arrow_right::after
{
	font-family: 'tiltup';
	content: '\e907';
	font-weight: 400;
	display: block;
	margin-left: var(--global_margin_15);
	font-size: 12px;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	pointer-event: none;
}

.global_link.is_with_arrow_right:hover::after
{
	transform: translateX(25%);
}

.global_link.is_with_arrow_right.small::after
{
	margin-left: var(--global_margin_10);
	font-size: 8px;
}

/**********************************************************************************/

@media screen and (max-width: 1680px)
{
}

@media screen and (max-width: 1600px)
{
}

@media screen and (max-width: 1440px)
{
}

@media screen and (max-width: 1366px)
{
}

@media screen and (max-width: 1300px)
{
}

@media screen and (max-width: 1200px)
{
}

@media screen and (max-width: 1024px)
{
}

@media screen and (max-width: 800px)
{
}

@media screen and (max-width: 640px)
{
}

@media screen and (max-width: 480px)
{
}

@media screen and (max-width: 360px)
{
}