h1,
h3 {
  font-weight: bolder;
  font-size: 16px;
  letter-spacing: 1px;
  color: #0A722B;
  margin: 0px;
  margin-top: 13px;
  margin-bottom: 5px;
}

h2 {
  clear: both;
  font-size: 14px;
  font-weight: normal;
  color: #333;
  margin: 10px 0px 20px 0px;
  line-height: 18px;
}
nw-shop div {
  box-sizing: border-box;
}

nw-shop select {
  margin: 0;
}

nw-shop input,
nw-shop textarea,
nw-shop select {
  font-size: inherit;
  color: inherit;
}

nw-shop button.secondary,
nw-shop button.primary {
  border: 1px solid #E1E1E1;
  border-radius: 0;
  padding: 8px;
  cursor: pointer;
}

nw-shop button.secondary.disabled,
nw-shop button.primary.disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

nw-shop button.primary {
  background-color: #0A722B;
  color: white;
}

nw-shop button.secondary {
  background-color: #E1E1E1;
  color: black;
}

nw-shop button.small {
  padding: 2px 4px;
}

nw-shop form input:not([type=checkbox]):not([type=radio]),
nw-shop form select {
  border: 1px solid #E1E1E1;
  padding: 4px;
  width: 100%;
}

nw-shop form.tried-to-submit *:invalid {
  border: 1px solid #a94442;
}

nw-shop .message {
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 8px;
}

nw-shop .error {
  background-color: #a94442;
  color: white;
}

nw-shop .warning {
  background-color: #ff9900;
  color: black;
}

nw-shop .nw-shop-title {
  background-color: #E1E1E1;
  display: flex;
  justify-content: space-between;
  padding: 16px;
  margin-bottom: 8px;
}

nw-shop .nw-shop-title h1 {
  color: #0A722B;
  margin: 0;
  font-size: 32px;
  font-weight: bold;
}

nw-shop .nw-shop-title nw-cart {
  position: relative;
}

nw-shop .nw-shop-title nw-cart > div:first-child {
  cursor: pointer;
}

nw-shop .nw-shop-title nw-cart .cart-title {
  color: #0A722B;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

nw-shop .nw-shop-title nw-cart .cart-flyout {
  padding: 8px;
  position: absolute;
  margin-top: 8px;
  right: -8px;
  z-index: 1;
  background-color: white;
  border: 1px solid #E1E1E1;
}

nw-shop .nw-shop-title nw-cart .cart-flyout .flyout-title {
  font-size: 18px;
  color: #0A722B;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

nw-shop .nw-shop-title nw-cart .cart-flyout .flyout-title span {
  flex-grow: 1;
}

nw-shop .nw-shop-title nw-cart .cart-flyout .flyout-title i {
  flex-grow: 0;
}

nw-shop .nw-shop-title nw-cart .cart-flyout .no-data {
  white-space: nowrap;
}

nw-shop .nw-shop-title nw-cart .cart-flyout .flyout-content {
  display: table;
  margin-left: -8px;
  margin-right: -8px;
}

nw-shop .nw-shop-title nw-cart .cart-flyout .flyout-content > div {
  display: table-row;
}

nw-shop .nw-shop-title nw-cart .cart-flyout .flyout-content > div > div {
  display: table-cell;
  padding: 8px;
  white-space: nowrap;
}

nw-shop .nw-shop-title nw-cart .cart-flyout button.primary {
  margin-top: 8px;
  width: 100%;
  display: flex;
}

nw-shop .nw-shop-title nw-cart .cart-flyout button.primary span {
  flex-grow: 1;
  text-align: left;
}

nw-shop .nw-shop-title nw-cart .cart-flyout button.primary i {
  flex-grow: 0;
}

nw-shop nw-item-select .item-table {
  display: flex;
  flex-wrap: wrap;
  margin-top: -8px;
  margin-right: -8px;
}

nw-shop nw-item-select .item-table .item {
  width: calc(33% - 8px);
  padding: 8px;
  border: 1px solid #E1E1E1;
  border-radius: 8px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
}

nw-shop nw-item-select .item-table .item:not(:last-child) {
  margin-right: 8px;
}

nw-shop nw-item-select .item-table .item.out-of-stock {
  border-color: #a94442;
}

nw-shop nw-item-select .item-table .item > * {
  flex-grow: 0;
}

nw-shop nw-item-select .item-table .item .item-title {
  background-color: #0A722B;
  color: white;
  border-radius: 8px 8px 0 0;
  margin: -9px;
  margin-bottom: 8px;
  padding: 8px;
}

nw-shop nw-item-select .item-table .item .item-image {
  text-align: center;
  overflow: hidden;
}

nw-shop nw-item-select .item-table .item .item-image > img {
  max-width: 100%;
}

nw-shop nw-item-select .item-table .item .item-description {
  margin-top: 8px;
}

nw-shop nw-item-select .item-table .item .item-description table {
  width: 100%;
  border-collapse: collapse;
}

nw-shop nw-item-select .item-table .item .item-description table th,
nw-shop nw-item-select .item-table .item .item-description table td {
  border: 1px solid #E1E1E1;
  padding: 8px;
  text-align: left;
}

nw-shop nw-item-select .item-table .item .item-description table th {
  font-weight: bold;
  background-color: #E1E1E1;
}

nw-shop nw-item-select .item-table .item .item-state {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 8px;
}

nw-shop nw-item-select .item-table .item .item-state > div {
  flex-grow: 0;
  width: 100%;
}

nw-shop nw-item-select .item-table .item .item-state > div.spacer {
  flex-grow: 1;
}

nw-shop nw-item-select .item-table .item .item-state .item-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nw-shop nw-item-select .item-table .item .item-state .item-options .item-price {
  white-space: nowrap;
}

nw-shop nw-item-select .item-table .item .item-state .item-options .item-amount {
  display: flex;
  justify-content: center;
  align-items: center;
}

nw-shop nw-item-select .item-table .item .item-state .item-options .item-amount > * {
  margin: 4px;
}

nw-shop nw-item-select .item-table .item .item-state .item-options .item-amount span {
  white-space: nowrap;
}

nw-shop nw-item-select .item-table .item .item-state .item-options .item-amount button.small {
  width: 24px;
  height: 24px;
}

nw-shop nw-form-entry h3 {
  margin-top: 16px;
  margin-bottom: 16px;
}

nw-shop nw-confirmation-page .info-title {
  font-size: 18px;
  font-weight: bold;
  margin: 8px 0;
}

nw-shop nw-product-table .key-value-table .postage {
  color: #cccccc;
}

nw-shop nw-product-table .key-value-table .total {
  margin-top: 8px;
  border-top: 1px solid black;
  padding-top: 8px;
}

nw-shop nw-product-table .key-value-table .comment {
  text-align: right;
}

nw-shop .shop-bottom-navigation {
  display: flex;
  justify-content: space-between;
  padding: 8px;
}

nw-shop .key-value-table > div {
  display: flex;
  flex-direction: row;
  margin: 8px;
  margin-left: 0;
}

nw-shop .key-value-table > div > div {
  flex-grow: 0;
}

nw-shop .key-value-table > div > div.key {
  width: 300px;
  font-weight: bold;
}

nw-shop .key-value-table > div > div.value {
  flex-grow: 1;
  font-size: 100%;
}

nw-shop .key-value-table.small > div > div.key {
  width: 32px;
  font-size: 100%;
}

nw-shop .key-value-table.small {
  font-size: 100%;
}

nw-shop .small {
  font-size: 100%;
}

nw-shop .order-feedback {
  padding-left: 8px;
  padding-right: 8px;
}

@media (max-width: 767px) {
	nw-shop nw-item-select .item-table .item {
		width: calc(100% - 8px) !important;
	}
}