/* Sticky footer
  https://devpractical.com/bootstrap-sticky-footer/
*/
.h-sbar{
  overflow-x: hidden;
}

/* button sizes */
.full33 {
  display: block;
  width: 33%;
}




/* https://www.geeksforgeeks.org/how-to-set-the-button-alignment-in-bootstrap/ */
.top-left {
    top: 0;
    left: 0;
}
  
.top-right {
    top: 0;
    right: 0;
}

.bottom {
    position: absolute;
    bottom: 0;
    left: 0;
}

.top-center {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
  
.bottom-left {
    bottom: 0;
    left: 0;
}
  
.bottom-center {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
  
.bottom-right {
    bottom: 0;
    right: 0;
}

.adjust-button {
    padding-bottom: 100px;
    padding-left: 30px;
    padding-right: 30px;
}


/* Radio button
  https://moderncss.dev/pure-css-custom-styled-radio-buttons/
*/
*, *:before, *:after {
  box-sizing: border-box;
}

.form-control {
  font-family: system-ui, sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 0.5em
}

input[type="radio"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    appearance: none;
    /* For iOS < 15 to remove gradient background */
    background-color: #fff;
    /* Not removed via appearance */
    margin: 0;
    font: inherit;
    color: #228b22;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid #228b22;
    border-radius: 50%;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}
.form-control + .form-control {
    margin-top: 1em;
}
input[type="radio"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #228b22;
}
input[type="radio"]:checked::before {
  transform: scale(1);
}
input[type="radio"]:focus {
  outline: max(2px, 0.15em) solid ;
  outline-offset: max(2px, 0.15em) #228b22;
}