﻿body {
    background-color: black;
    height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.h1 {
    color: white;
    font-size: 17px;
    font-weight: 700;
}

.headerlink {
    color: white;
    font-size: 15px;
    font-weight: 500;
    font-family: "Roboto", Sans-serif;
    text-decoration: none;
    cursor: pointer;
}

.headerlink:hover {
    color: red;
    text-underline-offset: 15px;
    text-decoration: underline;
    font-size: 15px;
    font-weight: 500;
    font-family: "Roboto", Sans-serif;
    cursor: pointer;
}

.items {
    padding-top: 35vh;
    padding-left: 10%;
    padding-right: 10%;
}

@media (max-width: 600px) {

    .items {
        padding-top: 100px;
        padding-left: 5%;
        padding-right: 5%;
    }
}

.wLabel {
    color: white;
    font-size: 16px;
    font-weight: 300;
}

.wLabelGrid {
    color: white;
    font-size: 16px;
    font-weight: 300;
    grid-column: 1 / span 2;
}

.linkText {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
    font-size: 12px;
    font-weight: 300;
}

.s_label {
    color: white;
    font-size: 12px;
    font-weight: 300;
    padding: 4px;
}

.error {
    background: #600000;
    color: red;
    font-size: 12px;
    font-weight: 300;
}

.header0 {
    top: 0;
    height: 40px;
    width: 100%;
    /*        background-color: #00000080;*/
    position: sticky;
    z-index: 2;
}

.header1 {
    position: absolute;
    display: block;
    height: 30%;
    max-height: 300px;
    width: 100%;
    top: 0;
    left: 0;
}

.emptyHeader {
    position: static;
    display: block;
    height: 400px;
    width: 100%;
    top: 0;
    left: 0;
}

.textBox {
    width: 350px;
    height: 20px;
    font-size: 14px;
}

.textBoxSmall {
    width: 250px;
    height: 20px;
    font-size: 12px;
}

.numberBox {
    width: 300px;
    height: 20px;
    font-size: 14px;
}

.action-button {
    font-size: 12px;
    border: none;
}

@media (max-width: 600px) {

    .emptyHeader {
        height: 0px;
    }

    .textBox {
        width: 80vw;
    }

    .textBoxSmall {
        width: 50vw;
    }

    .numberBox {
        width: calc(80vw - 50px);
    }
}

.items {
    position: static;
}



.img_logo {
    width: 240px;
    height: auto;
    top: 5px;
    left: 20px;
}

@media (max-width: 600px) {
    .img_logo {
        width: 40vw;
    }
}

.grid {
    display: grid;
    grid-gap: 10px;
    margin: 10px;
    justify-content: center;
    align-items: center
}

.grid_first {
    grid-column-start: 1;
}

.grid_second_stationary {
    grid-column-start: 2;
}

.grid_second {
    grid-column-start: 2;
}

.grid_third {
    grid-column-start: 3;
}

.googleContainer {
    grid-column-start: 2;
}

@media (max-width: 600px) {
    .googleContainer {
        grid-column-start: 1;
    }

    .grid_second {
        grid-column-start: 1;
    }

    .grid_third {
        grid-column-start: 1;
    }
}



.top_container {
    display: grid;
    gap: 5px;
    grid-template-areas: "logo menu";
}

.menu_container {
    display: flex;
    flex-wrap: wrap-reverse;
    gap: 20px;
    width: 50%;
    color: white;
    align-self: flex-end;
}

.img_full_page {
    display: block;
    position: relative;
    width: 100%;
    min-width: 700px;
    height: auto;
    z-index: 0;
    align-self: center;
}

.crop_img {
    position: absolute;
    display: flex;
    align-content: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.fade_out {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(#00000052, black);
    z-index: 1;
}

.codeInput {
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.textFields {
    width: 300px;
}

@media (max-width: 600px) {
    .header1 {
        visibility: hidden;
    }

    .img_full_page {
        visibility: hidden;
    }

    .fade_out {
        visibility: hidden;
    }

    .crop_img {
        visibility: hidden;
    }

    .codeInput {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}





.variableFlex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row
}

@media (max-width: 600px) {
    .variableFlex {
        flex-direction: column;
    }
}

.detailDisplayBox {
    border-color: darkgray;
    border: 2px;
    border-style: outset;
    width: 100%;
    max-width: 600px;
    margin-left: 1%;
    margin-right: 1%;
    padding: 10px;
}

.detailItemsDisplay {
    display: grid;
    justify-content: start;
    justify-items: start;
    column-gap: 20px;
}