input,
select,
h1,
h2,
h3,
h4,
h5,
li,
p {
  font-weight: 300;
}

.col-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.row-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
}

.col {
  width: 90%;
  display: flex;
  flex-direction: column;
}

.h-center {
  justify-content: center;
}



/* Margins ==================================== */
.gap-1 {
  gap: 1rem;
}

.m-0 {
  margin: 0;
}

.mx-1 {
  margin-inline: 1rem;
}

.my-1 {
  margin-block: 1rem;
}

.my-2 {
  margin-block: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.ml-1 {
  margin-left: 1rem;
}

.mr-1 {
  margin-right: 1rem;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-left: auto;
}

/* Padding ===================================*/

.pxy {
  padding: 0.75rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pt-1 {
  padding-top: 1rem;
}

.px-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.p-1 {
  padding: 1rem;
}

.ps-1 {
  padding-left: 1rem;
}

/* Layout ====================================*/
.row {
  display: flex;
  flex-direction: row;
}

.column {
  display: flex;
  flex-direction: column;
}

.content-between {
  justify-content: space-between;
}

.content-center {
  display: flex;
  justify-content: center;
}

.ml-auto {
  margin-left: auto;
}

/* Sizing ======================================== */
.w-100 {
  width: 100%;
}

.w-60 {
  width: 60%;
}

.w-50 {
  width: 50%;
}

.w-40 {
  width: 40%;
}

.w-25 {
  width: 25%;
}

.w-95 {
  width: 95%;
}

/* Text ===================================*/
.text-right {
  text-align: end;
}

.text-left {
  text-align: start;
}

.text-center {
  text-align: center;
}

.underline {
  text-decoration: underline;
}

/* Visibility =======================================*/
.opacity-0 {
  opacity: 0;
}

.opacity-1 {
  opacity: 1;
}

.d-none {
  display: none;
}

.hidden {
  display: none;
}

.d-flex {
  display: flex;
}

/* Form Styles ====================================================== */

.form-style {
  display: block;
  width: 100%;
  height: auto;
  padding: 0.5rem 0.75rem;
  font-size: 1.4rem;
  font-family: "National";
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0.5rem 0rem;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 4 5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 0L0 2h4L2 0zm0 5L0 3h4L2 5z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 8px 10px;
}

.input-label {
  font-family: National;
  font-size: 1.3rem;
  padding: 0 0.2rem;
  font-weight: 400;
  color: #495057;
  text-align: left;
}

.divider {
  border-top: 1px solid gray;
  margin: 1rem 0 2rem 0;
}

/* Buttons */

.cursor-pointer {
  cursor: pointer;
}

.btn {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 400;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  user-select: none;

  background-color: #0d6efd;
  border: 1px solid #0d6efd;
  border-radius: 0.375rem;

  padding: 0.375rem 0.75rem;
  transition: all 0.15s ease-in-out;
  cursor: pointer;
}

.btn:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.radio-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0.5rem 1em;
  border: 1px solid #cbcbcb;
  background: white;
  border-radius: 0.25rem;
  cursor: pointer;
  user-select: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.radio-btn input {
  display: none;
}

.radio-btn input:checked+* {
  font-weight: bold;
}

.radio-btn:has(input:checked) {
  border: 0;
  background: #0d6efd;
  color: white;
}

.spacer {
  flex-grow: 1;
}

/* Colors ==========================================*/

.c-gray {
  color: rgb(140, 140, 140);
}

.c-blue {
  color: blue;
}

.ahava-blue {
  color: #004baf;
}

.fall-red {
  color: #8f1d1b;
}

.fall-green {
  color: #697c31;
}

.fall-brown {
  color: #522f2b;
}

.txt-blk {
  color: black;
}

.txt-purple {
  color: rgb(216, 142, 31);
}

.bg-blue {
  background: blue;
}

.bg-red {
  background: red;
}

.white-box {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  margin-top: 0.5rem;
}

.my-bg-light {
  background-color: #f6f6f6;
}

.pointer {
  cursor: pointer;
}

/* Removes rounded on small screens */
.rounded {
  border-radius: 0 !important;
}

@media (min-width: 800px) {
  .rounded {
    border-radius: var(--bs-border-radius) !important;
  }

  .col {
    width: 800px;
  }

}

@media (max-width: 800px) {
  .w-60 {
    width: 90%;
  }

  .w-25 {
    width: 90%;
  }

}