.dashboard .box-one {
  padding: 0px;
}
.dashboard .box-one .header {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #eee;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  padding: 20px;
  position: relative;
}
.dashboard .box-one img:first-of-type {
  width: 60%;
  max-width: 200px;
}
.dashboard .box-one img:last-of-type {
  width: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 20px;
  top: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.dashboard .box-one div:not(.header) {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  margin: auto 0px;
}
.dashboard .box-one div:not(.header) > article {
  border-top: solid #eee 1px;
  border-bottom: solid #eee 2px;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100%;
}
.dashboard .box-one div:not(.header) > article h4 {
  margin: 20px 0px 15px;
}
.dashboard .box-one div:not(.header) > article span {
  display: block;
}

.dashboard .box-three > div {
  gap: 20px;
  margin-top: 10px;
}
.dashboard .box-three > div > article {
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dashboard .box-three > div > article > div {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80px;
  height: 80px;
}
.dashboard .box-three > div > article:first-child > div {
  background-color: #CBE3FF;
  color: var(--blue-color);
}
.dashboard .box-three > div > article:first-child > article > div {
  background-color: #CBE3FF;
}
.dashboard .box-three > div > article:first-child > article > div::before {
  width: 80%;
  background-color: var(--blue-color);
}
.dashboard .box-three > div > article:first-child > article > div::after {
  border-top-color: var(--blue-color);
  left: 80%;
}
.dashboard .box-three > div > article:first-child > article > div p {
  background-color: var(--blue-color);
  left: 80%;
}
.dashboard .box-three > div > article:nth-child(2) > div {
  background-color: #FDECCE;
  color: var(--orange-color);
}
.dashboard .box-three > div > article:last-child > div {
  background-color: #D2F3DE;
  color: var(--green-color);
}
.dashboard .box-three > div > article > article {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.dashboard .box-three > div > article > article p:first-child {
  margin: 0px;
}
.dashboard .box-three > div > article > article > p:last-of-type {
  margin: 5px 0px 10px;
}
.dashboard .box-three > div > article > article > div {
  width: 100%;
  height: 4px;
  position: relative;
}
.dashboard .box-three > div > article > article > div p {
  position: absolute;
  color: #fff;
  bottom: 14px;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  padding: 3px 5px;
  border-radius: 5px;
}
.dashboard .box-three > div > article > article > div::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
}
.dashboard .box-three > div > article > article > div::after {
  content: "";
  position: absolute;
  display: block;
  border: solid 5px rgba(0, 0, 0, 0);
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}
.dashboard .box-three > div > article:nth-child(2) > article > div {
  background-color: #FDECCE;
}
.dashboard .box-three > div > article:nth-child(2) > article > div::before {
  width: 55%;
  background-color: var(--orange-color);
}
.dashboard .box-three > div > article:nth-child(2) > article > div::after {
  border-top-color: var(--orange-color);
  left: 55%;
}
.dashboard .box-three > div > article:nth-child(2) > article > div p {
  background-color: var(--orange-color);
  left: 55%;
}
.dashboard .box-three > div > article:last-child > article > div {
  background-color: #D2F3DE;
}
.dashboard .box-three > div > article:last-child > article > div::before {
  width: 75%;
  background-color: var(--green-color);
}
.dashboard .box-three > div > article:last-child > article > div::after {
  border-top-color: var(--green-color);
  left: 75%;
}
.dashboard .box-three > div > article:last-child > article > div p {
  background-color: var(--green-color);
  left: 75%;
}

.dashboard .box-tow form {
  gap: 10px;
}
.dashboard .box-tow form input:first-child {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px;
  border-radius: var(--main-radius);
  background-color: #eee;
}
.dashboard .box-tow form input:last-of-type {
  outline: none;
  border: none;
  margin: 0px;
  margin-left: auto;
}
.dashboard .box-tow form :focus {
  outline: none;
}
.dashboard .box-tow form textarea {
  resize: none;
  width: 100%;
  /* height: 100%; */
  background-color: #eee;
  outline: none;
  border: none;
  border-radius: var(--main-radius);
  padding: 10px;
  height: 180px;
}
.dashboard .box-tow form ::-webkit-input-placeholder {
  text-transform: capitalize;
}
.dashboard .box-tow form ::-moz-placeholder {
  text-transform: capitalize;
}
.dashboard .box-tow form :-ms-input-placeholder {
  text-transform: capitalize;
}
.dashboard .box-tow form ::-ms-input-placeholder {
  text-transform: capitalize;
}
.dashboard .box-tow form ::placeholder {
  text-transform: capitalize;
}

.dashboard .box-four > div {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.dashboard .box-four > div article {
  padding: 15px;
  border-radius: var(--main-radius);
  border: 1px solid #ccc;
  text-align: center;
}
.dashboard .box-four > div article h2 {
  margin: 10px auto 0px;
}
.dashboard .box-four > div article:first-child i {
  color: var(--orange-color);
}
.dashboard .box-four > div article:nth-child(2) i {
  color: var(--blue-color);
}
.dashboard .box-four > div article:nth-child(3) i {
  color: var(--green-color);
}
.dashboard .box-four > div article:last-child i {
  color: var(--red-color);
}
.dashboard .box-four > div article p {
  margin-bottom: 0px;
}

.dashboard .box-five > div > div {
  /* justify-content: center; */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  border-top: 1px solid #ccc;
  gap: 10px;
}
.dashboard .box-five > div > div:first-child {
  /* border-bottom: 1px solid #ccc; */
  border-top-width: 0px;
}
.dashboard .box-five > div > div img {
  width: 100px;
  border-radius: var(--main-radius);
}
.dashboard .box-five > div > div section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dashboard .box-five > div > div section article h3 {
  margin: 0px 0px 10px;
  font-size: 16px;
}
.dashboard .box-five > div > div section article P {
  margin: 0px;
  font-size: 14px;
}
.dashboard .box-five > div > div section > p {
  background-color: #eee;
  color: #000;
  padding: 3px 5px;
  text-transform: capitalize;
  border-radius: 3px;
  font-size: 13px;
}

.dashboard .box-six > div > section {
  padding: 15px 0px;
  border-bottom: solid 1px #ccc;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.dashboard .box-six > div > section:last-child {
  border-bottom-width: 0px;
}
.dashboard .box-six > div > section i {
  color: var(--grey-color);
  -webkit-transition: color var(--main-transtion);
  transition: color var(--main-transtion);
}
.dashboard .box-six > div > section i:hover {
  color: var(--red-color);
  opacity: 1;
}
.dashboard .box-six > div > section h3 {
  margin: 0px;
  font-size: 15px;
}
.dashboard .box-six > div > section p {
  margin-bottom: 0px;
}
.dashboard .box-six > div > section.delete {
  opacity: 0.5;
}
.dashboard .box-six > div > section.delete article {
  text-decoration: line-through;
}

.dashboard .box-seven > section article {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dashboard .box-seven > section article p:last-child:not(.p) {
  background-color: #eee;
  color: #000;
  padding: 3px 5px;
  border-radius: 5px;
  margin: 0px;
}

.dashboard {
  /* start box eight */
}
.dashboard .box-eight > div section {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #eee;
}
.dashboard .box-eight > div section:last-child {
  border-bottom: 0px;
}
.dashboard .box-eight > div section > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dashboard .box-eight > div section > div img {
  width: 40px;
  padding: 10px 0px;
}
.dashboard .box-eight > div section > div article h4 {
  margin: 0px;
  font-weight: normal;
}
.dashboard .box-eight > div section > div article p {
  margin-bottom: 0px;
}
.dashboard .box-eight > div section > p {
  background-color: #eee;
  color: #000;
  padding: 3px 5px;
  border-radius: 5px;
  margin: 0px;
}

.dashboard .box-nine {
  position: relative;
}
.dashboard .box-nine img {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 160px;
  opacity: 0.5;
}
.dashboard .box-nine div div {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dashboard .box-nine div div .circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--blue-color);
  -webkit-box-shadow: 0px 0px 0 3px var(--blue-color);
          box-shadow: 0px 0px 0 3px var(--blue-color);
  border: 3px solid white;
}
.dashboard .box-nine div div:last-child .circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  -webkit-box-shadow: 0px 0px 0 3px var(--blue-color);
          box-shadow: 0px 0px 0 3px var(--blue-color);
  border: 3px solid white;
}
.dashboard .box-nine div div:nth-last-child(2) .circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 0 3px var(--blue-color);
          box-shadow: 0px 0px 0 3px var(--blue-color);
  border: 3px solid white;
  -webkit-animation: disappearAndShow 1s ease-in-out infinite alternate;
          animation: disappearAndShow 1s ease-in-out infinite alternate;
}
.dashboard .box-nine div div h3 {
  padding: 0px;
  padding-left: 20px;
  font-weight: normal;
  margin: 0px;
}
.dashboard .box-nine > div {
  position: relative;
  gap: 20px;
  z-index: 1;
}
.dashboard .box-nine > div::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background-color: var(--blue-color);
  z-index: -1;
}

@-webkit-keyframes disappearAndShow {
  from {
    background-color: var(--blue-color);
  }
  to {
    background-color: white;
  }
}

@keyframes disappearAndShow {
  from {
    background-color: var(--blue-color);
  }
  to {
    background-color: white;
  }
}
.dashboard .box-ten > section article {
  padding-left: 20px;
  border-left: solid 2px;
  margin: 10px 0px 0px 30px;
  position: relative;
}
.dashboard .box-ten > section article h3 {
  padding: 0px;
  margin: 0px;
  font-size: 18px;
}
.dashboard .box-ten > section article p {
  margin: 0px;
  padding: 10px 0px 0px;
}
.dashboard .box-ten > section article::before {
  content: "";
  width: 20px;
  height: 20px;
  /* margin: 5px; */
  border-radius: 50%;
  position: absolute;
  left: -10px;
  top: 50%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
}
.dashboard .box-ten > section article:first-child {
  border-color: var(--blue-color);
}
.dashboard .box-ten > section article:first-child::before {
  background-color: var(--blue-color);
}
.dashboard .box-ten > section article:last-child {
  border-color: var(--green-color);
}
.dashboard .box-ten > section article:last-child::before {
  background-color: var(--green-color);
}
.dashboard .box-ten > section article:nth-child(2) {
  border-color: var(--orange-color);
}
.dashboard .box-ten > section article:nth-child(2)::before {
  background-color: var(--orange-color);
}
.dashboard .box-ten > section article:nth-child(3) {
  border-color: var(--red-color);
}
.dashboard .box-ten > section article:nth-child(3)::before {
  background-color: var(--red-color);
}

.dashboard .box11th > section {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  height: 100%;
}
.dashboard .box11th > section article:first-child {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.dashboard .box11th > section article:first-child img {
  height: 48px;
}
.dashboard .box11th > section article:first-child article {
  margin-left: 10px;
}
.dashboard .box11th > section article:first-child article h4 {
  padding: 0px;
  margin: 0px 0px 10px;
}
.dashboard .box11th > section article:first-child article p {
  margin: 0PX;
  padding: 0px;
}
.dashboard .box11th > section article:last-child {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dashboard .box11th > section hr {
  width: 100%;
  border: solid rgba(136, 136, 136, 0.3333333333) 1px;
}

.dashboard .box12th > section {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  height: 100%;
}
.dashboard .box12th > section > article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dashboard .box12th > section > article article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 15px;
}
.dashboard .box12th > section > article article p {
  padding: 0px;
  margin: 0px;
}
.dashboard .box12th > section > article article div {
  padding: 5px 10px;
  border-radius: 5px;
}
.dashboard .box12th > section > article:first-child {
  background-color: rgba(29, 161, 242, 0.2);
  color: #1da1f2;
}
.dashboard .box12th > section > article:first-child div {
  background-color: #1da1f2;
  color: #fff;
}
.dashboard .box12th > section > article:nth-child(2) {
  background-color: rgba(24, 119, 242, 0.2);
  color: #1877f2;
}
.dashboard .box12th > section > article:nth-child(2) div {
  background-color: #1877f2;
  color: #fff;
}
.dashboard .box12th > section > article:nth-last-child(2) {
  background-color: rgba(255, 0, 0, 0.2);
  color: #ff0000;
}
.dashboard .box12th > section > article:nth-last-child(2) div {
  background-color: #ff0000;
  color: #fff;
}
.dashboard .box12th > section > article:last-child {
  background-color: rgba(0, 119, 181, 0.2);
  color: #0077b5;
}
.dashboard .box12th > section > article:last-child div {
  background-color: #0077b5;
  color: #fff;
}
.dashboard .box12th > section > article div:first-child {
  width: 52px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.dashboard .box12th > section > article div:first-child:hover {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}

.dashboard .box13th {
  max-width: 100%;
  margin-top: 20px;
  display: -ms-grid;
  display: grid;
}
.dashboard .box13th > section {
  overflow-x: auto;
}
.dashboard .box13th > section table {
  border-spacing: 0px;
  min-width: 1000px;
  text-transform: capitalize;
  font-size: 15px;
  margin-top: 10px;
}
.dashboard .box13th > section table div {
  gap: -10px;
}
.dashboard .box13th > section table thead tr {
  background-color: #eee;
  color: #000;
}
.dashboard .box13th > section table th {
  font-weight: bold;
  text-align: start;
}
.dashboard .box13th > section table td {
  border: #eee 1px solid;
}
.dashboard .box13th > section table td, .dashboard .box13th > section table th {
  padding: 15px;
}
.dashboard .box13th > section table tbody tr {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.dashboard .box13th > section table tbody tr:hover {
  background-color: rgba(238, 238, 238, 0.3333333333);
}
.dashboard .box13th > section table img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 2px;
  background-color: white;
}
.dashboard .box13th > section table img:not(:first-child) {
  margin-left: -10px;
}

aside ul li:first-child {
  background-color: rgba(238, 238, 238, 0.4);
}
/*# sourceMappingURL=Dashboard.css.map */