:root {
    --ll-light: whitesmoke;
    --ll-yellow: #FDF6E4;
    --ll-lightbrown: #776054;
    --ll-bg: #d4a573;
    --ll-bg-dark: #8a6b4b;
}

@font-face {
    font-family: 'Quando';
    src: url('/fonts/quando-regular-webfont.woff2') format('woff2'), url('/fonts/quando-regular-webfont.woff') format('woff'),url('/fonts/Quando-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'WorkSans';
    font-style: normal;
    src: url('/fonts/WorkSans-VariableFont_wght.ttf') format('truetype')
}


@font-face {
    font-family: 'WorkSans';
    font-style: italic;
    src: url('/fonts/WorkSans-Italic-VariableFont_wght.ttf') format('truetype')
}

.quando {
    font-family: "Quando", serif;
    font-weight: 400;
    font-style: normal;
}

html {
    position: relative;
    min-height: 100%;
}

body {
  font-size: 16px;
  font-family: WorkSans, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

@media (min-width: 768px) {

    body {
        font-size: 18px;
    }

}

/*.navbar-toggler {
    color: whitesmoke;
}

    .navbar .navbar-brand, .navbar .navbar-brand:hover, .navbar .navbar-brand:visited {
        color: whitesmoke;
    }

    .navbar .nav-link, .navbar .nav-link:hover, .navbar .nav-link:visited {
        color: whitesmoke;
    }*/

header {
    height: 40px;
    font-size: 0.8em;
    color: var(--ll-light);
    border-bottom: 1px solid whitesmoke;
}

    header a, header a:hover, header a:visited, header a:active {
        color: var(--ll-light) !important;
        text-decoration: none;
    }

main {
}

.text-ll-light {
    color: var(--ll-light) !important;
}

footer {
    width: 100%;
    color: var(--ll-light);
    background: black;
    font-size: 0.8em;
}

    footer a, footer a:hover, footer a:visited, footer a:active {
        color: var(--ll-light) !important;
        text-decoration: none;
    }

.card-ll, .card-ll .card-img-top, .card-ll .card-body, .card-ll .card-footer {
    border-color: var(--ll-lightbrown) !important;
}

.btn-ll {
    color: var(--ll-light);
    background: var(--ll-lightbrown);
    line-height: var(--bs-btn-line-height);
    display: inline-block;
    padding: 3px 6px;
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

p.fade-truncate {
    --base-line-height: 1.2;
    position: relative;
    line-height: var(--base-line-height);
    margin: 0;
    max-height: calc(3em * var(--base-line-height));
    min-height: calc(3em * var(--base-line-height));
    overflow: hidden;
}

    p.fade-truncate::after {
        background: var(--bs-card-bg);
        content: "";
        display: block;
        height: calc(1em * var(--base-line-height));
        -webkit-mask-image: linear-gradient(90deg, #0000, #000 75%);
        mask-image: linear-gradient(90deg, #0000, #000 75%);
        pointer-events: none;
        position: absolute;
        right: 0;
        top: calc(2em * var(--base-line-height));
        width: 20ch;
    }

.carousel-item > .pimg {
    background-color: rgba(0,0,0,.2);
    height: 350px;
    background-size: contain;
    background-position-x: center;
    background-position-y: top;
    background-repeat: no-repeat;
    cursor: pointer;
}

.carousel-item .carousel-caption {
    background-color: rgba(0,0,0,.2);
}

.bg-ll {
    background: var(--ll-bg);
}

.form-group {
    color: var(--ll-bg);
}

    .form-group .form-control {
        color: var(--ll-bg-dark);
    }

    .form-group input[type='text'], input[type='search'] {
        border-top: 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid var(--ll-bg);
        border-radius: 0;
    }

    .form-group select > option {
        color: var(--ll-bg-dark);
    }

.product-title {
    color: var(--ll-bg);
}