body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Mukta', sans-serif;
}

#cart-button {
    user-select: none;
}

#cart-number {
    font-family: 'Mukta', sans-serif;
    font-size: small;
    text-align: center;
    line-height: 18px;

    position: absolute;
    right: 48px;
    top: 27px;
    width: 20px;
    height: 20px;
    z-index: -1;
}

.round-white-border {
    border: 1px solid white;
    border-radius: 50%;
}

#cart {
    position: fixed;
    top: 56px;
    right: 10px;

    width: 33vw;
}

#hero-image {
    height: 100%;
    width: 50vw;
    object-fit: fill;
}

#dropdown-button {
    width: 180px;
}

.social-icon {
    height: 35px;
}

.my-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

#checkout-page {
    display: none;
    position: fixed;
    top: 12.5vh;
    left: 25vw;
    overflow: scroll;

    max-height: 80vh;
    width: 50vw;
    border: 1px solid black;
    background-color: white;
}

.checkout-remove-button {
    all: unset;
    cursor: pointer;
    border: solid;
    border-color: black;
    height: 20px;
    width: 20px;
}