*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  color: #384047;
}

form {
  width: 360px;
  margin: 2px auto 0px auto;
  padding: 10px 5px;
  background: #f4f7f8;
  border-radius: 8px;
  position: relative;
}

.form_block {
  border-radius: 25px;
  background: #f4f7f8;
  padding: 20px;
}

h1 {
  margin: 0 0 20px 0;
  text-align: center;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea,
select {
  background: rgba(255,255,255,0.1);
  border: none;
  font-size: 16px;
  height: auto;
  margin: 0;
  outline: 0;
  padding: 10px;
  width: 100%;
  background-color: #e8eeef;
  color: #8a97a0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
  margin-bottom: 10px;
}

::placeholder {
  font-style: italic;
  opacity: 50%;
}

input[type="radio"],
input[type="checkbox"] {
  margin: 0 2px 4px 0;
}

select {
  padding: 6px;
  height: 32px;
  border-radius: 2px;
  margin: 10 px;
}

button {
  padding: 19px 39px 18px 39px;
  color: #FFF;
  background-color: #FFE024;
  font-size: 18px;
  text-align: center;
  font-style: normal;
  border-radius: 5px;
  width: 100%;
  border: 1px solid #FFE024;
  border-width: 1px 1px 3px;
  box-shadow: 0 -1px 0 rgba(255,255,255,0.1) inset;
  margin-bottom: 10px;
}

fieldset {
  margin-bottom: 30px;
  border: none;
}

legend {
  font-size: 1.4em;
  margin-bottom: 5px;
}

label {
  display: block;
  margin-bottom: 4px;
}

label.light {
  font-weight: 300;
  display: inline;
}

.wrap {
  display: flex;	
  flex-wrap: wrap;
}

.center {
  margin: auto;
  width: 1800px;
  padding: 10px;
}

.number {
  background-color: #FFE024;
  color: #fff;
  height: 30px;
  width: 30px;
  display: inline-block;
  font-size: 0.8em;
  margin-right: 4px;
  line-height: 30px;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255,255,255,0.2);
  border-radius: 100%;
}

.map {
  margin:10% auto 10px 0%;
  z-index: -5;
  position: absolute;
}

.small {
  background: rgba(255,255,255,0.1);
  border: none;
  font-size: 16px;
  height: 50px;
  outline: 0;
  padding: 15px;
  width: 96px;
  background-color: #e8eeef;
  color: #8a97a0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
  text-align: center;
}

.thick-button {
	margin-bottom: 5px;
    display: inline-block;
    padding: 10px 30px; /* Gör knappen större */
    font-size: 18px; /* Gör texten större */
    font-weight: bold; /* Gör texten tjockare */
    text-align: center;
    text-decoration: none;
    background-color: #FFE024; /* Behåller din gula färg */
    color: #000; /* Svart text för kontrast */
    border-radius: 8px; /* Rundade hörn */
    border: 2px solid #FFD700; /* Lägger till en gul kant */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Ger en liten skugga */
}

.thick-button:hover {
    background-color: #FFD700; /* Lite mörkare vid hover */
    cursor: pointer;
}

.note {
  font-size: 90%;
  opacity: 70%;
}

.choice {
  position: relative;
  vertical-align: middle;
  padding: 50px 0;
  line-height: 100px;
}

.formchoice {
  position: relative;
  vertical-align: middle;
  margin: auto;
}

@media screen and (min-width: 480px) {

  form {
    max-width: 480px;
  }

}

