:root {
  --font-family: "Plus Jakarta Sans", sans-serif;
  --color-alpha: #5046e5;
  /* Purple */
  --color-alpha-dark: #281eba;
  --color-alpha-text: #c7d2fe;
  --color-alpha-text-highlight: #fff;


  --link-color: var(--color-alpha);

  --gray-1: #f8fafc;
  --gray-2: #e6e6e6;
  --gray-3: #f9fafb;

  --border-radius-1: 5px;
  --border-radius-2: 10px;
  --border-radius-3: 15px;

  --border-width-default: 1px;
  --border-color-default: --var(color-alpha);
  --bold-font-weight: 600;

  /* These are for code highlighting and come from Tailwind */
  --color-gamma: #1e293b;
  /* Dark Navy Purple */
  --color-gamma-text: #fff;
  --color-zeta: #cbd5e1;
  /* Light Gray */
  --color-delta: #f471b5;
  /* Pink */
  --color-epsilon: #7dd3fc;
  /* Baby Blue */

  --color-rgs: #F4542C;

  /* For form styling */

  --bg-primary: var(--color-alpha);
  --bg-primary-dark: var(--color-alpha-dark);
  --form-input-border-color-focus: var(--color-alpha);

  --form-input-border-color: #e5e7eb;
  --form-input-border-color-invalid: rgba(239, 68, 68);

  --form-input-border-width: 2px;
  --form-input-border-width-small-screens: 0 0 1px 0;

  --form-input-border-radius: .3rem;
  --form-input-border-radius-small-screens: 0;

  --form-input-padding-small-screens: 0.5rem 0rem;
  --form-input-padding: 0.7rem;

  --form-input-height: 3rem;
  --form-select-line-height: 1.2rem;
  --form-input-width: 100%;

  --form-label-font-size: 1rem;
  --form-bold-font-weight: 600;
}

body {
  font-family: var(--font-family);
}

a {
  color: var(--link-color);
}

/* Color Classes */
.text-workable {
  color: var(--color-text-workable);
}

.button-workable {
  background-color: #30695f !important;
  color: white !important;
}

.header-workable {
  background-color: #131f25 !important;
}

.bg-alpha {
  background-color: var(--color-alpha);
}

a.bg-alpha:hover {
  background-color: var(--color-alpha-dark);
}

.bg-gray-1 {
  background-color: var(--gray-1);
}

.bg-rgs {
  background-color: var(--color-rgs);
  color: #FFE5DD;
}

.bg-rgs:hover {
  background-color: #D13F13;
  color: #fff;
}

/* Color Groups */

.color-group-zeus>.active,
.color-group-zeus>*:hover {
  background: var(--color-gamma);
  color: var(--color-gamma-text);
  transition: background-color 0.3s ease;
}

.color-group-odin {
  &>* {
    color: rgba(0, 0, 0, 0.4);
  }

  &>*:hover,
  &>*.active {
    color: var(--color-gamma);
  }
}

.group-odin {
  ul {
    padding-left: 20px;
  }

  a {
    color: rgba(0, 0, 0, 0.5);
  }

  a:hover,
  a.active {
    color: rgba(0, 0, 0, 0.9);
  }

  a.active {
    font-weight: bold;
  }
}

/* UTILITIES */


/* Shimmer */

shimmer,
.shimmer {
  min-height: 20px;
  background: #f6f7f8;
  background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-repeat: repeat-y;
  background-size: 100% 50px;
  position: relative;

  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: placeholderShimmer;
  -webkit-animation-timing-function: linear;
}

@-webkit-keyframes placeholderShimmer {
  0% {
    background-position: -468px 0;
  }

  100% {
    background-position: 468px 0;
  }
}

.htmx-indicator {
  display: none;
}

.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
  margin-left: 4px;
  width: 17px;
  animation: expandWidth 0.3s forwards;
}

.htmx-request .htmx-collapse {
  display: none;
}

/* Color Classes Airtask */
.bg-alpha-airtasker {
  background-color: #E5E6EC;
  color: #081353;
}

a.bg-alpha-airtasker:hover {
  background-color: #2d63f1;
  color: white;
}

.bg-show-airtasker {
  background-color: #3369f3;
  color: white;
}

.bg-show2-airtasker {
  background-color: #E5E6EC;
  color: #081353;
}


.bg-alpha-tasker {
  background-color: #f4f7fe;
  color: #2d63f1;
}

.bg-alpha-home-container {
  background-color: #f9f3ee;
  color: #081353;
  border: 1px solid #f9f3ee;
}

.bg-alpha-button-container {
  background-color: #2d63f1;
  color: white;
  border: 1px solid #2d63f1;
}

.bg-gamma-button-container {
  background-color: #081353;
  color: white;
  border: 1px solid #081353;
}

.bg-show {
  background-color: #3369f3;
}

.bg-show-2 {
  background-color: #eaf0fe;
}

.text-alpha {
  color: #081353;
}

.text-gamma {
  color: #2d63f1;
}


input[type="radio"]:checked+label.radio-container {
  background-color: #d4edda;
  border-color: #28a745;
  color: white;
}

input[type="radio"]:checked+label.radio-container svg {
  color: white;
}

label.radio-container svg {
  color: #081353;
}

.radio-container svg circle,
.radio-container svg path {
  stroke: currentColor;
}

input[type="radio"] {
  display: none;
}

.radio-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 4rem 2rem;
  border: 2px solid var(--gray-2);
  border-radius: var(--border-radius-1);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  color: #081353;
}

input[type="radio"]:checked+label.radio-container {
  border-color: #081353;
  background-color: #081353;
}

.radio-container svg {
  transition: fill 0.3s ease;
}




.htmx-request .shown-while-loading {
  display: block;
}

.htmx-request .hidden-while-loading {
  display: none;
}

.shown-while-loading {
  display: none;
}

.htmx-request.faded-while-loading,
.htmx-request .faded-while-loading {
  opacity: 0.6
}

@media (min-width: 320px) and (max-width: 374px) {
  .intro-title {
    font-size: 14px;
  }

  .intro-title2 {
    font-size: 18px;
  }

  .intro-title3 {
    font-size: 16px;
  }

  .intro-content {
    font-size: 13px;
  }

  .intro-padding-1 {
    padding-top: 20px;
  }

  .intro-padding-2 {
    padding-top: 25px;
  }

  .intro-padding-3 {
    padding-top: 30px;
  }

  .intro-padding-4 {
    padding-top: 100px;
  }

  .full-height {
    height: 100%;
  }

}

@media (min-width: 375px) and (max-width: 424px) {
  .intro-title {
    font-size: 16px;
  }

  .intro-title2 {
    font-size: 20px;
  }

  .intro-content {
    font-size: 16px;
  }

  .intro-padding-1 {
    padding-top: 20px;
  }

  .intro-padding-2 {
    padding-top: 25px;
  }

  .intro-padding-3 {
    padding-top: 30px;
  }

  .intro-padding-4 {
    padding-top: 120px;
  }

  .full-height {
    height: 100%;
  }

  .intro-title3 {
    font-size: 18px;
  }
}

@media (min-width: 425px) and (max-width: 639px) {
  .intro-title {
    font-size: 17px;
  }

  .intro-title2 {
    font-size: 26px;
  }

  .intro-content {
    font-size: 17px;
  }

  .intro-padding-1 {
    padding-top: 30px;
  }

  .intro-padding-2 {
    padding-top: 25px;
  }

  .intro-padding-3 {
    padding-top: 30px;
  }

  .intro-padding-4 {
    padding-top: 120px;
  }

  .full-height {
    height: 100%;
  }

  .intro-title3 {
    font-size: 20px;
  }
}