html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: "Times New Roman", serif;
    font-size: medium;
    height: 100%;
    min-height: 100%;
}

img {
    opacity: 1.0;
    filter: opacity(100%);
}

    img:hover {
        opacity: 0.9;
        filter: opacity(90%);
    }

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }

    .price-part2, .qty-part2, .total-part2, .line-part2 {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    #CartHeader {
        display:none;
    }
    .description-part
    {
        text-align:center;
    }

    .price-part1, .qty-part1, .total-part1 {
        display: none;
    }
}

/*.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;
}*/


.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: medium;
    z-index: 10;
}

.menulist {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .menulist li {
        padding-top: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #ddd;
    }

        .menulist li a {
            text-decoration: none;
        }

.dropdown-menu {
    max-height: 400px;
    overflow-y: scroll;
}

.carousel-item:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.1);
}

.my-dark-background {
    filter: brightness(90%);
}