
body {
    font-family: 'Roboto', sans-serif;
}

.golden-button {
    touch-action: manipulation;
    display: inline-block;
    outline: none;
    font-family: inherit;
    font-size: 1em;
    box-sizing: border-box;
    border: none;
    border-radius: 0.3em;
    height: 2.65em;
    line-height: 2.5em;
    text-transform: uppercase;
    padding: 0 1em;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(110, 80, 20, 0.4),
        inset 0 -2px 5px 1px rgba(139, 66, 8, 1),
        inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
    background-image: linear-gradient(160deg,
            #a54e07,
            #b47e11,
            #fef1a2,
            #bc881b,
            #a54e07);
    border: 1px solid #a55d07;
    color: rgb(120, 50, 5);
    text-shadow: 0 2px 2px rgba(250, 227, 133, 1);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-size: 100% 100%;
    background-position: center;
}

.golden-button:focus,
.golden-button:hover {
    background-size: 150% 150%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23),
        inset 0 -2px 5px 1px #b17d10, inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
    border: 1px solid rgba(165, 93, 7, 0.6);
    color: rgba(120, 50, 5, 0.8);
}

.golden-button:active {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(110, 80, 20, 0.4),
        inset 0 -2px 5px 1px #b17d10, inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
}

/* <reset-style> ============================ */
a {
    text-decoration: none;
}

/* <main-style> ============================ */
.scroll-up {
    /* position: fixed; */
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: rgba(68, 68, 68, 0.48);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;

    @media (max-width: 768px) {
        display: none !important;
    }
}

.scroll-up:hover {
    transform: translateY(-.25rem);
}

/* Show scroll-up */
._show-scroll {
    bottom: 3rem;
}

@media (max-width: 1199.98px) {
    .scroll-up {
        right: 1rem;
    }
}

.body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin: 0;
    background-color: #f0f0f0;
}

.coin {
    position: relative;
    width: 100px;
    height: 100px;
    background-color: #d4af37;
    /* Coin color */
    border-radius: 50%;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
    /* Coin shadow */
    background-image: radial-gradient(circle at 50% 120%,
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0) 80%);
    /* Coin texture */
    animation: flip 1s infinite;
}

.engraving {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.5);
    /* Engraving color */
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
    /* Engraving shadow */
}

@keyframes flip {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 50px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    background-color: rgba(72, 67, 110, 0.84);
    position: fixed;
    left: 0;
    bottom: 0;
    transform: translate(-50%, -50%);
    padding: 0.5rem;
    margin-left: 4rem;
    margin-bottom: 1.5rem;

    @media (max-width: 768px) {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 70px;
        height: 50px;
        border-radius: 10px;
        cursor: pointer;
        border: none;
        background-color: rgba(49, 96, 110, 0.34);
        position: fixed;
        left: 0;
        bottom: 0;
        transform: translate(-50%, -50%);
        padding: 0.5rem;
        margin-left: 4rem;
        margin-bottom: 5rem;
    }
}


.btn::after {
    content: "Harga Jual Emas di EmasTokki";
    width: 110px;
    height: fit-content;
    position: absolute;
    font-size: 12px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.8);
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s linear;
    top: 115%;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.84);
}

/* .btn:not([style*='background: white'])::after {
    color: black;
} */

.icon {
    width: 30px;
    height: 30px;
    transition: 0.2s linear;
}

.icon path {
    fill: rgba(255, 255, 255, 0.5);
    transition: 0.2s linear;

    @media (max-width: 768px) {
        fill: rgba(255, 255, 255, 0.76);
        transition: 0.2s linear;
    }
}

.btn:hover>.icon {
    transform: scale(1.2);
}

.btn:hover>.icon path {
    fill: rgb(218, 197, 82);
}

.btn:hover::after {
    visibility: visible;
    opacity: 1;
    top: 105%;
}