
.tw-grid {
  display: flex;
  margin: 0 -12px;
}

.tw-grid-col {
  flex-grow: 1;
}

/* 2 columns by default, hide columns 2 & 3 */
.tw-grid-col:nth-child(2), .tw-grid-col:nth-child(3) {
  display: none;
}

/* 3 columns at medium size */
@media (min-width: 768px) {
  .tw-grid-col:nth-child(2) {
    display: block;
  }
  /* show column 2 */
}
/* 4 columns at large size */
@media (min-width: 1080px) {
  .tw-grid-col {
    min-width: 30%;
    max-width: 50%;
  }
  .tw-grid-col:nth-child(3) {
    display: block;
  }
  /* show column 3 */
}
/* ICONS ----------------------*/
.icon-frame {
  width: 64px;
  height: 64px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-rounded-frame {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-pink {
  background-color: var(--tw-ref-color-pink15);
  color: var(--tw-ref-color-pink65);
}

.icon-orange {
  background-color: var(--tw-ref-color-orange15);
  color: var(--tw-ref-color-orange65);
}

.icon-yellow {
  background-color: var(--tw-ref-color-yellow15);
  color: var(--tw-ref-color-yellow65);
}

.icon-green {
  background-color: var(--tw-ref-color-green15);
  color: var(--tw-ref-color-green65);
}

.icon-blue {
  background-color: var(--tw-ref-color-blue15);
  color: var(--tw-ref-color-blue65);
}

.icon-azure {
  background-color: var(--tw-ref-color-azure15);
  color: var(--tw-ref-color-azure65);
}

.icon-fuchsia {
  background-color: var(--tw-ref-color-fuchsia15);
  color: var(--tw-ref-color-fuchsia65);
}

.icon-rose {
  background-color: var(--tw-ref-color-rose15);
  color: var(--tw-ref-color-rose65);
}

.icon-missing-bg {
  background-color: var(--tw-ref-color-error15);
  color: var(--tw-ref-color-error50);
}

.icon-neutral-border {
  border: 1px solid var(--tw-ref-color-brand-neutral);
}

.icon-pink-bg {
  color: var(--tw-ref-color-pink15);
  background-color: var(--tw-ref-color-pink50);
}

.icon-orange-bg {
  color: var(--tw-ref-color-orange15);
  background-color: var(--tw-ref-color-orange50);
}

.icon-yellow-bg {
  color: var(--tw-ref-color-yellow15);
  background-color: var(--tw-ref-color-yellow65);
}

.icon-green-bg {
  color: var(--tw-ref-color-green15);
  background-color: var(--tw-ref-color-green50);
}

.icon-blue-bg {
  color: var(--tw-ref-color-blue15);
  background-color: var(--tw-ref-color-blue50);
}

.icon-azure-bg {
  color: var(--tw-ref-color-azure15);
  background-color: var(--tw-ref-color-azure50);
}

.icon-fuchsia-bg {
  color: var(--tw-ref-color-fuchsia15);
  background-color: var(--tw-ref-color-fuchsia50);
}

.icon-rose-bg {
  color: var(--tw-ref-color-rose15);
  background-color: var(--tw-ref-color-rose50);
}

/* WIDGETS ----------------------*/
.tw-widget {
  background-color: white;
  border-radius: 16px;
  margin: 12px 12px 24px 12px;
  padding: 24px;
}
.tw-widget .header {
  padding-bottom: 24px;
}
.tw-widget .header h2 {
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 0;
}
.tw-widget .body .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.tw-widget .body .row .column {
  display: flex;
  flex-direction: column;
}
.tw-widget .body .row .column.w-50 {
  width: 50%;
}
.tw-widget .body .big-number {
  font-size: 40px;
  font-family: "Nunito";
  font-weight: 700;
}
.tw-widget .body .small-title {
  color: var(--tw-ref-color-brand-neutral);
}
.tw-widget .footer {
  border-top: #F1F5F7 2px solid;
}
.tw-widget .footer a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  margin-bottom: -24px;
  text-decoration: none;
  color: #809FB8;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  transition: all ease-out 350ms;
  
}
.tw-widget .footer a:hover {
  color: #2280BF;
}
.tw-widget .footer a [class^=wi-],
.tw-widget .footer a [class*=" wi-"] {
  margin-left: 32px;
  transition: all ease-out 350ms;
}
.tw-widget .footer a:hover [class^=wi-], .tw-widget .footer a:hover [class*=" wi-"] {
  margin-left: 48px;
}

.link-list .body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.link-list .body a.btn-icon {
  text-decoration: none;
  border: 1px solid var(--tw-ref-color-azure50);
  display: flex;
  border-radius: 16px;
  padding: 16px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all ease-in 200ms;
}
.link-list .body a.btn-icon h3 {
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  margin: 0;
}
.link-list .body a.btn-icon:hover {
  background-color: var(--tw-ref-color-azure50);
  color: white;
}

/* WIDGET: Calendar List ----------------------*/
.event-item {
  background-color: var(--tw-ref-color-pink15);
  padding: 16px 16px 16px 32px;
  position: relative;
  border-radius: 16px;
  margin-bottom: 12px;
}
.event-item:last-child {
  margin-bottom: 24px;
}
.event-item:after {
  content: "";
  display: block;
  width: 6px;
  height: calc(100% - 32px);
  border-radius: 4px;
  background-color: var(--tw-ref-color-pink50);
  position: absolute;
  left: 16px;
  top: 16px;
}
.event-item .event-title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 4px;
}
.event-item .event-details {
  color: var(--tw-ref-color-pink65);
  font-size: 14px;
}

/* WIDGET: Notes ----------------------*/
.note-item {
  background-color: var(--tw-ref-color-azure15);
  padding: 16px 16px 16px 32px;
  position: relative;
  border-radius: 16px;
  margin-bottom: 12px;
}
.note-item:last-child {
  margin-bottom: 24px;
}
.note-item:after {
  content: "";
  display: block;
  width: 6px;
  height: calc(100% - 32px);
  border-radius: 4px;
  background-color: var(--tw-ref-color-azure50);
  position: absolute;
  left: 16px;
  top: 16px;
}
.note-item .note-details {
  color: var(--tw-ref-color-azure65);
  font-size: 14px;
  margin-bottom: 12px;
}
.note-item .note-title {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 8px;
}
.note-item .note-content {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 4px;
}

/* WIDGET: Document List ----------------------*/
.document-list .body {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.document-item {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 2px solid var(--tw-ref-color-brand-neutral-light1);
  padding: 16px 0;
  text-decoration: none;
  transition: all ease-out 300ms;
  transform-origin: left;
  color: var(--tw-ref-color-azure50);
}
.document-item:hover {
  color: var(--tw-ref-color-azure65);
  transform: scale(1.025);
  transition: all ease-in-out 200ms;
}

.document-name {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin: 0;
}

.document-list .footer {
  border: none;
}

/* WIDGET: Progress Tracker ----------------------*/
.progress-tracker .body .completed {
  flex-wrap: wrap;
}
.progress-tracker .body .incompleted {
  border-top: #F1F5F7 2px solid;
  flex-direction: column;
  gap: 0;
  padding: 16px 0;
  margin-bottom: 0;
}
.progress-tracker .body .incompleted h3 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 8px;
  text-align: left;
  width: 100%;
}
.progress-tracker .body .incompleted .progress-list-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 16px;
  padding: 8px 0;
}
.progress-tracker .body .incompleted .icon-frame {
  width: 40px;
  height: 40px;
}
.progress-tracker .body .incompleted h4 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin: 0;
}

/* WIDGET: Bonus ----------------------*/
.bonus .body .flex-column {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.bonus .body .flex-column .status {
  padding: 8px 0;
  width: 70%;
}
.bonus .body .flex-column .status h3 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 8px;
  text-align: left;
}

/* WIDGET: Color Cards ----------------------*/
.color-card {
  text-decoration: none;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: white;
  transition: all ease-out 300ms;
}
.color-card .total {
  display: flex;
  gap: 24px;
}
.color-card .total .info {
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.color-card .total .info .title {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
}
.color-card .total .info .number {
  font-size: 36px;
  font-family: "Nunito";
}
.color-card .earning-list .earning-item {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--tw-ref-color-blue50);
}
.color-card.bg-green:hover {
  background-color: var(--tw-ref-color-green65) !important;
}
.color-card.bg-blue:hover {
  background-color: var(--tw-ref-color-blue65) !important;
}
.color-card.bg-azure:hover {
  background-color: var(--tw-ref-color-azure65) !important;
}

/* WIDGET: Circular Chart ----------------------*/
.circularChart {
  max-width: 240px;
  margin-bottom: 16px;
  margin-top: 8px;
}

.circularChart svg {
  overflow: visible;
}

.circularChart path.mainline {
  stroke-width: 6;
}

.circularChart path.baseline {
  stroke-width: 2;
  stroke: #f1f2f3;
}

.circularChart .ldBar-label {
  font-size: 40px;
  font-family: "Nunito";
  font-weight: 700;
}

.circularChart .ldBar-label:after {
  content: "%";
  display: inline;
  font-size: 22px;
  position: absolute;
  top: 4px;
  left: 100%;
}

/* WIDGET: Curly Bar Chart ----------------------*/
.curly-bar {
  margin-bottom: 32px;
}
.curly-bar .ldBar-label {
  margin-top: -20px;
  text-align: right;
  padding-right: 20px;
  color: var(--tw-ref-color-brand-neutral);
  font-weight: 600;
}
.curly-bar .ldBar-label::after {
  content: " / 100%";
}

/* WIDGET: Applications ----------------------*/
.line-bar {
  min-width: 100%;
  height: auto !important;
  stroke-linecap: round;
  width: auto !important;
  margin-left: -16px;
  margin-right: -16px;
}
.line-bar path.mainline {
  stroke-width: 2.5;
  stroke-linecap: round;
}
.line-bar path.baseline {
  stroke: white;
  stroke-width: 2.5;
}
.line-bar .ldBar-label {
  margin-top: -8px;
  text-align: right;
  padding-right: 16px;
  color: var(--tw-ref-color-brand-neutral);
  font-weight: 600;
  font-size: 14px;
}
.line-bar .ldBar-label::after {
  content: " / 100%";
}

#app22.line-bar path.mainline {
  stroke: var(--tw-ref-color-pink50);
}
#app22.line-bar .ldBar-label {
  color: var(--tw-ref-color-pink65);
}

#app23.line-bar path.mainline {
  stroke: var(--tw-ref-color-blue50);
}
#app23.line-bar .ldBar-label {
  color: var(--tw-ref-color-blue65);
}

#app5.line-bar path.mainline {
  stroke: var(--tw-ref-color-azure50);
}

.tw-widget.applications a.inner-card {
  color: var(--tw-ref-color-black);
  display: block;
  padding: 16px;
  border-radius: 16px;
  text-decoration: none;
  margin-bottom: 16px;
  border: 2px solid transparent;
}
.tw-widget.applications a.inner-card:hover {
  border: 2px solid var(--tw-ref-color-azure50);
}
.tw-widget.applications a.inner-card h3 {
  font-size: 18px;
}

/* WIDGET: Staff Roster ----------------------*/
.staff-list .staff-item {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid var(--tw-ref-color-brand-neutral-light1);
}
.staff-list .staff-item:last-child {
  border: none;
}

/* WIDGET: Item List with icons ----------------------*/
.item-list-icons {
  width: 100%;
  border-top: #F1F5F7 2px solid;
  flex-direction: column;
  gap: 0;
  padding: 16px 0;
  margin-bottom: 0;
}
.item-list-icons h3 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 8px;
  text-align: left;
  width: 100%;
}
.item-list-icons .progress-list-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 16px;
  padding: 8px 0;
}
.item-list-icons .icon-frame {
  display: flex;
  width: 32px;
  height: 32px;
}
.item-list-icons h4 {
  width: calc(100% - 48px);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  margin: 0;
}

/* SECTIONS ----------------------*/
section.icons {
  background: #fafafa;
  padding: 60px 2rem;
  box-sizing: border-box;
  width: 100%;
}

section.icons .wrap {
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 960px;
  height: 5px;
  display: block;
}

section.chart {
  padding: 0;
}

section.chart .wrap {
  margin: 0 auto;
  max-width: 660px;
}

.svg-container {
  display: inline-block;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  vertical-align: middle;
  overflow: hidden;
}

.svg-content {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

svg#keys {
  z-index: 1;
}

svg#spiral-chart {
  -webkit-clip-path: circle(330px at center);
          clip-path: circle(330px at center);
  z-index: 2;
}

/* PATHS ----------------------*/
.path-group {
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke: transparent;
  transition: all ease 450ms;
}

.path-group:hover {
  cursor: pointer;
  transition: all ease 450ms;
}

/*
.path-group .s-t  {
  stroke-width: 4px;
  stroke: transparent;
  fill: none;
  transition: all ease 450ms;
}

.path-group:hover .s-t  {
  stroke-width: 4px;
  stroke: white;
  transition: all ease 450ms;
}
*/
/* STEPS ----------------------*/
[id^=step-] .s-l {
  fill: #D9D9D9;
}
[id^=step-] .s-d {
  fill: #CCCCCC;
}

#step-1.active .s-l {
  fill: var(--tw-ref-color-pink50);
}
#step-1.active .s-d {
  fill: var(--tw-ref-color-pink65);
}

#step-2.active .s-l {
  fill: var(--tw-ref-color-orange50);
}
#step-2.active .s-d {
  fill: var(--tw-ref-color-orange65);
}

#step-3.active .s-l {
  fill: var(--tw-ref-color-yellow50);
}
#step-3.active .s-d {
  fill: var(--tw-ref-color-yellow65);
}

#step-4.active .s-l {
  fill: var(--tw-ref-color-green50);
}
#step-4.active .s-d {
  fill: var(--tw-ref-color-green65);
}

#step-5.active .s-l {
  fill: var(--tw-ref-color-blue50);
}
#step-5.active .s-d {
  fill: var(--tw-ref-color-blue65);
}

#step-6.active .s-l {
  fill: var(--tw-ref-color-azure50);
}
#step-6.active .s-d {
  fill: var(--tw-ref-color-azure65);
}

#step-7.active .s-l {
  fill: var(--tw-ref-color-fuchsia50);
}
#step-7.active .s-d {
  fill: var(--tw-ref-color-fuchsia65);
}

/* ICONS ----------------------*/
[id^=icon-] {
  transition: all ease 450ms;
}

[id^=icon-]:hover {
  cursor: pointer;
  transition: all ease 450ms;
}

[id^=icon-] .border .left {
  fill: white;
  stroke: #D9D9D9;
  stroke-width: 12px;
}

[id^=icon-] .border .right {
  fill: white;
  stroke: #CCCCCC;
  stroke-width: 12px;
}

[id^=icon-] .symbol {
  fill: #B2B2B2;
}

[id^=icon-].active .symbol {
  fill: #000000;
}

#icon-1.active .border .left {
  stroke: var(--tw-ref-color-pink50);
}
#icon-1.active .border .right {
  stroke: var(--tw-ref-color-pink65);
}

#icon-2.active .border .left {
  stroke: var(--tw-ref-color-orange50);
}
#icon-2.active .border .right {
  stroke: var(--tw-ref-color-orange65);
}

#icon-3.active .border .left {
  stroke: var(--tw-ref-color-yellow50);
}
#icon-3.active .border .right {
  stroke: var(--tw-ref-color-yellow65);
}

#icon-4.active .border .left {
  stroke: var(--tw-ref-color-green50);
}
#icon-4.active .border .right {
  stroke: var(--tw-ref-color-green65);
}

#icon-5.active .border .left {
  stroke: var(--tw-ref-color-blue50);
}
#icon-5.active .border .right {
  stroke: var(--tw-ref-color-blue65);
}

#icon-6.active .border .left {
  stroke: var(--tw-ref-color-azure50);
}
#icon-6.active .border .right {
  stroke: var(--tw-ref-color-azure65);
}

#icon-7.active .border .left {
  stroke: var(--tw-ref-color-fuchsia50);
}
#icon-7.active .border .right {
  stroke: var(--tw-ref-color-fuchsia65);
}

/* CALLOUTS ----------------------*/
.callout {
  opacity: 0;
  /*display: none;*/
  position: absolute !important;
  transform: translate(-50%, calc(-100% - 30px));
  z-index: 99;
  top: -9999px;
  padding: 1rem 1.5rem;
  width: 280px;
  background: white;
  position: relative;
  border-radius: 100px;
  border-width: 2px;
  border-style: solid;
  border-color: #ccc;
  transition: opacity 300ms;
}

.callout-content {
  display: flex;
  align-items: center;
}

.callout-number {
  font-size: 38px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  text-align: center;
  margin-right: 1rem;
  border-right: #ccc 2px solid;
  height: 100%;
  padding: 30px 20px 30px 0;
  color: #ccc;
}

.callout-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}

.callout-text {
  font-size: 14px;
  line-height: 20px;
}

.callout-text p:first-child {
  margin-top: 0;
}

.callout-text p:last-child {
  margin-bottom: 0;
  margin: 0;
}

.svg-triangle {
  position: absolute;
  transform: translateX(-50%);
  top: calc(100% - 1px);
  left: 50%;
}

.svg-triangle .t-line {
  stroke: #ccc;
  stroke-width: 2px;
  fill: none;
}

.svg-triangle .t-fill {
  fill: white;
  stroke: none;
}

#step1-ca.active {
  background-color: var(--tw-ref-color-pink15);
  border-color: var(--tw-ref-color-pink50);
}
#step1-ca.active .callout-number {
  color: var(--tw-ref-color-pink65);
  border-color: var(--tw-ref-color-pink50);
}
#step1-ca.active .svg-triangle .t-line {
  stroke: var(--tw-ref-color-pink50);
}
#step1-ca.active .svg-triangle .t-fill {
  fill: var(--tw-ref-color-pink15);
}

#step2-ca.active {
  background-color: var(--tw-ref-color-orange15);
  border-color: var(--tw-ref-color-orange50);
}
#step2-ca.active .callout-number {
  color: var(--tw-ref-color-orange65);
  border-color: var(--tw-ref-color-orange50);
}
#step2-ca.active .svg-triangle .t-line {
  stroke: var(--tw-ref-color-orange50);
}
#step2-ca.active .svg-triangle .t-fill {
  fill: var(--tw-ref-color-orange15);
}

#step3-ca.active {
  background-color: var(--tw-ref-color-yellow15);
  border-color: var(--tw-ref-color-yellow50);
}
#step3-ca.active .callout-number {
  color: var(--tw-ref-color-yellow65);
  border-color: var(--tw-ref-color-yellow50);
}
#step3-ca.active .svg-triangle .t-line {
  stroke: var(--tw-ref-color-yellow50);
}
#step3-ca.active .svg-triangle .t-fill {
  fill: var(--tw-ref-color-yellow15);
}

#step4-ca.active {
  background-color: var(--tw-ref-color-green15);
  border-color: var(--tw-ref-color-green50);
}
#step4-ca.active .callout-number {
  color: var(--tw-ref-color-green65);
  border-color: var(--tw-ref-color-green50);
}
#step4-ca.active .svg-triangle .t-line {
  stroke: var(--tw-ref-color-green50);
}
#step4-ca.active .svg-triangle .t-fill {
  fill: var(--tw-ref-color-green15);
}

#step5-ca.active {
  background-color: var(--tw-ref-color-blue15);
  border-color: var(--tw-ref-color-blue50);
}
#step5-ca.active .callout-number {
  color: var(--tw-ref-color-blue65);
  border-color: var(--tw-ref-color-blue50);
}
#step5-ca.active .svg-triangle .t-line {
  stroke: var(--tw-ref-color-blue50);
}
#step5-ca.active .svg-triangle .t-fill {
  fill: var(--tw-ref-color-blue15);
}

#step6-ca.active {
  background-color: var(--tw-ref-color-azure15);
  border-color: var(--tw-ref-color-azure50);
}
#step6-ca.active .callout-number {
  color: var(--tw-ref-color-azure65);
  border-color: var(--tw-ref-color-azure50);
}
#step6-ca.active .svg-triangle .t-line {
  stroke: var(--tw-ref-color-azure50);
}
#step6-ca.active .svg-triangle .t-fill {
  fill: var(--tw-ref-color-azure15);
}

#step7-ca.active {
  background-color: var(--tw-ref-color-fuchsia15);
  border-color: var(--tw-ref-color-fuchsia50);
}
#step7-ca.active .callout-number {
  color: var(--tw-ref-color-fuchsia65);
  border-color: var(--tw-ref-color-fuchsia50);
}
#step7-ca.active .svg-triangle .t-line {
  stroke: var(--tw-ref-color-fuchsia50);
}
#step7-ca.active .svg-triangle .t-fill {
  fill: var(--tw-ref-color-fuchsia15);
}

/* MILESTONES ----------------------*/
#milestone-1 {
  position: absolute;
  top: 524px;
  left: 285px;
  z-index: 3;
  width: 90px;
  height: 90px;
}

#milestone1-ca.active {
  background-color: white;
  border-color: black;
}
#milestone1-ca.active .callout-number {
  color: black;
  border-color: black;
}
#milestone1-ca.active .svg-triangle .t-line {
  stroke: black;
}
#milestone1-ca.active .svg-triangle .t-fill {
  fill: white;
}

/* ANIMATION ----------------------*/
@keyframes stretch {
  from {
    transform: scale(0.9);
  }
  to {
    transform: scale(1);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#keys {
  animation-name: stretch;
  animation-duration: 600ms;
  animation-timing-function: ease-in;
  animation-delay: 1000ms;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}

#spiral-chart {
  animation-name: stretch;
  animation-duration: 1200ms;
  animation-timing-function: ease-in;
  animation-delay: 200ms;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}

#spiral-chart #step-1 {
  animation-name: fadeIn;
  animation-duration: 400ms;
  animation-timing-function: ease-in;
  animation-delay: 200ms;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
#spiral-chart #step-2 {
  animation-name: fadeIn;
  animation-duration: 400ms;
  animation-timing-function: ease-in;
  animation-delay: 300ms;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
#spiral-chart #step-3 {
  animation-name: fadeIn;
  animation-duration: 400ms;
  animation-timing-function: ease-in;
  animation-delay: 400ms;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
#spiral-chart #step-4 {
  animation-name: fadeIn;
  animation-duration: 400ms;
  animation-timing-function: ease-in;
  animation-delay: 500ms;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
#spiral-chart #step-5 {
  animation-name: fadeIn;
  animation-duration: 400ms;
  animation-timing-function: ease-in;
  animation-delay: 600ms;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
#spiral-chart #step-6 {
  animation-name: fadeIn;
  animation-duration: 400ms;
  animation-timing-function: ease-in;
  animation-delay: 700ms;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
#spiral-chart #step-7 {
  animation-name: fadeIn;
  animation-duration: 400ms;
  animation-timing-function: ease-in;
  animation-delay: 800ms;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}

#keys #icon-1 {
  animation-name: fadeIn;
  animation-duration: 400ms;
  animation-timing-function: ease-in;
  animation-delay: 1000ms;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
#keys #icon-2 {
  animation-name: fadeIn;
  animation-duration: 400ms;
  animation-timing-function: ease-in;
  animation-delay: 1100ms;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
#keys #icon-3 {
  animation-name: fadeIn;
  animation-duration: 400ms;
  animation-timing-function: ease-in;
  animation-delay: 1200ms;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
#keys #icon-4 {
  animation-name: fadeIn;
  animation-duration: 400ms;
  animation-timing-function: ease-in;
  animation-delay: 1300ms;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
#keys #icon-5 {
  animation-name: fadeIn;
  animation-duration: 400ms;
  animation-timing-function: ease-in;
  animation-delay: 1400ms;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
#keys #icon-6 {
  animation-name: fadeIn;
  animation-duration: 400ms;
  animation-timing-function: ease-in;
  animation-delay: 1500ms;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
#keys #icon-7 {
  animation-name: fadeIn;
  animation-duration: 400ms;
  animation-timing-function: ease-in;
  animation-delay: 1600ms;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}

#milestone-1 {
  animation-name: fadeIn;
  animation-duration: 400ms;
  animation-timing-function: ease-in;
  animation-delay: 1700ms;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}

/* FORMS ----------------------*/
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.form-icon {
  position: relative;
}
.form-icon i {
  position: absolute;
  top: 50%;
  color: #333;
  transform: translateY(-50%);
  pointer-events: none;
}
.form-icon i ~ .form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-icon .left {
  left: 16px;
}
.form-icon .right {
  right: 16px;
}
.form-icon .left ~ .form-control {
  padding-left: 55px;
}
.form-icon .right ~ .form-control {
  padding-right: 55px;
}
.form-icon .right ~ .form-control.is-valid, .form-icon .right ~ .form-control.is-invalid {
  padding-right: 95px;
  background-position: center right 55px;
}

.inner-card {
  padding: 16px;
  border-radius: 16px;
}

/* PROGRESS TRACKER ----------------------*/
.progress-tracker {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.progress-tracker .tw-widget {
  position: relative;
  padding: 10px;
  background-color: #f2f2f2;
  margin-bottom: 10px;
  text-align: center;
  z-index: 1;
  margin: 12px;
  width: 100%;
  flex-grow: 1;
  max-width: 480px;
  background-color: #ddd;
  position: relative;
  z-index: 2;
}
.progress-tracker .tw-widget:first-child {
  margin-top: 24px;
}
.progress-tracker .tw-widget:last-child {
  margin-bottom: 24px;
}
.progress-tracker .tw-widget:nth-child(odd) .bracket-left:before {
  position: absolute;
  top: 50%;
  left: -20%;
  height: 16px;
  width: 20%;
  background-color: var(--tw-ref-color-azure50);
  display: block;
  content: "";
  border-radius: 16px 0 0 0;
  z-index: 0;
}
.progress-tracker .tw-widget:nth-child(odd) .bracket-left:after {
  position: absolute;
  top: 50%;
  left: -20%;
  height: calc(50% + 12px);
  width: 16px;
  background-color: var(--tw-ref-color-azure50);
  display: block;
  content: "";
  border-radius: 16px 0 0 0;
  z-index: 0;
}
.progress-tracker .tw-widget:nth-child(even) .bracket-left:after {
  position: absolute;
  bottom: 50%;
  left: -20%;
  height: calc(50% + 12px);
  width: 16px;
  background-color: var(--tw-ref-color-azure50);
  display: block;
  content: "";
  border-radius: 0 0 0 0;
  z-index: 0;
}
.progress-tracker .tw-widget:nth-child(even) .bracket-left:before {
  position: absolute;
  top: 50%;
  left: -20%;
  height: 16px;
  width: 20%;
  background-color: var(--tw-ref-color-azure50);
  display: block;
  content: "";
  border-radius: 0 0 0 16px;
  z-index: 0;
}
.progress-tracker .tw-widget:nth-child(even) .bracket-right:before {
  position: absolute;
  top: 50%;
  right: -20%;
  height: 16px;
  width: 20%;
  background-color: var(--tw-ref-color-azure50);
  display: block;
  content: "";
  border-radius: 0 16px 0 0;
  z-index: 0;
}
.progress-tracker .tw-widget:nth-child(even) .bracket-right:after {
  position: absolute;
  top: 50%;
  right: -20%;
  height: calc(50% + 12px);
  width: 16px;
  background-color: var(--tw-ref-color-azure50);
  display: block;
  content: "";
  border-radius: 0 16px 0 0;
  z-index: 0;
}
.progress-tracker .tw-widget:nth-child(odd) .bracket-right:before {
  position: absolute;
  top: 50%;
  right: -20%;
  height: 16px;
  width: 20%;
  background-color: var(--tw-ref-color-azure50);
  display: block;
  content: "";
  border-radius: 0 0 16px 0;
  z-index: 0;
}
.progress-tracker .tw-widget:nth-child(odd) .bracket-right:after {
  position: absolute;
  bottom: 50%;
  right: -20%;
  height: calc(50% + 12px);
  width: 16px;
  background-color: var(--tw-ref-color-azure50);
  display: block;
  content: "";
  border-radius: 0 0 0 0;
  z-index: 0;
}
.progress-tracker .tw-widget.completed {
  background-color: #4caf50;
}
.progress-tracker .tw-widget.active {
  background-color: #2196f3;
}/*# sourceMappingURL=style.css.map */