body {
  line-height: normal;
}

.demo2,
.demo1 {
  height: 107px;
  padding: 6px 10px 6px 15px !important;
  border-top: 1px solid black;
  border-left: 1px solid black;
  box-sizing: border-box;
}

[type="checkbox"] {
  scale: 1.2;
}

.rotate {
  rotate: -90deg;
  height: 239px;
  width: 94px;
  translate: 72px -73px;
}

.demo3 {
  width: 20% !important;
  height: 78px;
  padding: 6px !important;
  border-top: 1px solid black;
  border-left: 1px solid black;
  box-sizing: border-box;
}

p:has(span[style*="font-size: 8pt"]) {
  line-height: 8px;
}

p:has(span[style*="font-size: 10pt"]) {
  line-height: 12px;
}

p:has(span[style*="font-size: 12pt"]) {
  line-height: 14px;
}

p:has(span[style*="font-size: 14pt"]) {
  line-height: 18px;
}

p:has(span[style*="font-size: 18pt"]) {
  line-height: 27px;
}

p:has(span[style*="font-size: 24pt"]) {
  line-height: 30px;
}

p:has(span[style*="font-size: 36pt"]) {
  line-height: 36px;
}

.row {
  width: 795px;
  padding: 0;
  margin: 0;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
}

.addOns {
  width: 500px;
}

.ugedag {
  display: flex;
  flex-wrap: wrap;
}

.demo p {
  padding: 0;
  margin: 0;
  margin-bottom: 2px;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: rgb(32, 32, 32);
  transition: 0.4s;
}

input:checked+.slider {
  background-color: #ccc;
}

input:focus+.slider {
  box-shadow: 0 0 1px #ccc;
}

input:checked+.slider:before {
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.ugedag input {
  display: none;
}

.ugedag label {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 0.5rem;
  margin: 0 0.5rem 0.5rem 0;
  border-radius: 100rem;
  color: grey;
  box-shadow: 0 0 0 2px grey;
  transition: all 0.2s ease-in-out;
}

.ugedag label:before {
  content: "";
  
  background-position: center center;
  background-repeat: no-repeat;
  margin-right: 0.5rem;
  transition: all 0.2s ease-in-out;
  background-color: transparent;
  border-radius: 100rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: grey;
}

label:hover {
  cursor: pointer;
  box-shadow: 0 0 0 2px #0d6efd;
}

label:hover:before {
  background-color: grey;
}

input:checked+label {
  color: black;
  box-shadow: 0 0 0 2px #0d6efd;
}

input:checked+label:before {
  background-color: #0d6efd;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0iI2ZmZmZmZiIgdmlld0JveD0iMCAwIDI1NiAyNTYiPjxwYXRoIGQ9Ik0yMjkuNjYsNzcuNjZsLTEyOCwxMjhhOCw4LDAsMCwxLTExLjMyLDBsLTU2LTU2YTgsOCwwLDAsMSwxMS4zMi0xMS4zMkw5NiwxODguNjksMjE4LjM0LDY2LjM0YTgsOCwwLDAsMSwxMS4zMiwxMS4zMloiPjwvcGF0aD48L3N2Zz4=");
}