
.fullmetal-global-checkout {
    position: fixed;
    display: block;
    width: 7em;
    height: 3.5rem;
    /* background: bisque; */
    /* border: 4pt solid #3e2023; */
    border-radius: 6px 6px;
    z-index: 35000;
    bottom: 3.5em;
    right: 2.5em;
    font-family: 'BeyondWonderland';
    font-size: 20pt;
    font-style: normal;
    text-decoration: none;
    color: bisque;
    text-align: right;

    filter: drop-shadow(0px 0px 10px bisque);
}

@media only screen and (max-width: 768px) {
    .fullmetal-global-checkout {
        bottom: 5.5em;
        font-size: 16pt;
    }
}

.fullmetal-global-checkout:hover {
    text-decoration: none;
    color: bisque;
}

.fullmetal-global-checkout-arrow {
    width: 100%;
    height: 0;
    padding-bottom: 24%;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('images/continue_checkout.webp');
    animation: 2s globalcheckouttrigger step-start infinite;
}


@keyframes globalcheckouttrigger {
    0% {
        transform: none;
    }
    44% {
        transform: none;
    }
    45% {
        transform: rotateZ(2deg);
    }
    50% {
        transform: rotateZ(-2deg);
    }
    51%{
        transform: none;
    }
    100% {
        transform: none;
    }
}
