/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 64:0 Expected "}" to go with "{"

**/
<style>
/* Centrering av nyhetsbrev-formuläret */
.newsletter__form {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap;
  max-width: 400px;
  margin: 0 auto;
}

/* Inputfält */
.newsletter__input {
  flex: 1 1 auto;
  min-width: 200px;
  height: 48px;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid #000 !important;
  border-right: none !important;
  border-radius: 8px 0 0 8px !important;
  background-color: #8daf89 !important;
  color: #000 !important;
  outline: none;
  box-sizing: border-box;
}

/* Knappen */
.newsletter__submit {
  height: 48px;
  padding: 0 20px;
  font-size: 16px;
  border: 2px solid #000 !important;
  border-left: none !important;
  border-radius: 0 8px 8px 0 !important;
  background-color: #8daf89 !important;
  color: #000 !important;
  cursor: pointer;
  box-sizing: border-box;
}

.newsletter__submit:hover {
  background-color: #8daf89 !important;
  color: #000 !important;
}

/* Mobilanpassning */
@media (max-width: 600px) {
  .newsletter__form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter__input,
  .newsletter__submit {
    width: 100% !important;
    border-radius: 8px !important;
    border-right: 2
