a:focus,
button:focus {
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.custom_checkbox_container {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 20px;
  height: 20px;
  margin: 0;
  white-space: nowrap;
  padding-left: 30px;
}
.custom_checkbox_container.big {
  width: 32px;
  height: 32px;
  padding-left: 42px;
}
.custom_checkbox_container.big .checkmark {
  width: 32px;
  height: 32px;
}
.custom_checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom_checkbox_container input:checked ~ .checkmark {
  background-color: var(--primary);
}
.custom_checkbox_container input:checked ~ .checkmark svg {
  display: block;
}
.custom_checkbox_container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid var(--primary);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.custom_checkbox_container .checkmark svg {
  display: none;
}

.custom_radio_container {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 20px;
  height: 20px;
  margin: 0;
  white-space: nowrap;
  padding-left: 30px;
}
.custom_radio_container.big {
  width: 32px;
  height: 32px;
  padding-left: 42px;
}
.custom_radio_container.big .checkmark {
  width: 32px;
  height: 32px;
}
.custom_radio_container.big .checkmark::after {
  width: 20px;
  height: 20px;
}
.custom_radio_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom_radio_container input:checked ~ .checkmark::after {
  display: block;
}
.custom_radio_container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.custom_radio_container .checkmark::after {
  content: '';
  position: absolute;
  background-color: var(--primary);
  border-radius: 50%;
  display: none;
}

.app {
  height: 100vh;
}

#app {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}
