#banner {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffc107;
    transition:
        opacity 0.3s ease-in-out,
        visibility 0.3s ease-in-out;
    opacity: 1;
    visibility: visible;
}

.hidden-banner {
    opacity: 0;
    visibility: hidden;
}

.decrease-btn {
    background-color: #f5f5f5;
    border-radius: 10px 0px 0px 10px;
    border-color: #c0c0c0;
}

.increase-btn {
    background-color: #f5f5f5;
    border-radius: 0px 10px 10px 0px;
    border-color: #c0c0c0;
}

body,
span,
button {
    font-family: "SpeedeeRG", arial, helvetica, sans-serif;
    --bs-border-radius: 0;
}

h1,
h2,
h3,
h4,
.h4 {
    font-family: "SpeedeeBD", arial, helvetica, sans-serif;
}

.mcd-store-radio__image {
    max-width: 45%;
}

.mcd-store-ingredient__product-name {
    font-weight: bold;
}

@media (max-width: 575px) {
    .modal-dialog {
        margin: 0;
    }

    .modal-full-mobile {
        width: 100vw;
        height: 100vh;
    }
}

.marginA {
    margin-bottom: 3vh;
}

.btn-danger {
    --bs-btn-bg: #e81200;
    --bs-btn-border-color: #ff0000;
    --bs-btn-hover-bg: #a71e13;
    --bs-btn-hover-border-color: #ba0e00;
    --bs-btn-active-bg: #a71e13;
    --bs-btn-active-border-color: #ba0e00;
}

input[type="radio"] {
    appearance: none;
    display: none;
    content: none;
    outline: none;
    margin: 0;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

input[type="radio"]:checked {
    appearance: none;
    outline: none;
    padding: 0;
    content: none;
    border: none;
}

input[type="radio"]:checked::before {
    position: absolute;
    font-weight: bolder;
    font-size: 21px;
}

li::marker {
    content: "";
}

.ic-btn-utm {
    border-radius: 1rem;
}

.cancel-btn {
    background-color: transparent;
    border: none;
    outline: none;
    color: red;
    font-weight: bolder;
}

.modal-footer {
    padding: 0.25rem 0 !important;
    border: none !important;

}

.modal-header{
    border: none !important;
}

.form-control:disabled {
    background-color: #f5f5f5 !important;
    border-top: 1px solid #c0c0c0;
    border-bottom: 1px solid #c0c0c0;
}

.cart-box {
    box-shadow: 0px 1px 9px rgba(0, 0, 0, 0.5);
    z-index: 99999999;
    border-radius: 1rem 1rem 0 0;
}

.bg-body-tertiary{
    background-color: #ffc700 !important;
}

.product-image img{
    width: 80vw;
    height: auto;
    max-height: 250px;
    max-width: 275px;   
}