body:not(.wp-editor){
    min-height: 100vh;
}

/* Контентное */
ul > li{
	list-style: none;
	padding-left: 27px;
	position: relative;
}
ul > li::before{
	content: '';
	display: block;
	width: 4px;
	height: 4px;
	position: absolute;
	background: var(--base-color);
	border-radius: 50%;
	left: 11px;
	top: 8px;
}

/* wp admin bar */
.admin-bar header{
    top: 32px;
}
.admin-bar{
    padding-top: 32px;
}

/* transition */
*, *::before, *::after {
    transition: color 0.28s linear,
    width 0.28s ease-out,
    opacity 0.28s linear,
    background-color 0.28s linear,
    border-color 0.28s linear,
    box-shadow 0.28s ease-out,
    transform 0.28s ease-out;
}
.notransition, .notransition::before, .notransition::after, .fancybox__container, .fancybox__container *{
    transition: none;
}