/*Color Codes
Gray-Dark:    #292828
Gray:         #646464
Gray-Light:   #BDBDBD
Orange-Dark:  #FF9200
Orange:       #FFC000
Orange-Light: #FFEB00
*/
:root {
  --gray: #646464;
  --lightgray:#BDBDBD;
  --darkgray:#292828;
  --darkblue: #09152E;
  --blue: #15223D;
  --lightblue: #434E65;
  --darkorange: #FF9200;
  --orange: #FFC000;
  --lightorange: #FFEB00;

  --textsize1: 2.2vw;
  --textsize2: 1.6vw; /*18pt*/
  --textsize3: 1.25vw; /*14pt*/
  --textsize4: 1.00vw;
  --textsize5: 0.89vw; /*10pt*/
  --textsize6: 0.71vw; /*8pt*/
  --celllen: 3.75%;
  --extendedcell: 7.5%;
}

*, *:before, *:after {
  box-sizing: border-box;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 30px;
  padding-bottom: 10px;
  justify-self: center;
}
h3 {
  font-size: 20px;
  color: var(--gray)
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 18px;
  color: var(--lightgray)
}
h6 {
  font-size: 16px;
}
/*Nav Bar Styles*/
/* Add a black background color to the top navigation */
.topnav {
  width: 100%;
  background-color: var(--darkblue);
  overflow: hidden;
  vertical-align: middle;
}

/* Style the links inside the navigation bar */
.topnav a {
  height: 100%;
  float: right;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  border: 1px solid transparent;
}
.topnav a span {
  color: var(--gray);
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: var(--darkorange);
  color: #292828;
}

.topnav a.active:hover {
  color: black;
}
/* Add a black background color to the top navigation */
.bottomnav {
  width: 100%;
  height: 47px;
  background-color: var(--blue);
  overflow: hidden;
  top: 47px;
}

/* Style the links inside the navigation bar */
.bottomnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  border: 1px solid transparent;
}

/* Change the color of links on hover */
.bottomnav a:hover, .topnav a:hover {
  border: 1px solid white;
}

/* Add a color to the active/current link */
.bottomnav a.main {
  background-image: linear-gradient(-180deg, var(--lightorange ), var(--darkorange));
  border-bottom-color: var(--darkorange);
  color: #FFF;
}

.bottomnav a.main:hover {
  color: black;
  border-bottom-color: white;
}
.dropdown {
  vertical-align: middle;
  float: right;
  overflow: hidden;
}
.dropdown .dropbtn {
  font-size: 16px;  
  border: 1px solid transparent;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  top: 45px;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}
/*Nav Bar End*/

/*Index Styles*/
.index {
  background-image: url('../img/carlot.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.index-sub {
  padding: 100px;
}
.index-sub h1 {
  font-size: 350%;
  color: white;
  text-shadow:
    -1px 0px 0px black,
    1px 0px 0px black,
    0px -1px 0px black,
    0px 1px 0px black
}
.index-sub h2 {
  font-size: 200%;
  color: white;
  text-shadow:
    -1px 0px 0px black,
    1px 0px 0px black,
    0px -1px 0px black,
    0px 1px 0px black
}
.index-sub span {
  color: var(--darkorange);
}
/*Index Styles End*/

button {
    background-color: var(--darkorange);
    color: #292828;
    padding: 5px;
    text-align: center;
    font: Bold 12pt Calibri;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button[type="submit"] {
  min-width: 10%;
  max-width: 100%;
  margin: 0 auto 10px;
  padding: 10px;
  display: block;
  background-color: #FF9200;
  color: #292828;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: #ff8000
}

#submit{
  background-color: initial;
  background-image: linear-gradient(-180deg, var(--lightorange ), var(--darkorange));
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px;
  color: rgb(249, 255, 255);
  cursor: pointer;
  display: inline-block;
  font-family: Inter,-apple-system,system-ui,Roboto,"Helvetica Neue",Arial,sans-serif;
  font-size: 25px;
  height: 40px;
  line-height: 40px;
  outline: 0;
  overflow: hidden;
  padding: 0 20px;
  pointer-events: auto;
  position: relative;
  text-align: center;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: top;
  white-space: nowrap;
  width: 250px;
  z-index: 9;
  border: 0;
  transition: box-shadow .2s;
  justify-self: center;
  vertical-align: middle;
}

body {
  background-color: #292828;
}

/*Form styles*/
input {
  border-radius: 5px;
    background: rgb(249, 250, 250);
    border: 1px solid var(--lightgray);
    font-size: 16px;
    height: 30px;
    line-height: 24px;
    padding: 7px 8px;
    color: rgb(8, 9, 10);
    box-shadow: none;
    font-family: Inter,-apple-system,system-ui,Roboto,"Helvetica Neue",Arial,sans-serif;
}
select {
  padding: 5px;
  margin: 1px 0;
  border: 1px solid var(--gray);
  background-color: rgb(249, 250, 250);
  width: fit-content;
}

input[type=radio] {
  
}

label {
  
}

input[type=radio]:checked + label{
  
}

label + input[type=radio] + label {
  
}

.radio-group {
  border: solid 3px black;
  display: inline-block;
  border-radius: 5px;
  overflow: hidden;
}

/*Primary Groups Starting Area*/
.wrapper {
  background-color: #292828;
  display: grid;
  grid-gap: 20px;
  max-height: 100%;
  width: 100%;
}
.wrapper h1 {
  font-size: 300%;
  text-align: center;
}
.wrapper-sub {
  background-color: #ffffff;
  display: grid;
  grid-gap: 5px;
  margin-left: auto;
  margin-right: auto;
  border-top: 2px solid #FF9200;
  border-bottom: 2px solid #FF9200;
}
.content {
  /*background-color: #646464; */
  text-align: left;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
}
.content h2 {
  font-size: 150%;
}
#user-data {
  margin-left: auto;
  margin-right: auto;
}

.content #input {
  background-color: #FFC000;
  padding: 2px;
}
.content #output {
  background-color: #D6EFFF;
  padding: 2px;
}
.content #bleed {
  color: #FF0000;
}
.content #fill {
  background-color: black;
  color: white;
}
.content #gray {
  background-color: #BDBDBD;
}
.content #white {
  background-color: white;
}
.content-header {
  font-size: 125%;
}
.content-title {
  font-weight: bold;
}
.header {
    text-align: center;
    color: var(--textgray);
    font: Bold var(--textsize1) Calibri;
    background: black;
  }
.gray-header-cell {
  white-space: nowrap;
  padding: 0 5px 0 5px;
}
table {
  border: 3px solid black;
  background-color: white;
}
tr, td {
  border: 1px solid black;
}
form{
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
#select form button{
  height: 100%;
  width: 100%;
  background-color: initial;
  background-image: linear-gradient(-180deg, var(--lightorange ), var(--darkorange));
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px;
  color: rgb(249, 255, 255);
  cursor: pointer;
  display: inline-block;
  font-family: Inter,-apple-system,system-ui,Roboto,"Helvetica Neue",Arial,sans-serif;
  font-size: 25px;
  height: 40px;
  line-height: 40px;
  outline: 0;
  overflow: hidden;
  padding: 0 20px;
  pointer-events: auto;
  position: relative;
  text-align: center;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: top;
  white-space: nowrap;
  width: fit-content;
  z-index: 9;
  border: 0;
  transition: box-shadow .2s;
  justify-self: center;
}

button.sidebar {
  border: none;
  padding: 8px 16px;
  vertical-align: middle;
  color: inherit;
  background-color: inherit;
  cursor: pointer;
  white-space: nowrap;
  display: inline-block;
  width: 5px;
  height: 100px;
  font-size: 150%;
  text-align: center;
  float: left;
}

.sidebar h1 {
  display: inline-block;
  float: left;
}

p.error{
  font-size: 150%;
  border:2px solid #FF9200;
  border-radius: 8px;
  padding: 8px;
}
/*Tabs Styles*/
.sidebar {
  height: 100%;
  width: 120px;
  background-color: #FFF;
  position: fixed !important;
  z-index: 1;
  overflow: auto;
}
.bar-block .bar-item {
  width: 100%;
  display: block;
  padding: 8px 16px;
  text-align: left;
  border: none;
  white-space: normal;
  float: none;
  outline: 0
}
.white {
  color: #000 !important;
  background-color: #FFF !important;
}
.black {
  color: #FFF !important;
  background-color: #000 !important;
}
.orange {
  color: #FFF !important;
  background-image: linear-gradient(-180deg, var(--lightorange ), var(--darkorange));
}
.card {
  box-shadow: 
    0 2px 5px 0 rgba(0,0,0,0.16),
    0 2px 10px 0 rgba(0,0,0,0.12);
}
.button {
  border: none;
  display: inline-block;
  padding: 8px 16px;
  vertical-align: middle;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background-color: inherit;
  text-align: center;
  cursor: pointer;
  white-space: nowrap
}
.button:hover {
  color: #000 !important;
  background-color: #ccc !important;
}
.sec {
  margin-left: 120px;
}
.filter {
  top: 94px;
  height: 31.5px;
  width: 100%;
  position: fixed !important;
  background-color: #FFF;
  border: 1px solid var(--gray);
}
/*Modal Styles*/
/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}
.modal-header {
  padding: 20px 16px;
  background-color: var(--darkblue);
  color: white;
}
.modal-body {
  padding: 40px 16px;
}
.modal-footer {
  padding: 10px 16px;
  background-color: var(--darkblue);
  color: white;
}
/* Modal Content/Box */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid var(--darkblue);
  width: 90%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
@keyframes animatetop {
  from {top: -300px; opacity: 0}
  to {top: 0; opacity: 1}
}
/* MODAL STYLES END */

.grid-container{
  display: grid;
  grid-template: 50px / auto;

}

h3 .grid-item{
  height: 30px;
}
.smalltext {
  font: var(--textsize5) Calibri;
}
.mediumtext {
  font: var(--textsize4) Calibri;
}

.buy-list-header {
  color: var(--orange);
  font: Bold var(--textsize3) Calibri;
  background-color: black;
  text-align: center; 
  text-decoration: underline; 
  padding-right: 5px; 
  padding-left: 5px;
  white-space: nowrap;
}
.buy-list-cell {
  text-align: center;
  vertical-align: middle;
  font: var(--textsize4) Calibri;
}
.buy-list-cell.fill{
  text-align: center;
}
.buy-list-cell.fill input[type=text] {
  all: unset;
  background-color: white;
  text-align: left;
  padding: 5px;
  width: 80%;
  vertical-align: middle;
}
.buy-list-cell.fill input[type=date] {
  all: unset;
  background-color: white;
  text-align: left;
  padding: 5px;
  width: 80%;
  vertical-align: middle;
  font: var(--textsize4) Calibri;
}
.buy-list-cell.fill select {
  background-color: white;
  text-align: left;
  padding: 5px;
  width: fit-content;
  vertical-align: middle;
  border: none;
}