*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  padding: 50px;
  display: flex;
  align-items: start;
  justify-content: center;
  -background-color: #D3D3D3;
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

ol {
  margin-left: 30px;
}

.form-heading {
  padding: 10px 0px 40px;
  text-align: center;
  width: 550px;
}

.form-info {
  padding: 10px 0px 10px;
  text-align: justify;
  width: 550px;
}

.logo-park88 {
  display: block;
  background: url("/park88_logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  padding: 0px;
  margin: 0px;
  width: 300px;
  height: 100px;
  align-items: center;
  text-align: right;
}

.input-title {
  width: 150px;
  margin-right: 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.input, .button, .select, .form-heading {
  width: 550px;
}

.input {
  border: 1px solid #66cc66;
  border-radius: 6px;
  padding: 10px 15px;
  background-color: ##ccc;
  color: #000000;
  font-family: inherit;
  font-size: inherit;
  font-weight: 300;
  -webkit-appearance: none;
  appearance: none;
}

.input:focus {
  border-color: #ff9933;
  outline: none;
}

.select {
  position: relative;
  border: 1px solid #66cc66;
  border-radius: 6px;
  padding: 10px 15px;
  background-color: ##ccc;
  color: #000000;
  font-family: inherit;
  font-size: inherit;
  font-weight: 300;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.select:focus {
  outline: none;
  border: 1px solid #ff9933;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 15px;
  width: 14px;
  height: 8px;
  background-image: url("images/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

option {
  font-weight: inherit;
  font-family: inherit;
  font-size: inherit;
}

.button {
  background-color: #66cc66;
  display: block;
  min-width: 180px;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 9px 15px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
  font-family: inherit;
  transition: background-color 0.2s linear;
  margin: 10px 0;
}

.button-vote-green {
  background-color: #66cc66;
  display: inline-block;
  width: 150px;
  margin: 10px 0;
}

.button-vote-red {
  background-color: #cc6666;
  display: inline-block;
  width: 150px;
  margin: 10px 0;
}

.button-vote-blue {
  background-color: #66b3cc;
  display: inline-block;
  width: 150px;
  margin: 10px 0;
}

.button-home {
  background-color: #CFD1D0;
}

.button:hover {
  background-color: #ff9933;
  color: #000000;
  cursor: pointer;
  transition: background-color 0.2s linear;
}

.button:focus-visible {
  border: 2px solid #ff9933;
  outline: none;
}

.button:focus {
  border: 2px solid #ff9933;
  outline: none;
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hidden {
  display:none;
}

#loader {
  width: 350px;
  margin-top: 25px;
  margin-left: auto;
  text-align: center;
}

@media (max-width: 768px) {
  body {
    padding: 30px;
  }

  label {
    display: block;
  }

  .input-title {
    margin-right: auto;
    margin-bottom: 10px;
  }

  .input, .button, .select, .input-title, .form-heading, .form-info {
    display: block;
    width: 100%;
  }

  #loader {
    width: 100%;
  }
}