@import url("https://fonts.googleapis.com/css2?family=Rancho");
@import url("https://fonts.googleapis.com/css2?family=Gluten:wght@100;200;300;400;500&display=swap");
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2vw;
}

.pad2 {
  padding: 2vw;
}

.formshadow {
  box-shadow: 0 0 10px #226aa8;
}

.greyshadow {
  box-shadow: 0 0 20px #686868;
}

.radius {
  border-radius: 10px;
}

.border {
  border: 2px solid #3a3a3a;
}

.borderwarn {
  border: 4px solid #d40000;
}

.bordervalid {
  border: 4px solid #27a822;
}

.buttonborder {
  border: 4px solid #ffffff;
}

.legendborder {
  border: legendborder;
}

.fontblue {
  color: #226aa8;
}

.fontwht {
  color: #ffffff;
}

.fontwarn {
  color: #864d1b;
}

.backblue {
  background: #226aa8;
}

.backacc {
  background: #bfd9f0;
}

.backwht {
  background: #ffffff;
}

.backdk {
  background: #3a3a3a;
}

.fontprimary {
  font-family: "Rancho", cursive;
}

.fontsecond {
  font-family: fontsecond;
}

.font1 {
  font-size: max(1vh);
}

.font2 {
  font-size: max(2vh);
}

.font3 {
  font-size: max(3vh);
}

.font4 {
  font-size: max(4vh);
}

.font5 {
  font-size: max(5vh);
}

.font6 {
  font-size: max(6vh);
}

.font7 {
  font-size: max(7vh);
}

.cardwidth {
  width: max(28);
}

.htmob {
  height: max(6vh);
}

body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "header1 " "nav" "main " "hr" "footer";
}
body header {
  display: grid;
  grid-template-columns: 33% 42% 25%;
  grid-area: header1;
}
body header a {
  text-align: right;
  font-size: max(4vh);
  font-family: "Rancho", cursive;
  max-width: 100%;
  text-align: center;
}
body header a img {
  padding: 0;
  width: 100%;
}
body nav {
  grid-area: nav;
}
body nav ul {
  display: flex;
  flex-wrap: wrap;
  background: #3a3a3a;
  list-style: none;
}
body nav ul li {
  margin: 0.5vw 0;
  padding: 0.5vw;
}
body nav ul li a {
  color: #ffffff;
  text-decoration: none;
}
body nav ul li a:hover {
  color: #ffffff;
  background: #226aa8;
}
body nav ul li a.active {
  color: #3a3a3a;
  background: #ffffff;
}
body main {
  grid-template-columns: 1fr;
  grid-area: main;
  margin: 0 0 2vw 0;
  grid-template-columns: 1fr;
  grid-template-areas: "header1" "section1" "switch";
}
body main form {
  width: 98%;
}
body main form fieldset {
  color: #3a3a3a;
  background: #bfd9f0;
  box-shadow: 0 0 10px #226aa8;
  border-radius: 10px;
  width: 100%;
  margin: 0 auto;
  border: none;
  max-width: 100%;
  padding: 0;
  gap: 1vw;
}
body main form fieldset legend h1.heading1 {
  font-size: max(6vh);
  padding: 0;
  font-family: "Rancho", cursive;
  margin: 4vw 1vw;
  margin-top: max(6vh);
  text-align: left;
}
body main form fieldset div.lgdesc {
  width: 85%;
  margin: 0 auto;
}
body main form fieldset div.lgdesc label {
  margin-top: 3vw;
}
body main form fieldset div.lgdesc label textarea {
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #3a3a3a;
  border-radius: 10px;
  padding: 1vw;
  height: max(18vh);
}
body main form fieldset div.lgdesc label textarea :required:invalid:focus:invalid {
  border: 4px solid #d40000;
  background-image: url("/images/site/attention.webp");
  background-position: right top;
  background-repeat: no-repeat;
}
body main form fieldset div.lgdesc label textarea :required:valid:focus:valid {
  border: 4px solid #27a822;
  background-image: url("/images/site/valid.webp");
  background-position: right top;
  background-repeat: no-repeat;
}
body main form fieldset div.reviews {
  margin: 0 4vw;
  display: grid;
  gap: 1vw;
  width: 85%;
  font-size: max(3vh);
  font-family: "Rancho", cursive;
  grid-area: reviews;
  background: #226aa8;
  color: #ffffff;
  line-height: max(4vh);
  border-radius: 10px;
  grid-template-columns: 1fr;
}
body main form fieldset div.reviews p.text {
  font-size: max(3vh);
  font-family: "Rancho", cursive;
  font-size: max(5vh);
  margin: 2vw;
}
body main form fieldset div.reviews p.alternate {
  background: #ffffff;
  font-family: "Gluten", sans-serif;
  font-size: max(4vh);
  color: #226aa8;
  padding: 1vw;
  margin: 0 3vw;
  border-radius: 10px;
}
body main form fieldset div.large {
  max-width: 100%;
  grid-template-columns: 1fr;
  width: 90%;
  margin: 3vw auto;
}
body main form fieldset div.large div.col1 select {
  width: 95%;
}
body main form fieldset div.large div.col1 select input:required:invalid:focus:invalid {
  border: 4px solid #d40000;
  background-image: url("/images/site/attention.webp");
  background-position: right top;
  background-repeat: no-repeat;
}
body main form fieldset div.large div.col1 select input:required:valid:focus:valid {
  border: 4px solid #27a822;
  background-image: url("/images/site/valid.webp");
  background-position: right top;
  background-repeat: no-repeat;
}
body main form fieldset div#inv-display {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  margin: auto;
}
body main form fieldset div#inv-display div div.invcard {
  grid-template-columns: 1fr;
  gap: 2vw;
  max-width: 100%;
  border: 5px solid #3a3a3a;
  margin: 2vw;
  max-height: 65vh;
  background: #ffffff;
  border-radius: 10px;
  text-align: center;
  width: 220px;
}
body main form fieldset div#inv-display div div.invcard a img .cardtop {
  height: 50%;
}
body main form fieldset div#inv-display div div.invcard a img .cardtop a img {
  border-radius: 10px 10px 0 0;
  height: 100%;
  max-height: 25vw;
  max-width: 100%;
}
body main form fieldset div#inv-display div div.invcard .cardbottom {
  height: 50%;
  font-family: "Rancho", cursive;
  font-size: max(6vh);
}
body main form fieldset div#inv-display div div.invcard .cardbottom a {
  color: #3a3a3a;
  height: 10vw;
}
body main .section1 {
  grid-area: section1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "pheader1 " "p1" "image1" "buttonbox";
}
body main h1 {
  padding: 1vw;
}
body footer {
  grid-area: footer;
  padding: 1vw;
}
body footer p {
  padding: 1vw;
  max-width: 100%;
  margin: 0;
  text-align: center;
}

input[type=radio] {
  border: 0px;
  width: 100%;
  height: 2em;
}

ul#image-display {
  margin: auto 0;
}

.left-align {
  width: 50%;
  margin: 3vh 0;
}

.colreviews {
  grid-template-columns: 1fr;
}

.col2 {
  display: grid;
  max-width: 100%;
  gap: 2vw;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
}

.five00 {
  min-width: 300px;
  max-width: 500px;
}

.msg {
  margin-bottom: 2vh;
  margin-left: 0;
  padding: 2vw;
  text-align: left;
  cursor: pointer;
}

.margin-top {
  font-family: "Gluten", sans-serif;
}

.msg2 {
  padding: 4vh;
}

.pImage {
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.buttonbox {
  grid-area: buttonbox;
  width: 100%;
  display: flex;
  justify-content: center;
}

.switch {
  grid-area: switch;
  grid-template-areas: "upgrades" "reviews";
}

table th, table tr, table td {
  max-width: 90%;
  padding: 1vw;
}

.pheader1 {
  grid-area: pheader1;
  max-width: 100%;
}

.p1 {
  grid-area: p1;
  margin: 2vw;
}

div.image1 {
  max-width: 100%;
  grid-area: image1;
  margin-top: -10vw;
}

.utitle {
  grid-area: utitle;
}

.upgrades {
  grid-area: upgrades;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "utitle utitle" "upgrades upgrades";
}

.left-pad {
  padding-left: 5vw;
  margin: 0;
}

.left-pad2 {
  margin-left: 2vw;
}

article {
  padding-left: 2vw;
}

.button1 {
  grid-area: button1;
  width: 50%;
  padding: 1vw;
  margin: 1vw;
}

.own-button {
  align-self: center;
  width: 50%;
  margin: 2vw 0;
}

img {
  max-width: 100%;
}

.space-right {
  padding-right: 2vw;
}

.space-below {
  padding-bottom: 2vw;
}

.space-above {
  padding-top: max(3vh);
}

div.no-margin {
  padding: 0;
  margin-top: -1vw;
}

.centered {
  margin: 2% auto;
  padding: 2vw;
}

.col1 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  margin: auto;
}

.pcenter {
  width: 92%;
  margin: 0 4%;
}

.top {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.pad-sides {
  padding: 0 2vw;
  align-items: center;
  font-family: "Gluten", sans-serif;
  font-size: max(3vh);
}

#vdetcontainer {
  max-width: 100%;
  display: grid;
  grid-area: vdetcontainer;
  grid-template-columns: 1fr;
  grid-template-areas: "reviewmsg" "vimg" "vdetails" "tnlist";
}
#vdetcontainer #tnlist {
  grid-area: tnlist;
  display: grid;
  gap: 1vw;
  grid-template-columns: 1fr;
  grid-template-areas: "msgtn";
}
#vdetcontainer #tnlist div.tn.left-pad {
  padding: 0;
}
#vdetcontainer #msgtn {
  grid-area: msgtn;
}
#vdetcontainer #reviewmsg {
  grid-area: reviewmsg;
}
#vdetcontainer #vimg {
  grid-area: vimg;
  padding: 1vw;
}
#vdetcontainer #vdetails {
  padding: 0;
  margin: 0;
  display: grid;
  grid-area: vdetails;
  grid-template-columns: 1fr;
  grid-template-areas: "vname" "vprice" "vdesc" "vcolor" "vstock";
}
#vdetcontainer #vdetails h2 {
  padding: 1vw;
}
#vdetcontainer #vdetails div h3, #vdetcontainer #vdetails div p {
  margin: 0;
  padding: 1vw;
}
#vdetcontainer #vdetails #vname {
  grid-area: vname;
}
#vdetcontainer #vdetails #vprice {
  grid-area: vprice;
}
#vdetcontainer #vdetails #vdesc {
  grid-area: vdesc;
}
#vdetcontainer #vdetails #vcolor {
  grid-area: vcolor;
}
#vdetcontainer #vdetails #vstock {
  grid-area: vstock;
}

.buttons {
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background: #226aa8;
  border: 4px solid #ffffff;
  color: #ffffff;
  width: 50%;
}

.inputs, .password, textarea {
  text-align: left;
  border: 2px solid #3a3a3a;
  margin-bottom: 3vw;
  max-width: 75%;
}

.buttons, .inputs, .password {
  border-radius: 10px;
  height: max(6vh);
  padding: 3vw;
  outline: none;
  margin: 2vh 0;
  font-family: "Gluten", sans-serif;
  font-size: max(4vh);
}

.divpad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 1vw;
}

.smallbuttons {
  margin: 2vw;
  min-width: 100px;
  padding: 1vw 2vw;
  height: max(6vh);
  outline: none;
  text-align: center;
  text-decoration: none;
  background: #bfd9f0;
  color: #226aa8;
  font-size: max(5vh);
  cursor: pointer;
  border: 4px solid #ffffff;
  border-radius: 10px;
}

main form {
  max-width: 95%;
  margin: auto;
}

.buttonlabel {
  color: #864d1b;
  font-size: max(4vh);
  font-weight: bold;
  text-align: center;
  font-family: "Gluten", sans-serif;
  margin: 2.5vh auto;
}

div, p, h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

#inv-detail {
  text-align: left;
  display: grid;
  width: 15vw;
}

#inv-display {
  display: grid;
  margin: max(4vh) auto;
  gap: 4vh;
  width: 300px;
  padding: 0;
}
#inv-display li {
  margin: 0 auto;
  grid-template-columns: 1fr;
  list-style-type: none;
  padding: 0;
  box-shadow: 0 0 10px #226aa8;
  max-width: max(28);
  text-align: center;
  background: #ffffff;
  border-radius: 10px;
  height: 350px;
}
#inv-display li img {
  width: 270px;
  max-height: 200px;
  border-radius: 10px 10px 0 0;
  text-align: center;
  padding: 0;
}
#inv-display li a {
  font-size: max(30px);
  margin: 0;
  padding: 0;
  text-align: center;
  color: #3a3a3a;
}

/* Med/large screens */
@media only screen and (min-width: 768px) {
  .bluebackgrd {
    width: 20vw;
  }

  .margin-top {
    margin-top: 2vw;
  }

  .msg, a.space-above, p {
    font-size: max(22px);
    max-width: 100%;
  }

  html {
    background-image: url("/images/site/small_check.webp");
    background-size: cover;
    max-width: 100%;
  }

  body {
    background: #ffffff;
    margin: 4vh 5vw;
    font-size: max(25px);
    border: 3px solid #226aa8;
    border-radius: 10px;
    max-width: 100%;
  }
  body footer div {
    padding: 0;
    margin: 0;
  }
  body main nav ul {
    padding: 0.25vw;
  }
  body main nav ul li a {
    padding: 2vw;
    font-size: max(15px);
  }

  .h3, footer p, .h1 {
    text-align: center;
    padding: 0;
    margin: 0;
  }

  .labels {
    padding-bottom: 6vw;
  }

  .col3 {
    display: grid;
    padding: 0;
    margin: 0;
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  header {
    grid-template-columns: 2fr 3fr 1fr;
  }
  header a {
    max-width: 100%;
  }

  .col1 {
    grid-template-columns: 1fr;
  }

  .img-center {
    width: 90%;
    margin: 0;
  }

  .own-button {
    padding: 2vw;
    margin: 0;
  }

  .image1 {
    max-width: 100%;
    grid-area: image1;
    position: relative;
    padding: 1vw;
    margin-top: -2vw;
  }

  .main {
    grid-template-areas: "header1" "section1" "switch";
  }

  .button1 {
    margin: 0 auto;
    text-align: center;
  }

  .buttonbox {
    justify-content: left;
    padding: 1rem;
  }

  .section1 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "pheader1 " "p1" "buttonbox" "image1";
  }

  .screename {
    padding: 1vw;
    margin: 0;
    height: 5vh;
  }

  .buttons {
    font-size: max(20px);
    margin: 2vw 0;
    padding: 2vw 2vw 3vw 2vw;
    max-width: 25vw;
    max-height: 1.5vh;
  }

  p.buttonlabel {
    padding: 1.5vw;
    text-align: left;
  }

  .switch {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "upgrades reviews";
  }

  .wider {
    width: 100%;
  }

  body main form fieldset div.col1 {
    grid-template-columns: 1fr;
  }
  body main form fieldset div.large {
    display: grid;
    gap: 2vw;
    grid-template-columns: 50% 50%;
    margin: 0;
  }
  body main form fieldset div.large label {
    margin: 3vw auto;
    height: 8vw;
  }
  body main form fieldset div.large #inv-display {
    grid-template-columns: 1fr 1fr;
    gap: max(18px);
    padding: 0;
    margin: auto;
    box-shadow: 0 0 10px #226aa8;
    max-width: max(28);
    text-align: center;
  }
  body main form fieldset div.large #inv-display li {
    list-style-type: none;
    margin: auto;
  }
  body main form fieldset div.large #inv-display li img {
    width: 100%;
    text-align: center;
    padding: 0;
    margin: -0.05vw;
  }
  body main form fieldset div.large div.col1 {
    grid-template-columns: 1fr;
    gap: 5vw;
  }
  body main form fieldset div.large div.col1 label, body main form fieldset div.large div.col1 input {
    width: 90%;
    margin: auto;
    padding: 2vw;
  }
  body main form fieldset p input {
    width: 100%;
    padding: max(20px);
    height: 6vw;
    color: #226aa8;
  }
  body main form fieldset div.lgdesc label {
    font: max(40px) "Rancho", cursive;
    margin: 3vw auto;
    height: max(8px);
    gap: 5vw;
  }
  body main form fieldset div.lgdesc textarea {
    background: #ffffff;
    font-size: max(20px);
    width: 100%;
    border: 2px solid #3a3a3a;
    border-radius: 10px;
    padding: 1vw;
    height: max(60px);
    margin: 3vh auto;
    color: #226aa8;
    font: max(30px) "Gluten", sans-serif;
  }

  /* For vehicle display in classification view */
  #inv-display {
    margin: 1vw;
  }

  .invcard {
    height: 65vh;
    max-width: 10vw;
  }
  .invcard .cardtop {
    height: 35%;
  }
  .invcard .cardtop a img {
    max-height: 25vw;
  }
  .invcard .cardbottom {
    height: 65%;
  }
  .invcard .cardbottom a {
    height: 12vw;
  }

  #tnmsg {
    display: none;
  }

  #vdetcontainer {
    max-width: 100%;
    grid-template-columns: 100px repeat(2, 2fr);
    grid-template-rows: 1fr;
    grid-column-gap: 5px;
    grid-row-gap: 0px;
  }
  #vdetcontainer #vdetails {
    max-width: 100%;
    grid-area: 2/3/3/4;
  }
  #vdetcontainer #vdetails #vprice, #vdetcontainer #vdetails #vcolor, #vdetcontainer #vdetails #vstock, #vdetcontainer #vdetails #vdesc {
    font-size: max(18px);
    gap: 0;
    padding: 0;
    margin: 0;
  }
  #vdetcontainer #vimg {
    width: 100%;
    max-width: 500px;
    grid-area: 2/2/3/3;
  }
  #vdetcontainer #tnlist {
    width: 200px;
    padding: 0;
    grid-area: 2/1/3/2;
  }
  #vdetcontainer #tnlist #msgtn {
    margin: 0;
    padding: 0;
  }
  #vdetcontainer #tnlist .tn:hover {
    position: relative;
    top: -25px;
    left: -35px;
    width: 500px;
    height: auto;
    display: block;
    z-index: 999;
  }
}
@media only screen and (min-width: 1000px) {
  col3 {
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 900px) {
  col3 {
    grid-template-columns: 1fr 1fr;
  }
}
*, *:before, *:after {
  box-sizing: inherit;
}

.g3 {
  font-family: "Gluten", sans-serif;
  font-weight: normal;
  padding: 1vw 4vw;
}

h1, h2, h3, h4, h5, h6 {
  font-size: max(7vh);
  font-family: "Rancho", cursive;
  color: #3a3a3a;
}

.heading2 {
  font-size: max(6vh);
  font-family: "Rancho", cursive;
  padding: 2vw 4vw;
}

.details {
  font-size: max(4vh);
  font-family: "Gluten", sans-serif;
  color: #226aa8;
}

.pImage[radio] {
  font-size: max(5vh);
}

.labels {
  font-size: max(6vh);
  font-family: "Rancho", cursive;
}

.h3 {
  font-family: "Gluten", sans-serif;
}

.mdgrey {
  color: #686868;
}

.dkgrey {
  color: #3a3a3a;
}

.dkblue {
  color: #226aa8;
}

.heading5, .text2 {
  font-size: max(2vh);
}

.heading4, .heading3 {
  font-family: "Rancho", cursive;
  font-size: max(4vh);
  line-height: max(4vh);
  padding: 4vw 0.5vw;
}

.msg {
  font-weight: bold;
  color: #864d1b;
  font-family: "Gluten", sans-serif;
  font-size: max(4vh);
}

.admin-img {
  max-width: 200px;
  max-height: 200px;
}

#image-display {
  max-width: 70%;
}

header {
  color: #3a3a3a;
  text-align: right;
}

.text, header div span a, .inputs {
  font-size: max(4vh);
  font-family: "Gluten", sans-serif;
}

body {
  background: #ffffff;
}

.nodeco {
  text-decoration: none;
  list-style-type: none;
  margin: 0;
}

.bluebackgrd {
  display: grid;
  background: #226aa8;
  border: 1px solid #686868;
  max-width: 100%;
  margin: 0.25rem;
  justify-items: center;
}

.invisible {
  display: none;
}

.centertxt {
  text-align: center;
  font-size: max(4vh);
}

.upgradeimg {
  height: 12vh;
  margin: 0;
  z-index: 10;
  background: transparent;
}

hr {
  grid-area: hr;
  height: 1vh;
  width: 100%;
  background: #3a3a3a;
  color: #3a3a3a;
  margin: 3vw 0;
}/*# sourceMappingURL=styles.css.map */