html {
    scroll-behavior: smooth;
    scroll-padding-block-start: 80px;
}
/* Buttons */
.uk-button-small {
    padding-top: 9px;
    padding-bottom: 9px;
}
.uk-button {
    padding-top: 12px;
    padding-bottom: 12px;
}
.uk-button-large {
    padding-top: 19px;
    padding-bottom: 19px;
}
@media (min-width: 992px) {
    .uk-button-large {
        font-size: 1.25rem;
    }
}
.uk-icon * {
    stroke-width: 1.5px;
}
/* Fancy list */
.fancy-list ul {
    list-style-type: none;
    padding-inline-start: 0;
}
.fancy-list ul li {
    padding-inline-start: 40px;
    margin-bottom: 10px;
    background-image: url('../../../images/icons/icon-check-circle.svg');
    background-size: 18px;
    background-position: 10px 6px;
    background-repeat: no-repeat;
}
.uk-text-small.fancy-list ul li {
    padding-inline-start: 30px;
    background-size: 16px;
    background-position: 5px 5px;
    margin-bottom: 8px;
}
.fancy-list ul li:last-child,
.uk-text-small.fancy-list ul li:last-child {
    margin-bottom: 0;
}
/* Article */
article * + h3, article * + h4, article * + h5, article * + h6 {
    margin-top: 30px;
}
article * + h2 + h3,
article * + h3 + h4 {
    margin-top: 0;
}
article ul li,
article ol li {
    margin-bottom: 10px;
}
article ol>li>ol, article ol>li>ul, 
article ul>li>ol, article ul>li>ul {
    margin: 10px 0;
}
.uk-text-small li {
    margin-bottom: 8px;
}
@media (max-width: 540px) {
    .uk-text-lead {
        font-size: 1.125rem;
    }
}
/* Scroll to top custom Yootheme */
#btnBacktoTop {
    animation: scrollToTop 300ms backwards ease-in-out;
    
}
@keyframes scrollToTop {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}