/*!
 * 
 * 	aeris-weatherblox - 2.2.6
 * 	(c) 2023 AerisWeather
 * 	License: ISC
 * 	https://www.aerisweather.com/support/docs/toolkits/aeris-weatherblox/
 * 
 */
@keyframes awxjs__svg-dash {
  0% {
    stroke-dashoffset: 5;
  }
  50% {
    stroke-dashoffset: 500;
  }
  100% {
    stroke-dashoffset: 1000;
  }
}
.awxjs__loader {
  display: none;
  height: 100%;
  opacity: 0;
  position: absolute;
  transition: opacity 0.2s linear;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  width: 100%;
  z-index: 10000;
}
.awxjs__loader > svg {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 9999px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: rotate(-90deg);
}
.awxjs__loader > svg .awxjs__fill-path {
  fill: none;
  stroke: #1397ca;
  stroke-linecap: butt;
  stroke-dasharray: 500;
}
.awxjs__loader.animated {
  display: block;
  opacity: 1;
}
.awxjs__loader.animated > svg .awxjs__fill-path {
  animation: awxjs__svg-dash 2s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
  -webkit-animation: awxjs__svg-dash 2s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

.awxjs__app__component {
  font-family: "Helvetica", "Arial", sans-serif;
  overflow: hidden;
  position: relative;
}

.awxjs__app__fullscreen {
  height: 100%;
  width: 100%;
}

.awxjs__app__map {
  height: inherit;
  width: inherit;
}
.awxjs__app__map .awxjs__loader {
  display: none !important;
}

.awxjs__push-top {
  margin-top: 16px;
}

.awxjs__push-bottom {
  margin-bottom: 16px;
}

.awxjs__text-xs {
  font-size: 10px;
}

.awxjs__text-sm {
  font-size: 12px;
}

.awxjs__text,
.awxjs__text-md {
  font-size: 14px;
}

.awxjs__text-lg {
  font-size: 16px;
}

.awxjs__text-xl {
  font-size: 20px;
}

.awxjs__text-xxl {
  font-size: 24px;
}

.awxjs__text-bold {
  font-weight: bold;
}

.awxjs__left {
  text-align: left;
}

.awxjs__center {
  text-align: center;
}

.awxjs__right {
  text-align: right;
}

.awxjs__ui-cols,
.awxjs__ui-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.awxjs__ui-cols.align-start,
.awxjs__ui-row.align-start {
  align-items: flex-start;
}
.awxjs__ui-cols.align-end,
.awxjs__ui-row.align-end {
  align-items: flex-end;
}
.awxjs__ui-cols.align-center,
.awxjs__ui-row.align-center {
  align-items: center;
}
.awxjs__ui-cols.align-baseline,
.awxjs__ui-row.align-baseline {
  align-items: baseline;
}
.awxjs__ui-cols.justify-between,
.awxjs__ui-row.justify-between {
  justify-content: space-between;
}
.awxjs__ui-cols.justify-around,
.awxjs__ui-row.justify-around {
  justify-content: space-around;
}

.awxjs__ui-cols > div {
  /* flex-basis: 0; */
}

.awxjs__ui-expand {
  flex-basis: 0;
  flex-grow: 1;
}

.awxjs__table .awxjs__ui-row {
  align-items: baseline;
  padding: 6px 0;
}
.awxjs__table-bordered .awxjs__ui-row {
  border-top: 1px solid #eee;
  padding: 8px 0;
}
.awxjs__table-bordered .awxjs__ui-row:first-child {
  border-top: 0;
}

.awxjs__ui-btn {
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  padding: 3px 6px;
  position: relative;
}
.awxjs__ui-btn .awxjs__loader {
  display: block;
  position: absolute;
  right: -3px;
  top: -4px;
  z-index: 2;
}
.awxjs__ui-btn .awxjs__loader svg {
  background: transparent;
}
.awxjs__ui-btn .awxjs__loader.animated > svg .awxjs__fill-path {
  animation: awxjs__svg-dash 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  -webkit-animation: awxjs__svg-dash 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
.awxjs__ui-btn .awxjs__ui-btn-target {
  position: relative;
  z-index: 5;
}
.awxjs__ui-btn .awxjs__ui-btn-controls {
  display: flex;
  align-items: center;
  position: absolute;
  right: 3px;
  top: 4px;
  z-index: 6;
  transition: opacity 0.2s linear;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
}
.awxjs__ui-btn .awxjs__ui-btn-controls .awxjs__ui-btn-action {
  z-index: 2;
}
.awxjs__ui-btn .awxjs__ui-btn-controls .awxjs__loader {
  z-index: 0;
}
.awxjs__ui-btn .awxjs__ui-btn-action,
.awxjs__ui-btn .awxjs__ui-btn-action.awxjs__ui-btn-action {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.awxjs__ui-btn .awxjs__ui-btn-action svg,
.awxjs__ui-btn .awxjs__ui-btn-action.awxjs__ui-btn-action svg {
  fill: #999;
  height: 16px !important;
  width: 16px !important;
}
.awxjs__ui-btn .awxjs__ui-btn-action:hover svg,
.awxjs__ui-btn .awxjs__ui-btn-action.awxjs__ui-btn-action:hover svg {
  fill: #333;
}
.awxjs__ui-btn .awxjs__ui-btn-close {
  opacity: 0;
}
.awxjs__ui-btn.selected .awxjs__ui-btn-label {
  color: #333;
}
.awxjs__ui-btn.selected .awxjs__ui-btn-label:hover {
  color: #111;
}

.awxjs__ui-btn-icon, .awxjs__ui-btn-icon-sm {
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 34px;
  outline: none;
  padding: 0;
  position: relative;
  width: 34px;
}
.awxjs__ui-btn-icon svg, .awxjs__ui-btn-icon-sm svg {
  fill: #aaa;
  height: 20px;
  left: 50%;
  margin: -10px 0 0 -10px;
  position: absolute;
  top: 50%;
  width: 20px;
}
.awxjs__ui-btn-icon:hover svg, .awxjs__ui-btn-icon-sm:hover svg {
  fill: #222;
}

.awxjs__ui-btn-icon-sm {
  height: 26px;
  width: 26px;
}

.awxjs__ui-btn-segmented .awxjs__ui-btn-segments {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.23, 1), opacity 0.5s linear;
  -webkit-transition: max-height 0.5s cubic-bezier(0.4, 0, 0.23, 1), opacity 0.5s linear;
  -moz-transition: max-height 0.5s cubic-bezier(0.4, 0, 0.23, 1), opacity 0.5s linear;
}
.awxjs__ui-btn-segmented .awxjs__ui-btn-segments ul {
  list-style: none;
  margin: 0;
  padding: 5px 0 2px;
}
.awxjs__ui-btn-segmented .awxjs__ui-btn-segments ul > li {
  border-left: 4px solid #ddd;
  color: #666;
  font-size: 11px;
  font-weight: normal;
  margin: 3px 0;
  padding: 3px 5px;
}
.awxjs__ui-btn-segmented .awxjs__ui-btn-segments ul > li:hover {
  border-color: #666;
  cursor: pointer;
}
.awxjs__ui-btn-segmented .awxjs__ui-btn-segments ul > li.selected {
  border-color: #00a7e9;
  color: #222;
  font-weight: bold;
}
.awxjs__ui-btn-segmented .awxjs__ui-btn-segmented__groups {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.23, 1), opacity 0.5s linear;
  -webkit-transition: max-height 0.5s cubic-bezier(0.4, 0, 0.23, 1), opacity 0.5s linear;
  -moz-transition: max-height 0.5s cubic-bezier(0.4, 0, 0.23, 1), opacity 0.5s linear;
}
.awxjs__ui-btn-segmented .awxjs__ui-btn-segmented__group {
  border-left: 0;
  border-top: 2px solid #ddd;
  font-size: 11px;
  color: #333;
  margin: 5px 0 0;
  overflow: hidden;
  padding: 6px 0 3px;
}
.awxjs__ui-btn-segmented .awxjs__ui-btn-segmented__group .awxjs__ui-btn-segments {
  max-height: initial;
  opacity: 1;
}
.awxjs__ui-btn-segmented .awxjs__ui-btn-segmented__group:last-child {
  margin-bottom: 0;
}
.awxjs__ui-btn-segmented .awxjs__ui-btn-segmented__group > p {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin: 0 0 2px;
  text-transform: uppercase;
}
.awxjs__ui-btn-segmented .awxjs__ui-btn-segmented__group .awxjs__ui-btn-segments ul {
  padding-top: 0;
}
.awxjs__ui-btn-segmented.selected .awxjs__ui-btn-segments {
  opacity: 1;
}
.awxjs__ui-btn-segmented.selected .awxjs__ui-btn-segmented__groups {
  opacity: 1;
}

.awxjs__ui-layer-controls-popover {
  background: white;
}

.awxjs__legend {
  color: #fff;
  display: block;
}

.awxjs__legend-title {
  color: #333;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
}

.awxjs__legend-group .awxjs__legend {
  display: inline-block;
  white-space: nowrap;
}

.awxjs__legend-empty {
  font-size: 11px;
  margin: 0 6px;
  min-width: 200px;
  padding: 6px 0;
}

.awxjs__ia-map {
  position: relative;
}
.awxjs__ia-map .awxjs__loader {
  top: 4px;
}
.awxjs__ia-map .awxjs__loader > svg {
  transform: rotate(-90deg);
}

.awxjs__mapview {
  font-family: "Helvetica", "Arial", sans-serif;
}
.awxjs__mapview .awxjs__map-nav {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
}
.awxjs__mapview .awxjs__map-nav > li {
  display: inline-block;
  font-size: 12px;
  margin-left: 10px;
  position: relative;
}
.awxjs__mapview .awxjs__map-nav > li:first-child {
  margin-left: 0;
}
.awxjs__mapview .awxjs__map-nav > li button {
  border: 0;
  border-bottom: 3px solid #ccc;
  background: transparent;
  color: #666;
  cursor: pointer;
  font-weight: bold;
  font-size: 12px;
  margin: 0;
  padding: 0 0 3px 0;
  text-decoration: none;
}
.awxjs__mapview .awxjs__map-nav > li button:hover {
  border-color: #1397ca;
  color: #222;
}
.awxjs__mapview .awxjs__map-nav > li.selected button {
  border-color: #1397ca;
}
.awxjs__mapview .awxjs__map-container {
  position: relative;
  text-align: center;
}
.awxjs__mapview .awxjs__map-container .awxjs__map {
  position: relative;
  width: 100%;
  max-width: 100% !important;
}
.awxjs__mapview .awxjs__map-container .awxjs__map img {
  top: 0;
  left: 0;
  max-width: 100% !important;
  height: auto !important;
}
.awxjs__mapview .awxjs__map-container .awxjs__map .map-animated {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.awxjs__mapview .awxjs__map-container .awxjs__map .map-layers {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.awxjs__mapview .awxjs__map-container .awxjs__map-region-nav {
  position: absolute;
  left: 6px;
  bottom: 6px;
  z-index: 1000;
}
.awxjs__mapview .awxjs__map-container .awxjs__map-anim-controls {
  position: absolute;
  right: 6px;
  bottom: 6px;
  z-index: 1001;
}
.awxjs__mapview .awxjs__map-container .awxjs__map-region-nav,
.awxjs__mapview .awxjs__map-container .awxjs__map-anim-controls {
  margin: 0;
  padding: 0;
  list-style: none;
}
.awxjs__mapview .awxjs__map-container .awxjs__map-region-nav > li,
.awxjs__mapview .awxjs__map-container .awxjs__map-anim-controls > li {
  display: inline-block;
  margin-left: 0;
}
.awxjs__mapview .awxjs__map-container .awxjs__map-region-nav > li button,
.awxjs__mapview .awxjs__map-container .awxjs__map-anim-controls > li button {
  background: rgba(17, 17, 17, 0.8);
  border: 0;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 6px;
  cursor: pointer;
}
.awxjs__mapview .awxjs__map-container .awxjs__map-region-nav > li:first-child,
.awxjs__mapview .awxjs__map-container .awxjs__map-anim-controls > li:first-child {
  margin-left: 0;
}
.awxjs__mapview .awxjs__map-container .awxjs__map-region-nav > li:hover button,
.awxjs__mapview .awxjs__map-container .awxjs__map-anim-controls > li:hover button {
  background-color: #111;
}
.awxjs__mapview .awxjs__map-container .awxjs__map-region-nav > li.selected button,
.awxjs__mapview .awxjs__map-container .awxjs__map-anim-controls > li.selected button {
  background-color: #fff;
  color: #222;
}
.awxjs__mapview .awxjs__map__overlays {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}
.awxjs__mapview .awxjs__map__overlays .awxjs__map-overlay__timestamp {
  bottom: 5px;
  color: #222;
  font-size: 14px;
  left: 7px;
  position: absolute;
}
.awxjs__mapview .awxjs__map__overlays .awxjs__map-overlay__title {
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 3px solid #0097e2;
  color: #222;
  font-size: 18px;
  height: 34px;
  left: 10px;
  line-height: 36px;
  padding: 0 10px;
  position: absolute;
  text-align: left;
  top: 10px;
  width: 300px;
}
.awxjs__mapview .awxjs__map__overlays .awxjs__map-overlay__branding {
  bottom: 7px;
  color: #666;
  font-size: 22px;
  font-weight: bold;
  position: absolute;
  right: 10px;
}
.awxjs__mapview .awxjs__map-legend {
  margin-top: 10px;
}

.awxjs__app__ui-panel {
  position: absolute;
  z-index: 10000;
}
.awxjs__app__ui-panel .awxjs__app__ui-panel-container {
  background: rgba(0, 0, 0, 0.9);
  border-radius: 6px;
  position: absolute;
  z-index: 10;
}
.awxjs__app__ui-panel.awxjs__app__view__pinned-topright .awxjs__app__ui-panel-container, .awxjs__app__ui-panel.awxjs__app__view__pinned-right .awxjs__app__ui-panel-container, .awxjs__app__ui-panel.awxjs__app__view__pinned-bottomright .awxjs__app__ui-panel-container {
  right: 0;
}
.awxjs__app__ui-panel.awxjs__app__view__pinned-topleft .awxjs__app__ui-panel-container, .awxjs__app__ui-panel.awxjs__app__view__pinned-left .awxjs__app__ui-panel-container, .awxjs__app__ui-panel.awxjs__app__view__pinned-bottomleft .awxjs__app__ui-panel-container {
  left: 0;
}
.awxjs__app__ui-panel.awxjs__app__view__pinned-topleft .awxjs__app__ui-panel-container, .awxjs__app__ui-panel.awxjs__app__view__pinned-top .awxjs__app__ui-panel-container, .awxjs__app__ui-panel.awxjs__app__view__pinned-topright .awxjs__app__ui-panel-container {
  top: 0;
}
.awxjs__app__ui-panel.awxjs__app__view__pinned-bottomleft .awxjs__app__ui-panel-container, .awxjs__app__ui-panel.awxjs__app__view__pinned-bottom .awxjs__app__ui-panel-container, .awxjs__app__ui-panel.awxjs__app__view__pinned-bottomright .awxjs__app__ui-panel-container {
  bottom: 0;
}
.awxjs__app__ui-panel .awxjs__app__ui-panel-toggleable {
  overflow: visible;
}
.awxjs__app__ui-panel .awxjs__app__ui-panel-toggle {
  background: transparent;
  cursor: pointer;
  display: none;
  height: 40px;
  left: 50%;
  margin: -20px 0 0 -20px;
  position: absolute;
  top: 50%;
  transition: opacity 0.2s linear;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  width: 40px;
  z-index: 1;
}
.awxjs__app__ui-panel .awxjs__app__ui-panel-toggle svg {
  fill: #fff;
  height: 24px;
  left: 50%;
  margin: -12px 0 0 -12px;
  position: absolute;
  top: 50%;
  width: 24px;
}
.awxjs__app__ui-panel .awxjs__app__ui-panel-close {
  background: transparent;
  border: 0;
  padding: 0;
  position: absolute;
  right: 2px;
  top: 2px;
}
.awxjs__app__ui-panel .awxjs__app__ui-panel-close svg {
  fill: #999;
  height: 20px;
  width: 20px;
}
.awxjs__app__ui-panel .awxjs__app__ui-panel-close:hover {
  cursor: pointer;
}
.awxjs__app__ui-panel .awxjs__app__ui-panel-close:hover svg {
  fill: #fff;
}
.awxjs__app__ui-panel .awxjs__app__ui-panel-toolbar {
  display: none;
}
.awxjs__app__ui-panel.awxjs__app__ui-panel-toggleable {
  min-height: 40px;
  min-width: 40px;
}
.awxjs__app__ui-panel.awxjs__app__ui-panel-toggleable .awxjs__app__ui-panel-container {
  background: rgba(0, 0, 0, 0.7);
}
.awxjs__app__ui-panel.awxjs__app__ui-panel-toggleable .awxjs__app__ui-panel-container:hover {
  background: rgba(0, 0, 0, 0.9);
}
.awxjs__app__ui-panel.awxjs__app__ui-panel-toggleable .awxjs__app__ui-panel-toolbar {
  opacity: 0;
}
.awxjs__app__ui-panel.awxjs__app__ui-panel-toggleable .awxjs__app__ui-panel-toolbar,
.awxjs__app__ui-panel.awxjs__app__ui-panel-toggleable .awxjs__app__ui-panel-toggle {
  display: block;
  transition: opacity 0.2s linear;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
}
.awxjs__app__ui-panel.awxjs__app__ui-panel-toggleable .awxjs__app__ui-panel-container {
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.23, 1), max-width 0.4s cubic-bezier(0.4, 0, 0.23, 1);
  -webkit-transition: max-height 0.4s cubic-bezier(0.4, 0, 0.23, 1), max-width 0.4s cubic-bezier(0.4, 0, 0.23, 1);
  -moz-transition: max-height 0.4s cubic-bezier(0.4, 0, 0.23, 1), max-width 0.4s cubic-bezier(0.4, 0, 0.23, 1);
  overflow: hidden;
}
.awxjs__app__ui-panel.awxjs__app__ui-panel-toggleable .awxjs__app__ui-panel-toolbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  height: 28px;
}
.awxjs__app__ui-panel.awxjs__app__ui-panel-toggleable .awxjs__app__ui-panel-title {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 30px;
  padding: 0 10px;
}
.awxjs__app__ui-panel.awxjs__app__ui-panel-toggleable .awxjs__app__ui-panel-content {
  opacity: 0;
  transition: opacity 0.2s linear;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
}
.awxjs__app__ui-panel.awxjs__app__ui-panel-toggleable.awxjs__app__ui-panel-toggleable-open .awxjs__app__ui-panel-container {
  background: rgba(0, 0, 0, 0.9);
}
.awxjs__app__ui-panel.awxjs__app__ui-panel-toggleable.awxjs__app__ui-panel-toggleable-open .awxjs__app__ui-panel-toggle {
  opacity: 0;
}
.awxjs__app__ui-panel.awxjs__app__ui-panel-toggleable.awxjs__app__ui-panel-toggleable-open .awxjs__app__ui-panel-toolbar,
.awxjs__app__ui-panel.awxjs__app__ui-panel-toggleable.awxjs__app__ui-panel-toggleable-open .awxjs__app__ui-panel-content {
  opacity: 1;
}
.awxjs__app__ui-panel.awxjs__app__view__pinned-top.awxjs__app__ui-panel-toggleable, .awxjs__app__ui-panel.awxjs__app__view__pinned-bottom.awxjs__app__ui-panel-toggleable {
  transform: translateX(-50%);
}
.awxjs__app__ui-panel .awxjs__ui-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 0;
  border-radius: 3px;
  color: #ccc;
  cursor: pointer;
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  padding: 6px 10px;
  position: relative;
  text-align: left;
}
.awxjs__app__ui-panel .awxjs__ui-btn svg {
  fill: #ccc;
}
.awxjs__app__ui-panel .awxjs__ui-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}
.awxjs__app__ui-panel .awxjs__ui-btn.selected {
  background: #fff;
  border-color: #fff;
  color: #222;
}
.awxjs__app__ui-panel .awxjs__ui-btn-icon, .awxjs__app__ui-panel .awxjs__ui-btn-icon-sm {
  padding: 4px 6px;
}

.awxjs__app__ui-panel .awxjs__ui-toggleable {
  background: rgba(255, 255, 255, 0.2);
  border: 0;
  border-radius: 3px;
  color: #ccc;
  cursor: pointer;
  display: block;
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 6px;
  min-width: 120px;
  padding: 6px 10px;
  position: relative;
  text-align: left;
}
.awxjs__app__ui-panel .awxjs__ui-toggleable:last-child {
  margin-bottom: 0;
}
.awxjs__app__ui-panel .awxjs__ui-toggleable.selected {
  background: #fff;
  border-color: #fff;
  color: #222;
}

.awxjs__app__ui-panel-toggleable {
  transition: min-height 0.4s cubic-bezier(0.4, 0, 0.23, 1), min-width 0.4s cubic-bezier(0.4, 0, 0.23, 1);
  -webkit-transition: min-height 0.4s cubic-bezier(0.4, 0, 0.23, 1), min-width 0.4s cubic-bezier(0.4, 0, 0.23, 1);
  -moz-transition: min-height 0.4s cubic-bezier(0.4, 0, 0.23, 1), min-width 0.4s cubic-bezier(0.4, 0, 0.23, 1);
}

.awxjs__app__ui-panel-layers {
  z-index: 4997;
}
.awxjs__app__ui-panel-layers .awxjs__app__ui-panel-content {
  overflow: auto;
}
.awxjs__app__ui-panel-layers .awxjs__app__ui-panel-buttons {
  padding: 6px;
  width: 140px;
}
.awxjs__app__ui-panel-layers .awxjs__ui-btn-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 0;
}
.awxjs__app__ui-panel-layers .awxjs__ui-btn-group .awxjs__ui-btn-group-label {
  color: #cccccc;
  font-size: 11px;
  font-weight: bold;
  margin: 2px 0 6px 4px;
}
.awxjs__app__ui-panel-layers .awxjs__ui-btn-group + .awxjs__ui-btn-group {
  border-top: 0;
}
.awxjs__app__ui-panel-layers .awxjs__ui-btn-group + .awxjs__ui-btn {
  margin-top: 6px;
}
.awxjs__app__ui-panel-layers .awxjs__ui-btn {
  display: block;
  margin-bottom: 6px;
  min-width: 120px;
}
.awxjs__app__ui-panel-layers .awxjs__ui-btn:last-child {
  margin-bottom: 0;
}
.awxjs__app__ui-panel-layers .awxjs__ui-btn .awxjs__loader svg {
  background: transparent;
}
.awxjs__app__ui-panel-layers .awxjs__ui-btn-segments .awxjs__ui-btn {
  background: transparent;
  border-radius: 0;
  min-width: auto;
}
.awxjs__app__ui-panel-layers .awxjs__ui-btn-segments .awxjs__ui-btn.selected {
  background: transparent;
}

.awxjs__app__ui-panel-timeline {
  z-index: 4998;
}
.awxjs__app__ui-panel-timeline .awxjs__app__ui-panel-content {
  padding: 10px;
  position: relative;
}
.awxjs__app__ui-panel-timeline:after {
  content: "";
  display: table;
  clear: both;
}
.awxjs__app__ui-panel-timeline .awxjs__ui-cols > div {
  position: relative;
}
.awxjs__app__ui-panel-timeline-left {
  margin-right: 20px;
  min-width: 90px;
}
.awxjs__app__ui-panel-timeline-right {
  margin-left: 10px;
}
.awxjs__app__ui-panel-timeline-daytime {
  color: #fff;
  font-size: 20px;
  text-align: left;
  white-space: nowrap;
}
.awxjs__app__ui-panel-timeline-day {
  font-size: 12px;
  margin-top: 3px;
}
.awxjs__app__ui-panel-timeline-controls .awxjs__ui-btn {
  background: #666;
  color: #ccc;
  height: 30px;
  line-height: 30px;
  margin: 0 3px;
  padding: 0 12px;
}
.awxjs__app__ui-panel-timeline-controls .awxjs__ui-btn svg {
  fill: #ccc;
}
.awxjs__app__ui-panel-timeline-controls .awxjs__ui-btn:hover {
  background: #fff;
  color: #222;
}
.awxjs__app__ui-panel-timeline-controls .awxjs__ui-btn:hover svg {
  fill: #222;
}
.awxjs__app__ui-panel-timeline-controls .awxjs__ui-btn-icon, .awxjs__app__ui-panel-timeline-controls .awxjs__ui-btn-icon-sm {
  height: 30px;
  padding: 0;
}
.awxjs__app__ui-panel-timeline .awxjs__ui-btn-settings {
  height: 30px;
  padding: 0;
  position: absolute;
  right: 2px;
  top: 2px;
  width: 30px;
}
.awxjs__app__ui-panel-timeline .awxjs__ui-btn-settings svg {
  fill: #999;
}
.awxjs__app__ui-panel-timeline .awxjs__ui-btn-settings:hover svg {
  fill: #fff;
}
.awxjs__app__ui-panel-timeline .awxjs__ui-timeline {
  margin: 0 15px 0 30px;
  position: relative;
  width: 500px;
}
.awxjs__app__ui-panel-timeline .awxjs__ui-timeline__ui-btn-start, .awxjs__app__ui-panel-timeline .awxjs__ui-timeline__ui-btn-end {
  bottom: 0;
  position: absolute;
  top: 0;
  width: 12px;
}
.awxjs__app__ui-panel-timeline .awxjs__ui-timeline__ui-btn-start:hover, .awxjs__app__ui-panel-timeline .awxjs__ui-timeline__ui-btn-end:hover {
  background: #fff;
  cursor: pointer;
}
.awxjs__app__ui-panel-timeline .awxjs__ui-timeline__ui-btn-start {
  left: 0;
  z-index: 10;
}
.awxjs__app__ui-panel-timeline .awxjs__ui-timeline__ui-btn-end {
  right: 0;
  z-index: 11;
}
.awxjs__app__ui-panel-timeline .awxjs__ui-slider .awxjs__ui-slider-span {
  border-bottom: #bbb 2px solid;
}
.awxjs__app__ui-panel-timeline .awxjs__ui-slider .awxjs__ui-slider-span-item.awxjs__ui-slider-span-past {
  background: #555;
}
.awxjs__app__ui-panel-timeline .awxjs__ui-slider .awxjs__ui-slider-span-item.awxjs__ui-slider-span-future {
  background: rgba(85, 85, 85, 0.5);
}
.awxjs__app__ui-panel-timeline .awxjs__loader {
  display: block;
  margin-top: -15px;
  top: 50%;
}
.awxjs__app__ui-panel-timeline .awxjs__loader svg {
  background: #222;
}

.awxjs__app__ui-panel-legends .awxjs__app__ui-panel-content {
  max-height: 350px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 6px 10px;
}
.awxjs__app__ui-panel-legends .awxjs__legend-view .awxjs__legend {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.awxjs__app__ui-panel-legends .awxjs__legend {
  padding: 6px 0 0;
}
.awxjs__app__ui-panel-legends .awxjs__legend:last-child,
.awxjs__app__ui-panel-legends .awxjs__legend > .awxjs__legend {
  border-bottom: 0;
}
.awxjs__app__ui-panel-legends .awxjs__legend-title {
  color: #ccc !important;
  font-weight: normal !important;
  margin: 0 6px 0;
  text-align: left !important;
}
.awxjs__app__ui-panel-legends .awxjs__legend-group .awxjs__legend-title {
  text-align: center !important;
}

.awxjs__app__ui-panel-search {
  background: transparent;
  z-index: 4996;
}
.awxjs__app__ui-panel-search .awxjs__app__ui-panel-container {
  background: transparent;
}
.awxjs__app__ui-panel-search .awxjs__ui-searchfield-form {
  box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.2);
}
.awxjs__app__ui-panel-search.awxjs__app__ui-panel-toggleable .awxjs__app__ui-panel-container {
  overflow: visible;
}
.awxjs__app__ui-panel-search.awxjs__app__ui-panel-toggleable .awxjs__ui-searchfield .awxjs__ui-searchfield-container {
  margin: 6px;
}
.awxjs__app__ui-panel-search.awxjs__app__ui-panel-toggleable .awxjs__ui-searchfield .awxjs__ui-searchfield-container input {
  z-index: 1500;
}
.awxjs__app__ui-panel-search.awxjs__app__ui-panel-toggleable .awxjs__ui-searchfield .awxjs__ui-searchfield-container .awxjs__ui-searchfield-results {
  margin: 0 6px;
}
@media (max-width: 500px) {
  .awxjs__app__ui-panel-search .awxjs__ui-searchfield .awxjs__ui-searchfield-form > form input {
    margin-top: 3px;
    width: 180px;
  }
}

.awxjs__app__ui-panel-info {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  max-height: 0;
  overflow: hidden;
  position: absolute;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.23, 1);
  -webkit-transition: max-height 0.5s cubic-bezier(0.4, 0, 0.23, 1);
  -moz-transition: max-height 0.5s cubic-bezier(0.4, 0, 0.23, 1);
  width: 400px;
  z-index: 10000;
}
.awxjs__app__ui-panel-info-container {
  max-height: inherit;
  min-height: 200px;
  overflow: auto;
  position: relative;
}
.awxjs__app__ui-panel-info-top {
  background: #eee;
  border-bottom: 2px solid #ddd;
  left: 0;
  padding: 20px 10px 15px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.awxjs__app__ui-panel-info-inner {
  margin-top: 40px;
  padding: 20px;
  position: relative;
  z-index: 1;
}
.awxjs__app__ui-panel-info-title {
  color: #222;
  font-size: 18px;
  font-weight: bold;
  height: 20px;
  padding: 0 10px;
}
.awxjs__app__ui-panel-info-content {
  transition: opacity 0.2s linear;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
}
.awxjs__app__ui-panel-info-close {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  position: absolute;
  right: 6px;
  top: 14px;
  z-index: 10;
}
.awxjs__app__ui-panel-info-close svg {
  fill: #aaa;
  height: 26px;
  width: 26px;
}
.awxjs__app__ui-panel-info-close:hover svg {
  fill: #222;
}
.awxjs__app__ui-panel-info .awxjs__expand {
  flex-grow: 1;
}
.awxjs__app__ui-panel-info .awxjs__ui-btn-default {
  background: #1397ca;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 10px 14px;
  text-align: center;
}
.awxjs__app__ui-panel-info .awxjs__ui-btn-default:hover {
  background: #0f7ba5;
}
.awxjs__app__ui-panel-info .awxjs__ui-btn-full {
  display: block;
}
.awxjs__app__ui-panel-info .awxjs__ui-btn-icon, .awxjs__app__ui-panel-info .awxjs__ui-btn-icon-sm {
  border-radius: 9999px;
  display: inline-block;
  height: 26px;
  position: relative;
  width: 26px;
}
.awxjs__app__ui-panel-info .awxjs__ui-btn-icon svg, .awxjs__app__ui-panel-info .awxjs__ui-btn-icon-sm svg {
  height: 14px;
  left: 50%;
  margin: -7px 0 0 -7px;
  position: absolute;
  top: 50%;
  width: 14px;
}
.awxjs__app__ui-panel-info .awxjs__ui-btn-icon-filled {
  background: #eee;
  padding: 0;
}
.awxjs__app__ui-panel-info .awxjs__ui-btn-icon-filled svg {
  fill: #666;
}
.awxjs__app__ui-panel-info .awxjs__ui-btn-icon-filled:hover {
  background: #ccc;
}
.awxjs__app__ui-panel-info .awxjs__ui-btn-icon-filled:hover svg {
  fill: #333;
}

.awxjs__app__ui-panel-info-container .awxjs__loader {
  top: 40px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.awxjs__app__ui-panel-info__view-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 6px;
}

.awxjs__app__ui-panel-info__view-content {
  margin: 0;
}

.awxjs__app__ui-panel-info__content-view .awxjs__app__ui-panel-info__view {
  border-bottom: 1px solid #ccc;
  margin: 3px 0;
  padding: 12px 2px 15px;
}
.awxjs__app__ui-panel-info__content-view .awxjs__app__ui-panel-info__view:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.awxjs__app__ui-panel-info-content {
  font-size: 14px;
}

.awxjs__app__ui-panel-info__label {
  font-size: 14px;
  font-weight: bold;
}
.awxjs__app__ui-panel-info__units {
  margin: -10px 0;
}
.awxjs__app__ui-panel-info__place-name {
  font-size: 18px;
  font-weight: bold;
}
.awxjs__app__ui-panel-info__place-meta {
  color: #666;
  font-size: 12px;
}
.awxjs__app__ui-panel-info__obs-icon {
  height: 60px;
  margin: 0 20px 0 10px;
  width: 60px;
}
.awxjs__app__ui-panel-info__obs-wx {
  font-size: 16px;
  margin: 0;
}
.awxjs__app__ui-panel-info__obs-temp {
  font-size: 30px;
  margin-top: 15px;
  min-width: 70px;
}
.awxjs__app__ui-panel-info__obs-temp span {
  color: #666;
  font-size: 22px;
  font-weight: normal;
  padding-left: 3px;
}
.awxjs__app__ui-panel-info__obs-details {
  font-size: 12px;
}
.awxjs__app__ui-panel-info__obs-details .awxjs__ui-row {
  margin: 3px 0;
}
.awxjs__app__ui-panel-info__obs-details .awxjs__ui-row > div {
  flex-basis: 0;
  flex-grow: 1;
  margin: 0 5px;
  width: 100px;
}
.awxjs__app__ui-panel-info__obs-details .awxjs__ui-row div:last-child {
  font-size: 12px;
  font-weight: bold;
}
.awxjs__app__ui-panel-info__obs-timestamp {
  color: #999;
  font-size: 11px;
  margin-bottom: 8px;
}
.awxjs__app__ui-panel-info__forecast .awxjs__app__ui-panel-info__view-title {
  margin-bottom: 8px;
}
.awxjs__app__ui-panel-info__forecast-period {
  border-top: 1px solid #efefef;
  padding: 8px 0;
}
.awxjs__app__ui-panel-info__forecast-period:first-child {
  border-top: 0;
}
.awxjs__app__ui-panel-info__forecast-ts {
  width: 50px;
}
.awxjs__app__ui-panel-info__forecast-temp {
  font-size: 16px;
  width: 80px;
}
.awxjs__app__ui-panel-info__forecast-icon {
  height: 40px;
  margin: 0 20px;
  width: 40px;
}
.awxjs__app__ui-panel-info__forecast-detail {
  font-size: 14px;
  margin: 4px 0;
}
.awxjs__app__ui-panel-info__forecast-detail span {
  color: #666;
  font-size: 13px;
  font-weight: normal;
}
.awxjs__app__ui-panel-info__alerts p {
  font-size: 12px;
}
.awxjs__app__ui-panel-info__alert {
  border-top: 1px solid #efefef;
  line-height: 16px;
  padding: 6px 0;
}
.awxjs__app__ui-panel-info__alert-name {
  color: #c40f0f;
  font-size: 14px;
}
.awxjs__app__ui-panel-info__hazards {
  padding-top: 6px;
}
.awxjs__app__ui-panel-info__hazard {
  margin: 6px 0;
}
.awxjs__app__ui-panel-info__hazard .awxjs__ui-cols > div {
  flex-basis: 0;
}
.awxjs__app__ui-panel-info__hazard-label {
  flex-grow: 1;
  font-size: 12px;
  font-weight: bold;
  width: 15%;
}
.awxjs__app__ui-panel-info__hazard-value {
  float: left;
  font-size: 13px;
  text-align: left;
  width: 60px;
}
.awxjs__app__ui-panel-info__hazard-value-lg {
  width: 90px;
}
.awxjs__app__ui-panel-info__hazard-value-0 {
  color: #999;
}
.awxjs__app__ui-panel-info__hazard-bar {
  background: #efefef;
  border: 2px solid #ddd;
  border-radius: 10px;
  height: 16px;
  margin: 0 10px 0 20px;
  position: relative;
  width: 130px;
}
.awxjs__app__ui-panel-info__hazard-bar-progress {
  background: #ccc;
  border-radius: 5px;
  height: inherit;
  /* position: absolute; */
  width: 0%;
}
.awxjs__app__ui-panel-info__hazard-bar-inner {
  height: 10px;
  margin: 3px;
}
.awxjs__app__ui-panel-info__hazard-bar-sm {
  width: 100px;
}
.awxjs__app__ui-panel-info__hazard-indice-fill-0, .awxjs__app__ui-panel-info__hazard-indice-fill-0p5, .awxjs__app__ui-panel-info__hazard-indice-fill-1 {
  background: #07cf01;
}
.awxjs__app__ui-panel-info__hazard-indice-fill-2 {
  background: #f0e402;
}
.awxjs__app__ui-panel-info__hazard-indice-fill-3 {
  background: #f08802;
}
.awxjs__app__ui-panel-info__hazard-indice-fill-4 {
  background: #da2002;
}
.awxjs__app__ui-panel-info__hazard-indice-fill-5 {
  background: #d80380;
}

.awxjs__app__ui-panel-info-compact .awxjs__app__ui-panel-info-top {
  padding: 15px 12px 12px;
}
.awxjs__app__ui-panel-info-compact .awxjs__app__ui-panel-info-title {
  padding: 0 2px;
}
.awxjs__app__ui-panel-info-compact .awxjs__app__ui-panel-info-close {
  top: 9px;
}
.awxjs__app__ui-panel-info-compact .awxjs__app__ui-panel-info-inner {
  padding: 12px;
}
.awxjs__app__ui-panel-info-compact .awxjs__app__ui-panel-info__obs > .awxjs__ui-cols {
  display: block;
}
.awxjs__app__ui-panel-info-compact .awxjs__app__ui-panel-info__obs-details {
  margin-top: 20px;
}
.awxjs__app__ui-panel-info-compact .awxjs__app__ui-panel-info__obs-details .awxjs__ui-row > div:first-child {
  margin-left: 0;
}
.awxjs__app__ui-panel-info-compact .awxjs__app__ui-panel-info__forecast-ts {
  width: 40px;
}
.awxjs__app__ui-panel-info-compact .awxjs__app__ui-panel-info__forecast-icon {
  margin: 0 10px;
}
.awxjs__app__ui-panel-info-compact .awxjs__app__ui-panel-info__forecast-temp {
  width: 65px;
}
.awxjs__app__ui-panel-info-compact .awxjs__app__ui-panel-info__hazard-bar {
  width: 80px;
}

@media (min-width: 600px) {
  .ui-btn {
    display: none;
  }

  .ui-btn-legends {
    display: block;
  }
}
@media (max-width: 1000px) {
  .awxjs__app__ui-panel-timeline .awxjs__ui-timeline {
    width: 300px;
  }
}
@media (max-width: 600px) {
  .awxjs__app__ui-panel-timeline-center {
    margin-right: 25px;
  }
  .awxjs__app__ui-panel-timeline-right {
    margin: 0;
  }
  .awxjs__app__ui-panel-timeline .awxjs__ui-timeline {
    display: none;
  }

  .awxjs__app__ui-panel-info__obs > .awxjs__ui-cols {
    display: block;
  }
  .awxjs__app__ui-panel-info__obs-details {
    margin-top: 20px;
  }
  .awxjs__app__ui-panel-info__obs-details > .awxjs__ui-row > div {
    margin: 0;
  }
  .awxjs__app__ui-panel-info__forecast-temp {
    width: 60px;
  }
}
.awxjs__ui-range .awxjs__ui-range-title {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 6px 0;
}
.awxjs__ui-range .awxjs__ui-range-intervals {
  list-style: none;
  margin: 0;
  padding: 0;
}
.awxjs__ui-range .awxjs__ui-range-intervals:after {
  content: "";
  display: table;
  clear: both;
}
.awxjs__ui-range .awxjs__ui-range-intervals > li {
  background-color: #efefef;
  color: #222;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 0 1px;
  padding: 4px 8px;
  text-transform: uppercase;
  text-decoration: none;
}
.awxjs__ui-range .awxjs__ui-range-intervals > li:hover {
  background-color: #1397ca;
  color: #fff;
}
.awxjs__ui-range .awxjs__ui-range-intervals > li.disabled {
  background-color: #666666;
}
.awxjs__ui-range .awxjs__ui-range-intervals > li:first-child {
  margin-left: 0;
}
.awxjs__ui-range .awxjs__ui-range-intervals > li.selected {
  background-color: #333;
  color: #fff;
}

.awxjs__ui-searchfield {
  position: relative;
  overflow: visible;
}
.awxjs__ui-searchfield:after {
  content: "";
  display: table;
  clear: both;
}
.awxjs__ui-searchfield .awxjs__ui-searchfield-form {
  background: #fff;
  border-radius: 17px;
  vertical-align: middle;
  white-space: nowrap;
}
.awxjs__ui-searchfield .awxjs__ui-searchfield-form > form {
  position: relative;
}
.awxjs__ui-searchfield .awxjs__ui-searchfield-form > form:after {
  content: "";
  display: table;
  clear: both;
}
.awxjs__ui-searchfield .awxjs__ui-searchfield-form > form input, .awxjs__ui-searchfield .awxjs__ui-searchfield-form > form button {
  display: block;
  height: 34px;
  margin: 0;
}
.awxjs__ui-searchfield .awxjs__ui-searchfield-form > form input {
  background: transparent;
  border: 0;
  font-size: 14px;
  margin-right: 40px;
  outline: none;
  padding: 0 6px 0 20px;
  width: 300px;
}
.awxjs__ui-searchfield .awxjs__ui-searchfield-form > form button {
  background-color: #efefef;
  border: 0;
  border-top-right-radius: 17px;
  border-bottom-right-radius: 17px;
  font-size: 11px;
  height: 34px;
  padding: 0;
  padding: 0 10px 0 6px;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
}
.awxjs__ui-searchfield .awxjs__ui-searchfield-form > form button svg {
  fill: #333;
  height: 16px;
  width: 16px;
}
.awxjs__ui-searchfield .awxjs__ui-searchfield-form > form button:hover {
  background-color: #333;
  color: #fff;
  cursor: pointer;
}
.awxjs__ui-searchfield .awxjs__ui-searchfield-form > form button:hover svg {
  fill: #fff;
}
.awxjs__ui-searchfield .awxjs__ui-searchfield-results {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 3px solid #ccc;
  box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  margin-top: 1px;
  max-height: 300px;
  overflow: auto;
  position: absolute;
  right: 0;
  z-index: 1000;
}
.awxjs__ui-searchfield .awxjs__ui-searchfield-results ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.awxjs__ui-searchfield .awxjs__ui-searchfield-results ul > li {
  border-top: 1px solid #efefef;
  font-size: 14px;
  padding: 10px 20px 8px;
}
.awxjs__ui-searchfield .awxjs__ui-searchfield-results ul > li:first-child {
  border-top: 0;
}
.awxjs__ui-searchfield .awxjs__ui-searchfield-results ul > li:hover {
  background: #efefef;
  cursor: pointer;
}
.awxjs__ui-searchfield .awxjs__ui-searchfield-results ul > li.selected {
  background: #efefef;
}
.awxjs__ui-searchfield .awxjs__loader {
  display: block;
  margin-top: -15px;
  right: 40px;
  top: 50%;
}
.awxjs__ui-searchfield .awxjs__loader svg {
  background: transparent;
  stroke-width: 8px;
}
.awxjs__ui-searchfield.awxjs__ui-searchfield-expanded .awxjs__ui-searchfield-form {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.awxjs__ui-searchfield.awxjs__ui-searchfield-expanded .awxjs__ui-searchfield-form button {
  border-bottom-right-radius: 0;
}

.awxjs__ui-slider {
  overflow: hidden;
  position: relative;
}
.awxjs__ui-slider .awxjs__ui-slider-span-inner {
  height: 22px;
  position: relative;
}
.awxjs__ui-slider .awxjs__ui-slider-span-item {
  background: #ddd;
  bottom: 0;
  position: absolute;
  top: 0;
  z-index: 1;
}
.awxjs__ui-slider .awxjs__ui-slider-span-item.awxjs__ui-slider-span-past {
  background: #bbb;
  left: 0;
  z-index: 1;
}
.awxjs__ui-slider .awxjs__ui-slider-span-item.awxjs__ui-slider-span-future {
  right: 0;
  z-index: 2;
}
.awxjs__ui-slider .awxjs__ui-slider-indicator {
  bottom: 0;
  cursor: pointer;
  height: 15px;
  left: 0;
  margin: 0 5px;
  position: absolute;
  width: 15px;
  z-index: 5;
}
.awxjs__ui-slider .awxjs__ui-slider-indicator:before {
  border-color: transparent;
  border-bottom-color: #bbb;
  border-style: solid;
  border-width: 0 12px 12px;
  bottom: 0;
  content: "";
  height: 0;
  left: 50%;
  margin-left: -12px;
  position: absolute;
  width: 0;
}
.awxjs__ui-slider .awxjs__ui-slider-indicator:hover:before {
  border-bottom-color: #fff;
}
.awxjs__ui-slider .awxjs__ui-slider-indicator.is-dragging:before, .awxjs__ui-slider .awxjs__ui-slider-indicator.is-dragging:hover:before {
  border-bottom-color: #fff;
}
.awxjs__ui-slider .awxjs__ui-slider-ticks {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}
.awxjs__ui-slider .awxjs__ui-slider-ticks .awxjs__ui-slider-tick {
  background: #333;
  bottom: 0;
  overflow: visible;
  position: absolute;
  top: 0;
  width: 1px;
}
.awxjs__ui-slider .awxjs__ui-slider-ticks .awxjs__ui-slider-tick .awxjs__ui-slider-tick-label {
  color: #111;
  font-size: 11px;
  padding-left: 3px;
  width: 30px;
}

.awxjs__ui-slider-range {
  box-sizing: border-box;
  min-width: 60px;
  position: relative;
  touch-action: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.awxjs__ui-slider-range * {
  box-sizing: border-box;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.awxjs__ui-slider-range-title {
  color: #333;
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 10px -5px;
}
.awxjs__ui-slider-range-title span {
  color: #666666;
  font-size: 11px;
  font-weight: normal;
}
.awxjs__ui-slider-range-inner {
  height: 14px;
  position: relative;
}
.awxjs__ui-slider-range-with-marks {
  margin: 0 8px;
}
.awxjs__ui-slider-range-with-marks .awxjs__ui-slider-range-inner {
  height: 26px;
}
.awxjs__ui-slider-range-rail {
  background: #999999;
  border-radius: 6px;
  height: 4px;
  position: absolute;
  width: 100%;
}
.awxjs__ui-slider-range-track {
  background: #1397ca;
  border-radius: 6px;
  height: 4px;
  left: 0;
  position: absolute;
}
.awxjs__ui-slider-range-handle {
  background: #fff;
  border: solid 2px #1397ca;
  border-radius: 50%;
  cursor: pointer;
  cursor: -webkit-grab;
  cursor: grab;
  height: 14px;
  margin: -5px 0 0 -7px;
  position: absolute;
  touch-action: pan-x;
  width: 14px;
}
.awxjs__ui-slider-range-handle:focus {
  border-color: #1397ca;
  outline: none;
}
.awxjs__ui-slider-range-handle-click-focused:focus {
  border-color: tint(#1397ca, 50%);
  box-shadow: unset;
}
.awxjs__ui-slider-range-handle:hover {
  border-color: #1397ca;
}
.awxjs__ui-slider-range-handle:active {
  border-color: #1397ca;
  box-shadow: 0 0 5px 2px #1397ca;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.awxjs__ui-slider-range-marks {
  font-size: 12px;
  height: 14px;
  left: 0;
  position: absolute;
  top: 12px;
  width: 100%;
}
.awxjs__ui-slider-range-mark-text {
  color: #999999;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  text-align: center;
  vertical-align: middle;
}
.awxjs__ui-slider-range-mark-text-active {
  color: #333;
  font-weight: bold;
}
.awxjs__ui-slider-range-steps {
  background: transparent;
  height: 4px;
  position: absolute;
  width: 100%;
}
.awxjs__ui-slider-range-dot {
  background: #fff;
  border: 2px solid #999999;
  border-radius: 50%;
  bottom: -2px;
  cursor: pointer;
  height: 8px;
  margin-left: -4px;
  position: absolute;
  vertical-align: middle;
  width: 8px;
}
.awxjs__ui-slider-range-dot-active {
  border-color: #1397ca;
}
.awxjs__ui-slider-range-disabled {
  background: #e9e9e9;
}

.awxjs__ui-switch,
.awxjs__ui-btn .awxjs__ui-switch,
.awxjs__app__ui-panel .awxjs__ui-switch {
  display: flex;
  align-items: center;
}
.awxjs__ui-switch .awxjs__ui-switch-label,
.awxjs__ui-btn .awxjs__ui-switch .awxjs__ui-switch-label,
.awxjs__app__ui-panel .awxjs__ui-switch .awxjs__ui-switch-label {
  color: #222;
  font-size: 12px;
  font-weight: bold;
}
.awxjs__ui-switch .awxjs__ui-switch__control,
.awxjs__ui-btn .awxjs__ui-switch .awxjs__ui-switch__control,
.awxjs__app__ui-panel .awxjs__ui-switch .awxjs__ui-switch__control {
  background: #ccc;
  border-radius: 9999px;
  height: 24px;
  margin: 0 5px;
  position: relative;
  width: 40px;
}
.awxjs__ui-switch .awxjs__ui-switch__control-indicator,
.awxjs__ui-btn .awxjs__ui-switch .awxjs__ui-switch__control-indicator,
.awxjs__app__ui-panel .awxjs__ui-switch .awxjs__ui-switch__control-indicator {
  background: #fff;
  border-radius: 9999px;
  height: 18px;
  left: 3px;
  position: absolute;
  top: 3px;
  transition: left 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 18px;
}
.awxjs__ui-switch:hover .awxjs__ui-switch__control,
.awxjs__ui-btn .awxjs__ui-switch:hover .awxjs__ui-switch__control,
.awxjs__app__ui-panel .awxjs__ui-switch:hover .awxjs__ui-switch__control {
  background: #bbb;
}
.awxjs__ui-switch.selected .awxjs__ui-switch__control,
.awxjs__ui-btn .awxjs__ui-switch.selected .awxjs__ui-switch__control,
.awxjs__app__ui-panel .awxjs__ui-switch.selected .awxjs__ui-switch__control {
  background: #1397ca;
}
.awxjs__ui-switch.selected .awxjs__ui-switch__control-indicator,
.awxjs__ui-btn .awxjs__ui-switch.selected .awxjs__ui-switch__control-indicator,
.awxjs__app__ui-panel .awxjs__ui-switch.selected .awxjs__ui-switch__control-indicator {
  left: 19px;
}
.awxjs__ui-switch.selected:hover .awxjs__ui-switch__control,
.awxjs__ui-btn .awxjs__ui-switch.selected:hover .awxjs__ui-switch__control,
.awxjs__app__ui-panel .awxjs__ui-switch.selected:hover .awxjs__ui-switch__control {
  background: #0c6d93;
}

.awxjs__ui-timeline .awxjs__ui-timeline__periods {
  height: 22px;
  position: relative;
}
.awxjs__ui-timeline .awxjs__ui-timeline__periods:after {
  content: "";
  display: table;
  clear: both;
}
.awxjs__ui-timeline .awxjs__ui-timeline__periods > .awxjs__ui-timeline__periods-item {
  bottom: 0;
  float: left;
  overflow: hidden;
  position: absolute;
  top: 0;
}
.awxjs__ui-timeline .awxjs__ui-timeline__periods > .awxjs__ui-timeline__periods-item > span {
  display: block;
  background-color: #1397ca;
  margin: 0 1px;
  padding: 0.125rem 0.25rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.awxjs__ui-timeline .awxjs__ui-timeline__periods > .awxjs__ui-timeline__periods-item:first-child > span {
  margin-left: 0;
}
.awxjs__ui-timeline .awxjs__ui-timeline__periods > .awxjs__ui-timeline__periods-item:last-child > span {
  margin-right: 0;
}

.awxjs__ui-toggleable .awxjs__ui-toggleable-options {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.23, 1), opacity 0.5s linear;
  -webkit-transition: max-height 0.5s cubic-bezier(0.4, 0, 0.23, 1), opacity 0.5s linear;
  -moz-transition: max-height 0.5s cubic-bezier(0.4, 0, 0.23, 1), opacity 0.5s linear;
}
.awxjs__ui-toggleable .awxjs__ui-toggleable-options ul {
  list-style: none;
  margin: 0;
  padding: 5px 0 2px;
}
.awxjs__ui-toggleable .awxjs__ui-toggleable-options ul > li {
  border-left: 4px solid #ddd;
  color: #666;
  font-size: 11px;
  font-weight: normal;
  margin: 3px 0;
  padding: 3px 5px;
}
.awxjs__ui-toggleable .awxjs__ui-toggleable-options ul > li:hover {
  border-color: #666;
  cursor: pointer;
}
.awxjs__ui-toggleable .awxjs__ui-toggleable-options ul > li.selected {
  border-color: #00a7e9;
  color: #222;
  font-weight: bold;
}
.awxjs__ui-toggleable.selected .awxjs__ui-toggleable-options {
  opacity: 1;
}

.awxjs__ui-tooltip {
  font-family: "Helvetica", "Arial", sans-serif;
  position: absolute;
  padding: 8px 10px;
  top: 10px;
  /* Defines the spacing between tooltip and target position */
  max-width: 400px;
  color: #333;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.2);
  z-index: 5010;
  /**
   * Transitions
   */
  /* Fade */
  /* Slide */
  /* Grow */
}
.awxjs__ui-tooltip .awxjs__ui-tooltip-close {
  position: absolute;
  right: 0;
  top: 0;
}
.awxjs__ui-tooltip-dark {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
}
.awxjs__ui-tooltip:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  margin: -5px;
  background: inherit;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.awxjs__ui-tooltip.top:after, .awxjs__ui-tooltip.top-left:after, .awxjs__ui-tooltip.top-right:after {
  bottom: 0;
}
.awxjs__ui-tooltip.bottom:after, .awxjs__ui-tooltip.bottom-left:after, .awxjs__ui-tooltip.bottom-right:after {
  top: 0;
}
.awxjs__ui-tooltip.top:after, .awxjs__ui-tooltip.bottom:after {
  left: 50%;
}
.awxjs__ui-tooltip.top-left:after, .awxjs__ui-tooltip.bottom-left:after {
  right: 15px;
}
.awxjs__ui-tooltip.top-right:after, .awxjs__ui-tooltip.bottom-right:after {
  left: 15px;
}
.awxjs__ui-tooltip.left:after, .awxjs__ui-tooltip.left-top:after, .awxjs__ui-tooltip.left-bottom:after {
  right: 0;
}
.awxjs__ui-tooltip.right:after, .awxjs__ui-tooltip.right-top:after, .awxjs__ui-tooltip.right-bottom:after {
  left: 0;
}
.awxjs__ui-tooltip.left:after, .awxjs__ui-tooltip.right:after {
  top: 50%;
}
.awxjs__ui-tooltip.left-top:after, .awxjs__ui-tooltip.right-top:after {
  bottom: 15px;
}
.awxjs__ui-tooltip.left-bottom:after, .awxjs__ui-tooltip.right-bottom:after {
  top: 15px;
}
.awxjs__ui-tooltip.fade {
  opacity: 0;
  transition: opacity 200ms ease-out;
}
.awxjs__ui-tooltip.fade.in {
  opacity: 1;
  transition-duration: 100ms;
}
.awxjs__ui-tooltip.slide {
  opacity: 0;
  transition: -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out;
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
}
.awxjs__ui-tooltip.slide.top, .awxjs__ui-tooltip.slide.top-left, .awxjs__ui-tooltip.slide.top-right {
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
}
.awxjs__ui-tooltip.slide.bottom, .awxjs__ui-tooltip.slide.bottom-left, .awxjs__ui-tooltip.slide.bottom-right {
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
}
.awxjs__ui-tooltip.slide.left, .awxjs__ui-tooltip.slide.left-top, .awxjs__ui-tooltip.slide.left-bottom {
  -webkit-transform: translateX(15px);
  transform: translateX(15px);
}
.awxjs__ui-tooltip.slide.right, .awxjs__ui-tooltip.slide.right-top, .awxjs__ui-tooltip.slide.right-bottom {
  -webkit-transform: translateX(-15px);
  transform: translateX(-15px);
}
.awxjs__ui-tooltip.slide.in {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  transition-duration: 100ms;
}
.awxjs__ui-tooltip.grow {
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out;
}
.awxjs__ui-tooltip.grow.top {
  -webkit-transform: translateY(60%) scale(0);
  transform: translateY(60%) scale(0);
}
.awxjs__ui-tooltip.grow.top-left {
  -webkit-transform: translateY(60%) translateX(40%) scale(0);
  transform: translateY(60%) translateX(40%) scale(0);
}
.awxjs__ui-tooltip.grow.top-right {
  -webkit-transform: translateY(60%) translateX(-40%) scale(0);
  transform: translateY(60%) translateX(-40%) scale(0);
}
.awxjs__ui-tooltip.grow.bottom {
  -webkit-transform: translateY(-60%) scale(0);
  transform: translateY(-60%) scale(0);
}
.awxjs__ui-tooltip.grow.bottom-left {
  -webkit-transform: translateY(-60%) translateX(40%) scale(0);
  transform: translateY(-60%) translateX(40%) scale(0);
}
.awxjs__ui-tooltip.grow.bottom-right {
  -webkit-transform: translateY(-60%) translateX(-40%) scale(0);
  transform: translateY(-60%) translateX(-40%) scale(0);
}
.awxjs__ui-tooltip.grow.left {
  -webkit-transform: translateX(53%) scale(0);
  transform: translateX(53%) scale(0);
}
.awxjs__ui-tooltip.grow.left-top {
  -webkit-transform: translateX(53%) translateY(40%) scale(0);
  transform: translateX(53%) translateY(40%) scale(0);
}
.awxjs__ui-tooltip.grow.left-bottom {
  -webkit-transform: translateX(53%) translateY(-40%) scale(0);
  transform: translateX(53%) translateY(-40%) scale(0);
}
.awxjs__ui-tooltip.grow.right {
  -webkit-transform: translateX(-53%) scale(0);
  transform: translateX(-53%) scale(0);
}
.awxjs__ui-tooltip.grow.right-top {
  -webkit-transform: translateX(-53%) translateY(40%) scale(0);
  transform: translateX(-53%) translateY(40%) scale(0);
}
.awxjs__ui-tooltip.grow.right-bottom {
  -webkit-transform: translateX(-53%) translateY(-40%) scale(0);
  transform: translateX(-53%) translateY(-40%) scale(0);
}
.awxjs__ui-tooltip.grow.in {
  -webkit-transform: none;
  transform: none;
  transition-duration: 100ms;
}

.awxb-view.awxb-view,.awxb-component.awxb-component{box-sizing:border-box;font-size:1rem;-webkit-tap-highlight-color:rgba(0,0,0,0);line-height:1.5}.awxb-view.awxb-view *,.awxb-component.awxb-component *{font-family:inherit}.awxb-view.awxb-view *,.awxb-view.awxb-view *::before,.awxb-view.awxb-view *::after,.awxb-component.awxb-component *,.awxb-component.awxb-component *::before,.awxb-component.awxb-component *::after{box-sizing:inherit}.awxb-view.awxb-view [tabindex="-1"]:focus,.awxb-component.awxb-component [tabindex="-1"]:focus{outline:none !important}.awxb-view.awxb-view h1,.awxb-view.awxb-view h2,.awxb-view.awxb-view h3,.awxb-view.awxb-view h4,.awxb-view.awxb-view h5,.awxb-view.awxb-view h6,.awxb-component.awxb-component h1,.awxb-component.awxb-component h2,.awxb-component.awxb-component h3,.awxb-component.awxb-component h4,.awxb-component.awxb-component h5,.awxb-component.awxb-component h6{margin-top:0;margin-bottom:.5rem}.awxb-view.awxb-view p,.awxb-component.awxb-component p{margin-top:0;margin-bottom:1rem}.awxb-view.awxb-view abbr[title],.awxb-view.awxb-view abbr[data-original-title],.awxb-component.awxb-component abbr[title],.awxb-component.awxb-component abbr[data-original-title]{cursor:help}.awxb-view.awxb-view address,.awxb-component.awxb-component address{margin-bottom:1rem;font-style:normal;line-height:inherit}.awxb-view.awxb-view ol,.awxb-view.awxb-view ul,.awxb-view.awxb-view dl,.awxb-component.awxb-component ol,.awxb-component.awxb-component ul,.awxb-component.awxb-component dl{margin-top:0;margin-bottom:1rem}.awxb-view.awxb-view ol ol,.awxb-view.awxb-view ul ul,.awxb-view.awxb-view ol ul,.awxb-view.awxb-view ul ol,.awxb-component.awxb-component ol ol,.awxb-component.awxb-component ul ul,.awxb-component.awxb-component ol ul,.awxb-component.awxb-component ul ol{margin-bottom:0}.awxb-view.awxb-view dt,.awxb-component.awxb-component dt{font-weight:700}.awxb-view.awxb-view dd,.awxb-component.awxb-component dd{margin-bottom:.5rem;margin-left:0}.awxb-view.awxb-view blockquote,.awxb-component.awxb-component blockquote{margin:0 0 1rem}.awxb-view.awxb-view a,.awxb-component.awxb-component a{color:#007bff;text-decoration:none}.awxb-view.awxb-view a:hover,.awxb-view.awxb-view a:focus,.awxb-component.awxb-component a:hover,.awxb-component.awxb-component a:focus{color:#0056b3;text-decoration:underline}.awxb-view.awxb-view a:not([href]):not([tabindex]),.awxb-component.awxb-component a:not([href]):not([tabindex]){color:inherit;text-decoration:none}.awxb-view.awxb-view a:not([href]):not([tabindex]):hover,.awxb-view.awxb-view a:not([href]):not([tabindex]):focus,.awxb-component.awxb-component a:not([href]):not([tabindex]):hover,.awxb-component.awxb-component a:not([href]):not([tabindex]):focus{color:inherit;text-decoration:none}.awxb-view.awxb-view a:not([href]):not([tabindex]):focus,.awxb-component.awxb-component a:not([href]):not([tabindex]):focus{outline:0}.awxb-view.awxb-view pre,.awxb-component.awxb-component pre{margin-top:0;margin-bottom:1rem;overflow:auto}.awxb-view.awxb-view figure,.awxb-component.awxb-component figure{margin:0 0 1rem}.awxb-view.awxb-view img,.awxb-component.awxb-component img{vertical-align:middle}.awxb-view.awxb-view [role=button],.awxb-component.awxb-component [role=button]{cursor:pointer}.awxb-view.awxb-view a,.awxb-view.awxb-view area,.awxb-view.awxb-view button,.awxb-view.awxb-view [role=button],.awxb-view.awxb-view input,.awxb-view.awxb-view label,.awxb-view.awxb-view select,.awxb-view.awxb-view summary,.awxb-view.awxb-view textarea,.awxb-component.awxb-component a,.awxb-component.awxb-component area,.awxb-component.awxb-component button,.awxb-component.awxb-component [role=button],.awxb-component.awxb-component input,.awxb-component.awxb-component label,.awxb-component.awxb-component select,.awxb-component.awxb-component summary,.awxb-component.awxb-component textarea{touch-action:manipulation}.awxb-view.awxb-view table,.awxb-component.awxb-component table{border-collapse:collapse;background-color:rgba(0,0,0,0)}.awxb-view.awxb-view caption,.awxb-component.awxb-component caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}.awxb-view.awxb-view th,.awxb-component.awxb-component th{text-align:left}.awxb-view.awxb-view label,.awxb-component.awxb-component label{display:inline-block;margin-bottom:.5rem}.awxb-view.awxb-view button:focus,.awxb-component.awxb-component button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}.awxb-view.awxb-view input,.awxb-view.awxb-view button,.awxb-view.awxb-view select,.awxb-view.awxb-view textarea,.awxb-component.awxb-component input,.awxb-component.awxb-component button,.awxb-component.awxb-component select,.awxb-component.awxb-component textarea{line-height:inherit}.awxb-view.awxb-view input[type=date],.awxb-view.awxb-view input[type=time],.awxb-view.awxb-view input[type=datetime-local],.awxb-view.awxb-view input[type=month],.awxb-component.awxb-component input[type=date],.awxb-component.awxb-component input[type=time],.awxb-component.awxb-component input[type=datetime-local],.awxb-component.awxb-component input[type=month]{-webkit-appearance:listbox}.awxb-view.awxb-view textarea,.awxb-component.awxb-component textarea{resize:vertical}.awxb-view.awxb-view fieldset,.awxb-component.awxb-component fieldset{min-width:0;padding:0;margin:0;border:0}.awxb-view.awxb-view legend,.awxb-component.awxb-component legend{display:block;width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit}.awxb-view.awxb-view input[type=search],.awxb-component.awxb-component input[type=search]{-webkit-appearance:none}.awxb-view.awxb-view button,.awxb-view.awxb-view html [type=button],.awxb-view.awxb-view [type=reset],.awxb-view.awxb-view [type=submit],.awxb-component.awxb-component button,.awxb-component.awxb-component html [type=button],.awxb-component.awxb-component [type=reset],.awxb-component.awxb-component [type=submit]{-webkit-appearance:none}.awxb-view.awxb-view output,.awxb-component.awxb-component output{display:inline-block}.awxb-view.awxb-view [hidden],.awxb-component.awxb-component [hidden]{display:none !important}.awxb-view.awxb-view h1,.awxb-view.awxb-view h2,.awxb-view.awxb-view h3,.awxb-view.awxb-view h4,.awxb-view.awxb-view h5,.awxb-view.awxb-view h6,.awxb-view.awxb-view .h1,.awxb-view.awxb-view .h2,.awxb-view.awxb-view .h3,.awxb-view.awxb-view .h4,.awxb-view.awxb-view .h5,.awxb-view.awxb-view .h6,.awxb-component.awxb-component h1,.awxb-component.awxb-component h2,.awxb-component.awxb-component h3,.awxb-component.awxb-component h4,.awxb-component.awxb-component h5,.awxb-component.awxb-component h6,.awxb-component.awxb-component .h1,.awxb-component.awxb-component .h2,.awxb-component.awxb-component .h3,.awxb-component.awxb-component .h4,.awxb-component.awxb-component .h5,.awxb-component.awxb-component .h6{margin-bottom:.5rem;font-family:inherit;font-weight:400;line-height:1.2;color:inherit}.awxb-view.awxb-view h1,.awxb-view.awxb-view .h1,.awxb-component.awxb-component h1,.awxb-component.awxb-component .h1{font-size:2.5rem}.awxb-view.awxb-view h2,.awxb-view.awxb-view .h2,.awxb-component.awxb-component h2,.awxb-component.awxb-component .h2{font-size:2rem}.awxb-view.awxb-view h3,.awxb-view.awxb-view .h3,.awxb-component.awxb-component h3,.awxb-component.awxb-component .h3{font-size:1.75rem}.awxb-view.awxb-view h4,.awxb-view.awxb-view .h4,.awxb-component.awxb-component h4,.awxb-component.awxb-component .h4{font-size:1.5rem}.awxb-view.awxb-view h5,.awxb-view.awxb-view .h5,.awxb-component.awxb-component h5,.awxb-component.awxb-component .h5{font-size:1.25rem}.awxb-view.awxb-view h6,.awxb-view.awxb-view .h6,.awxb-component.awxb-component h6,.awxb-component.awxb-component .h6{font-size:1rem}.awxb-view.awxb-view .lead,.awxb-component.awxb-component .lead{font-size:1.25rem;font-weight:300}.awxb-view.awxb-view .display-1,.awxb-component.awxb-component .display-1{font-size:6rem;font-weight:300;line-height:1.2}.awxb-view.awxb-view .display-2,.awxb-component.awxb-component .display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.awxb-view.awxb-view .display-3,.awxb-component.awxb-component .display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.awxb-view.awxb-view .display-4,.awxb-component.awxb-component .display-4{font-size:3.5rem;font-weight:300;line-height:1.2}.awxb-view.awxb-view hr,.awxb-component.awxb-component hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.awxb-view.awxb-view small,.awxb-view.awxb-view .small,.awxb-component.awxb-component small,.awxb-component.awxb-component .small{font-size:80%;font-weight:400}.awxb-view.awxb-view mark,.awxb-view.awxb-view .mark,.awxb-component.awxb-component mark,.awxb-component.awxb-component .mark{padding:.2em;background-color:#fcf8e3}.awxb-view.awxb-view .list-unstyled,.awxb-component.awxb-component .list-unstyled{padding-left:0;list-style:none}.awxb-view.awxb-view .list-inline,.awxb-component.awxb-component .list-inline{padding-left:0;list-style:none}.awxb-view.awxb-view .list-inline-item,.awxb-component.awxb-component .list-inline-item{display:inline-block}.awxb-view.awxb-view .list-inline-item:not(:last-child),.awxb-component.awxb-component .list-inline-item:not(:last-child){margin-right:.5rem}.awxb-view.awxb-view .initialism,.awxb-component.awxb-component .initialism{font-size:90%;text-transform:uppercase}.awxb-view.awxb-view .blockquote,.awxb-component.awxb-component .blockquote{margin-bottom:1rem;font-size:1.25rem}.awxb-view.awxb-view .blockquote-footer,.awxb-component.awxb-component .blockquote-footer{display:block;font-size:80%;color:#6c757d}.awxb-view.awxb-view .blockquote-footer::before,.awxb-component.awxb-component .blockquote-footer::before{content:"— "}.awxb-view.awxb-view .container,.awxb-component.awxb-component .container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width: 576px){.awxb-view.awxb-view .container,.awxb-component.awxb-component .container{max-width:540px}}@media(min-width: 768px){.awxb-view.awxb-view .container,.awxb-component.awxb-component .container{max-width:720px}}@media(min-width: 992px){.awxb-view.awxb-view .container,.awxb-component.awxb-component .container{max-width:960px}}@media(min-width: 1200px){.awxb-view.awxb-view .container,.awxb-component.awxb-component .container{max-width:1140px}}.awxb-view.awxb-view .container-fluid,.awxb-component.awxb-component .container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.awxb-view.awxb-view .row,.awxb-component.awxb-component .row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.awxb-view.awxb-view .no-gutters,.awxb-component.awxb-component .no-gutters{margin-right:0;margin-left:0}.awxb-view.awxb-view .no-gutters>.col,.awxb-view.awxb-view .no-gutters>[class*=col-],.awxb-component.awxb-component .no-gutters>.col,.awxb-component.awxb-component .no-gutters>[class*=col-]{padding-right:0;padding-left:0}.awxb-view.awxb-view .col-xl,.awxb-view.awxb-view .col-xl-auto,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-auto,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-auto,.awxb-view.awxb-view .col-xl-12,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-12,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-12,.awxb-view.awxb-view .col-xl-11,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-11,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-11,.awxb-view.awxb-view .col-xl-10,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-10,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-10,.awxb-view.awxb-view .col-xl-9,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-9,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-9,.awxb-view.awxb-view .col-xl-8,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-8,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-8,.awxb-view.awxb-view .col-xl-7,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-7,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-7,.awxb-view.awxb-view .col-xl-6,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-6,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-6,.awxb-view.awxb-view .col-xl-5,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-5,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-5,.awxb-view.awxb-view .col-xl-4,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-4,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-4,.awxb-view.awxb-view .col-xl-3,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-3,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-3,.awxb-view.awxb-view .col-xl-2,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-2,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-2,.awxb-view.awxb-view .col-xl-1,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-1,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-1,.awxb-view.awxb-view .col-lg,.awxb-view.awxb-view .col-lg-auto,.awxb-view.awxb-view .awxb-component.awxb-component .col-lg,.awxb-component.awxb-component .awxb-view.awxb-view .col-lg,.awxb-view.awxb-view .awxb-component.awxb-component .col-lg-auto,.awxb-component.awxb-component .awxb-view.awxb-view .col-lg-auto,.awxb-view.awxb-view .col-lg-12,.awxb-view.awxb-view .awxb-component.awxb-component .col-lg-12,.awxb-component.awxb-component .awxb-view.awxb-view .col-lg-12,.awxb-view.awxb-view .col-lg-11,.awxb-view.awxb-view .awxb-component.awxb-component .col-lg-11,.awxb-component.awxb-component .awxb-view.awxb-view .col-lg-11,.awxb-view.awxb-view .col-lg-10,.awxb-view.awxb-view .awxb-component.awxb-component .col-lg-10,.awxb-component.awxb-component .awxb-view.awxb-view .col-lg-10,.awxb-view.awxb-view .col-lg-9,.awxb-view.awxb-view .awxb-component.awxb-component .col-lg-9,.awxb-component.awxb-component .awxb-view.awxb-view .col-lg-9,.awxb-view.awxb-view .col-lg-8,.awxb-view.awxb-view .awxb-component.awxb-component .col-lg-8,.awxb-component.awxb-component .awxb-view.awxb-view .col-lg-8,.awxb-view.awxb-view .col-lg-7,.awxb-view.awxb-view .awxb-component.awxb-component .col-lg-7,.awxb-component.awxb-component .awxb-view.awxb-view .col-lg-7,.awxb-view.awxb-view .col-lg-6,.awxb-view.awxb-view .awxb-component.awxb-component .col-lg-6,.awxb-component.awxb-component .awxb-view.awxb-view .col-lg-6,.awxb-view.awxb-view .col-lg-5,.awxb-view.awxb-view .col-lg-4,.awxb-view.awxb-view .col-lg-3,.awxb-view.awxb-view .col-lg-2,.awxb-view.awxb-view .col-lg-1,.awxb-view.awxb-view .col-md,.awxb-view.awxb-view .col-md-auto,.awxb-view.awxb-view .col-md-12,.awxb-view.awxb-view .col-md-11,.awxb-view.awxb-view .col-md-10,.awxb-view.awxb-view .col-md-9,.awxb-view.awxb-view .col-md-8,.awxb-view.awxb-view .col-md-7,.awxb-view.awxb-view .col-md-6,.awxb-view.awxb-view .col-md-5,.awxb-view.awxb-view .col-md-4,.awxb-view.awxb-view .col-md-3,.awxb-view.awxb-view .col-md-2,.awxb-view.awxb-view .col-md-1,.awxb-view.awxb-view .col-sm,.awxb-view.awxb-view .col-sm-auto,.awxb-view.awxb-view .col-sm-12,.awxb-view.awxb-view .col-sm-11,.awxb-view.awxb-view .col-sm-10,.awxb-view.awxb-view .col-sm-9,.awxb-view.awxb-view .col-sm-8,.awxb-view.awxb-view .col-sm-7,.awxb-view.awxb-view .col-sm-6,.awxb-view.awxb-view .col-sm-5,.awxb-view.awxb-view .col-sm-4,.awxb-view.awxb-view .col-sm-3,.awxb-view.awxb-view .col-sm-2,.awxb-view.awxb-view .col-sm-1,.awxb-view.awxb-view .col,.awxb-view.awxb-view .col-auto,.awxb-view.awxb-view .col-12,.awxb-view.awxb-view .col-11,.awxb-view.awxb-view .col-10,.awxb-view.awxb-view .col-9,.awxb-view.awxb-view .col-8,.awxb-view.awxb-view .col-7,.awxb-view.awxb-view .col-6,.awxb-view.awxb-view .col-5,.awxb-view.awxb-view .col-4,.awxb-view.awxb-view .col-3,.awxb-view.awxb-view .col-2,.awxb-view.awxb-view .col-1,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-auto,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-auto,.awxb-component.awxb-component .col-xl,.awxb-component.awxb-component .col-xl-auto,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-12,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-12,.awxb-component.awxb-component .col-xl-12,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-11,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-11,.awxb-component.awxb-component .col-xl-11,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-10,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-10,.awxb-component.awxb-component .col-xl-10,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-9,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-9,.awxb-component.awxb-component .col-xl-9,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-8,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-8,.awxb-component.awxb-component .col-xl-8,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-7,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-7,.awxb-component.awxb-component .col-xl-7,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-6,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-6,.awxb-component.awxb-component .col-xl-6,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-5,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-5,.awxb-component.awxb-component .col-xl-5,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-4,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-4,.awxb-component.awxb-component .col-xl-4,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-3,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-3,.awxb-component.awxb-component .col-xl-3,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-2,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-2,.awxb-component.awxb-component .col-xl-2,.awxb-component.awxb-component .awxb-view.awxb-view .col-xl-1,.awxb-view.awxb-view .awxb-component.awxb-component .col-xl-1,.awxb-component.awxb-component .col-xl-1,.awxb-component.awxb-component .awxb-view.awxb-view .col-lg,.awxb-view.awxb-view .awxb-component.awxb-component .col-lg,.awxb-component.awxb-component .awxb-view.awxb-view .col-lg-auto,.awxb-view.awxb-view .awxb-component.awxb-component .col-lg-auto,.awxb-component.awxb-component .col-lg,.awxb-component.awxb-component .col-lg-auto,.awxb-component.awxb-component .awxb-view.awxb-view .col-lg-12,.awxb-view.awxb-view .awxb-component.awxb-component .col-lg-12,.awxb-component.awxb-component .col-lg-12,.awxb-component.awxb-component .awxb-view.awxb-view .col-lg-11,.awxb-view.awxb-view .awxb-component.awxb-component .col-lg-11,.awxb-component.awxb-component .col-lg-11,.awxb-component.awxb-component .awxb-view.awxb-view .col-lg-10,.awxb-view.awxb-view .awxb-component.awxb-component .col-lg-10,.awxb-component.awxb-component .col-lg-10,.awxb-component.awxb-component .awxb-view.awxb-view .col-lg-9,.awxb-view.awxb-view .awxb-component.awxb-component .col-lg-9,.awxb-component.awxb-component .col-lg-9,.awxb-component.awxb-component .awxb-view.awxb-view .col-lg-8,.awxb-view.awxb-view .awxb-component.awxb-component .col-lg-8,.awxb-component.awxb-component .col-lg-8,.awxb-component.awxb-component .awxb-view.awxb-view .col-lg-7,.awxb-view.awxb-view .awxb-component.awxb-component .col-lg-7,.awxb-component.awxb-component .col-lg-7,.awxb-component.awxb-component .awxb-view.awxb-view .col-lg-6,.awxb-view.awxb-view .awxb-component.awxb-component .col-lg-6,.awxb-component.awxb-component .col-lg-6,.awxb-component.awxb-component .col-lg-5,.awxb-component.awxb-component .col-lg-4,.awxb-component.awxb-component .col-lg-3,.awxb-component.awxb-component .col-lg-2,.awxb-component.awxb-component .col-lg-1,.awxb-component.awxb-component .col-md,.awxb-component.awxb-component .col-md-auto,.awxb-component.awxb-component .col-md-12,.awxb-component.awxb-component .col-md-11,.awxb-component.awxb-component .col-md-10,.awxb-component.awxb-component .col-md-9,.awxb-component.awxb-component .col-md-8,.awxb-component.awxb-component .col-md-7,.awxb-component.awxb-component .col-md-6,.awxb-component.awxb-component .col-md-5,.awxb-component.awxb-component .col-md-4,.awxb-component.awxb-component .col-md-3,.awxb-component.awxb-component .col-md-2,.awxb-component.awxb-component .col-md-1,.awxb-component.awxb-component .col-sm,.awxb-component.awxb-component .col-sm-auto,.awxb-component.awxb-component .col-sm-12,.awxb-component.awxb-component .col-sm-11,.awxb-component.awxb-component .col-sm-10,.awxb-component.awxb-component .col-sm-9,.awxb-component.awxb-component .col-sm-8,.awxb-component.awxb-component .col-sm-7,.awxb-component.awxb-component .col-sm-6,.awxb-component.awxb-component .col-sm-5,.awxb-component.awxb-component .col-sm-4,.awxb-component.awxb-component .col-sm-3,.awxb-component.awxb-component .col-sm-2,.awxb-component.awxb-component .col-sm-1,.awxb-component.awxb-component .col,.awxb-component.awxb-component .col-auto,.awxb-component.awxb-component .col-12,.awxb-component.awxb-component .col-11,.awxb-component.awxb-component .col-10,.awxb-component.awxb-component .col-9,.awxb-component.awxb-component .col-8,.awxb-component.awxb-component .col-7,.awxb-component.awxb-component .col-6,.awxb-component.awxb-component .col-5,.awxb-component.awxb-component .col-4,.awxb-component.awxb-component .col-3,.awxb-component.awxb-component .col-2,.awxb-component.awxb-component .col-1{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.awxb-view.awxb-view .col,.awxb-component.awxb-component .col{flex-basis:0;flex-grow:1;max-width:100%}.awxb-view.awxb-view .col-auto,.awxb-component.awxb-component .col-auto{flex:0 0 auto;width:auto;max-width:none}.awxb-view.awxb-view .col-1,.awxb-component.awxb-component .col-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.awxb-view.awxb-view .col-2,.awxb-component.awxb-component .col-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.awxb-view.awxb-view .col-3,.awxb-component.awxb-component .col-3{flex:0 0 25%;max-width:25%}.awxb-view.awxb-view .col-4,.awxb-component.awxb-component .col-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.awxb-view.awxb-view .col-5,.awxb-component.awxb-component .col-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.awxb-view.awxb-view .col-6,.awxb-component.awxb-component .col-6{flex:0 0 50%;max-width:50%}.awxb-view.awxb-view .col-7,.awxb-component.awxb-component .col-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.awxb-view.awxb-view .col-8,.awxb-component.awxb-component .col-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.awxb-view.awxb-view .col-9,.awxb-component.awxb-component .col-9{flex:0 0 75%;max-width:75%}.awxb-view.awxb-view .col-10,.awxb-component.awxb-component .col-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.awxb-view.awxb-view .col-11,.awxb-component.awxb-component .col-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.awxb-view.awxb-view .col-12,.awxb-component.awxb-component .col-12{flex:0 0 100%;max-width:100%}.awxb-view.awxb-view .order-first,.awxb-component.awxb-component .order-first{order:-1}.awxb-view.awxb-view .order-last,.awxb-component.awxb-component .order-last{order:13}.awxb-view.awxb-view .order-0,.awxb-component.awxb-component .order-0{order:0}.awxb-view.awxb-view .order-1,.awxb-component.awxb-component .order-1{order:1}.awxb-view.awxb-view .order-2,.awxb-component.awxb-component .order-2{order:2}.awxb-view.awxb-view .order-3,.awxb-component.awxb-component .order-3{order:3}.awxb-view.awxb-view .order-4,.awxb-component.awxb-component .order-4{order:4}.awxb-view.awxb-view .order-5,.awxb-component.awxb-component .order-5{order:5}.awxb-view.awxb-view .order-6,.awxb-component.awxb-component .order-6{order:6}.awxb-view.awxb-view .order-7,.awxb-component.awxb-component .order-7{order:7}.awxb-view.awxb-view .order-8,.awxb-component.awxb-component .order-8{order:8}.awxb-view.awxb-view .order-9,.awxb-component.awxb-component .order-9{order:9}.awxb-view.awxb-view .order-10,.awxb-component.awxb-component .order-10{order:10}.awxb-view.awxb-view .order-11,.awxb-component.awxb-component .order-11{order:11}.awxb-view.awxb-view .order-12,.awxb-component.awxb-component .order-12{order:12}.awxb-view.awxb-view .offset-1,.awxb-component.awxb-component .offset-1{margin-left:8.3333333333%}.awxb-view.awxb-view .offset-2,.awxb-component.awxb-component .offset-2{margin-left:16.6666666667%}.awxb-view.awxb-view .offset-3,.awxb-component.awxb-component .offset-3{margin-left:25%}.awxb-view.awxb-view .offset-4,.awxb-component.awxb-component .offset-4{margin-left:33.3333333333%}.awxb-view.awxb-view .offset-5,.awxb-component.awxb-component .offset-5{margin-left:41.6666666667%}.awxb-view.awxb-view .offset-6,.awxb-component.awxb-component .offset-6{margin-left:50%}.awxb-view.awxb-view .offset-7,.awxb-component.awxb-component .offset-7{margin-left:58.3333333333%}.awxb-view.awxb-view .offset-8,.awxb-component.awxb-component .offset-8{margin-left:66.6666666667%}.awxb-view.awxb-view .offset-9,.awxb-component.awxb-component .offset-9{margin-left:75%}.awxb-view.awxb-view .offset-10,.awxb-component.awxb-component .offset-10{margin-left:83.3333333333%}.awxb-view.awxb-view .offset-11,.awxb-component.awxb-component .offset-11{margin-left:91.6666666667%}@media(min-width: 576px){.awxb-view.awxb-view .col-sm,.awxb-component.awxb-component .col-sm{flex-basis:0;flex-grow:1;max-width:100%}.awxb-view.awxb-view .col-sm-auto,.awxb-component.awxb-component .col-sm-auto{flex:0 0 auto;width:auto;max-width:none}.awxb-view.awxb-view .col-sm-1,.awxb-component.awxb-component .col-sm-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.awxb-view.awxb-view .col-sm-2,.awxb-component.awxb-component .col-sm-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.awxb-view.awxb-view .col-sm-3,.awxb-component.awxb-component .col-sm-3{flex:0 0 25%;max-width:25%}.awxb-view.awxb-view .col-sm-4,.awxb-component.awxb-component .col-sm-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.awxb-view.awxb-view .col-sm-5,.awxb-component.awxb-component .col-sm-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.awxb-view.awxb-view .col-sm-6,.awxb-component.awxb-component .col-sm-6{flex:0 0 50%;max-width:50%}.awxb-view.awxb-view .col-sm-7,.awxb-component.awxb-component .col-sm-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.awxb-view.awxb-view .col-sm-8,.awxb-component.awxb-component .col-sm-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.awxb-view.awxb-view .col-sm-9,.awxb-component.awxb-component .col-sm-9{flex:0 0 75%;max-width:75%}.awxb-view.awxb-view .col-sm-10,.awxb-component.awxb-component .col-sm-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.awxb-view.awxb-view .col-sm-11,.awxb-component.awxb-component .col-sm-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.awxb-view.awxb-view .col-sm-12,.awxb-component.awxb-component .col-sm-12{flex:0 0 100%;max-width:100%}.awxb-view.awxb-view .order-sm-first,.awxb-component.awxb-component .order-sm-first{order:-1}.awxb-view.awxb-view .order-sm-last,.awxb-component.awxb-component .order-sm-last{order:13}.awxb-view.awxb-view .order-sm-0,.awxb-component.awxb-component .order-sm-0{order:0}.awxb-view.awxb-view .order-sm-1,.awxb-component.awxb-component .order-sm-1{order:1}.awxb-view.awxb-view .order-sm-2,.awxb-component.awxb-component .order-sm-2{order:2}.awxb-view.awxb-view .order-sm-3,.awxb-component.awxb-component .order-sm-3{order:3}.awxb-view.awxb-view .order-sm-4,.awxb-component.awxb-component .order-sm-4{order:4}.awxb-view.awxb-view .order-sm-5,.awxb-component.awxb-component .order-sm-5{order:5}.awxb-view.awxb-view .order-sm-6,.awxb-component.awxb-component .order-sm-6{order:6}.awxb-view.awxb-view .order-sm-7,.awxb-component.awxb-component .order-sm-7{order:7}.awxb-view.awxb-view .order-sm-8,.awxb-component.awxb-component .order-sm-8{order:8}.awxb-view.awxb-view .order-sm-9,.awxb-component.awxb-component .order-sm-9{order:9}.awxb-view.awxb-view .order-sm-10,.awxb-component.awxb-component .order-sm-10{order:10}.awxb-view.awxb-view .order-sm-11,.awxb-component.awxb-component .order-sm-11{order:11}.awxb-view.awxb-view .order-sm-12,.awxb-component.awxb-component .order-sm-12{order:12}.awxb-view.awxb-view .offset-sm-0,.awxb-component.awxb-component .offset-sm-0{margin-left:0}.awxb-view.awxb-view .offset-sm-1,.awxb-component.awxb-component .offset-sm-1{margin-left:8.3333333333%}.awxb-view.awxb-view .offset-sm-2,.awxb-component.awxb-component .offset-sm-2{margin-left:16.6666666667%}.awxb-view.awxb-view .offset-sm-3,.awxb-component.awxb-component .offset-sm-3{margin-left:25%}.awxb-view.awxb-view .offset-sm-4,.awxb-component.awxb-component .offset-sm-4{margin-left:33.3333333333%}.awxb-view.awxb-view .offset-sm-5,.awxb-component.awxb-component .offset-sm-5{margin-left:41.6666666667%}.awxb-view.awxb-view .offset-sm-6,.awxb-component.awxb-component .offset-sm-6{margin-left:50%}.awxb-view.awxb-view .offset-sm-7,.awxb-component.awxb-component .offset-sm-7{margin-left:58.3333333333%}.awxb-view.awxb-view .offset-sm-8,.awxb-component.awxb-component .offset-sm-8{margin-left:66.6666666667%}.awxb-view.awxb-view .offset-sm-9,.awxb-component.awxb-component .offset-sm-9{margin-left:75%}.awxb-view.awxb-view .offset-sm-10,.awxb-component.awxb-component .offset-sm-10{margin-left:83.3333333333%}.awxb-view.awxb-view .offset-sm-11,.awxb-component.awxb-component .offset-sm-11{margin-left:91.6666666667%}}@media(min-width: 768px){.awxb-view.awxb-view .col-md,.awxb-component.awxb-component .col-md{flex-basis:0;flex-grow:1;max-width:100%}.awxb-view.awxb-view .col-md-auto,.awxb-component.awxb-component .col-md-auto{flex:0 0 auto;width:auto;max-width:none}.awxb-view.awxb-view .col-md-1,.awxb-component.awxb-component .col-md-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.awxb-view.awxb-view .col-md-2,.awxb-component.awxb-component .col-md-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.awxb-view.awxb-view .col-md-3,.awxb-component.awxb-component .col-md-3{flex:0 0 25%;max-width:25%}.awxb-view.awxb-view .col-md-4,.awxb-component.awxb-component .col-md-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.awxb-view.awxb-view .col-md-5,.awxb-component.awxb-component .col-md-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.awxb-view.awxb-view .col-md-6,.awxb-component.awxb-component .col-md-6{flex:0 0 50%;max-width:50%}.awxb-view.awxb-view .col-md-7,.awxb-component.awxb-component .col-md-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.awxb-view.awxb-view .col-md-8,.awxb-component.awxb-component .col-md-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.awxb-view.awxb-view .col-md-9,.awxb-component.awxb-component .col-md-9{flex:0 0 75%;max-width:75%}.awxb-view.awxb-view .col-md-10,.awxb-component.awxb-component .col-md-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.awxb-view.awxb-view .col-md-11,.awxb-component.awxb-component .col-md-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.awxb-view.awxb-view .col-md-12,.awxb-component.awxb-component .col-md-12{flex:0 0 100%;max-width:100%}.awxb-view.awxb-view .order-md-first,.awxb-component.awxb-component .order-md-first{order:-1}.awxb-view.awxb-view .order-md-last,.awxb-component.awxb-component .order-md-last{order:13}.awxb-view.awxb-view .order-md-0,.awxb-component.awxb-component .order-md-0{order:0}.awxb-view.awxb-view .order-md-1,.awxb-component.awxb-component .order-md-1{order:1}.awxb-view.awxb-view .order-md-2,.awxb-component.awxb-component .order-md-2{order:2}.awxb-view.awxb-view .order-md-3,.awxb-component.awxb-component .order-md-3{order:3}.awxb-view.awxb-view .order-md-4,.awxb-component.awxb-component .order-md-4{order:4}.awxb-view.awxb-view .order-md-5,.awxb-component.awxb-component .order-md-5{order:5}.awxb-view.awxb-view .order-md-6,.awxb-component.awxb-component .order-md-6{order:6}.awxb-view.awxb-view .order-md-7,.awxb-component.awxb-component .order-md-7{order:7}.awxb-view.awxb-view .order-md-8,.awxb-component.awxb-component .order-md-8{order:8}.awxb-view.awxb-view .order-md-9,.awxb-component.awxb-component .order-md-9{order:9}.awxb-view.awxb-view .order-md-10,.awxb-component.awxb-component .order-md-10{order:10}.awxb-view.awxb-view .order-md-11,.awxb-component.awxb-component .order-md-11{order:11}.awxb-view.awxb-view .order-md-12,.awxb-component.awxb-component .order-md-12{order:12}.awxb-view.awxb-view .offset-md-0,.awxb-component.awxb-component .offset-md-0{margin-left:0}.awxb-view.awxb-view .offset-md-1,.awxb-component.awxb-component .offset-md-1{margin-left:8.3333333333%}.awxb-view.awxb-view .offset-md-2,.awxb-component.awxb-component .offset-md-2{margin-left:16.6666666667%}.awxb-view.awxb-view .offset-md-3,.awxb-component.awxb-component .offset-md-3{margin-left:25%}.awxb-view.awxb-view .offset-md-4,.awxb-component.awxb-component .offset-md-4{margin-left:33.3333333333%}.awxb-view.awxb-view .offset-md-5,.awxb-component.awxb-component .offset-md-5{margin-left:41.6666666667%}.awxb-view.awxb-view .offset-md-6,.awxb-component.awxb-component .offset-md-6{margin-left:50%}.awxb-view.awxb-view .offset-md-7,.awxb-component.awxb-component .offset-md-7{margin-left:58.3333333333%}.awxb-view.awxb-view .offset-md-8,.awxb-component.awxb-component .offset-md-8{margin-left:66.6666666667%}.awxb-view.awxb-view .offset-md-9,.awxb-component.awxb-component .offset-md-9{margin-left:75%}.awxb-view.awxb-view .offset-md-10,.awxb-component.awxb-component .offset-md-10{margin-left:83.3333333333%}.awxb-view.awxb-view .offset-md-11,.awxb-component.awxb-component .offset-md-11{margin-left:91.6666666667%}}@media(min-width: 992px){.awxb-view.awxb-view .col-lg,.awxb-component.awxb-component .col-lg{flex-basis:0;flex-grow:1;max-width:100%}.awxb-view.awxb-view .col-lg-auto,.awxb-component.awxb-component .col-lg-auto{flex:0 0 auto;width:auto;max-width:none}.awxb-view.awxb-view .col-lg-1,.awxb-component.awxb-component .col-lg-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.awxb-view.awxb-view .col-lg-2,.awxb-component.awxb-component .col-lg-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.awxb-view.awxb-view .col-lg-3,.awxb-component.awxb-component .col-lg-3{flex:0 0 25%;max-width:25%}.awxb-view.awxb-view .col-lg-4,.awxb-component.awxb-component .col-lg-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.awxb-view.awxb-view .col-lg-5,.awxb-component.awxb-component .col-lg-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.awxb-view.awxb-view .col-lg-6,.awxb-component.awxb-component .col-lg-6{flex:0 0 50%;max-width:50%}.awxb-view.awxb-view .col-lg-7,.awxb-component.awxb-component .col-lg-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.awxb-view.awxb-view .col-lg-8,.awxb-component.awxb-component .col-lg-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.awxb-view.awxb-view .col-lg-9,.awxb-component.awxb-component .col-lg-9{flex:0 0 75%;max-width:75%}.awxb-view.awxb-view .col-lg-10,.awxb-component.awxb-component .col-lg-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.awxb-view.awxb-view .col-lg-11,.awxb-component.awxb-component .col-lg-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.awxb-view.awxb-view .col-lg-12,.awxb-component.awxb-component .col-lg-12{flex:0 0 100%;max-width:100%}.awxb-view.awxb-view .order-lg-first,.awxb-component.awxb-component .order-lg-first{order:-1}.awxb-view.awxb-view .order-lg-last,.awxb-component.awxb-component .order-lg-last{order:13}.awxb-view.awxb-view .order-lg-0,.awxb-component.awxb-component .order-lg-0{order:0}.awxb-view.awxb-view .order-lg-1,.awxb-component.awxb-component .order-lg-1{order:1}.awxb-view.awxb-view .order-lg-2,.awxb-component.awxb-component .order-lg-2{order:2}.awxb-view.awxb-view .order-lg-3,.awxb-component.awxb-component .order-lg-3{order:3}.awxb-view.awxb-view .order-lg-4,.awxb-component.awxb-component .order-lg-4{order:4}.awxb-view.awxb-view .order-lg-5,.awxb-component.awxb-component .order-lg-5{order:5}.awxb-view.awxb-view .order-lg-6,.awxb-component.awxb-component .order-lg-6{order:6}.awxb-view.awxb-view .order-lg-7,.awxb-component.awxb-component .order-lg-7{order:7}.awxb-view.awxb-view .order-lg-8,.awxb-component.awxb-component .order-lg-8{order:8}.awxb-view.awxb-view .order-lg-9,.awxb-component.awxb-component .order-lg-9{order:9}.awxb-view.awxb-view .order-lg-10,.awxb-component.awxb-component .order-lg-10{order:10}.awxb-view.awxb-view .order-lg-11,.awxb-component.awxb-component .order-lg-11{order:11}.awxb-view.awxb-view .order-lg-12,.awxb-component.awxb-component .order-lg-12{order:12}.awxb-view.awxb-view .offset-lg-0,.awxb-component.awxb-component .offset-lg-0{margin-left:0}.awxb-view.awxb-view .offset-lg-1,.awxb-component.awxb-component .offset-lg-1{margin-left:8.3333333333%}.awxb-view.awxb-view .offset-lg-2,.awxb-component.awxb-component .offset-lg-2{margin-left:16.6666666667%}.awxb-view.awxb-view .offset-lg-3,.awxb-component.awxb-component .offset-lg-3{margin-left:25%}.awxb-view.awxb-view .offset-lg-4,.awxb-component.awxb-component .offset-lg-4{margin-left:33.3333333333%}.awxb-view.awxb-view .offset-lg-5,.awxb-component.awxb-component .offset-lg-5{margin-left:41.6666666667%}.awxb-view.awxb-view .offset-lg-6,.awxb-component.awxb-component .offset-lg-6{margin-left:50%}.awxb-view.awxb-view .offset-lg-7,.awxb-component.awxb-component .offset-lg-7{margin-left:58.3333333333%}.awxb-view.awxb-view .offset-lg-8,.awxb-component.awxb-component .offset-lg-8{margin-left:66.6666666667%}.awxb-view.awxb-view .offset-lg-9,.awxb-component.awxb-component .offset-lg-9{margin-left:75%}.awxb-view.awxb-view .offset-lg-10,.awxb-component.awxb-component .offset-lg-10{margin-left:83.3333333333%}.awxb-view.awxb-view .offset-lg-11,.awxb-component.awxb-component .offset-lg-11{margin-left:91.6666666667%}}@media(min-width: 1200px){.awxb-view.awxb-view .col-xl,.awxb-component.awxb-component .col-xl{flex-basis:0;flex-grow:1;max-width:100%}.awxb-view.awxb-view .col-xl-auto,.awxb-component.awxb-component .col-xl-auto{flex:0 0 auto;width:auto;max-width:none}.awxb-view.awxb-view .col-xl-1,.awxb-component.awxb-component .col-xl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.awxb-view.awxb-view .col-xl-2,.awxb-component.awxb-component .col-xl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.awxb-view.awxb-view .col-xl-3,.awxb-component.awxb-component .col-xl-3{flex:0 0 25%;max-width:25%}.awxb-view.awxb-view .col-xl-4,.awxb-component.awxb-component .col-xl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.awxb-view.awxb-view .col-xl-5,.awxb-component.awxb-component .col-xl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.awxb-view.awxb-view .col-xl-6,.awxb-component.awxb-component .col-xl-6{flex:0 0 50%;max-width:50%}.awxb-view.awxb-view .col-xl-7,.awxb-component.awxb-component .col-xl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.awxb-view.awxb-view .col-xl-8,.awxb-component.awxb-component .col-xl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.awxb-view.awxb-view .col-xl-9,.awxb-component.awxb-component .col-xl-9{flex:0 0 75%;max-width:75%}.awxb-view.awxb-view .col-xl-10,.awxb-component.awxb-component .col-xl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.awxb-view.awxb-view .col-xl-11,.awxb-component.awxb-component .col-xl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.awxb-view.awxb-view .col-xl-12,.awxb-component.awxb-component .col-xl-12{flex:0 0 100%;max-width:100%}.awxb-view.awxb-view .order-xl-first,.awxb-component.awxb-component .order-xl-first{order:-1}.awxb-view.awxb-view .order-xl-last,.awxb-component.awxb-component .order-xl-last{order:13}.awxb-view.awxb-view .order-xl-0,.awxb-component.awxb-component .order-xl-0{order:0}.awxb-view.awxb-view .order-xl-1,.awxb-component.awxb-component .order-xl-1{order:1}.awxb-view.awxb-view .order-xl-2,.awxb-component.awxb-component .order-xl-2{order:2}.awxb-view.awxb-view .order-xl-3,.awxb-component.awxb-component .order-xl-3{order:3}.awxb-view.awxb-view .order-xl-4,.awxb-component.awxb-component .order-xl-4{order:4}.awxb-view.awxb-view .order-xl-5,.awxb-component.awxb-component .order-xl-5{order:5}.awxb-view.awxb-view .order-xl-6,.awxb-component.awxb-component .order-xl-6{order:6}.awxb-view.awxb-view .order-xl-7,.awxb-component.awxb-component .order-xl-7{order:7}.awxb-view.awxb-view .order-xl-8,.awxb-component.awxb-component .order-xl-8{order:8}.awxb-view.awxb-view .order-xl-9,.awxb-component.awxb-component .order-xl-9{order:9}.awxb-view.awxb-view .order-xl-10,.awxb-component.awxb-component .order-xl-10{order:10}.awxb-view.awxb-view .order-xl-11,.awxb-component.awxb-component .order-xl-11{order:11}.awxb-view.awxb-view .order-xl-12,.awxb-component.awxb-component .order-xl-12{order:12}.awxb-view.awxb-view .offset-xl-0,.awxb-component.awxb-component .offset-xl-0{margin-left:0}.awxb-view.awxb-view .offset-xl-1,.awxb-component.awxb-component .offset-xl-1{margin-left:8.3333333333%}.awxb-view.awxb-view .offset-xl-2,.awxb-component.awxb-component .offset-xl-2{margin-left:16.6666666667%}.awxb-view.awxb-view .offset-xl-3,.awxb-component.awxb-component .offset-xl-3{margin-left:25%}.awxb-view.awxb-view .offset-xl-4,.awxb-component.awxb-component .offset-xl-4{margin-left:33.3333333333%}.awxb-view.awxb-view .offset-xl-5,.awxb-component.awxb-component .offset-xl-5{margin-left:41.6666666667%}.awxb-view.awxb-view .offset-xl-6,.awxb-component.awxb-component .offset-xl-6{margin-left:50%}.awxb-view.awxb-view .offset-xl-7,.awxb-component.awxb-component .offset-xl-7{margin-left:58.3333333333%}.awxb-view.awxb-view .offset-xl-8,.awxb-component.awxb-component .offset-xl-8{margin-left:66.6666666667%}.awxb-view.awxb-view .offset-xl-9,.awxb-component.awxb-component .offset-xl-9{margin-left:75%}.awxb-view.awxb-view .offset-xl-10,.awxb-component.awxb-component .offset-xl-10{margin-left:83.3333333333%}.awxb-view.awxb-view .offset-xl-11,.awxb-component.awxb-component .offset-xl-11{margin-left:91.6666666667%}}.awxb-view.awxb-view .table,.awxb-component.awxb-component .table{width:100%;max-width:100%;margin-bottom:1rem;background-color:rgba(0,0,0,0)}.awxb-view.awxb-view .table th,.awxb-view.awxb-view .table td,.awxb-component.awxb-component .table th,.awxb-component.awxb-component .table td{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.awxb-view.awxb-view .table thead th,.awxb-component.awxb-component .table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.awxb-view.awxb-view .table tbody+tbody,.awxb-component.awxb-component .table tbody+tbody{border-top:2px solid #dee2e6}.awxb-view.awxb-view .table .table,.awxb-component.awxb-component .table .table{background-color:#fff}.awxb-view.awxb-view .table-sm th,.awxb-view.awxb-view .table-sm td,.awxb-component.awxb-component .table-sm th,.awxb-component.awxb-component .table-sm td{padding:.3rem}.awxb-view.awxb-view .table-bordered,.awxb-component.awxb-component .table-bordered{border:1px solid #dee2e6}.awxb-view.awxb-view .table-bordered th,.awxb-view.awxb-view .table-bordered td,.awxb-component.awxb-component .table-bordered th,.awxb-component.awxb-component .table-bordered td{border:1px solid #dee2e6}.awxb-view.awxb-view .table-bordered thead th,.awxb-view.awxb-view .table-bordered thead td,.awxb-component.awxb-component .table-bordered thead th,.awxb-component.awxb-component .table-bordered thead td{border-bottom-width:2px}.awxb-view.awxb-view .table-borderless th,.awxb-view.awxb-view .table-borderless td,.awxb-view.awxb-view .table-borderless thead th,.awxb-view.awxb-view .table-borderless tbody+tbody,.awxb-component.awxb-component .table-borderless th,.awxb-component.awxb-component .table-borderless td,.awxb-component.awxb-component .table-borderless thead th,.awxb-component.awxb-component .table-borderless tbody+tbody{border:0}.awxb-view.awxb-view .table-striped tbody tr:nth-of-type(odd),.awxb-component.awxb-component .table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.awxb-view.awxb-view .table-hover tbody tr:hover,.awxb-component.awxb-component .table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.awxb-view.awxb-view .table-primary,.awxb-view.awxb-view .table-primary>th,.awxb-view.awxb-view .table-primary>td,.awxb-component.awxb-component .table-primary,.awxb-component.awxb-component .table-primary>th,.awxb-component.awxb-component .table-primary>td{background-color:#b8daff}.awxb-view.awxb-view .table-hover .table-primary:hover,.awxb-component.awxb-component .table-hover .table-primary:hover{background-color:#9fcdff}.awxb-view.awxb-view .table-hover .table-primary:hover>td,.awxb-view.awxb-view .table-hover .table-primary:hover>th,.awxb-component.awxb-component .table-hover .table-primary:hover>td,.awxb-component.awxb-component .table-hover .table-primary:hover>th{background-color:#9fcdff}.awxb-view.awxb-view .table-secondary,.awxb-view.awxb-view .table-secondary>th,.awxb-view.awxb-view .table-secondary>td,.awxb-component.awxb-component .table-secondary,.awxb-component.awxb-component .table-secondary>th,.awxb-component.awxb-component .table-secondary>td{background-color:#d6d8db}.awxb-view.awxb-view .table-hover .table-secondary:hover,.awxb-component.awxb-component .table-hover .table-secondary:hover{background-color:#c8cbcf}.awxb-view.awxb-view .table-hover .table-secondary:hover>td,.awxb-view.awxb-view .table-hover .table-secondary:hover>th,.awxb-component.awxb-component .table-hover .table-secondary:hover>td,.awxb-component.awxb-component .table-hover .table-secondary:hover>th{background-color:#c8cbcf}.awxb-view.awxb-view .table-success,.awxb-view.awxb-view .table-success>th,.awxb-view.awxb-view .table-success>td,.awxb-component.awxb-component .table-success,.awxb-component.awxb-component .table-success>th,.awxb-component.awxb-component .table-success>td{background-color:#c3e6cb}.awxb-view.awxb-view .table-hover .table-success:hover,.awxb-component.awxb-component .table-hover .table-success:hover{background-color:#b1dfbb}.awxb-view.awxb-view .table-hover .table-success:hover>td,.awxb-view.awxb-view .table-hover .table-success:hover>th,.awxb-component.awxb-component .table-hover .table-success:hover>td,.awxb-component.awxb-component .table-hover .table-success:hover>th{background-color:#b1dfbb}.awxb-view.awxb-view .table-info,.awxb-view.awxb-view .table-info>th,.awxb-view.awxb-view .table-info>td,.awxb-component.awxb-component .table-info,.awxb-component.awxb-component .table-info>th,.awxb-component.awxb-component .table-info>td{background-color:#bee5eb}.awxb-view.awxb-view .table-hover .table-info:hover,.awxb-component.awxb-component .table-hover .table-info:hover{background-color:#abdde5}.awxb-view.awxb-view .table-hover .table-info:hover>td,.awxb-view.awxb-view .table-hover .table-info:hover>th,.awxb-component.awxb-component .table-hover .table-info:hover>td,.awxb-component.awxb-component .table-hover .table-info:hover>th{background-color:#abdde5}.awxb-view.awxb-view .table-warning,.awxb-view.awxb-view .table-warning>th,.awxb-view.awxb-view .table-warning>td,.awxb-component.awxb-component .table-warning,.awxb-component.awxb-component .table-warning>th,.awxb-component.awxb-component .table-warning>td{background-color:#ffeeba}.awxb-view.awxb-view .table-hover .table-warning:hover,.awxb-component.awxb-component .table-hover .table-warning:hover{background-color:#ffe8a1}.awxb-view.awxb-view .table-hover .table-warning:hover>td,.awxb-view.awxb-view .table-hover .table-warning:hover>th,.awxb-component.awxb-component .table-hover .table-warning:hover>td,.awxb-component.awxb-component .table-hover .table-warning:hover>th{background-color:#ffe8a1}.awxb-view.awxb-view .table-danger,.awxb-view.awxb-view .table-danger>th,.awxb-view.awxb-view .table-danger>td,.awxb-component.awxb-component .table-danger,.awxb-component.awxb-component .table-danger>th,.awxb-component.awxb-component .table-danger>td{background-color:#f5c6cb}.awxb-view.awxb-view .table-hover .table-danger:hover,.awxb-component.awxb-component .table-hover .table-danger:hover{background-color:#f1b0b7}.awxb-view.awxb-view .table-hover .table-danger:hover>td,.awxb-view.awxb-view .table-hover .table-danger:hover>th,.awxb-component.awxb-component .table-hover .table-danger:hover>td,.awxb-component.awxb-component .table-hover .table-danger:hover>th{background-color:#f1b0b7}.awxb-view.awxb-view .table-light,.awxb-view.awxb-view .table-light>th,.awxb-view.awxb-view .table-light>td,.awxb-component.awxb-component .table-light,.awxb-component.awxb-component .table-light>th,.awxb-component.awxb-component .table-light>td{background-color:#fdfdfe}.awxb-view.awxb-view .table-hover .table-light:hover,.awxb-component.awxb-component .table-hover .table-light:hover{background-color:#ececf6}.awxb-view.awxb-view .table-hover .table-light:hover>td,.awxb-view.awxb-view .table-hover .table-light:hover>th,.awxb-component.awxb-component .table-hover .table-light:hover>td,.awxb-component.awxb-component .table-hover .table-light:hover>th{background-color:#ececf6}.awxb-view.awxb-view .table-dark,.awxb-view.awxb-view .table-dark>th,.awxb-view.awxb-view .table-dark>td,.awxb-component.awxb-component .table-dark,.awxb-component.awxb-component .table-dark>th,.awxb-component.awxb-component .table-dark>td{background-color:#c6c8ca}.awxb-view.awxb-view .table-hover .table-dark:hover,.awxb-component.awxb-component .table-hover .table-dark:hover{background-color:#b9bbbe}.awxb-view.awxb-view .table-hover .table-dark:hover>td,.awxb-view.awxb-view .table-hover .table-dark:hover>th,.awxb-component.awxb-component .table-hover .table-dark:hover>td,.awxb-component.awxb-component .table-hover .table-dark:hover>th{background-color:#b9bbbe}.awxb-view.awxb-view .table-active,.awxb-view.awxb-view .table-active>th,.awxb-view.awxb-view .table-active>td,.awxb-component.awxb-component .table-active,.awxb-component.awxb-component .table-active>th,.awxb-component.awxb-component .table-active>td{background-color:rgba(0,0,0,.075)}.awxb-view.awxb-view .table-hover .table-active:hover,.awxb-component.awxb-component .table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.awxb-view.awxb-view .table-hover .table-active:hover>td,.awxb-view.awxb-view .table-hover .table-active:hover>th,.awxb-component.awxb-component .table-hover .table-active:hover>td,.awxb-component.awxb-component .table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.awxb-view.awxb-view .table .thead-dark th,.awxb-component.awxb-component .table .thead-dark th{color:#fff;background-color:#212529;border-color:#32383e}.awxb-view.awxb-view .table .thead-light th,.awxb-component.awxb-component .table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.awxb-view.awxb-view .table-dark,.awxb-component.awxb-component .table-dark{color:#fff;background-color:#212529}.awxb-view.awxb-view .table-dark th,.awxb-view.awxb-view .table-dark td,.awxb-view.awxb-view .table-dark thead th,.awxb-component.awxb-component .table-dark th,.awxb-component.awxb-component .table-dark td,.awxb-component.awxb-component .table-dark thead th{border-color:#32383e}.awxb-view.awxb-view .table-dark.table-bordered,.awxb-component.awxb-component .table-dark.table-bordered{border:0}.awxb-view.awxb-view .table-dark.table-striped tbody tr:nth-of-type(odd),.awxb-component.awxb-component .table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.awxb-view.awxb-view .table-dark.table-hover tbody tr:hover,.awxb-component.awxb-component .table-dark.table-hover tbody tr:hover{background-color:rgba(255,255,255,.075)}@media(max-width: 575.98px){.awxb-view.awxb-view .table-responsive-sm,.awxb-component.awxb-component .table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.awxb-view.awxb-view .table-responsive-sm>.table-bordered,.awxb-component.awxb-component .table-responsive-sm>.table-bordered{border:0}}@media(max-width: 767.98px){.awxb-view.awxb-view .table-responsive-md,.awxb-component.awxb-component .table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.awxb-view.awxb-view .table-responsive-md>.table-bordered,.awxb-component.awxb-component .table-responsive-md>.table-bordered{border:0}}@media(max-width: 991.98px){.awxb-view.awxb-view .table-responsive-lg,.awxb-component.awxb-component .table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.awxb-view.awxb-view .table-responsive-lg>.table-bordered,.awxb-component.awxb-component .table-responsive-lg>.table-bordered{border:0}}@media(max-width: 1199.98px){.awxb-view.awxb-view .table-responsive-xl,.awxb-component.awxb-component .table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.awxb-view.awxb-view .table-responsive-xl>.table-bordered,.awxb-component.awxb-component .table-responsive-xl>.table-bordered{border:0}}.awxb-view.awxb-view .table-responsive,.awxb-component.awxb-component .table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.awxb-view.awxb-view .table-responsive>.table-bordered,.awxb-component.awxb-component .table-responsive>.table-bordered{border:0}.awxb-view.awxb-view .btn,.awxb-component.awxb-component .btn{display:inline-block;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;user-select:none;border:1px solid rgba(0,0,0,0);padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion: reduce){.awxb-view.awxb-view .btn,.awxb-component.awxb-component .btn{transition:none}}.awxb-view.awxb-view .btn:hover,.awxb-view.awxb-view .btn:focus,.awxb-component.awxb-component .btn:hover,.awxb-component.awxb-component .btn:focus{text-decoration:none}.awxb-view.awxb-view .btn:focus,.awxb-view.awxb-view .btn.focus,.awxb-component.awxb-component .btn:focus,.awxb-component.awxb-component .btn.focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.awxb-view.awxb-view .btn.disabled,.awxb-view.awxb-view .btn:disabled,.awxb-component.awxb-component .btn.disabled,.awxb-component.awxb-component .btn:disabled{opacity:.65}.awxb-view.awxb-view .btn:not(:disabled):not(.disabled),.awxb-component.awxb-component .btn:not(:disabled):not(.disabled){cursor:pointer}.awxb-view.awxb-view .btn:not(:disabled):not(.disabled):active,.awxb-view.awxb-view .btn:not(:disabled):not(.disabled).active,.awxb-component.awxb-component .btn:not(:disabled):not(.disabled):active,.awxb-component.awxb-component .btn:not(:disabled):not(.disabled).active{background-image:none}.awxb-view.awxb-view a.btn.disabled,.awxb-view.awxb-view fieldset:disabled a.btn,.awxb-component.awxb-component a.btn.disabled,.awxb-component.awxb-component fieldset:disabled a.btn{pointer-events:none}.awxb-view.awxb-view .btn-primary,.awxb-component.awxb-component .btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.awxb-view.awxb-view .btn-primary:hover,.awxb-component.awxb-component .btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.awxb-view.awxb-view .btn-primary:focus,.awxb-view.awxb-view .btn-primary.focus,.awxb-component.awxb-component .btn-primary:focus,.awxb-component.awxb-component .btn-primary.focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.awxb-view.awxb-view .btn-primary.disabled,.awxb-view.awxb-view .btn-primary:disabled,.awxb-component.awxb-component .btn-primary.disabled,.awxb-component.awxb-component .btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.awxb-view.awxb-view .btn-primary:not(:disabled):not(.disabled):active,.awxb-view.awxb-view .btn-primary:not(:disabled):not(.disabled).active,.show>.awxb-view.awxb-view .btn-primary.dropdown-toggle,.awxb-component.awxb-component .btn-primary:not(:disabled):not(.disabled):active,.awxb-component.awxb-component .btn-primary:not(:disabled):not(.disabled).active,.show>.awxb-component.awxb-component .btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.awxb-view.awxb-view .btn-primary:not(:disabled):not(.disabled):active:focus,.awxb-view.awxb-view .btn-primary:not(:disabled):not(.disabled).active:focus,.show>.awxb-view.awxb-view .btn-primary.dropdown-toggle:focus,.awxb-component.awxb-component .btn-primary:not(:disabled):not(.disabled):active:focus,.awxb-component.awxb-component .btn-primary:not(:disabled):not(.disabled).active:focus,.show>.awxb-component.awxb-component .btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.awxb-view.awxb-view .btn-secondary,.awxb-component.awxb-component .btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.awxb-view.awxb-view .btn-secondary:hover,.awxb-component.awxb-component .btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.awxb-view.awxb-view .btn-secondary:focus,.awxb-view.awxb-view .btn-secondary.focus,.awxb-component.awxb-component .btn-secondary:focus,.awxb-component.awxb-component .btn-secondary.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.awxb-view.awxb-view .btn-secondary.disabled,.awxb-view.awxb-view .btn-secondary:disabled,.awxb-component.awxb-component .btn-secondary.disabled,.awxb-component.awxb-component .btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.awxb-view.awxb-view .btn-secondary:not(:disabled):not(.disabled):active,.awxb-view.awxb-view .btn-secondary:not(:disabled):not(.disabled).active,.show>.awxb-view.awxb-view .btn-secondary.dropdown-toggle,.awxb-component.awxb-component .btn-secondary:not(:disabled):not(.disabled):active,.awxb-component.awxb-component .btn-secondary:not(:disabled):not(.disabled).active,.show>.awxb-component.awxb-component .btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.awxb-view.awxb-view .btn-secondary:not(:disabled):not(.disabled):active:focus,.awxb-view.awxb-view .btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.awxb-view.awxb-view .btn-secondary.dropdown-toggle:focus,.awxb-component.awxb-component .btn-secondary:not(:disabled):not(.disabled):active:focus,.awxb-component.awxb-component .btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.awxb-component.awxb-component .btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.awxb-view.awxb-view .btn-success,.awxb-component.awxb-component .btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.awxb-view.awxb-view .btn-success:hover,.awxb-component.awxb-component .btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.awxb-view.awxb-view .btn-success:focus,.awxb-view.awxb-view .btn-success.focus,.awxb-component.awxb-component .btn-success:focus,.awxb-component.awxb-component .btn-success.focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.awxb-view.awxb-view .btn-success.disabled,.awxb-view.awxb-view .btn-success:disabled,.awxb-component.awxb-component .btn-success.disabled,.awxb-component.awxb-component .btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.awxb-view.awxb-view .btn-success:not(:disabled):not(.disabled):active,.awxb-view.awxb-view .btn-success:not(:disabled):not(.disabled).active,.show>.awxb-view.awxb-view .btn-success.dropdown-toggle,.awxb-component.awxb-component .btn-success:not(:disabled):not(.disabled):active,.awxb-component.awxb-component .btn-success:not(:disabled):not(.disabled).active,.show>.awxb-component.awxb-component .btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.awxb-view.awxb-view .btn-success:not(:disabled):not(.disabled):active:focus,.awxb-view.awxb-view .btn-success:not(:disabled):not(.disabled).active:focus,.show>.awxb-view.awxb-view .btn-success.dropdown-toggle:focus,.awxb-component.awxb-component .btn-success:not(:disabled):not(.disabled):active:focus,.awxb-component.awxb-component .btn-success:not(:disabled):not(.disabled).active:focus,.show>.awxb-component.awxb-component .btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.awxb-view.awxb-view .btn-info,.awxb-component.awxb-component .btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.awxb-view.awxb-view .btn-info:hover,.awxb-component.awxb-component .btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.awxb-view.awxb-view .btn-info:focus,.awxb-view.awxb-view .btn-info.focus,.awxb-component.awxb-component .btn-info:focus,.awxb-component.awxb-component .btn-info.focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.awxb-view.awxb-view .btn-info.disabled,.awxb-view.awxb-view .btn-info:disabled,.awxb-component.awxb-component .btn-info.disabled,.awxb-component.awxb-component .btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.awxb-view.awxb-view .btn-info:not(:disabled):not(.disabled):active,.awxb-view.awxb-view .btn-info:not(:disabled):not(.disabled).active,.show>.awxb-view.awxb-view .btn-info.dropdown-toggle,.awxb-component.awxb-component .btn-info:not(:disabled):not(.disabled):active,.awxb-component.awxb-component .btn-info:not(:disabled):not(.disabled).active,.show>.awxb-component.awxb-component .btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.awxb-view.awxb-view .btn-info:not(:disabled):not(.disabled):active:focus,.awxb-view.awxb-view .btn-info:not(:disabled):not(.disabled).active:focus,.show>.awxb-view.awxb-view .btn-info.dropdown-toggle:focus,.awxb-component.awxb-component .btn-info:not(:disabled):not(.disabled):active:focus,.awxb-component.awxb-component .btn-info:not(:disabled):not(.disabled).active:focus,.show>.awxb-component.awxb-component .btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.awxb-view.awxb-view .btn-warning,.awxb-component.awxb-component .btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.awxb-view.awxb-view .btn-warning:hover,.awxb-component.awxb-component .btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.awxb-view.awxb-view .btn-warning:focus,.awxb-view.awxb-view .btn-warning.focus,.awxb-component.awxb-component .btn-warning:focus,.awxb-component.awxb-component .btn-warning.focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.awxb-view.awxb-view .btn-warning.disabled,.awxb-view.awxb-view .btn-warning:disabled,.awxb-component.awxb-component .btn-warning.disabled,.awxb-component.awxb-component .btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.awxb-view.awxb-view .btn-warning:not(:disabled):not(.disabled):active,.awxb-view.awxb-view .btn-warning:not(:disabled):not(.disabled).active,.show>.awxb-view.awxb-view .btn-warning.dropdown-toggle,.awxb-component.awxb-component .btn-warning:not(:disabled):not(.disabled):active,.awxb-component.awxb-component .btn-warning:not(:disabled):not(.disabled).active,.show>.awxb-component.awxb-component .btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.awxb-view.awxb-view .btn-warning:not(:disabled):not(.disabled):active:focus,.awxb-view.awxb-view .btn-warning:not(:disabled):not(.disabled).active:focus,.show>.awxb-view.awxb-view .btn-warning.dropdown-toggle:focus,.awxb-component.awxb-component .btn-warning:not(:disabled):not(.disabled):active:focus,.awxb-component.awxb-component .btn-warning:not(:disabled):not(.disabled).active:focus,.show>.awxb-component.awxb-component .btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.awxb-view.awxb-view .btn-danger,.awxb-component.awxb-component .btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.awxb-view.awxb-view .btn-danger:hover,.awxb-component.awxb-component .btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.awxb-view.awxb-view .btn-danger:focus,.awxb-view.awxb-view .btn-danger.focus,.awxb-component.awxb-component .btn-danger:focus,.awxb-component.awxb-component .btn-danger.focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.awxb-view.awxb-view .btn-danger.disabled,.awxb-view.awxb-view .btn-danger:disabled,.awxb-component.awxb-component .btn-danger.disabled,.awxb-component.awxb-component .btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.awxb-view.awxb-view .btn-danger:not(:disabled):not(.disabled):active,.awxb-view.awxb-view .btn-danger:not(:disabled):not(.disabled).active,.show>.awxb-view.awxb-view .btn-danger.dropdown-toggle,.awxb-component.awxb-component .btn-danger:not(:disabled):not(.disabled):active,.awxb-component.awxb-component .btn-danger:not(:disabled):not(.disabled).active,.show>.awxb-component.awxb-component .btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.awxb-view.awxb-view .btn-danger:not(:disabled):not(.disabled):active:focus,.awxb-view.awxb-view .btn-danger:not(:disabled):not(.disabled).active:focus,.show>.awxb-view.awxb-view .btn-danger.dropdown-toggle:focus,.awxb-component.awxb-component .btn-danger:not(:disabled):not(.disabled):active:focus,.awxb-component.awxb-component .btn-danger:not(:disabled):not(.disabled).active:focus,.show>.awxb-component.awxb-component .btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.awxb-view.awxb-view .btn-light,.awxb-component.awxb-component .btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.awxb-view.awxb-view .btn-light:hover,.awxb-component.awxb-component .btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.awxb-view.awxb-view .btn-light:focus,.awxb-view.awxb-view .btn-light.focus,.awxb-component.awxb-component .btn-light:focus,.awxb-component.awxb-component .btn-light.focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.awxb-view.awxb-view .btn-light.disabled,.awxb-view.awxb-view .btn-light:disabled,.awxb-component.awxb-component .btn-light.disabled,.awxb-component.awxb-component .btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.awxb-view.awxb-view .btn-light:not(:disabled):not(.disabled):active,.awxb-view.awxb-view .btn-light:not(:disabled):not(.disabled).active,.show>.awxb-view.awxb-view .btn-light.dropdown-toggle,.awxb-component.awxb-component .btn-light:not(:disabled):not(.disabled):active,.awxb-component.awxb-component .btn-light:not(:disabled):not(.disabled).active,.show>.awxb-component.awxb-component .btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.awxb-view.awxb-view .btn-light:not(:disabled):not(.disabled):active:focus,.awxb-view.awxb-view .btn-light:not(:disabled):not(.disabled).active:focus,.show>.awxb-view.awxb-view .btn-light.dropdown-toggle:focus,.awxb-component.awxb-component .btn-light:not(:disabled):not(.disabled):active:focus,.awxb-component.awxb-component .btn-light:not(:disabled):not(.disabled).active:focus,.show>.awxb-component.awxb-component .btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.awxb-view.awxb-view .btn-dark,.awxb-component.awxb-component .btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.awxb-view.awxb-view .btn-dark:hover,.awxb-component.awxb-component .btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.awxb-view.awxb-view .btn-dark:focus,.awxb-view.awxb-view .btn-dark.focus,.awxb-component.awxb-component .btn-dark:focus,.awxb-component.awxb-component .btn-dark.focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.awxb-view.awxb-view .btn-dark.disabled,.awxb-view.awxb-view .btn-dark:disabled,.awxb-component.awxb-component .btn-dark.disabled,.awxb-component.awxb-component .btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.awxb-view.awxb-view .btn-dark:not(:disabled):not(.disabled):active,.awxb-view.awxb-view .btn-dark:not(:disabled):not(.disabled).active,.show>.awxb-view.awxb-view .btn-dark.dropdown-toggle,.awxb-component.awxb-component .btn-dark:not(:disabled):not(.disabled):active,.awxb-component.awxb-component .btn-dark:not(:disabled):not(.disabled).active,.show>.awxb-component.awxb-component .btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.awxb-view.awxb-view .btn-dark:not(:disabled):not(.disabled):active:focus,.awxb-view.awxb-view .btn-dark:not(:disabled):not(.disabled).active:focus,.show>.awxb-view.awxb-view .btn-dark.dropdown-toggle:focus,.awxb-component.awxb-component .btn-dark:not(:disabled):not(.disabled):active:focus,.awxb-component.awxb-component .btn-dark:not(:disabled):not(.disabled).active:focus,.show>.awxb-component.awxb-component .btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.awxb-view.awxb-view .btn-outline-primary,.awxb-component.awxb-component .btn-outline-primary{color:#007bff;background-color:rgba(0,0,0,0);background-image:none;border-color:#007bff}.awxb-view.awxb-view .btn-outline-primary:hover,.awxb-component.awxb-component .btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.awxb-view.awxb-view .btn-outline-primary:focus,.awxb-view.awxb-view .btn-outline-primary.focus,.awxb-component.awxb-component .btn-outline-primary:focus,.awxb-component.awxb-component .btn-outline-primary.focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.awxb-view.awxb-view .btn-outline-primary.disabled,.awxb-view.awxb-view .btn-outline-primary:disabled,.awxb-component.awxb-component .btn-outline-primary.disabled,.awxb-component.awxb-component .btn-outline-primary:disabled{color:#007bff;background-color:rgba(0,0,0,0)}.awxb-view.awxb-view .btn-outline-primary:not(:disabled):not(.disabled):active,.awxb-view.awxb-view .btn-outline-primary:not(:disabled):not(.disabled).active,.show>.awxb-view.awxb-view .btn-outline-primary.dropdown-toggle,.awxb-component.awxb-component .btn-outline-primary:not(:disabled):not(.disabled):active,.awxb-component.awxb-component .btn-outline-primary:not(:disabled):not(.disabled).active,.show>.awxb-component.awxb-component .btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.awxb-view.awxb-view .btn-outline-primary:not(:disabled):not(.disabled):active:focus,.awxb-view.awxb-view .btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.awxb-view.awxb-view .btn-outline-primary.dropdown-toggle:focus,.awxb-component.awxb-component .btn-outline-primary:not(:disabled):not(.disabled):active:focus,.awxb-component.awxb-component .btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.awxb-component.awxb-component .btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.awxb-view.awxb-view .btn-outline-secondary,.awxb-component.awxb-component .btn-outline-secondary{color:#6c757d;background-color:rgba(0,0,0,0);background-image:none;border-color:#6c757d}.awxb-view.awxb-view .btn-outline-secondary:hover,.awxb-component.awxb-component .btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.awxb-view.awxb-view .btn-outline-secondary:focus,.awxb-view.awxb-view .btn-outline-secondary.focus,.awxb-component.awxb-component .btn-outline-secondary:focus,.awxb-component.awxb-component .btn-outline-secondary.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.awxb-view.awxb-view .btn-outline-secondary.disabled,.awxb-view.awxb-view .btn-outline-secondary:disabled,.awxb-component.awxb-component .btn-outline-secondary.disabled,.awxb-component.awxb-component .btn-outline-secondary:disabled{color:#6c757d;background-color:rgba(0,0,0,0)}.awxb-view.awxb-view .btn-outline-secondary:not(:disabled):not(.disabled):active,.awxb-view.awxb-view .btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.awxb-view.awxb-view .btn-outline-secondary.dropdown-toggle,.awxb-component.awxb-component .btn-outline-secondary:not(:disabled):not(.disabled):active,.awxb-component.awxb-component .btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.awxb-component.awxb-component .btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.awxb-view.awxb-view .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.awxb-view.awxb-view .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.awxb-view.awxb-view .btn-outline-secondary.dropdown-toggle:focus,.awxb-component.awxb-component .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.awxb-component.awxb-component .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.awxb-component.awxb-component .btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.awxb-view.awxb-view .btn-outline-success,.awxb-component.awxb-component .btn-outline-success{color:#28a745;background-color:rgba(0,0,0,0);background-image:none;border-color:#28a745}.awxb-view.awxb-view .btn-outline-success:hover,.awxb-component.awxb-component .btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.awxb-view.awxb-view .btn-outline-success:focus,.awxb-view.awxb-view .btn-outline-success.focus,.awxb-component.awxb-component .btn-outline-success:focus,.awxb-component.awxb-component .btn-outline-success.focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.awxb-view.awxb-view .btn-outline-success.disabled,.awxb-view.awxb-view .btn-outline-success:disabled,.awxb-component.awxb-component .btn-outline-success.disabled,.awxb-component.awxb-component .btn-outline-success:disabled{color:#28a745;background-color:rgba(0,0,0,0)}.awxb-view.awxb-view .btn-outline-success:not(:disabled):not(.disabled):active,.awxb-view.awxb-view .btn-outline-success:not(:disabled):not(.disabled).active,.show>.awxb-view.awxb-view .btn-outline-success.dropdown-toggle,.awxb-component.awxb-component .btn-outline-success:not(:disabled):not(.disabled):active,.awxb-component.awxb-component .btn-outline-success:not(:disabled):not(.disabled).active,.show>.awxb-component.awxb-component .btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.awxb-view.awxb-view .btn-outline-success:not(:disabled):not(.disabled):active:focus,.awxb-view.awxb-view .btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.awxb-view.awxb-view .btn-outline-success.dropdown-toggle:focus,.awxb-component.awxb-component .btn-outline-success:not(:disabled):not(.disabled):active:focus,.awxb-component.awxb-component .btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.awxb-component.awxb-component .btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.awxb-view.awxb-view .btn-outline-info,.awxb-component.awxb-component .btn-outline-info{color:#17a2b8;background-color:rgba(0,0,0,0);background-image:none;border-color:#17a2b8}.awxb-view.awxb-view .btn-outline-info:hover,.awxb-component.awxb-component .btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.awxb-view.awxb-view .btn-outline-info:focus,.awxb-view.awxb-view .btn-outline-info.focus,.awxb-component.awxb-component .btn-outline-info:focus,.awxb-component.awxb-component .btn-outline-info.focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.awxb-view.awxb-view .btn-outline-info.disabled,.awxb-view.awxb-view .btn-outline-info:disabled,.awxb-component.awxb-component .btn-outline-info.disabled,.awxb-component.awxb-component .btn-outline-info:disabled{color:#17a2b8;background-color:rgba(0,0,0,0)}.awxb-view.awxb-view .btn-outline-info:not(:disabled):not(.disabled):active,.awxb-view.awxb-view .btn-outline-info:not(:disabled):not(.disabled).active,.show>.awxb-view.awxb-view .btn-outline-info.dropdown-toggle,.awxb-component.awxb-component .btn-outline-info:not(:disabled):not(.disabled):active,.awxb-component.awxb-component .btn-outline-info:not(:disabled):not(.disabled).active,.show>.awxb-component.awxb-component .btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.awxb-view.awxb-view .btn-outline-info:not(:disabled):not(.disabled):active:focus,.awxb-view.awxb-view .btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.awxb-view.awxb-view .btn-outline-info.dropdown-toggle:focus,.awxb-component.awxb-component .btn-outline-info:not(:disabled):not(.disabled):active:focus,.awxb-component.awxb-component .btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.awxb-component.awxb-component .btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.awxb-view.awxb-view .btn-outline-warning,.awxb-component.awxb-component .btn-outline-warning{color:#ffc107;background-color:rgba(0,0,0,0);background-image:none;border-color:#ffc107}.awxb-view.awxb-view .btn-outline-warning:hover,.awxb-component.awxb-component .btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.awxb-view.awxb-view .btn-outline-warning:focus,.awxb-view.awxb-view .btn-outline-warning.focus,.awxb-component.awxb-component .btn-outline-warning:focus,.awxb-component.awxb-component .btn-outline-warning.focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.awxb-view.awxb-view .btn-outline-warning.disabled,.awxb-view.awxb-view .btn-outline-warning:disabled,.awxb-component.awxb-component .btn-outline-warning.disabled,.awxb-component.awxb-component .btn-outline-warning:disabled{color:#ffc107;background-color:rgba(0,0,0,0)}.awxb-view.awxb-view .btn-outline-warning:not(:disabled):not(.disabled):active,.awxb-view.awxb-view .btn-outline-warning:not(:disabled):not(.disabled).active,.show>.awxb-view.awxb-view .btn-outline-warning.dropdown-toggle,.awxb-component.awxb-component .btn-outline-warning:not(:disabled):not(.disabled):active,.awxb-component.awxb-component .btn-outline-warning:not(:disabled):not(.disabled).active,.show>.awxb-component.awxb-component .btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.awxb-view.awxb-view .btn-outline-warning:not(:disabled):not(.disabled):active:focus,.awxb-view.awxb-view .btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.awxb-view.awxb-view .btn-outline-warning.dropdown-toggle:focus,.awxb-component.awxb-component .btn-outline-warning:not(:disabled):not(.disabled):active:focus,.awxb-component.awxb-component .btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.awxb-component.awxb-component .btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.awxb-view.awxb-view .btn-outline-danger,.awxb-component.awxb-component .btn-outline-danger{color:#dc3545;background-color:rgba(0,0,0,0);background-image:none;border-color:#dc3545}.awxb-view.awxb-view .btn-outline-danger:hover,.awxb-component.awxb-component .btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.awxb-view.awxb-view .btn-outline-danger:focus,.awxb-view.awxb-view .btn-outline-danger.focus,.awxb-component.awxb-component .btn-outline-danger:focus,.awxb-component.awxb-component .btn-outline-danger.focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.awxb-view.awxb-view .btn-outline-danger.disabled,.awxb-view.awxb-view .btn-outline-danger:disabled,.awxb-component.awxb-component .btn-outline-danger.disabled,.awxb-component.awxb-component .btn-outline-danger:disabled{color:#dc3545;background-color:rgba(0,0,0,0)}.awxb-view.awxb-view .btn-outline-danger:not(:disabled):not(.disabled):active,.awxb-view.awxb-view .btn-outline-danger:not(:disabled):not(.disabled).active,.show>.awxb-view.awxb-view .btn-outline-danger.dropdown-toggle,.awxb-component.awxb-component .btn-outline-danger:not(:disabled):not(.disabled):active,.awxb-component.awxb-component .btn-outline-danger:not(:disabled):not(.disabled).active,.show>.awxb-component.awxb-component .btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.awxb-view.awxb-view .btn-outline-danger:not(:disabled):not(.disabled):active:focus,.awxb-view.awxb-view .btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.awxb-view.awxb-view .btn-outline-danger.dropdown-toggle:focus,.awxb-component.awxb-component .btn-outline-danger:not(:disabled):not(.disabled):active:focus,.awxb-component.awxb-component .btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.awxb-component.awxb-component .btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.awxb-view.awxb-view .btn-outline-light,.awxb-component.awxb-component .btn-outline-light{color:#f8f9fa;background-color:rgba(0,0,0,0);background-image:none;border-color:#f8f9fa}.awxb-view.awxb-view .btn-outline-light:hover,.awxb-component.awxb-component .btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.awxb-view.awxb-view .btn-outline-light:focus,.awxb-view.awxb-view .btn-outline-light.focus,.awxb-component.awxb-component .btn-outline-light:focus,.awxb-component.awxb-component .btn-outline-light.focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.awxb-view.awxb-view .btn-outline-light.disabled,.awxb-view.awxb-view .btn-outline-light:disabled,.awxb-component.awxb-component .btn-outline-light.disabled,.awxb-component.awxb-component .btn-outline-light:disabled{color:#f8f9fa;background-color:rgba(0,0,0,0)}.awxb-view.awxb-view .btn-outline-light:not(:disabled):not(.disabled):active,.awxb-view.awxb-view .btn-outline-light:not(:disabled):not(.disabled).active,.show>.awxb-view.awxb-view .btn-outline-light.dropdown-toggle,.awxb-component.awxb-component .btn-outline-light:not(:disabled):not(.disabled):active,.awxb-component.awxb-component .btn-outline-light:not(:disabled):not(.disabled).active,.show>.awxb-component.awxb-component .btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.awxb-view.awxb-view .btn-outline-light:not(:disabled):not(.disabled):active:focus,.awxb-view.awxb-view .btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.awxb-view.awxb-view .btn-outline-light.dropdown-toggle:focus,.awxb-component.awxb-component .btn-outline-light:not(:disabled):not(.disabled):active:focus,.awxb-component.awxb-component .btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.awxb-component.awxb-component .btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.awxb-view.awxb-view .btn-outline-dark,.awxb-component.awxb-component .btn-outline-dark{color:#343a40;background-color:rgba(0,0,0,0);background-image:none;border-color:#343a40}.awxb-view.awxb-view .btn-outline-dark:hover,.awxb-component.awxb-component .btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.awxb-view.awxb-view .btn-outline-dark:focus,.awxb-view.awxb-view .btn-outline-dark.focus,.awxb-component.awxb-component .btn-outline-dark:focus,.awxb-component.awxb-component .btn-outline-dark.focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.awxb-view.awxb-view .btn-outline-dark.disabled,.awxb-view.awxb-view .btn-outline-dark:disabled,.awxb-component.awxb-component .btn-outline-dark.disabled,.awxb-component.awxb-component .btn-outline-dark:disabled{color:#343a40;background-color:rgba(0,0,0,0)}.awxb-view.awxb-view .btn-outline-dark:not(:disabled):not(.disabled):active,.awxb-view.awxb-view .btn-outline-dark:not(:disabled):not(.disabled).active,.show>.awxb-view.awxb-view .btn-outline-dark.dropdown-toggle,.awxb-component.awxb-component .btn-outline-dark:not(:disabled):not(.disabled):active,.awxb-component.awxb-component .btn-outline-dark:not(:disabled):not(.disabled).active,.show>.awxb-component.awxb-component .btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.awxb-view.awxb-view .btn-outline-dark:not(:disabled):not(.disabled):active:focus,.awxb-view.awxb-view .btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.awxb-view.awxb-view .btn-outline-dark.dropdown-toggle:focus,.awxb-component.awxb-component .btn-outline-dark:not(:disabled):not(.disabled):active:focus,.awxb-component.awxb-component .btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.awxb-component.awxb-component .btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.awxb-view.awxb-view .btn-link,.awxb-component.awxb-component .btn-link{font-weight:400;color:#007bff;background-color:rgba(0,0,0,0)}.awxb-view.awxb-view .btn-link:hover,.awxb-component.awxb-component .btn-link:hover{color:#0056b3;text-decoration:underline;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}.awxb-view.awxb-view .btn-link:focus,.awxb-view.awxb-view .btn-link.focus,.awxb-component.awxb-component .btn-link:focus,.awxb-component.awxb-component .btn-link.focus{text-decoration:underline;border-color:rgba(0,0,0,0);box-shadow:none}.awxb-view.awxb-view .btn-link:disabled,.awxb-view.awxb-view .btn-link.disabled,.awxb-component.awxb-component .btn-link:disabled,.awxb-component.awxb-component .btn-link.disabled{color:#6c757d;pointer-events:none}.awxb-view.awxb-view .btn-lg,.awxb-view.awxb-view .btn-group-lg>.btn,.awxb-component.awxb-component .btn-lg,.awxb-component.awxb-component .btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.awxb-view.awxb-view .btn-sm,.awxb-view.awxb-view .btn-group-sm>.btn,.awxb-component.awxb-component .btn-sm,.awxb-component.awxb-component .btn-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.awxb-view.awxb-view .btn-block,.awxb-component.awxb-component .btn-block{display:block;width:100%}.awxb-view.awxb-view .btn-block+.btn-block,.awxb-component.awxb-component .btn-block+.btn-block{margin-top:.5rem}.awxb-view.awxb-view input[type=submit].btn-block,.awxb-view.awxb-view input[type=reset].btn-block,.awxb-view.awxb-view input[type=button].btn-block,.awxb-component.awxb-component input[type=submit].btn-block,.awxb-component.awxb-component input[type=reset].btn-block,.awxb-component.awxb-component input[type=button].btn-block{width:100%}.awxb-view.awxb-view .btn-group,.awxb-view.awxb-view .btn-group-vertical,.awxb-component.awxb-component .btn-group,.awxb-component.awxb-component .btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.awxb-view.awxb-view .btn-group>.btn,.awxb-view.awxb-view .btn-group-vertical>.btn,.awxb-component.awxb-component .btn-group>.btn,.awxb-component.awxb-component .btn-group-vertical>.btn{position:relative;flex:0 1 auto}.awxb-view.awxb-view .btn-group>.btn:hover,.awxb-view.awxb-view .btn-group-vertical>.btn:hover,.awxb-component.awxb-component .btn-group>.btn:hover,.awxb-component.awxb-component .btn-group-vertical>.btn:hover{z-index:1}.awxb-view.awxb-view .btn-group>.btn:focus,.awxb-view.awxb-view .btn-group>.btn:active,.awxb-view.awxb-view .btn-group>.btn.active,.awxb-view.awxb-view .btn-group-vertical>.btn:focus,.awxb-view.awxb-view .btn-group-vertical>.btn:active,.awxb-view.awxb-view .btn-group-vertical>.btn.active,.awxb-component.awxb-component .btn-group>.btn:focus,.awxb-component.awxb-component .btn-group>.btn:active,.awxb-component.awxb-component .btn-group>.btn.active,.awxb-component.awxb-component .btn-group-vertical>.btn:focus,.awxb-component.awxb-component .btn-group-vertical>.btn:active,.awxb-component.awxb-component .btn-group-vertical>.btn.active{z-index:1}.awxb-view.awxb-view .btn-group .btn+.btn,.awxb-view.awxb-view .btn-group .btn+.btn-group,.awxb-view.awxb-view .btn-group .btn-group+.btn,.awxb-view.awxb-view .btn-group .btn-group+.btn-group,.awxb-view.awxb-view .btn-group-vertical .btn+.btn,.awxb-view.awxb-view .btn-group-vertical .btn+.btn-group,.awxb-view.awxb-view .btn-group-vertical .btn-group+.btn,.awxb-view.awxb-view .btn-group-vertical .btn-group+.btn-group,.awxb-component.awxb-component .btn-group .btn+.btn,.awxb-component.awxb-component .btn-group .btn+.btn-group,.awxb-component.awxb-component .btn-group .btn-group+.btn,.awxb-component.awxb-component .btn-group .btn-group+.btn-group,.awxb-component.awxb-component .btn-group-vertical .btn+.btn,.awxb-component.awxb-component .btn-group-vertical .btn+.btn-group,.awxb-component.awxb-component .btn-group-vertical .btn-group+.btn,.awxb-component.awxb-component .btn-group-vertical .btn-group+.btn-group{margin-left:-1px}.awxb-view.awxb-view .btn-toolbar,.awxb-component.awxb-component .btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.awxb-view.awxb-view .btn-toolbar .input-group,.awxb-component.awxb-component .btn-toolbar .input-group{width:auto}.awxb-view.awxb-view .btn-group>.btn:first-child,.awxb-component.awxb-component .btn-group>.btn:first-child{margin-left:0}.awxb-view.awxb-view .btn-group>.btn:not(:last-child):not(.dropdown-toggle),.awxb-view.awxb-view .btn-group>.btn-group:not(:last-child)>.btn,.awxb-component.awxb-component .btn-group>.btn:not(:last-child):not(.dropdown-toggle),.awxb-component.awxb-component .btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.awxb-view.awxb-view .btn-group>.btn:not(:first-child),.awxb-view.awxb-view .btn-group>.btn-group:not(:first-child)>.btn,.awxb-component.awxb-component .btn-group>.btn:not(:first-child),.awxb-component.awxb-component .btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.awxb-view.awxb-view .dropdown-toggle-split,.awxb-component.awxb-component .dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.awxb-view.awxb-view .dropdown-toggle-split::after,.dropup .awxb-view.awxb-view .dropdown-toggle-split::after,.dropright .awxb-view.awxb-view .dropdown-toggle-split::after,.awxb-component.awxb-component .dropdown-toggle-split::after,.dropup .awxb-component.awxb-component .dropdown-toggle-split::after,.dropright .awxb-component.awxb-component .dropdown-toggle-split::after{margin-left:0}.dropleft .awxb-view.awxb-view .dropdown-toggle-split::before,.dropleft .awxb-component.awxb-component .dropdown-toggle-split::before{margin-right:0}.awxb-view.awxb-view .btn-sm+.dropdown-toggle-split,.awxb-view.awxb-view .btn-group-sm>.btn+.dropdown-toggle-split,.awxb-component.awxb-component .btn-sm+.dropdown-toggle-split,.awxb-component.awxb-component .btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.awxb-view.awxb-view .btn-lg+.dropdown-toggle-split,.awxb-view.awxb-view .btn-group-lg>.btn+.dropdown-toggle-split,.awxb-component.awxb-component .btn-lg+.dropdown-toggle-split,.awxb-component.awxb-component .btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.awxb-view.awxb-view .btn-group-vertical,.awxb-component.awxb-component .btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.awxb-view.awxb-view .btn-group-vertical .btn,.awxb-view.awxb-view .btn-group-vertical .btn-group,.awxb-component.awxb-component .btn-group-vertical .btn,.awxb-component.awxb-component .btn-group-vertical .btn-group{width:100%}.awxb-view.awxb-view .btn-group-vertical>.btn+.btn,.awxb-view.awxb-view .btn-group-vertical>.btn+.btn-group,.awxb-view.awxb-view .btn-group-vertical>.btn-group+.btn,.awxb-view.awxb-view .btn-group-vertical>.btn-group+.btn-group,.awxb-component.awxb-component .btn-group-vertical>.btn+.btn,.awxb-component.awxb-component .btn-group-vertical>.btn+.btn-group,.awxb-component.awxb-component .btn-group-vertical>.btn-group+.btn,.awxb-component.awxb-component .btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.awxb-view.awxb-view .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.awxb-view.awxb-view .btn-group-vertical>.btn-group:not(:last-child)>.btn,.awxb-component.awxb-component .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.awxb-component.awxb-component .btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.awxb-view.awxb-view .btn-group-vertical>.btn:not(:first-child),.awxb-view.awxb-view .btn-group-vertical>.btn-group:not(:first-child)>.btn,.awxb-component.awxb-component .btn-group-vertical>.btn:not(:first-child),.awxb-component.awxb-component .btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.awxb-view.awxb-view .btn-group-toggle>.btn,.awxb-view.awxb-view .btn-group-toggle>.btn-group>.btn,.awxb-component.awxb-component .btn-group-toggle>.btn,.awxb-component.awxb-component .btn-group-toggle>.btn-group>.btn{margin-bottom:0}.awxb-view.awxb-view .btn-group-toggle>.btn input[type=radio],.awxb-view.awxb-view .btn-group-toggle>.btn input[type=checkbox],.awxb-view.awxb-view .btn-group-toggle>.btn-group>.btn input[type=radio],.awxb-view.awxb-view .btn-group-toggle>.btn-group>.btn input[type=checkbox],.awxb-component.awxb-component .btn-group-toggle>.btn input[type=radio],.awxb-component.awxb-component .btn-group-toggle>.btn input[type=checkbox],.awxb-component.awxb-component .btn-group-toggle>.btn-group>.btn input[type=radio],.awxb-component.awxb-component .btn-group-toggle>.btn-group>.btn input[type=checkbox]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.awxb-view.awxb-view .align-baseline,.awxb-component.awxb-component .align-baseline{vertical-align:baseline !important}.awxb-view.awxb-view .align-top,.awxb-component.awxb-component .align-top{vertical-align:top !important}.awxb-view.awxb-view .align-middle,.awxb-component.awxb-component .align-middle{vertical-align:middle !important}.awxb-view.awxb-view .align-bottom,.awxb-component.awxb-component .align-bottom{vertical-align:bottom !important}.awxb-view.awxb-view .align-text-bottom,.awxb-component.awxb-component .align-text-bottom{vertical-align:text-bottom !important}.awxb-view.awxb-view .align-text-top,.awxb-component.awxb-component .align-text-top{vertical-align:text-top !important}.awxb-view.awxb-view .bg-primary,.awxb-component.awxb-component .bg-primary{background-color:#007bff !important}.awxb-view.awxb-view a.bg-primary:hover,.awxb-view.awxb-view a.bg-primary:focus,.awxb-view.awxb-view button.bg-primary:hover,.awxb-view.awxb-view button.bg-primary:focus,.awxb-component.awxb-component a.bg-primary:hover,.awxb-component.awxb-component a.bg-primary:focus,.awxb-component.awxb-component button.bg-primary:hover,.awxb-component.awxb-component button.bg-primary:focus{background-color:#0062cc !important}.awxb-view.awxb-view .bg-secondary,.awxb-component.awxb-component .bg-secondary{background-color:#6c757d !important}.awxb-view.awxb-view a.bg-secondary:hover,.awxb-view.awxb-view a.bg-secondary:focus,.awxb-view.awxb-view button.bg-secondary:hover,.awxb-view.awxb-view button.bg-secondary:focus,.awxb-component.awxb-component a.bg-secondary:hover,.awxb-component.awxb-component a.bg-secondary:focus,.awxb-component.awxb-component button.bg-secondary:hover,.awxb-component.awxb-component button.bg-secondary:focus{background-color:#545b62 !important}.awxb-view.awxb-view .bg-success,.awxb-component.awxb-component .bg-success{background-color:#28a745 !important}.awxb-view.awxb-view a.bg-success:hover,.awxb-view.awxb-view a.bg-success:focus,.awxb-view.awxb-view button.bg-success:hover,.awxb-view.awxb-view button.bg-success:focus,.awxb-component.awxb-component a.bg-success:hover,.awxb-component.awxb-component a.bg-success:focus,.awxb-component.awxb-component button.bg-success:hover,.awxb-component.awxb-component button.bg-success:focus{background-color:#1e7e34 !important}.awxb-view.awxb-view .bg-info,.awxb-component.awxb-component .bg-info{background-color:#17a2b8 !important}.awxb-view.awxb-view a.bg-info:hover,.awxb-view.awxb-view a.bg-info:focus,.awxb-view.awxb-view button.bg-info:hover,.awxb-view.awxb-view button.bg-info:focus,.awxb-component.awxb-component a.bg-info:hover,.awxb-component.awxb-component a.bg-info:focus,.awxb-component.awxb-component button.bg-info:hover,.awxb-component.awxb-component button.bg-info:focus{background-color:#117a8b !important}.awxb-view.awxb-view .bg-warning,.awxb-component.awxb-component .bg-warning{background-color:#ffc107 !important}.awxb-view.awxb-view a.bg-warning:hover,.awxb-view.awxb-view a.bg-warning:focus,.awxb-view.awxb-view button.bg-warning:hover,.awxb-view.awxb-view button.bg-warning:focus,.awxb-component.awxb-component a.bg-warning:hover,.awxb-component.awxb-component a.bg-warning:focus,.awxb-component.awxb-component button.bg-warning:hover,.awxb-component.awxb-component button.bg-warning:focus{background-color:#d39e00 !important}.awxb-view.awxb-view .bg-danger,.awxb-component.awxb-component .bg-danger{background-color:#dc3545 !important}.awxb-view.awxb-view a.bg-danger:hover,.awxb-view.awxb-view a.bg-danger:focus,.awxb-view.awxb-view button.bg-danger:hover,.awxb-view.awxb-view button.bg-danger:focus,.awxb-component.awxb-component a.bg-danger:hover,.awxb-component.awxb-component a.bg-danger:focus,.awxb-component.awxb-component button.bg-danger:hover,.awxb-component.awxb-component button.bg-danger:focus{background-color:#bd2130 !important}.awxb-view.awxb-view .bg-light,.awxb-component.awxb-component .bg-light{background-color:#f8f9fa !important}.awxb-view.awxb-view a.bg-light:hover,.awxb-view.awxb-view a.bg-light:focus,.awxb-view.awxb-view button.bg-light:hover,.awxb-view.awxb-view button.bg-light:focus,.awxb-component.awxb-component a.bg-light:hover,.awxb-component.awxb-component a.bg-light:focus,.awxb-component.awxb-component button.bg-light:hover,.awxb-component.awxb-component button.bg-light:focus{background-color:#dae0e5 !important}.awxb-view.awxb-view .bg-dark,.awxb-component.awxb-component .bg-dark{background-color:#343a40 !important}.awxb-view.awxb-view a.bg-dark:hover,.awxb-view.awxb-view a.bg-dark:focus,.awxb-view.awxb-view button.bg-dark:hover,.awxb-view.awxb-view button.bg-dark:focus,.awxb-component.awxb-component a.bg-dark:hover,.awxb-component.awxb-component a.bg-dark:focus,.awxb-component.awxb-component button.bg-dark:hover,.awxb-component.awxb-component button.bg-dark:focus{background-color:#1d2124 !important}.awxb-view.awxb-view .bg-white,.awxb-component.awxb-component .bg-white{background-color:#fff !important}.awxb-view.awxb-view .bg-transparent,.awxb-component.awxb-component .bg-transparent{background-color:rgba(0,0,0,0) !important}.awxb-view.awxb-view .border,.awxb-component.awxb-component .border{border:1px solid #dee2e6 !important}.awxb-view.awxb-view .border-top,.awxb-component.awxb-component .border-top{border-top:1px solid #dee2e6 !important}.awxb-view.awxb-view .border-right,.awxb-component.awxb-component .border-right{border-right:1px solid #dee2e6 !important}.awxb-view.awxb-view .border-bottom,.awxb-component.awxb-component .border-bottom{border-bottom:1px solid #dee2e6 !important}.awxb-view.awxb-view .border-left,.awxb-component.awxb-component .border-left{border-left:1px solid #dee2e6 !important}.awxb-view.awxb-view .border-0,.awxb-component.awxb-component .border-0{border:0 !important}.awxb-view.awxb-view .border-top-0,.awxb-component.awxb-component .border-top-0{border-top:0 !important}.awxb-view.awxb-view .border-right-0,.awxb-component.awxb-component .border-right-0{border-right:0 !important}.awxb-view.awxb-view .border-bottom-0,.awxb-component.awxb-component .border-bottom-0{border-bottom:0 !important}.awxb-view.awxb-view .border-left-0,.awxb-component.awxb-component .border-left-0{border-left:0 !important}.awxb-view.awxb-view .border-primary,.awxb-component.awxb-component .border-primary{border-color:#007bff !important}.awxb-view.awxb-view .border-secondary,.awxb-component.awxb-component .border-secondary{border-color:#6c757d !important}.awxb-view.awxb-view .border-success,.awxb-component.awxb-component .border-success{border-color:#28a745 !important}.awxb-view.awxb-view .border-info,.awxb-component.awxb-component .border-info{border-color:#17a2b8 !important}.awxb-view.awxb-view .border-warning,.awxb-component.awxb-component .border-warning{border-color:#ffc107 !important}.awxb-view.awxb-view .border-danger,.awxb-component.awxb-component .border-danger{border-color:#dc3545 !important}.awxb-view.awxb-view .border-light,.awxb-component.awxb-component .border-light{border-color:#f8f9fa !important}.awxb-view.awxb-view .border-dark,.awxb-component.awxb-component .border-dark{border-color:#343a40 !important}.awxb-view.awxb-view .border-white,.awxb-component.awxb-component .border-white{border-color:#fff !important}.awxb-view.awxb-view .rounded,.awxb-component.awxb-component .rounded{border-radius:.25rem !important}.awxb-view.awxb-view .rounded-top,.awxb-component.awxb-component .rounded-top{border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}.awxb-view.awxb-view .rounded-right,.awxb-component.awxb-component .rounded-right{border-top-right-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.awxb-view.awxb-view .rounded-bottom,.awxb-component.awxb-component .rounded-bottom{border-bottom-right-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.awxb-view.awxb-view .rounded-left,.awxb-component.awxb-component .rounded-left{border-top-left-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.awxb-view.awxb-view .rounded-circle,.awxb-component.awxb-component .rounded-circle{border-radius:50% !important}.awxb-view.awxb-view .rounded-0,.awxb-component.awxb-component .rounded-0{border-radius:0 !important}.awxb-view.awxb-view .clearfix::after,.awxb-component.awxb-component .clearfix::after{display:block;clear:both;content:""}.awxb-view.awxb-view .d-none,.awxb-component.awxb-component .d-none{display:none !important}.awxb-view.awxb-view .d-inline,.awxb-component.awxb-component .d-inline{display:inline !important}.awxb-view.awxb-view .d-inline-block,.awxb-component.awxb-component .d-inline-block{display:inline-block !important}.awxb-view.awxb-view .d-block,.awxb-component.awxb-component .d-block{display:block !important}.awxb-view.awxb-view .d-table,.awxb-component.awxb-component .d-table{display:table !important}.awxb-view.awxb-view .d-table-row,.awxb-component.awxb-component .d-table-row{display:table-row !important}.awxb-view.awxb-view .d-table-cell,.awxb-component.awxb-component .d-table-cell{display:table-cell !important}.awxb-view.awxb-view .d-flex,.awxb-component.awxb-component .d-flex{display:flex !important}.awxb-view.awxb-view .d-inline-flex,.awxb-component.awxb-component .d-inline-flex{display:inline-flex !important}@media(min-width: 576px){.awxb-view.awxb-view .d-sm-none,.awxb-component.awxb-component .d-sm-none{display:none !important}.awxb-view.awxb-view .d-sm-inline,.awxb-component.awxb-component .d-sm-inline{display:inline !important}.awxb-view.awxb-view .d-sm-inline-block,.awxb-component.awxb-component .d-sm-inline-block{display:inline-block !important}.awxb-view.awxb-view .d-sm-block,.awxb-component.awxb-component .d-sm-block{display:block !important}.awxb-view.awxb-view .d-sm-table,.awxb-component.awxb-component .d-sm-table{display:table !important}.awxb-view.awxb-view .d-sm-table-row,.awxb-component.awxb-component .d-sm-table-row{display:table-row !important}.awxb-view.awxb-view .d-sm-table-cell,.awxb-component.awxb-component .d-sm-table-cell{display:table-cell !important}.awxb-view.awxb-view .d-sm-flex,.awxb-component.awxb-component .d-sm-flex{display:flex !important}.awxb-view.awxb-view .d-sm-inline-flex,.awxb-component.awxb-component .d-sm-inline-flex{display:inline-flex !important}}@media(min-width: 768px){.awxb-view.awxb-view .d-md-none,.awxb-component.awxb-component .d-md-none{display:none !important}.awxb-view.awxb-view .d-md-inline,.awxb-component.awxb-component .d-md-inline{display:inline !important}.awxb-view.awxb-view .d-md-inline-block,.awxb-component.awxb-component .d-md-inline-block{display:inline-block !important}.awxb-view.awxb-view .d-md-block,.awxb-component.awxb-component .d-md-block{display:block !important}.awxb-view.awxb-view .d-md-table,.awxb-component.awxb-component .d-md-table{display:table !important}.awxb-view.awxb-view .d-md-table-row,.awxb-component.awxb-component .d-md-table-row{display:table-row !important}.awxb-view.awxb-view .d-md-table-cell,.awxb-component.awxb-component .d-md-table-cell{display:table-cell !important}.awxb-view.awxb-view .d-md-flex,.awxb-component.awxb-component .d-md-flex{display:flex !important}.awxb-view.awxb-view .d-md-inline-flex,.awxb-component.awxb-component .d-md-inline-flex{display:inline-flex !important}}@media(min-width: 992px){.awxb-view.awxb-view .d-lg-none,.awxb-component.awxb-component .d-lg-none{display:none !important}.awxb-view.awxb-view .d-lg-inline,.awxb-component.awxb-component .d-lg-inline{display:inline !important}.awxb-view.awxb-view .d-lg-inline-block,.awxb-component.awxb-component .d-lg-inline-block{display:inline-block !important}.awxb-view.awxb-view .d-lg-block,.awxb-component.awxb-component .d-lg-block{display:block !important}.awxb-view.awxb-view .d-lg-table,.awxb-component.awxb-component .d-lg-table{display:table !important}.awxb-view.awxb-view .d-lg-table-row,.awxb-component.awxb-component .d-lg-table-row{display:table-row !important}.awxb-view.awxb-view .d-lg-table-cell,.awxb-component.awxb-component .d-lg-table-cell{display:table-cell !important}.awxb-view.awxb-view .d-lg-flex,.awxb-component.awxb-component .d-lg-flex{display:flex !important}.awxb-view.awxb-view .d-lg-inline-flex,.awxb-component.awxb-component .d-lg-inline-flex{display:inline-flex !important}}@media(min-width: 1200px){.awxb-view.awxb-view .d-xl-none,.awxb-component.awxb-component .d-xl-none{display:none !important}.awxb-view.awxb-view .d-xl-inline,.awxb-component.awxb-component .d-xl-inline{display:inline !important}.awxb-view.awxb-view .d-xl-inline-block,.awxb-component.awxb-component .d-xl-inline-block{display:inline-block !important}.awxb-view.awxb-view .d-xl-block,.awxb-component.awxb-component .d-xl-block{display:block !important}.awxb-view.awxb-view .d-xl-table,.awxb-component.awxb-component .d-xl-table{display:table !important}.awxb-view.awxb-view .d-xl-table-row,.awxb-component.awxb-component .d-xl-table-row{display:table-row !important}.awxb-view.awxb-view .d-xl-table-cell,.awxb-component.awxb-component .d-xl-table-cell{display:table-cell !important}.awxb-view.awxb-view .d-xl-flex,.awxb-component.awxb-component .d-xl-flex{display:flex !important}.awxb-view.awxb-view .d-xl-inline-flex,.awxb-component.awxb-component .d-xl-inline-flex{display:inline-flex !important}}@media print{.awxb-view.awxb-view .d-print-none,.awxb-component.awxb-component .d-print-none{display:none !important}.awxb-view.awxb-view .d-print-inline,.awxb-component.awxb-component .d-print-inline{display:inline !important}.awxb-view.awxb-view .d-print-inline-block,.awxb-component.awxb-component .d-print-inline-block{display:inline-block !important}.awxb-view.awxb-view .d-print-block,.awxb-component.awxb-component .d-print-block{display:block !important}.awxb-view.awxb-view .d-print-table,.awxb-component.awxb-component .d-print-table{display:table !important}.awxb-view.awxb-view .d-print-table-row,.awxb-component.awxb-component .d-print-table-row{display:table-row !important}.awxb-view.awxb-view .d-print-table-cell,.awxb-component.awxb-component .d-print-table-cell{display:table-cell !important}.awxb-view.awxb-view .d-print-flex,.awxb-component.awxb-component .d-print-flex{display:flex !important}.awxb-view.awxb-view .d-print-inline-flex,.awxb-component.awxb-component .d-print-inline-flex{display:inline-flex !important}}.awxb-view.awxb-view .embed-responsive,.awxb-component.awxb-component .embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.awxb-view.awxb-view .embed-responsive::before,.awxb-component.awxb-component .embed-responsive::before{display:block;content:""}.awxb-view.awxb-view .embed-responsive .embed-responsive-item,.awxb-view.awxb-view .embed-responsive iframe,.awxb-view.awxb-view .embed-responsive embed,.awxb-view.awxb-view .embed-responsive object,.awxb-view.awxb-view .embed-responsive video,.awxb-component.awxb-component .embed-responsive .embed-responsive-item,.awxb-component.awxb-component .embed-responsive iframe,.awxb-component.awxb-component .embed-responsive embed,.awxb-component.awxb-component .embed-responsive object,.awxb-component.awxb-component .embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.awxb-view.awxb-view .embed-responsive-21by9::before,.awxb-component.awxb-component .embed-responsive-21by9::before{padding-top:42.8571428571%}.awxb-view.awxb-view .embed-responsive-16by9::before,.awxb-component.awxb-component .embed-responsive-16by9::before{padding-top:56.25%}.awxb-view.awxb-view .embed-responsive-4by3::before,.awxb-component.awxb-component .embed-responsive-4by3::before{padding-top:75%}.awxb-view.awxb-view .embed-responsive-1by1::before,.awxb-component.awxb-component .embed-responsive-1by1::before{padding-top:100%}.awxb-view.awxb-view .flex-row,.awxb-component.awxb-component .flex-row{flex-direction:row !important}.awxb-view.awxb-view .flex-column,.awxb-component.awxb-component .flex-column{flex-direction:column !important}.awxb-view.awxb-view .flex-row-reverse,.awxb-component.awxb-component .flex-row-reverse{flex-direction:row-reverse !important}.awxb-view.awxb-view .flex-column-reverse,.awxb-component.awxb-component .flex-column-reverse{flex-direction:column-reverse !important}.awxb-view.awxb-view .flex-wrap,.awxb-component.awxb-component .flex-wrap{flex-wrap:wrap !important}.awxb-view.awxb-view .flex-nowrap,.awxb-component.awxb-component .flex-nowrap{flex-wrap:nowrap !important}.awxb-view.awxb-view .flex-wrap-reverse,.awxb-component.awxb-component .flex-wrap-reverse{flex-wrap:wrap-reverse !important}.awxb-view.awxb-view .flex-fill,.awxb-component.awxb-component .flex-fill{flex:1 1 auto !important}.awxb-view.awxb-view .flex-grow-0,.awxb-component.awxb-component .flex-grow-0{flex-grow:0 !important}.awxb-view.awxb-view .flex-grow-1,.awxb-component.awxb-component .flex-grow-1{flex-grow:1 !important}.awxb-view.awxb-view .flex-shrink-0,.awxb-component.awxb-component .flex-shrink-0{flex-shrink:0 !important}.awxb-view.awxb-view .flex-shrink-1,.awxb-component.awxb-component .flex-shrink-1{flex-shrink:1 !important}.awxb-view.awxb-view .justify-content-start,.awxb-component.awxb-component .justify-content-start{justify-content:flex-start !important}.awxb-view.awxb-view .justify-content-end,.awxb-component.awxb-component .justify-content-end{justify-content:flex-end !important}.awxb-view.awxb-view .justify-content-center,.awxb-component.awxb-component .justify-content-center{justify-content:center !important}.awxb-view.awxb-view .justify-content-between,.awxb-component.awxb-component .justify-content-between{justify-content:space-between !important}.awxb-view.awxb-view .justify-content-around,.awxb-component.awxb-component .justify-content-around{justify-content:space-around !important}.awxb-view.awxb-view .align-items-start,.awxb-component.awxb-component .align-items-start{align-items:flex-start !important}.awxb-view.awxb-view .align-items-end,.awxb-component.awxb-component .align-items-end{align-items:flex-end !important}.awxb-view.awxb-view .align-items-center,.awxb-component.awxb-component .align-items-center{align-items:center !important}.awxb-view.awxb-view .align-items-baseline,.awxb-component.awxb-component .align-items-baseline{align-items:baseline !important}.awxb-view.awxb-view .align-items-stretch,.awxb-component.awxb-component .align-items-stretch{align-items:stretch !important}.awxb-view.awxb-view .align-content-start,.awxb-component.awxb-component .align-content-start{align-content:flex-start !important}.awxb-view.awxb-view .align-content-end,.awxb-component.awxb-component .align-content-end{align-content:flex-end !important}.awxb-view.awxb-view .align-content-center,.awxb-component.awxb-component .align-content-center{align-content:center !important}.awxb-view.awxb-view .align-content-between,.awxb-component.awxb-component .align-content-between{align-content:space-between !important}.awxb-view.awxb-view .align-content-around,.awxb-component.awxb-component .align-content-around{align-content:space-around !important}.awxb-view.awxb-view .align-content-stretch,.awxb-component.awxb-component .align-content-stretch{align-content:stretch !important}.awxb-view.awxb-view .align-self-auto,.awxb-component.awxb-component .align-self-auto{align-self:auto !important}.awxb-view.awxb-view .align-self-start,.awxb-component.awxb-component .align-self-start{align-self:flex-start !important}.awxb-view.awxb-view .align-self-end,.awxb-component.awxb-component .align-self-end{align-self:flex-end !important}.awxb-view.awxb-view .align-self-center,.awxb-component.awxb-component .align-self-center{align-self:center !important}.awxb-view.awxb-view .align-self-baseline,.awxb-component.awxb-component .align-self-baseline{align-self:baseline !important}.awxb-view.awxb-view .align-self-stretch,.awxb-component.awxb-component .align-self-stretch{align-self:stretch !important}@media(min-width: 576px){.awxb-view.awxb-view .flex-sm-row,.awxb-component.awxb-component .flex-sm-row{flex-direction:row !important}.awxb-view.awxb-view .flex-sm-column,.awxb-component.awxb-component .flex-sm-column{flex-direction:column !important}.awxb-view.awxb-view .flex-sm-row-reverse,.awxb-component.awxb-component .flex-sm-row-reverse{flex-direction:row-reverse !important}.awxb-view.awxb-view .flex-sm-column-reverse,.awxb-component.awxb-component .flex-sm-column-reverse{flex-direction:column-reverse !important}.awxb-view.awxb-view .flex-sm-wrap,.awxb-component.awxb-component .flex-sm-wrap{flex-wrap:wrap !important}.awxb-view.awxb-view .flex-sm-nowrap,.awxb-component.awxb-component .flex-sm-nowrap{flex-wrap:nowrap !important}.awxb-view.awxb-view .flex-sm-wrap-reverse,.awxb-component.awxb-component .flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.awxb-view.awxb-view .flex-sm-fill,.awxb-component.awxb-component .flex-sm-fill{flex:1 1 auto !important}.awxb-view.awxb-view .flex-sm-grow-0,.awxb-component.awxb-component .flex-sm-grow-0{flex-grow:0 !important}.awxb-view.awxb-view .flex-sm-grow-1,.awxb-component.awxb-component .flex-sm-grow-1{flex-grow:1 !important}.awxb-view.awxb-view .flex-sm-shrink-0,.awxb-component.awxb-component .flex-sm-shrink-0{flex-shrink:0 !important}.awxb-view.awxb-view .flex-sm-shrink-1,.awxb-component.awxb-component .flex-sm-shrink-1{flex-shrink:1 !important}.awxb-view.awxb-view .justify-content-sm-start,.awxb-component.awxb-component .justify-content-sm-start{justify-content:flex-start !important}.awxb-view.awxb-view .justify-content-sm-end,.awxb-component.awxb-component .justify-content-sm-end{justify-content:flex-end !important}.awxb-view.awxb-view .justify-content-sm-center,.awxb-component.awxb-component .justify-content-sm-center{justify-content:center !important}.awxb-view.awxb-view .justify-content-sm-between,.awxb-component.awxb-component .justify-content-sm-between{justify-content:space-between !important}.awxb-view.awxb-view .justify-content-sm-around,.awxb-component.awxb-component .justify-content-sm-around{justify-content:space-around !important}.awxb-view.awxb-view .align-items-sm-start,.awxb-component.awxb-component .align-items-sm-start{align-items:flex-start !important}.awxb-view.awxb-view .align-items-sm-end,.awxb-component.awxb-component .align-items-sm-end{align-items:flex-end !important}.awxb-view.awxb-view .align-items-sm-center,.awxb-component.awxb-component .align-items-sm-center{align-items:center !important}.awxb-view.awxb-view .align-items-sm-baseline,.awxb-component.awxb-component .align-items-sm-baseline{align-items:baseline !important}.awxb-view.awxb-view .align-items-sm-stretch,.awxb-component.awxb-component .align-items-sm-stretch{align-items:stretch !important}.awxb-view.awxb-view .align-content-sm-start,.awxb-component.awxb-component .align-content-sm-start{align-content:flex-start !important}.awxb-view.awxb-view .align-content-sm-end,.awxb-component.awxb-component .align-content-sm-end{align-content:flex-end !important}.awxb-view.awxb-view .align-content-sm-center,.awxb-component.awxb-component .align-content-sm-center{align-content:center !important}.awxb-view.awxb-view .align-content-sm-between,.awxb-component.awxb-component .align-content-sm-between{align-content:space-between !important}.awxb-view.awxb-view .align-content-sm-around,.awxb-component.awxb-component .align-content-sm-around{align-content:space-around !important}.awxb-view.awxb-view .align-content-sm-stretch,.awxb-component.awxb-component .align-content-sm-stretch{align-content:stretch !important}.awxb-view.awxb-view .align-self-sm-auto,.awxb-component.awxb-component .align-self-sm-auto{align-self:auto !important}.awxb-view.awxb-view .align-self-sm-start,.awxb-component.awxb-component .align-self-sm-start{align-self:flex-start !important}.awxb-view.awxb-view .align-self-sm-end,.awxb-component.awxb-component .align-self-sm-end{align-self:flex-end !important}.awxb-view.awxb-view .align-self-sm-center,.awxb-component.awxb-component .align-self-sm-center{align-self:center !important}.awxb-view.awxb-view .align-self-sm-baseline,.awxb-component.awxb-component .align-self-sm-baseline{align-self:baseline !important}.awxb-view.awxb-view .align-self-sm-stretch,.awxb-component.awxb-component .align-self-sm-stretch{align-self:stretch !important}}@media(min-width: 768px){.awxb-view.awxb-view .flex-md-row,.awxb-component.awxb-component .flex-md-row{flex-direction:row !important}.awxb-view.awxb-view .flex-md-column,.awxb-component.awxb-component .flex-md-column{flex-direction:column !important}.awxb-view.awxb-view .flex-md-row-reverse,.awxb-component.awxb-component .flex-md-row-reverse{flex-direction:row-reverse !important}.awxb-view.awxb-view .flex-md-column-reverse,.awxb-component.awxb-component .flex-md-column-reverse{flex-direction:column-reverse !important}.awxb-view.awxb-view .flex-md-wrap,.awxb-component.awxb-component .flex-md-wrap{flex-wrap:wrap !important}.awxb-view.awxb-view .flex-md-nowrap,.awxb-component.awxb-component .flex-md-nowrap{flex-wrap:nowrap !important}.awxb-view.awxb-view .flex-md-wrap-reverse,.awxb-component.awxb-component .flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.awxb-view.awxb-view .flex-md-fill,.awxb-component.awxb-component .flex-md-fill{flex:1 1 auto !important}.awxb-view.awxb-view .flex-md-grow-0,.awxb-component.awxb-component .flex-md-grow-0{flex-grow:0 !important}.awxb-view.awxb-view .flex-md-grow-1,.awxb-component.awxb-component .flex-md-grow-1{flex-grow:1 !important}.awxb-view.awxb-view .flex-md-shrink-0,.awxb-component.awxb-component .flex-md-shrink-0{flex-shrink:0 !important}.awxb-view.awxb-view .flex-md-shrink-1,.awxb-component.awxb-component .flex-md-shrink-1{flex-shrink:1 !important}.awxb-view.awxb-view .justify-content-md-start,.awxb-component.awxb-component .justify-content-md-start{justify-content:flex-start !important}.awxb-view.awxb-view .justify-content-md-end,.awxb-component.awxb-component .justify-content-md-end{justify-content:flex-end !important}.awxb-view.awxb-view .justify-content-md-center,.awxb-component.awxb-component .justify-content-md-center{justify-content:center !important}.awxb-view.awxb-view .justify-content-md-between,.awxb-component.awxb-component .justify-content-md-between{justify-content:space-between !important}.awxb-view.awxb-view .justify-content-md-around,.awxb-component.awxb-component .justify-content-md-around{justify-content:space-around !important}.awxb-view.awxb-view .align-items-md-start,.awxb-component.awxb-component .align-items-md-start{align-items:flex-start !important}.awxb-view.awxb-view .align-items-md-end,.awxb-component.awxb-component .align-items-md-end{align-items:flex-end !important}.awxb-view.awxb-view .align-items-md-center,.awxb-component.awxb-component .align-items-md-center{align-items:center !important}.awxb-view.awxb-view .align-items-md-baseline,.awxb-component.awxb-component .align-items-md-baseline{align-items:baseline !important}.awxb-view.awxb-view .align-items-md-stretch,.awxb-component.awxb-component .align-items-md-stretch{align-items:stretch !important}.awxb-view.awxb-view .align-content-md-start,.awxb-component.awxb-component .align-content-md-start{align-content:flex-start !important}.awxb-view.awxb-view .align-content-md-end,.awxb-component.awxb-component .align-content-md-end{align-content:flex-end !important}.awxb-view.awxb-view .align-content-md-center,.awxb-component.awxb-component .align-content-md-center{align-content:center !important}.awxb-view.awxb-view .align-content-md-between,.awxb-component.awxb-component .align-content-md-between{align-content:space-between !important}.awxb-view.awxb-view .align-content-md-around,.awxb-component.awxb-component .align-content-md-around{align-content:space-around !important}.awxb-view.awxb-view .align-content-md-stretch,.awxb-component.awxb-component .align-content-md-stretch{align-content:stretch !important}.awxb-view.awxb-view .align-self-md-auto,.awxb-component.awxb-component .align-self-md-auto{align-self:auto !important}.awxb-view.awxb-view .align-self-md-start,.awxb-component.awxb-component .align-self-md-start{align-self:flex-start !important}.awxb-view.awxb-view .align-self-md-end,.awxb-component.awxb-component .align-self-md-end{align-self:flex-end !important}.awxb-view.awxb-view .align-self-md-center,.awxb-component.awxb-component .align-self-md-center{align-self:center !important}.awxb-view.awxb-view .align-self-md-baseline,.awxb-component.awxb-component .align-self-md-baseline{align-self:baseline !important}.awxb-view.awxb-view .align-self-md-stretch,.awxb-component.awxb-component .align-self-md-stretch{align-self:stretch !important}}@media(min-width: 992px){.awxb-view.awxb-view .flex-lg-row,.awxb-component.awxb-component .flex-lg-row{flex-direction:row !important}.awxb-view.awxb-view .flex-lg-column,.awxb-component.awxb-component .flex-lg-column{flex-direction:column !important}.awxb-view.awxb-view .flex-lg-row-reverse,.awxb-component.awxb-component .flex-lg-row-reverse{flex-direction:row-reverse !important}.awxb-view.awxb-view .flex-lg-column-reverse,.awxb-component.awxb-component .flex-lg-column-reverse{flex-direction:column-reverse !important}.awxb-view.awxb-view .flex-lg-wrap,.awxb-component.awxb-component .flex-lg-wrap{flex-wrap:wrap !important}.awxb-view.awxb-view .flex-lg-nowrap,.awxb-component.awxb-component .flex-lg-nowrap{flex-wrap:nowrap !important}.awxb-view.awxb-view .flex-lg-wrap-reverse,.awxb-component.awxb-component .flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.awxb-view.awxb-view .flex-lg-fill,.awxb-component.awxb-component .flex-lg-fill{flex:1 1 auto !important}.awxb-view.awxb-view .flex-lg-grow-0,.awxb-component.awxb-component .flex-lg-grow-0{flex-grow:0 !important}.awxb-view.awxb-view .flex-lg-grow-1,.awxb-component.awxb-component .flex-lg-grow-1{flex-grow:1 !important}.awxb-view.awxb-view .flex-lg-shrink-0,.awxb-component.awxb-component .flex-lg-shrink-0{flex-shrink:0 !important}.awxb-view.awxb-view .flex-lg-shrink-1,.awxb-component.awxb-component .flex-lg-shrink-1{flex-shrink:1 !important}.awxb-view.awxb-view .justify-content-lg-start,.awxb-component.awxb-component .justify-content-lg-start{justify-content:flex-start !important}.awxb-view.awxb-view .justify-content-lg-end,.awxb-component.awxb-component .justify-content-lg-end{justify-content:flex-end !important}.awxb-view.awxb-view .justify-content-lg-center,.awxb-component.awxb-component .justify-content-lg-center{justify-content:center !important}.awxb-view.awxb-view .justify-content-lg-between,.awxb-component.awxb-component .justify-content-lg-between{justify-content:space-between !important}.awxb-view.awxb-view .justify-content-lg-around,.awxb-component.awxb-component .justify-content-lg-around{justify-content:space-around !important}.awxb-view.awxb-view .align-items-lg-start,.awxb-component.awxb-component .align-items-lg-start{align-items:flex-start !important}.awxb-view.awxb-view .align-items-lg-end,.awxb-component.awxb-component .align-items-lg-end{align-items:flex-end !important}.awxb-view.awxb-view .align-items-lg-center,.awxb-component.awxb-component .align-items-lg-center{align-items:center !important}.awxb-view.awxb-view .align-items-lg-baseline,.awxb-component.awxb-component .align-items-lg-baseline{align-items:baseline !important}.awxb-view.awxb-view .align-items-lg-stretch,.awxb-component.awxb-component .align-items-lg-stretch{align-items:stretch !important}.awxb-view.awxb-view .align-content-lg-start,.awxb-component.awxb-component .align-content-lg-start{align-content:flex-start !important}.awxb-view.awxb-view .align-content-lg-end,.awxb-component.awxb-component .align-content-lg-end{align-content:flex-end !important}.awxb-view.awxb-view .align-content-lg-center,.awxb-component.awxb-component .align-content-lg-center{align-content:center !important}.awxb-view.awxb-view .align-content-lg-between,.awxb-component.awxb-component .align-content-lg-between{align-content:space-between !important}.awxb-view.awxb-view .align-content-lg-around,.awxb-component.awxb-component .align-content-lg-around{align-content:space-around !important}.awxb-view.awxb-view .align-content-lg-stretch,.awxb-component.awxb-component .align-content-lg-stretch{align-content:stretch !important}.awxb-view.awxb-view .align-self-lg-auto,.awxb-component.awxb-component .align-self-lg-auto{align-self:auto !important}.awxb-view.awxb-view .align-self-lg-start,.awxb-component.awxb-component .align-self-lg-start{align-self:flex-start !important}.awxb-view.awxb-view .align-self-lg-end,.awxb-component.awxb-component .align-self-lg-end{align-self:flex-end !important}.awxb-view.awxb-view .align-self-lg-center,.awxb-component.awxb-component .align-self-lg-center{align-self:center !important}.awxb-view.awxb-view .align-self-lg-baseline,.awxb-component.awxb-component .align-self-lg-baseline{align-self:baseline !important}.awxb-view.awxb-view .align-self-lg-stretch,.awxb-component.awxb-component .align-self-lg-stretch{align-self:stretch !important}}@media(min-width: 1200px){.awxb-view.awxb-view .flex-xl-row,.awxb-component.awxb-component .flex-xl-row{flex-direction:row !important}.awxb-view.awxb-view .flex-xl-column,.awxb-component.awxb-component .flex-xl-column{flex-direction:column !important}.awxb-view.awxb-view .flex-xl-row-reverse,.awxb-component.awxb-component .flex-xl-row-reverse{flex-direction:row-reverse !important}.awxb-view.awxb-view .flex-xl-column-reverse,.awxb-component.awxb-component .flex-xl-column-reverse{flex-direction:column-reverse !important}.awxb-view.awxb-view .flex-xl-wrap,.awxb-component.awxb-component .flex-xl-wrap{flex-wrap:wrap !important}.awxb-view.awxb-view .flex-xl-nowrap,.awxb-component.awxb-component .flex-xl-nowrap{flex-wrap:nowrap !important}.awxb-view.awxb-view .flex-xl-wrap-reverse,.awxb-component.awxb-component .flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.awxb-view.awxb-view .flex-xl-fill,.awxb-component.awxb-component .flex-xl-fill{flex:1 1 auto !important}.awxb-view.awxb-view .flex-xl-grow-0,.awxb-component.awxb-component .flex-xl-grow-0{flex-grow:0 !important}.awxb-view.awxb-view .flex-xl-grow-1,.awxb-component.awxb-component .flex-xl-grow-1{flex-grow:1 !important}.awxb-view.awxb-view .flex-xl-shrink-0,.awxb-component.awxb-component .flex-xl-shrink-0{flex-shrink:0 !important}.awxb-view.awxb-view .flex-xl-shrink-1,.awxb-component.awxb-component .flex-xl-shrink-1{flex-shrink:1 !important}.awxb-view.awxb-view .justify-content-xl-start,.awxb-component.awxb-component .justify-content-xl-start{justify-content:flex-start !important}.awxb-view.awxb-view .justify-content-xl-end,.awxb-component.awxb-component .justify-content-xl-end{justify-content:flex-end !important}.awxb-view.awxb-view .justify-content-xl-center,.awxb-component.awxb-component .justify-content-xl-center{justify-content:center !important}.awxb-view.awxb-view .justify-content-xl-between,.awxb-component.awxb-component .justify-content-xl-between{justify-content:space-between !important}.awxb-view.awxb-view .justify-content-xl-around,.awxb-component.awxb-component .justify-content-xl-around{justify-content:space-around !important}.awxb-view.awxb-view .align-items-xl-start,.awxb-component.awxb-component .align-items-xl-start{align-items:flex-start !important}.awxb-view.awxb-view .align-items-xl-end,.awxb-component.awxb-component .align-items-xl-end{align-items:flex-end !important}.awxb-view.awxb-view .align-items-xl-center,.awxb-component.awxb-component .align-items-xl-center{align-items:center !important}.awxb-view.awxb-view .align-items-xl-baseline,.awxb-component.awxb-component .align-items-xl-baseline{align-items:baseline !important}.awxb-view.awxb-view .align-items-xl-stretch,.awxb-component.awxb-component .align-items-xl-stretch{align-items:stretch !important}.awxb-view.awxb-view .align-content-xl-start,.awxb-component.awxb-component .align-content-xl-start{align-content:flex-start !important}.awxb-view.awxb-view .align-content-xl-end,.awxb-component.awxb-component .align-content-xl-end{align-content:flex-end !important}.awxb-view.awxb-view .align-content-xl-center,.awxb-component.awxb-component .align-content-xl-center{align-content:center !important}.awxb-view.awxb-view .align-content-xl-between,.awxb-component.awxb-component .align-content-xl-between{align-content:space-between !important}.awxb-view.awxb-view .align-content-xl-around,.awxb-component.awxb-component .align-content-xl-around{align-content:space-around !important}.awxb-view.awxb-view .align-content-xl-stretch,.awxb-component.awxb-component .align-content-xl-stretch{align-content:stretch !important}.awxb-view.awxb-view .align-self-xl-auto,.awxb-component.awxb-component .align-self-xl-auto{align-self:auto !important}.awxb-view.awxb-view .align-self-xl-start,.awxb-component.awxb-component .align-self-xl-start{align-self:flex-start !important}.awxb-view.awxb-view .align-self-xl-end,.awxb-component.awxb-component .align-self-xl-end{align-self:flex-end !important}.awxb-view.awxb-view .align-self-xl-center,.awxb-component.awxb-component .align-self-xl-center{align-self:center !important}.awxb-view.awxb-view .align-self-xl-baseline,.awxb-component.awxb-component .align-self-xl-baseline{align-self:baseline !important}.awxb-view.awxb-view .align-self-xl-stretch,.awxb-component.awxb-component .align-self-xl-stretch{align-self:stretch !important}}.awxb-view.awxb-view .float-left,.awxb-component.awxb-component .float-left{float:left !important}.awxb-view.awxb-view .float-right,.awxb-component.awxb-component .float-right{float:right !important}.awxb-view.awxb-view .float-none,.awxb-component.awxb-component .float-none{float:none !important}@media(min-width: 576px){.awxb-view.awxb-view .float-sm-left,.awxb-component.awxb-component .float-sm-left{float:left !important}.awxb-view.awxb-view .float-sm-right,.awxb-component.awxb-component .float-sm-right{float:right !important}.awxb-view.awxb-view .float-sm-none,.awxb-component.awxb-component .float-sm-none{float:none !important}}@media(min-width: 768px){.awxb-view.awxb-view .float-md-left,.awxb-component.awxb-component .float-md-left{float:left !important}.awxb-view.awxb-view .float-md-right,.awxb-component.awxb-component .float-md-right{float:right !important}.awxb-view.awxb-view .float-md-none,.awxb-component.awxb-component .float-md-none{float:none !important}}@media(min-width: 992px){.awxb-view.awxb-view .float-lg-left,.awxb-component.awxb-component .float-lg-left{float:left !important}.awxb-view.awxb-view .float-lg-right,.awxb-component.awxb-component .float-lg-right{float:right !important}.awxb-view.awxb-view .float-lg-none,.awxb-component.awxb-component .float-lg-none{float:none !important}}@media(min-width: 1200px){.awxb-view.awxb-view .float-xl-left,.awxb-component.awxb-component .float-xl-left{float:left !important}.awxb-view.awxb-view .float-xl-right,.awxb-component.awxb-component .float-xl-right{float:right !important}.awxb-view.awxb-view .float-xl-none,.awxb-component.awxb-component .float-xl-none{float:none !important}}.awxb-view.awxb-view .position-static,.awxb-component.awxb-component .position-static{position:static !important}.awxb-view.awxb-view .position-relative,.awxb-component.awxb-component .position-relative{position:relative !important}.awxb-view.awxb-view .position-absolute,.awxb-component.awxb-component .position-absolute{position:absolute !important}.awxb-view.awxb-view .position-fixed,.awxb-component.awxb-component .position-fixed{position:fixed !important}.awxb-view.awxb-view .position-sticky,.awxb-component.awxb-component .position-sticky{position:sticky !important}.awxb-view.awxb-view .fixed-top,.awxb-component.awxb-component .fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.awxb-view.awxb-view .fixed-bottom,.awxb-component.awxb-component .fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports(position: sticky){.awxb-view.awxb-view .sticky-top,.awxb-component.awxb-component .sticky-top{position:sticky;top:0;z-index:1020}}.awxb-view.awxb-view .sr-only,.awxb-component.awxb-component .sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.awxb-view.awxb-view .sr-only-focusable:active,.awxb-view.awxb-view .sr-only-focusable:focus,.awxb-component.awxb-component .sr-only-focusable:active,.awxb-component.awxb-component .sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.awxb-view.awxb-view .shadow-sm,.awxb-component.awxb-component .shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075) !important}.awxb-view.awxb-view .shadow,.awxb-component.awxb-component .shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15) !important}.awxb-view.awxb-view .shadow-lg,.awxb-component.awxb-component .shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175) !important}.awxb-view.awxb-view .shadow-none,.awxb-component.awxb-component .shadow-none{box-shadow:none !important}.awxb-view.awxb-view .w-25,.awxb-component.awxb-component .w-25{width:25% !important}.awxb-view.awxb-view .w-50,.awxb-component.awxb-component .w-50{width:50% !important}.awxb-view.awxb-view .w-75,.awxb-component.awxb-component .w-75{width:75% !important}.awxb-view.awxb-view .w-100,.awxb-component.awxb-component .w-100{width:100% !important}.awxb-view.awxb-view .w-auto,.awxb-component.awxb-component .w-auto{width:auto !important}.awxb-view.awxb-view .h-25,.awxb-component.awxb-component .h-25{height:25% !important}.awxb-view.awxb-view .h-50,.awxb-component.awxb-component .h-50{height:50% !important}.awxb-view.awxb-view .h-75,.awxb-component.awxb-component .h-75{height:75% !important}.awxb-view.awxb-view .h-100,.awxb-component.awxb-component .h-100{height:100% !important}.awxb-view.awxb-view .h-auto,.awxb-component.awxb-component .h-auto{height:auto !important}.awxb-view.awxb-view .mw-100,.awxb-component.awxb-component .mw-100{max-width:100% !important}.awxb-view.awxb-view .mh-100,.awxb-component.awxb-component .mh-100{max-height:100% !important}.awxb-view.awxb-view .m-0,.awxb-component.awxb-component .m-0{margin:0 !important}.awxb-view.awxb-view .mt-0,.awxb-view.awxb-view .my-0,.awxb-component.awxb-component .mt-0,.awxb-component.awxb-component .my-0{margin-top:0 !important}.awxb-view.awxb-view .mr-0,.awxb-view.awxb-view .mx-0,.awxb-component.awxb-component .mr-0,.awxb-component.awxb-component .mx-0{margin-right:0 !important}.awxb-view.awxb-view .mb-0,.awxb-view.awxb-view .my-0,.awxb-component.awxb-component .mb-0,.awxb-component.awxb-component .my-0{margin-bottom:0 !important}.awxb-view.awxb-view .ml-0,.awxb-view.awxb-view .mx-0,.awxb-component.awxb-component .ml-0,.awxb-component.awxb-component .mx-0{margin-left:0 !important}.awxb-view.awxb-view .m-1,.awxb-component.awxb-component .m-1{margin:.25rem !important}.awxb-view.awxb-view .mt-1,.awxb-view.awxb-view .my-1,.awxb-component.awxb-component .mt-1,.awxb-component.awxb-component .my-1{margin-top:.25rem !important}.awxb-view.awxb-view .mr-1,.awxb-view.awxb-view .mx-1,.awxb-component.awxb-component .mr-1,.awxb-component.awxb-component .mx-1{margin-right:.25rem !important}.awxb-view.awxb-view .mb-1,.awxb-view.awxb-view .my-1,.awxb-component.awxb-component .mb-1,.awxb-component.awxb-component .my-1{margin-bottom:.25rem !important}.awxb-view.awxb-view .ml-1,.awxb-view.awxb-view .mx-1,.awxb-component.awxb-component .ml-1,.awxb-component.awxb-component .mx-1{margin-left:.25rem !important}.awxb-view.awxb-view .m-2,.awxb-component.awxb-component .m-2{margin:.5rem !important}.awxb-view.awxb-view .mt-2,.awxb-view.awxb-view .my-2,.awxb-component.awxb-component .mt-2,.awxb-component.awxb-component .my-2{margin-top:.5rem !important}.awxb-view.awxb-view .mr-2,.awxb-view.awxb-view .mx-2,.awxb-component.awxb-component .mr-2,.awxb-component.awxb-component .mx-2{margin-right:.5rem !important}.awxb-view.awxb-view .mb-2,.awxb-view.awxb-view .my-2,.awxb-component.awxb-component .mb-2,.awxb-component.awxb-component .my-2{margin-bottom:.5rem !important}.awxb-view.awxb-view .ml-2,.awxb-view.awxb-view .mx-2,.awxb-component.awxb-component .ml-2,.awxb-component.awxb-component .mx-2{margin-left:.5rem !important}.awxb-view.awxb-view .m-3,.awxb-component.awxb-component .m-3{margin:1rem !important}.awxb-view.awxb-view .mt-3,.awxb-view.awxb-view .my-3,.awxb-component.awxb-component .mt-3,.awxb-component.awxb-component .my-3{margin-top:1rem !important}.awxb-view.awxb-view .mr-3,.awxb-view.awxb-view .mx-3,.awxb-component.awxb-component .mr-3,.awxb-component.awxb-component .mx-3{margin-right:1rem !important}.awxb-view.awxb-view .mb-3,.awxb-view.awxb-view .my-3,.awxb-component.awxb-component .mb-3,.awxb-component.awxb-component .my-3{margin-bottom:1rem !important}.awxb-view.awxb-view .ml-3,.awxb-view.awxb-view .mx-3,.awxb-component.awxb-component .ml-3,.awxb-component.awxb-component .mx-3{margin-left:1rem !important}.awxb-view.awxb-view .m-4,.awxb-component.awxb-component .m-4{margin:1.5rem !important}.awxb-view.awxb-view .mt-4,.awxb-view.awxb-view .my-4,.awxb-component.awxb-component .mt-4,.awxb-component.awxb-component .my-4{margin-top:1.5rem !important}.awxb-view.awxb-view .mr-4,.awxb-view.awxb-view .mx-4,.awxb-component.awxb-component .mr-4,.awxb-component.awxb-component .mx-4{margin-right:1.5rem !important}.awxb-view.awxb-view .mb-4,.awxb-view.awxb-view .my-4,.awxb-component.awxb-component .mb-4,.awxb-component.awxb-component .my-4{margin-bottom:1.5rem !important}.awxb-view.awxb-view .ml-4,.awxb-view.awxb-view .mx-4,.awxb-component.awxb-component .ml-4,.awxb-component.awxb-component .mx-4{margin-left:1.5rem !important}.awxb-view.awxb-view .m-5,.awxb-component.awxb-component .m-5{margin:3rem !important}.awxb-view.awxb-view .mt-5,.awxb-view.awxb-view .my-5,.awxb-component.awxb-component .mt-5,.awxb-component.awxb-component .my-5{margin-top:3rem !important}.awxb-view.awxb-view .mr-5,.awxb-view.awxb-view .mx-5,.awxb-component.awxb-component .mr-5,.awxb-component.awxb-component .mx-5{margin-right:3rem !important}.awxb-view.awxb-view .mb-5,.awxb-view.awxb-view .my-5,.awxb-component.awxb-component .mb-5,.awxb-component.awxb-component .my-5{margin-bottom:3rem !important}.awxb-view.awxb-view .ml-5,.awxb-view.awxb-view .mx-5,.awxb-component.awxb-component .ml-5,.awxb-component.awxb-component .mx-5{margin-left:3rem !important}.awxb-view.awxb-view .p-0,.awxb-component.awxb-component .p-0{padding:0 !important}.awxb-view.awxb-view .pt-0,.awxb-view.awxb-view .py-0,.awxb-component.awxb-component .pt-0,.awxb-component.awxb-component .py-0{padding-top:0 !important}.awxb-view.awxb-view .pr-0,.awxb-view.awxb-view .px-0,.awxb-component.awxb-component .pr-0,.awxb-component.awxb-component .px-0{padding-right:0 !important}.awxb-view.awxb-view .pb-0,.awxb-view.awxb-view .py-0,.awxb-component.awxb-component .pb-0,.awxb-component.awxb-component .py-0{padding-bottom:0 !important}.awxb-view.awxb-view .pl-0,.awxb-view.awxb-view .px-0,.awxb-component.awxb-component .pl-0,.awxb-component.awxb-component .px-0{padding-left:0 !important}.awxb-view.awxb-view .p-1,.awxb-component.awxb-component .p-1{padding:.25rem !important}.awxb-view.awxb-view .pt-1,.awxb-view.awxb-view .py-1,.awxb-component.awxb-component .pt-1,.awxb-component.awxb-component .py-1{padding-top:.25rem !important}.awxb-view.awxb-view .pr-1,.awxb-view.awxb-view .px-1,.awxb-component.awxb-component .pr-1,.awxb-component.awxb-component .px-1{padding-right:.25rem !important}.awxb-view.awxb-view .pb-1,.awxb-view.awxb-view .py-1,.awxb-component.awxb-component .pb-1,.awxb-component.awxb-component .py-1{padding-bottom:.25rem !important}.awxb-view.awxb-view .pl-1,.awxb-view.awxb-view .px-1,.awxb-component.awxb-component .pl-1,.awxb-component.awxb-component .px-1{padding-left:.25rem !important}.awxb-view.awxb-view .p-2,.awxb-component.awxb-component .p-2{padding:.5rem !important}.awxb-view.awxb-view .pt-2,.awxb-view.awxb-view .py-2,.awxb-component.awxb-component .pt-2,.awxb-component.awxb-component .py-2{padding-top:.5rem !important}.awxb-view.awxb-view .pr-2,.awxb-view.awxb-view .px-2,.awxb-component.awxb-component .pr-2,.awxb-component.awxb-component .px-2{padding-right:.5rem !important}.awxb-view.awxb-view .pb-2,.awxb-view.awxb-view .py-2,.awxb-component.awxb-component .pb-2,.awxb-component.awxb-component .py-2{padding-bottom:.5rem !important}.awxb-view.awxb-view .pl-2,.awxb-view.awxb-view .px-2,.awxb-component.awxb-component .pl-2,.awxb-component.awxb-component .px-2{padding-left:.5rem !important}.awxb-view.awxb-view .p-3,.awxb-component.awxb-component .p-3{padding:1rem !important}.awxb-view.awxb-view .pt-3,.awxb-view.awxb-view .py-3,.awxb-component.awxb-component .pt-3,.awxb-component.awxb-component .py-3{padding-top:1rem !important}.awxb-view.awxb-view .pr-3,.awxb-view.awxb-view .px-3,.awxb-component.awxb-component .pr-3,.awxb-component.awxb-component .px-3{padding-right:1rem !important}.awxb-view.awxb-view .pb-3,.awxb-view.awxb-view .py-3,.awxb-component.awxb-component .pb-3,.awxb-component.awxb-component .py-3{padding-bottom:1rem !important}.awxb-view.awxb-view .pl-3,.awxb-view.awxb-view .px-3,.awxb-component.awxb-component .pl-3,.awxb-component.awxb-component .px-3{padding-left:1rem !important}.awxb-view.awxb-view .p-4,.awxb-component.awxb-component .p-4{padding:1.5rem !important}.awxb-view.awxb-view .pt-4,.awxb-view.awxb-view .py-4,.awxb-component.awxb-component .pt-4,.awxb-component.awxb-component .py-4{padding-top:1.5rem !important}.awxb-view.awxb-view .pr-4,.awxb-view.awxb-view .px-4,.awxb-component.awxb-component .pr-4,.awxb-component.awxb-component .px-4{padding-right:1.5rem !important}.awxb-view.awxb-view .pb-4,.awxb-view.awxb-view .py-4,.awxb-component.awxb-component .pb-4,.awxb-component.awxb-component .py-4{padding-bottom:1.5rem !important}.awxb-view.awxb-view .pl-4,.awxb-view.awxb-view .px-4,.awxb-component.awxb-component .pl-4,.awxb-component.awxb-component .px-4{padding-left:1.5rem !important}.awxb-view.awxb-view .p-5,.awxb-component.awxb-component .p-5{padding:3rem !important}.awxb-view.awxb-view .pt-5,.awxb-view.awxb-view .py-5,.awxb-component.awxb-component .pt-5,.awxb-component.awxb-component .py-5{padding-top:3rem !important}.awxb-view.awxb-view .pr-5,.awxb-view.awxb-view .px-5,.awxb-component.awxb-component .pr-5,.awxb-component.awxb-component .px-5{padding-right:3rem !important}.awxb-view.awxb-view .pb-5,.awxb-view.awxb-view .py-5,.awxb-component.awxb-component .pb-5,.awxb-component.awxb-component .py-5{padding-bottom:3rem !important}.awxb-view.awxb-view .pl-5,.awxb-view.awxb-view .px-5,.awxb-component.awxb-component .pl-5,.awxb-component.awxb-component .px-5{padding-left:3rem !important}.awxb-view.awxb-view .m-auto,.awxb-component.awxb-component .m-auto{margin:auto !important}.awxb-view.awxb-view .mt-auto,.awxb-view.awxb-view .my-auto,.awxb-component.awxb-component .mt-auto,.awxb-component.awxb-component .my-auto{margin-top:auto !important}.awxb-view.awxb-view .mr-auto,.awxb-view.awxb-view .mx-auto,.awxb-component.awxb-component .mr-auto,.awxb-component.awxb-component .mx-auto{margin-right:auto !important}.awxb-view.awxb-view .mb-auto,.awxb-view.awxb-view .my-auto,.awxb-component.awxb-component .mb-auto,.awxb-component.awxb-component .my-auto{margin-bottom:auto !important}.awxb-view.awxb-view .ml-auto,.awxb-view.awxb-view .mx-auto,.awxb-component.awxb-component .ml-auto,.awxb-component.awxb-component .mx-auto{margin-left:auto !important}@media(min-width: 576px){.awxb-view.awxb-view .m-sm-0,.awxb-component.awxb-component .m-sm-0{margin:0 !important}.awxb-view.awxb-view .mt-sm-0,.awxb-view.awxb-view .my-sm-0,.awxb-component.awxb-component .mt-sm-0,.awxb-component.awxb-component .my-sm-0{margin-top:0 !important}.awxb-view.awxb-view .mr-sm-0,.awxb-view.awxb-view .mx-sm-0,.awxb-component.awxb-component .mr-sm-0,.awxb-component.awxb-component .mx-sm-0{margin-right:0 !important}.awxb-view.awxb-view .mb-sm-0,.awxb-view.awxb-view .my-sm-0,.awxb-component.awxb-component .mb-sm-0,.awxb-component.awxb-component .my-sm-0{margin-bottom:0 !important}.awxb-view.awxb-view .ml-sm-0,.awxb-view.awxb-view .mx-sm-0,.awxb-component.awxb-component .ml-sm-0,.awxb-component.awxb-component .mx-sm-0{margin-left:0 !important}.awxb-view.awxb-view .m-sm-1,.awxb-component.awxb-component .m-sm-1{margin:.25rem !important}.awxb-view.awxb-view .mt-sm-1,.awxb-view.awxb-view .my-sm-1,.awxb-component.awxb-component .mt-sm-1,.awxb-component.awxb-component .my-sm-1{margin-top:.25rem !important}.awxb-view.awxb-view .mr-sm-1,.awxb-view.awxb-view .mx-sm-1,.awxb-component.awxb-component .mr-sm-1,.awxb-component.awxb-component .mx-sm-1{margin-right:.25rem !important}.awxb-view.awxb-view .mb-sm-1,.awxb-view.awxb-view .my-sm-1,.awxb-component.awxb-component .mb-sm-1,.awxb-component.awxb-component .my-sm-1{margin-bottom:.25rem !important}.awxb-view.awxb-view .ml-sm-1,.awxb-view.awxb-view .mx-sm-1,.awxb-component.awxb-component .ml-sm-1,.awxb-component.awxb-component .mx-sm-1{margin-left:.25rem !important}.awxb-view.awxb-view .m-sm-2,.awxb-component.awxb-component .m-sm-2{margin:.5rem !important}.awxb-view.awxb-view .mt-sm-2,.awxb-view.awxb-view .my-sm-2,.awxb-component.awxb-component .mt-sm-2,.awxb-component.awxb-component .my-sm-2{margin-top:.5rem !important}.awxb-view.awxb-view .mr-sm-2,.awxb-view.awxb-view .mx-sm-2,.awxb-component.awxb-component .mr-sm-2,.awxb-component.awxb-component .mx-sm-2{margin-right:.5rem !important}.awxb-view.awxb-view .mb-sm-2,.awxb-view.awxb-view .my-sm-2,.awxb-component.awxb-component .mb-sm-2,.awxb-component.awxb-component .my-sm-2{margin-bottom:.5rem !important}.awxb-view.awxb-view .ml-sm-2,.awxb-view.awxb-view .mx-sm-2,.awxb-component.awxb-component .ml-sm-2,.awxb-component.awxb-component .mx-sm-2{margin-left:.5rem !important}.awxb-view.awxb-view .m-sm-3,.awxb-component.awxb-component .m-sm-3{margin:1rem !important}.awxb-view.awxb-view .mt-sm-3,.awxb-view.awxb-view .my-sm-3,.awxb-component.awxb-component .mt-sm-3,.awxb-component.awxb-component .my-sm-3{margin-top:1rem !important}.awxb-view.awxb-view .mr-sm-3,.awxb-view.awxb-view .mx-sm-3,.awxb-component.awxb-component .mr-sm-3,.awxb-component.awxb-component .mx-sm-3{margin-right:1rem !important}.awxb-view.awxb-view .mb-sm-3,.awxb-view.awxb-view .my-sm-3,.awxb-component.awxb-component .mb-sm-3,.awxb-component.awxb-component .my-sm-3{margin-bottom:1rem !important}.awxb-view.awxb-view .ml-sm-3,.awxb-view.awxb-view .mx-sm-3,.awxb-component.awxb-component .ml-sm-3,.awxb-component.awxb-component .mx-sm-3{margin-left:1rem !important}.awxb-view.awxb-view .m-sm-4,.awxb-component.awxb-component .m-sm-4{margin:1.5rem !important}.awxb-view.awxb-view .mt-sm-4,.awxb-view.awxb-view .my-sm-4,.awxb-component.awxb-component .mt-sm-4,.awxb-component.awxb-component .my-sm-4{margin-top:1.5rem !important}.awxb-view.awxb-view .mr-sm-4,.awxb-view.awxb-view .mx-sm-4,.awxb-component.awxb-component .mr-sm-4,.awxb-component.awxb-component .mx-sm-4{margin-right:1.5rem !important}.awxb-view.awxb-view .mb-sm-4,.awxb-view.awxb-view .my-sm-4,.awxb-component.awxb-component .mb-sm-4,.awxb-component.awxb-component .my-sm-4{margin-bottom:1.5rem !important}.awxb-view.awxb-view .ml-sm-4,.awxb-view.awxb-view .mx-sm-4,.awxb-component.awxb-component .ml-sm-4,.awxb-component.awxb-component .mx-sm-4{margin-left:1.5rem !important}.awxb-view.awxb-view .m-sm-5,.awxb-component.awxb-component .m-sm-5{margin:3rem !important}.awxb-view.awxb-view .mt-sm-5,.awxb-view.awxb-view .my-sm-5,.awxb-component.awxb-component .mt-sm-5,.awxb-component.awxb-component .my-sm-5{margin-top:3rem !important}.awxb-view.awxb-view .mr-sm-5,.awxb-view.awxb-view .mx-sm-5,.awxb-component.awxb-component .mr-sm-5,.awxb-component.awxb-component .mx-sm-5{margin-right:3rem !important}.awxb-view.awxb-view .mb-sm-5,.awxb-view.awxb-view .my-sm-5,.awxb-component.awxb-component .mb-sm-5,.awxb-component.awxb-component .my-sm-5{margin-bottom:3rem !important}.awxb-view.awxb-view .ml-sm-5,.awxb-view.awxb-view .mx-sm-5,.awxb-component.awxb-component .ml-sm-5,.awxb-component.awxb-component .mx-sm-5{margin-left:3rem !important}.awxb-view.awxb-view .p-sm-0,.awxb-component.awxb-component .p-sm-0{padding:0 !important}.awxb-view.awxb-view .pt-sm-0,.awxb-view.awxb-view .py-sm-0,.awxb-component.awxb-component .pt-sm-0,.awxb-component.awxb-component .py-sm-0{padding-top:0 !important}.awxb-view.awxb-view .pr-sm-0,.awxb-view.awxb-view .px-sm-0,.awxb-component.awxb-component .pr-sm-0,.awxb-component.awxb-component .px-sm-0{padding-right:0 !important}.awxb-view.awxb-view .pb-sm-0,.awxb-view.awxb-view .py-sm-0,.awxb-component.awxb-component .pb-sm-0,.awxb-component.awxb-component .py-sm-0{padding-bottom:0 !important}.awxb-view.awxb-view .pl-sm-0,.awxb-view.awxb-view .px-sm-0,.awxb-component.awxb-component .pl-sm-0,.awxb-component.awxb-component .px-sm-0{padding-left:0 !important}.awxb-view.awxb-view .p-sm-1,.awxb-component.awxb-component .p-sm-1{padding:.25rem !important}.awxb-view.awxb-view .pt-sm-1,.awxb-view.awxb-view .py-sm-1,.awxb-component.awxb-component .pt-sm-1,.awxb-component.awxb-component .py-sm-1{padding-top:.25rem !important}.awxb-view.awxb-view .pr-sm-1,.awxb-view.awxb-view .px-sm-1,.awxb-component.awxb-component .pr-sm-1,.awxb-component.awxb-component .px-sm-1{padding-right:.25rem !important}.awxb-view.awxb-view .pb-sm-1,.awxb-view.awxb-view .py-sm-1,.awxb-component.awxb-component .pb-sm-1,.awxb-component.awxb-component .py-sm-1{padding-bottom:.25rem !important}.awxb-view.awxb-view .pl-sm-1,.awxb-view.awxb-view .px-sm-1,.awxb-component.awxb-component .pl-sm-1,.awxb-component.awxb-component .px-sm-1{padding-left:.25rem !important}.awxb-view.awxb-view .p-sm-2,.awxb-component.awxb-component .p-sm-2{padding:.5rem !important}.awxb-view.awxb-view .pt-sm-2,.awxb-view.awxb-view .py-sm-2,.awxb-component.awxb-component .pt-sm-2,.awxb-component.awxb-component .py-sm-2{padding-top:.5rem !important}.awxb-view.awxb-view .pr-sm-2,.awxb-view.awxb-view .px-sm-2,.awxb-component.awxb-component .pr-sm-2,.awxb-component.awxb-component .px-sm-2{padding-right:.5rem !important}.awxb-view.awxb-view .pb-sm-2,.awxb-view.awxb-view .py-sm-2,.awxb-component.awxb-component .pb-sm-2,.awxb-component.awxb-component .py-sm-2{padding-bottom:.5rem !important}.awxb-view.awxb-view .pl-sm-2,.awxb-view.awxb-view .px-sm-2,.awxb-component.awxb-component .pl-sm-2,.awxb-component.awxb-component .px-sm-2{padding-left:.5rem !important}.awxb-view.awxb-view .p-sm-3,.awxb-component.awxb-component .p-sm-3{padding:1rem !important}.awxb-view.awxb-view .pt-sm-3,.awxb-view.awxb-view .py-sm-3,.awxb-component.awxb-component .pt-sm-3,.awxb-component.awxb-component .py-sm-3{padding-top:1rem !important}.awxb-view.awxb-view .pr-sm-3,.awxb-view.awxb-view .px-sm-3,.awxb-component.awxb-component .pr-sm-3,.awxb-component.awxb-component .px-sm-3{padding-right:1rem !important}.awxb-view.awxb-view .pb-sm-3,.awxb-view.awxb-view .py-sm-3,.awxb-component.awxb-component .pb-sm-3,.awxb-component.awxb-component .py-sm-3{padding-bottom:1rem !important}.awxb-view.awxb-view .pl-sm-3,.awxb-view.awxb-view .px-sm-3,.awxb-component.awxb-component .pl-sm-3,.awxb-component.awxb-component .px-sm-3{padding-left:1rem !important}.awxb-view.awxb-view .p-sm-4,.awxb-component.awxb-component .p-sm-4{padding:1.5rem !important}.awxb-view.awxb-view .pt-sm-4,.awxb-view.awxb-view .py-sm-4,.awxb-component.awxb-component .pt-sm-4,.awxb-component.awxb-component .py-sm-4{padding-top:1.5rem !important}.awxb-view.awxb-view .pr-sm-4,.awxb-view.awxb-view .px-sm-4,.awxb-component.awxb-component .pr-sm-4,.awxb-component.awxb-component .px-sm-4{padding-right:1.5rem !important}.awxb-view.awxb-view .pb-sm-4,.awxb-view.awxb-view .py-sm-4,.awxb-component.awxb-component .pb-sm-4,.awxb-component.awxb-component .py-sm-4{padding-bottom:1.5rem !important}.awxb-view.awxb-view .pl-sm-4,.awxb-view.awxb-view .px-sm-4,.awxb-component.awxb-component .pl-sm-4,.awxb-component.awxb-component .px-sm-4{padding-left:1.5rem !important}.awxb-view.awxb-view .p-sm-5,.awxb-component.awxb-component .p-sm-5{padding:3rem !important}.awxb-view.awxb-view .pt-sm-5,.awxb-view.awxb-view .py-sm-5,.awxb-component.awxb-component .pt-sm-5,.awxb-component.awxb-component .py-sm-5{padding-top:3rem !important}.awxb-view.awxb-view .pr-sm-5,.awxb-view.awxb-view .px-sm-5,.awxb-component.awxb-component .pr-sm-5,.awxb-component.awxb-component .px-sm-5{padding-right:3rem !important}.awxb-view.awxb-view .pb-sm-5,.awxb-view.awxb-view .py-sm-5,.awxb-component.awxb-component .pb-sm-5,.awxb-component.awxb-component .py-sm-5{padding-bottom:3rem !important}.awxb-view.awxb-view .pl-sm-5,.awxb-view.awxb-view .px-sm-5,.awxb-component.awxb-component .pl-sm-5,.awxb-component.awxb-component .px-sm-5{padding-left:3rem !important}.awxb-view.awxb-view .m-sm-auto,.awxb-component.awxb-component .m-sm-auto{margin:auto !important}.awxb-view.awxb-view .mt-sm-auto,.awxb-view.awxb-view .my-sm-auto,.awxb-component.awxb-component .mt-sm-auto,.awxb-component.awxb-component .my-sm-auto{margin-top:auto !important}.awxb-view.awxb-view .mr-sm-auto,.awxb-view.awxb-view .mx-sm-auto,.awxb-component.awxb-component .mr-sm-auto,.awxb-component.awxb-component .mx-sm-auto{margin-right:auto !important}.awxb-view.awxb-view .mb-sm-auto,.awxb-view.awxb-view .my-sm-auto,.awxb-component.awxb-component .mb-sm-auto,.awxb-component.awxb-component .my-sm-auto{margin-bottom:auto !important}.awxb-view.awxb-view .ml-sm-auto,.awxb-view.awxb-view .mx-sm-auto,.awxb-component.awxb-component .ml-sm-auto,.awxb-component.awxb-component .mx-sm-auto{margin-left:auto !important}}@media(min-width: 768px){.awxb-view.awxb-view .m-md-0,.awxb-component.awxb-component .m-md-0{margin:0 !important}.awxb-view.awxb-view .mt-md-0,.awxb-view.awxb-view .my-md-0,.awxb-component.awxb-component .mt-md-0,.awxb-component.awxb-component .my-md-0{margin-top:0 !important}.awxb-view.awxb-view .mr-md-0,.awxb-view.awxb-view .mx-md-0,.awxb-component.awxb-component .mr-md-0,.awxb-component.awxb-component .mx-md-0{margin-right:0 !important}.awxb-view.awxb-view .mb-md-0,.awxb-view.awxb-view .my-md-0,.awxb-component.awxb-component .mb-md-0,.awxb-component.awxb-component .my-md-0{margin-bottom:0 !important}.awxb-view.awxb-view .ml-md-0,.awxb-view.awxb-view .mx-md-0,.awxb-component.awxb-component .ml-md-0,.awxb-component.awxb-component .mx-md-0{margin-left:0 !important}.awxb-view.awxb-view .m-md-1,.awxb-component.awxb-component .m-md-1{margin:.25rem !important}.awxb-view.awxb-view .mt-md-1,.awxb-view.awxb-view .my-md-1,.awxb-component.awxb-component .mt-md-1,.awxb-component.awxb-component .my-md-1{margin-top:.25rem !important}.awxb-view.awxb-view .mr-md-1,.awxb-view.awxb-view .mx-md-1,.awxb-component.awxb-component .mr-md-1,.awxb-component.awxb-component .mx-md-1{margin-right:.25rem !important}.awxb-view.awxb-view .mb-md-1,.awxb-view.awxb-view .my-md-1,.awxb-component.awxb-component .mb-md-1,.awxb-component.awxb-component .my-md-1{margin-bottom:.25rem !important}.awxb-view.awxb-view .ml-md-1,.awxb-view.awxb-view .mx-md-1,.awxb-component.awxb-component .ml-md-1,.awxb-component.awxb-component .mx-md-1{margin-left:.25rem !important}.awxb-view.awxb-view .m-md-2,.awxb-component.awxb-component .m-md-2{margin:.5rem !important}.awxb-view.awxb-view .mt-md-2,.awxb-view.awxb-view .my-md-2,.awxb-component.awxb-component .mt-md-2,.awxb-component.awxb-component .my-md-2{margin-top:.5rem !important}.awxb-view.awxb-view .mr-md-2,.awxb-view.awxb-view .mx-md-2,.awxb-component.awxb-component .mr-md-2,.awxb-component.awxb-component .mx-md-2{margin-right:.5rem !important}.awxb-view.awxb-view .mb-md-2,.awxb-view.awxb-view .my-md-2,.awxb-component.awxb-component .mb-md-2,.awxb-component.awxb-component .my-md-2{margin-bottom:.5rem !important}.awxb-view.awxb-view .ml-md-2,.awxb-view.awxb-view .mx-md-2,.awxb-component.awxb-component .ml-md-2,.awxb-component.awxb-component .mx-md-2{margin-left:.5rem !important}.awxb-view.awxb-view .m-md-3,.awxb-component.awxb-component .m-md-3{margin:1rem !important}.awxb-view.awxb-view .mt-md-3,.awxb-view.awxb-view .my-md-3,.awxb-component.awxb-component .mt-md-3,.awxb-component.awxb-component .my-md-3{margin-top:1rem !important}.awxb-view.awxb-view .mr-md-3,.awxb-view.awxb-view .mx-md-3,.awxb-component.awxb-component .mr-md-3,.awxb-component.awxb-component .mx-md-3{margin-right:1rem !important}.awxb-view.awxb-view .mb-md-3,.awxb-view.awxb-view .my-md-3,.awxb-component.awxb-component .mb-md-3,.awxb-component.awxb-component .my-md-3{margin-bottom:1rem !important}.awxb-view.awxb-view .ml-md-3,.awxb-view.awxb-view .mx-md-3,.awxb-component.awxb-component .ml-md-3,.awxb-component.awxb-component .mx-md-3{margin-left:1rem !important}.awxb-view.awxb-view .m-md-4,.awxb-component.awxb-component .m-md-4{margin:1.5rem !important}.awxb-view.awxb-view .mt-md-4,.awxb-view.awxb-view .my-md-4,.awxb-component.awxb-component .mt-md-4,.awxb-component.awxb-component .my-md-4{margin-top:1.5rem !important}.awxb-view.awxb-view .mr-md-4,.awxb-view.awxb-view .mx-md-4,.awxb-component.awxb-component .mr-md-4,.awxb-component.awxb-component .mx-md-4{margin-right:1.5rem !important}.awxb-view.awxb-view .mb-md-4,.awxb-view.awxb-view .my-md-4,.awxb-component.awxb-component .mb-md-4,.awxb-component.awxb-component .my-md-4{margin-bottom:1.5rem !important}.awxb-view.awxb-view .ml-md-4,.awxb-view.awxb-view .mx-md-4,.awxb-component.awxb-component .ml-md-4,.awxb-component.awxb-component .mx-md-4{margin-left:1.5rem !important}.awxb-view.awxb-view .m-md-5,.awxb-component.awxb-component .m-md-5{margin:3rem !important}.awxb-view.awxb-view .mt-md-5,.awxb-view.awxb-view .my-md-5,.awxb-component.awxb-component .mt-md-5,.awxb-component.awxb-component .my-md-5{margin-top:3rem !important}.awxb-view.awxb-view .mr-md-5,.awxb-view.awxb-view .mx-md-5,.awxb-component.awxb-component .mr-md-5,.awxb-component.awxb-component .mx-md-5{margin-right:3rem !important}.awxb-view.awxb-view .mb-md-5,.awxb-view.awxb-view .my-md-5,.awxb-component.awxb-component .mb-md-5,.awxb-component.awxb-component .my-md-5{margin-bottom:3rem !important}.awxb-view.awxb-view .ml-md-5,.awxb-view.awxb-view .mx-md-5,.awxb-component.awxb-component .ml-md-5,.awxb-component.awxb-component .mx-md-5{margin-left:3rem !important}.awxb-view.awxb-view .p-md-0,.awxb-component.awxb-component .p-md-0{padding:0 !important}.awxb-view.awxb-view .pt-md-0,.awxb-view.awxb-view .py-md-0,.awxb-component.awxb-component .pt-md-0,.awxb-component.awxb-component .py-md-0{padding-top:0 !important}.awxb-view.awxb-view .pr-md-0,.awxb-view.awxb-view .px-md-0,.awxb-component.awxb-component .pr-md-0,.awxb-component.awxb-component .px-md-0{padding-right:0 !important}.awxb-view.awxb-view .pb-md-0,.awxb-view.awxb-view .py-md-0,.awxb-component.awxb-component .pb-md-0,.awxb-component.awxb-component .py-md-0{padding-bottom:0 !important}.awxb-view.awxb-view .pl-md-0,.awxb-view.awxb-view .px-md-0,.awxb-component.awxb-component .pl-md-0,.awxb-component.awxb-component .px-md-0{padding-left:0 !important}.awxb-view.awxb-view .p-md-1,.awxb-component.awxb-component .p-md-1{padding:.25rem !important}.awxb-view.awxb-view .pt-md-1,.awxb-view.awxb-view .py-md-1,.awxb-component.awxb-component .pt-md-1,.awxb-component.awxb-component .py-md-1{padding-top:.25rem !important}.awxb-view.awxb-view .pr-md-1,.awxb-view.awxb-view .px-md-1,.awxb-component.awxb-component .pr-md-1,.awxb-component.awxb-component .px-md-1{padding-right:.25rem !important}.awxb-view.awxb-view .pb-md-1,.awxb-view.awxb-view .py-md-1,.awxb-component.awxb-component .pb-md-1,.awxb-component.awxb-component .py-md-1{padding-bottom:.25rem !important}.awxb-view.awxb-view .pl-md-1,.awxb-view.awxb-view .px-md-1,.awxb-component.awxb-component .pl-md-1,.awxb-component.awxb-component .px-md-1{padding-left:.25rem !important}.awxb-view.awxb-view .p-md-2,.awxb-component.awxb-component .p-md-2{padding:.5rem !important}.awxb-view.awxb-view .pt-md-2,.awxb-view.awxb-view .py-md-2,.awxb-component.awxb-component .pt-md-2,.awxb-component.awxb-component .py-md-2{padding-top:.5rem !important}.awxb-view.awxb-view .pr-md-2,.awxb-view.awxb-view .px-md-2,.awxb-component.awxb-component .pr-md-2,.awxb-component.awxb-component .px-md-2{padding-right:.5rem !important}.awxb-view.awxb-view .pb-md-2,.awxb-view.awxb-view .py-md-2,.awxb-component.awxb-component .pb-md-2,.awxb-component.awxb-component .py-md-2{padding-bottom:.5rem !important}.awxb-view.awxb-view .pl-md-2,.awxb-view.awxb-view .px-md-2,.awxb-component.awxb-component .pl-md-2,.awxb-component.awxb-component .px-md-2{padding-left:.5rem !important}.awxb-view.awxb-view .p-md-3,.awxb-component.awxb-component .p-md-3{padding:1rem !important}.awxb-view.awxb-view .pt-md-3,.awxb-view.awxb-view .py-md-3,.awxb-component.awxb-component .pt-md-3,.awxb-component.awxb-component .py-md-3{padding-top:1rem !important}.awxb-view.awxb-view .pr-md-3,.awxb-view.awxb-view .px-md-3,.awxb-component.awxb-component .pr-md-3,.awxb-component.awxb-component .px-md-3{padding-right:1rem !important}.awxb-view.awxb-view .pb-md-3,.awxb-view.awxb-view .py-md-3,.awxb-component.awxb-component .pb-md-3,.awxb-component.awxb-component .py-md-3{padding-bottom:1rem !important}.awxb-view.awxb-view .pl-md-3,.awxb-view.awxb-view .px-md-3,.awxb-component.awxb-component .pl-md-3,.awxb-component.awxb-component .px-md-3{padding-left:1rem !important}.awxb-view.awxb-view .p-md-4,.awxb-component.awxb-component .p-md-4{padding:1.5rem !important}.awxb-view.awxb-view .pt-md-4,.awxb-view.awxb-view .py-md-4,.awxb-component.awxb-component .pt-md-4,.awxb-component.awxb-component .py-md-4{padding-top:1.5rem !important}.awxb-view.awxb-view .pr-md-4,.awxb-view.awxb-view .px-md-4,.awxb-component.awxb-component .pr-md-4,.awxb-component.awxb-component .px-md-4{padding-right:1.5rem !important}.awxb-view.awxb-view .pb-md-4,.awxb-view.awxb-view .py-md-4,.awxb-component.awxb-component .pb-md-4,.awxb-component.awxb-component .py-md-4{padding-bottom:1.5rem !important}.awxb-view.awxb-view .pl-md-4,.awxb-view.awxb-view .px-md-4,.awxb-component.awxb-component .pl-md-4,.awxb-component.awxb-component .px-md-4{padding-left:1.5rem !important}.awxb-view.awxb-view .p-md-5,.awxb-component.awxb-component .p-md-5{padding:3rem !important}.awxb-view.awxb-view .pt-md-5,.awxb-view.awxb-view .py-md-5,.awxb-component.awxb-component .pt-md-5,.awxb-component.awxb-component .py-md-5{padding-top:3rem !important}.awxb-view.awxb-view .pr-md-5,.awxb-view.awxb-view .px-md-5,.awxb-component.awxb-component .pr-md-5,.awxb-component.awxb-component .px-md-5{padding-right:3rem !important}.awxb-view.awxb-view .pb-md-5,.awxb-view.awxb-view .py-md-5,.awxb-component.awxb-component .pb-md-5,.awxb-component.awxb-component .py-md-5{padding-bottom:3rem !important}.awxb-view.awxb-view .pl-md-5,.awxb-view.awxb-view .px-md-5,.awxb-component.awxb-component .pl-md-5,.awxb-component.awxb-component .px-md-5{padding-left:3rem !important}.awxb-view.awxb-view .m-md-auto,.awxb-component.awxb-component .m-md-auto{margin:auto !important}.awxb-view.awxb-view .mt-md-auto,.awxb-view.awxb-view .my-md-auto,.awxb-component.awxb-component .mt-md-auto,.awxb-component.awxb-component .my-md-auto{margin-top:auto !important}.awxb-view.awxb-view .mr-md-auto,.awxb-view.awxb-view .mx-md-auto,.awxb-component.awxb-component .mr-md-auto,.awxb-component.awxb-component .mx-md-auto{margin-right:auto !important}.awxb-view.awxb-view .mb-md-auto,.awxb-view.awxb-view .my-md-auto,.awxb-component.awxb-component .mb-md-auto,.awxb-component.awxb-component .my-md-auto{margin-bottom:auto !important}.awxb-view.awxb-view .ml-md-auto,.awxb-view.awxb-view .mx-md-auto,.awxb-component.awxb-component .ml-md-auto,.awxb-component.awxb-component .mx-md-auto{margin-left:auto !important}}@media(min-width: 992px){.awxb-view.awxb-view .m-lg-0,.awxb-component.awxb-component .m-lg-0{margin:0 !important}.awxb-view.awxb-view .mt-lg-0,.awxb-view.awxb-view .my-lg-0,.awxb-component.awxb-component .mt-lg-0,.awxb-component.awxb-component .my-lg-0{margin-top:0 !important}.awxb-view.awxb-view .mr-lg-0,.awxb-view.awxb-view .mx-lg-0,.awxb-component.awxb-component .mr-lg-0,.awxb-component.awxb-component .mx-lg-0{margin-right:0 !important}.awxb-view.awxb-view .mb-lg-0,.awxb-view.awxb-view .my-lg-0,.awxb-component.awxb-component .mb-lg-0,.awxb-component.awxb-component .my-lg-0{margin-bottom:0 !important}.awxb-view.awxb-view .ml-lg-0,.awxb-view.awxb-view .mx-lg-0,.awxb-component.awxb-component .ml-lg-0,.awxb-component.awxb-component .mx-lg-0{margin-left:0 !important}.awxb-view.awxb-view .m-lg-1,.awxb-component.awxb-component .m-lg-1{margin:.25rem !important}.awxb-view.awxb-view .mt-lg-1,.awxb-view.awxb-view .my-lg-1,.awxb-component.awxb-component .mt-lg-1,.awxb-component.awxb-component .my-lg-1{margin-top:.25rem !important}.awxb-view.awxb-view .mr-lg-1,.awxb-view.awxb-view .mx-lg-1,.awxb-component.awxb-component .mr-lg-1,.awxb-component.awxb-component .mx-lg-1{margin-right:.25rem !important}.awxb-view.awxb-view .mb-lg-1,.awxb-view.awxb-view .my-lg-1,.awxb-component.awxb-component .mb-lg-1,.awxb-component.awxb-component .my-lg-1{margin-bottom:.25rem !important}.awxb-view.awxb-view .ml-lg-1,.awxb-view.awxb-view .mx-lg-1,.awxb-component.awxb-component .ml-lg-1,.awxb-component.awxb-component .mx-lg-1{margin-left:.25rem !important}.awxb-view.awxb-view .m-lg-2,.awxb-component.awxb-component .m-lg-2{margin:.5rem !important}.awxb-view.awxb-view .mt-lg-2,.awxb-view.awxb-view .my-lg-2,.awxb-component.awxb-component .mt-lg-2,.awxb-component.awxb-component .my-lg-2{margin-top:.5rem !important}.awxb-view.awxb-view .mr-lg-2,.awxb-view.awxb-view .mx-lg-2,.awxb-component.awxb-component .mr-lg-2,.awxb-component.awxb-component .mx-lg-2{margin-right:.5rem !important}.awxb-view.awxb-view .mb-lg-2,.awxb-view.awxb-view .my-lg-2,.awxb-component.awxb-component .mb-lg-2,.awxb-component.awxb-component .my-lg-2{margin-bottom:.5rem !important}.awxb-view.awxb-view .ml-lg-2,.awxb-view.awxb-view .mx-lg-2,.awxb-component.awxb-component .ml-lg-2,.awxb-component.awxb-component .mx-lg-2{margin-left:.5rem !important}.awxb-view.awxb-view .m-lg-3,.awxb-component.awxb-component .m-lg-3{margin:1rem !important}.awxb-view.awxb-view .mt-lg-3,.awxb-view.awxb-view .my-lg-3,.awxb-component.awxb-component .mt-lg-3,.awxb-component.awxb-component .my-lg-3{margin-top:1rem !important}.awxb-view.awxb-view .mr-lg-3,.awxb-view.awxb-view .mx-lg-3,.awxb-component.awxb-component .mr-lg-3,.awxb-component.awxb-component .mx-lg-3{margin-right:1rem !important}.awxb-view.awxb-view .mb-lg-3,.awxb-view.awxb-view .my-lg-3,.awxb-component.awxb-component .mb-lg-3,.awxb-component.awxb-component .my-lg-3{margin-bottom:1rem !important}.awxb-view.awxb-view .ml-lg-3,.awxb-view.awxb-view .mx-lg-3,.awxb-component.awxb-component .ml-lg-3,.awxb-component.awxb-component .mx-lg-3{margin-left:1rem !important}.awxb-view.awxb-view .m-lg-4,.awxb-component.awxb-component .m-lg-4{margin:1.5rem !important}.awxb-view.awxb-view .mt-lg-4,.awxb-view.awxb-view .my-lg-4,.awxb-component.awxb-component .mt-lg-4,.awxb-component.awxb-component .my-lg-4{margin-top:1.5rem !important}.awxb-view.awxb-view .mr-lg-4,.awxb-view.awxb-view .mx-lg-4,.awxb-component.awxb-component .mr-lg-4,.awxb-component.awxb-component .mx-lg-4{margin-right:1.5rem !important}.awxb-view.awxb-view .mb-lg-4,.awxb-view.awxb-view .my-lg-4,.awxb-component.awxb-component .mb-lg-4,.awxb-component.awxb-component .my-lg-4{margin-bottom:1.5rem !important}.awxb-view.awxb-view .ml-lg-4,.awxb-view.awxb-view .mx-lg-4,.awxb-component.awxb-component .ml-lg-4,.awxb-component.awxb-component .mx-lg-4{margin-left:1.5rem !important}.awxb-view.awxb-view .m-lg-5,.awxb-component.awxb-component .m-lg-5{margin:3rem !important}.awxb-view.awxb-view .mt-lg-5,.awxb-view.awxb-view .my-lg-5,.awxb-component.awxb-component .mt-lg-5,.awxb-component.awxb-component .my-lg-5{margin-top:3rem !important}.awxb-view.awxb-view .mr-lg-5,.awxb-view.awxb-view .mx-lg-5,.awxb-component.awxb-component .mr-lg-5,.awxb-component.awxb-component .mx-lg-5{margin-right:3rem !important}.awxb-view.awxb-view .mb-lg-5,.awxb-view.awxb-view .my-lg-5,.awxb-component.awxb-component .mb-lg-5,.awxb-component.awxb-component .my-lg-5{margin-bottom:3rem !important}.awxb-view.awxb-view .ml-lg-5,.awxb-view.awxb-view .mx-lg-5,.awxb-component.awxb-component .ml-lg-5,.awxb-component.awxb-component .mx-lg-5{margin-left:3rem !important}.awxb-view.awxb-view .p-lg-0,.awxb-component.awxb-component .p-lg-0{padding:0 !important}.awxb-view.awxb-view .pt-lg-0,.awxb-view.awxb-view .py-lg-0,.awxb-component.awxb-component .pt-lg-0,.awxb-component.awxb-component .py-lg-0{padding-top:0 !important}.awxb-view.awxb-view .pr-lg-0,.awxb-view.awxb-view .px-lg-0,.awxb-component.awxb-component .pr-lg-0,.awxb-component.awxb-component .px-lg-0{padding-right:0 !important}.awxb-view.awxb-view .pb-lg-0,.awxb-view.awxb-view .py-lg-0,.awxb-component.awxb-component .pb-lg-0,.awxb-component.awxb-component .py-lg-0{padding-bottom:0 !important}.awxb-view.awxb-view .pl-lg-0,.awxb-view.awxb-view .px-lg-0,.awxb-component.awxb-component .pl-lg-0,.awxb-component.awxb-component .px-lg-0{padding-left:0 !important}.awxb-view.awxb-view .p-lg-1,.awxb-component.awxb-component .p-lg-1{padding:.25rem !important}.awxb-view.awxb-view .pt-lg-1,.awxb-view.awxb-view .py-lg-1,.awxb-component.awxb-component .pt-lg-1,.awxb-component.awxb-component .py-lg-1{padding-top:.25rem !important}.awxb-view.awxb-view .pr-lg-1,.awxb-view.awxb-view .px-lg-1,.awxb-component.awxb-component .pr-lg-1,.awxb-component.awxb-component .px-lg-1{padding-right:.25rem !important}.awxb-view.awxb-view .pb-lg-1,.awxb-view.awxb-view .py-lg-1,.awxb-component.awxb-component .pb-lg-1,.awxb-component.awxb-component .py-lg-1{padding-bottom:.25rem !important}.awxb-view.awxb-view .pl-lg-1,.awxb-view.awxb-view .px-lg-1,.awxb-component.awxb-component .pl-lg-1,.awxb-component.awxb-component .px-lg-1{padding-left:.25rem !important}.awxb-view.awxb-view .p-lg-2,.awxb-component.awxb-component .p-lg-2{padding:.5rem !important}.awxb-view.awxb-view .pt-lg-2,.awxb-view.awxb-view .py-lg-2,.awxb-component.awxb-component .pt-lg-2,.awxb-component.awxb-component .py-lg-2{padding-top:.5rem !important}.awxb-view.awxb-view .pr-lg-2,.awxb-view.awxb-view .px-lg-2,.awxb-component.awxb-component .pr-lg-2,.awxb-component.awxb-component .px-lg-2{padding-right:.5rem !important}.awxb-view.awxb-view .pb-lg-2,.awxb-view.awxb-view .py-lg-2,.awxb-component.awxb-component .pb-lg-2,.awxb-component.awxb-component .py-lg-2{padding-bottom:.5rem !important}.awxb-view.awxb-view .pl-lg-2,.awxb-view.awxb-view .px-lg-2,.awxb-component.awxb-component .pl-lg-2,.awxb-component.awxb-component .px-lg-2{padding-left:.5rem !important}.awxb-view.awxb-view .p-lg-3,.awxb-component.awxb-component .p-lg-3{padding:1rem !important}.awxb-view.awxb-view .pt-lg-3,.awxb-view.awxb-view .py-lg-3,.awxb-component.awxb-component .pt-lg-3,.awxb-component.awxb-component .py-lg-3{padding-top:1rem !important}.awxb-view.awxb-view .pr-lg-3,.awxb-view.awxb-view .px-lg-3,.awxb-component.awxb-component .pr-lg-3,.awxb-component.awxb-component .px-lg-3{padding-right:1rem !important}.awxb-view.awxb-view .pb-lg-3,.awxb-view.awxb-view .py-lg-3,.awxb-component.awxb-component .pb-lg-3,.awxb-component.awxb-component .py-lg-3{padding-bottom:1rem !important}.awxb-view.awxb-view .pl-lg-3,.awxb-view.awxb-view .px-lg-3,.awxb-component.awxb-component .pl-lg-3,.awxb-component.awxb-component .px-lg-3{padding-left:1rem !important}.awxb-view.awxb-view .p-lg-4,.awxb-component.awxb-component .p-lg-4{padding:1.5rem !important}.awxb-view.awxb-view .pt-lg-4,.awxb-view.awxb-view .py-lg-4,.awxb-component.awxb-component .pt-lg-4,.awxb-component.awxb-component .py-lg-4{padding-top:1.5rem !important}.awxb-view.awxb-view .pr-lg-4,.awxb-view.awxb-view .px-lg-4,.awxb-component.awxb-component .pr-lg-4,.awxb-component.awxb-component .px-lg-4{padding-right:1.5rem !important}.awxb-view.awxb-view .pb-lg-4,.awxb-view.awxb-view .py-lg-4,.awxb-component.awxb-component .pb-lg-4,.awxb-component.awxb-component .py-lg-4{padding-bottom:1.5rem !important}.awxb-view.awxb-view .pl-lg-4,.awxb-view.awxb-view .px-lg-4,.awxb-component.awxb-component .pl-lg-4,.awxb-component.awxb-component .px-lg-4{padding-left:1.5rem !important}.awxb-view.awxb-view .p-lg-5,.awxb-component.awxb-component .p-lg-5{padding:3rem !important}.awxb-view.awxb-view .pt-lg-5,.awxb-view.awxb-view .py-lg-5,.awxb-component.awxb-component .pt-lg-5,.awxb-component.awxb-component .py-lg-5{padding-top:3rem !important}.awxb-view.awxb-view .pr-lg-5,.awxb-view.awxb-view .px-lg-5,.awxb-component.awxb-component .pr-lg-5,.awxb-component.awxb-component .px-lg-5{padding-right:3rem !important}.awxb-view.awxb-view .pb-lg-5,.awxb-view.awxb-view .py-lg-5,.awxb-component.awxb-component .pb-lg-5,.awxb-component.awxb-component .py-lg-5{padding-bottom:3rem !important}.awxb-view.awxb-view .pl-lg-5,.awxb-view.awxb-view .px-lg-5,.awxb-component.awxb-component .pl-lg-5,.awxb-component.awxb-component .px-lg-5{padding-left:3rem !important}.awxb-view.awxb-view .m-lg-auto,.awxb-component.awxb-component .m-lg-auto{margin:auto !important}.awxb-view.awxb-view .mt-lg-auto,.awxb-view.awxb-view .my-lg-auto,.awxb-component.awxb-component .mt-lg-auto,.awxb-component.awxb-component .my-lg-auto{margin-top:auto !important}.awxb-view.awxb-view .mr-lg-auto,.awxb-view.awxb-view .mx-lg-auto,.awxb-component.awxb-component .mr-lg-auto,.awxb-component.awxb-component .mx-lg-auto{margin-right:auto !important}.awxb-view.awxb-view .mb-lg-auto,.awxb-view.awxb-view .my-lg-auto,.awxb-component.awxb-component .mb-lg-auto,.awxb-component.awxb-component .my-lg-auto{margin-bottom:auto !important}.awxb-view.awxb-view .ml-lg-auto,.awxb-view.awxb-view .mx-lg-auto,.awxb-component.awxb-component .ml-lg-auto,.awxb-component.awxb-component .mx-lg-auto{margin-left:auto !important}}@media(min-width: 1200px){.awxb-view.awxb-view .m-xl-0,.awxb-component.awxb-component .m-xl-0{margin:0 !important}.awxb-view.awxb-view .mt-xl-0,.awxb-view.awxb-view .my-xl-0,.awxb-component.awxb-component .mt-xl-0,.awxb-component.awxb-component .my-xl-0{margin-top:0 !important}.awxb-view.awxb-view .mr-xl-0,.awxb-view.awxb-view .mx-xl-0,.awxb-component.awxb-component .mr-xl-0,.awxb-component.awxb-component .mx-xl-0{margin-right:0 !important}.awxb-view.awxb-view .mb-xl-0,.awxb-view.awxb-view .my-xl-0,.awxb-component.awxb-component .mb-xl-0,.awxb-component.awxb-component .my-xl-0{margin-bottom:0 !important}.awxb-view.awxb-view .ml-xl-0,.awxb-view.awxb-view .mx-xl-0,.awxb-component.awxb-component .ml-xl-0,.awxb-component.awxb-component .mx-xl-0{margin-left:0 !important}.awxb-view.awxb-view .m-xl-1,.awxb-component.awxb-component .m-xl-1{margin:.25rem !important}.awxb-view.awxb-view .mt-xl-1,.awxb-view.awxb-view .my-xl-1,.awxb-component.awxb-component .mt-xl-1,.awxb-component.awxb-component .my-xl-1{margin-top:.25rem !important}.awxb-view.awxb-view .mr-xl-1,.awxb-view.awxb-view .mx-xl-1,.awxb-component.awxb-component .mr-xl-1,.awxb-component.awxb-component .mx-xl-1{margin-right:.25rem !important}.awxb-view.awxb-view .mb-xl-1,.awxb-view.awxb-view .my-xl-1,.awxb-component.awxb-component .mb-xl-1,.awxb-component.awxb-component .my-xl-1{margin-bottom:.25rem !important}.awxb-view.awxb-view .ml-xl-1,.awxb-view.awxb-view .mx-xl-1,.awxb-component.awxb-component .ml-xl-1,.awxb-component.awxb-component .mx-xl-1{margin-left:.25rem !important}.awxb-view.awxb-view .m-xl-2,.awxb-component.awxb-component .m-xl-2{margin:.5rem !important}.awxb-view.awxb-view .mt-xl-2,.awxb-view.awxb-view .my-xl-2,.awxb-component.awxb-component .mt-xl-2,.awxb-component.awxb-component .my-xl-2{margin-top:.5rem !important}.awxb-view.awxb-view .mr-xl-2,.awxb-view.awxb-view .mx-xl-2,.awxb-component.awxb-component .mr-xl-2,.awxb-component.awxb-component .mx-xl-2{margin-right:.5rem !important}.awxb-view.awxb-view .mb-xl-2,.awxb-view.awxb-view .my-xl-2,.awxb-component.awxb-component .mb-xl-2,.awxb-component.awxb-component .my-xl-2{margin-bottom:.5rem !important}.awxb-view.awxb-view .ml-xl-2,.awxb-view.awxb-view .mx-xl-2,.awxb-component.awxb-component .ml-xl-2,.awxb-component.awxb-component .mx-xl-2{margin-left:.5rem !important}.awxb-view.awxb-view .m-xl-3,.awxb-component.awxb-component .m-xl-3{margin:1rem !important}.awxb-view.awxb-view .mt-xl-3,.awxb-view.awxb-view .my-xl-3,.awxb-component.awxb-component .mt-xl-3,.awxb-component.awxb-component .my-xl-3{margin-top:1rem !important}.awxb-view.awxb-view .mr-xl-3,.awxb-view.awxb-view .mx-xl-3,.awxb-component.awxb-component .mr-xl-3,.awxb-component.awxb-component .mx-xl-3{margin-right:1rem !important}.awxb-view.awxb-view .mb-xl-3,.awxb-view.awxb-view .my-xl-3,.awxb-component.awxb-component .mb-xl-3,.awxb-component.awxb-component .my-xl-3{margin-bottom:1rem !important}.awxb-view.awxb-view .ml-xl-3,.awxb-view.awxb-view .mx-xl-3,.awxb-component.awxb-component .ml-xl-3,.awxb-component.awxb-component .mx-xl-3{margin-left:1rem !important}.awxb-view.awxb-view .m-xl-4,.awxb-component.awxb-component .m-xl-4{margin:1.5rem !important}.awxb-view.awxb-view .mt-xl-4,.awxb-view.awxb-view .my-xl-4,.awxb-component.awxb-component .mt-xl-4,.awxb-component.awxb-component .my-xl-4{margin-top:1.5rem !important}.awxb-view.awxb-view .mr-xl-4,.awxb-view.awxb-view .mx-xl-4,.awxb-component.awxb-component .mr-xl-4,.awxb-component.awxb-component .mx-xl-4{margin-right:1.5rem !important}.awxb-view.awxb-view .mb-xl-4,.awxb-view.awxb-view .my-xl-4,.awxb-component.awxb-component .mb-xl-4,.awxb-component.awxb-component .my-xl-4{margin-bottom:1.5rem !important}.awxb-view.awxb-view .ml-xl-4,.awxb-view.awxb-view .mx-xl-4,.awxb-component.awxb-component .ml-xl-4,.awxb-component.awxb-component .mx-xl-4{margin-left:1.5rem !important}.awxb-view.awxb-view .m-xl-5,.awxb-component.awxb-component .m-xl-5{margin:3rem !important}.awxb-view.awxb-view .mt-xl-5,.awxb-view.awxb-view .my-xl-5,.awxb-component.awxb-component .mt-xl-5,.awxb-component.awxb-component .my-xl-5{margin-top:3rem !important}.awxb-view.awxb-view .mr-xl-5,.awxb-view.awxb-view .mx-xl-5,.awxb-component.awxb-component .mr-xl-5,.awxb-component.awxb-component .mx-xl-5{margin-right:3rem !important}.awxb-view.awxb-view .mb-xl-5,.awxb-view.awxb-view .my-xl-5,.awxb-component.awxb-component .mb-xl-5,.awxb-component.awxb-component .my-xl-5{margin-bottom:3rem !important}.awxb-view.awxb-view .ml-xl-5,.awxb-view.awxb-view .mx-xl-5,.awxb-component.awxb-component .ml-xl-5,.awxb-component.awxb-component .mx-xl-5{margin-left:3rem !important}.awxb-view.awxb-view .p-xl-0,.awxb-component.awxb-component .p-xl-0{padding:0 !important}.awxb-view.awxb-view .pt-xl-0,.awxb-view.awxb-view .py-xl-0,.awxb-component.awxb-component .pt-xl-0,.awxb-component.awxb-component .py-xl-0{padding-top:0 !important}.awxb-view.awxb-view .pr-xl-0,.awxb-view.awxb-view .px-xl-0,.awxb-component.awxb-component .pr-xl-0,.awxb-component.awxb-component .px-xl-0{padding-right:0 !important}.awxb-view.awxb-view .pb-xl-0,.awxb-view.awxb-view .py-xl-0,.awxb-component.awxb-component .pb-xl-0,.awxb-component.awxb-component .py-xl-0{padding-bottom:0 !important}.awxb-view.awxb-view .pl-xl-0,.awxb-view.awxb-view .px-xl-0,.awxb-component.awxb-component .pl-xl-0,.awxb-component.awxb-component .px-xl-0{padding-left:0 !important}.awxb-view.awxb-view .p-xl-1,.awxb-component.awxb-component .p-xl-1{padding:.25rem !important}.awxb-view.awxb-view .pt-xl-1,.awxb-view.awxb-view .py-xl-1,.awxb-component.awxb-component .pt-xl-1,.awxb-component.awxb-component .py-xl-1{padding-top:.25rem !important}.awxb-view.awxb-view .pr-xl-1,.awxb-view.awxb-view .px-xl-1,.awxb-component.awxb-component .pr-xl-1,.awxb-component.awxb-component .px-xl-1{padding-right:.25rem !important}.awxb-view.awxb-view .pb-xl-1,.awxb-view.awxb-view .py-xl-1,.awxb-component.awxb-component .pb-xl-1,.awxb-component.awxb-component .py-xl-1{padding-bottom:.25rem !important}.awxb-view.awxb-view .pl-xl-1,.awxb-view.awxb-view .px-xl-1,.awxb-component.awxb-component .pl-xl-1,.awxb-component.awxb-component .px-xl-1{padding-left:.25rem !important}.awxb-view.awxb-view .p-xl-2,.awxb-component.awxb-component .p-xl-2{padding:.5rem !important}.awxb-view.awxb-view .pt-xl-2,.awxb-view.awxb-view .py-xl-2,.awxb-component.awxb-component .pt-xl-2,.awxb-component.awxb-component .py-xl-2{padding-top:.5rem !important}.awxb-view.awxb-view .pr-xl-2,.awxb-view.awxb-view .px-xl-2,.awxb-component.awxb-component .pr-xl-2,.awxb-component.awxb-component .px-xl-2{padding-right:.5rem !important}.awxb-view.awxb-view .pb-xl-2,.awxb-view.awxb-view .py-xl-2,.awxb-component.awxb-component .pb-xl-2,.awxb-component.awxb-component .py-xl-2{padding-bottom:.5rem !important}.awxb-view.awxb-view .pl-xl-2,.awxb-view.awxb-view .px-xl-2,.awxb-component.awxb-component .pl-xl-2,.awxb-component.awxb-component .px-xl-2{padding-left:.5rem !important}.awxb-view.awxb-view .p-xl-3,.awxb-component.awxb-component .p-xl-3{padding:1rem !important}.awxb-view.awxb-view .pt-xl-3,.awxb-view.awxb-view .py-xl-3,.awxb-component.awxb-component .pt-xl-3,.awxb-component.awxb-component .py-xl-3{padding-top:1rem !important}.awxb-view.awxb-view .pr-xl-3,.awxb-view.awxb-view .px-xl-3,.awxb-component.awxb-component .pr-xl-3,.awxb-component.awxb-component .px-xl-3{padding-right:1rem !important}.awxb-view.awxb-view .pb-xl-3,.awxb-view.awxb-view .py-xl-3,.awxb-component.awxb-component .pb-xl-3,.awxb-component.awxb-component .py-xl-3{padding-bottom:1rem !important}.awxb-view.awxb-view .pl-xl-3,.awxb-view.awxb-view .px-xl-3,.awxb-component.awxb-component .pl-xl-3,.awxb-component.awxb-component .px-xl-3{padding-left:1rem !important}.awxb-view.awxb-view .p-xl-4,.awxb-component.awxb-component .p-xl-4{padding:1.5rem !important}.awxb-view.awxb-view .pt-xl-4,.awxb-view.awxb-view .py-xl-4,.awxb-component.awxb-component .pt-xl-4,.awxb-component.awxb-component .py-xl-4{padding-top:1.5rem !important}.awxb-view.awxb-view .pr-xl-4,.awxb-view.awxb-view .px-xl-4,.awxb-component.awxb-component .pr-xl-4,.awxb-component.awxb-component .px-xl-4{padding-right:1.5rem !important}.awxb-view.awxb-view .pb-xl-4,.awxb-view.awxb-view .py-xl-4,.awxb-component.awxb-component .pb-xl-4,.awxb-component.awxb-component .py-xl-4{padding-bottom:1.5rem !important}.awxb-view.awxb-view .pl-xl-4,.awxb-view.awxb-view .px-xl-4,.awxb-component.awxb-component .pl-xl-4,.awxb-component.awxb-component .px-xl-4{padding-left:1.5rem !important}.awxb-view.awxb-view .p-xl-5,.awxb-component.awxb-component .p-xl-5{padding:3rem !important}.awxb-view.awxb-view .pt-xl-5,.awxb-view.awxb-view .py-xl-5,.awxb-component.awxb-component .pt-xl-5,.awxb-component.awxb-component .py-xl-5{padding-top:3rem !important}.awxb-view.awxb-view .pr-xl-5,.awxb-view.awxb-view .px-xl-5,.awxb-component.awxb-component .pr-xl-5,.awxb-component.awxb-component .px-xl-5{padding-right:3rem !important}.awxb-view.awxb-view .pb-xl-5,.awxb-view.awxb-view .py-xl-5,.awxb-component.awxb-component .pb-xl-5,.awxb-component.awxb-component .py-xl-5{padding-bottom:3rem !important}.awxb-view.awxb-view .pl-xl-5,.awxb-view.awxb-view .px-xl-5,.awxb-component.awxb-component .pl-xl-5,.awxb-component.awxb-component .px-xl-5{padding-left:3rem !important}.awxb-view.awxb-view .m-xl-auto,.awxb-component.awxb-component .m-xl-auto{margin:auto !important}.awxb-view.awxb-view .mt-xl-auto,.awxb-view.awxb-view .my-xl-auto,.awxb-component.awxb-component .mt-xl-auto,.awxb-component.awxb-component .my-xl-auto{margin-top:auto !important}.awxb-view.awxb-view .mr-xl-auto,.awxb-view.awxb-view .mx-xl-auto,.awxb-component.awxb-component .mr-xl-auto,.awxb-component.awxb-component .mx-xl-auto{margin-right:auto !important}.awxb-view.awxb-view .mb-xl-auto,.awxb-view.awxb-view .my-xl-auto,.awxb-component.awxb-component .mb-xl-auto,.awxb-component.awxb-component .my-xl-auto{margin-bottom:auto !important}.awxb-view.awxb-view .ml-xl-auto,.awxb-view.awxb-view .mx-xl-auto,.awxb-component.awxb-component .ml-xl-auto,.awxb-component.awxb-component .mx-xl-auto{margin-left:auto !important}}.awxb-view.awxb-view .text-monospace,.awxb-component.awxb-component .text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.awxb-view.awxb-view .text-justify,.awxb-component.awxb-component .text-justify{text-align:justify !important}.awxb-view.awxb-view .text-nowrap,.awxb-component.awxb-component .text-nowrap{white-space:nowrap !important}.awxb-view.awxb-view .text-truncate,.awxb-component.awxb-component .text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.awxb-view.awxb-view .text-left,.awxb-component.awxb-component .text-left{text-align:left !important}.awxb-view.awxb-view .text-right,.awxb-component.awxb-component .text-right{text-align:right !important}.awxb-view.awxb-view .text-center,.awxb-component.awxb-component .text-center{text-align:center !important}@media(min-width: 576px){.awxb-view.awxb-view .text-sm-left,.awxb-component.awxb-component .text-sm-left{text-align:left !important}.awxb-view.awxb-view .text-sm-right,.awxb-component.awxb-component .text-sm-right{text-align:right !important}.awxb-view.awxb-view .text-sm-center,.awxb-component.awxb-component .text-sm-center{text-align:center !important}}@media(min-width: 768px){.awxb-view.awxb-view .text-md-left,.awxb-component.awxb-component .text-md-left{text-align:left !important}.awxb-view.awxb-view .text-md-right,.awxb-component.awxb-component .text-md-right{text-align:right !important}.awxb-view.awxb-view .text-md-center,.awxb-component.awxb-component .text-md-center{text-align:center !important}}@media(min-width: 992px){.awxb-view.awxb-view .text-lg-left,.awxb-component.awxb-component .text-lg-left{text-align:left !important}.awxb-view.awxb-view .text-lg-right,.awxb-component.awxb-component .text-lg-right{text-align:right !important}.awxb-view.awxb-view .text-lg-center,.awxb-component.awxb-component .text-lg-center{text-align:center !important}}@media(min-width: 1200px){.awxb-view.awxb-view .text-xl-left,.awxb-component.awxb-component .text-xl-left{text-align:left !important}.awxb-view.awxb-view .text-xl-right,.awxb-component.awxb-component .text-xl-right{text-align:right !important}.awxb-view.awxb-view .text-xl-center,.awxb-component.awxb-component .text-xl-center{text-align:center !important}}.awxb-view.awxb-view .text-lowercase,.awxb-component.awxb-component .text-lowercase{text-transform:lowercase !important}.awxb-view.awxb-view .text-uppercase,.awxb-component.awxb-component .text-uppercase{text-transform:uppercase !important}.awxb-view.awxb-view .text-capitalize,.awxb-component.awxb-component .text-capitalize{text-transform:capitalize !important}.awxb-view.awxb-view .font-weight-light,.awxb-component.awxb-component .font-weight-light{font-weight:300 !important}.awxb-view.awxb-view .font-weight-normal,.awxb-component.awxb-component .font-weight-normal{font-weight:400 !important}.awxb-view.awxb-view .font-weight-bold,.awxb-component.awxb-component .font-weight-bold{font-weight:700 !important}.awxb-view.awxb-view .font-italic,.awxb-component.awxb-component .font-italic{font-style:italic !important}.awxb-view.awxb-view .text-white,.awxb-component.awxb-component .text-white{color:#fff !important}.awxb-view.awxb-view .text-primary,.awxb-component.awxb-component .text-primary{color:#007bff !important}.awxb-view.awxb-view a.text-primary:hover,.awxb-view.awxb-view a.text-primary:focus,.awxb-component.awxb-component a.text-primary:hover,.awxb-component.awxb-component a.text-primary:focus{color:#0062cc !important}.awxb-view.awxb-view .text-secondary,.awxb-component.awxb-component .text-secondary{color:#6c757d !important}.awxb-view.awxb-view a.text-secondary:hover,.awxb-view.awxb-view a.text-secondary:focus,.awxb-component.awxb-component a.text-secondary:hover,.awxb-component.awxb-component a.text-secondary:focus{color:#545b62 !important}.awxb-view.awxb-view .text-success,.awxb-component.awxb-component .text-success{color:#28a745 !important}.awxb-view.awxb-view a.text-success:hover,.awxb-view.awxb-view a.text-success:focus,.awxb-component.awxb-component a.text-success:hover,.awxb-component.awxb-component a.text-success:focus{color:#1e7e34 !important}.awxb-view.awxb-view .text-info,.awxb-component.awxb-component .text-info{color:#17a2b8 !important}.awxb-view.awxb-view a.text-info:hover,.awxb-view.awxb-view a.text-info:focus,.awxb-component.awxb-component a.text-info:hover,.awxb-component.awxb-component a.text-info:focus{color:#117a8b !important}.awxb-view.awxb-view .text-warning,.awxb-component.awxb-component .text-warning{color:#ffc107 !important}.awxb-view.awxb-view a.text-warning:hover,.awxb-view.awxb-view a.text-warning:focus,.awxb-component.awxb-component a.text-warning:hover,.awxb-component.awxb-component a.text-warning:focus{color:#d39e00 !important}.awxb-view.awxb-view .text-danger,.awxb-component.awxb-component .text-danger{color:#dc3545 !important}.awxb-view.awxb-view a.text-danger:hover,.awxb-view.awxb-view a.text-danger:focus,.awxb-component.awxb-component a.text-danger:hover,.awxb-component.awxb-component a.text-danger:focus{color:#bd2130 !important}.awxb-view.awxb-view .text-light,.awxb-component.awxb-component .text-light{color:#f8f9fa !important}.awxb-view.awxb-view a.text-light:hover,.awxb-view.awxb-view a.text-light:focus,.awxb-component.awxb-component a.text-light:hover,.awxb-component.awxb-component a.text-light:focus{color:#dae0e5 !important}.awxb-view.awxb-view .text-dark,.awxb-component.awxb-component .text-dark{color:#343a40 !important}.awxb-view.awxb-view a.text-dark:hover,.awxb-view.awxb-view a.text-dark:focus,.awxb-component.awxb-component a.text-dark:hover,.awxb-component.awxb-component a.text-dark:focus{color:#1d2124 !important}.awxb-view.awxb-view .text-body,.awxb-component.awxb-component .text-body{color:#212529 !important}.awxb-view.awxb-view .text-muted,.awxb-component.awxb-component .text-muted{color:#6c757d !important}.awxb-view.awxb-view .text-black-50,.awxb-component.awxb-component .text-black-50{color:rgba(0,0,0,.5) !important}.awxb-view.awxb-view .text-white-50,.awxb-component.awxb-component .text-white-50{color:rgba(255,255,255,.5) !important}.awxb-view.awxb-view .text-hide,.awxb-component.awxb-component .text-hide{font:0/0 a;color:rgba(0,0,0,0);text-shadow:none;background-color:rgba(0,0,0,0);border:0}.awxb-view.awxb-view .visible,.awxb-component.awxb-component .visible{visibility:visible !important}.awxb-view.awxb-view .invisible,.awxb-component.awxb-component .invisible{visibility:hidden !important}.awxb-view.awxb-view .bg-primary,.awxb-component.awxb-component .bg-primary{background-color:#007bff !important}.awxb-view.awxb-view a.bg-primary:hover,.awxb-view.awxb-view a.bg-primary:focus,.awxb-view.awxb-view button.bg-primary:hover,.awxb-view.awxb-view button.bg-primary:focus,.awxb-component.awxb-component a.bg-primary:hover,.awxb-component.awxb-component a.bg-primary:focus,.awxb-component.awxb-component button.bg-primary:hover,.awxb-component.awxb-component button.bg-primary:focus{background-color:#0062cc !important}.awxb-view.awxb-view .bg-secondary,.awxb-component.awxb-component .bg-secondary{background-color:#6c757d !important}.awxb-view.awxb-view a.bg-secondary:hover,.awxb-view.awxb-view a.bg-secondary:focus,.awxb-view.awxb-view button.bg-secondary:hover,.awxb-view.awxb-view button.bg-secondary:focus,.awxb-component.awxb-component a.bg-secondary:hover,.awxb-component.awxb-component a.bg-secondary:focus,.awxb-component.awxb-component button.bg-secondary:hover,.awxb-component.awxb-component button.bg-secondary:focus{background-color:#545b62 !important}.awxb-view.awxb-view .bg-success,.awxb-component.awxb-component .bg-success{background-color:#28a745 !important}.awxb-view.awxb-view a.bg-success:hover,.awxb-view.awxb-view a.bg-success:focus,.awxb-view.awxb-view button.bg-success:hover,.awxb-view.awxb-view button.bg-success:focus,.awxb-component.awxb-component a.bg-success:hover,.awxb-component.awxb-component a.bg-success:focus,.awxb-component.awxb-component button.bg-success:hover,.awxb-component.awxb-component button.bg-success:focus{background-color:#1e7e34 !important}.awxb-view.awxb-view .bg-info,.awxb-component.awxb-component .bg-info{background-color:#17a2b8 !important}.awxb-view.awxb-view a.bg-info:hover,.awxb-view.awxb-view a.bg-info:focus,.awxb-view.awxb-view button.bg-info:hover,.awxb-view.awxb-view button.bg-info:focus,.awxb-component.awxb-component a.bg-info:hover,.awxb-component.awxb-component a.bg-info:focus,.awxb-component.awxb-component button.bg-info:hover,.awxb-component.awxb-component button.bg-info:focus{background-color:#117a8b !important}.awxb-view.awxb-view .bg-warning,.awxb-component.awxb-component .bg-warning{background-color:#ffc107 !important}.awxb-view.awxb-view a.bg-warning:hover,.awxb-view.awxb-view a.bg-warning:focus,.awxb-view.awxb-view button.bg-warning:hover,.awxb-view.awxb-view button.bg-warning:focus,.awxb-component.awxb-component a.bg-warning:hover,.awxb-component.awxb-component a.bg-warning:focus,.awxb-component.awxb-component button.bg-warning:hover,.awxb-component.awxb-component button.bg-warning:focus{background-color:#d39e00 !important}.awxb-view.awxb-view .bg-danger,.awxb-component.awxb-component .bg-danger{background-color:#dc3545 !important}.awxb-view.awxb-view a.bg-danger:hover,.awxb-view.awxb-view a.bg-danger:focus,.awxb-view.awxb-view button.bg-danger:hover,.awxb-view.awxb-view button.bg-danger:focus,.awxb-component.awxb-component a.bg-danger:hover,.awxb-component.awxb-component a.bg-danger:focus,.awxb-component.awxb-component button.bg-danger:hover,.awxb-component.awxb-component button.bg-danger:focus{background-color:#bd2130 !important}.awxb-view.awxb-view .bg-light,.awxb-component.awxb-component .bg-light{background-color:#f8f9fa !important}.awxb-view.awxb-view a.bg-light:hover,.awxb-view.awxb-view a.bg-light:focus,.awxb-view.awxb-view button.bg-light:hover,.awxb-view.awxb-view button.bg-light:focus,.awxb-component.awxb-component a.bg-light:hover,.awxb-component.awxb-component a.bg-light:focus,.awxb-component.awxb-component button.bg-light:hover,.awxb-component.awxb-component button.bg-light:focus{background-color:#dae0e5 !important}.awxb-view.awxb-view .bg-dark,.awxb-component.awxb-component .bg-dark{background-color:#343a40 !important}.awxb-view.awxb-view a.bg-dark:hover,.awxb-view.awxb-view a.bg-dark:focus,.awxb-view.awxb-view button.bg-dark:hover,.awxb-view.awxb-view button.bg-dark:focus,.awxb-component.awxb-component a.bg-dark:hover,.awxb-component.awxb-component a.bg-dark:focus,.awxb-component.awxb-component button.bg-dark:hover,.awxb-component.awxb-component button.bg-dark:focus{background-color:#1d2124 !important}.awxb-view.awxb-view .bg-white,.awxb-component.awxb-component .bg-white{background-color:#fff !important}.awxb-view.awxb-view .bg-transparent,.awxb-component.awxb-component .bg-transparent{background-color:rgba(0,0,0,0) !important}.awxb-view.awxb-view .m-0,.awxb-component.awxb-component .m-0{margin:0 !important}.awxb-view.awxb-view .mt-0,.awxb-view.awxb-view .my-0,.awxb-component.awxb-component .mt-0,.awxb-component.awxb-component .my-0{margin-top:0 !important}.awxb-view.awxb-view .mr-0,.awxb-view.awxb-view .mx-0,.awxb-component.awxb-component .mr-0,.awxb-component.awxb-component .mx-0{margin-right:0 !important}.awxb-view.awxb-view .mb-0,.awxb-view.awxb-view .my-0,.awxb-component.awxb-component .mb-0,.awxb-component.awxb-component .my-0{margin-bottom:0 !important}.awxb-view.awxb-view .ml-0,.awxb-view.awxb-view .mx-0,.awxb-component.awxb-component .ml-0,.awxb-component.awxb-component .mx-0{margin-left:0 !important}.awxb-view.awxb-view .m-1,.awxb-component.awxb-component .m-1{margin:.25rem !important}.awxb-view.awxb-view .mt-1,.awxb-view.awxb-view .my-1,.awxb-component.awxb-component .mt-1,.awxb-component.awxb-component .my-1{margin-top:.25rem !important}.awxb-view.awxb-view .mr-1,.awxb-view.awxb-view .mx-1,.awxb-component.awxb-component .mr-1,.awxb-component.awxb-component .mx-1{margin-right:.25rem !important}.awxb-view.awxb-view .mb-1,.awxb-view.awxb-view .my-1,.awxb-component.awxb-component .mb-1,.awxb-component.awxb-component .my-1{margin-bottom:.25rem !important}.awxb-view.awxb-view .ml-1,.awxb-view.awxb-view .mx-1,.awxb-component.awxb-component .ml-1,.awxb-component.awxb-component .mx-1{margin-left:.25rem !important}.awxb-view.awxb-view .m-2,.awxb-component.awxb-component .m-2{margin:.5rem !important}.awxb-view.awxb-view .mt-2,.awxb-view.awxb-view .my-2,.awxb-component.awxb-component .mt-2,.awxb-component.awxb-component .my-2{margin-top:.5rem !important}.awxb-view.awxb-view .mr-2,.awxb-view.awxb-view .mx-2,.awxb-component.awxb-component .mr-2,.awxb-component.awxb-component .mx-2{margin-right:.5rem !important}.awxb-view.awxb-view .mb-2,.awxb-view.awxb-view .my-2,.awxb-component.awxb-component .mb-2,.awxb-component.awxb-component .my-2{margin-bottom:.5rem !important}.awxb-view.awxb-view .ml-2,.awxb-view.awxb-view .mx-2,.awxb-component.awxb-component .ml-2,.awxb-component.awxb-component .mx-2{margin-left:.5rem !important}.awxb-view.awxb-view .m-3,.awxb-component.awxb-component .m-3{margin:1rem !important}.awxb-view.awxb-view .mt-3,.awxb-view.awxb-view .my-3,.awxb-component.awxb-component .mt-3,.awxb-component.awxb-component .my-3{margin-top:1rem !important}.awxb-view.awxb-view .mr-3,.awxb-view.awxb-view .mx-3,.awxb-component.awxb-component .mr-3,.awxb-component.awxb-component .mx-3{margin-right:1rem !important}.awxb-view.awxb-view .mb-3,.awxb-view.awxb-view .my-3,.awxb-component.awxb-component .mb-3,.awxb-component.awxb-component .my-3{margin-bottom:1rem !important}.awxb-view.awxb-view .ml-3,.awxb-view.awxb-view .mx-3,.awxb-component.awxb-component .ml-3,.awxb-component.awxb-component .mx-3{margin-left:1rem !important}.awxb-view.awxb-view .m-4,.awxb-component.awxb-component .m-4{margin:1.5rem !important}.awxb-view.awxb-view .mt-4,.awxb-view.awxb-view .my-4,.awxb-component.awxb-component .mt-4,.awxb-component.awxb-component .my-4{margin-top:1.5rem !important}.awxb-view.awxb-view .mr-4,.awxb-view.awxb-view .mx-4,.awxb-component.awxb-component .mr-4,.awxb-component.awxb-component .mx-4{margin-right:1.5rem !important}.awxb-view.awxb-view .mb-4,.awxb-view.awxb-view .my-4,.awxb-component.awxb-component .mb-4,.awxb-component.awxb-component .my-4{margin-bottom:1.5rem !important}.awxb-view.awxb-view .ml-4,.awxb-view.awxb-view .mx-4,.awxb-component.awxb-component .ml-4,.awxb-component.awxb-component .mx-4{margin-left:1.5rem !important}.awxb-view.awxb-view .m-5,.awxb-component.awxb-component .m-5{margin:3rem !important}.awxb-view.awxb-view .mt-5,.awxb-view.awxb-view .my-5,.awxb-component.awxb-component .mt-5,.awxb-component.awxb-component .my-5{margin-top:3rem !important}.awxb-view.awxb-view .mr-5,.awxb-view.awxb-view .mx-5,.awxb-component.awxb-component .mr-5,.awxb-component.awxb-component .mx-5{margin-right:3rem !important}.awxb-view.awxb-view .mb-5,.awxb-view.awxb-view .my-5,.awxb-component.awxb-component .mb-5,.awxb-component.awxb-component .my-5{margin-bottom:3rem !important}.awxb-view.awxb-view .ml-5,.awxb-view.awxb-view .mx-5,.awxb-component.awxb-component .ml-5,.awxb-component.awxb-component .mx-5{margin-left:3rem !important}.awxb-view.awxb-view .p-0,.awxb-component.awxb-component .p-0{padding:0 !important}.awxb-view.awxb-view .pt-0,.awxb-view.awxb-view .py-0,.awxb-component.awxb-component .pt-0,.awxb-component.awxb-component .py-0{padding-top:0 !important}.awxb-view.awxb-view .pr-0,.awxb-view.awxb-view .px-0,.awxb-component.awxb-component .pr-0,.awxb-component.awxb-component .px-0{padding-right:0 !important}.awxb-view.awxb-view .pb-0,.awxb-view.awxb-view .py-0,.awxb-component.awxb-component .pb-0,.awxb-component.awxb-component .py-0{padding-bottom:0 !important}.awxb-view.awxb-view .pl-0,.awxb-view.awxb-view .px-0,.awxb-component.awxb-component .pl-0,.awxb-component.awxb-component .px-0{padding-left:0 !important}.awxb-view.awxb-view .p-1,.awxb-component.awxb-component .p-1{padding:.25rem !important}.awxb-view.awxb-view .pt-1,.awxb-view.awxb-view .py-1,.awxb-component.awxb-component .pt-1,.awxb-component.awxb-component .py-1{padding-top:.25rem !important}.awxb-view.awxb-view .pr-1,.awxb-view.awxb-view .px-1,.awxb-component.awxb-component .pr-1,.awxb-component.awxb-component .px-1{padding-right:.25rem !important}.awxb-view.awxb-view .pb-1,.awxb-view.awxb-view .py-1,.awxb-component.awxb-component .pb-1,.awxb-component.awxb-component .py-1{padding-bottom:.25rem !important}.awxb-view.awxb-view .pl-1,.awxb-view.awxb-view .px-1,.awxb-component.awxb-component .pl-1,.awxb-component.awxb-component .px-1{padding-left:.25rem !important}.awxb-view.awxb-view .p-2,.awxb-component.awxb-component .p-2{padding:.5rem !important}.awxb-view.awxb-view .pt-2,.awxb-view.awxb-view .py-2,.awxb-component.awxb-component .pt-2,.awxb-component.awxb-component .py-2{padding-top:.5rem !important}.awxb-view.awxb-view .pr-2,.awxb-view.awxb-view .px-2,.awxb-component.awxb-component .pr-2,.awxb-component.awxb-component .px-2{padding-right:.5rem !important}.awxb-view.awxb-view .pb-2,.awxb-view.awxb-view .py-2,.awxb-component.awxb-component .pb-2,.awxb-component.awxb-component .py-2{padding-bottom:.5rem !important}.awxb-view.awxb-view .pl-2,.awxb-view.awxb-view .px-2,.awxb-component.awxb-component .pl-2,.awxb-component.awxb-component .px-2{padding-left:.5rem !important}.awxb-view.awxb-view .p-3,.awxb-component.awxb-component .p-3{padding:1rem !important}.awxb-view.awxb-view .pt-3,.awxb-view.awxb-view .py-3,.awxb-component.awxb-component .pt-3,.awxb-component.awxb-component .py-3{padding-top:1rem !important}.awxb-view.awxb-view .pr-3,.awxb-view.awxb-view .px-3,.awxb-component.awxb-component .pr-3,.awxb-component.awxb-component .px-3{padding-right:1rem !important}.awxb-view.awxb-view .pb-3,.awxb-view.awxb-view .py-3,.awxb-component.awxb-component .pb-3,.awxb-component.awxb-component .py-3{padding-bottom:1rem !important}.awxb-view.awxb-view .pl-3,.awxb-view.awxb-view .px-3,.awxb-component.awxb-component .pl-3,.awxb-component.awxb-component .px-3{padding-left:1rem !important}.awxb-view.awxb-view .p-4,.awxb-component.awxb-component .p-4{padding:1.5rem !important}.awxb-view.awxb-view .pt-4,.awxb-view.awxb-view .py-4,.awxb-component.awxb-component .pt-4,.awxb-component.awxb-component .py-4{padding-top:1.5rem !important}.awxb-view.awxb-view .pr-4,.awxb-view.awxb-view .px-4,.awxb-component.awxb-component .pr-4,.awxb-component.awxb-component .px-4{padding-right:1.5rem !important}.awxb-view.awxb-view .pb-4,.awxb-view.awxb-view .py-4,.awxb-component.awxb-component .pb-4,.awxb-component.awxb-component .py-4{padding-bottom:1.5rem !important}.awxb-view.awxb-view .pl-4,.awxb-view.awxb-view .px-4,.awxb-component.awxb-component .pl-4,.awxb-component.awxb-component .px-4{padding-left:1.5rem !important}.awxb-view.awxb-view .p-5,.awxb-component.awxb-component .p-5{padding:3rem !important}.awxb-view.awxb-view .pt-5,.awxb-view.awxb-view .py-5,.awxb-component.awxb-component .pt-5,.awxb-component.awxb-component .py-5{padding-top:3rem !important}.awxb-view.awxb-view .pr-5,.awxb-view.awxb-view .px-5,.awxb-component.awxb-component .pr-5,.awxb-component.awxb-component .px-5{padding-right:3rem !important}.awxb-view.awxb-view .pb-5,.awxb-view.awxb-view .py-5,.awxb-component.awxb-component .pb-5,.awxb-component.awxb-component .py-5{padding-bottom:3rem !important}.awxb-view.awxb-view .pl-5,.awxb-view.awxb-view .px-5,.awxb-component.awxb-component .pl-5,.awxb-component.awxb-component .px-5{padding-left:3rem !important}.awxb-view.awxb-view .m-auto,.awxb-component.awxb-component .m-auto{margin:auto !important}.awxb-view.awxb-view .mt-auto,.awxb-view.awxb-view .my-auto,.awxb-component.awxb-component .mt-auto,.awxb-component.awxb-component .my-auto{margin-top:auto !important}.awxb-view.awxb-view .mr-auto,.awxb-view.awxb-view .mx-auto,.awxb-component.awxb-component .mr-auto,.awxb-component.awxb-component .mx-auto{margin-right:auto !important}.awxb-view.awxb-view .mb-auto,.awxb-view.awxb-view .my-auto,.awxb-component.awxb-component .mb-auto,.awxb-component.awxb-component .my-auto{margin-bottom:auto !important}.awxb-view.awxb-view .ml-auto,.awxb-view.awxb-view .mx-auto,.awxb-component.awxb-component .ml-auto,.awxb-component.awxb-component .mx-auto{margin-left:auto !important}@media(min-width: 576px){.awxb-view.awxb-view .m-sm-0,.awxb-component.awxb-component .m-sm-0{margin:0 !important}.awxb-view.awxb-view .mt-sm-0,.awxb-view.awxb-view .my-sm-0,.awxb-component.awxb-component .mt-sm-0,.awxb-component.awxb-component .my-sm-0{margin-top:0 !important}.awxb-view.awxb-view .mr-sm-0,.awxb-view.awxb-view .mx-sm-0,.awxb-component.awxb-component .mr-sm-0,.awxb-component.awxb-component .mx-sm-0{margin-right:0 !important}.awxb-view.awxb-view .mb-sm-0,.awxb-view.awxb-view .my-sm-0,.awxb-component.awxb-component .mb-sm-0,.awxb-component.awxb-component .my-sm-0{margin-bottom:0 !important}.awxb-view.awxb-view .ml-sm-0,.awxb-view.awxb-view .mx-sm-0,.awxb-component.awxb-component .ml-sm-0,.awxb-component.awxb-component .mx-sm-0{margin-left:0 !important}.awxb-view.awxb-view .m-sm-1,.awxb-component.awxb-component .m-sm-1{margin:.25rem !important}.awxb-view.awxb-view .mt-sm-1,.awxb-view.awxb-view .my-sm-1,.awxb-component.awxb-component .mt-sm-1,.awxb-component.awxb-component .my-sm-1{margin-top:.25rem !important}.awxb-view.awxb-view .mr-sm-1,.awxb-view.awxb-view .mx-sm-1,.awxb-component.awxb-component .mr-sm-1,.awxb-component.awxb-component .mx-sm-1{margin-right:.25rem !important}.awxb-view.awxb-view .mb-sm-1,.awxb-view.awxb-view .my-sm-1,.awxb-component.awxb-component .mb-sm-1,.awxb-component.awxb-component .my-sm-1{margin-bottom:.25rem !important}.awxb-view.awxb-view .ml-sm-1,.awxb-view.awxb-view .mx-sm-1,.awxb-component.awxb-component .ml-sm-1,.awxb-component.awxb-component .mx-sm-1{margin-left:.25rem !important}.awxb-view.awxb-view .m-sm-2,.awxb-component.awxb-component .m-sm-2{margin:.5rem !important}.awxb-view.awxb-view .mt-sm-2,.awxb-view.awxb-view .my-sm-2,.awxb-component.awxb-component .mt-sm-2,.awxb-component.awxb-component .my-sm-2{margin-top:.5rem !important}.awxb-view.awxb-view .mr-sm-2,.awxb-view.awxb-view .mx-sm-2,.awxb-component.awxb-component .mr-sm-2,.awxb-component.awxb-component .mx-sm-2{margin-right:.5rem !important}.awxb-view.awxb-view .mb-sm-2,.awxb-view.awxb-view .my-sm-2,.awxb-component.awxb-component .mb-sm-2,.awxb-component.awxb-component .my-sm-2{margin-bottom:.5rem !important}.awxb-view.awxb-view .ml-sm-2,.awxb-view.awxb-view .mx-sm-2,.awxb-component.awxb-component .ml-sm-2,.awxb-component.awxb-component .mx-sm-2{margin-left:.5rem !important}.awxb-view.awxb-view .m-sm-3,.awxb-component.awxb-component .m-sm-3{margin:1rem !important}.awxb-view.awxb-view .mt-sm-3,.awxb-view.awxb-view .my-sm-3,.awxb-component.awxb-component .mt-sm-3,.awxb-component.awxb-component .my-sm-3{margin-top:1rem !important}.awxb-view.awxb-view .mr-sm-3,.awxb-view.awxb-view .mx-sm-3,.awxb-component.awxb-component .mr-sm-3,.awxb-component.awxb-component .mx-sm-3{margin-right:1rem !important}.awxb-view.awxb-view .mb-sm-3,.awxb-view.awxb-view .my-sm-3,.awxb-component.awxb-component .mb-sm-3,.awxb-component.awxb-component .my-sm-3{margin-bottom:1rem !important}.awxb-view.awxb-view .ml-sm-3,.awxb-view.awxb-view .mx-sm-3,.awxb-component.awxb-component .ml-sm-3,.awxb-component.awxb-component .mx-sm-3{margin-left:1rem !important}.awxb-view.awxb-view .m-sm-4,.awxb-component.awxb-component .m-sm-4{margin:1.5rem !important}.awxb-view.awxb-view .mt-sm-4,.awxb-view.awxb-view .my-sm-4,.awxb-component.awxb-component .mt-sm-4,.awxb-component.awxb-component .my-sm-4{margin-top:1.5rem !important}.awxb-view.awxb-view .mr-sm-4,.awxb-view.awxb-view .mx-sm-4,.awxb-component.awxb-component .mr-sm-4,.awxb-component.awxb-component .mx-sm-4{margin-right:1.5rem !important}.awxb-view.awxb-view .mb-sm-4,.awxb-view.awxb-view .my-sm-4,.awxb-component.awxb-component .mb-sm-4,.awxb-component.awxb-component .my-sm-4{margin-bottom:1.5rem !important}.awxb-view.awxb-view .ml-sm-4,.awxb-view.awxb-view .mx-sm-4,.awxb-component.awxb-component .ml-sm-4,.awxb-component.awxb-component .mx-sm-4{margin-left:1.5rem !important}.awxb-view.awxb-view .m-sm-5,.awxb-component.awxb-component .m-sm-5{margin:3rem !important}.awxb-view.awxb-view .mt-sm-5,.awxb-view.awxb-view .my-sm-5,.awxb-component.awxb-component .mt-sm-5,.awxb-component.awxb-component .my-sm-5{margin-top:3rem !important}.awxb-view.awxb-view .mr-sm-5,.awxb-view.awxb-view .mx-sm-5,.awxb-component.awxb-component .mr-sm-5,.awxb-component.awxb-component .mx-sm-5{margin-right:3rem !important}.awxb-view.awxb-view .mb-sm-5,.awxb-view.awxb-view .my-sm-5,.awxb-component.awxb-component .mb-sm-5,.awxb-component.awxb-component .my-sm-5{margin-bottom:3rem !important}.awxb-view.awxb-view .ml-sm-5,.awxb-view.awxb-view .mx-sm-5,.awxb-component.awxb-component .ml-sm-5,.awxb-component.awxb-component .mx-sm-5{margin-left:3rem !important}.awxb-view.awxb-view .p-sm-0,.awxb-component.awxb-component .p-sm-0{padding:0 !important}.awxb-view.awxb-view .pt-sm-0,.awxb-view.awxb-view .py-sm-0,.awxb-component.awxb-component .pt-sm-0,.awxb-component.awxb-component .py-sm-0{padding-top:0 !important}.awxb-view.awxb-view .pr-sm-0,.awxb-view.awxb-view .px-sm-0,.awxb-component.awxb-component .pr-sm-0,.awxb-component.awxb-component .px-sm-0{padding-right:0 !important}.awxb-view.awxb-view .pb-sm-0,.awxb-view.awxb-view .py-sm-0,.awxb-component.awxb-component .pb-sm-0,.awxb-component.awxb-component .py-sm-0{padding-bottom:0 !important}.awxb-view.awxb-view .pl-sm-0,.awxb-view.awxb-view .px-sm-0,.awxb-component.awxb-component .pl-sm-0,.awxb-component.awxb-component .px-sm-0{padding-left:0 !important}.awxb-view.awxb-view .p-sm-1,.awxb-component.awxb-component .p-sm-1{padding:.25rem !important}.awxb-view.awxb-view .pt-sm-1,.awxb-view.awxb-view .py-sm-1,.awxb-component.awxb-component .pt-sm-1,.awxb-component.awxb-component .py-sm-1{padding-top:.25rem !important}.awxb-view.awxb-view .pr-sm-1,.awxb-view.awxb-view .px-sm-1,.awxb-component.awxb-component .pr-sm-1,.awxb-component.awxb-component .px-sm-1{padding-right:.25rem !important}.awxb-view.awxb-view .pb-sm-1,.awxb-view.awxb-view .py-sm-1,.awxb-component.awxb-component .pb-sm-1,.awxb-component.awxb-component .py-sm-1{padding-bottom:.25rem !important}.awxb-view.awxb-view .pl-sm-1,.awxb-view.awxb-view .px-sm-1,.awxb-component.awxb-component .pl-sm-1,.awxb-component.awxb-component .px-sm-1{padding-left:.25rem !important}.awxb-view.awxb-view .p-sm-2,.awxb-component.awxb-component .p-sm-2{padding:.5rem !important}.awxb-view.awxb-view .pt-sm-2,.awxb-view.awxb-view .py-sm-2,.awxb-component.awxb-component .pt-sm-2,.awxb-component.awxb-component .py-sm-2{padding-top:.5rem !important}.awxb-view.awxb-view .pr-sm-2,.awxb-view.awxb-view .px-sm-2,.awxb-component.awxb-component .pr-sm-2,.awxb-component.awxb-component .px-sm-2{padding-right:.5rem !important}.awxb-view.awxb-view .pb-sm-2,.awxb-view.awxb-view .py-sm-2,.awxb-component.awxb-component .pb-sm-2,.awxb-component.awxb-component .py-sm-2{padding-bottom:.5rem !important}.awxb-view.awxb-view .pl-sm-2,.awxb-view.awxb-view .px-sm-2,.awxb-component.awxb-component .pl-sm-2,.awxb-component.awxb-component .px-sm-2{padding-left:.5rem !important}.awxb-view.awxb-view .p-sm-3,.awxb-component.awxb-component .p-sm-3{padding:1rem !important}.awxb-view.awxb-view .pt-sm-3,.awxb-view.awxb-view .py-sm-3,.awxb-component.awxb-component .pt-sm-3,.awxb-component.awxb-component .py-sm-3{padding-top:1rem !important}.awxb-view.awxb-view .pr-sm-3,.awxb-view.awxb-view .px-sm-3,.awxb-component.awxb-component .pr-sm-3,.awxb-component.awxb-component .px-sm-3{padding-right:1rem !important}.awxb-view.awxb-view .pb-sm-3,.awxb-view.awxb-view .py-sm-3,.awxb-component.awxb-component .pb-sm-3,.awxb-component.awxb-component .py-sm-3{padding-bottom:1rem !important}.awxb-view.awxb-view .pl-sm-3,.awxb-view.awxb-view .px-sm-3,.awxb-component.awxb-component .pl-sm-3,.awxb-component.awxb-component .px-sm-3{padding-left:1rem !important}.awxb-view.awxb-view .p-sm-4,.awxb-component.awxb-component .p-sm-4{padding:1.5rem !important}.awxb-view.awxb-view .pt-sm-4,.awxb-view.awxb-view .py-sm-4,.awxb-component.awxb-component .pt-sm-4,.awxb-component.awxb-component .py-sm-4{padding-top:1.5rem !important}.awxb-view.awxb-view .pr-sm-4,.awxb-view.awxb-view .px-sm-4,.awxb-component.awxb-component .pr-sm-4,.awxb-component.awxb-component .px-sm-4{padding-right:1.5rem !important}.awxb-view.awxb-view .pb-sm-4,.awxb-view.awxb-view .py-sm-4,.awxb-component.awxb-component .pb-sm-4,.awxb-component.awxb-component .py-sm-4{padding-bottom:1.5rem !important}.awxb-view.awxb-view .pl-sm-4,.awxb-view.awxb-view .px-sm-4,.awxb-component.awxb-component .pl-sm-4,.awxb-component.awxb-component .px-sm-4{padding-left:1.5rem !important}.awxb-view.awxb-view .p-sm-5,.awxb-component.awxb-component .p-sm-5{padding:3rem !important}.awxb-view.awxb-view .pt-sm-5,.awxb-view.awxb-view .py-sm-5,.awxb-component.awxb-component .pt-sm-5,.awxb-component.awxb-component .py-sm-5{padding-top:3rem !important}.awxb-view.awxb-view .pr-sm-5,.awxb-view.awxb-view .px-sm-5,.awxb-component.awxb-component .pr-sm-5,.awxb-component.awxb-component .px-sm-5{padding-right:3rem !important}.awxb-view.awxb-view .pb-sm-5,.awxb-view.awxb-view .py-sm-5,.awxb-component.awxb-component .pb-sm-5,.awxb-component.awxb-component .py-sm-5{padding-bottom:3rem !important}.awxb-view.awxb-view .pl-sm-5,.awxb-view.awxb-view .px-sm-5,.awxb-component.awxb-component .pl-sm-5,.awxb-component.awxb-component .px-sm-5{padding-left:3rem !important}.awxb-view.awxb-view .m-sm-auto,.awxb-component.awxb-component .m-sm-auto{margin:auto !important}.awxb-view.awxb-view .mt-sm-auto,.awxb-view.awxb-view .my-sm-auto,.awxb-component.awxb-component .mt-sm-auto,.awxb-component.awxb-component .my-sm-auto{margin-top:auto !important}.awxb-view.awxb-view .mr-sm-auto,.awxb-view.awxb-view .mx-sm-auto,.awxb-component.awxb-component .mr-sm-auto,.awxb-component.awxb-component .mx-sm-auto{margin-right:auto !important}.awxb-view.awxb-view .mb-sm-auto,.awxb-view.awxb-view .my-sm-auto,.awxb-component.awxb-component .mb-sm-auto,.awxb-component.awxb-component .my-sm-auto{margin-bottom:auto !important}.awxb-view.awxb-view .ml-sm-auto,.awxb-view.awxb-view .mx-sm-auto,.awxb-component.awxb-component .ml-sm-auto,.awxb-component.awxb-component .mx-sm-auto{margin-left:auto !important}}@media(min-width: 768px){.awxb-view.awxb-view .m-md-0,.awxb-component.awxb-component .m-md-0{margin:0 !important}.awxb-view.awxb-view .mt-md-0,.awxb-view.awxb-view .my-md-0,.awxb-component.awxb-component .mt-md-0,.awxb-component.awxb-component .my-md-0{margin-top:0 !important}.awxb-view.awxb-view .mr-md-0,.awxb-view.awxb-view .mx-md-0,.awxb-component.awxb-component .mr-md-0,.awxb-component.awxb-component .mx-md-0{margin-right:0 !important}.awxb-view.awxb-view .mb-md-0,.awxb-view.awxb-view .my-md-0,.awxb-component.awxb-component .mb-md-0,.awxb-component.awxb-component .my-md-0{margin-bottom:0 !important}.awxb-view.awxb-view .ml-md-0,.awxb-view.awxb-view .mx-md-0,.awxb-component.awxb-component .ml-md-0,.awxb-component.awxb-component .mx-md-0{margin-left:0 !important}.awxb-view.awxb-view .m-md-1,.awxb-component.awxb-component .m-md-1{margin:.25rem !important}.awxb-view.awxb-view .mt-md-1,.awxb-view.awxb-view .my-md-1,.awxb-component.awxb-component .mt-md-1,.awxb-component.awxb-component .my-md-1{margin-top:.25rem !important}.awxb-view.awxb-view .mr-md-1,.awxb-view.awxb-view .mx-md-1,.awxb-component.awxb-component .mr-md-1,.awxb-component.awxb-component .mx-md-1{margin-right:.25rem !important}.awxb-view.awxb-view .mb-md-1,.awxb-view.awxb-view .my-md-1,.awxb-component.awxb-component .mb-md-1,.awxb-component.awxb-component .my-md-1{margin-bottom:.25rem !important}.awxb-view.awxb-view .ml-md-1,.awxb-view.awxb-view .mx-md-1,.awxb-component.awxb-component .ml-md-1,.awxb-component.awxb-component .mx-md-1{margin-left:.25rem !important}.awxb-view.awxb-view .m-md-2,.awxb-component.awxb-component .m-md-2{margin:.5rem !important}.awxb-view.awxb-view .mt-md-2,.awxb-view.awxb-view .my-md-2,.awxb-component.awxb-component .mt-md-2,.awxb-component.awxb-component .my-md-2{margin-top:.5rem !important}.awxb-view.awxb-view .mr-md-2,.awxb-view.awxb-view .mx-md-2,.awxb-component.awxb-component .mr-md-2,.awxb-component.awxb-component .mx-md-2{margin-right:.5rem !important}.awxb-view.awxb-view .mb-md-2,.awxb-view.awxb-view .my-md-2,.awxb-component.awxb-component .mb-md-2,.awxb-component.awxb-component .my-md-2{margin-bottom:.5rem !important}.awxb-view.awxb-view .ml-md-2,.awxb-view.awxb-view .mx-md-2,.awxb-component.awxb-component .ml-md-2,.awxb-component.awxb-component .mx-md-2{margin-left:.5rem !important}.awxb-view.awxb-view .m-md-3,.awxb-component.awxb-component .m-md-3{margin:1rem !important}.awxb-view.awxb-view .mt-md-3,.awxb-view.awxb-view .my-md-3,.awxb-component.awxb-component .mt-md-3,.awxb-component.awxb-component .my-md-3{margin-top:1rem !important}.awxb-view.awxb-view .mr-md-3,.awxb-view.awxb-view .mx-md-3,.awxb-component.awxb-component .mr-md-3,.awxb-component.awxb-component .mx-md-3{margin-right:1rem !important}.awxb-view.awxb-view .mb-md-3,.awxb-view.awxb-view .my-md-3,.awxb-component.awxb-component .mb-md-3,.awxb-component.awxb-component .my-md-3{margin-bottom:1rem !important}.awxb-view.awxb-view .ml-md-3,.awxb-view.awxb-view .mx-md-3,.awxb-component.awxb-component .ml-md-3,.awxb-component.awxb-component .mx-md-3{margin-left:1rem !important}.awxb-view.awxb-view .m-md-4,.awxb-component.awxb-component .m-md-4{margin:1.5rem !important}.awxb-view.awxb-view .mt-md-4,.awxb-view.awxb-view .my-md-4,.awxb-component.awxb-component .mt-md-4,.awxb-component.awxb-component .my-md-4{margin-top:1.5rem !important}.awxb-view.awxb-view .mr-md-4,.awxb-view.awxb-view .mx-md-4,.awxb-component.awxb-component .mr-md-4,.awxb-component.awxb-component .mx-md-4{margin-right:1.5rem !important}.awxb-view.awxb-view .mb-md-4,.awxb-view.awxb-view .my-md-4,.awxb-component.awxb-component .mb-md-4,.awxb-component.awxb-component .my-md-4{margin-bottom:1.5rem !important}.awxb-view.awxb-view .ml-md-4,.awxb-view.awxb-view .mx-md-4,.awxb-component.awxb-component .ml-md-4,.awxb-component.awxb-component .mx-md-4{margin-left:1.5rem !important}.awxb-view.awxb-view .m-md-5,.awxb-component.awxb-component .m-md-5{margin:3rem !important}.awxb-view.awxb-view .mt-md-5,.awxb-view.awxb-view .my-md-5,.awxb-component.awxb-component .mt-md-5,.awxb-component.awxb-component .my-md-5{margin-top:3rem !important}.awxb-view.awxb-view .mr-md-5,.awxb-view.awxb-view .mx-md-5,.awxb-component.awxb-component .mr-md-5,.awxb-component.awxb-component .mx-md-5{margin-right:3rem !important}.awxb-view.awxb-view .mb-md-5,.awxb-view.awxb-view .my-md-5,.awxb-component.awxb-component .mb-md-5,.awxb-component.awxb-component .my-md-5{margin-bottom:3rem !important}.awxb-view.awxb-view .ml-md-5,.awxb-view.awxb-view .mx-md-5,.awxb-component.awxb-component .ml-md-5,.awxb-component.awxb-component .mx-md-5{margin-left:3rem !important}.awxb-view.awxb-view .p-md-0,.awxb-component.awxb-component .p-md-0{padding:0 !important}.awxb-view.awxb-view .pt-md-0,.awxb-view.awxb-view .py-md-0,.awxb-component.awxb-component .pt-md-0,.awxb-component.awxb-component .py-md-0{padding-top:0 !important}.awxb-view.awxb-view .pr-md-0,.awxb-view.awxb-view .px-md-0,.awxb-component.awxb-component .pr-md-0,.awxb-component.awxb-component .px-md-0{padding-right:0 !important}.awxb-view.awxb-view .pb-md-0,.awxb-view.awxb-view .py-md-0,.awxb-component.awxb-component .pb-md-0,.awxb-component.awxb-component .py-md-0{padding-bottom:0 !important}.awxb-view.awxb-view .pl-md-0,.awxb-view.awxb-view .px-md-0,.awxb-component.awxb-component .pl-md-0,.awxb-component.awxb-component .px-md-0{padding-left:0 !important}.awxb-view.awxb-view .p-md-1,.awxb-component.awxb-component .p-md-1{padding:.25rem !important}.awxb-view.awxb-view .pt-md-1,.awxb-view.awxb-view .py-md-1,.awxb-component.awxb-component .pt-md-1,.awxb-component.awxb-component .py-md-1{padding-top:.25rem !important}.awxb-view.awxb-view .pr-md-1,.awxb-view.awxb-view .px-md-1,.awxb-component.awxb-component .pr-md-1,.awxb-component.awxb-component .px-md-1{padding-right:.25rem !important}.awxb-view.awxb-view .pb-md-1,.awxb-view.awxb-view .py-md-1,.awxb-component.awxb-component .pb-md-1,.awxb-component.awxb-component .py-md-1{padding-bottom:.25rem !important}.awxb-view.awxb-view .pl-md-1,.awxb-view.awxb-view .px-md-1,.awxb-component.awxb-component .pl-md-1,.awxb-component.awxb-component .px-md-1{padding-left:.25rem !important}.awxb-view.awxb-view .p-md-2,.awxb-component.awxb-component .p-md-2{padding:.5rem !important}.awxb-view.awxb-view .pt-md-2,.awxb-view.awxb-view .py-md-2,.awxb-component.awxb-component .pt-md-2,.awxb-component.awxb-component .py-md-2{padding-top:.5rem !important}.awxb-view.awxb-view .pr-md-2,.awxb-view.awxb-view .px-md-2,.awxb-component.awxb-component .pr-md-2,.awxb-component.awxb-component .px-md-2{padding-right:.5rem !important}.awxb-view.awxb-view .pb-md-2,.awxb-view.awxb-view .py-md-2,.awxb-component.awxb-component .pb-md-2,.awxb-component.awxb-component .py-md-2{padding-bottom:.5rem !important}.awxb-view.awxb-view .pl-md-2,.awxb-view.awxb-view .px-md-2,.awxb-component.awxb-component .pl-md-2,.awxb-component.awxb-component .px-md-2{padding-left:.5rem !important}.awxb-view.awxb-view .p-md-3,.awxb-component.awxb-component .p-md-3{padding:1rem !important}.awxb-view.awxb-view .pt-md-3,.awxb-view.awxb-view .py-md-3,.awxb-component.awxb-component .pt-md-3,.awxb-component.awxb-component .py-md-3{padding-top:1rem !important}.awxb-view.awxb-view .pr-md-3,.awxb-view.awxb-view .px-md-3,.awxb-component.awxb-component .pr-md-3,.awxb-component.awxb-component .px-md-3{padding-right:1rem !important}.awxb-view.awxb-view .pb-md-3,.awxb-view.awxb-view .py-md-3,.awxb-component.awxb-component .pb-md-3,.awxb-component.awxb-component .py-md-3{padding-bottom:1rem !important}.awxb-view.awxb-view .pl-md-3,.awxb-view.awxb-view .px-md-3,.awxb-component.awxb-component .pl-md-3,.awxb-component.awxb-component .px-md-3{padding-left:1rem !important}.awxb-view.awxb-view .p-md-4,.awxb-component.awxb-component .p-md-4{padding:1.5rem !important}.awxb-view.awxb-view .pt-md-4,.awxb-view.awxb-view .py-md-4,.awxb-component.awxb-component .pt-md-4,.awxb-component.awxb-component .py-md-4{padding-top:1.5rem !important}.awxb-view.awxb-view .pr-md-4,.awxb-view.awxb-view .px-md-4,.awxb-component.awxb-component .pr-md-4,.awxb-component.awxb-component .px-md-4{padding-right:1.5rem !important}.awxb-view.awxb-view .pb-md-4,.awxb-view.awxb-view .py-md-4,.awxb-component.awxb-component .pb-md-4,.awxb-component.awxb-component .py-md-4{padding-bottom:1.5rem !important}.awxb-view.awxb-view .pl-md-4,.awxb-view.awxb-view .px-md-4,.awxb-component.awxb-component .pl-md-4,.awxb-component.awxb-component .px-md-4{padding-left:1.5rem !important}.awxb-view.awxb-view .p-md-5,.awxb-component.awxb-component .p-md-5{padding:3rem !important}.awxb-view.awxb-view .pt-md-5,.awxb-view.awxb-view .py-md-5,.awxb-component.awxb-component .pt-md-5,.awxb-component.awxb-component .py-md-5{padding-top:3rem !important}.awxb-view.awxb-view .pr-md-5,.awxb-view.awxb-view .px-md-5,.awxb-component.awxb-component .pr-md-5,.awxb-component.awxb-component .px-md-5{padding-right:3rem !important}.awxb-view.awxb-view .pb-md-5,.awxb-view.awxb-view .py-md-5,.awxb-component.awxb-component .pb-md-5,.awxb-component.awxb-component .py-md-5{padding-bottom:3rem !important}.awxb-view.awxb-view .pl-md-5,.awxb-view.awxb-view .px-md-5,.awxb-component.awxb-component .pl-md-5,.awxb-component.awxb-component .px-md-5{padding-left:3rem !important}.awxb-view.awxb-view .m-md-auto,.awxb-component.awxb-component .m-md-auto{margin:auto !important}.awxb-view.awxb-view .mt-md-auto,.awxb-view.awxb-view .my-md-auto,.awxb-component.awxb-component .mt-md-auto,.awxb-component.awxb-component .my-md-auto{margin-top:auto !important}.awxb-view.awxb-view .mr-md-auto,.awxb-view.awxb-view .mx-md-auto,.awxb-component.awxb-component .mr-md-auto,.awxb-component.awxb-component .mx-md-auto{margin-right:auto !important}.awxb-view.awxb-view .mb-md-auto,.awxb-view.awxb-view .my-md-auto,.awxb-component.awxb-component .mb-md-auto,.awxb-component.awxb-component .my-md-auto{margin-bottom:auto !important}.awxb-view.awxb-view .ml-md-auto,.awxb-view.awxb-view .mx-md-auto,.awxb-component.awxb-component .ml-md-auto,.awxb-component.awxb-component .mx-md-auto{margin-left:auto !important}}@media(min-width: 992px){.awxb-view.awxb-view .m-lg-0,.awxb-component.awxb-component .m-lg-0{margin:0 !important}.awxb-view.awxb-view .mt-lg-0,.awxb-view.awxb-view .my-lg-0,.awxb-component.awxb-component .mt-lg-0,.awxb-component.awxb-component .my-lg-0{margin-top:0 !important}.awxb-view.awxb-view .mr-lg-0,.awxb-view.awxb-view .mx-lg-0,.awxb-component.awxb-component .mr-lg-0,.awxb-component.awxb-component .mx-lg-0{margin-right:0 !important}.awxb-view.awxb-view .mb-lg-0,.awxb-view.awxb-view .my-lg-0,.awxb-component.awxb-component .mb-lg-0,.awxb-component.awxb-component .my-lg-0{margin-bottom:0 !important}.awxb-view.awxb-view .ml-lg-0,.awxb-view.awxb-view .mx-lg-0,.awxb-component.awxb-component .ml-lg-0,.awxb-component.awxb-component .mx-lg-0{margin-left:0 !important}.awxb-view.awxb-view .m-lg-1,.awxb-component.awxb-component .m-lg-1{margin:.25rem !important}.awxb-view.awxb-view .mt-lg-1,.awxb-view.awxb-view .my-lg-1,.awxb-component.awxb-component .mt-lg-1,.awxb-component.awxb-component .my-lg-1{margin-top:.25rem !important}.awxb-view.awxb-view .mr-lg-1,.awxb-view.awxb-view .mx-lg-1,.awxb-component.awxb-component .mr-lg-1,.awxb-component.awxb-component .mx-lg-1{margin-right:.25rem !important}.awxb-view.awxb-view .mb-lg-1,.awxb-view.awxb-view .my-lg-1,.awxb-component.awxb-component .mb-lg-1,.awxb-component.awxb-component .my-lg-1{margin-bottom:.25rem !important}.awxb-view.awxb-view .ml-lg-1,.awxb-view.awxb-view .mx-lg-1,.awxb-component.awxb-component .ml-lg-1,.awxb-component.awxb-component .mx-lg-1{margin-left:.25rem !important}.awxb-view.awxb-view .m-lg-2,.awxb-component.awxb-component .m-lg-2{margin:.5rem !important}.awxb-view.awxb-view .mt-lg-2,.awxb-view.awxb-view .my-lg-2,.awxb-component.awxb-component .mt-lg-2,.awxb-component.awxb-component .my-lg-2{margin-top:.5rem !important}.awxb-view.awxb-view .mr-lg-2,.awxb-view.awxb-view .mx-lg-2,.awxb-component.awxb-component .mr-lg-2,.awxb-component.awxb-component .mx-lg-2{margin-right:.5rem !important}.awxb-view.awxb-view .mb-lg-2,.awxb-view.awxb-view .my-lg-2,.awxb-component.awxb-component .mb-lg-2,.awxb-component.awxb-component .my-lg-2{margin-bottom:.5rem !important}.awxb-view.awxb-view .ml-lg-2,.awxb-view.awxb-view .mx-lg-2,.awxb-component.awxb-component .ml-lg-2,.awxb-component.awxb-component .mx-lg-2{margin-left:.5rem !important}.awxb-view.awxb-view .m-lg-3,.awxb-component.awxb-component .m-lg-3{margin:1rem !important}.awxb-view.awxb-view .mt-lg-3,.awxb-view.awxb-view .my-lg-3,.awxb-component.awxb-component .mt-lg-3,.awxb-component.awxb-component .my-lg-3{margin-top:1rem !important}.awxb-view.awxb-view .mr-lg-3,.awxb-view.awxb-view .mx-lg-3,.awxb-component.awxb-component .mr-lg-3,.awxb-component.awxb-component .mx-lg-3{margin-right:1rem !important}.awxb-view.awxb-view .mb-lg-3,.awxb-view.awxb-view .my-lg-3,.awxb-component.awxb-component .mb-lg-3,.awxb-component.awxb-component .my-lg-3{margin-bottom:1rem !important}.awxb-view.awxb-view .ml-lg-3,.awxb-view.awxb-view .mx-lg-3,.awxb-component.awxb-component .ml-lg-3,.awxb-component.awxb-component .mx-lg-3{margin-left:1rem !important}.awxb-view.awxb-view .m-lg-4,.awxb-component.awxb-component .m-lg-4{margin:1.5rem !important}.awxb-view.awxb-view .mt-lg-4,.awxb-view.awxb-view .my-lg-4,.awxb-component.awxb-component .mt-lg-4,.awxb-component.awxb-component .my-lg-4{margin-top:1.5rem !important}.awxb-view.awxb-view .mr-lg-4,.awxb-view.awxb-view .mx-lg-4,.awxb-component.awxb-component .mr-lg-4,.awxb-component.awxb-component .mx-lg-4{margin-right:1.5rem !important}.awxb-view.awxb-view .mb-lg-4,.awxb-view.awxb-view .my-lg-4,.awxb-component.awxb-component .mb-lg-4,.awxb-component.awxb-component .my-lg-4{margin-bottom:1.5rem !important}.awxb-view.awxb-view .ml-lg-4,.awxb-view.awxb-view .mx-lg-4,.awxb-component.awxb-component .ml-lg-4,.awxb-component.awxb-component .mx-lg-4{margin-left:1.5rem !important}.awxb-view.awxb-view .m-lg-5,.awxb-component.awxb-component .m-lg-5{margin:3rem !important}.awxb-view.awxb-view .mt-lg-5,.awxb-view.awxb-view .my-lg-5,.awxb-component.awxb-component .mt-lg-5,.awxb-component.awxb-component .my-lg-5{margin-top:3rem !important}.awxb-view.awxb-view .mr-lg-5,.awxb-view.awxb-view .mx-lg-5,.awxb-component.awxb-component .mr-lg-5,.awxb-component.awxb-component .mx-lg-5{margin-right:3rem !important}.awxb-view.awxb-view .mb-lg-5,.awxb-view.awxb-view .my-lg-5,.awxb-component.awxb-component .mb-lg-5,.awxb-component.awxb-component .my-lg-5{margin-bottom:3rem !important}.awxb-view.awxb-view .ml-lg-5,.awxb-view.awxb-view .mx-lg-5,.awxb-component.awxb-component .ml-lg-5,.awxb-component.awxb-component .mx-lg-5{margin-left:3rem !important}.awxb-view.awxb-view .p-lg-0,.awxb-component.awxb-component .p-lg-0{padding:0 !important}.awxb-view.awxb-view .pt-lg-0,.awxb-view.awxb-view .py-lg-0,.awxb-component.awxb-component .pt-lg-0,.awxb-component.awxb-component .py-lg-0{padding-top:0 !important}.awxb-view.awxb-view .pr-lg-0,.awxb-view.awxb-view .px-lg-0,.awxb-component.awxb-component .pr-lg-0,.awxb-component.awxb-component .px-lg-0{padding-right:0 !important}.awxb-view.awxb-view .pb-lg-0,.awxb-view.awxb-view .py-lg-0,.awxb-component.awxb-component .pb-lg-0,.awxb-component.awxb-component .py-lg-0{padding-bottom:0 !important}.awxb-view.awxb-view .pl-lg-0,.awxb-view.awxb-view .px-lg-0,.awxb-component.awxb-component .pl-lg-0,.awxb-component.awxb-component .px-lg-0{padding-left:0 !important}.awxb-view.awxb-view .p-lg-1,.awxb-component.awxb-component .p-lg-1{padding:.25rem !important}.awxb-view.awxb-view .pt-lg-1,.awxb-view.awxb-view .py-lg-1,.awxb-component.awxb-component .pt-lg-1,.awxb-component.awxb-component .py-lg-1{padding-top:.25rem !important}.awxb-view.awxb-view .pr-lg-1,.awxb-view.awxb-view .px-lg-1,.awxb-component.awxb-component .pr-lg-1,.awxb-component.awxb-component .px-lg-1{padding-right:.25rem !important}.awxb-view.awxb-view .pb-lg-1,.awxb-view.awxb-view .py-lg-1,.awxb-component.awxb-component .pb-lg-1,.awxb-component.awxb-component .py-lg-1{padding-bottom:.25rem !important}.awxb-view.awxb-view .pl-lg-1,.awxb-view.awxb-view .px-lg-1,.awxb-component.awxb-component .pl-lg-1,.awxb-component.awxb-component .px-lg-1{padding-left:.25rem !important}.awxb-view.awxb-view .p-lg-2,.awxb-component.awxb-component .p-lg-2{padding:.5rem !important}.awxb-view.awxb-view .pt-lg-2,.awxb-view.awxb-view .py-lg-2,.awxb-component.awxb-component .pt-lg-2,.awxb-component.awxb-component .py-lg-2{padding-top:.5rem !important}.awxb-view.awxb-view .pr-lg-2,.awxb-view.awxb-view .px-lg-2,.awxb-component.awxb-component .pr-lg-2,.awxb-component.awxb-component .px-lg-2{padding-right:.5rem !important}.awxb-view.awxb-view .pb-lg-2,.awxb-view.awxb-view .py-lg-2,.awxb-component.awxb-component .pb-lg-2,.awxb-component.awxb-component .py-lg-2{padding-bottom:.5rem !important}.awxb-view.awxb-view .pl-lg-2,.awxb-view.awxb-view .px-lg-2,.awxb-component.awxb-component .pl-lg-2,.awxb-component.awxb-component .px-lg-2{padding-left:.5rem !important}.awxb-view.awxb-view .p-lg-3,.awxb-component.awxb-component .p-lg-3{padding:1rem !important}.awxb-view.awxb-view .pt-lg-3,.awxb-view.awxb-view .py-lg-3,.awxb-component.awxb-component .pt-lg-3,.awxb-component.awxb-component .py-lg-3{padding-top:1rem !important}.awxb-view.awxb-view .pr-lg-3,.awxb-view.awxb-view .px-lg-3,.awxb-component.awxb-component .pr-lg-3,.awxb-component.awxb-component .px-lg-3{padding-right:1rem !important}.awxb-view.awxb-view .pb-lg-3,.awxb-view.awxb-view .py-lg-3,.awxb-component.awxb-component .pb-lg-3,.awxb-component.awxb-component .py-lg-3{padding-bottom:1rem !important}.awxb-view.awxb-view .pl-lg-3,.awxb-view.awxb-view .px-lg-3,.awxb-component.awxb-component .pl-lg-3,.awxb-component.awxb-component .px-lg-3{padding-left:1rem !important}.awxb-view.awxb-view .p-lg-4,.awxb-component.awxb-component .p-lg-4{padding:1.5rem !important}.awxb-view.awxb-view .pt-lg-4,.awxb-view.awxb-view .py-lg-4,.awxb-component.awxb-component .pt-lg-4,.awxb-component.awxb-component .py-lg-4{padding-top:1.5rem !important}.awxb-view.awxb-view .pr-lg-4,.awxb-view.awxb-view .px-lg-4,.awxb-component.awxb-component .pr-lg-4,.awxb-component.awxb-component .px-lg-4{padding-right:1.5rem !important}.awxb-view.awxb-view .pb-lg-4,.awxb-view.awxb-view .py-lg-4,.awxb-component.awxb-component .pb-lg-4,.awxb-component.awxb-component .py-lg-4{padding-bottom:1.5rem !important}.awxb-view.awxb-view .pl-lg-4,.awxb-view.awxb-view .px-lg-4,.awxb-component.awxb-component .pl-lg-4,.awxb-component.awxb-component .px-lg-4{padding-left:1.5rem !important}.awxb-view.awxb-view .p-lg-5,.awxb-component.awxb-component .p-lg-5{padding:3rem !important}.awxb-view.awxb-view .pt-lg-5,.awxb-view.awxb-view .py-lg-5,.awxb-component.awxb-component .pt-lg-5,.awxb-component.awxb-component .py-lg-5{padding-top:3rem !important}.awxb-view.awxb-view .pr-lg-5,.awxb-view.awxb-view .px-lg-5,.awxb-component.awxb-component .pr-lg-5,.awxb-component.awxb-component .px-lg-5{padding-right:3rem !important}.awxb-view.awxb-view .pb-lg-5,.awxb-view.awxb-view .py-lg-5,.awxb-component.awxb-component .pb-lg-5,.awxb-component.awxb-component .py-lg-5{padding-bottom:3rem !important}.awxb-view.awxb-view .pl-lg-5,.awxb-view.awxb-view .px-lg-5,.awxb-component.awxb-component .pl-lg-5,.awxb-component.awxb-component .px-lg-5{padding-left:3rem !important}.awxb-view.awxb-view .m-lg-auto,.awxb-component.awxb-component .m-lg-auto{margin:auto !important}.awxb-view.awxb-view .mt-lg-auto,.awxb-view.awxb-view .my-lg-auto,.awxb-component.awxb-component .mt-lg-auto,.awxb-component.awxb-component .my-lg-auto{margin-top:auto !important}.awxb-view.awxb-view .mr-lg-auto,.awxb-view.awxb-view .mx-lg-auto,.awxb-component.awxb-component .mr-lg-auto,.awxb-component.awxb-component .mx-lg-auto{margin-right:auto !important}.awxb-view.awxb-view .mb-lg-auto,.awxb-view.awxb-view .my-lg-auto,.awxb-component.awxb-component .mb-lg-auto,.awxb-component.awxb-component .my-lg-auto{margin-bottom:auto !important}.awxb-view.awxb-view .ml-lg-auto,.awxb-view.awxb-view .mx-lg-auto,.awxb-component.awxb-component .ml-lg-auto,.awxb-component.awxb-component .mx-lg-auto{margin-left:auto !important}}@media(min-width: 1200px){.awxb-view.awxb-view .m-xl-0,.awxb-component.awxb-component .m-xl-0{margin:0 !important}.awxb-view.awxb-view .mt-xl-0,.awxb-view.awxb-view .my-xl-0,.awxb-component.awxb-component .mt-xl-0,.awxb-component.awxb-component .my-xl-0{margin-top:0 !important}.awxb-view.awxb-view .mr-xl-0,.awxb-view.awxb-view .mx-xl-0,.awxb-component.awxb-component .mr-xl-0,.awxb-component.awxb-component .mx-xl-0{margin-right:0 !important}.awxb-view.awxb-view .mb-xl-0,.awxb-view.awxb-view .my-xl-0,.awxb-component.awxb-component .mb-xl-0,.awxb-component.awxb-component .my-xl-0{margin-bottom:0 !important}.awxb-view.awxb-view .ml-xl-0,.awxb-view.awxb-view .mx-xl-0,.awxb-component.awxb-component .ml-xl-0,.awxb-component.awxb-component .mx-xl-0{margin-left:0 !important}.awxb-view.awxb-view .m-xl-1,.awxb-component.awxb-component .m-xl-1{margin:.25rem !important}.awxb-view.awxb-view .mt-xl-1,.awxb-view.awxb-view .my-xl-1,.awxb-component.awxb-component .mt-xl-1,.awxb-component.awxb-component .my-xl-1{margin-top:.25rem !important}.awxb-view.awxb-view .mr-xl-1,.awxb-view.awxb-view .mx-xl-1,.awxb-component.awxb-component .mr-xl-1,.awxb-component.awxb-component .mx-xl-1{margin-right:.25rem !important}.awxb-view.awxb-view .mb-xl-1,.awxb-view.awxb-view .my-xl-1,.awxb-component.awxb-component .mb-xl-1,.awxb-component.awxb-component .my-xl-1{margin-bottom:.25rem !important}.awxb-view.awxb-view .ml-xl-1,.awxb-view.awxb-view .mx-xl-1,.awxb-component.awxb-component .ml-xl-1,.awxb-component.awxb-component .mx-xl-1{margin-left:.25rem !important}.awxb-view.awxb-view .m-xl-2,.awxb-component.awxb-component .m-xl-2{margin:.5rem !important}.awxb-view.awxb-view .mt-xl-2,.awxb-view.awxb-view .my-xl-2,.awxb-component.awxb-component .mt-xl-2,.awxb-component.awxb-component .my-xl-2{margin-top:.5rem !important}.awxb-view.awxb-view .mr-xl-2,.awxb-view.awxb-view .mx-xl-2,.awxb-component.awxb-component .mr-xl-2,.awxb-component.awxb-component .mx-xl-2{margin-right:.5rem !important}.awxb-view.awxb-view .mb-xl-2,.awxb-view.awxb-view .my-xl-2,.awxb-component.awxb-component .mb-xl-2,.awxb-component.awxb-component .my-xl-2{margin-bottom:.5rem !important}.awxb-view.awxb-view .ml-xl-2,.awxb-view.awxb-view .mx-xl-2,.awxb-component.awxb-component .ml-xl-2,.awxb-component.awxb-component .mx-xl-2{margin-left:.5rem !important}.awxb-view.awxb-view .m-xl-3,.awxb-component.awxb-component .m-xl-3{margin:1rem !important}.awxb-view.awxb-view .mt-xl-3,.awxb-view.awxb-view .my-xl-3,.awxb-component.awxb-component .mt-xl-3,.awxb-component.awxb-component .my-xl-3{margin-top:1rem !important}.awxb-view.awxb-view .mr-xl-3,.awxb-view.awxb-view .mx-xl-3,.awxb-component.awxb-component .mr-xl-3,.awxb-component.awxb-component .mx-xl-3{margin-right:1rem !important}.awxb-view.awxb-view .mb-xl-3,.awxb-view.awxb-view .my-xl-3,.awxb-component.awxb-component .mb-xl-3,.awxb-component.awxb-component .my-xl-3{margin-bottom:1rem !important}.awxb-view.awxb-view .ml-xl-3,.awxb-view.awxb-view .mx-xl-3,.awxb-component.awxb-component .ml-xl-3,.awxb-component.awxb-component .mx-xl-3{margin-left:1rem !important}.awxb-view.awxb-view .m-xl-4,.awxb-component.awxb-component .m-xl-4{margin:1.5rem !important}.awxb-view.awxb-view .mt-xl-4,.awxb-view.awxb-view .my-xl-4,.awxb-component.awxb-component .mt-xl-4,.awxb-component.awxb-component .my-xl-4{margin-top:1.5rem !important}.awxb-view.awxb-view .mr-xl-4,.awxb-view.awxb-view .mx-xl-4,.awxb-component.awxb-component .mr-xl-4,.awxb-component.awxb-component .mx-xl-4{margin-right:1.5rem !important}.awxb-view.awxb-view .mb-xl-4,.awxb-view.awxb-view .my-xl-4,.awxb-component.awxb-component .mb-xl-4,.awxb-component.awxb-component .my-xl-4{margin-bottom:1.5rem !important}.awxb-view.awxb-view .ml-xl-4,.awxb-view.awxb-view .mx-xl-4,.awxb-component.awxb-component .ml-xl-4,.awxb-component.awxb-component .mx-xl-4{margin-left:1.5rem !important}.awxb-view.awxb-view .m-xl-5,.awxb-component.awxb-component .m-xl-5{margin:3rem !important}.awxb-view.awxb-view .mt-xl-5,.awxb-view.awxb-view .my-xl-5,.awxb-component.awxb-component .mt-xl-5,.awxb-component.awxb-component .my-xl-5{margin-top:3rem !important}.awxb-view.awxb-view .mr-xl-5,.awxb-view.awxb-view .mx-xl-5,.awxb-component.awxb-component .mr-xl-5,.awxb-component.awxb-component .mx-xl-5{margin-right:3rem !important}.awxb-view.awxb-view .mb-xl-5,.awxb-view.awxb-view .my-xl-5,.awxb-component.awxb-component .mb-xl-5,.awxb-component.awxb-component .my-xl-5{margin-bottom:3rem !important}.awxb-view.awxb-view .ml-xl-5,.awxb-view.awxb-view .mx-xl-5,.awxb-component.awxb-component .ml-xl-5,.awxb-component.awxb-component .mx-xl-5{margin-left:3rem !important}.awxb-view.awxb-view .p-xl-0,.awxb-component.awxb-component .p-xl-0{padding:0 !important}.awxb-view.awxb-view .pt-xl-0,.awxb-view.awxb-view .py-xl-0,.awxb-component.awxb-component .pt-xl-0,.awxb-component.awxb-component .py-xl-0{padding-top:0 !important}.awxb-view.awxb-view .pr-xl-0,.awxb-view.awxb-view .px-xl-0,.awxb-component.awxb-component .pr-xl-0,.awxb-component.awxb-component .px-xl-0{padding-right:0 !important}.awxb-view.awxb-view .pb-xl-0,.awxb-view.awxb-view .py-xl-0,.awxb-component.awxb-component .pb-xl-0,.awxb-component.awxb-component .py-xl-0{padding-bottom:0 !important}.awxb-view.awxb-view .pl-xl-0,.awxb-view.awxb-view .px-xl-0,.awxb-component.awxb-component .pl-xl-0,.awxb-component.awxb-component .px-xl-0{padding-left:0 !important}.awxb-view.awxb-view .p-xl-1,.awxb-component.awxb-component .p-xl-1{padding:.25rem !important}.awxb-view.awxb-view .pt-xl-1,.awxb-view.awxb-view .py-xl-1,.awxb-component.awxb-component .pt-xl-1,.awxb-component.awxb-component .py-xl-1{padding-top:.25rem !important}.awxb-view.awxb-view .pr-xl-1,.awxb-view.awxb-view .px-xl-1,.awxb-component.awxb-component .pr-xl-1,.awxb-component.awxb-component .px-xl-1{padding-right:.25rem !important}.awxb-view.awxb-view .pb-xl-1,.awxb-view.awxb-view .py-xl-1,.awxb-component.awxb-component .pb-xl-1,.awxb-component.awxb-component .py-xl-1{padding-bottom:.25rem !important}.awxb-view.awxb-view .pl-xl-1,.awxb-view.awxb-view .px-xl-1,.awxb-component.awxb-component .pl-xl-1,.awxb-component.awxb-component .px-xl-1{padding-left:.25rem !important}.awxb-view.awxb-view .p-xl-2,.awxb-component.awxb-component .p-xl-2{padding:.5rem !important}.awxb-view.awxb-view .pt-xl-2,.awxb-view.awxb-view .py-xl-2,.awxb-component.awxb-component .pt-xl-2,.awxb-component.awxb-component .py-xl-2{padding-top:.5rem !important}.awxb-view.awxb-view .pr-xl-2,.awxb-view.awxb-view .px-xl-2,.awxb-component.awxb-component .pr-xl-2,.awxb-component.awxb-component .px-xl-2{padding-right:.5rem !important}.awxb-view.awxb-view .pb-xl-2,.awxb-view.awxb-view .py-xl-2,.awxb-component.awxb-component .pb-xl-2,.awxb-component.awxb-component .py-xl-2{padding-bottom:.5rem !important}.awxb-view.awxb-view .pl-xl-2,.awxb-view.awxb-view .px-xl-2,.awxb-component.awxb-component .pl-xl-2,.awxb-component.awxb-component .px-xl-2{padding-left:.5rem !important}.awxb-view.awxb-view .p-xl-3,.awxb-component.awxb-component .p-xl-3{padding:1rem !important}.awxb-view.awxb-view .pt-xl-3,.awxb-view.awxb-view .py-xl-3,.awxb-component.awxb-component .pt-xl-3,.awxb-component.awxb-component .py-xl-3{padding-top:1rem !important}.awxb-view.awxb-view .pr-xl-3,.awxb-view.awxb-view .px-xl-3,.awxb-component.awxb-component .pr-xl-3,.awxb-component.awxb-component .px-xl-3{padding-right:1rem !important}.awxb-view.awxb-view .pb-xl-3,.awxb-view.awxb-view .py-xl-3,.awxb-component.awxb-component .pb-xl-3,.awxb-component.awxb-component .py-xl-3{padding-bottom:1rem !important}.awxb-view.awxb-view .pl-xl-3,.awxb-view.awxb-view .px-xl-3,.awxb-component.awxb-component .pl-xl-3,.awxb-component.awxb-component .px-xl-3{padding-left:1rem !important}.awxb-view.awxb-view .p-xl-4,.awxb-component.awxb-component .p-xl-4{padding:1.5rem !important}.awxb-view.awxb-view .pt-xl-4,.awxb-view.awxb-view .py-xl-4,.awxb-component.awxb-component .pt-xl-4,.awxb-component.awxb-component .py-xl-4{padding-top:1.5rem !important}.awxb-view.awxb-view .pr-xl-4,.awxb-view.awxb-view .px-xl-4,.awxb-component.awxb-component .pr-xl-4,.awxb-component.awxb-component .px-xl-4{padding-right:1.5rem !important}.awxb-view.awxb-view .pb-xl-4,.awxb-view.awxb-view .py-xl-4,.awxb-component.awxb-component .pb-xl-4,.awxb-component.awxb-component .py-xl-4{padding-bottom:1.5rem !important}.awxb-view.awxb-view .pl-xl-4,.awxb-view.awxb-view .px-xl-4,.awxb-component.awxb-component .pl-xl-4,.awxb-component.awxb-component .px-xl-4{padding-left:1.5rem !important}.awxb-view.awxb-view .p-xl-5,.awxb-component.awxb-component .p-xl-5{padding:3rem !important}.awxb-view.awxb-view .pt-xl-5,.awxb-view.awxb-view .py-xl-5,.awxb-component.awxb-component .pt-xl-5,.awxb-component.awxb-component .py-xl-5{padding-top:3rem !important}.awxb-view.awxb-view .pr-xl-5,.awxb-view.awxb-view .px-xl-5,.awxb-component.awxb-component .pr-xl-5,.awxb-component.awxb-component .px-xl-5{padding-right:3rem !important}.awxb-view.awxb-view .pb-xl-5,.awxb-view.awxb-view .py-xl-5,.awxb-component.awxb-component .pb-xl-5,.awxb-component.awxb-component .py-xl-5{padding-bottom:3rem !important}.awxb-view.awxb-view .pl-xl-5,.awxb-view.awxb-view .px-xl-5,.awxb-component.awxb-component .pl-xl-5,.awxb-component.awxb-component .px-xl-5{padding-left:3rem !important}.awxb-view.awxb-view .m-xl-auto,.awxb-component.awxb-component .m-xl-auto{margin:auto !important}.awxb-view.awxb-view .mt-xl-auto,.awxb-view.awxb-view .my-xl-auto,.awxb-component.awxb-component .mt-xl-auto,.awxb-component.awxb-component .my-xl-auto{margin-top:auto !important}.awxb-view.awxb-view .mr-xl-auto,.awxb-view.awxb-view .mx-xl-auto,.awxb-component.awxb-component .mr-xl-auto,.awxb-component.awxb-component .mx-xl-auto{margin-right:auto !important}.awxb-view.awxb-view .mb-xl-auto,.awxb-view.awxb-view .my-xl-auto,.awxb-component.awxb-component .mb-xl-auto,.awxb-component.awxb-component .my-xl-auto{margin-bottom:auto !important}.awxb-view.awxb-view .ml-xl-auto,.awxb-view.awxb-view .mx-xl-auto,.awxb-component.awxb-component .ml-xl-auto,.awxb-component.awxb-component .mx-xl-auto{margin-left:auto !important}}@keyframes svg-dash{0%{stroke-dashoffset:5}50%{stroke-dashoffset:500}100%{stroke-dashoffset:1000}}.awxb-view.awxb-view::after,.awxb-component.awxb-component::after{display:block;clear:both;content:""}.awxb-view.awxb-view a,.awxb-component.awxb-component a{color:#1285b3}.awxb-view.awxb-view a:hover,.awxb-component.awxb-component a:hover{color:#17a8e1}.awxb-view.awxb-view h1,.awxb-component.awxb-component h1{font-size:2rem}.awxb-view.awxb-view h2,.awxb-component.awxb-component h2{font-size:1.75rem}.awxb-view.awxb-view h3,.awxb-component.awxb-component h3{font-size:1.5rem}.awxb-view.awxb-view h4,.awxb-component.awxb-component h4{font-size:1.25rem}.awxb-view.awxb-view h5,.awxb-component.awxb-component h5{font-size:1rem}.awxb-view.awxb-view h6,.awxb-component.awxb-component h6{font-size:.875rem}.awxb-view.awxb-view h1 span,.awxb-view.awxb-view h2 span,.awxb-view.awxb-view h3 span,.awxb-view.awxb-view h4 span,.awxb-view.awxb-view h5 span,.awxb-view.awxb-view h6 span,.awxb-component.awxb-component h1 span,.awxb-component.awxb-component h2 span,.awxb-component.awxb-component h3 span,.awxb-component.awxb-component h4 span,.awxb-component.awxb-component h5 span,.awxb-component.awxb-component h6 span{font-size:inherit;color:inherit}.awxb-view.awxb-view img,.awxb-component.awxb-component img{margin:0;max-height:none;max-width:none}.awxb-view.awxb-view .container-fluid,.awxb-view.awxb-view .container,.awxb-view.awxb-view .row,.awxb-component.awxb-component .container-fluid,.awxb-component.awxb-component .container,.awxb-component.awxb-component .row{clear:both}.awxb-view.awxb-view .container-fluid:after,.awxb-view.awxb-view .container-fluid:before,.awxb-view.awxb-view .container:after,.awxb-view.awxb-view .container:before,.awxb-view.awxb-view .row:after,.awxb-view.awxb-view .row:before,.awxb-component.awxb-component .container-fluid:after,.awxb-component.awxb-component .container-fluid:before,.awxb-component.awxb-component .container:after,.awxb-component.awxb-component .container:before,.awxb-component.awxb-component .row:after,.awxb-component.awxb-component .row:before{display:inherit}.awxb-view.awxb-view .block,.awxb-component.awxb-component .block{padding-top:30px;padding-bottom:30px}.awxb-view.awxb-view .label,.awxb-component.awxb-component .label{display:inline;padding:0;line-height:inherit;border-radius:0;color:inherit}.awxb-view.awxb-view .units,.awxb-component.awxb-component .units{font-size:80%}.awxb-view.awxb-view .details .units,.awxb-component.awxb-component .details .units{font-size:100%}.awxb-view.awxb-view .info,.awxb-component.awxb-component .info{font-size:.8rem}.awxb-view.awxb-view .block-title,.awxb-component.awxb-component .block-title{display:inline-block;margin:0 0 1rem 0;background:#17a8e1;color:#fff;padding:.1875rem 2.5rem .25rem .3125rem;border:0;font-weight:500;text-transform:uppercase}.awxb-view.awxb-view .block-title+span,.awxb-component.awxb-component .block-title+span{padding-left:.625rem}.awxb-view.awxb-view .block-title.pull-bottom,.awxb-component.awxb-component .block-title.pull-bottom{margin-bottom:0}.awxb-view.awxb-view .block-title.block-title-bordered,.awxb-component.awxb-component .block-title.block-title-bordered{display:block;background:rgba(0,0,0,0);border-bottom:1px solid #17a8e1;padding:0}.awxb-view.awxb-view .block-title.block-title-bordered>span,.awxb-component.awxb-component .block-title.block-title-bordered>span{display:inline-block;background:#17a8e1;padding:.1875rem 2.5rem .25rem .3125rem;margin-bottom:-1px}.awxb-view.awxb-view .block-title.block-title-bordered.pull-bottom,.awxb-component.awxb-component .block-title.block-title-bordered.pull-bottom{margin-bottom:-1px;border-bottom:0}.awxb-view.awxb-view .block-title-secondary,.awxb-component.awxb-component .block-title-secondary{display:inline-block;margin:0 0 .5rem 0;border:2px solid #777;color:#333;padding:.1875rem .3125rem .125rem .3125rem;font-size:.75rem;font-weight:500;text-transform:uppercase}.awxb-view.awxb-view .section-header,.awxb-component.awxb-component .section-header{position:relative}.awxb-view.awxb-view .awxb-view-push-top,.awxb-component.awxb-component .awxb-view-push-top{padding-top:30px}.awxb-view.awxb-view .awxb-view-push-bottom,.awxb-component.awxb-component .awxb-view-push-bottom{padding-bottom:30px}.awxb-view.awxb-view h1.section-title,.awxb-view.awxb-view h2.section-title,.awxb-view.awxb-view h3.section-title,.awxb-component.awxb-component h1.section-title,.awxb-component.awxb-component h2.section-title,.awxb-component.awxb-component h3.section-title{border-bottom:1px solid #999;padding-bottom:.375rem}.awxb-view.awxb-view h1.table-title,.awxb-view.awxb-view h2.table-title,.awxb-view.awxb-view h3.table-title,.awxb-component.awxb-component h1.table-title,.awxb-component.awxb-component h2.table-title,.awxb-component.awxb-component h3.table-title{border-bottom:0;margin-bottom:10px}.awxb-view.awxb-view h1.block-title,.awxb-component.awxb-component h1.block-title{font-size:2rem}.awxb-view.awxb-view h2.block-title,.awxb-component.awxb-component h2.block-title{font-size:1.5rem}.awxb-view.awxb-view h3.block-title,.awxb-component.awxb-component h3.block-title{font-size:1.25rem}.awxb-view.awxb-view h4.block-title,.awxb-component.awxb-component h4.block-title{font-size:1rem}.awxb-view.awxb-view h5.block-title,.awxb-component.awxb-component h5.block-title{font-size:.875rem}.awxb-view.awxb-view h6.block-title,.awxb-component.awxb-component h6.block-title{font-size:.75rem}.awxb-view.awxb-view ul.horizontal,.awxb-component.awxb-component ul.horizontal{margin:0;padding:0;list-style:none}.awxb-view.awxb-view ul.horizontal::after,.awxb-component.awxb-component ul.horizontal::after{display:block;clear:both;content:""}.awxb-view.awxb-view ul.horizontal>li,.awxb-component.awxb-component ul.horizontal>li{float:left;margin:0;padding:0}.awxb-view.awxb-view ul.grid-label-value,.awxb-component.awxb-component ul.grid-label-value{margin:0;padding:0;list-style:none}.awxb-view.awxb-view ul.grid-label-value::after,.awxb-component.awxb-component ul.grid-label-value::after{display:block;clear:both;content:""}.awxb-view.awxb-view ul.grid-label-value>li,.awxb-component.awxb-component ul.grid-label-value>li{margin:0;padding:0}.awxb-view.awxb-view ul.grid-label-value>li::after,.awxb-component.awxb-component ul.grid-label-value>li::after{display:block;clear:both;content:""}.awxb-view.awxb-view ul.grid-label-value>li p,.awxb-component.awxb-component ul.grid-label-value>li p{margin:0}.awxb-view.awxb-view ul.grid-label-value>li p:first-child,.awxb-component.awxb-component ul.grid-label-value>li p:first-child{float:left;width:45%;font-size:.875rem}.awxb-view.awxb-view ul.grid-label-value>li p:last-child,.awxb-component.awxb-component ul.grid-label-value>li p:last-child{float:right;width:55%;font-weight:bold}.awxb-view.awxb-view .hover:hover,.awxb-component.awxb-component .hover:hover{cursor:pointer}.awxb-view.awxb-view .table,.awxb-component.awxb-component .table{border-top:2px solid #17a8e1}.awxb-view.awxb-view .table tr,.awxb-component.awxb-component .table tr{border:1px solid rgba(0,0,0,0)}.awxb-view.awxb-view .table tr.hover:hover td,.awxb-component.awxb-component .table tr.hover:hover td{background:#f9f9f9}.awxb-view.awxb-view .table th,.awxb-component.awxb-component .table th{padding:.375rem .5rem;font-size:.75rem;line-height:1}.awxb-view.awxb-view .table th.filled,.awxb-component.awxb-component .table th.filled{background:#eee;color:#555}.awxb-view.awxb-view .table td,.awxb-component.awxb-component .table td{padding:.375rem .5rem}.awxb-view.awxb-view .table.table-linked tr.link:hover,.awxb-component.awxb-component .table.table-linked tr.link:hover{cursor:pointer;background-color:#fff;border-left:1px solid #17a8e1;border-right:1px solid #17a8e1}.awxb-view.awxb-view .table.table-linked tr.link:hover td,.awxb-component.awxb-component .table.table-linked tr.link:hover td{border-top:1px solid #17a8e1;border-bottom:1px solid #17a8e1}.awxb-view.awxb-view .icon,.awxb-component.awxb-component .icon{width:2rem;height:2rem}.awxb-view.awxb-view .btn,.awxb-component.awxb-component .btn{color:#555;padding:.125rem .625rem;line-height:1.5;-webkit-appearance:none !important}.awxb-view.awxb-view .btn:hover,.awxb-component.awxb-component .btn:hover{color:#333}.awxb-view.awxb-view .btn.btn-icon,.awxb-component.awxb-component .btn.btn-icon{padding:0;border:0;background:rgba(0,0,0,0)}.awxb-view.awxb-view .btn.btn-bordered,.awxb-view.awxb-view .btn-nav>.btn,.awxb-component.awxb-component .btn.btn-bordered,.awxb-component.awxb-component .btn-nav>.btn{font-size:.6875rem;font-weight:600;padding:.3rem .375rem .2rem;border:2px solid #333;color:#333;background-color:rgba(0,0,0,0);text-transform:uppercase;border-radius:0}.awxb-view.awxb-view .btn.btn-bordered:hover,.awxb-view.awxb-view .btn-nav>.btn:hover,.awxb-view.awxb-view .btn.btn-bordered.selected,.awxb-view.awxb-view .btn-nav>.btn.selected,.awxb-component.awxb-component .btn.btn-bordered:hover,.awxb-component.awxb-component .btn-nav>.btn:hover,.awxb-component.awxb-component .btn.btn-bordered.selected,.awxb-component.awxb-component .btn-nav>.btn.selected{background-color:#333;color:#fff}.awxb-view.awxb-view .btn.btn-bordered:hover>i,.awxb-view.awxb-view .btn-nav>.btn:hover>i,.awxb-view.awxb-view .btn.btn-bordered:hover svg,.awxb-view.awxb-view .btn-nav>.btn:hover svg,.awxb-view.awxb-view .btn.btn-bordered.selected>i,.awxb-view.awxb-view .btn-nav>.btn.selected>i,.awxb-view.awxb-view .btn.btn-bordered.selected svg,.awxb-view.awxb-view .btn-nav>.btn.selected svg,.awxb-component.awxb-component .btn.btn-bordered:hover>i,.awxb-component.awxb-component .btn-nav>.btn:hover>i,.awxb-component.awxb-component .btn.btn-bordered:hover svg,.awxb-component.awxb-component .btn-nav>.btn:hover svg,.awxb-component.awxb-component .btn.btn-bordered.selected>i,.awxb-component.awxb-component .btn-nav>.btn.selected>i,.awxb-component.awxb-component .btn.btn-bordered.selected svg,.awxb-component.awxb-component .btn-nav>.btn.selected svg{fill:#fff}.awxb-view.awxb-view .btn.btn-disabled,.awxb-component.awxb-component .btn.btn-disabled{border-color:rgba(0,0,0,0);border-bottom:2px solid #333;font-style:italic;color:gray}.awxb-view.awxb-view .btn.btn-icon-left,.awxb-view.awxb-view .btn.btn-icon-right,.awxb-component.awxb-component .btn.btn-icon-left,.awxb-component.awxb-component .btn.btn-icon-right{position:relative}.awxb-view.awxb-view .btn.btn-icon-left span,.awxb-view.awxb-view .btn.btn-icon-right span,.awxb-component.awxb-component .btn.btn-icon-left span,.awxb-component.awxb-component .btn.btn-icon-right span{display:inline-block}.awxb-view.awxb-view .btn.btn-icon-left>svg,.awxb-view.awxb-view .btn.btn-icon-right>svg,.awxb-component.awxb-component .btn.btn-icon-left>svg,.awxb-component.awxb-component .btn.btn-icon-right>svg{position:absolute;top:50%;margin-top:-7px;width:14px;height:14px}.awxb-view.awxb-view .btn.btn-icon-left span,.awxb-component.awxb-component .btn.btn-icon-left span{margin-left:15px}.awxb-view.awxb-view .btn.btn-icon-left>svg,.awxb-component.awxb-component .btn.btn-icon-left>svg{left:2px}.awxb-view.awxb-view .btn.btn-icon-right span,.awxb-component.awxb-component .btn.btn-icon-right span{margin-right:15px}.awxb-view.awxb-view .btn.btn-icon-right>svg,.awxb-component.awxb-component .btn.btn-icon-right>svg{right:2px}.awxb-view.awxb-view .btn.btn-more,.awxb-component.awxb-component .btn.btn-more{position:relative;font-size:.6875rem;font-weight:600;padding:.25rem .375rem;color:#333;background-color:rgba(0,0,0,0);text-transform:uppercase;border-radius:0}.awxb-view.awxb-view .btn.btn-more span,.awxb-component.awxb-component .btn.btn-more span{display:inline-block;margin-right:15px}.awxb-view.awxb-view .btn.btn-more>i,.awxb-component.awxb-component .btn.btn-more>i{position:absolute;top:50%;right:5px;margin-top:-6px;width:12px;height:12px;fill:#333}.awxb-view.awxb-view .btn.btn-more>i svg,.awxb-component.awxb-component .btn.btn-more>i svg{width:12px;height:12px}.awxb-view.awxb-view .btn.btn-more:hover,.awxb-component.awxb-component .btn.btn-more:hover{background-color:#333;color:#fff}.awxb-view.awxb-view .btn.btn-more:hover>i,.awxb-component.awxb-component .btn.btn-more:hover>i{fill:#fff}.awxb-view.awxb-view .btn-dropdown,.awxb-component.awxb-component .btn-dropdown{display:inline-block;position:relative}.awxb-view.awxb-view .btn-dropdown>.btn-dropdown-content,.awxb-component.awxb-component .btn-dropdown>.btn-dropdown-content{display:none;position:absolute;top:0;left:50%;background-color:#fff;z-index:1000}.awxb-view.awxb-view .btn-group .btn,.awxb-component.awxb-component .btn-group .btn{margin-right:0}.awxb-view.awxb-view .btn-group .btn-dropdown,.awxb-component.awxb-component .btn-group .btn-dropdown{float:left}.awxb-view.awxb-view .btn-group .btn-dropdown .btn,.awxb-component.awxb-component .btn-group .btn-dropdown .btn{float:none}.awxb-view.awxb-view .btn-group .btn-dropdown .btn-bordered,.awxb-view.awxb-view .btn-group .btn-dropdown .btn-nav>.btn,.awxb-view.awxb-view .btn-group .btn-dropdown .awxb-component.awxb-component .btn-nav>.btn,.awxb-component.awxb-component .btn-group .btn-dropdown .btn-bordered,.awxb-component.awxb-component .btn-group .btn-dropdown .awxb-view.awxb-view .btn-nav>.btn,.awxb-component.awxb-component .btn-group .btn-dropdown .btn-nav>.btn{border-left:0}.awxb-view.awxb-view .btn-nav>.btn,.awxb-component.awxb-component .btn-nav>.btn{padding:.2rem .375rem .2rem;margin:0}.awxb-view.awxb-view .divider,.awxb-component.awxb-component .divider{margin:30px 0;height:2px;background-color:#eee}.awxb-view.awxb-view .divider::after,.awxb-component.awxb-component .divider::after{display:block;clear:both;content:""}.awxb-view.awxb-view .row+.divider,.awxb-component.awxb-component .row+.divider{margin-top:0}.awxb-view.awxb-view .row.pull-top,.awxb-component.awxb-component .row.pull-top{padding-top:0 !important}.awxb-view.awxb-view .row.pull-bottom,.awxb-component.awxb-component .row.pull-bottom{padding-bottom:0 !important}.awxb-view.awxb-view .data-item,.awxb-component.awxb-component .data-item{margin-top:.3125rem}.awxb-view.awxb-view .data-item:first-child,.awxb-component.awxb-component .data-item:first-child{margin-top:0}.awxb-view.awxb-view .data-item.data-item-full,.awxb-component.awxb-component .data-item.data-item-full{width:100% !important}.awxb-view.awxb-view .data-item p,.awxb-component.awxb-component .data-item p{margin:0}.awxb-view.awxb-view .data-item .data-item-label,.awxb-component.awxb-component .data-item .data-item-label{font-size:.75rem;text-transform:uppercase;color:#777}.awxb-view.awxb-view .data-item .data-item-val,.awxb-component.awxb-component .data-item .data-item-val{font-size:1rem;font-weight:500}.awxb-view.awxb-view .data-item.data-item-icon,.awxb-component.awxb-component .data-item.data-item-icon{position:relative}.awxb-view.awxb-view .data-item.data-item-icon .icon,.awxb-component.awxb-component .data-item.data-item-icon .icon{position:absolute;top:.25rem}.awxb-view.awxb-view .data-item.data-item-icon .icon>svg,.awxb-component.awxb-component .data-item.data-item-icon .icon>svg{width:25px;height:25px}.awxb-view.awxb-view .data-item.data-item-icon .data-item-label,.awxb-view.awxb-view .data-item.data-item-icon .data-item-val,.awxb-component.awxb-component .data-item.data-item-icon .data-item-label,.awxb-component.awxb-component .data-item.data-item-icon .data-item-val{margin:0 0 0 35px}.awxb-view.awxb-view .data-item.data-item-lg .data-item-val,.awxb-component.awxb-component .data-item.data-item-lg .data-item-val{font-size:1.125rem;font-weight:normal}.awxb-view.awxb-view .data-item.data-item-lg .data-item-label,.awxb-component.awxb-component .data-item.data-item-lg .data-item-label{margin-top:-0.125rem;font-size:.75rem}.awxb-view.awxb-view .indicator,.awxb-component.awxb-component .indicator{display:inline-block;width:20px;height:20px;background-color:#ccc;border-radius:10px}.awxb-view.awxb-view .indicator:before,.awxb-component.awxb-component .indicator:before{content:"";position:absolute;top:-4px;left:-4px;bottom:-4px;right:-4px;border:2px solid #ddd;border-radius:14px}.awxb-view.awxb-view .awxjs__loader,.awxb-component.awxb-component .awxjs__loader{box-sizing:initial}.awxb-view.awxb-view .nodata,.awxb-component.awxb-component .nodata{color:#9ba5ae}.awxb-view.awxb-view .section-title-wrapper,.awxb-component.awxb-component .section-title-wrapper{position:relative}.awxb-view.awxb-view .section-title-wrapper-bordered,.awxb-component.awxb-component .section-title-wrapper-bordered{border-bottom:2px solid #17a8e1;margin-bottom:1rem}.awxb-view.awxb-view .section-title-wrapper-bordered .block-title,.awxb-component.awxb-component .section-title-wrapper-bordered .block-title{margin-bottom:0}.awxb-view.awxb-view .u-met,.awxb-component.awxb-component .u-met{display:none}.awxb-view.awxb-view .u-switcher,.awxb-component.awxb-component .u-switcher{position:absolute;top:6px;right:0}.awxb-view.awxb-view .u-switcher .btn,.awxb-component.awxb-component .u-switcher .btn{padding:.2rem .5rem .2rem;line-height:1.3}.awxb-view.awxb-view .awxb-credit,.awxb-component.awxb-component .awxb-credit{border-top:1px solid #ddd;color:#aaa;font-size:12px;margin:20px 15px 30px;padding-top:5px}@media(max-width: 768px){.awxb-view.awxb-view .container .container,.awxb-view.awxb-view .container .container-fluid,.awxb-view.awxb-view .container-fluid .container,.awxb-view.awxb-view .container-fluid .container-fluid,.awxb-component.awxb-component .container .container,.awxb-component.awxb-component .container .container-fluid,.awxb-component.awxb-component .container-fluid .container,.awxb-component.awxb-component .container-fluid .container-fluid{padding-left:0;padding-right:0}}.awxb-view.awxb-view .form-control,.awxb-component.awxb-component .form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;color:#333;background-color:#fff;border:1px solid #ccc;border-radius:.2rem}.awxb-view.awxb-view .form-inline .form-group,.awxb-component.awxb-component .form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.awxb-view.awxb-view .form-inline .btn,.awxb-component.awxb-component .form-inline .btn{display:inline-block}.awxb-view.awxb-view section.header,.awxb-component.awxb-component section.header{margin-bottom:20px}.awxb-view.awxb-view section.header .nav,.awxb-component.awxb-component section.header .nav{float:left;margin:0;padding:0;list-style:none}.awxb-view.awxb-view section.header .nav>li,.awxb-component.awxb-component section.header .nav>li{display:inline-block;margin:0 0 0 8px;padding:0;font-size:.75rem;font-weight:600;text-transform:uppercase;border-bottom:4px solid #efefef}.awxb-view.awxb-view section.header .nav>li:first-child,.awxb-component.awxb-component section.header .nav>li:first-child{margin-left:0}.awxb-view.awxb-view section.header .nav>li>a,.awxb-component.awxb-component section.header .nav>li>a{text-decoration:none}@media(max-width: 576px){.awxb-view.awxb-view section.header .nav,.awxb-component.awxb-component section.header .nav{float:none;margin-bottom:.75rem}}.awxb-view.awxb-view .section-nav,.awxb-component.awxb-component .section-nav{position:relative}.awxb-view.awxb-view .section-nav .btn-group,.awxb-view.awxb-view .section-nav .pagination,.awxb-component.awxb-component .section-nav .btn-group,.awxb-component.awxb-component .section-nav .pagination{position:absolute;bottom:5px;right:0}.awxb-view.awxb-view .section-nav .btn-dropdown .btn-dropdown-content,.awxb-component.awxb-component .section-nav .btn-dropdown .btn-dropdown-content{top:1.75rem}.awxb-view.awxb-view .section-nav .dropdown-date-selector,.awxb-component.awxb-component .section-nav .dropdown-date-selector{margin-left:-204px}.awxb-view.awxb-view .pagination,.awxb-component.awxb-component .pagination{margin:0;padding:0;list-style:none}.awxb-view.awxb-view .pagination>li,.awxb-component.awxb-component .pagination>li{float:left;margin:0 0 0 1px;padding:0}.awxb-view.awxb-view .pagination>li:first-child,.awxb-component.awxb-component .pagination>li:first-child{margin-left:0}.awxb-view.awxb-view .pagination>li>a,.awxb-component.awxb-component .pagination>li>a{font-size:.75rem;font-weight:bold;padding:.375rem .625rem;border-color:#333;color:#333;background-color:#efefef;text-transform:uppercase;text-decoration:none;border-radius:0}.awxb-view.awxb-view .pagination>li>a:hover,.awxb-component.awxb-component .pagination>li>a:hover{background-color:#17a8e1;color:#fff}.awxb-view.awxb-view .pagination>li>a.disabled,.awxb-component.awxb-component .pagination>li>a.disabled{background-color:#eee}.awxb-view.awxb-view .pagination>li.selected>a,.awxb-component.awxb-component .pagination>li.selected>a{background-color:#333;color:#fff}.awxb-view.awxb-view .pagination-label,.awxb-component.awxb-component .pagination-label{float:left;margin:0 -0.125rem 0 1rem;font-size:.6875rem;font-weight:bold;line-height:1.6875rem;text-transform:uppercase}.awxb-view.awxb-view .btn-nav>.btn,.awxb-component.awxb-component .btn-nav>.btn{padding:.25rem .6875rem}.awxb-view.awxb-view .btn-nav>.btn.disabled,.awxb-component.awxb-component .btn-nav>.btn.disabled{background-color:#eee}.awxb-view.awxb-view .btn-nav>.btn.btn-icon,.awxb-component.awxb-component .btn-nav>.btn.btn-icon{position:relative;width:40px;height:1.75rem;padding:0}.awxb-view.awxb-view .btn-nav>.btn.btn-icon .icon,.awxb-component.awxb-component .btn-nav>.btn.btn-icon .icon{position:absolute;top:50%;left:50%;margin:-10px 0 0 -10px;max-width:90%;max-height:90%}.awxb-view.awxb-view .btn-nav .icon,.awxb-component.awxb-component .btn-nav .icon{width:1.25rem;height:1.25rem}.awxb-view.awxb-view .btn-group::after,.awxb-component.awxb-component .btn-group::after{display:block;clear:both;content:""}.awxb-view.awxb-view .btn-group .btn,.awxb-component.awxb-component .btn-group .btn{display:block;float:left}.awxb-view.awxb-view .btn-group.btn-nav>.btn,.awxb-component.awxb-component .btn-group.btn-nav>.btn{border-left:1px solid #fff}.awxb-view.awxb-view .btn-group.btn-nav>.btn:first-child,.awxb-component.awxb-component .btn-group.btn-nav>.btn:first-child{border-left:0}.awxb-view.awxb-view .btn-group .btn-bordered:not(:nth-child(1)),.awxb-view.awxb-view .btn-group .btn-nav>.btn:not(:nth-child(1)),.awxb-view.awxb-view .btn-group .awxb-component.awxb-component .btn-nav>.btn:not(:nth-child(1)),.awxb-component.awxb-component .btn-group .btn-bordered:not(:nth-child(1)),.awxb-component.awxb-component .btn-group .awxb-view.awxb-view .btn-nav>.btn:not(:nth-child(1)),.awxb-component.awxb-component .btn-group .btn-nav>.btn:not(:nth-child(1)){border-left:0;margin-left:0}.awxb-view.awxb-view .dropdown,.awxb-component.awxb-component .dropdown{position:relative}.awxb-view.awxb-view .dropdown .dropdown-items,.awxb-component.awxb-component .dropdown .dropdown-items{display:block;position:absolute;top:100%;left:0;z-index:1000;float:left;max-width:175px;background:#fff;font-size:.75rem;margin:0;padding:0;list-style:none;visibility:hidden;white-space:nowrap;box-shadow:0 1px 2px 2px rgba(0,0,0,.2)}.awxb-view.awxb-view .dropdown .dropdown-items>li,.awxb-component.awxb-component .dropdown .dropdown-items>li{margin:0;padding:0;border-top:1px solid #efefef;word-wrap:nowrap}.awxb-view.awxb-view .dropdown .dropdown-items>li:first-child,.awxb-component.awxb-component .dropdown .dropdown-items>li:first-child{border-top:0}.awxb-view.awxb-view .dropdown .dropdown-items>li a,.awxb-component.awxb-component .dropdown .dropdown-items>li a{display:block;padding:.375rem 1.5rem .375rem .625rem;border-left:3px solid #6f6f6f;text-decoration:none}.awxb-view.awxb-view .dropdown .dropdown-items>li a:hover,.awxb-component.awxb-component .dropdown .dropdown-items>li a:hover{background:#333;color:#fff;border-left-color:#17a8e1}.awxb-view.awxb-view .dropdown:hover .dropdown-items,.awxb-component.awxb-component .dropdown:hover .dropdown-items{visibility:visible}.awxb-view.awxb-view .dropdown-date-selector,.awxb-component.awxb-component .dropdown-date-selector{width:235px;margin-left:-117px;padding:.75rem;border-bottom:2px solid #17a8e1;background-color:#333 !important;color:#fff}.awxb-view.awxb-view .dropdown-date-selector form,.awxb-component.awxb-component .dropdown-date-selector form{position:relative}.awxb-view.awxb-view .dropdown-date-selector button,.awxb-component.awxb-component .dropdown-date-selector button{position:absolute;top:50%;right:0;margin-top:-10px}.awxb-view.awxb-view .dropdown-date-selector .icon-right,.awxb-component.awxb-component .dropdown-date-selector .icon-right{width:20px;height:20px;fill:#fff}@media(max-width: 768px){.awxb-view.awxb-view .section-nav .btn-group,.awxb-component.awxb-component .section-nav .btn-group{position:relative;bottom:0;left:0}.awxb-view.awxb-view .section-nav .dropdown-date-selector,.awxb-component.awxb-component .section-nav .dropdown-date-selector{margin-left:-100px}}.awxb-view.awxb-view .table,.awxb-component.awxb-component .table{margin-bottom:0}.awxb-view.awxb-view .table-data,.awxb-component.awxb-component .table-data{border-top:0}.awxb-view.awxb-view .table-data th,.awxb-component.awxb-component .table-data th{border-top:0}.awxb-view.awxb-view .table-data th.col-date,.awxb-component.awxb-component .table-data th.col-date{width:50px}.awxb-view.awxb-view .table-data th.col-time,.awxb-component.awxb-component .table-data th.col-time{width:80px}.awxb-view.awxb-view .table-data td,.awxb-component.awxb-component .table-data td{padding:.75rem .375rem;font-size:.875rem;text-align:center;vertical-align:middle}@media(max-width: 768px){.awxb-view.awxb-view .table-data td,.awxb-component.awxb-component .table-data td{font-size:.875rem;padding:.5rem .375rem}}.awxb-view.awxb-view .table-data tr.header,.awxb-component.awxb-component .table-data tr.header{border:0;border-top:2px solid #fff}.awxb-view.awxb-view .table-data tr.header td,.awxb-component.awxb-component .table-data tr.header td{padding:.1375rem .375rem;font-size:.6875rem;text-transform:uppercase}.awxb-view.awxb-view .table-data tr.day td,.awxb-component.awxb-component .table-data tr.day td{text-align:left;padding:1.5rem .375rem .375rem .375rem;background:#fff;border-bottom:2px solid #333}.awxb-view.awxb-view .table-data tr.today,.awxb-view.awxb-view .table-data tr.now,.awxb-component.awxb-component .table-data tr.today,.awxb-component.awxb-component .table-data tr.now{border:1px solid #333}.awxb-view.awxb-view .table-data tr.today>td,.awxb-view.awxb-view .table-data tr.now>td,.awxb-component.awxb-component .table-data tr.today>td,.awxb-component.awxb-component .table-data tr.now>td{border-top:1px solid #333;border-bottom:1px solid #333}.awxb-view.awxb-view .table-data .day,.awxb-component.awxb-component .table-data .day{font-weight:bold;font-size:.85rem;text-transform:uppercase}.awxb-view.awxb-view .table-data .detail,.awxb-component.awxb-component .table-data .detail{font-size:.6rem}.awxb-view.awxb-view .table-data .wxicon,.awxb-component.awxb-component .table-data .wxicon{height:35px}.awxb-view.awxb-view .table-data .wx,.awxb-view.awxb-view .table-data td.wx,.awxb-component.awxb-component .table-data .wx,.awxb-component.awxb-component .table-data td.wx{text-align:left}.awxb-view.awxb-view .table-history th:nth-child(3),.awxb-component.awxb-component .table-history th:nth-child(3){width:20%}.awxb-view.awxb-view .table-history th:nth-child(n+4),.awxb-component.awxb-component .table-history th:nth-child(n+4){background:#1285b3;color:#fff;text-align:center}.awxb-view.awxb-view .table-history th.col-date,.awxb-component.awxb-component .table-history th.col-date{width:30px}@media(max-width: 767.98px){.awxb-view.awxb-view .table-history th:nth-child(3),.awxb-view.awxb-view .table-history th:nth-child(5),.awxb-view.awxb-view .table-history th:nth-child(6),.awxb-view.awxb-view .table-history th:nth-child(8),.awxb-component.awxb-component .table-history th:nth-child(3),.awxb-component.awxb-component .table-history th:nth-child(5),.awxb-component.awxb-component .table-history th:nth-child(6),.awxb-component.awxb-component .table-history th:nth-child(8){display:none !important}}@media(max-width: 575.98px){.awxb-view.awxb-view .table-history th:nth-child(7),.awxb-component.awxb-component .table-history th:nth-child(7){display:none !important}}.awxb-view.awxb-view .table-history td:nth-child(1),.awxb-component.awxb-component .table-history td:nth-child(1){text-align:center}.awxb-view.awxb-view .table-history td:nth-child(n+4),.awxb-component.awxb-component .table-history td:nth-child(n+4){text-align:center}.awxb-view.awxb-view .table-history td:nth-child(4),.awxb-view.awxb-view .table-history td:nth-child(5),.awxb-view.awxb-view .table-history td:nth-child(6),.awxb-view.awxb-view .table-history td:nth-child(10),.awxb-view.awxb-view .table-history td:nth-child(11),.awxb-view.awxb-view .table-history td:nth-child(12),.awxb-view.awxb-view .table-history td:nth-child(16),.awxb-view.awxb-view .table-history td:nth-child(17),.awxb-view.awxb-view .table-history td:nth-child(18),.awxb-component.awxb-component .table-history td:nth-child(4),.awxb-component.awxb-component .table-history td:nth-child(5),.awxb-component.awxb-component .table-history td:nth-child(6),.awxb-component.awxb-component .table-history td:nth-child(10),.awxb-component.awxb-component .table-history td:nth-child(11),.awxb-component.awxb-component .table-history td:nth-child(12),.awxb-component.awxb-component .table-history td:nth-child(16),.awxb-component.awxb-component .table-history td:nth-child(17),.awxb-component.awxb-component .table-history td:nth-child(18){background:#f5f5f5}@media(max-width: 767.98px){.awxb-view.awxb-view .table-history td:nth-child(7),.awxb-view.awxb-view .table-history td:nth-child(8),.awxb-view.awxb-view .table-history td:nth-child(9),.awxb-view.awxb-view .table-history td:nth-child(10),.awxb-view.awxb-view .table-history td:nth-child(11),.awxb-view.awxb-view .table-history td:nth-child(12),.awxb-view.awxb-view .table-history td:nth-child(16),.awxb-view.awxb-view .table-history td:nth-child(17),.awxb-view.awxb-view .table-history td:nth-child(18),.awxb-component.awxb-component .table-history td:nth-child(7),.awxb-component.awxb-component .table-history td:nth-child(8),.awxb-component.awxb-component .table-history td:nth-child(9),.awxb-component.awxb-component .table-history td:nth-child(10),.awxb-component.awxb-component .table-history td:nth-child(11),.awxb-component.awxb-component .table-history td:nth-child(12),.awxb-component.awxb-component .table-history td:nth-child(16),.awxb-component.awxb-component .table-history td:nth-child(17),.awxb-component.awxb-component .table-history td:nth-child(18){display:none !important}}@media(max-width: 575.98px){.awxb-view.awxb-view .table-history td:nth-child(3),.awxb-view.awxb-view .table-history td:nth-child(n+7):not(:last-child),.awxb-component.awxb-component .table-history td:nth-child(3),.awxb-component.awxb-component .table-history td:nth-child(n+7):not(:last-child){display:none !important}}.awxb-view.awxb-view .table-history tr.header td:nth-child(n+4),.awxb-component.awxb-component .table-history tr.header td:nth-child(n+4){background-color:#17a8e1;color:#fff}.awxb-view.awxb-view .table-history tr.header td:nth-child(7),.awxb-view.awxb-view .table-history tr.header td:nth-child(8),.awxb-view.awxb-view .table-history tr.header td:nth-child(9),.awxb-view.awxb-view .table-history tr.header td:nth-child(13),.awxb-view.awxb-view .table-history tr.header td:nth-child(14),.awxb-view.awxb-view .table-history tr.header td:nth-child(15),.awxb-view.awxb-view .table-history tr.header td:nth-child(19),.awxb-component.awxb-component .table-history tr.header td:nth-child(7),.awxb-component.awxb-component .table-history tr.header td:nth-child(8),.awxb-component.awxb-component .table-history tr.header td:nth-child(9),.awxb-component.awxb-component .table-history tr.header td:nth-child(13),.awxb-component.awxb-component .table-history tr.header td:nth-child(14),.awxb-component.awxb-component .table-history tr.header td:nth-child(15),.awxb-component.awxb-component .table-history tr.header td:nth-child(19){background-color:#28b3e9}.awxb-view.awxb-view .table-history tr.header td:last-child,.awxb-component.awxb-component .table-history tr.header td:last-child{background-color:rgba(0,0,0,0)}.awxb-view.awxb-view .table-forecast-hourly th:nth-child(3),.awxb-component.awxb-component .table-forecast-hourly th:nth-child(3){width:20%}.awxb-view.awxb-view .table-forecast-hourly th:nth-child(n+4),.awxb-component.awxb-component .table-forecast-hourly th:nth-child(n+4){text-align:center;background:#1285b3;color:#fff}@media(max-width: 575.98px){.awxb-view.awxb-view .table-forecast-hourly th,.awxb-component.awxb-component .table-forecast-hourly th{background:rgba(0,0,0,0)}}@media(max-width: 767.98px){.awxb-view.awxb-view .table-forecast-hourly th:nth-child(3),.awxb-view.awxb-view .table-forecast-hourly th:nth-child(6),.awxb-view.awxb-view .table-forecast-hourly th:nth-child(7),.awxb-view.awxb-view .table-forecast-hourly th:nth-child(8),.awxb-view.awxb-view .table-forecast-hourly td:nth-child(3),.awxb-view.awxb-view .table-forecast-hourly td:nth-child(6),.awxb-view.awxb-view .table-forecast-hourly td:nth-child(7),.awxb-view.awxb-view .table-forecast-hourly td:nth-child(8),.awxb-component.awxb-component .table-forecast-hourly th:nth-child(3),.awxb-component.awxb-component .table-forecast-hourly th:nth-child(6),.awxb-component.awxb-component .table-forecast-hourly th:nth-child(7),.awxb-component.awxb-component .table-forecast-hourly th:nth-child(8),.awxb-component.awxb-component .table-forecast-hourly td:nth-child(3),.awxb-component.awxb-component .table-forecast-hourly td:nth-child(6),.awxb-component.awxb-component .table-forecast-hourly td:nth-child(7),.awxb-component.awxb-component .table-forecast-hourly td:nth-child(8){display:none !important}}@media(max-width: 767.98px){.awxb-view.awxb-view .table-forecast-hourly th:nth-child(5),.awxb-view.awxb-view .table-forecast-hourly td:nth-child(5),.awxb-component.awxb-component .table-forecast-hourly th:nth-child(5),.awxb-component.awxb-component .table-forecast-hourly td:nth-child(5){display:none !important}}.awxb-view.awxb-view .table-obs-hourly th:nth-child(3),.awxb-component.awxb-component .table-obs-hourly th:nth-child(3){width:20%}@media(max-width: 767.98px){.awxb-view.awxb-view .table-obs-hourly th:nth-child(3),.awxb-view.awxb-view .table-obs-hourly th:nth-child(6),.awxb-view.awxb-view .table-obs-hourly th:nth-child(8),.awxb-view.awxb-view .table-obs-hourly th:nth-child(9),.awxb-view.awxb-view .table-obs-hourly td:nth-child(3),.awxb-view.awxb-view .table-obs-hourly td:nth-child(6),.awxb-view.awxb-view .table-obs-hourly td:nth-child(8),.awxb-view.awxb-view .table-obs-hourly td:nth-child(9),.awxb-component.awxb-component .table-obs-hourly th:nth-child(3),.awxb-component.awxb-component .table-obs-hourly th:nth-child(6),.awxb-component.awxb-component .table-obs-hourly th:nth-child(8),.awxb-component.awxb-component .table-obs-hourly th:nth-child(9),.awxb-component.awxb-component .table-obs-hourly td:nth-child(3),.awxb-component.awxb-component .table-obs-hourly td:nth-child(6),.awxb-component.awxb-component .table-obs-hourly td:nth-child(8),.awxb-component.awxb-component .table-obs-hourly td:nth-child(9){display:none !important}}@media(max-width: 575.98px){.awxb-view.awxb-view .table-obs-hourly th:nth-child(5),.awxb-view.awxb-view .table-obs-hourly th:nth-child(7),.awxb-view.awxb-view .table-obs-hourly td:nth-child(5),.awxb-view.awxb-view .table-obs-hourly td:nth-child(7),.awxb-component.awxb-component .table-obs-hourly th:nth-child(5),.awxb-component.awxb-component .table-obs-hourly th:nth-child(7),.awxb-component.awxb-component .table-obs-hourly td:nth-child(5),.awxb-component.awxb-component .table-obs-hourly td:nth-child(7){display:none !important}}.awxb-view.awxb-view .table-obs-hourly th:nth-child(n+4),.awxb-component.awxb-component .table-obs-hourly th:nth-child(n+4){text-align:center;background:#1285b3;color:#fff}@media(max-width: 575.98px){.awxb-view.awxb-view .table-obs-hourly th,.awxb-component.awxb-component .table-obs-hourly th{background:rgba(0,0,0,0)}}.awxb-view.awxb-view .table-obs-hourly td:nth-child(n+4),.awxb-component.awxb-component .table-obs-hourly td:nth-child(n+4){text-align:center}.awxb-view.awxb-view .table-normals th:nth-child(n+1),.awxb-component.awxb-component .table-normals th:nth-child(n+1){background:#1285b3;color:#fff;text-align:center}.awxb-view.awxb-view .table-normals th.col-date,.awxb-component.awxb-component .table-normals th.col-date{width:60px;font-weight:bold}@media(max-width: 767.98px){.awxb-view.awxb-view .table-normals th:nth-child(4),.awxb-component.awxb-component .table-normals th:nth-child(4){display:none !important}}.awxb-view.awxb-view .table-normals td:nth-child(5),.awxb-view.awxb-view .table-normals td:nth-child(6),.awxb-component.awxb-component .table-normals td:nth-child(5),.awxb-component.awxb-component .table-normals td:nth-child(6){background:#f5f5f5}@media(max-width: 767.98px){.awxb-view.awxb-view .table-normals td:nth-child(6),.awxb-view.awxb-view .table-normals td:nth-child(7),.awxb-view.awxb-view .table-normals td:nth-child(8),.awxb-component.awxb-component .table-normals td:nth-child(6),.awxb-component.awxb-component .table-normals td:nth-child(7),.awxb-component.awxb-component .table-normals td:nth-child(8){display:none !important}}.awxb-view.awxb-view .table-normals tr.header td:nth-child(n+2),.awxb-component.awxb-component .table-normals tr.header td:nth-child(n+2){background-color:#17a8e1;color:#fff}.awxb-view.awxb-view .table-normals tr.header td:nth-child(5),.awxb-view.awxb-view .table-normals tr.header td:nth-child(6),.awxb-component.awxb-component .table-normals tr.header td:nth-child(5),.awxb-component.awxb-component .table-normals tr.header td:nth-child(6){background-color:#28b3e9}.awxb-view.awxb-view .table-sunmoon th:nth-child(n+1),.awxb-component.awxb-component .table-sunmoon th:nth-child(n+1){background:#1285b3;color:#fff;text-align:center}@media(max-width: 767.98px){.awxb-view.awxb-view .table-sunmoon th:nth-child(4),.awxb-view.awxb-view .table-sunmoon th:nth-child(5),.awxb-component.awxb-component .table-sunmoon th:nth-child(4),.awxb-component.awxb-component .table-sunmoon th:nth-child(5){display:none !important}}.awxb-view.awxb-view .table-sunmoon td:nth-child(4),.awxb-view.awxb-view .table-sunmoon td:nth-child(5),.awxb-view.awxb-view .table-sunmoon td:nth-child(8),.awxb-view.awxb-view .table-sunmoon td:nth-child(9),.awxb-component.awxb-component .table-sunmoon td:nth-child(4),.awxb-component.awxb-component .table-sunmoon td:nth-child(5),.awxb-component.awxb-component .table-sunmoon td:nth-child(8),.awxb-component.awxb-component .table-sunmoon td:nth-child(9){background:#f5f5f5}@media(max-width: 767.98px){.awxb-view.awxb-view .table-sunmoon td:nth-child(6),.awxb-view.awxb-view .table-sunmoon td:nth-child(7),.awxb-view.awxb-view .table-sunmoon td:nth-child(8),.awxb-view.awxb-view .table-sunmoon td:nth-child(9),.awxb-component.awxb-component .table-sunmoon td:nth-child(6),.awxb-component.awxb-component .table-sunmoon td:nth-child(7),.awxb-component.awxb-component .table-sunmoon td:nth-child(8),.awxb-component.awxb-component .table-sunmoon td:nth-child(9){display:none !important}}.awxb-view.awxb-view .table-sunmoon td.value-phase,.awxb-component.awxb-component .table-sunmoon td.value-phase{text-align:left}.awxb-view.awxb-view .table-sunmoon td.value-phase img,.awxb-component.awxb-component .table-sunmoon td.value-phase img{padding-right:10px;width:40px}.awxb-view.awxb-view .table-sunmoon tr.header td:nth-child(n+2),.awxb-component.awxb-component .table-sunmoon tr.header td:nth-child(n+2){background-color:#17a8e1;color:#fff}.awxb-view.awxb-view .table-sunmoon tr.header td:nth-child(4),.awxb-view.awxb-view .table-sunmoon tr.header td:nth-child(5),.awxb-view.awxb-view .table-sunmoon tr.header td:nth-child(8),.awxb-view.awxb-view .table-sunmoon tr.header td:nth-child(9),.awxb-component.awxb-component .table-sunmoon tr.header td:nth-child(4),.awxb-component.awxb-component .table-sunmoon tr.header td:nth-child(5),.awxb-component.awxb-component .table-sunmoon tr.header td:nth-child(8),.awxb-component.awxb-component .table-sunmoon tr.header td:nth-child(9){background-color:#28b3e9}@media(max-width: 767.98px){.awxb-view.awxb-view .table-sunmoon tr.header td:nth-child(6),.awxb-view.awxb-view .table-sunmoon tr.header td:nth-child(7),.awxb-view.awxb-view .table-sunmoon tr.header td:nth-child(8),.awxb-component.awxb-component .table-sunmoon tr.header td:nth-child(6),.awxb-component.awxb-component .table-sunmoon tr.header td:nth-child(7),.awxb-component.awxb-component .table-sunmoon tr.header td:nth-child(8){display:none !important}}.awxb-view.awxb-view .table-summary tr td:first-child,.awxb-component.awxb-component .table-summary tr td:first-child{font-size:.75rem;font-weight:bold;vertical-align:middle}.awxb-view.awxb-view .local-header,.awxb-component.awxb-component .local-header{margin-bottom:20px}.awxb-view.awxb-view .local-header .meta,.awxb-component.awxb-component .local-header .meta{margin:3px 0 0;font-size:.85rem;color:#777}@media(max-width: 576px){.awxb-view.awxb-view .local-header .meta,.awxb-component.awxb-component .local-header .meta{display:none}}.awxb-view.awxb-view .local-header .u-switcher,.awxb-component.awxb-component .local-header .u-switcher{right:15px}.awxb-view.awxb-view .local-header ul.info,.awxb-component.awxb-component .local-header ul.info{margin:0;padding:0;list-style:none;border-bottom:4px solid #17a8e1}.awxb-view.awxb-view .local-header ul.info>li,.awxb-component.awxb-component .local-header ul.info>li{display:inline-block}.awxb-view.awxb-view .local-header ul.info>li.title,.awxb-component.awxb-component .local-header ul.info>li.title{font-size:1.5rem}.awxb-view.awxb-view .local-header ul.nav,.awxb-component.awxb-component .local-header ul.nav{position:relative;padding:0;margin:0 0 0 30px;list-style:none}.awxb-view.awxb-view .local-header ul.nav>li,.awxb-component.awxb-component .local-header ul.nav>li{position:relative;display:inline-block;font-size:.875rem}.awxb-view.awxb-view .local-header ul.nav>li:before,.awxb-component.awxb-component .local-header ul.nav>li:before{content:"";position:absolute;height:3px;bottom:-4px;left:0;right:0;background-color:#17a8e1;visibility:hidden}.awxb-view.awxb-view .local-header ul.nav>li:hover:before,.awxb-view.awxb-view .local-header ul.nav>li:focus:before,.awxb-component.awxb-component .local-header ul.nav>li:hover:before,.awxb-component.awxb-component .local-header ul.nav>li:focus:before{visibility:visible}.awxb-view.awxb-view .local-header ul.nav>li>a,.awxb-component.awxb-component .local-header ul.nav>li>a{position:relative;padding:0 8px 8px;border-bottom:3px solid rgba(0,0,0,0);color:#777;font-weight:600;text-decoration:none;transform:translateZ(0)}.awxb-view.awxb-view .local-header ul.nav>li>a:hover,.awxb-component.awxb-component .local-header ul.nav>li>a:hover{color:#000}.awxb-view.awxb-view .local-header ul.nav>li>a:before,.awxb-component.awxb-component .local-header ul.nav>li>a:before{content:"";position:absolute;bottom:-10px;left:50%;margin-left:-8px;border-width:8px 8px 0;width:0;height:0;border-color:rgba(0,0,0,0);border-style:solid;border-top-color:#17a8e1;visibility:hidden}.awxb-view.awxb-view .local-header ul.nav>li.selected:before,.awxb-component.awxb-component .local-header ul.nav>li.selected:before{visibility:visible}.awxb-view.awxb-view .local-header ul.nav>li.selected>a,.awxb-component.awxb-component .local-header ul.nav>li.selected>a{color:#000}.awxb-view.awxb-view .local-header ul.nav>li.selected>a:before,.awxb-component.awxb-component .local-header ul.nav>li.selected>a:before{visibility:visible}@media(max-width: 768px){.awxb-view.awxb-view .local-header ul.info>li,.awxb-component.awxb-component .local-header ul.info>li{display:block}.awxb-view.awxb-view .local-header ul.nav,.awxb-component.awxb-component .local-header ul.nav{margin:5px 0 0 0}.awxb-view.awxb-view .local-header ul.nav>li,.awxb-component.awxb-component .local-header ul.nav>li{margin-left:8px}.awxb-view.awxb-view .local-header ul.nav>li:first-child,.awxb-component.awxb-component .local-header ul.nav>li:first-child{margin-left:0}.awxb-view.awxb-view .local-header ul.nav>li:nth-child(4),.awxb-component.awxb-component .local-header ul.nav>li:nth-child(4){display:none}.awxb-view.awxb-view .local-header ul.nav>li a,.awxb-component.awxb-component .local-header ul.nav>li a{padding-left:0;padding-right:0}.awxb-view.awxb-view .local-header ul.nav>li a:before,.awxb-component.awxb-component .local-header ul.nav>li a:before{bottom:-7px}}.awxb-view.awxb-view .awxb-local.awxb-local>.row,.awxb-component.awxb-component .awxb-local.awxb-local>.row{padding-bottom:30px}@media(max-width: 576px){.awxb-view.awxb-view .awxb-local.awxb-local>.row,.awxb-component.awxb-component .awxb-local.awxb-local>.row{padding-bottom:20px}}.awxb-view.awxb-view .awxb-local.awxb-local>.row:last-child,.awxb-component.awxb-component .awxb-local.awxb-local>.row:last-child{padding-bottom:0}.awxb-view.awxb-view .awxb-local.awxb-local .threats,.awxb-component.awxb-component .awxb-local.awxb-local .threats{position:relative;margin:1.5rem 0 2rem;border-top:3px solid #db0000;border-bottom:1px solid #db0000}.awxb-view.awxb-view .awxb-local.awxb-local .threats::after,.awxb-component.awxb-component .awxb-local.awxb-local .threats::after{display:block;clear:both;content:""}.awxb-view.awxb-view .awxb-local.awxb-local .threats i,.awxb-component.awxb-component .awxb-local.awxb-local .threats i{position:absolute;top:.45rem;left:2px;fill:#db0000}.awxb-view.awxb-view .awxb-local.awxb-local .threats>p,.awxb-component.awxb-component .awxb-local.awxb-local .threats>p{margin:.625rem 110px .625rem 50px;color:#a80000}.awxb-view.awxb-view .awxb-local.awxb-local .threats .btn,.awxb-component.awxb-component .awxb-local.awxb-local .threats .btn{position:absolute;top:50%;right:0;margin-top:-0.875rem;border-color:#db0000;color:#db0000}.awxb-view.awxb-view .awxb-local.awxb-local .threats .btn .icon,.awxb-component.awxb-component .awxb-local.awxb-local .threats .btn .icon{fill:#db0000}.awxb-view.awxb-view .awxb-local.awxb-local .threats .btn:hover,.awxb-component.awxb-component .awxb-local.awxb-local .threats .btn:hover{background-color:#db0000;color:#fff}.awxb-view.awxb-view .awxb-local.awxb-local .threats .btn:hover .icon,.awxb-component.awxb-component .awxb-local.awxb-local .threats .btn:hover .icon{fill:#fff}@media(max-width: 768px){.awxb-view.awxb-view .awxb-local.awxb-local .threats,.awxb-component.awxb-component .awxb-local.awxb-local .threats{font-size:.875rem;text-align:right}.awxb-view.awxb-view .awxb-local.awxb-local .threats>p,.awxb-component.awxb-component .awxb-local.awxb-local .threats>p{margin-right:0;text-align:left}.awxb-view.awxb-view .awxb-local.awxb-local .threats .btn,.awxb-component.awxb-component .awxb-local.awxb-local .threats .btn{position:relative;top:0;margin:0 0 1rem 0}}.awxb-view.awxb-view .awxb-local.awxb-local .advisories,.awxb-view.awxb-view .awxb-local.awxb-local .advisories-listing,.awxb-component.awxb-component .awxb-local.awxb-local .advisories,.awxb-component.awxb-component .awxb-local.awxb-local .advisories-listing{margin:1.5rem 0 2rem}.awxb-view.awxb-view .awxb-local.awxb-local .threats+.advisories,.awxb-component.awxb-component .awxb-local.awxb-local .threats+.advisories{margin-top:-2rem;margin-bottom:2rem}.awxb-view.awxb-view .awxb-local.awxb-local .awxb-view-threats+.awxb-view-advisories,.awxb-component.awxb-component .awxb-local.awxb-local .awxb-view-threats+.awxb-view-advisories{margin-top:-2rem;margin-bottom:2rem}.awxb-view.awxb-view .awxb-local.awxb-local .obs small,.awxb-component.awxb-component .awxb-local.awxb-local .obs small{font-size:60%}.awxb-view.awxb-view .awxb-local.awxb-local .obs h5,.awxb-component.awxb-component .awxb-local.awxb-local .obs h5{margin-bottom:.375rem}.awxb-view.awxb-view .awxb-local.awxb-local .obs .timestamp,.awxb-component.awxb-component .awxb-local.awxb-local .obs .timestamp{font-size:.75rem}.awxb-view.awxb-view .awxb-local.awxb-local .obs .info,.awxb-component.awxb-component .awxb-local.awxb-local .obs .info{margin:0;font-size:.75rem}.awxb-view.awxb-view .awxb-local.awxb-local .obs .wx::after,.awxb-component.awxb-component .awxb-local.awxb-local .obs .wx::after{display:block;clear:both;content:""}.awxb-view.awxb-view .awxb-local.awxb-local .obs .wx .wxicon,.awxb-component.awxb-component .awxb-local.awxb-local .obs .wx .wxicon{float:right;width:50%;text-align:right}.awxb-view.awxb-view .awxb-local.awxb-local .obs .wx .wxicon img,.awxb-component.awxb-component .awxb-local.awxb-local .obs .wx .wxicon img{height:100px}.awxb-view.awxb-view .awxb-local.awxb-local .obs .wx .temps,.awxb-component.awxb-component .awxb-local.awxb-local .obs .wx .temps{float:left;width:50%}.awxb-view.awxb-view .awxb-local.awxb-local .obs .wx .temps::after,.awxb-component.awxb-component .awxb-local.awxb-local .obs .wx .temps::after{display:block;clear:both;content:""}.awxb-view.awxb-view .awxb-local.awxb-local .obs .wx .temps>p,.awxb-component.awxb-component .awxb-local.awxb-local .obs .wx .temps>p{margin:0;text-align:left}.awxb-view.awxb-view .awxb-local.awxb-local .obs .wx .temps .temp,.awxb-component.awxb-component .awxb-local.awxb-local .obs .wx .temps .temp{font-size:3rem}.awxb-view.awxb-view .awxb-local.awxb-local .obs .wx .temps .temp-alt,.awxb-component.awxb-component .awxb-local.awxb-local .obs .wx .temps .temp-alt{margin-top:-8px;font-size:1rem}.awxb-view.awxb-view .awxb-local.awxb-local .obs .wx .temps .temp-alt .units,.awxb-component.awxb-component .awxb-local.awxb-local .obs .wx .temps .temp-alt .units{font-size:1rem}.awxb-view.awxb-view .awxb-local.awxb-local .obs .weather,.awxb-component.awxb-component .awxb-local.awxb-local .obs .weather{font-size:1.25rem;line-height:1.5rem;text-align:left}.awxb-view.awxb-view .awxb-local.awxb-local .obs .details,.awxb-component.awxb-component .awxb-local.awxb-local .obs .details{margin-bottom:.375rem;font-size:.875rem}.awxb-view.awxb-view .awxb-local.awxb-local .obs .details::after,.awxb-component.awxb-component .awxb-local.awxb-local .obs .details::after{display:block;clear:both;content:""}.awxb-view.awxb-view .awxb-local.awxb-local .obs .details .units,.awxb-component.awxb-component .awxb-local.awxb-local .obs .details .units{font-size:.875rem}.awxb-view.awxb-view .awxb-local.awxb-local .obs .details .grid-label-value>li,.awxb-component.awxb-component .awxb-local.awxb-local .obs .details .grid-label-value>li{margin-top:.1875rem}.awxb-view.awxb-view .awxb-local.awxb-local .obs .details .grid-label-value>li:first-child,.awxb-component.awxb-component .awxb-local.awxb-local .obs .details .grid-label-value>li:first-child{margin-top:0}@media(min-width: 576px){.awxb-view.awxb-view .awxb-local.awxb-local .obs .details,.awxb-component.awxb-component .awxb-local.awxb-local .obs .details{margin-left:20px;padding-left:20px;border-left:1px solid #ccc}.awxb-view.awxb-view .awxb-local.awxb-local .obs .details>ul:nth-child(n+2)>li:first-child,.awxb-component.awxb-component .awxb-local.awxb-local .obs .details>ul:nth-child(n+2)>li:first-child{margin-top:.1875rem}}@media(max-width: 576px){.awxb-view.awxb-view .awxb-local.awxb-local .obs .station-title,.awxb-component.awxb-component .awxb-local.awxb-local .obs .station-title{display:block;padding:0}.awxb-view.awxb-view .awxb-local.awxb-local .obs .weather,.awxb-component.awxb-component .awxb-local.awxb-local .obs .weather{margin-bottom:0}.awxb-view.awxb-view .awxb-local.awxb-local .obs .details,.awxb-component.awxb-component .awxb-local.awxb-local .obs .details{margin:20px 0 20px;border-top:1px solid #ccc;padding-top:20px}.awxb-view.awxb-view .awxb-local.awxb-local .obs .details .grid-label-value,.awxb-component.awxb-component .awxb-local.awxb-local .obs .details .grid-label-value{display:inline-block;width:45%;padding:0}.awxb-view.awxb-view .awxb-local.awxb-local .obs .details .grid-label-value>li p,.awxb-component.awxb-component .awxb-local.awxb-local .obs .details .grid-label-value>li p{display:block;width:100%}.awxb-view.awxb-view .awxb-local.awxb-local .obs .details .grid-label-value>li:nth-child(n+2),.awxb-component.awxb-component .awxb-local.awxb-local .obs .details .grid-label-value>li:nth-child(n+2){margin-top:.375rem}}.awxb-view.awxb-view .awxb-local.awxb-local .outlook,.awxb-component.awxb-component .awxb-local.awxb-local .outlook{margin-top:20px}.awxb-view.awxb-view .awxb-local.awxb-local .outlook h5,.awxb-component.awxb-component .awxb-local.awxb-local .outlook h5{margin-bottom:.375rem}@media(max-width: 768px){.awxb-view.awxb-view .awxb-local.awxb-local .outlook,.awxb-component.awxb-component .awxb-local.awxb-local .outlook{font-size:.875rem}}.awxb-view.awxb-view .awxb-local.awxb-local .video-container,.awxb-component.awxb-component .awxb-local.awxb-local .video-container{margin-top:1.25rem;line-height:1rem}.awxb-view.awxb-view .awxb-local.awxb-local .video-container video,.awxb-component.awxb-component .awxb-local.awxb-local .video-container video{width:400px;height:225px}@media(max-width: 576px){.awxb-view.awxb-view .awxb-local.awxb-local .video-container video,.awxb-component.awxb-component .awxb-local.awxb-local .video-container video{width:100% !important;height:auto !important}}.awxb-view.awxb-view .awxb-local.awxb-local .nearby,.awxb-component.awxb-component .awxb-local.awxb-local .nearby{margin-bottom:1.875rem}.awxb-view.awxb-view .awxb-local.awxb-local .nearby ul>li,.awxb-component.awxb-component .awxb-local.awxb-local .nearby ul>li{position:relative;width:7rem;margin:0 0 0 20px}.awxb-view.awxb-view .awxb-local.awxb-local .nearby ul>li::after,.awxb-component.awxb-component .awxb-local.awxb-local .nearby ul>li::after{display:block;clear:both;content:""}.awxb-view.awxb-view .awxb-local.awxb-local .nearby ul>li:first-child,.awxb-component.awxb-component .awxb-local.awxb-local .nearby ul>li:first-child{margin-left:0}.awxb-view.awxb-view .awxb-local.awxb-local .nearby p,.awxb-component.awxb-component .awxb-local.awxb-local .nearby p{margin:0}.awxb-view.awxb-view .awxb-local.awxb-local .nearby .data,.awxb-component.awxb-component .awxb-local.awxb-local .nearby .data{padding-bottom:.25rem;border-bottom:2px solid #efefef}.awxb-view.awxb-view .awxb-local.awxb-local .nearby .data::after,.awxb-component.awxb-component .awxb-local.awxb-local .nearby .data::after{display:block;clear:both;content:""}.awxb-view.awxb-view .awxb-local.awxb-local .nearby .data .wxicon,.awxb-component.awxb-component .awxb-local.awxb-local .nearby .data .wxicon{float:right;width:50px;height:50px;text-align:right}.awxb-view.awxb-view .awxb-local.awxb-local .nearby .data .wxicon img,.awxb-component.awxb-component .awxb-local.awxb-local .nearby .data .wxicon img{height:50px}.awxb-view.awxb-view .awxb-local.awxb-local .nearby .data .temp,.awxb-component.awxb-component .awxb-local.awxb-local .nearby .data .temp{float:left;margin-top:15px;font-size:2rem;line-height:30px}@media(max-width: 992px){.awxb-view.awxb-view .awxb-local.awxb-local .nearby .place,.awxb-component.awxb-component .awxb-local.awxb-local .nearby .place{margin-bottom:10px}.awxb-view.awxb-view .awxb-local.awxb-local .nearby .place:last-child,.awxb-component.awxb-component .awxb-local.awxb-local .nearby .place:last-child{margin-bottom:0}.awxb-view.awxb-view .awxb-local.awxb-local .nearby ul>li,.awxb-component.awxb-component .awxb-local.awxb-local .nearby ul>li{width:45%}}.awxb-view.awxb-view .awxb-local.awxb-local .shortterm .period,.awxb-component.awxb-component .awxb-local.awxb-local .shortterm .period{font-size:1rem;font-weight:bold;margin-bottom:.375rem}.awxb-view.awxb-view .awxb-local.awxb-local .shortterm .wx::after,.awxb-component.awxb-component .awxb-local.awxb-local .shortterm .wx::after{display:block;clear:both;content:""}.awxb-view.awxb-view .awxb-local.awxb-local .shortterm .wx .wxicon,.awxb-component.awxb-component .awxb-local.awxb-local .shortterm .wx .wxicon{float:right;width:40%;text-align:right}.awxb-view.awxb-view .awxb-local.awxb-local .shortterm .wx .wxicon img,.awxb-component.awxb-component .awxb-local.awxb-local .shortterm .wx .wxicon img{height:80px}.awxb-view.awxb-view .awxb-local.awxb-local .shortterm .wx .wxicon .pop,.awxb-component.awxb-component .awxb-local.awxb-local .shortterm .wx .wxicon .pop{float:right;width:80px;text-align:center}.awxb-view.awxb-view .awxb-local.awxb-local .shortterm .wx .data,.awxb-component.awxb-component .awxb-local.awxb-local .shortterm .wx .data{float:left;width:60%}.awxb-view.awxb-view .awxb-local.awxb-local .shortterm .wx .data p,.awxb-component.awxb-component .awxb-local.awxb-local .shortterm .wx .data p{margin:0;text-align:left}.awxb-view.awxb-view .awxb-local.awxb-local .shortterm .wx .data p.temp,.awxb-component.awxb-component .awxb-local.awxb-local .shortterm .wx .data p.temp{font-size:2.5rem}.awxb-view.awxb-view .awxb-local.awxb-local .shortterm .wx .data p.wx-phrase,.awxb-component.awxb-component .awxb-local.awxb-local .shortterm .wx .data p.wx-phrase{height:40px;margin-top:-1px;font-size:1rem;line-height:1.2}.awxb-view.awxb-view .awxb-local.awxb-local .shortterm .details,.awxb-component.awxb-component .awxb-local.awxb-local .shortterm .details{margin-left:.3125;font-size:.8125rem}@media(max-width: 768px){.awxb-view.awxb-view .awxb-local.awxb-local .shortterm,.awxb-component.awxb-component .awxb-local.awxb-local .shortterm{padding-bottom:30px}.awxb-view.awxb-view .awxb-local.awxb-local .shortterm [class*=col-]:nth-child(n+2),.awxb-component.awxb-component .awxb-local.awxb-local .shortterm [class*=col-]:nth-child(n+2){margin-top:2rem}.awxb-view.awxb-view .awxb-local.awxb-local .shortterm .wx .data p.wx-phrase,.awxb-component.awxb-component .awxb-local.awxb-local .shortterm .wx .data p.wx-phrase{height:auto}.awxb-view.awxb-view .awxb-local.awxb-local .shortterm .details,.awxb-component.awxb-component .awxb-local.awxb-local .shortterm .details{margin-top:0}}.awxb-view.awxb-view .awxb-local.awxb-local .almanac,.awxb-component.awxb-component .awxb-local.awxb-local .almanac{font-size:.875rem}.awxb-view.awxb-view .awxb-local.awxb-local .almanac table,.awxb-component.awxb-component .awxb-local.awxb-local .almanac table{border:0}.awxb-view.awxb-view .awxb-local.awxb-local .almanac table tr,.awxb-view.awxb-view .awxb-local.awxb-local .almanac table th,.awxb-view.awxb-view .awxb-local.awxb-local .almanac table td,.awxb-component.awxb-component .awxb-local.awxb-local .almanac table tr,.awxb-component.awxb-component .awxb-local.awxb-local .almanac table th,.awxb-component.awxb-component .awxb-local.awxb-local .almanac table td{border:0}.awxb-view.awxb-view .awxb-local.awxb-local .almanac table th,.awxb-component.awxb-component .awxb-local.awxb-local .almanac table th{font-weight:bold}.awxb-view.awxb-view .awxb-local.awxb-local .almanac table th:nth-child(2),.awxb-view.awxb-view .awxb-local.awxb-local .almanac table th:nth-child(3),.awxb-component.awxb-component .awxb-local.awxb-local .almanac table th:nth-child(2),.awxb-component.awxb-component .awxb-local.awxb-local .almanac table th:nth-child(3){border-bottom:2px solid #efefee}.awxb-view.awxb-view .awxb-local.awxb-local .almanac table th,.awxb-view.awxb-view .awxb-local.awxb-local .almanac table td,.awxb-component.awxb-component .awxb-local.awxb-local .almanac table th,.awxb-component.awxb-component .awxb-local.awxb-local .almanac table td{padding:.25rem 0}.awxb-view.awxb-view .awxb-local.awxb-local .almanac table td,.awxb-component.awxb-component .awxb-local.awxb-local .almanac table td{vertical-align:middle}.awxb-view.awxb-view .awxb-local.awxb-local .almanac .units,.awxb-component.awxb-component .awxb-local.awxb-local .almanac .units{font-size:.875rem}.awxb-view.awxb-view .awxb-local.awxb-local .almanac .temp,.awxb-component.awxb-component .awxb-local.awxb-local .almanac .temp{font-size:1.25rem;font-weight:bold}.awxb-view.awxb-view .awxb-local.awxb-local .almanac .temp+.units,.awxb-component.awxb-component .awxb-local.awxb-local .almanac .temp+.units{font-size:1rem}.awxb-view.awxb-view .awxb-local.awxb-local .almanac .btn-more,.awxb-component.awxb-component .awxb-local.awxb-local .almanac .btn-more{padding:.125rem .375rem;border:1px solid #aaa}.awxb-view.awxb-view .awxb-local.awxb-local .almanac .btn-more:hover,.awxb-component.awxb-component .awxb-local.awxb-local .almanac .btn-more:hover{border-color:#333}@media(max-width: 768px){.awxb-view.awxb-view .awxb-local.awxb-local .almanac ul>li:first-child,.awxb-component.awxb-component .awxb-local.awxb-local .almanac ul>li:first-child{font-size:.75rem}}.awxb-view.awxb-view .awxb-local.awxb-local .daynight-period ul,.awxb-component.awxb-component .awxb-local.awxb-local .daynight-period ul{width:100%}.awxb-view.awxb-view .awxb-local.awxb-local .daynight-period .details .data-item,.awxb-component.awxb-component .awxb-local.awxb-local .daynight-period .details .data-item{display:inline-block}.awxb-view.awxb-view .awxb-local.awxb-local .daynight-period .wxicon,.awxb-component.awxb-component .awxb-local.awxb-local .daynight-period .wxicon{text-align:center}.awxb-view.awxb-view .awxb-local.awxb-local .daynight-period .wxicon img,.awxb-component.awxb-component .awxb-local.awxb-local .daynight-period .wxicon img{height:60px}.awxb-view.awxb-view .awxb-local.awxb-local .daynight-period .wxicon .pop,.awxb-component.awxb-component .awxb-local.awxb-local .daynight-period .wxicon .pop{display:block;text-align:center}.awxb-view.awxb-view .awxb-local.awxb-local .daynight-period .temp,.awxb-component.awxb-component .awxb-local.awxb-local .daynight-period .temp{height:60px;line-height:60px;font-size:2rem;text-align:right}.awxb-view.awxb-view .awxb-local.awxb-local .daynight-period .data-item .data-item-label,.awxb-component.awxb-component .awxb-local.awxb-local .daynight-period .data-item .data-item-label{font-size:.6875rem}.awxb-view.awxb-view .awxb-local.awxb-local .daynight-period .data-item .data-item-val,.awxb-component.awxb-component .awxb-local.awxb-local .daynight-period .data-item .data-item-val{font-size:.875rem;font-weight:bold}.awxb-view.awxb-view .awxb-local.awxb-local .daynight-period .phrase,.awxb-component.awxb-component .awxb-local.awxb-local .daynight-period .phrase{margin-top:20px}.awxb-view.awxb-view .awxb-local.awxb-local .forecast .block-title+table,.awxb-component.awxb-component .awxb-local.awxb-local .forecast .block-title+table{margin-top:-2px}.awxb-view.awxb-view .awxb-local.awxb-local .forecast .section-title-wrapper .controls,.awxb-component.awxb-component .awxb-local.awxb-local .forecast .section-title-wrapper .controls{position:absolute;bottom:2px;right:0}.awxb-view.awxb-view .awxb-local.awxb-local .forecast .section-title-wrapper .controls .btn,.awxb-component.awxb-component .awxb-local.awxb-local .forecast .section-title-wrapper .controls .btn{background:rgba(0,0,0,0);margin:0 .25rem;font-size:.75rem;font-weight:bold;padding:0;text-transform:uppercase}.awxb-view.awxb-view .awxb-local.awxb-local .forecast td,.awxb-component.awxb-component .awxb-local.awxb-local .forecast td{position:relative;font-size:.875rem;padding:.875rem .375rem;vertical-align:middle}.awxb-view.awxb-view .awxb-local.awxb-local .forecast tr.header td,.awxb-component.awxb-component .awxb-local.awxb-local .forecast tr.header td{padding:.1375rem .375rem}.awxb-view.awxb-view .awxb-local.awxb-local .forecast .col-date,.awxb-component.awxb-component .awxb-local.awxb-local .forecast .col-date{width:80px}.awxb-view.awxb-view .awxb-local.awxb-local .forecast .day,.awxb-component.awxb-component .awxb-local.awxb-local .forecast .day{font-weight:bold;text-transform:uppercase}.awxb-view.awxb-view .awxb-local.awxb-local .forecast .date,.awxb-component.awxb-component .awxb-local.awxb-local .forecast .date{font-size:.75rem;color:#777}.awxb-view.awxb-view .awxb-local.awxb-local .forecast .pop,.awxb-component.awxb-component .awxb-local.awxb-local .forecast .pop{font-size:.875rem;padding-left:.625rem}.awxb-view.awxb-view .awxb-local.awxb-local .forecast img.wxicon,.awxb-component.awxb-component .awxb-local.awxb-local .forecast img.wxicon{height:50px}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .block-title,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .block-title{margin:0}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .col-temp,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .col-temp{width:30%}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .col-controls,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .col-controls{width:30px}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended td:first-child,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended td:first-child{padding-top:1.1rem;vertical-align:top}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .daynight-period .wx,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .daynight-period .wx{font-size:1rem;margin-bottom:5px;line-height:1.3}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended.forecast-basic th,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended.forecast-basic th{border:0}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended.forecast-basic tr:nth-child(1) td,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended.forecast-basic tr:nth-child(1) td{border-top:0}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended.forecast-basic .daynight-period h5,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended.forecast-basic .daynight-period h5{display:inline-block;font-size:.75rem;font-weight:bold;border-bottom:2px solid #17a8e1;padding:0 3.125rem .1875rem 0;color:#1285b3;text-transform:uppercase}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended.forecast-basic .daynight-period .details .data-item,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended.forecast-basic .daynight-period .details .data-item{margin-left:20px}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended.forecast-basic .daynight-period .details .data-item:first-child,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended.forecast-basic .daynight-period .details .data-item:first-child{width:110px;margin-left:0}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended.forecast-basic .daynight-period .temp,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended.forecast-basic .daynight-period .temp{text-align:left}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable td:first-child,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable td:first-child{width:80px}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable td:last-child,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable td:last-child{width:30px}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable .icon-expand,.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable .icon-collapse,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable .icon-expand,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable .icon-collapse{width:20px;height:20px;fill:#777}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable .btn-expand:hover .icon,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable .btn-expand:hover .icon{fill:#333}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr:not(.expanded) .units,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr:not(.expanded) .units{font-size:100%}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr:not(.expanded) td:nth-child(4),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr:not(.expanded) td:nth-child(4){width:30%}@media(max-width: 767.98px){.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr:not(.expanded) th:nth-child(3),.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr:not(.expanded) th:nth-child(5),.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr:not(.expanded) th:nth-child(6),.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr:not(.expanded) th:nth-child(7),.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr:not(.expanded) td:nth-child(3),.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr:not(.expanded) td:nth-child(5),.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr:not(.expanded) td:nth-child(6),.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr:not(.expanded) td:nth-child(7),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr:not(.expanded) th:nth-child(3),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr:not(.expanded) th:nth-child(5),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr:not(.expanded) th:nth-child(6),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr:not(.expanded) th:nth-child(7),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr:not(.expanded) td:nth-child(3),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr:not(.expanded) td:nth-child(5),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr:not(.expanded) td:nth-child(6),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr:not(.expanded) td:nth-child(7){display:none !important}}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded{display:none}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded td,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded td{position:relative;padding-top:1.5rem;padding-bottom:1.5rem;vertical-align:top}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded td:first-child,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded td:first-child{padding-top:1.1rem}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded td:nth-child(2),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded td:nth-child(2){padding-left:0;padding-right:0}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .header,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .header{margin-top:-1.5rem;margin-bottom:1.5rem}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .header::after,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .header::after{display:block;clear:both;content:""}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .header .period,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .header .period{float:left;position:relative;width:50%;height:45px;border-bottom:2px solid rgba(23,168,225,.8)}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .header .period>span,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .header .period>span{position:absolute;left:10px;bottom:6px;font-size:.75rem;font-weight:bold;color:#17a8e1;text-transform:uppercase}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .header:hover,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .header:hover{cursor:pointer}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .header:hover .period,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .header:hover .period{background:rgba(23,168,225,.1)}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded h5,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded h5{display:none;font-size:.75rem;font-weight:bold;border-bottom:2px solid #17a8e1;padding:0 3.125rem .1875rem 0;color:#1285b3;text-transform:uppercase}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .collapser,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .collapser{position:absolute;top:0;left:0;right:0;height:80px}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .collapser:hover,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .collapser:hover{background:#fefefe}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .details .units,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .details .units{font-size:100%;padding-left:0}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .daynight-period .wxicon img,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .daynight-period .wxicon img{height:60px}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .daynight-period .temp,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .daynight-period .temp{height:60px;line-height:60px}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .btn-more,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .btn-more{float:right}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable.is-expanded tr:not(.expanded) td,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable.is-expanded tr:not(.expanded) td{border-top:1px solid #777;border-bottom:1px solid #777}@media(min-width: 768px){.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .daynight-period:last-child,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .table-expandable tr.expanded .daynight-period:last-child{padding-left:0}}@media(max-width: 992px){.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended.forecast-basic .daynight-period .details .data-item:first-child,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended.forecast-basic .daynight-period .details .data-item:first-child{width:auto}}@media(max-width: 768px){.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended td,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended td{padding:.5rem .375rem}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended .col-temp,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended .col-temp{width:50%}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended td:nth-child(4),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended td:nth-child(4){width:50%}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended.forecast-basic td:nth-child(2),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended.forecast-basic td:nth-child(2){padding:2rem .375rem}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended.forecast-basic .daynight-period:last-child,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended.forecast-basic .daynight-period:last-child{margin-top:30px}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended.forecast-basic .daynight-period .wx,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended.forecast-basic .daynight-period .wx{margin-top:10px}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended tr.expanded .header,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended tr.expanded .header{display:none}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended tr.expanded h5,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended tr.expanded h5{display:inline-block}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended tr.expanded .daynight-period,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended tr.expanded .daynight-period{padding-right:0}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended tr.expanded .daynight-period .details,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended tr.expanded .daynight-period .details{margin-top:1rem;border-bottom:1px solid #ddd;padding-bottom:1rem}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended tr.expanded .daynight-period:last-child,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended tr.expanded .daynight-period:last-child{margin-top:20px}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-extended tr.expanded .daynight-period:last-child .details,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-extended tr.expanded .daynight-period:last-child .details{border-bottom:0;padding-bottom:0}}@media(max-width: 767.98px){.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-hourly th:nth-child(5),.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-hourly th:nth-child(6),.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-hourly th:nth-child(8),.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-hourly th:nth-child(9),.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-hourly td:nth-child(5),.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-hourly td:nth-child(6),.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-hourly td:nth-child(8),.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-hourly td:nth-child(9),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-hourly th:nth-child(5),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-hourly th:nth-child(6),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-hourly th:nth-child(8),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-hourly th:nth-child(9),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-hourly td:nth-child(5),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-hourly td:nth-child(6),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-hourly td:nth-child(8),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-hourly td:nth-child(9){display:none !important}}@media(max-width: 575.98px){.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-hourly th:nth-child(7),.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-hourly th:nth-child(10),.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-hourly td:nth-child(7),.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-hourly td:nth-child(10),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-hourly th:nth-child(7),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-hourly th:nth-child(10),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-hourly td:nth-child(7),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-hourly td:nth-child(10){display:none !important}}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-hourly th:nth-child(n+4),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-hourly th:nth-child(n+4){text-align:center;background:#eee;color:#333}@media(max-width: 575.98px){.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-hourly th,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-hourly th{background:rgba(0,0,0,0)}}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-hourly td,.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-hourly td{padding:.375rem .375rem}.awxb-view.awxb-view .awxb-local.awxb-local .forecast.forecast-hourly td:nth-child(n+4),.awxb-component.awxb-component .awxb-local.awxb-local .forecast.forecast-hourly td:nth-child(n+4){text-align:center}.awxb-view.awxb-view .awxb-local.awxb-local .table-expandable tr.expanded .daynight-period .details .data-item,.awxb-component.awxb-component .awxb-local.awxb-local .table-expandable tr.expanded .daynight-period .details .data-item{width:40%}.awxb-view.awxb-view .awxb-local.awxb-local .table-expandable tr.expanded .daynight-period .wxicon img,.awxb-component.awxb-component .awxb-local.awxb-local .table-expandable tr.expanded .daynight-period .wxicon img{height:80px}.awxb-view.awxb-view .awxb-local.awxb-local .table-expandable tr.expanded .daynight-period .temp,.awxb-component.awxb-component .awxb-local.awxb-local .table-expandable tr.expanded .daynight-period .temp{height:80px;line-height:80px;font-size:2.5rem}.awxb-view.awxb-view .awxb-local.awxb-local .table-expandable tr.expanded .daynight-period .phrase,.awxb-component.awxb-component .awxb-local.awxb-local .table-expandable tr.expanded .daynight-period .phrase{margin-top:20px}.awxb-view.awxb-view .awxb-local.awxb-local .temp-range,.awxb-component.awxb-component .awxb-local.awxb-local .temp-range{position:absolute;top:50%;left:45px;right:45px;margin-top:-9px;height:18px}.awxb-view.awxb-view .awxb-local.awxb-local .temp-range .temp-bar,.awxb-component.awxb-component .awxb-local.awxb-local .temp-range .temp-bar{position:absolute;top:50%;height:18px;min-width:20px;margin-top:-9px;background-color:#ccc;border-radius:10px}.awxb-view.awxb-view .awxb-local.awxb-local .temp-range .temp-bar .min,.awxb-view.awxb-view .awxb-local.awxb-local .temp-range .temp-bar .max,.awxb-component.awxb-component .awxb-local.awxb-local .temp-range .temp-bar .min,.awxb-component.awxb-component .awxb-local.awxb-local .temp-range .temp-bar .max{position:absolute;width:35px;height:18px;line-height:18px;font-size:1.3rem;font-weight:400}.awxb-view.awxb-view .awxb-local.awxb-local .temp-range .temp-bar .min,.awxb-component.awxb-component .awxb-local.awxb-local .temp-range .temp-bar .min{left:-40px;text-align:right}.awxb-view.awxb-view .awxb-local.awxb-local .temp-range .temp-bar .max,.awxb-component.awxb-component .awxb-local.awxb-local .temp-range .temp-bar .max{right:-40px;text-align:left}.awxb-view.awxb-view .awxb-local.awxb-local .indices .data-item,.awxb-component.awxb-component .awxb-local.awxb-local .indices .data-item{display:inline-block;width:30%;margin:0 0 15px 0}@media(max-width: 575.98px){.awxb-view.awxb-view .awxb-local.awxb-local .indices .data-item,.awxb-component.awxb-component .awxb-local.awxb-local .indices .data-item{width:45%}}.awxb-view.awxb-view .awxb-local.awxb-local .sunmoon .data-item,.awxb-component.awxb-component .awxb-local.awxb-local .sunmoon .data-item{margin:0 0 15px 0}.awxb-view.awxb-view .awxb-local.awxb-local .local-events .block-title-secondary,.awxb-component.awxb-component .awxb-local.awxb-local .local-events .block-title-secondary{margin-top:3px}.awxb-view.awxb-view .awxb-local.awxb-local .local-events .data-item,.awxb-component.awxb-component .awxb-local.awxb-local .local-events .data-item{display:block;width:100%;margin-top:5px}.awxb-view.awxb-view .awxb-local.awxb-local .local-events .data-item .label,.awxb-component.awxb-component .awxb-local.awxb-local .local-events .data-item .label{font-size:.75rem}.awxb-view.awxb-view .awxb-local.awxb-local .local-events .data-item .val,.awxb-component.awxb-component .awxb-local.awxb-local .local-events .data-item .val{font-size:1rem}.awxb-view.awxb-view .awxb-local.awxb-local .local-events .data-item.data-item-icon .icon.indicator,.awxb-component.awxb-component .awxb-local.awxb-local .local-events .data-item.data-item-icon .icon.indicator{margin-top:2px;width:14px;height:14px;background-color:#ccc;border-radius:10px}.awxb-view.awxb-view .awxb-local.awxb-local .local-events .data-item.data-item-icon .icon.indicator:before,.awxb-component.awxb-component .awxb-local.awxb-local .local-events .data-item.data-item-icon .icon.indicator:before{border-radius:11px}.awxb-view.awxb-view .awxb-local.awxb-local .local-events .data-item.data-item-icon .label,.awxb-view.awxb-view .awxb-local.awxb-local .local-events .data-item.data-item-icon .val,.awxb-component.awxb-component .awxb-local.awxb-local .local-events .data-item.data-item-icon .label,.awxb-component.awxb-component .awxb-local.awxb-local .local-events .data-item.data-item-icon .val{margin-left:28px}.awxb-view.awxb-view .awxb-local.awxb-local .local-events>.row,.awxb-component.awxb-component .awxb-local.awxb-local .local-events>.row{margin-top:15px}.awxb-view.awxb-view .awxb-local.awxb-local .local-events>.row:first-child,.awxb-component.awxb-component .awxb-local.awxb-local .local-events>.row:first-child{margin-top:0}@media(max-width: 575.98px){.awxb-view.awxb-view .awxb-local.awxb-local .local-events,.awxb-component.awxb-component .awxb-local.awxb-local .local-events{margin-bottom:30px}}@media(max-width: 768px){.awxb-view.awxb-view .awxb-local.awxb-local .local-events .data-item,.awxb-component.awxb-component .awxb-local.awxb-local .local-events .data-item{padding-left:15px}}.awxb-view.awxb-view .awxb-local.awxb-local .history-nav,.awxb-component.awxb-component .awxb-local.awxb-local .history-nav{margin:1.25rem 0 1rem}.awxb-view.awxb-view .awxb-local.awxb-local .history-nav::after,.awxb-component.awxb-component .awxb-local.awxb-local .history-nav::after{display:block;clear:both;content:""}.awxb-view.awxb-view .awxb-local.awxb-local .history-nav .pagination,.awxb-component.awxb-component .awxb-local.awxb-local .history-nav .pagination{margin-left:.625rem}.awxb-view.awxb-view .awxb-local.awxb-local .history-nav .pagination:first-child,.awxb-component.awxb-component .awxb-local.awxb-local .history-nav .pagination:first-child{margin-left:0}@media(max-width: 768px){.awxb-view.awxb-view .awxb-local.awxb-local .history-nav .pagination>li:not(.selected),.awxb-component.awxb-component .awxb-local.awxb-local .history-nav .pagination>li:not(.selected){display:none}}.awxb-view.awxb-view .awxb-local.awxb-local .history-nav .month-selector,.awxb-component.awxb-component .awxb-local.awxb-local .history-nav .month-selector{float:left}.awxb-view.awxb-view .awxb-local.awxb-local .history-nav .month-selector::after,.awxb-component.awxb-component .awxb-local.awxb-local .history-nav .month-selector::after{display:block;clear:both;content:""}.awxb-view.awxb-view .awxb-local.awxb-local .history-nav .btn-nav,.awxb-component.awxb-component .awxb-local.awxb-local .history-nav .btn-nav{float:right}.awxb-view.awxb-view .awxb-local.awxb-local .history-nav .btn-nav .btn-icon-list .icon,.awxb-component.awxb-component .awxb-local.awxb-local .history-nav .btn-nav .btn-icon-list .icon{margin:-8px 0 0 -9px}@media(max-width: 576px){.awxb-view.awxb-view .awxb-local.awxb-local .btn-calendar,.awxb-component.awxb-component .awxb-local.awxb-local .btn-calendar{display:none}}.awxb-view.awxb-view .advisories,.awxb-view.awxb-view .advisories-listing,.awxb-component.awxb-component .advisories,.awxb-component.awxb-component .advisories-listing{margin:1.5rem 0 2rem;background:#db0000;padding:.25rem .625rem;color:#fff;border-bottom:3px solid #a80000}.awxb-view.awxb-view .advisories h6,.awxb-view.awxb-view .advisories-listing h6,.awxb-component.awxb-component .advisories h6,.awxb-component.awxb-component .advisories-listing h6{margin:.125rem 0 .25rem 0;font-size:.625rem;font-weight:bold;text-transform:uppercase}.awxb-view.awxb-view .advisories a,.awxb-view.awxb-view .advisories-listing a,.awxb-component.awxb-component .advisories a,.awxb-component.awxb-component .advisories-listing a{color:#fff}.awxb-view.awxb-view .advisories a:hover,.awxb-view.awxb-view .advisories-listing a:hover,.awxb-component.awxb-component .advisories a:hover,.awxb-component.awxb-component .advisories-listing a:hover{text-decoration:underline}.awxb-view.awxb-view .advisories .detail,.awxb-view.awxb-view .advisories-listing .detail,.awxb-component.awxb-component .advisories .detail,.awxb-component.awxb-component .advisories-listing .detail{font-size:.8em;padding-left:10px}@media(max-width: 768px){.awxb-view.awxb-view .advisories a,.awxb-view.awxb-view .advisories-listing a,.awxb-component.awxb-component .advisories a,.awxb-component.awxb-component .advisories-listing a{display:block}.awxb-view.awxb-view .advisories .separator,.awxb-view.awxb-view .advisories-listing .separator,.awxb-component.awxb-component .advisories .separator,.awxb-component.awxb-component .advisories-listing .separator{display:none}}.awxb-view.awxb-view .awxb-advisories.awxb-advisories h3,.awxb-component.awxb-component .awxb-advisories.awxb-advisories h3{margin-bottom:5px;border-bottom:0}.awxb-view.awxb-view .awxb-advisories.awxb-advisories .map img,.awxb-component.awxb-component .awxb-advisories.awxb-advisories .map img{width:100% !important;height:auto !important}.awxb-view.awxb-view .awxb-advisories.awxb-advisories .advisory-item+a+.advisory-item,.awxb-component.awxb-component .awxb-advisories.awxb-advisories .advisory-item+a+.advisory-item{margin-top:2.5rem}.awxb-view.awxb-view .awxb-advisories.awxb-advisories .advisory-item .advisory-header,.awxb-component.awxb-component .awxb-advisories.awxb-advisories .advisory-item .advisory-header{position:relative;margin-bottom:1rem;font-size:.875rem;border-bottom:2px solid #17a8e1}.awxb-view.awxb-view .awxb-advisories.awxb-advisories .advisory-item .advisory-header::after,.awxb-component.awxb-component .awxb-advisories.awxb-advisories .advisory-item .advisory-header::after{display:block;clear:both;content:""}.awxb-view.awxb-view .awxb-advisories.awxb-advisories .advisory-item .advisory-header h4,.awxb-component.awxb-component .awxb-advisories.awxb-advisories .advisory-item .advisory-header h4{float:left;font-weight:500}.awxb-view.awxb-view .awxb-advisories.awxb-advisories .advisory-item .advisory-header h4.has-dot,.awxb-component.awxb-component .awxb-advisories.awxb-advisories .advisory-item .advisory-header h4.has-dot{margin-left:37px}.awxb-view.awxb-view .awxb-advisories.awxb-advisories .advisory-item .advisory-header .detail,.awxb-component.awxb-component .awxb-advisories.awxb-advisories .advisory-item .advisory-header .detail{font-size:.75em;font-weight:normal;color:#666;padding-left:10px}.awxb-view.awxb-view .awxb-advisories.awxb-advisories .advisory-item .advisory-header .dot,.awxb-component.awxb-component .awxb-advisories.awxb-advisories .advisory-item .advisory-header .dot{position:absolute;left:4px;width:20px;height:20px;border-radius:10px;background-color:#ccc}.awxb-view.awxb-view .awxb-advisories.awxb-advisories .advisory-item .advisory-body,.awxb-component.awxb-component .awxb-advisories.awxb-advisories .advisory-item .advisory-body{font-size:.95rem;line-height:1.35rem}.awxb-view.awxb-view .awxb-advisories.awxb-advisories .advisory-item pre,.awxb-component.awxb-component .awxb-advisories.awxb-advisories .advisory-item pre{display:block;font-family:inherit;font-size:.95rem;line-height:1.3rem;word-wrap:break-word}.awxb-view.awxb-view .awxb-advisories.awxb-advisories .advisories,.awxb-view.awxb-view .awxb-advisories.awxb-advisories .advisories-listing,.awxb-component.awxb-component .awxb-advisories.awxb-advisories .advisories,.awxb-component.awxb-component .awxb-advisories.awxb-advisories .advisories-listing{margin-top:0}.awxb-view.awxb-view .table-calendar .units,.awxb-component.awxb-component .table-calendar .units{font-size:100%}.awxb-view.awxb-view .table-calendar th,.awxb-component.awxb-component .table-calendar th{width:14.285%;border:4px solid #fff;background:#1285b3;color:#fff;text-align:left}.awxb-view.awxb-view .table-calendar th:first-child,.awxb-component.awxb-component .table-calendar th:first-child{border-left:0}.awxb-view.awxb-view .table-calendar th:last-child,.awxb-component.awxb-component .table-calendar th:last-child{border-right:0}.awxb-view.awxb-view .table-calendar td,.awxb-component.awxb-component .table-calendar td{position:relative;border:4px solid #fff;background:#fff;padding:1px}.awxb-view.awxb-view .table-calendar td:first-child,.awxb-component.awxb-component .table-calendar td:first-child{border-left:0}.awxb-view.awxb-view .table-calendar td:last-child,.awxb-component.awxb-component .table-calendar td:last-child{border-right:0}.awxb-view.awxb-view .table-calendar td:nth-child(even),.awxb-component.awxb-component .table-calendar td:nth-child(even){background-color:#f8f8f8}.awxb-view.awxb-view .table-calendar td:not(.disabled):hover,.awxb-component.awxb-component .table-calendar td:not(.disabled):hover{cursor:pointer;background-color:#fff}.awxb-view.awxb-view .table-calendar td:not(.disabled):hover .bg,.awxb-component.awxb-component .table-calendar td:not(.disabled):hover .bg{border-top-width:2px}.awxb-view.awxb-view .table-calendar td p,.awxb-component.awxb-component .table-calendar td p{margin:0}.awxb-view.awxb-view .table-calendar td a,.awxb-component.awxb-component .table-calendar td a{color:#212529;text-decoration:none}.awxb-view.awxb-view .table-calendar td .bg,.awxb-component.awxb-component .table-calendar td .bg{position:absolute;z-index:0;top:0;left:0;bottom:0;right:0;border:1px solid rgba(0,0,0,0);border-top:2px solid #555}.awxb-view.awxb-view .table-calendar td .inner,.awxb-component.awxb-component .table-calendar td .inner{display:block;z-index:10;padding:5px;min-height:180px}.awxb-view.awxb-view .table-calendar td .date,.awxb-component.awxb-component .table-calendar td .date{position:absolute;top:0;left:0;width:30px;height:30px;font-size:14px;font-weight:bold;background-color:#555;color:#fff;text-align:center;line-height:30px}.awxb-view.awxb-view .table-calendar td .wxicon,.awxb-component.awxb-component .table-calendar td .wxicon{height:70px;margin-bottom:.375rem;text-align:center}.awxb-view.awxb-view .table-calendar td .wxicon img,.awxb-component.awxb-component .table-calendar td .wxicon img{width:70px;height:70px}.awxb-view.awxb-view .table-calendar td .wx,.awxb-component.awxb-component .table-calendar td .wx{font-size:.75rem;text-align:center}.awxb-view.awxb-view .table-calendar td .temps,.awxb-component.awxb-component .table-calendar td .temps{margin-top:.625rem;text-align:right}.awxb-view.awxb-view .table-calendar td .temps .max,.awxb-component.awxb-component .table-calendar td .temps .max{font-size:1.75rem}.awxb-view.awxb-view .table-calendar td .temps .min,.awxb-component.awxb-component .table-calendar td .temps .min{font-size:1.5rem}.awxb-view.awxb-view .table-calendar td .precip,.awxb-component.awxb-component .table-calendar td .precip{margin-bottom:35px;text-align:right;line-height:20px}.awxb-view.awxb-view .table-calendar td .precip .u-imp .units,.awxb-component.awxb-component .table-calendar td .precip .u-imp .units{font-size:100%}.awxb-view.awxb-view .table-calendar td .normals,.awxb-component.awxb-component .table-calendar td .normals{position:absolute;bottom:0;left:0;right:0;padding:5px}.awxb-view.awxb-view .table-calendar td .normals::after,.awxb-component.awxb-component .table-calendar td .normals::after{display:block;clear:both;content:""}.awxb-view.awxb-view .table-calendar td .normals>p,.awxb-component.awxb-component .table-calendar td .normals>p{width:45%}.awxb-view.awxb-view .table-calendar td .normals>.label,.awxb-component.awxb-component .table-calendar td .normals>.label{float:left;font-size:.6875rem;line-height:1rem;text-transform:uppercase}.awxb-view.awxb-view .table-calendar td .normals>.val,.awxb-component.awxb-component .table-calendar td .normals>.val{float:right;line-height:1rem;text-align:right}.awxb-view.awxb-view .table-calendar td [class*=icon-],.awxb-component.awxb-component .table-calendar td [class*=icon-]{display:inline-block;width:15px;height:15px}.awxb-view.awxb-view .table-calendar td.today,.awxb-component.awxb-component .table-calendar td.today{background-color:#fff}.awxb-view.awxb-view .table-calendar td.today .bg,.awxb-component.awxb-component .table-calendar td.today .bg{border:2px solid #17a8e1;border-top-width:4px}.awxb-view.awxb-view .table-calendar td.today .date,.awxb-component.awxb-component .table-calendar td.today .date{background-color:#17a8e1}.awxb-view.awxb-view .table-calendar td.today:hover .bg,.awxb-component.awxb-component .table-calendar td.today:hover .bg{border-width:3px;border-top-width:6px}.awxb-view.awxb-view .table-calendar td.past,.awxb-component.awxb-component .table-calendar td.past{color:#7c7c7c;background-color:#fefefe}.awxb-view.awxb-view .table-calendar td.past:nth-child(even),.awxb-component.awxb-component .table-calendar td.past:nth-child(even){background-color:#f8f8f8}.awxb-view.awxb-view .table-calendar td.past .bg,.awxb-component.awxb-component .table-calendar td.past .bg{border-top-color:#888}.awxb-view.awxb-view .table-calendar td.past .date,.awxb-component.awxb-component .table-calendar td.past .date{background-color:#888}.awxb-view.awxb-view .table-calendar td.past .inner,.awxb-component.awxb-component .table-calendar td.past .inner{color:#7c7c7c}.awxb-view.awxb-view .table-calendar td.past .temps .max,.awxb-component.awxb-component .table-calendar td.past .temps .max{font-size:1.25rem}.awxb-view.awxb-view .table-calendar td.past .temps .min,.awxb-component.awxb-component .table-calendar td.past .temps .min{font-size:1rem}.awxb-view.awxb-view .table-calendar td.past .wxicon img,.awxb-component.awxb-component .table-calendar td.past .wxicon img{opacity:.5}.awxb-view.awxb-view .table-calendar td.past:hover,.awxb-component.awxb-component .table-calendar td.past:hover{color:#555;background-color:#fff}.awxb-view.awxb-view .table-calendar td.past:hover .bg,.awxb-component.awxb-component .table-calendar td.past:hover .bg{border-color:#555;border-top-width:4px}.awxb-view.awxb-view .table-calendar td.past:hover .date,.awxb-component.awxb-component .table-calendar td.past:hover .date{background-color:#555}.awxb-view.awxb-view .table-calendar td.past:hover .inner,.awxb-component.awxb-component .table-calendar td.past:hover .inner{color:#555}.awxb-view.awxb-view .table-calendar td.past:hover .wxicon img,.awxb-component.awxb-component .table-calendar td.past:hover .wxicon img{opacity:1}.awxb-view.awxb-view .table-calendar td.future:hover .bg,.awxb-component.awxb-component .table-calendar td.future:hover .bg{border-color:#17a8e1;border-top-width:4px}.awxb-view.awxb-view .table-calendar td.future:hover .date,.awxb-component.awxb-component .table-calendar td.future:hover .date{background-color:#17a8e1}.awxb-view.awxb-view .table-calendar td.disabled,.awxb-component.awxb-component .table-calendar td.disabled{color:#7c7c7c}.awxb-view.awxb-view .table-calendar td.disabled .bg,.awxb-component.awxb-component .table-calendar td.disabled .bg{border-color:rgba(0,0,0,0);border-top-color:#a2a2a2}.awxb-view.awxb-view .table-calendar td.disabled .date,.awxb-component.awxb-component .table-calendar td.disabled .date{background-color:#a2a2a2}.awxb-view.awxb-view .table-calendar td.disabled .normals,.awxb-component.awxb-component .table-calendar td.disabled .normals{background-color:#efefef}.awxb-view.awxb-view .table-calendar td.disabled .precip,.awxb-component.awxb-component .table-calendar td.disabled .precip{visibility:hidden}.awxb-view.awxb-view .table-calendar td.disabled:hover,.awxb-component.awxb-component .table-calendar td.disabled:hover{cursor:default}.awxb-view.awxb-view .table-calendar td.disabled:hover .bg,.awxb-component.awxb-component .table-calendar td.disabled:hover .bg{border-left:0;border-right:0;border-bottom:0}.awxb-view.awxb-view .table-calendar td.hidden,.awxb-component.awxb-component .table-calendar td.hidden{visibility:hidden}.awxb-view.awxb-view .table-calendar-full,.awxb-component.awxb-component .table-calendar-full{display:table}.awxb-view.awxb-view .table-calendar-list,.awxb-component.awxb-component .table-calendar-list{display:none}.awxb-view.awxb-view .table-calendar-list td .inner,.awxb-component.awxb-component .table-calendar-list td .inner{min-height:80px}.awxb-view.awxb-view .table-calendar-list td .day,.awxb-component.awxb-component .table-calendar-list td .day{margin:0 0 10px 35px;line-height:19px;font-size:.8rem;font-weight:600;text-transform:uppercase}.awxb-view.awxb-view .table-calendar-list td .data,.awxb-component.awxb-component .table-calendar-list td .data{margin-left:40px}.awxb-view.awxb-view .table-calendar-list td .wxicon,.awxb-component.awxb-component .table-calendar-list td .wxicon{display:inline-block;width:80px}.awxb-view.awxb-view .table-calendar-list td .wx,.awxb-component.awxb-component .table-calendar-list td .wx{display:none;margin:0 15px;font-size:.9rem;text-align:left}.awxb-view.awxb-view .table-calendar-list td .wxdata,.awxb-component.awxb-component .table-calendar-list td .wxdata{float:right;width:130px;margin-top:-15px}.awxb-view.awxb-view .table-calendar-list td .wxdata::after,.awxb-component.awxb-component .table-calendar-list td .wxdata::after{display:block;clear:both;content:""}.awxb-view.awxb-view .table-calendar-list td .temps,.awxb-component.awxb-component .table-calendar-list td .temps{margin-top:0;text-align:right}.awxb-view.awxb-view .table-calendar-list td .temps .max,.awxb-component.awxb-component .table-calendar-list td .temps .max{font-size:2.25rem}.awxb-view.awxb-view .table-calendar-list td .temps .min,.awxb-component.awxb-component .table-calendar-list td .temps .min{font-size:2rem}.awxb-view.awxb-view .table-calendar-list td .precip,.awxb-component.awxb-component .table-calendar-list td .precip{margin-bottom:15px}.awxb-view.awxb-view .table-calendar-list td .normals,.awxb-component.awxb-component .table-calendar-list td .normals{position:relative;left:auto;right:auto;bottom:auto}.awxb-view.awxb-view .table-calendar-list td.past .temps .max,.awxb-component.awxb-component .table-calendar-list td.past .temps .max{font-size:2rem}.awxb-view.awxb-view .table-calendar-list td.past .temps .min,.awxb-component.awxb-component .table-calendar-list td.past .temps .min{font-size:1.75rem}@media(max-width: 767.98px){.awxb-view.awxb-view .table-calendar-full,.awxb-component.awxb-component .table-calendar-full{display:none}.awxb-view.awxb-view .table-calendar-list,.awxb-component.awxb-component .table-calendar-list{display:table}}.awxb-view.awxb-view .airquality .aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status-sm{background:#ccc;border-radius:.6rem;color:#fff;font-size:4.5rem;padding:0 2rem;text-align:center}.awxb-view.awxb-view .airquality .aqi-status.aqi-status-good,.awxb-view.awxb-view .airquality .forecast td.aqi-status-good.aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status-good.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status-good.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status.aqi-status-cn-excellent,.awxb-view.awxb-view .airquality .forecast td.aqi-status-cn-excellent.aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status-cn-excellent.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status-cn-excellent.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status.aqi-status-in-good,.awxb-view.awxb-view .airquality .forecast td.aqi-status-in-good.aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status-in-good.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status-in-good.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status.aqi-status-good,.awxb-component.awxb-component .airquality .forecast td.aqi-status-good.aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status-good.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status-good.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status.aqi-status-cn-excellent,.awxb-component.awxb-component .airquality .forecast td.aqi-status-cn-excellent.aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status-cn-excellent.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status-cn-excellent.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status.aqi-status-in-good,.awxb-component.awxb-component .airquality .forecast td.aqi-status-in-good.aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status-in-good.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status-in-good.aqi-status-sm{background:#00e400;color:#333}.awxb-view.awxb-view .airquality .aqi-status.aqi-status-moderate,.awxb-view.awxb-view .airquality .forecast td.aqi-status-moderate.aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status-moderate.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status-moderate.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status.aqi-status-cn-good,.awxb-view.awxb-view .airquality .forecast td.aqi-status-cn-good.aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status-cn-good.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status-cn-good.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status.aqi-status-in-satisfactory,.awxb-view.awxb-view .airquality .forecast td.aqi-status-in-satisfactory.aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status-in-satisfactory.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status-in-satisfactory.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status.aqi-status-moderate,.awxb-component.awxb-component .airquality .forecast td.aqi-status-moderate.aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status-moderate.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status-moderate.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status.aqi-status-cn-good,.awxb-component.awxb-component .airquality .forecast td.aqi-status-cn-good.aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status-cn-good.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status-cn-good.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status.aqi-status-in-satisfactory,.awxb-component.awxb-component .airquality .forecast td.aqi-status-in-satisfactory.aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status-in-satisfactory.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status-in-satisfactory.aqi-status-sm{background:#ff0;color:#333}.awxb-view.awxb-view .airquality .aqi-status.aqi-status-usg,.awxb-view.awxb-view .airquality .forecast td.aqi-status-usg.aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status-usg.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status-usg.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status.aqi-status-cn-slightly-polluted,.awxb-view.awxb-view .airquality .forecast td.aqi-status-cn-slightly-polluted.aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status-cn-slightly-polluted.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status-cn-slightly-polluted.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status.aqi-status-in-moderately-polluted,.awxb-view.awxb-view .airquality .forecast td.aqi-status-in-moderately-polluted.aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status-in-moderately-polluted.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status-in-moderately-polluted.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status.aqi-status-usg,.awxb-component.awxb-component .airquality .forecast td.aqi-status-usg.aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status-usg.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status-usg.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status.aqi-status-cn-slightly-polluted,.awxb-component.awxb-component .airquality .forecast td.aqi-status-cn-slightly-polluted.aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status-cn-slightly-polluted.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status-cn-slightly-polluted.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status.aqi-status-in-moderately-polluted,.awxb-component.awxb-component .airquality .forecast td.aqi-status-in-moderately-polluted.aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status-in-moderately-polluted.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status-in-moderately-polluted.aqi-status-sm{background:#ff7e00}.awxb-view.awxb-view .airquality .aqi-status.aqi-status-unhealthy,.awxb-view.awxb-view .airquality .forecast td.aqi-status-unhealthy.aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status-unhealthy.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status-unhealthy.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status.aqi-status-cn-lightly-polluted,.awxb-view.awxb-view .airquality .forecast td.aqi-status-cn-lightly-polluted.aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status-cn-lightly-polluted.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status-cn-lightly-polluted.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status.aqi-status-in-poor,.awxb-view.awxb-view .airquality .forecast td.aqi-status-in-poor.aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status-in-poor.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status-in-poor.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status.aqi-status-unhealthy,.awxb-component.awxb-component .airquality .forecast td.aqi-status-unhealthy.aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status-unhealthy.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status-unhealthy.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status.aqi-status-cn-lightly-polluted,.awxb-component.awxb-component .airquality .forecast td.aqi-status-cn-lightly-polluted.aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status-cn-lightly-polluted.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status-cn-lightly-polluted.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status.aqi-status-in-poor,.awxb-component.awxb-component .airquality .forecast td.aqi-status-in-poor.aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status-in-poor.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status-in-poor.aqi-status-sm{background:red}.awxb-view.awxb-view .airquality .aqi-status.aqi-status-very-unhealthy,.awxb-view.awxb-view .airquality .forecast td.aqi-status-very-unhealthy.aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status-very-unhealthy.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status-very-unhealthy.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status.aqi-status-cn-moderately-polluted,.awxb-view.awxb-view .airquality .forecast td.aqi-status-cn-moderately-polluted.aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status-cn-moderately-polluted.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status-cn-moderately-polluted.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status.aqi-status-in-very-poor,.awxb-view.awxb-view .airquality .forecast td.aqi-status-in-very-poor.aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status-in-very-poor.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status-in-very-poor.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status.aqi-status-very-unhealthy,.awxb-component.awxb-component .airquality .forecast td.aqi-status-very-unhealthy.aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status-very-unhealthy.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status-very-unhealthy.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status.aqi-status-cn-moderately-polluted,.awxb-component.awxb-component .airquality .forecast td.aqi-status-cn-moderately-polluted.aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status-cn-moderately-polluted.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status-cn-moderately-polluted.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status.aqi-status-in-very-poor,.awxb-component.awxb-component .airquality .forecast td.aqi-status-in-very-poor.aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status-in-very-poor.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status-in-very-poor.aqi-status-sm{background:#8f3f97}.awxb-view.awxb-view .airquality .aqi-status.aqi-status-hazardous,.awxb-view.awxb-view .airquality .forecast td.aqi-status-hazardous.aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status-hazardous.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status-hazardous.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status.aqi-status-cn-heavily-polluted,.awxb-view.awxb-view .airquality .forecast td.aqi-status-cn-heavily-polluted.aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status-cn-heavily-polluted.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status-cn-heavily-polluted.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status.aqi-status-in-severe,.awxb-view.awxb-view .airquality .forecast td.aqi-status-in-severe.aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status-in-severe.aqi-status-sm,.awxb-view.awxb-view .airquality .aqi-status-in-severe.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status.aqi-status-hazardous,.awxb-component.awxb-component .airquality .forecast td.aqi-status-hazardous.aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status-hazardous.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status-hazardous.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status.aqi-status-cn-heavily-polluted,.awxb-component.awxb-component .airquality .forecast td.aqi-status-cn-heavily-polluted.aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status-cn-heavily-polluted.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status-cn-heavily-polluted.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status.aqi-status-in-severe,.awxb-component.awxb-component .airquality .forecast td.aqi-status-in-severe.aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status-in-severe.aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status-in-severe.aqi-status-sm{background:#7e0023}.awxb-view.awxb-view .airquality .aqi-status-sm,.awxb-component.awxb-component .airquality .aqi-status-sm{border-radius:.3rem;display:inline-block;font-size:.8rem;margin:0;padding:.2rem 0;width:2.5rem}.awxb-view.awxb-view .airquality .aqi-category,.awxb-component.awxb-component .airquality .aqi-category{font-size:1.5rem;line-height:2.2rem}.awxb-view.awxb-view .airquality .aqi-dominant,.awxb-component.awxb-component .airquality .aqi-dominant{font-size:.9rem;line-height:1rem;margin-bottom:.5rem}.awxb-view.awxb-view .airquality .aqi-sources,.awxb-component.awxb-component .airquality .aqi-sources{font-size:.8rem;font-style:italic;color:#888}.awxb-view.awxb-view .airquality .obs,.awxb-component.awxb-component .airquality .obs{font-size:1.2rem}.awxb-view.awxb-view .airquality .obs h3,.awxb-component.awxb-component .airquality .obs h3{margin-bottom:0}.awxb-view.awxb-view .airquality .obs .timestamp,.awxb-component.awxb-component .airquality .obs .timestamp{font-size:.8rem;color:#666}.awxb-view.awxb-view .airquality .obs .aqi-category,.awxb-component.awxb-component .airquality .obs .aqi-category{margin-bottom:0}.awxb-view.awxb-view .airquality .obs .pollutants,.awxb-component.awxb-component .airquality .obs .pollutants{font-size:.8rem}.awxb-view.awxb-view .airquality .nearby th,.awxb-component.awxb-component .airquality .nearby th{border-top:0;font-size:.8rem;vertical-align:bottom}.awxb-view.awxb-view .airquality .nearby th:nth-child(n+2),.awxb-component.awxb-component .airquality .nearby th:nth-child(n+2){text-align:right;width:5rem}.awxb-view.awxb-view .airquality .nearby td,.awxb-component.awxb-component .airquality .nearby td{font-size:.9rem;vertical-align:middle}.awxb-view.awxb-view .airquality .nearby td:nth-child(n+2),.awxb-component.awxb-component .airquality .nearby td:nth-child(n+2){text-align:right}.awxb-view.awxb-view .airquality .nearby td.small,.awxb-component.awxb-component .airquality .nearby td.small{font-size:small}.awxb-view.awxb-view .airquality .forecast table,.awxb-component.awxb-component .airquality .forecast table{border-top:0;margin-bottom:0}.awxb-view.awxb-view .airquality .forecast th,.awxb-component.awxb-component .airquality .forecast th{background:#333;border-color:#333;border-left:1px solid #fff;color:#fff;font-size:.8rem;padding:.3rem .5rem;text-align:left;text-transform:uppercase;white-space:nowrap}.awxb-view.awxb-view .airquality .forecast td,.awxb-component.awxb-component .airquality .forecast td{border-left:1px solid #fff;font-size:.75rem;padding:.375rem .5rem;text-align:center}.awxb-view.awxb-view .airquality .forecast td:first-child,.awxb-component.awxb-component .airquality .forecast td:first-child{border-left:0}.awxb-view.awxb-view .airquality .forecast td.aqi-status,.awxb-view.awxb-view .airquality .forecast td.aqi-status-sm,.awxb-component.awxb-component .airquality .forecast td.aqi-status,.awxb-component.awxb-component .airquality .forecast td.aqi-status-sm{border-radius:0;font-size:.9rem;font-weight:bold;padding:.275rem .75rem}.awxb-view.awxb-view .airquality .forecast-container,.awxb-component.awxb-component .airquality .forecast-container{position:relative}.awxb-view.awxb-view .airquality .forecast-container .forecast-row-names,.awxb-component.awxb-component .airquality .forecast-container .forecast-row-names{left:0;position:absolute;top:0;width:10rem;z-index:10}.awxb-view.awxb-view .airquality .forecast-container .forecast-row-names th,.awxb-component.awxb-component .airquality .forecast-container .forecast-row-names th{background:rgba(0,0,0,0);border-left:0;border-top-color:rgba(0,0,0,0)}.awxb-view.awxb-view .airquality .forecast-container .forecast-row-names td,.awxb-component.awxb-component .airquality .forecast-container .forecast-row-names td{font-weight:bold;text-align:left}.awxb-view.awxb-view .airquality .forecast-container .forecast-data,.awxb-component.awxb-component .airquality .forecast-container .forecast-data{margin-left:10rem;overflow:auto}.awxb-view.awxb-view .airquality .sources,.awxb-component.awxb-component .airquality .sources{color:#999;font-size:.8rem;margin-top:15px}.awxb-view.awxb-view .local-layout-airquality .awxb-view-nearby,.awxb-view.awxb-view .local-layout-airquality .awxb-view-forecast,.awxb-component.awxb-component .local-layout-airquality .awxb-view-nearby,.awxb-component.awxb-component .local-layout-airquality .awxb-view-forecast{margin-top:30px}.awxb-view.awxb-view .local-layout-airquality .awxb-view-map .maps-interactive,.awxb-component.awxb-component .local-layout-airquality .awxb-view-map .maps-interactive{height:300px}.awxb-view.awxb-view .tropical .basin-selector,.awxb-component.awxb-component .tropical .basin-selector{border-bottom:2px solid #17a8e1;margin-bottom:10px;padding-bottom:6px}.awxb-view.awxb-view .tropical .basin-selector::after,.awxb-component.awxb-component .tropical .basin-selector::after{display:block;clear:both;content:""}.awxb-view.awxb-view .tropical .tropical-basins.tabbed .tropical-basin .section-title-wrapper,.awxb-component.awxb-component .tropical .tropical-basins.tabbed .tropical-basin .section-title-wrapper{display:none}.awxb-view.awxb-view .tropical .tropical-basin,.awxb-component.awxb-component .tropical .tropical-basin{margin-bottom:60px}.awxb-view.awxb-view .tropical .tropical-basin .row .tropical-system,.awxb-component.awxb-component .tropical .tropical-basin .row .tropical-system{margin-bottom:1rem}.awxb-view.awxb-view .tropical .tropical-basin .row:last-child .tropical-systems,.awxb-component.awxb-component .tropical .tropical-basin .row:last-child .tropical-systems{margin-bottom:0}.awxb-view.awxb-view .tropical .tropical-basin .tropical-system-profile,.awxb-component.awxb-component .tropical .tropical-basin .tropical-system-profile{border-top:2px solid #555;border-bottom:4px solid #555;padding:8px 0}.awxb-view.awxb-view .tropical .tropical-system-profile,.awxb-component.awxb-component .tropical .tropical-system-profile{margin-bottom:2rem}.awxb-view.awxb-view .tropical .tropical-system-profile .header,.awxb-component.awxb-component .tropical .tropical-system-profile .header{position:relative}.awxb-view.awxb-view .tropical .tropical-system-profile .icon,.awxb-component.awxb-component .tropical .tropical-system-profile .icon{position:absolute;margin-right:8px}.awxb-view.awxb-view .tropical .tropical-system-profile .icon img,.awxb-component.awxb-component .tropical .tropical-system-profile .icon img{width:2rem}.awxb-view.awxb-view .tropical .tropical-system-profile .name,.awxb-component.awxb-component .tropical .tropical-system-profile .name{font-size:1.2rem;font-weight:600;line-height:1.4rem;margin-left:2.5rem;padding-top:5px}.awxb-view.awxb-view .tropical .tropical-system-profile .metadata,.awxb-component.awxb-component .tropical .tropical-system-profile .metadata{color:#555;font-size:.75rem;font-weight:normal;margin-left:2.5rem}.awxb-view.awxb-view .tropical .tropical-system-profile .details,.awxb-component.awxb-component .tropical .tropical-system-profile .details{font-size:.8rem;margin-top:1rem;margin-left:6px}.awxb-view.awxb-view .tropical .tropical-system-profile .map,.awxb-component.awxb-component .tropical .tropical-system-profile .map{text-align:right}.awxb-view.awxb-view .tropical .tropical-system-profile .map img,.awxb-component.awxb-component .tropical .tropical-system-profile .map img{max-width:100%}.awxb-view.awxb-view .tropical .tropical-system-profile .controls,.awxb-component.awxb-component .tropical .tropical-system-profile .controls{margin-top:.5rem}.awxb-view.awxb-view .tropical .tropical-system-profile .controls .btn-more,.awxb-component.awxb-component .tropical .tropical-system-profile .controls .btn-more{float:right}.awxb-view.awxb-view .tropical .table-tropical-archive tr.active td:first-child.icon .flag-vertical,.awxb-component.awxb-component .tropical .table-tropical-archive tr.active td:first-child.icon .flag-vertical{background:red}.awxb-view.awxb-view .tropical .table-tropical-archive th,.awxb-component.awxb-component .tropical .table-tropical-archive th{text-align:center}.awxb-view.awxb-view .tropical .table-tropical-archive th:first-child,.awxb-component.awxb-component .tropical .table-tropical-archive th:first-child{text-align:left}.awxb-view.awxb-view .tropical .table-tropical-archive td.icon,.awxb-component.awxb-component .tropical .table-tropical-archive td.icon{padding-left:0;position:relative}.awxb-view.awxb-view .tropical .table-tropical-archive td.icon img,.awxb-component.awxb-component .tropical .table-tropical-archive td.icon img{margin-left:.75rem;width:2rem}.awxb-view.awxb-view .tropical .table-tropical-archive td.icon .flag-vertical,.awxb-component.awxb-component .tropical .table-tropical-archive td.icon .flag-vertical{position:absolute;top:0;left:0;bottom:0;width:6px}.awxb-view.awxb-view .tropical .table-tropical-archive td.title,.awxb-component.awxb-component .tropical .table-tropical-archive td.title{font-size:1rem;font-weight:600;line-height:1.3rem;text-align:left;width:40%}.awxb-view.awxb-view .tropical .table-tropical-archive td.title>span,.awxb-component.awxb-component .tropical .table-tropical-archive td.title>span{background:#db0000;color:#fff;display:inline-block;font-size:.7rem;font-weight:600;margin-left:15px;padding:2px 4px 0;text-transform:uppercase}.awxb-view.awxb-view .tropical .table-tropical-system td.icon img,.awxb-component.awxb-component .tropical .table-tropical-system td.icon img{width:1.5rem}.awxb-view.awxb-view .tropical .table-tropical-system td.title,.awxb-component.awxb-component .tropical .table-tropical-system td.title{font-size:.9rem;line-height:1.2rem;width:20%}.awxb-view.awxb-view .tropical .table-tropical-system tr.forecast td,.awxb-component.awxb-component .tropical .table-tropical-system tr.forecast td{background:#efefef}.awxb-view.awxb-view .tropical .table-tropical-system tr.header td,.awxb-component.awxb-component .tropical .table-tropical-system tr.header td{background:#555;border-left-color:#555;color:#fff;font-weight:bold;text-align:left;text-transform:uppercase}.awxb-view.awxb-view .tropical .awxb-view-profile .tropical-system-profile .icon img,.awxb-component.awxb-component .tropical .awxb-view-profile .tropical-system-profile .icon img{width:2.5rem}.awxb-view.awxb-view .tropical .awxb-view-profile .tropical-system-profile .name,.awxb-component.awxb-component .tropical .awxb-view-profile .tropical-system-profile .name{font-size:1.75rem;font-weight:normal;margin-left:3.25rem;padding-top:10px}.awxb-view.awxb-view .tropical .awxb-view-profile .tropical-system-profile .metadata,.awxb-component.awxb-component .tropical .awxb-view-profile .tropical-system-profile .metadata{margin-left:3.25rem;margin-top:.5rem;font-size:.9rem}.awxb-view.awxb-view .tropical .awxb-view-profile .tropical-system-profile .metadata .stats-item,.awxb-component.awxb-component .tropical .awxb-view-profile .tropical-system-profile .metadata .stats-item{padding-right:1.5rem}.awxb-view.awxb-view .tropical .awxb-view-profile .tropical-system-profile .details,.awxb-component.awxb-component .tropical .awxb-view-profile .tropical-system-profile .details{font-size:1rem}.awxb-view.awxb-view .tropical.tropical-active .tropical-system-profile,.awxb-component.awxb-component .tropical.tropical-active .tropical-system-profile{margin-bottom:0}@media(max-width: 768px){.awxb-view.awxb-view .tropical td,.awxb-component.awxb-component .tropical td{padding:.5rem .375rem}.awxb-view.awxb-view .tropical .table-tropical-archive th:nth-child(2),.awxb-view.awxb-view .tropical .table-tropical-archive th:nth-child(5),.awxb-view.awxb-view .tropical .table-tropical-archive th:nth-child(6),.awxb-view.awxb-view .tropical .table-tropical-archive th:nth-child(8),.awxb-view.awxb-view .tropical .table-tropical-archive td:nth-child(2),.awxb-view.awxb-view .tropical .table-tropical-archive td:nth-child(5),.awxb-view.awxb-view .tropical .table-tropical-archive td:nth-child(6),.awxb-view.awxb-view .tropical .table-tropical-archive td:nth-child(8),.awxb-component.awxb-component .tropical .table-tropical-archive th:nth-child(2),.awxb-component.awxb-component .tropical .table-tropical-archive th:nth-child(5),.awxb-component.awxb-component .tropical .table-tropical-archive th:nth-child(6),.awxb-component.awxb-component .tropical .table-tropical-archive th:nth-child(8),.awxb-component.awxb-component .tropical .table-tropical-archive td:nth-child(2),.awxb-component.awxb-component .tropical .table-tropical-archive td:nth-child(5),.awxb-component.awxb-component .tropical .table-tropical-archive td:nth-child(6),.awxb-component.awxb-component .tropical .table-tropical-archive td:nth-child(8){display:none}}.awxb-view.awxb-view section.local .forecast-maps,.awxb-component.awxb-component section.local .forecast-maps{margin-top:0}.awxb-view.awxb-view .maps-viewer,.awxb-component.awxb-component .maps-viewer{height:300px}.awxb-view.awxb-view .maps-viewer .awxjs__mapview,.awxb-component.awxb-component .maps-viewer .awxjs__mapview{margin-bottom:10px}.awxb-view.awxb-view .maps-viewer .awxjs__mapview .awxjs__map__overlays .awxjs__map-overlay__timestamp,.awxb-component.awxb-component .maps-viewer .awxjs__mapview .awxjs__map__overlays .awxjs__map-overlay__timestamp{top:5px}.awxb-view.awxb-view .awxjs__ui-timeline,.awxb-component.awxb-component .awxjs__ui-timeline{margin-top:.625rem;margin-bottom:-10px}.awxb-view.awxb-view .awxjs__ui-timeline .awxjs__ui-timeline__periods,.awxb-component.awxb-component .awxjs__ui-timeline .awxjs__ui-timeline__periods{background:#0e6384}.awxb-view.awxb-view .awxjs__ui-timeline .awxjs__ui-slider,.awxb-component.awxb-component .awxjs__ui-timeline .awxjs__ui-slider{background:#bbb;overflow:hidden}.awxb-view.awxb-view .awxjs__ui-timeline .awxjs__ui-slider .awxjs__ui-slider-ticks,.awxb-component.awxb-component .awxjs__ui-timeline .awxjs__ui-slider .awxjs__ui-slider-ticks{overflow:visible}.awxb-view.awxb-view .awxjs__ui-timeline .awxjs__ui-slider .awxjs__ui-slider-ticks .awxjs__ui-slider-tick,.awxb-component.awxb-component .awxjs__ui-timeline .awxjs__ui-slider .awxjs__ui-slider-ticks .awxjs__ui-slider-tick{background:#aaa}.awxb-view.awxb-view .awxjs__ui-timeline .awxjs__ui-slider .awxjs__ui-slider-ticks .awxjs__ui-slider-tick .awxjs__ui-slider-tick-label,.awxb-component.awxb-component .awxjs__ui-timeline .awxjs__ui-slider .awxjs__ui-slider-ticks .awxjs__ui-slider-tick .awxjs__ui-slider-tick-label{color:#666}.awxb-view.awxb-view .awxjs__ui-timeline .awxjs__ui-slider-span .awxjs__ui-slider-span-inner,.awxb-component.awxb-component .awxjs__ui-timeline .awxjs__ui-slider-span .awxjs__ui-slider-span-inner{background:#ddd}.awxb-view.awxb-view .awxjs__ui-timeline .awxjs__ui-slider-span .awxjs__ui-slider-span-item.awxjs__ui-slider-span-past,.awxb-component.awxb-component .awxjs__ui-timeline .awxjs__ui-slider-span .awxjs__ui-slider-span-item.awxjs__ui-slider-span-past{background:#ddd}.awxb-view.awxb-view .awxjs__ui-timeline .awxjs__ui-slider-span .awxjs__ui-slider-span-item.awxjs__ui-slider-span-future,.awxb-component.awxb-component .awxjs__ui-timeline .awxjs__ui-slider-span .awxjs__ui-slider-span-item.awxjs__ui-slider-span-future{background:#ccc}.awxb-view.awxb-view .awxjs__ui-timeline .awxjs__ui-slider-indicator:before,.awxb-component.awxb-component .awxjs__ui-timeline .awxjs__ui-slider-indicator:before{border-bottom-color:#fff}.awxb-view.awxb-view .map-nav,.awxb-component.awxb-component .map-nav{margin-top:.875rem;font-size:.875rem}.awxb-view.awxb-view .map-nav .label,.awxb-component.awxb-component .map-nav .label{font-size:.75rem;text-transform:uppercase}.awxb-view.awxb-view .map-nav .awxb-nav-regions,.awxb-component.awxb-component .map-nav .awxb-nav-regions{display:inline-block}.awxb-view.awxb-view .map-nav ul,.awxb-component.awxb-component .map-nav ul{display:inline-block;margin:0 0 0 20px;padding:0;list-style:none}.awxb-view.awxb-view .map-nav ul>li,.awxb-component.awxb-component .map-nav ul>li{display:inline-block;font-weight:600}.awxb-view.awxb-view .map-nav ul>li+li,.awxb-component.awxb-component .map-nav ul>li+li{position:relative;margin-left:10px}.awxb-view.awxb-view .map-nav ul>li+li .inner,.awxb-component.awxb-component .map-nav ul>li+li .inner{position:relative;margin-left:25px}.awxb-view.awxb-view .map-nav ul>li+li .icon.separator,.awxb-component.awxb-component .map-nav ul>li+li .icon.separator{display:block;position:absolute;top:50%;left:0;margin-top:-8px;width:16px;height:16px;fill:#ccc}.awxb-view.awxb-view .map-nav ul>li .btn-icon-right span,.awxb-component.awxb-component .map-nav ul>li .btn-icon-right span{margin-right:22px}.awxb-view.awxb-view .map-nav ul>li>a,.awxb-component.awxb-component .map-nav ul>li>a{color:#212529}.awxb-view.awxb-view .map-nav ul>li.dropdown .dropdown-items li,.awxb-component.awxb-component .map-nav ul>li.dropdown .dropdown-items li{display:block}.awxb-view.awxb-view .map-nav ul>li.dropdown .dropdown-items li>a,.awxb-component.awxb-component .map-nav ul>li.dropdown .dropdown-items li>a{font-size:.6875rem;font-weight:600;text-transform:uppercase}.awxb-view.awxb-view .map-nav ul>li.dropdown:hover .dropdown-container,.awxb-component.awxb-component .map-nav ul>li.dropdown:hover .dropdown-container{visibility:hidden}.awxb-view.awxb-view .map-nav ul>li.dropdown .inner:hover .dropdown-container,.awxb-component.awxb-component .map-nav ul>li.dropdown .inner:hover .dropdown-container{visibility:visible}@media(max-width: 768px){.awxb-view.awxb-view .map-nav .label,.awxb-component.awxb-component .map-nav .label{display:none}.awxb-view.awxb-view .map-nav ul,.awxb-component.awxb-component .map-nav ul{display:block;margin-left:0}.awxb-view.awxb-view .map-nav ul>li,.awxb-component.awxb-component .map-nav ul>li{display:block}.awxb-view.awxb-view .map-nav ul>li+li,.awxb-component.awxb-component .map-nav ul>li+li{margin-top:10px;margin-left:0}.awxb-view.awxb-view .map-nav ul>li.dropdown .btn,.awxb-component.awxb-component .map-nav ul>li.dropdown .btn{padding:.5rem}.awxb-view.awxb-view .map-nav ul>li.dropdown .btn svg,.awxb-component.awxb-component .map-nav ul>li.dropdown .btn svg{right:5px}.awxb-view.awxb-view .map-nav ul>li.dropdown .dropdown-items>li a,.awxb-component.awxb-component .map-nav ul>li.dropdown .dropdown-items>li a{padding:.65rem 2rem .65rem 1rem}}.awxb-view.awxb-view .map-controls,.awxb-component.awxb-component .map-controls{margin-top:2rem}.awxb-view.awxb-view .map-controls::after,.awxb-component.awxb-component .map-controls::after{display:block;clear:both;content:""}.awxb-view.awxb-view .map-controls .btn-nav,.awxb-component.awxb-component .map-controls .btn-nav{float:left}.awxb-view.awxb-view .map-controls .pagination,.awxb-component.awxb-component .map-controls .pagination{float:left;margin-left:.625rem}.awxb-view.awxb-view .map-controls .pagination>li>a,.awxb-component.awxb-component .map-controls .pagination>li>a{float:none;border:0;margin-left:0;line-height:inherit}@media(max-width: 768px){.awxb-view.awxb-view .map-controls .btn-nav,.awxb-component.awxb-component .map-controls .btn-nav{float:none}.awxb-view.awxb-view .map-controls .btn-nav>.btn,.awxb-component.awxb-component .map-controls .btn-nav>.btn{width:100%;padding:.5rem}}.awxb-view.awxb-view .map-controller .awxjs__map-anim-controls,.awxb-component.awxb-component .map-controller .awxjs__map-anim-controls{display:none}.awxb-view.awxb-view .range-selector li.now,.awxb-component.awxb-component .range-selector li.now{display:block;width:5px;height:1.6875rem;background-color:#17a8e1}.awxb-view.awxb-view .map-related,.awxb-component.awxb-component .map-related{margin-top:2rem;margin-bottom:1rem}.awxb-view.awxb-view .map-related::after,.awxb-component.awxb-component .map-related::after{display:block;clear:both;content:""}.awxb-view.awxb-view .map-related h6,.awxb-component.awxb-component .map-related h6{font-weight:600;text-transform:uppercase}.awxb-view.awxb-view .map-related .nav-map-layers,.awxb-component.awxb-component .map-related .nav-map-layers{margin:0;padding:0;list-style:none}.awxb-view.awxb-view .map-related .nav-map-layers-list li,.awxb-component.awxb-component .map-related .nav-map-layers-list li{border-bottom:1px solid #efefef}.awxb-view.awxb-view .map-related .nav-map-layers-list li>a,.awxb-component.awxb-component .map-related .nav-map-layers-list li>a{display:block;font-size:.6875rem;font-weight:600;padding:.375rem .5rem;text-transform:uppercase;text-decoration:none}.awxb-view.awxb-view .map-related .nav-map-layers-list li>a:hover,.awxb-component.awxb-component .map-related .nav-map-layers-list li>a:hover{background-color:#333;color:#fff}.awxb-view.awxb-view .map-related .nav-map-layers-list li.selected a,.awxb-component.awxb-component .map-related .nav-map-layers-list li.selected a{background-color:#17a8e1;color:#fff}.awxb-view.awxb-view .map-related .nav-map-layers-thumbs li,.awxb-component.awxb-component .map-related .nav-map-layers-thumbs li{display:block;float:left}.awxb-view.awxb-view .map-related .nav-map-layers-thumbs li a,.awxb-component.awxb-component .map-related .nav-map-layers-thumbs li a{display:block;position:relative;margin:3px;width:147px;height:110px;overflow:hidden;text-decoration:none}.awxb-view.awxb-view .map-related .nav-map-layers-thumbs li a p,.awxb-component.awxb-component .map-related .nav-map-layers-thumbs li a p{display:inline-block;position:absolute;top:.25rem;left:.25rem;font-size:.875rem;color:#fff;padding:.125rem .25rem;background:rgba(0,0,0,.2);z-index:10;line-height:1.2;max-width:85%;white-space:normal}.awxb-view.awxb-view .map-related .nav-map-layers-thumbs li a img,.awxb-component.awxb-component .map-related .nav-map-layers-thumbs li a img{z-index:0;width:100%;height:auto}.awxb-view.awxb-view .map-related .nav-map-layers-thumbs li a:hover p,.awxb-component.awxb-component .map-related .nav-map-layers-thumbs li a:hover p{background:#333}.awxb-view.awxb-view .map-related .nav-map-layers-thumbs li a:hover img,.awxb-component.awxb-component .map-related .nav-map-layers-thumbs li a:hover img{opacity:.8}.awxb-view.awxb-view .map-more,.awxb-component.awxb-component .map-more{margin-top:.25rem;font-size:.75rem;color:#777;text-align:right}.awxb-view.awxb-view .map-more a,.awxb-component.awxb-component .map-more a{padding:0;color:#777;text-decoration:none}.awxb-view.awxb-view .map-more a+a,.awxb-component.awxb-component .map-more a+a{padding-left:.375rem}.awxb-view.awxb-view .map-more a:hover,.awxb-component.awxb-component .map-more a:hover{color:#333;text-decoration:underline}.awxb-view.awxb-view .legend-group>div,.awxb-component.awxb-component .legend-group>div{display:inline-block}@media(max-width: 768px){.awxb-view.awxb-view .map-controls .pagination,.awxb-component.awxb-component .map-controls .pagination{display:none}.awxb-view.awxb-view .map-controls .pagination-label,.awxb-component.awxb-component .map-controls .pagination-label{display:none}.awxb-view.awxb-view .timeline,.awxb-component.awxb-component .timeline{display:none}}.awxb-view.awxb-view .awxb-search,.awxb-component.awxb-component .awxb-search{position:relative;overflow:visible}.awxb-view.awxb-view .awxb-search::after,.awxb-component.awxb-component .awxb-search::after{display:block;clear:both;content:""}.awxb-view.awxb-view .awxb-search .search-form .form-search,.awxb-component.awxb-component .awxb-search .search-form .form-search{padding-right:40px}.awxb-view.awxb-view .awxb-search .search-form .form-search::after,.awxb-component.awxb-component .awxb-search .search-form .form-search::after{display:block;clear:both;content:""}.awxb-view.awxb-view .awxb-search .search-form .form-search input,.awxb-view.awxb-view .awxb-search .search-form .form-search button,.awxb-component.awxb-component .awxb-search .search-form .form-search input,.awxb-component.awxb-component .awxb-search .search-form .form-search button{display:block;float:left;height:30px;margin:0}.awxb-view.awxb-view .awxb-search .search-form .form-search input,.awxb-component.awxb-component .awxb-search .search-form .form-search input{width:100%;border:1px solid #333;padding:0 .625rem 0 1rem;font-size:.875rem;line-height:30px;border-right:0;outline:none;border-top-left-radius:15px;border-bottom-left-radius:15px}.awxb-view.awxb-view .awxb-search .search-form .form-search button,.awxb-component.awxb-component .awxb-search .search-form .form-search button{position:absolute;top:0;right:0;width:40px;font-size:.75rem;padding:0 1rem 0 .625rem;background-color:#333;border:0;border-top-right-radius:15px;border-bottom-right-radius:15px}.awxb-view.awxb-view .awxb-search .search-form .form-search button:hover,.awxb-component.awxb-component .awxb-search .search-form .form-search button:hover{background-color:#17a8e1;color:#fff}.awxb-view.awxb-view .awxb-search .search-form .form-search .icon-search,.awxb-component.awxb-component .awxb-search .search-form .form-search .icon-search{position:absolute;top:50%;left:45%;margin:-8px 0 0 -8px;width:16px;height:16px;fill:#fff}.awxb-view.awxb-view .awxb-search .search-form.has-results .form-search input,.awxb-component.awxb-component .awxb-search .search-form.has-results .form-search input{border-bottom-right-radius:0;border-bottom-left-radius:0}.awxb-view.awxb-view .awxb-search .search-results,.awxb-component.awxb-component .awxb-search .search-results{position:absolute;top:35px;left:0;right:0;margin:0 5px;z-index:1000;max-height:300px;overflow:auto;background:rgba(255,255,255,.95);border-bottom:3px solid #17a8e1;box-shadow:0 1px 2px 2px rgba(0,0,0,.2)}.awxb-view.awxb-view .awxb-search .search-results ul,.awxb-component.awxb-component .awxb-search .search-results ul{margin:0;padding:0;list-style:none}.awxb-view.awxb-view .awxb-search .search-results ul>li,.awxb-component.awxb-component .awxb-search .search-results ul>li{border-top:1px solid #efefef;padding:4px 8px;font-size:.875rem}.awxb-view.awxb-view .awxb-search .search-results ul>li:first-child,.awxb-component.awxb-component .awxb-search .search-results ul>li:first-child{border-top:0}.awxb-view.awxb-view .awxb-search .search-results ul>li:hover,.awxb-component.awxb-component .awxb-search .search-results ul>li:hover{cursor:pointer;background:#efefef}.awxb-view.awxb-view .awxb-search .search-results ul>li.selected,.awxb-component.awxb-component .awxb-search .search-results ul>li.selected{background:#efefef}@media(max-width: 576px){.awxb-view.awxb-view .form-search,.awxb-component.awxb-component .form-search{float:none;margin:1.25rem auto 0}.awxb-view.awxb-view .form-search input,.awxb-component.awxb-component .form-search input{width:85%}}.awxb-view.awxb-view .indice.indice-0,.awxb-component.awxb-component .indice.indice-0{background-color:#999 !important}.awxb-view.awxb-view .indice.indice-1,.awxb-component.awxb-component .indice.indice-1{background-color:#10e300 !important}.awxb-view.awxb-view .indice.indice-2,.awxb-component.awxb-component .indice.indice-2{background-color:#eee600 !important}.awxb-view.awxb-view .indice.indice-3,.awxb-component.awxb-component .indice.indice-3{background-color:#e50 !important}.awxb-view.awxb-view .indice.indice-4,.awxb-component.awxb-component .indice.indice-4{background-color:#e00 !important}.awxb-view.awxb-view .indice.indice-5,.awxb-component.awxb-component .indice.indice-5{background-color:#ff008e !important}.awxb-modal-container{position:fixed;top:0;left:0;width:100%;height:100%;overflow:hidden;z-index:10000}.awxb-modal-container .awxb-modal{position:relative;overflow:hidden;width:800px;margin:auto;background:#fff}.awxb-modal-container .awxb-modal .awxb-modal-title{background:#17a8e1;padding:15px;font-size:16px;font-weight:600;color:#fff;text-transform:uppercase}.awxb-modal-container .awxb-modal .awxb-modal-content{overflow-y:auto}.awxb-modal-container .awxb-modal .awxb-modal-content .awxb-modal-inner{padding:20px;clear:both}.awxb-modal-container .awxb-modal .awxb-modal-controls{margin-top:40px}.awxb-modal-container .awxb-modal .awxb-modal-controls a{margin-right:10px}.awxb-modal-container .awxb-modal .awxb-modal-controls a:last-child{margin-right:0}.awxb-modal-container .awxb-modal .btn-close{display:block;position:absolute;top:15px;right:12px;width:20px;height:20px}.awxb-modal-container .awxb-modal .btn-close svg{width:20px;height:20px;fill:rgba(255,255,255,.6)}.awxb-modal-container .awxb-modal .btn-close:hover{cursor:pointer}.awxb-modal-container .awxb-modal .btn-close:hover svg{fill:#fff}.awxb-modal-fader{position:fixed;width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.7);z-index:9999}.awxb-modal-under{overflow:hidden}.awxb-modal-dialog .awxb-modal-controls{text-align:center}@media(max-width: 576px){.awxb-modal-container .awxb-modal{width:85% !important}}

/*# sourceMappingURL=styles.css.map*/