/**
* Theme Name: Organic Goodness Child
* Author: <a href="https://www.thunder-stores.com/">Thunderstores</a>
* Description: A block theme for Health &amp; Beauty online stores.
* Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks
* Template: organic-goodness
* Version: 1.0.18
* License: GNU General Public License v2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: organic-goodness
*/

.back-to-top svg {
    transform: scale(1);
}

.back-to-top {
	color: #32373c;
    width: 50px;
    position: fixed;
    bottom: 0px;
    right: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s;
    z-index: 20;
}

.back-to-top.active {
    bottom: 16px;
    pointer-events: auto;
    opacity: 1;
}

html {
    scroll-behavior: smooth;
}

.back-to-top:hover {
    animation: btt 1s linear infinite alternate;
}

@keyframes btt {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}