* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  color: black;
}
:root {
  --main-btn-blue: #0075ff;
  --second-color: #888;
  --orange-color: #f59e0b;
  --green-color: #22c55e;
  --red-color: #f44336;
  --gray-color: #eee;
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
}

/* ============================== */
.our_page {
  display: flex;
  align-items: flex-start;
  justify-content: start;
}
.mainNav {
  max-width: 250px;
  background-color: #fff;
  z-index: 100;
  height: 100%;
}
@media (max-width: 768px) {
  .mainNav {
    max-width: 80px;
    position: fixed;
    top: 0;
    display: none;
  }
}
.mainNav.active {
  left: 0;
  display: block;
}
.mainNav .title {
  padding: 20px 0 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.mainNav .title::before,
.mainNav .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translate(50%, 50%);
  -webkit-transform: translate(50%, 50%);
  -moz-transform: translate(50%, 50%);
  -ms-transform: translate(50%, 50%);
  -o-transform: translate(50%, 50%);
}
.mainNav .title::before {
  width: 12px;
  height: 12px;
  background-color: black;
  border: 8px solid white;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.mainNav .title::after {
  width: 100px;
  height: 2px;
  background-color: black;
  z-index: -1;
}
@media (max-width: 768px) {
  .mainNav .title::before,
  .mainNav .title::after {
    display: none;
  }
}
.mainNav .links {
  margin: 40px 30px;
}
@media (max-width: 768px) {
  .mainNav .links {
    margin: 40px 15px;
  }
  .mainNav .links li a i {
    margin: 0 auto;
  }
}
.mainNav .links li {
  cursor: pointer;
  margin-bottom: 10px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.mainNav .links li a {
  display: flex;
  justify-content: left;
  width: 100%;
  padding: 10px 30px 10px 5px;
}
.mainNav .links li.active {
  background-color: #f6f6f6;
}
.mainNav .links li:hover {
  background-color: #f6f6f6;
}
.mainNav .links i {
  font-size: 15px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .mainNav .links li span {
    display: none;
  }
  .mainNav .links li a {
    padding: 10px;
  }
  .mainNav .links li i {
    font-size: 20px;
  }
}
#burger {
  font-size: 20px;
  cursor: pointer;
  margin-right: 10px;
}
@media (min-width: 768px) {
  #burger {
    display: none;
  }
}
/* ============================================ */
/*   header */

.sectinos {
  width: 100%;
}
.sectinos .header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  box-shadow: 0 0 10px #ccc;
}
.sectinos .header .inp {
  position: relative;
}
.sectinos .header .inp i {
  position: absolute;
  top: 50%;
  left: 12px;
  color: #ccc;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.sectinos .header .inp input {
  background-color: transparent;
  border: 1px solid #ccc;
  width: 130px;
  padding: 10px 20px;
  outline: none;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: width 0.5s;
  -webkit-transition: width 0.5s;
  -moz-transition: width 0.5s;
  -ms-transition: width 0.5s;
  -o-transition: width 0.5s;
}
.sectinos .header .inp input:focus {
  width: 160px;
}
.sectinos .header .inp input:focus::placeholder {
  color: transparent;
}
.sectinos .header .right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sectinos .header .right span {
  margin-right: 20px;
  position: relative;
}

.sectinos .header .right span::before {
  position: absolute;
  content: "";
  top: -5px;
  right: -5px;
  background-color: red;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.sectinos .header .right img {
  width: 35px;
}

/* end header */
/* ==================================== */
.sectinos .dashboard {
  background-color: #f1f5f9;
  padding: 10px;
}
.sectinos .dashboard > h1 {
  position: relative;
  margin-left: 5px;
  padding: 25px;
}
.sectinos .dashboard > h1::before,
.sectinos .dashboard > h1::after {
  position: absolute;
  content: "";
  height: 4px;
  left: 30px;
  bottom: 5px;
}
.sectinos .dashboard h1::before {
  width: 50px;
  background-color: black;
  z-index: 2;
}

.sectinos .dashboard h1::after {
  width: 140px;
  background-color: white;
  z-index: 1;
}
.sectinos .dashboard .cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(430px, 1fr));
  gap: 20px;
  margin: 15px 10px;
}
@media (max-width: 992px) {
  .sectinos .dashboard .cards {
    display: flex;
    flex-wrap: wrap;
  }
  .sectinos .dashboard .cards .card {
    width: 100%;
  }
}
.card {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  overflow: hidden;
  padding: 25px;
  background-color: white;
}
.card h2 {
  margin-bottom: 30px;
}

.card {
  max-width: 100%;
}

/* =========================================== */
/* card one */
.sectinos .dashboard .cards #informations {
  background-color: transparent;
  padding: 0;
}
.sectinos .dashboard .cards #informations .cover {
  width: 100%;
  display: flex;
  padding: 25px;
  justify-content: space-between;
  background-color: var(--gray-color);
}
.sectinos .dashboard .cards #informations .cover img {
  width: 45%;
}
.sectinos .dashboard .cards #informations .cover .txt p {
  color: var(--second-color);
}
.sectinos .dashboard .cards #informations .content {
  background-color: white;
  height: 100%;
  padding-bottom: 20px;
}

.sectinos .dashboard .cards #informations .content .profile_pic {
  width: 60px;
  margin-top: -30px;
  margin-left: 10px;
  border: 5px solid white;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.sectinos .dashboard .cards #informations .content .details {
  display: flex;
  justify-content: space-evenly;
  border-top: 1px solid var(--gray-color);
  border-bottom: 1px solid var(--gray-color);
  margin: 20px 0;
  padding: 30px 0;
}
.sectinos .dashboard .cards #informations .content .details .name p,
.sectinos
  .dashboard
  .cards
  #informations
  .content
  .details
  .projects
  p:last-child,
.sectinos
  .dashboard
  .cards
  #informations
  .content
  .details
  .earned
  p:last-child {
  color: var(--second-color);
  margin-top: 15px;
}
.sectinos .dashboard .cards #informations .content a {
  background-color: var(--main-btn-blue);
  color: white;
  display: block;
  width: fit-content;
  padding: 5px 10px;
  margin: 0 5px 0 auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
/* =========================================== */
/*   quick-draft */

.sectinos .dashboard .cards #quick-draft p {
  margin-bottom: 10px;
  color: var(--second-color);
}
.sectinos .dashboard .cards #quick-draft form {
  display: flex;
  flex-direction: column;
}
.sectinos .dashboard .cards #quick-draft form input[type="text"],
.sectinos .dashboard .cards #quick-draft form textarea {
  border: none;
  outline: none;
  background-color: var(--gray-color);
  color: black;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.sectinos .dashboard .cards #quick-draft form input::placeholder,
.sectinos .dashboard .cards #quick-draft form textarea::placeholder {
  color: var(--second-color);
}

.sectinos .dashboard .cards #quick-draft form textarea {
  resize: none;
  height: 200px;
}

.sectinos .dashboard .cards #quick-draft form .submit {
  background-color: var(--main-btn-blue);
  color: white;
  display: block;
  width: fit-content;
  padding: 5px 10px;
  margin: 0 5px 0 auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: none;
  outline: none;
}
/* =========================================== */
/* yearly-targets */

.sectinos .dashboard .cards #yearly-targets > p {
  color: var(--second-color);
  margin-top: 15px;
}
.sectinos .dashboard .cards #yearly-targets .content .money {
  margin-top: 20px;
}
.sectinos .dashboard .cards #yearly-targets .content .money,
.sectinos .dashboard .cards #yearly-targets .content .projects,
.sectinos .dashboard .cards #yearly-targets .content .team {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 30px;
}
.sectinos .dashboard .cards #yearly-targets .content .money .dollar,
.sectinos .dashboard .cards #yearly-targets .content .projects .code,
.sectinos .dashboard .cards #yearly-targets .content .team .user {
  width: 100px;
  height: 100px;
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
}
.sectinos .dashboard .cards #yearly-targets .content .money .dollar {
  background-color: rgb(0 117 255 / 20%);
  color: var(--main-btn-blue);
}
.sectinos .dashboard .cards #yearly-targets .content .projects .code {
  background-color: rgb(245 158 11 / 20%);
  color: var(--orange-color);
}
.sectinos .dashboard .cards #yearly-targets .content .team .user {
  background-color: rgb(34 197 94 / 20%);
  color: var(--green-color);
}
.sectinos .dashboard .cards #yearly-targets .content .team .user i {
  color: var(--green-color);
}
.sectinos .dashboard .cards #yearly-targets .content p {
  color: var(--second-color);
  margin-bottom: 10px;
}
.sectinos .dashboard .cards #yearly-targets .content h3 {
  margin-bottom: 20px;
}
.sectinos .dashboard .cards #yearly-targets .money-content,
.sectinos .dashboard .cards #yearly-targets .projects-content,
.sectinos .dashboard .cards #yearly-targets .team-content {
  width: 80%;
}

.sectinos .dashboard .cards #yearly-targets .content .progress {
  height: 4px;
  background-color: red;
}

.sectinos .dashboard .cards #yearly-targets .content .progress span {
  display: block;
  height: 100%;
  position: relative;
}
.sectinos .dashboard .cards #yearly-targets .content .money-content .progress {
  background-color: rgb(0 117 255 / 20%);
}
.sectinos
  .dashboard
  .cards
  #yearly-targets
  .content
  .projects-content
  .progress {
  background-color: rgb(245 158 11 / 20%);
}
.sectinos .dashboard .cards #yearly-targets .content .team-content .progress {
  background-color: rgb(34 197 94 / 20%);
}

.sectinos .dashboard .cards #yearly-targets .content .progress span::before {
  content: attr(data-pro);
  position: absolute;
  width: 30px;
  height: 30px;
  right: -15px;
  top: -45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  color: white;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.sectinos .dashboard .cards #yearly-targets .content .progress span:after {
  content: "";
  position: absolute;
  border: 10px solid;
  right: -10px;
  top: -18px;
}
.sectinos .dashboard .cards #yearly-targets .content .money-content span,
.sectinos
  .dashboard
  .cards
  #yearly-targets
  .content
  .money-content
  span:before {
  background-color: var(--main-btn-blue);
}
.sectinos
  .dashboard
  .cards
  #yearly-targets
  .content
  .money-content
  span::after {
  border-color: var(--main-btn-blue) transparent transparent transparent;
}
.sectinos .dashboard .cards #yearly-targets .content .projects-content span,
.sectinos
  .dashboard
  .cards
  #yearly-targets
  .content
  .projects-content
  span:before {
  background-color: var(--orange-color);
}
.sectinos
  .dashboard
  .cards
  #yearly-targets
  .content
  .projects-content
  span::after {
  border-color: var(--orange-color) transparent transparent transparent;
}
.sectinos .dashboard .cards #yearly-targets .content .team-content span,
.sectinos .dashboard .cards #yearly-targets .content .team-content span:before {
  background-color: var(--green-color);
}
.sectinos .dashboard .cards #yearly-targets .content .team-content span::after {
  border-color: var(--green-color) transparent transparent transparent;
}
@media (max-width: 768px) {
  .sectinos .dashboard .cards #yearly-targets {
    text-align: center;
  }
  .sectinos .dashboard .cards #yearly-targets .content .money,
  .sectinos .dashboard .cards #yearly-targets .content .projects,
  .sectinos .dashboard .cards #yearly-targets .content .team {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .sectinos .dashboard .cards #yearly-targets .content .money .dollar,
  .sectinos .dashboard .cards #yearly-targets .content .projects .code,
  .sectinos .dashboard .cards #yearly-targets .content .team .user {
    margin-bottom: 20px;
    margin-right: 0;
  }
  .sectinos .dashboard .cards #yearly-targets .content h3 {
    margin-bottom: 60px;
  }
}
/* =========================================== */
/* tickets-statistics */

.sectinos .dashboard .cards #tickets-statistics .boxs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.sectinos .dashboard .cards #tickets-statistics .boxs .box {
  border: 1px solid #ccc;
  text-align: center;
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 45%;
}
@media (max-width: 768px) {
  .sectinos .dashboard .cards #tickets-statistics .boxs {
    flex-direction: column;
  }
}

.sectinos .dashboard .cards #tickets-statistics p {
  margin-bottom: 10px;
}
.sectinos .dashboard .cards #tickets-statistics p {
  color: var(--second-color);
}
.sectinos .dashboard .cards #tickets-statistics .boxs .box i,
.sectinos .dashboard .cards #tickets-statistics .boxs .box h1 {
  margin-bottom: 10px;
}
.sectinos .dashboard .cards #tickets-statistics .boxs .box i {
  font-size: 30px;
}
.sectinos .dashboard .cards #tickets-statistics .boxs .box p {
  font-size: 12px;
}
.sectinos .dashboard .cards #tickets-statistics .boxs .box:nth-child(1) > i {
  color: var(--orange-color);
}
.sectinos .dashboard .cards #tickets-statistics .boxs .box:nth-child(2) > i {
  color: var(--main-btn-blue);
}
.sectinos .dashboard .cards #tickets-statistics .boxs .box:nth-child(3) > i {
  color: var(--green-color);
}
.sectinos .dashboard .cards #tickets-statistics .boxs .box:nth-child(4) > i {
  color: var(--red-color);
}

@media (max-width: 768px) {
  .sectinos .dashboard .cards #tickets-statistics .boxs .box {
    width: 100%;
  }
}

/* atest-news */

@media (max-width: 768px) {
  .sectinos .dashboard .cards #atest-news h2 {
    text-align: center;
  }
}
.sectinos .dashboard .cards #atest-news .news .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.sectinos .dashboard .cards #atest-news .news .box:not(:last-child) {
  border-bottom: 1px solid var(--gray-color);
}
@media (max-width: 768px) {
  .sectinos .dashboard .cards #atest-news .news .box {
    flex-direction: column;
    text-align: center;
  }
}
.sectinos .dashboard .cards #atest-news .news .box .content {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .sectinos .dashboard .cards #atest-news .news .box .content {
    flex-direction: column;
    text-align: center;
  }
}
.sectinos .dashboard .cards #atest-news .news .box .content .img {
  margin-right: 10px;
}
@media (max-width: 768px) {
  .sectinos .dashboard .cards #atest-news .news .box .content .img {
    margin-bottom: 10px;
    margin-right: 0px;
  }
}
.sectinos .dashboard .cards #atest-news .news .box .content .text p {
  color: var(--second-color);
  margin-top: 10px;
  font-size: 13px;
}
.sectinos .dashboard .cards #atest-news .news .box .img img {
  width: 100px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.sectinos .dashboard .cards #atest-news .news .box .date {
  background-color: var(--gray-color);
  font-size: 13px;
  padding: 6px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
@media (max-width: 768px) {
  .sectinos .dashboard .cards #atest-news .news .box .date {
    margin-top: 10px;
  }
}
/* card six */

.sectinos .dashboard .cards #latest-tasks .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
.sectinos .dashboard .cards #latest-tasks .box:not(:last-child) {
  border-bottom: 1px solid var(--gray-color);
}
.sectinos .dashboard .cards #latest-tasks .box p {
  color: var(--second-color);
  margin-top: 10px;
}
.sectinos .dashboard .cards #latest-tasks .box:nth-child(5) i {
  opacity: 0.5;
}
.sectinos .dashboard .cards #latest-tasks .box:nth-child(5) del {
  opacity: 0.5;
  display: block;
  margin-bottom: 10px;
}
/* top-items */

.sectinos .dashboard .cards #top-items {
  background-color: white;
  padding: 40px;
}
.sectinos .dashboard .cards #top-items .box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.sectinos .dashboard .cards #top-items .box:nth-child(2) p {
  opacity: 0.5;
  font-size: 20px;
  margin-bottom: 20px;
}
.sectinos .dashboard .cards #top-items .box:not(:nth-child(2)) p:last-child {
  background-color: var(--gray-color);
  padding: 6px 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
/* #latest-uploads */

.sectinos .dashboard .cards #latest-uploads img {
  width: 40px;
  margin-right: 15px;
}
.sectinos .dashboard .cards #latest-uploads .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.sectinos .dashboard .cards #latest-uploads .box:not(:last-child) {
  border-bottom: 1px solid var(--gray-color);
}
.sectinos .dashboard .cards #latest-uploads .box .txt p {
  color: var(--second-color);
  margin-top: 10px;
}
.sectinos .dashboard .cards #latest-uploads .box > p {
  background-color: var(--gray-color);
  padding: 6px 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.sectinos .dashboard .cards #latest-uploads .box .content {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* last-progress */

.sectinos .dashboard .cards #last-progress .progress {
  margin-bottom: 100px;
}
.sectinos .dashboard .cards #last-progress .progress li {
  margin-bottom: 20px;
  font-size: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.sectinos .dashboard .cards #last-progress .progress li > span {
  display: block;
  margin-right: 15px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--main-btn-blue);
  position: relative;
  border: 3px solid white;
  z-index: 1;
  outline: 2px solid var(--main-btn-blue);
}

.sectinos .dashboard .cards #last-progress .progress li > span:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 19px;
  left: 45%;
  bottom: -23px;
  background-color: var(--main-btn-blue);
}
@keyframes opactiy {
  0% {
    background-color: white;
  }
  50% {
    background-color: var(--main-btn-blue);
  }
  100% {
    background-color: white;
  }
}
.sectinos .dashboard .cards #last-progress .progress li:nth-child(4) > span {
  animation: opactiy 1.5s infinite;
  -webkit-animation: opactiy 1.5s infinite;
}
.sectinos .dashboard .cards #last-progress .progress li:last-child > span {
  background-color: white;
}
.sectinos
  .dashboard
  .cards
  #last-progress
  .progress
  li:last-child
  > span:before {
  display: none;
}
.sectinos .dashboard .cards #last-progress img {
  max-width: 180px;
  opacity: 0.3;
  margin-left: auto;
  display: block;
}
@media (max-width: 768px) {
  .sectinos .dashboard .cards #last-progress img {
    display: none;
  }
}
/* reminders */

.sectinos .dashboard .cards #reminders .box {
  margin: 0 0 30px 40px;
  padding-left: 25px;
  position: relative;
}
.sectinos .dashboard .cards #reminders .box:before {
  content: "";
  position: absolute;
  left: -30px;
  top: 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.sectinos .dashboard .cards #reminders .box h4 {
  margin-bottom: 15px;
}
.sectinos .dashboard .cards #reminders .box p {
  color: var(--second-color);
}

.sectinos .dashboard .cards #reminders .box:first-of-type {
  border-left: 2px solid var(--main-btn-blue);
}
.sectinos .dashboard .cards #reminders .box:nth-child(3) {
  border-left: 2px solid var(--green-color);
}
.sectinos .dashboard .cards #reminders .box:nth-child(4) {
  border-left: 2px solid var(--orange-color);
}
.sectinos .dashboard .cards #reminders .box:last-child {
  border-left: 2px solid var(--red-color);
}
.sectinos .dashboard .cards #reminders .box:first-of-type::before {
  background-color: var(--main-btn-blue);
}
.sectinos .dashboard .cards #reminders .box:nth-child(3)::before {
  background-color: var(--green-color);
}
.sectinos .dashboard .cards #reminders .box:nth-child(4)::before {
  background-color: var(--orange-color);
}
.sectinos .dashboard .cards #reminders .box:last-child::before {
  background-color: var(--red-color);
}
/* latest-post */
.sectinos .dashboard .cards #latest-post .head {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.sectinos .dashboard .cards #latest-post .head img {
  width: 50px;
  height: 50px;
  margin-right: 30px;
}
.sectinos .dashboard .cards #latest-post .head .txt h4 {
  margin-bottom: 10px;
}
.sectinos .dashboard .cards #latest-post .head .txt .date {
  color: var(--second-color);
}
.sectinos .dashboard .cards #latest-post .content {
  border-top: 2px solid var(--gray-color);
  border-bottom: 2px solid var(--gray-color);
  padding: 20px 0;
  line-height: 1.9;
  font-size: 16px;
}
.sectinos .dashboard .cards #latest-post .likes-comments {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
/* social-stats
 */
.sectinos .dashboard .cards #social-stats > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-right: 10px;
}
.sectinos .dashboard .cards #social-stats div .content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sectinos .dashboard .cards #social-stats .twitter {
  background-color: rgb(29 161 242 / 20%);
  color: #1da1f2;
}
.sectinos .dashboard .cards #social-stats .facebook {
  background-color: rgb(24 119 242 / 20%);
  color: #1da1f2;
}
.sectinos .dashboard .cards #social-stats .youtube {
  background-color: rgb(255 0 0 / 20%);
  color: #ff0000;
}
.sectinos .dashboard .cards #social-stats .linked-in {
  background-color: rgb(0 119 181 / 20%);
  color: #0077b5;
}
.sectinos .dashboard .cards #social-stats i {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  color: white;
  margin-right: 10px;
}
.sectinos .dashboard .cards #social-stats i:hover {
  transform: rotate(10deg);
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  -o-transform: rotate(10deg);
}
.sectinos .dashboard .cards #social-stats .twitter i,
.sectinos .dashboard .cards #social-stats .twitter button {
  background-color: rgb(29 161 242);
}
.sectinos .dashboard .cards #social-stats .facebook i,
.sectinos .dashboard .cards #social-stats .facebook button {
  background-color: rgb(24 119 242);
}
.sectinos .dashboard .cards #social-stats .youtube i,
.sectinos .dashboard .cards #social-stats .youtube button {
  background-color: rgb(255 0 0);
}
.sectinos .dashboard .cards #social-stats .linked-in i,
.sectinos .dashboard .cards #social-stats .linked-in button {
  background-color: rgb(0 119 181);
}
.sectinos .dashboard .cards #social-stats .twitter p {
  color: rgb(29 161 242);
}
.sectinos .dashboard .cards #social-stats .facebook p {
  color: rgb(24 119 242);
}
.sectinos .dashboard .cards #social-stats .youtube p {
  color: rgb(255 0 0);
}
.sectinos .dashboard .cards #social-stats .linked-in p {
  color: rgb(0 119 181);
}
.sectinos .dashboard .cards #social-stats div button {
  padding: 6px 10px;
  outline: none;
  border: none;
  color: white;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

/*          tabele                  */
.sectinos .dashboard .projects table {
  width: 100%;
}
.sectinos .dashboard .projects .scroll {
  overflow-x: auto;
}
.sectinos .dashboard .projects table thead {
  font-weight: bold;
  background-color: var(--gray-color);
}
.sectinos .dashboard .projects table td {
  padding: 15px;
  border-right: 2px solid var(--gray-color);
  border-bottom: 2px solid var(--gray-color);
}
.sectinos .dashboard .projects table img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 2px solid white;
}
.sectinos .dashboard .projects table img:not(:first-of-type) {
  margin-left: -17px;
}
.sectinos .dashboard .projects table tbody {
  font-size: 13px;
}
.sectinos .dashboard .projects table tbody td:first-of-type {
  border-left: 2px solid var(--gray-color);
}
.sectinos .dashboard .projects table tbody p {
  width: fit-content;
  padding: 10px 6px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  color: white;
}
.sectinos .dashboard .projects table tbody p.pending {
  background-color: var(--orange-color);
}
.sectinos .dashboard .projects table tbody p.in-progres {
  background-color: var(--main-btn-blue);
}
.sectinos .dashboard .projects table tbody p.Completed {
  background-color: var(--green-color);
}
.sectinos .dashboard .projects table tbody p.Rejected {
  background-color: var(--red-color);
}
