:root {
    --gray: #ccc;
    --red: #f31515;
}

body {
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

main {
    border: 1px solid red;
    width: 8.5in;
    height: 11in;
    padding: 0.5in;
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    font-style: italic;
    width: 100%;
    text-align: center;
    color: blue;
}

h2 {
    width: 100%;
    color: black;
    font-size: 18px;
    padding: 4px 4px 2px 4px;
    background-color: var(--gray);
    text-transform: uppercase;
    border: 1px solid black;
}

h3 {
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
}

input[type=text] {
    display: inline-block;
    background-color:#fff;
    border: none;
    border-bottom: 1.2px solid black;
}


#required {
    color: var(--red);
}

header {
    /* border: 1px solid red; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    display: block;
    width: 2.5in;
}

.tracking {
    min-width: 2in;
}

.tracking h3 {
    padding: 0;
    margin: 0;
}

.tracking input {
    padding: 5px 2px;
    margin: 6px 0;
    background-color: var(--gray);
    border: 1px solid black;
}

.required {
    display: flex;
    flex-direction: row;
    margin-bottom: 2rem;
    /* border: 1px solid red; */
}

.required .left {
    /* border: 1px solid green; */
    width: calc(50% - .1in);
    margin-right: .2in;
}
.required .right {
    /* border: 1px solid green; */
    width: calc(50% - .1in);
}

.shipping{
    border: 1.5px solid black;
    padding: 0 4px;
    margin: 10px 0;
}

.sides{
    display: flex;
    flex-direction: row;
}

.sides .left {
    max-width: 100px;
}
.sides .right {

}

.option {
    display: flex;
    flex-basis: auto;
    font-size: 14px;
    width: 100%;
    text-align: center;
    margin: 8px 0;
}

.option .select {
    display: inline-block;
    min-width: 10%;
    margin: 0 6px;
    border-bottom: 1px solid black;
}

.highlight{
    background-color: yellow;
}

#expensive {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin: 4px;
    color: var(--red);
}

table {
    width: 100%;
    border-collapse: collapse;
     border: 2px solid rgb(140 140 140);
}
thead {
    background-color: var(--gray);
}
tr td:nth-child(1){
    text-align: center;
}

.instructions {
    margin: 1rem 0;
}

.instructions label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 2rem;
}

.instructions input[type=text] {
    display: block;
    width: 100%;
    border: 1px solid black;
    padding: 1rem;
    margin: .25rem 0;
}

footer {
    font-size: 14px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}