body {
  font-family: "Open Sans";
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

h1 {
  font-family: "Open Sans";
  font-size: 24px;
}

h2 {
  font-family: "Open Sans";
  font-size: 22px;
}

.main_form {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
}

.btn {
  flex:1;
  width: 300px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border: 2px solid black;
  border-radius: 15px;
  font-weight: bold;
  font-size: 26px;
  box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.btn-small {
  width: 150px;
  height: 40px;
  line-height: 40px;;
  font-size: 18px;
}

.btn-medium {
  width: 220px;
  height: 60px;
  line-height: 60px;;
  font-size: 22px;
}

.btn-black {
  background-color: black;
  color: white;
}

.btn-slim {
  height: 45px;
  line-height: 45px;;
}

.no-bottom-radius {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.list {
  display: none;
  position: absolute;
  width: 100%;
}

.list-element {
  border: 2px solid #ddd;
  border-top: none;
  width: 100%;
  height: 45px;
  line-height: 45px;
  font-size: 16px;
  padding-left: 20px;
  cursor: pointer;
}

.list-element:hover {
  background-color: #f0f0f0;
}

.list-element:last-child {
  border-radius: 0 0 15px 15px; /* Border-radius for the last list element */
}

.table {
  width: 100%;
}

tr, th, td {
  border: 2px solid #ddd;
  border-collapse: collapse;
}

.table-code {
  width: 100px;
  height: 35px;
  border: 2px solid #ddd;
  border-radius: 15px 15px 0 0;
  line-height: 35px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  border-bottom: none;
  text-transform: uppercase;
}

.table-code-black {
  background-color: black;
  color: white;
}

.table-head {
  background-color: black;
  color: white;
  height: 45px;
  text-align: center;
}

.table-company {
  background-color: #c1c1c1;
  color: white;
  height: 35px;
}

.table-company td {
  padding-left: 15px;
  font-weight: bold;
}

.table-datas {
  height: 80px;
  text-align: center;
}

.table-data-product {
  text-align: left;
  padding-left: 15px;
}

.pris {
  height: 50px;
  width: 85%;
  padding-left: 10px;
}

@media only screen and (max-width: 767px) {
  .btn {
      width: 180px;
      font-size: 18px;
      height: 60px;
      line-height: 60px;
  }
}