﻿@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

.bigscreen {
    display: none;
}

.smallscreen {
    display: block;
}

@media (min-width: 600px) {
    .bigscreen {
        display: block;
    }

    .smallscreen {
        display: none;
    }
}

body {
}

.pagefooter {
    background-color: black;
    color: white;
    padding-top: 20px;
    margin-top: 2rem;
}
    .pagefooter a {
        color: white;
        text-decoration: none;
    }
    .pagefooter a:hover {
        background-color: #a71c1c;
    }
.container-full-width {
    margin-bottom: 1rem;
}
.container-full-width > div {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.mainheading {
    color: black;
    padding-top: 10px;
    padding-bottom: 10px;
}
.mainheading a {
    text-decoration: none;
    color: black;
}
    .mainheading a:hover {
        text-decoration: underline;
        color: blue;
    }

.mainnavbar {
    background-color: black;
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
}
    .mainnavbar a {
        text-decoration: none;
        color: white;
        padding: 3px 8px;
    }
        .mainnavbar a:hover {
            background-color: #a71c1c;
        }
        .mainnavbar a svg {
            fill: white;
        }
        .mainnavbar a:hover svg {
            background-color: #a71c1c;
        }
.smallheading {
    background-color: lavender;
    padding: 5px;
    text-transform: uppercase;
    font-size: x-small;
}

.altbackgrounds > div:nth-child(odd)  > div {
    background-color: #FFFFFFbf;
    color: black;
}
.altbackgrounds > div:nth-child(even) {
    background-color: #000000bf;
    color: white;
}
.altbackgrounds h1 {
    margin-top: 0;
}
.ScanDropBox {
    border: dashed 5px #333;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 15px 5px;
    margin: 5px;
}
.dragoverclass {
    background-color: #ed2908;
    color: blue;
}
.productlinksbox {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex-direction: row;
}
    .productlinksbox a {
        border: solid 1px #333;
        padding: 13px 6px;
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }
.supplierwebbuttonbox{
    display:flex;
}
    .supplierwebbuttonbox a {
        border: solid 1px #333;
        text-align: center;
        flex-grow: 1;
        padding: 6px 0;
    }

.statsline {
    display: grid;
    grid-template-columns: 1fr 8rem 5rem;
}
    .statsline > div {
        padding: 3px;
    }
    .statsline > div:nth-child(2), .statsline > div:nth-child(3) {
        text-align: right;
    }

.jsondata {
    font-size: 12px;
}

    .jsondata .key {
        font-weight: bold;
        color: deeppink;
    }

    .jsondata .string {
        font-weight: bold;
        color: rebeccapurple;
    }

    .jsondata .number {
        font-weight: bold;
        color: forestgreen;
    }

.subcategoriesbox a {
    text-decoration: none;
}
    .subcategoriesbox a:hover {
        text-decoration: underline;
    }
.sidebar > div {
    background-color: #EEE;
    color: #a71c1c;
    margin-bottom: 2px;
    display: grid;
    grid-template-columns: 1rem 1fr;
    padding-left: 3px;
}
.sidebar a {
    display: block;
    margin-bottom: 1px;
    color: black !important;
    padding: 3px;
    text-decoration:none;
}
    .sidebar a:hover {
        text-decoration: underline;
    }
.sidebar .selecteditem {
    background-color: #c5c5c5;
}
.productbox {
    display: grid;
    width: 210px;
    background-color: white;
    color: black;
    border-radius: 4px;
    border: solid 1px #999;
    padding: 4px;
    grid-template-rows: 3rem auto auto;
    align-items: center;
    text-decoration: none;
}
.productbox:hover {
    background-color: #ffc8c8;
}
    .productboxheading {
    font-family: Roboto, sans-serif;
    font-weight: bold
}
.productimage {
    margin: 0 auto;
    background-size: contain;
}
.productbottombox {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
}
.departmentsnav {
    background-color: #CCCCCC99;
    color: blue;
    border-radius: 3px;
    padding: 6px;
    margin-bottom: 6px;
}
    .departmentsnav a {
        color: blue !important;
        text-decoration: none;
        padding: 6px;
    }
h1#productTitle {
    color: #ed2908;
    font-family: Lato;
}
.pageinformation {
    background-color: #EEE;
    padding: 3px;
    margin-bottom: 0.5rem;
    display: block;
}
    .pageinformation a {
        border: solid 1px #CCC;
        padding: 3px;
        display: inline-block;
    }
