#firing_range_logo {max-height:120px;}

.data-row, .tcc-sort, .si-data-row { cursor:pointer; }
div.tcc-form-container {
	max-height: 410px;
	overflow-y: scroll;
}
form.tcc-form {
	border: 1px solid #ececec;
}
caption.tableexport-caption{ text-align:left; }

.tcc-fieldset-name {
	width: 9.5rem;
}

legend {
	font-weight: 600;
	border: 1px solid #ececec;
	padding: 4px;
}

.tcc-textarea-tall {
	min-height:200px;
}

h1 { font-size: clamp(1rem, 3vw + 1rem, 4rem); }

/******************************************************************************
 * Radio buttons look like checkmarks
 *****************************************************************************/
.tcc-checkmark {

}

.tcc-checkmark {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 0.1rem;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2rem;
  width: 2rem;
  transition: all 0.15s ease-out 0s;
  background: #cbd1d8;
  border: 1px solid #004d33;
  border-radius:50%;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  outline: none;
  position: relative;
}
.tcc-checkmark:hover {
  background: #9faab7;
}
.tcc-checkmark:checked {
  /*background: #40e0d0;*/
  background: #004d33;
}
.tcc-checkmark:checked::before {
  width: 2rem;
  height: 2rem;
  display:flex;
  content: '\f00c';
  font-size: 2rem;
  font-weight:bold;
  position: absolute;
  align-items:center;
  justify-content:center;
  font-family:'Font Awesome 6 Free';
}
.tcc-checkmark:checked::after {
  -webkit-animation: tcc-click-expand-wave 0.65s;
  -moz-animation: tcc-click-expand-wave 0.65s;
  animation: tcc-click-expand-wave 0.65s;
  background: #40e0d0;
  content: '';
  display: block;
  position: relative;
}

@keyframes tcc-click-expand-wave {
  0% {
    height: 40px;
    width: 40px;
    opacity: 0.35;
    position: relative;
  }
  100% {
    height: 200px;
    width: 200px;
    margin-left: -80px;
    margin-top: -80px;
    opacity: 0;
  }
}