.shadow-1 {
  box-shadow: 2px 2px 2px #0a3a65;
}
.shadow-2 {
  box-shadow: 4px 4px 16px #434d56;
}
.shadow-3 {
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0);
}
.shadow-4 {
  box-shadow: 0 24px 28px -12px black;
}
.shadow-5 {
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}
.shadow-6 {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px 2px, rgba(0, 0, 0, 0.3) 10px 10px 3px 2px;
}
.text-shadow-1 {
  text-shadow: 2px 2px 2px #484848bf;
}
.ny-radio-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.ny-radio-block {
  padding: 4px;
  display: flex;
  flex-direction: column-reverse;
  gap: 4px;
  align-items: center;
}
.ny-radio-block-active {
  cursor: pointer;
}
.ny-radio-label {
  font-size: 0.8em;
}
.ny-radio-button {
  width: 15px;
  height: 15px;
  border-style: solid;
  border-width: 2px;
  border-radius: 50%;
  border-color: lightgrey;
}
.ny-radio-selected .ny-radio-button {
  background-color: #2b6295;
  border-color: #2b6295;
}
.ny-radio-unselected .ny-radio-label {
  font-weight: bold;
}
