body {
  margin: 0;
  padding: 0;
  /* background-image: url('../img/noise.png'); */
  background-color: #296eac;
  /* font-family: "Roboto"; */
  font-family: "Open Sans", Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.menuHeader {
  position: absolute;
  width: 197px;
  background: #252525;
  text-align: right;
  padding: 20px;
  right: -66px;
  top: -30px;
  color: #e1dddf;
  z-index: 99999;
  height: 50vw;
}

.timeLineDiv {
  max-width: 900px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.cardTitle {
  font-size: 1.1rem;
  color: #2975b6;
}

.timeline {
  position: relative;
}

.timeline .timeline-event {
  position: relative;
  padding-top: 5px;
  padding-bottom: 5px;
}

.timeline .timeline-event .timeline-content {
  position: relative;
  width: calc(50% - 50px);
}

.timeline .timeline-event::before {
  display: block;
  content: "";
  width: 2px;
  height: calc(50% - 30px);
  position: absolute;
  background: #d2d2d2;
  left: calc(50% - 1px);
  top: 0;
}

.timeline .timeline-event::after {
  display: block;
  content: "";
  width: 2px;
  height: calc(50% - 30px);
  position: absolute;
  background: #d2d2d2;
  left: calc(50% - 1px);
  top: calc(50% + 30px);
}

.timeline .timeline-event:first-child::before {
  display: none;
}

.timeline .timeline-event:last-child::after {
  display: none;
}

.timeline .timeline-event:nth-child(even) .timeline-content {
  margin-left: calc(50% + 50px);
}

.timeline .timeline-event:nth-child(odd) .timeline-content {
  margin-left: 0;
}

.timeline .timeline-badge {
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  background: #d2d2d2;
  top: calc(50% - 20px);
  right: calc(50% - 20px);
  border-radius: 50%;
  text-align: center;
  cursor: default;
}

.timeline .timeline-badge i {
  font-size: 25px;
  line-height: 40px;
}
@media (max-width: 600px) {
  .timeline .timeline-event .timeline-content {
    width: calc(100% - 70px);
  }

  .timeline .timeline-event::before {
    left: 19px;
  }

  .timeline .timeline-event::after {
    left: 19px;
  }

  .timeline .timeline-event:nth-child(even) .timeline-content {
    margin-left: 70px;
  }

  .timeline .timeline-event:nth-child(odd) .timeline-content {
    margin-left: 70px;
  }

  .timeline .timeline-badge {
    left: 0;
  }
}
@media only screen and (max-width: 600px) {
  .form {
    flex-direction: column !important;
  }

  .timeLineDiv {
    width: 98% !important;
  }
}

/* User */

.user-detail .edit {
  display: grid;
  grid-template-columns: 60vw;
  /* grid-template-rows: 14vw 21vw; */
}

.user-detail .personal {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* grid-template-rows: 5vw 5vw 5vw; */
  grid-gap: 3px;
}

.status {
  display: flex;
  flex-direction: row;
}

.un-paid {
  width: 100%;
  /* border-radius: 8px; */
  background-color: #f44336;
  margin: 2px 10px;
  padding: 17px;
}

.paid {
  width: 100%;
  background-color: #1cab58;
  /* border-radius: 8px; */
  margin: 2px 10px;
  padding: 17px;
}

.payment-datail {
  display: flex;
  flex-direction: row;
  padding: 20px 10px;
  border-radius: 4px;
  background-color: #ececec;
  border: 1px solid #d8d8d8;
}

.field {
  width: 100%;
  text-align: left;
}
/* .user-detail .personal {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.user-detail .personal .user-top{
    float: left;
    text-align: left;
    display: grid;
    grid-template-rows: 1fr 2vw 2vw 2vw;
}
.user-detail .personal .user-body{
    display: grid;
    grid-template-columns: 1fr 1fr;
} */
