/*----MinListe----*/
/* Include the padding and border in an element's total width and height */
/* Ønskeliste spesifikk styling */
.wish-list {
  margin: 0;
  padding: 0;
}

.wish-list li {
  cursor: pointer;
  position: relative;
  padding: 12px 8px 12px 40px;
  background: #eee;
  font-size: 18px;
  transition: 0.2s;
  user-select: none;
}

.wish-list li:nth-child(odd) {
  background: #f9f9f9;
}

.wish-list li:hover {
  background: #ddd;
}

.wish-list li.checked {
  background: #888;
  color: #fff;
  text-decoration: line-through;
}

.wish-list li.checked::before {
  content: '';
  position: absolute;
  border-color: #fff;
  border-style: solid;
  border-width: 0 2px 2px 0;
  top: 10px;
  left: 16px;
  transform: rotate(45deg);
  height: 15px;
  width: 7px;
}

.wish-list .close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 12px 16px 12px 16px;
}

.wish-list .close:hover {
  background-color: black;
  color: white;
}
/* Style the close button */
.close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 12px 16px 12px 16px;
}

.close:hover {
  background-color: black;
  color: white;
}

/* Style the header */
.header {
  background-color: black;
  padding: 30px 40px;
  color: white;
  text-align: center;
}

/* Clear floats after the header */
.header:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the input */
input {
  margin: 0;
  border: none;
  border-radius: 0;
  width: 100%;
  padding: 10px;
  float: left;
  font-size: 16px;
  border: 1px, solid, black;
}

/* Style the "Add" button */
.addBtn {
  padding: 10px;
  width: 100%;
  background: white;
  color: black;
  float: left;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 0;
  border: 1px, solid, black;
}

.addBtn:hover {
  background-color: #bbb;
}

  .h1Overskrift {
    text-align: center;
    margin-top: 40px;
    font-size: 40px;
    color: white;
    background-color: black;
    font-weight: 700;
}
/*----MinListe----*/

/*------------------------------------------------------------------------------------------*/

/*----Body----*/
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #fcfbfb;;
}
/*----Body----*/

/*------------------------------------------------------------------------------------------*/

/*----NavBar----*/
nav {
  background-color: #000000;
  color: white;
  padding: 1px;
  position: relative;
}

.topnav {
  background-color: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topnav a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  border-bottom: 3px solid transparent;
}

.topnav a:hover {
  border-bottom: 3px solid #f4e1e5;
}

.topnav a.active {
  border-bottom: 3px solid #f1cbd3;
}

.open-panel {
  background: none;
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  margin-left: auto;
}

.open-panel:hover {
  background-color: rgb(35, 35, 35);
}

/*----SidePanelStil*/
.side-panel {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  background-color: black;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  color: white;
  z-index: 1000;
}

/*----SøkeSidePanel----*/
#mySearch {
  width: 100%;
  font-size: 18px;
  padding: 11px;
  border: none;
}

#myMenu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#myMenu li a {
  padding: 12px;
  text-decoration: none;
  color: white;
  display: block
}

#myMenu li a:hover {
border-bottom: 3px solid #f4e1e5;
}

.side-panel button {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 20px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

.side-panel button:hover {
  background-color: rgb(35, 35, 35);
}
/*----NavBar----*/