/* utility class */
html {
    font-size: 1rem;
}

body {
    font-family: 'Jost', sans-serif;
    background-color: #ffffff;
}

a,
a:hover {
    text-decoration: none;
}

.theme-bg-primary {
    background-color: #0393D2;
}

.theme-bg-secondary {
    background-color: #000000;
}

.theme-bg-accent-one {
    background-color: #5D5D5D;
}

.theme-bg-accent-two {
    background-color: #9F9F9F;
}

.theme-bg-white {
    background-color: #ffffff;
}

.theme-text-white {
    color: #ffffff;
}

.theme-text-primary {
    color: #0393D2;
}

.theme-text-secondary {
    color: #000000;
}

.theme-text-accent-one {
    color: #5D5D5D;
}

.theme-text-accent-two {
    color: #9F9F9F;
}

.theme-text-accent-three {
    color: #DDDDDD;
}

.theme-text-accent-four {
    color: #EFFAFF;
}

.text-green {
    color: #00A45D;
}

.theme-box-shadow {
    box-shadow: 0 3px 20px rgba(#000000, .1);
}

.theme-text-shadow {
    text-shadow: 0 3px 20px rgba(#000000, .1);
}

.theme-border-radius {
    border-radius: 15px;
}

.min-w-150 {
    min-width: 150px;
}

.btn-shop {
    background-color: #ffffff;
    color: #0393D2;
    border-radius: 50px;
    min-width: 150px;

    &:hover {
        background-color: #0393D2;
        color: #ffffff;
    }
}

.link-btn {
    background-color: #EFFAFF;
    color: #0393D2;
    border-radius: 50px;
    min-width: 60px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;

    &:hover {
        background-color: #0393D2;
        color: #ffffff;
    }
}

/* pulseBig */
@keyframes pulseBig {
    0% {
        box-shadow: 0 0 0 0 #ffffff;
    }

    50% {
        box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
    }
}

<!-- button secondary -->
.recomended-btn {
    background-color: #EFFAFF;
    color: #5D5D5D;
    border-radius: 50px;
    border: none;

    &:hover {
        background-color: #0393D2;
    }
}

<!-- button outline -->
.theme-btn-outline {
    background-color: #ffffff;
    color: #0393D2;
    border-radius: 50px;
    border: 1px solid #0393D2;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 150px;
    font-size: 0.8rem;

    &:hover {
        background-color: #0393D2;
        color: #ffffff;
    }
}

<!-- back to top -->
.scrollToTop {
    position: fixed;
    bottom: 0;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #000000;
    border-radius: 5px;
    color: #ffffff;
    line-height: 45px;
    font-size: 20px;
    text-align: center;
    z-index: 9;
    cursor: pointer;
    transition: all 1s;
    transform: translateY(100%);

    &.active {
        bottom: 30px;
        transform: translateY(0%);
    }
}