html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.text-overlay {
    color: white;
    font-weight: bold;
    font-size: 1rem;
    text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;
}

.cusBG {
    background-color: rgb(220, 242, 250);
    border-radius: 20px;
}

.bgBar {
    background-color: rgb(220, 242, 250);
}

@font-face {
    font-family: "LemonMilkB";
    src: url("../fonts/LEMONMILK-Bold.otf") format("truetype");
}

@font-face {
    font-family: "Coolvetica";
    src: url("'../fonts/Coolvetica Rg.otf'") format("truetype");
}

body {
    font-family: Coolvetica, sans-serif; /* First font */
}

h1, h2, h3 {
    font-family: "LemonMilkB", serif; /* Second font */
}

bg-img-none {
    background-image: none !important;
}

.bg-none {
    background: none !important;
}

.full-width-element {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%; /* Spans the width of its positioned ancestor */
    /* If positioning relative to the body, ensure the body has no padding/margin */
}

.btn-sm {
    padding: 2px 8px;
    font-size: 0.875rem;
}

.badge {
    font-size: 0.85rem;
    padding: 6px 10px;
}

@keyframes cart-shake {
    0%, 100% {
        transform: rotate(0);
    }

    20% {
        transform: rotate(-10deg);
    }

    40% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(-8deg);
    }

    80% {
        transform: rotate(8deg);
    }
}

.cart-shake {
    animation: cart-shake 0.6s ease;
}

.card {
    border-radius: 0.75rem;
}
