/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 22 2026 | 12:36:07 */
/*
===== Самодельный виджет кнопки "Наверх" =====
## SVG-Иконки:
- https://www.svgrepo.com/
*/
.tk-btn-go-up {
/* 	border: none; */
/* 	border: 1px dashed red; */
	display: flex;
/*     gap: 16px; */
/*     align-items: center; */
/*     justify-content: center; */
/*     flex-wrap: wrap; */
	
	width: 84px;
/* 	!important; */
	position: fixed;
	z-index: 999;
/* 	margin-left: 100%; */
	right: 3vw;
	bottom: 4vh;
/* 	margin: 0; */
/* 	padding: 0; */
/* 	text-decoration: none; */
    transition: all 0.3s ease;
	
	/* opacity меняется в JS-скрипте */
	opacity: 0;
}
.tk-btn-go-up:hover {
    transform: scale(1.08);
}
.tk-btn-go-up:active {
    transform: scale(0.92);
}

.tk-btn-go-up a {
/* 	border: none; */
/* 	border: 1px dashed green; */
/* 	margin: 0; */
/* 	padding: 0; */
    display: inline-block;
	/* Убираем лишние отступы */
    line-height: 0;

	/* фон по умолчанию */
/*     background: #f0f0f0; */
/* 	background: var(--wp--preset--color--accent-1); */
/*     transition: all 0.3s ease; */
    text-decoration: none;
}
.tk-btn-go-up svg {
/* 	border: 1px dashed blue; */
/* 	margin: 0; */
/* 	padding: 0; */
/*     display: block; */
    width: 100%;
/*     height: 100%; */
	/* Цвет иконки */
/*     fill: #333; */
/*     fill: var(--wp--preset--color--base); */
/*     fill: var(--wp--preset--color--accent-2); */
	fill: transparent;
	stroke: var(--wp--preset--color--accent-2);
/*     transition: all 0.3s ease; */
}

/* Размер для мобильных устройств (ширина ≤ 768px) */
@media (max-width: 768px) {
    .tk-btn-go-up {
        width: 56px;
/* 		!important; */
/*         height: 48px !important; */
/*         font-size: 20px; */
/*         bottom: 20px; */
/*         right: 20px; */
    }
}
/*  */