@import "../fonts/metropolis/metropolis.css";
body {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: Metropolis;
  background: #182031;
  color: #ffffff;
}
/* Desktop View */
.wrapper {
  padding: 50px 83px 0px 74px;
  max-width: 1280px;
  background-color: #182031;
  margin: 0 auto;
  display: none;
}
.projectWrap {
  display: flex;
  margin-bottom: 25px;
}
.loaderWrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.project {
  box-sizing: border-box;
  width: 100%;
  /* border: 1px solid green; */
  display: flex;
  justify-content: space-between;
}
.project__name {
  width: 20%;
  color: #fff;
  font-family: Metropolis;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.72px;
  /* border: 1px solid red; */
  margin-right: 15px;
}
.project__progress {
  box-sizing: border-box;
  background-color: #fff;
  width: 55%;
  border-radius: 14px;
  height: 25px;
  margin-right: 40px;
  padding: 4px 7px 4px 5px;
  /* border: 1px solid green; */
}
.project__progress-bar {
  box-sizing: border-box;
  background-color: red;
  /* width: 372px; */
  flex-basis: 1;
  height: 100%;
  top: 654px;
  left: 347px;
  gap: 0px;
  border-radius: 14px 0px 0px 0px;
  border-radius: 14px;
  /* margin: 4px 7px 4px 5px; */
}
.green-bar {
  background-color: #009d92;
}
.project__percentage {
  width: 5%;
  margin-right: 5px;
  color: #fff;
  font-family: Metropolis;
  font-size: 18px;
}
.project__hours {
  width: 10%;
  color: #fff;
  font-family: Metropolis;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.72px;
  /* border: 1px solid blue; */
}
.project__remaining-hours {
  width: 10%;
  color: #fff;
  font-size: 18px;
}
.retainerZero {
  color: #fff;
  text-align: center;
}
.totalHoursRow {
  box-sizing: border-box;
  padding: 32px 83px 27px 74px;
  background-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  width: 100%;
  margin: 0px;
  position: fixed;
  bottom: 0px;
}
.owl-theme .owl-dots {
  margin: 4px 0px 29px 0px;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 4px;
}
.owl-theme .owl-dots .owl-dot span {
  margin: 0px 7px;
}

/* Medium Screen */
@media screen and (max-width: 1200px) {
  .wrapper {
    padding: 50px 55px 0px 55px;
  }
  .project__name {
    width: 25%;
  }
  .totalProjects .projectWrap {
    padding: 32px 30px 27px 30px;
  }
}
/* Tablet View */
@media screen and (max-width: 991px) {
  .wrapper {
    padding: 50px 30px 0px 30px;
  }
  .project__progress {
    margin-right: 20px;
    width: 50%;
    height: 20px;
  }
  .project__percentage {
    width: 10%;
  }
  .project__name {
    font-size: 16px;
    width: 30%;
  }
  .project__hours {
    font-size: 16px;
  }
  .project__remaining-hours {
    font-size: 16px;
  }
}
/* Mobile View */
@media screen and (max-width: 768px) {
  .project__progress {
    width: 40%;
  }
  .project__percentage {
    width: 10%;
    font-size: 14px;
  }
  .project__name {
    font-size: 14px;
  }
  .project__hours {
    font-size: 14px;
  }
}
/* smaller Devices */
@media screen and (max-width: 576px) {
  .project__progress {
    width: 47.5%;
    height: 18px;
  }
  .project__name {
    width: 37.5%;
  }
  .project__hours {
    width: 15%;
  }
  .project__remaining-hours {
    font-size: 14px;
  }
}
