﻿/* Colors
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Fonts
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Layout
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Flex Mixins
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Links
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Animations
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Other Mixins
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Color Themes
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.dropdown-container {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-radius: 4px;
  padding: 24px 4rem;
  box-shadow: 0px 16px 40px rgba(10, 51, 96, 0.15);
}
.dropdown-container label {
  color: #2d2d2d;
  font-family: "96 Sans", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.33333;
  text-transform: none;
  text-align: center;
  flex: 1 1 auto;
}
.dropdown-container .button {
  background-color: #0077B3;
  color: white;
  width: 100%;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.3s ease-in-out;
  border: 1px solid #0077B3;
  font-size: 1.8rem;
  box-sizing: border-box;
  line-height: 1.2;
  padding: 1.25rem 1rem;
  flex: 0 0 auto;
}
@media (min-width: 781px) {
  .dropdown-container .button {
    text-wrap: nowrap;
    padding: 1.25rem 4rem;
    width: auto;
  }
}
.dropdown-container .button:focus {
  outline-offset: -3px !important;
  outline: 3px dashed white !important;
}
.dropdown-container .button:hover {
  background-color: #2862a4;
}
.dropdown-container .select-box {
  width: 100%;
}
.dropdown-container .disable-link {
  pointer-events: none;
  opacity: 0.65;
}

@media (min-width: 781px) {
  .state-dropdown .button {
    min-width: 30rem;
  }
}
@media only screen and (min-width: 1135px) {
  .state-dropdown {
    width: 83.3333333333%;
    padding: 0px 64px;
    max-width: 1058.3333333333px;
  }
  .dropdown-container {
    flex-direction: row;
  }
  .dropdown-container label {
    text-align: left;
  }
  .dropdown-container .select-box {
    flex: 0 0 calc(30ch + 6rem);
  }
  .dropdown-container .button {
    min-width: 20rem;
  }
  .dropdown-container .dropdown-label {
    margin-right: auto;
  }
}
