:root {
  --input-range-width: 400px;
}

html, body {
  height: 100%;
}

.vertical-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 95vh;
}

#main {
  min-height: 95vh;
}

.custom-border {
  border: 1px solid black;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.btn {
  width: 150px;
}

.content {
  flex: 1;
  margin-bottom: 60px; /* Adjust this value to create space between content and footer */
}

datalist {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  writing-mode: vertical-lr;
  width: var(--input-range-width);
}

input[type="range"] {
  width: var(--input-range-width);
  margin: 0;
}

option {
  padding: 0;
}

.custom-option {
  display: inline-block;
  padding: 10px;
  margin: 5px;
  border: 1px solid black;
  border-radius: 5px;
  cursor: pointer;
}

.custom-option.active {
  background-color: black;
  color: rgb(146, 19, 19);
}

.custom-option.active input[type="checkbox"]+label {
  color: white;
}

.custom-option:not(.active) {
  background-color: white;
  color: black;
}

textarea.custom-option {
  padding-bottom: 0px;
  resize: none;
}

.custom-option-1{
  flex-grow: 1;
  margin: 5px;
  border-radius: 5px;
  border: 1px solid black;
}

.custom-option-1:nth-child() {
  display: flex;
}

.custom-option-1 .form-check-label {
  padding: 10px;
}

@media (max-width: 600px) {
  div[class*='form-check-inline'] {
    display: block !important;
  }
  #main {
    min-height: 100vh;
  }
}
