* {
  box-sizing: border-box;
}

.row {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 80%;
  margin: 0 auto;
  background-color: #f1f1f150;
}

.col {
  flex: 1 1 8%;
  margin: 0 0 0.5rem 0;
  padding: 0.5em 10px;
  box-sizing: border-box;
}

.col-span-7 {
  flex-basis: 58.3333%;
}

.col-span-2 {
  flex-basis: 16.6666%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
}

[class*=box--] {
  display: flex;
  margin: 0.5rem;
  background: white;
  border-bottom: 3px solid #dedfdf;
}

.msg--full {
  flex: 1 1 100%;
  flex-flow: column;
  padding: 0.5rem;
  background:transparent;
  color: #fff;
  text-shadow:0.5px 0.5px #ccc, 1px 1px #aaa;
  width: 100%;
}
.msg--full p {
  flex: 1 1 100%;
  flex-flow: column;
  padding: 0.5rem;
  background:transparent;
  width: 100%;
}

.box--full {
  flex: 1 1 100%;
  flex-flow: column;
  padding: 1rem;
  border-radius: 10px;
}

.box--half {
  flex: 1 1 30%;
  flex-flow: column;
  padding: 1rem;
  border-radius: 10px;
  flex-shrink: 1;
  flex-basis: 250px;
}

@media all and (max-width: 568px) {
  .col-span-2 {
    flex-basis: 50%;
  }

  .col-span-6,
.col-span-7 {
    flex-basis: 100%;
  }
}
input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=email],
input[type=password],
input[type=text],
input[type=search],
input[type=tel],
input[type=number],
input[type=url],
textarea {
  font-size: 1.1rem;
  width: 100%;
}

label {
  font-weight: bold;
  color: #000;
  font-size: 1rem;
}

select {
  font-size: 1.1rem;
  height: 1.5rem;
  line-height: 1.5rem;
  width: 100%;
  margin-top: 0.25rem;
  background: transparent;
}
select:hover {
  cursor: pointer;
}

input,
select {
  border: none;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

textarea:focus,
input:focus {
  outline: none;
}

.first-title {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 1em;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  width: 100%;
  padding-left: 10px;
  margin: 24px 0 16px;
  color: #444;
}

.second-title {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 1em;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  width: 100%;
  margin: 30px 0 20px;
}

#submit {
  padding: 1.25rem;
  margin: 0.25rem;
  border: 0 none;
  font-size: 1.5em;
  border-bottom: 3px solid #907f6d;
  background-color: #a59483;
  font-weight: bold;
  color: #fff;
  width: 100%;
  border-radius: 4px;
}
#submit:hover, #submit:focus {
  cursor: pointer;
  border-bottom: 3px solid #907f6d;
  background-color: #b37f4c;
}

.error {
  color: orangered;
}

.cart {
  outline: 2px dotted #D1D1D1;
  outline-offset: -13px;
}

table {
  width: 100%;
}

td,
th {
  padding: 10px;
  white-space: nowrap;
  text-align: left;
}

th {
  font-weight: bold;
}

.total {
  font-weight: bold;
  font-size: 2em;
  text-align: right;
}

.right {
  text-align: right;
}

.table-border {
  border-bottom: 2px dotted #D1D1D1;
}