.cira-portal-login {
  align-items: center;
  background-image: var(--bkgd-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFF;
  display: flex;
  justify-content: center;
  height: 80vh;
  position: relative;
  text-align: center;
}
.cira-portal-login:before {
  background: var(--overlay-color);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.cira-portal-login__container {
  position: relative;
  z-index: 2;
}
.cira-portal-login a {
  color: #FFF;
}
.cira-portal-login a:hover {
  color: #FFF;
  text-decoration: underline;
}
.cira-portal-login__form-group {
  margin-bottom: 0.5rem;
}
.cira-portal-login__title {
  color: #FFF;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  text-transform: uppercase;
}
.cira-portal-login form {
  text-align: center;
}
.cira-portal-login form label {
  display: none;
}
.cira-portal-login form .login-remember label {
  display: inline-block;
  margin-right: 0.5rem;
}
.cira-portal-login form .login-remember label input {
  width: auto;
}
.cira-portal-login form input {
  border: none;
  border-radius: 0;
  display: inline-block;
  margin: 0.25rem 0;
  max-width: 280px;
  padding: 0.5rem;
  width: 100%;
}
.cira-portal-login form input[type="submit"] {
  background: #000;
  border: none;
  border-radius: 24px;
  color: #FFF;
  font-size: 24px;
  font-weight: bold;
  height: 48px;
  line-height: 48px;
  max-width: none;
  padding: 0 48px;
  text-transform: uppercase;
  width: fit-content;
}
.cira-portal-login form .login-submit {
  margin-top: 30px;
}
.cira-top-bar {
  background: #5F9DDA;
  color: #FFF;
  display: flex;
  font-size: 16px;
  font-weight: 300;
  justify-content: space-between;
  line-height: 16px;
  padding: 12px 16px;
  width: 100%;
}
.cira-top-bar strong {
  color: inherit;
  font-weight: 500;
}
.cira-top-bar a {
  color: #FFF;
  display: inline-block;
  margin-left: 10px;
}
.cira-menu {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.cira-portal {
  --dark-blue: #016bb7;
  --blue: #5F9DDA;
  --green: #8AC13A;
  --yellow: #EDC041;
  --red: #9C1F60;
  --max-width: 1200px;
  display: flex;
  flex-direction: column;
}
.cira-portal p.centered {
  text-align: center;
}
.cira-portal .weather-bar {
  background: #EEE;
  min-height: 60px;
  position: relative;
}
.cira-portal .weather-bar .splw-main-wrapper {
  z-index: 1;
}
.cira-portal .weather-bar .portal-button {
  bottom: 0;
  font-size: 12px;
  padding: 0.25rem 0.5rem;
  position: absolute;
  right: 10px;
  transform: translateY(50%);
  z-index: 2;
}
.cira-portal .cira-weather {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.75rem 1rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #333;
}
.cira-portal .cira-weather--error {
  padding: 1rem;
  text-align: center;
  color: #666;
  font-style: italic;
}
.cira-portal .cira-weather__now {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.cira-portal .cira-weather__location {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}
.cira-portal .cira-weather__current {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cira-portal .cira-weather__icon {
  font-size: 24px;
  line-height: 1;
}
.cira-portal .cira-weather__temp {
  font-size: 24px;
  font-weight: 700;
}
.cira-portal .cira-weather__condition {
  font-size: 14px;
  color: #555;
}
.cira-portal .cira-weather__details {
  display: flex;
  gap: 1rem;
  font-size: 13px;
  color: #666;
}
.cira-portal .cira-weather__details span {
  white-space: nowrap;
}
.cira-portal .cira-weather__forecast {
  display: flex;
  gap: 0.75rem;
  border-left: 1px solid #ccc;
  padding-left: 1.5rem;
}
.cira-portal .cira-weather__forecast-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 48px;
}
.cira-portal .cira-weather__forecast-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.cira-portal .cira-weather__forecast-icon {
  font-size: 18px;
  line-height: 1;
}
.cira-portal .cira-weather__forecast-temps {
  font-size: 12px;
  white-space: nowrap;
}
.cira-portal .cira-weather__forecast-high {
  font-weight: 700;
}
.cira-portal .cira-weather__forecast-low {
  color: #888;
}
@media (max-width: 768px) {
  .cira-portal .cira-weather {
    flex-direction: column;
    gap: 0.75rem;
  }
  .cira-portal .cira-weather .cira-weather__now {
    flex-direction: column;
    gap: 0.5rem;
  }
  .cira-portal .cira-weather .cira-weather__details {
    flex-wrap: wrap;
    justify-content: center;
  }
  .cira-portal .cira-weather .cira-weather__forecast {
    border-left: none;
    border-top: 1px solid #ccc;
    padding-left: 0;
    padding-top: 0.75rem;
  }
}
.cira-portal .portal-button {
  background: var(--blue);
  border: none;
  border-radius: 10px;
  color: #FFF;
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  padding: 0.5rem 1rem;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.1s ease;
  width: fit-content;
}
.cira-portal .portal-button--primary {
  background: var(--green);
}
.cira-portal .portal-button--centered {
  display: block;
  margin: 0 auto;
}
.cira-portal .portal-button:hover {
  background-color: #2D69B1;
  text-decoration: none;
}
.cira-portal__menu {
  color: #000;
  column-gap: 20px;
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: right;
  top: 0;
  z-index: 1000;
}
.cira-portal__menu li {
  display: inline-block;
  flex-grow: 1;
  text-align: center;
}
.cira-portal__menu li:first-child {
  border-left: none;
}
.cira-portal__menu li a {
  color: #000;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  padding: 0.5rem;
  text-align: center;
  text-decoration: none;
}
.cira-portal__menu li a:hover {
  color: #2D69B1;
}
.cira-portal__menu-item {
  transition: all 0.1s ease;
}
.cira-portal__menu-item--back-to-main {
  background: #9C1F60;
  color: #FFF !important;
}
.cira-portal__menu-item--back-to-main a {
  color: #FFF !important;
}
.cira-portal__interior-header {
  align-items: center;
  background-color: var(--dark-blue);
  color: #000;
  column-gap: 40px;
  display: flex;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  text-align: center;
  width: 100%;
  /*&:after {
            background: #8AC13B;
            bottom: 0;
            content: "";
            display: block;
            height: 5px;
            left: 50%;
            position: absolute;
            transform: translateX(-50%);
            width: 200px;
        }*/
}
.cira-portal__interior-header--short .cira-portal__interior-header__image {
  min-height: 100px;
}
.cira-portal__interior-header__image {
  background-color: #015c9e;
  background-image: var(--bkgd-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-basis: 50%;
  min-height: 240px;
  position: relative;
}
.cira-portal__interior-header__logo {
  flex-basis: 50%;
  position: relative;
  /*img.logo-top {
                display: block;
                height: auto;
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                z-index: 1;
            }*/
}
.cira-portal__interior-header__logo .masked-image {
  height: 100%;
  width: 100%;
}
.cira-portal__interior-header__logo .logo-btm {
  height: 600px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
}
.cira-portal__interior-header__copy {
  color: #FFF;
  flex-basis: 50%;
  padding: 1rem;
  text-align: left;
}
.cira-portal__interior-header__copy h1 {
  color: #FFF;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 0;
}
.cira-portal__interior-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 0;
}
.cira-portal__interior-header p {
  padding-top: 0.5rem;
}
.cira-portal__content {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 3rem 1rem 0;
  text-align: left;
}
.cira-portal__content h1 {
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 1rem;
  padding: 0.5rem;
  text-align: center;
}
.cira-portal__content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}
.cira-portal__content--interior {
  padding-bottom: 60px;
  padding-top: 0;
  width: 100%;
}
.cira-portal__social {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 3rem 1rem 2rem;
  text-align: center;
}
.cira-portal__social h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cira-portal__social__icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.cira-portal__social__icon {
  background: #5F9DDA;
  border-radius: 10px 10px 10px 0;
  color: #FFF;
  font-size: 42px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  transition: all 0.1s ease;
  width: 75px;
}
.cira-portal__social__icon:hover {
  background-color: #2D69B1;
  color: #FFF;
  text-decoration: none;
}
.cira-portal__social__icon.facebook:before {
  content: "\f09a";
  font-family: "FontAwesome";
}
.cira-portal__social__icon.instagram:before {
  content: "\f16d";
  font-family: "FontAwesome";
}
.cira-portal__social__icon.twitter:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="white"><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"/></svg>');
  height: 45px;
  width: 45px;
  display: inline-block;
  position: relative;
  top: 7px;
}
.cira-portal__social__icon.linkedin:before {
  content: "\f08c";
  font-family: "FontAwesome";
}
.cira-portal__buttons {
  display: block;
  justify-content: center;
  list-style-type: none;
  margin: 1rem auto;
  max-width: calc(var(--max-width) - 300px);
  padding: 0 0 0.5rem;
  width: 100%;
}
.cira-portal__buttons ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  padding: 0 20px;
  width: 100%;
}
.cira-portal__buttons li {
  width: 100%;
}
.cira-portal__buttons li a {
  align-items: center;
  aspect-ratio: 1;
  background: #5F9DDA;
  border: 1px solid #FFF;
  border-radius: 25px 25px 25px 0;
  color: #FFF;
  display: flex;
  flex-basis: 25%;
  flex-grow: 1;
  font-size: 28px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.2;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.1s ease;
}
.cira-portal__buttons li a:hover {
  text-decoration: none;
  background-color: #2D69B1;
}
.cira-portal__buttons li:nth-child(4n + 2) a {
  background-color: #8AC13A;
  color: #FFF;
}
.cira-portal__buttons li:nth-child(4n + 2) a:hover {
  background-color: #6E9F2D;
}
.cira-portal__buttons li:nth-child(4n + 3) a {
  background-color: #EDC041;
  color: #FFF;
}
.cira-portal__buttons li:nth-child(4n + 3) a:hover {
  background-color: #D4A036;
}
.cira-portal__buttons li:nth-child(4n + 4) a {
  background-color: #9C1F60;
  color: #FFF;
}
.cira-portal__buttons li:nth-child(4n + 4) a:hover {
  background-color: #7F1A4B;
}
.cira-portal__tiles {
  align-items: flex-start;
  background-color: #2D69B1;
  display: flex;
  font-size: 0;
  gap: 0;
  justify-content: center;
  margin: 1rem auto 0;
  position: relative;
  width: 100%;
}
.cira-portal__tiles:before {
  background: var(--bg-color);
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  position: absolute;
  width: 50%;
  z-index: 1;
}
.cira-portal__tiles__tile {
  align-items: center;
  background: #ECA944;
  color: #FFF;
  display: flex;
  flex-basis: 50%;
  flex-direction: column;
  flex-grow: 1;
  font-size: 28px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.2;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.1s ease;
  z-index: 2;
}
.cira-portal__tiles__tile--full-width {
  flex-basis: 100%;
}
.cira-portal__tiles__tile:nth-child(1) {
  background-color: #2D69B1;
  color: #FFF;
}
.cira-portal__tiles__tile:nth-child(1) h2 {
  color: #FFF;
  font-weight: 700;
}
.cira-portal__tiles__tile:nth-child(2) {
  background-color: #000;
  color: #FFF;
}
.cira-portal__tiles__tile:nth-child(2) h2 {
  color: #FFF;
  font-weight: 700;
}
.cira-portal__tiles__tile p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-align: left;
  text-transform: none;
}
.cira-portal__tiles__tile .announcement {
  display: flex;
  flex-direction: column;
  margin-top: 0.25rem;
  max-width: var(--max-width);
  padding: 10px 0;
  text-align: left;
  text-transform: none;
  width: 100%;
}
.cira-portal__tiles__tile .announcement h3 {
  color: #FFF;
  display: block;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.cira-portal__tiles__tile .announcement p,
.cira-portal__tiles__tile .announcement ul,
.cira-portal__tiles__tile .announcement ol {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cira-portal__tiles__tile .announcement p a,
.cira-portal__tiles__tile .announcement ul a,
.cira-portal__tiles__tile .announcement ol a {
  color: #FFF;
  text-decoration: underline;
}
.cira-portal__tiles__tile .announcement .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  width: 100%;
}
.cira-portal__tiles__tile .announcement .gallery .gallery-item {
  border: 1px solid #FFF;
  border-radius: 5px;
  max-width: 150px;
}
.cira-portal__tiles__tile .announcement .gallery .gallery-item img {
  display: block;
  height: auto;
  width: 100%;
}
.cira-portal__tiles__tile .portal-button {
  font-size: 16px;
}
.cira-portal .cira-portal-table {
  width: 100%;
}
.cira-portal .cira-portal-table tr {
  border-bottom: 1px solid #CCC;
}
.cira-portal .cira-portal-table tr:first-child {
  border-bottom: none;
}
.cira-portal .cira-portal-table th {
  background: #5F9DDA;
  color: #FFF;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  padding: 0.5rem;
  text-align: left;
}
.cira-portal .cira-portal-table th.center {
  text-align: center;
}
.cira-portal .cira-portal-table th:last-child {
  text-align: right;
}
.cira-portal .cira-portal-table td {
  font-size: 16px;
  padding: 0.5rem;
  text-align: left;
}
.cira-portal .cira-portal-table td.center {
  text-align: center;
}
.cira-portal .cira-portal-table td:last-child {
  text-align: right;
}
.cira-portal .cira-portal-table td .responses {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cira-portal .cira-portal-table td .responses .responses__response {
  background: #FFF;
  border: 1px solid #CCC;
  border-radius: 5px;
  font-size: 14px;
  padding: 0.75rem 1rem;
  width: 100%;
}
.cira-portal .cira-portal-table td .responses .responses__response small {
  color: #999;
  display: block;
  font-size: 12px;
  margin-top: 0.5rem;
}
.cira-portal .cira-portal-table td textarea.response {
  height: 150px;
}
.cira-portal .cira-portal-table td .button {
  background: #5F9DDA;
  border: none;
  border-radius: 10px;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  padding: 0.5rem 1rem;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.1s ease;
}
.cira-portal .cira-portal-table td .button:hover {
  background-color: #2D69B1;
  text-decoration: none;
}
.cira-portal .cira-portal-table td .pill {
  background: #96BF51;
  border-radius: 10px 10px 10px 0;
  color: #FFF;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  padding: 0.25rem 0.5rem;
  text-align: center;
  text-transform: uppercase;
}
.cira-portal .cira-portal-table td .pill.red,
.cira-portal .cira-portal-table td .pill.cancelled {
  background: #9C1F60;
}
.cira-portal .cira-portal-table td .pill.yellow,
.cira-portal .cira-portal-table td .pill.pending,
.cira-portal .cira-portal-table td .pill.new {
  background: #EDC041;
}
.cira-portal .cira-portal-table td .pill.green,
.cira-portal .cira-portal-table td .pill.active,
.cira-portal .cira-portal-table td .pill.in-progress {
  background: #8AC13A;
}
.cira-portal .cira-portal-table td .pill.blue,
.cira-portal .cira-portal-table td .pill.completed {
  background: #2D69B1;
}
.cira-portal .cira-portal-table--form tr:first-child {
  border-bottom: 1px solid #CCC;
}
.cira-portal .cira-portal-table--form td {
  vertical-align: top;
}
.cira-portal .cira-portal-table--form td select {
  border: 1px solid #CCC;
  border-radius: 5px;
  font-size: 16px;
  padding: 0.5rem;
  width: fit-content;
}
.cira-portal .cira-portal-table--form td textarea {
  border: 1px solid #CCC;
  border-radius: 5px;
  font-size: 16px;
  height: 250px;
  padding: 0.5rem;
  width: 100%;
}
.cira-portal .cira-portal-table--form td:first-child {
  width: 30%;
}
.cira-portal .cira-portal-table--form td:last-child {
  text-align: left;
}
.filter-form {
  margin-bottom: 1rem;
  text-align: right;
}
.filter-form label {
  margin-right: 0.5rem;
}
.filter-form select {
  border: 1px solid #CCC;
  border-radius: 5px;
  font-size: 16px;
  padding: 0.5rem;
}
.notice {
  margin-bottom: 2rem;
}
.notice p {
  background: #5F9DDA;
  border-radius: 10px;
  color: #FFF;
  font-size: 16px;
  padding: 0.5rem 1rem;
  text-align: center;
}
.notice--success p {
  background: #8AC13A;
}
.notice--error p {
  background: #9C1F60;
}
p.notice {
  background: #5F9DDA;
  border-radius: 10px;
  color: #FFF;
  font-size: 16px;
  padding: 0.5rem 1rem;
  text-align: center;
}
p.notice--success {
  background: #8AC13A;
}
p.notice--error {
  background: #9C1F60;
}
.cira-portal-form {
  margin-top: 40px;
}
.cira-portal-form form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.cira-portal-form .field {
  display: flex;
  flex-basis: 100%;
  flex-direction: column;
  margin-bottom: 1rem;
}
.cira-portal-form .field-half {
  flex-basis: calc(50% - 10px);
}
.cira-portal-form .field label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.cira-portal-form .field input[type="text"],
.cira-portal-form .field input[type="tel"],
.cira-portal-form .field input[type="email"],
.cira-portal-form .field input[type="password"],
.cira-portal-form .field select,
.cira-portal-form .field textarea {
  border: 1px solid #CCC;
  border-radius: 5px;
  font-size: 16px;
  padding: 0.5rem;
}
.cira-portal-form .field button[type="submit"] {
  background: var(--blue);
  border: none;
  border-radius: 10px 10px 10px 0;
  color: #FFF;
  font-size: 24px;
  font-weight: bold;
  height: 48px;
  line-height: 48px;
  padding: 0 48px;
  text-transform: uppercase;
  width: fit-content;
}
.spacer-100 {
  height: 100px;
  width: 100%;
}
.spacer-90 {
  height: 90px;
  width: 100%;
}
.spacer-80 {
  height: 80px;
  width: 100%;
}
.spacer-70 {
  height: 70px;
  width: 100%;
}
.spacer-60 {
  height: 60px;
  width: 100%;
}
.spacer-50 {
  height: 50px;
  width: 100%;
}
.spacer-40 {
  height: 40px;
  width: 100%;
}
.spacer-30 {
  height: 30px;
  width: 100%;
}
.spacer-20 {
  height: 20px;
  width: 100%;
}
.spacer-10 {
  height: 10px;
  width: 100%;
}
/*# sourceMappingURL=cira-portal.less.css.map */