/* Variables*/
:root {
  --gray: #888;
  --lightGray: #eee;
  --blue: #0075ff;
  --blue-alt: #0d69d5;
  --yellow: #f59e0b;
  --green: #22c55e;
  --red: #f44336;
}

/* Variables*/

/* Main Format */
* {
  outline: none;
  box-sizing: border-box;
  list-style: none;
}

::before,
::after {
  box-sizing: content-box;
}

body {
  font-family: "Open Sans", sans-serif;
}

a {
  text-decoration: none;
  color: black;
  transition: 0.2s;
  border-radius: 6px;
}

a:hover {
  color: black;
}

input {
  border: none;
}

::-webkit-scrollbar {
  width: 15px;
}
::-webkit-scrollbar-track {
  background-color: var(--lightGray);
}
::-webkit-scrollbar-thumb {
  background-color: var(--blue);
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--blue-alt);
}

/* Main Format */

/* Custom Class */
.cur-p {
  cursor: pointer;
}

.bor-rad {
  border-radius: 10px;
  overflow: hidden;
}

.in-bor-rad {
  border-radius: 6px;
}

.wrapping {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
}

.small-wrapping {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

@media (max-width: 767px) {
  .small-wrapping {
    display: grid;
    grid-template-columns: minmax(200px, 1fr);
    margin-left: 10px;
    margin-right: 10px;
    gap: 10px;
  }
}

.x-small-wrapping {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  margin-left: 10px;
  margin-right: 10px;
  gap: 10px;
}

.sub-font {
  color: var(--gray);
  font-weight: 400;
}

.btn {
  margin: 0 15px 15px auto;
  display: block;
  width: fit-content;
  padding: 3px 10px;
  font-size: 13px;
}

/* .btn:hover {
  background-color: var(--blue-alt) !important;
} */

.bg-white {
  background-color: white;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.bor-bottom {
  border-bottom: 2px solid var(--lightGray);
}
.bor-bottom-1px {
  border-bottom: 1px solid var(--lightGray);
}
.bor-top-1px {
  border-top: 1px solid var(--lightGray);
}

.bor-all {
  border: 2px solid var(--lightGray);
}
.bor-all-1 {
  border: 1px solid var(--lightGray);
}

.les-bold {
  font-weight: 500;
}

.p-absolute {
  position: absolute;
  top: 0;
  left: 0;
}

.bor-gray {
  border: 1px solid #ccc;
}

.fs-13 {
  font-size: 13px;
}
.fs-14 {
  font-size: 14px;
}
.fs-15 {
  font-size: 15px !important;
}

.p-btn {
  padding: 3px 10px;
}

.f-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-yellow {
  color: var(--yellow);
}

.c-black {
  color: black;
}

.bor-rad-50 {
  border-radius: 50%;
}

.icon-size {
  width: 64px;
  height: 64px;
}

.img-decoration {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
}

.border-icon {
  border-radius: 50%;
  border: 2px solid white;
}

.w-h-100 {
  width: 100px;
  height: 100px;
}
/* Custom Class */

/* Start public component */
.toggle {
  height: 32px;
  min-width: 78px;
  background-color: #eee;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
}
.checked {
  background-color: var(--blue);
}
.toggle::before {
  font-family: var(--fa-style-family-classic);
  content: "\f00d";
  font-weight: 900;
  background-color: white;
  width: 24px;
  height: 24px;
  position: absolute;
  border-radius: 50%;
  top: 4px;
  left: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #aaa;
  transition: 0.3s;
}
.checked::before {
  content: "\f00c";
  left: 50px;
  color: var(--blue);
}

.sml-toggle {
  height: 32px;
  min-width: 78px;
  background-color: #eee;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
}

/* End public component*/

/* Start aside */
aside {
  width: 230px;
  padding: 20px;
  box-shadow: 0 0 10px #ddd;
  z-index: 2;
}

aside h3 {
  font-weight: 500;
}

aside h3::before {
  content: "";
  width: 80px;
  height: 2px;
  background-color: black;
  position: absolute;
  transform: translateX(50%);
  right: 50%;
  bottom: -15px;
}

aside h3::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: black;
  position: absolute;
  transform: translateX(50%);
  right: 50%;
  border-radius: 50%;
  bottom: -24px;
  border: 4px solid white;
}

aside a.active,
aside a:hover {
  background-color: #f6f6f6;
}

@media (max-width: 767px) {
  aside {
    width: 58px;
    padding: 10px;
  }

  aside h3::before,
  aside h3::after {
    display: none;
  }

  aside ul span {
    display: none;
  }
}

/* End aside */

/* Start Header */
.main-container {
  width: 100%;
  overflow: hidden;
  background-color: #f1f5f9;
}

.main-container .header {
  background-color: white;
}

.main-container .header .search::before {
  font-family: var(--fa-style-family-classic);
  content: "\f002";
  font-weight: 900;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--gray);
}

.main-container .header .icon span::after {
  content: "";
  height: 9px;
  width: 9px;
  background-color: #f44336;
  position: absolute;
  border-radius: 50%;
  right: -4px;
  top: -4px;
}

.main-container .header .search input {
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-left: 5px;
  width: 160px;
  transition: width 0.3s;
  padding: 10px;
  padding-left: 30px;
  font-size: 11px;
}

.main-container .header .search input::placeholder {
  font-size: 13px;
}

.main-container .header .search input:focus::placeholder {
  opacity: 0;
}

.main-container .header .search input:focus {
  width: 200px;
}

.main-container .header img {
  width: 30px;
}

/* End Header */

/* Start Dashboard */

/* Start Page Content */
.main-container .page-title::before,
.main-container .page-title::after {
  content: "";
  height: 3px;
  position: absolute;
  bottom: -10px;
  left: 0;
}

.main-container > h1::before {
  background-color: white;
  width: 120px;
}

.main-container .page-title::after {
  background-color: black;
  width: 40px;
}

/* End Page Content */

/* Start Cards */

/* Start Welcome */
.main-container .cards .welcome {
  background-color: white;
}

.main-container .cards .welcome .up {
  background-color: var(--lightGray);
}

.main-container .cards .welcome .up img {
  width: 200px;
}

.main-container .cards .welcome .avatar img {
  width: 64px;
  height: 64px;
  border: 2px solid white;
  border-radius: 50%;
  padding: 2px;
  box-shadow: 0 0 5px #ddd;
  margin-left: 20px;
  margin-top: -32px;
}

.main-container .cards .welcome .down {
  background-color: white;
}

.main-container .cards .welcome .down .info {
  border-top: 3px solid var(--lightGray);
  border-bottom: 3px solid var(--lightGray);
}

.main-container .cards .welcome .down .info div {
  font-weight: 500;
}

.main-container .cards .welcome .down .info span {
  color: var(--gray);
  font-size: 14px;
}

@media (max-width: 767px) {
  .wrapping {
    grid-template-columns: minmax(200px, 1fr);
  }

  .main-container .cards .welcome {
    text-align: center;
  }

  .main-container .cards .welcome .up img {
    display: none;
  }
}

/* End Welcome */

/* Start Quick Draft */
.main-container .quick-draft {
  background-color: white;
}

.main-container .quick-draft .texts input {
  background-color: var(--lightGray);
  padding: 5px 5px 5px 10px;
  width: 100%;
}

.main-container .quick-draft .texts textarea {
  background-color: var(--lightGray);
  padding: 5px 5px 5px 10px;
  width: 100%;
  resize: none;
  min-height: 180px;
  border: none;
}

.main-container .quick-draft .texts input::placeholder,
.main-container .quick-draft .texts textarea::placeholder {
  font-size: 12px;
}

/* End Quick Draft */

/* Start Yearly Targets*/
.main-container .yearly-targets {
  background-color: white;
}

.main-container .yearly-targets .content .icon {
  width: 80px;
  height: 80px;
  margin-right: 15px;
  background-color: rgb(0 117 255 / 20%);
  color: var(--blue);
}

/* Change Color */
.main-container .yearly-targets .content .yellow {
  background-color: rgb(245 158 11 / 20%);
  color: var(--yellow);
}

.main-container .yearly-targets .content .green {
  background-color: rgb(34 197 94 / 20%);
  color: var(--green);
}

/* Change Color */

.main-container .yearly-targets .detials {
  flex: 1;
}

.main-container .yearly-targets .detials .progres {
  height: 4px;
  background-color: rgb(0 117 255 / 20%);
}

/* Change Color */
.main-container .yearly-targets .detials .yellow {
  background-color: rgb(245 158 11 / 20%);
}

.main-container .yearly-targets .detials .green {
  background-color: rgb(34 197 94 / 20%);
}

/* Change Color */

.main-container .yearly-targets .detials .progres .percentage::before {
  content: "80%";
  background-color: var(--blue);
  width: fit-content;
  position: absolute;
  right: -18px;
  top: -32px;
  padding: 2px 5px;
  text-align: center;
  border-radius: 6px;
  font-size: 13px;
  color: white;
}

.main-container .yearly-targets .detials .progres .percentage::after {
  content: "";
  border: 5px solid;
  position: absolute;
  right: -5px;
  top: -8px;
  border-color: var(--blue) transparent transparent transparent;
}

/* Change Color */
.main-container .yearly-targets .detials .progres .yellow::before {
  content: "55%";
  background-color: var(--yellow);
}

.main-container .yearly-targets .detials .progres .yellow::after {
  border-color: var(--yellow) transparent transparent transparent;
}

.main-container .yearly-targets .detials .progres .green::before {
  content: "75%";
  background-color: var(--green);
}

.main-container .yearly-targets .detials .progres .green::after {
  border-color: var(--green) transparent transparent transparent;
}

/* Change Color */

/* End Yearly Targets*/

/* Start Tickets Statistics */
.main-container .tickets-statistics .sml-cards div {
  border: 2px solid var(--lightGray);
  width: calc(50% - 10px);
}

@media (max-width: 767px) {
  .main-container .tickets-statistics .sml-cards div {
    width: 100%;
  }
}

/* End Tickets Statistics */

/* Start Latses News */
.main-container .latest-news .news-content img {
  width: 100px;
}

.main-container .latest-news .news-content span {
  background-color: var(--lightGray);
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .main-container .latest-news .news-content {
    flex-direction: column;
    text-align: center;
  }

  .main-container .latest-news .news-content img {
    margin: 0 0 10px 0;
  }

  .main-container .latest-news .news-content span {
    margin-top: 10px;
  }
}

/* End Latses News */

/* Start Latest Tasks */

.main-container .latest-task .task-content svg:hover {
  color: var(--red);
  cursor: pointer;
  transition: 0.3s;
}

/* End Latest Tasks */

/* Start Latest Upload */
.main-container .latest-upload img {
  width: 40px;
  height: 40px;
}

/* End Latest Upload */

/* Start Last Project Progress */

.main-container .last-project-progress .progress-content::before {
  content: "";
  width: 2px;
  height: 200px;
  background-color: var(--blue);
  position: absolute;
  left: 11px;
}

.main-container .last-project-progress .progress-content li::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--blue);
  border: 2px solid white;
  outline: 2px solid var(--blue);
  margin-right: 15px;
}

.main-container .last-project-progress .progress-content .not-finish::before {
  background-color: white;
}

.main-container .last-project-progress .progress-content .progress-ani::before {
  animation: bgColor-Change 0.8s infinite alternate;
}

@keyframes bgColor-Change {
  from {
    background-color: var(--blue);
  }

  to {
    background-color: white;
  }
}

.main-container .last-project-progress .progress-img {
  position: absolute;
  width: 160px;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

/* End Last Project Progress */

/* Start Reminders */
.reminders .reminder-content .point {
  width: 15px;
  height: 15px;
}

.reminders .reminder-content .text span {
  font-size: 13px;
}

.reminders .reminder-content .text > p {
  font-size: 14px;
}

/* End Reminders */

/* Start Social Media Stats Content */
.soical-media-stats .soical-media-content .box {
  padding: 13px;
  padding-left: 70px;
}
.soical-media-stats .soical-media-content .icon {
  width: 52px;
  transition: 0.3s;
}
.soical-media-stats .soical-media-content .icon:hover {
  transform: rotate(5deg);
}
/* End Social Media Stats Content */
/* End Cards */

/* Start Table */
.responsive-table {
  overflow: auto;
}
table thead td {
  background-color: #eee;
  padding: 15px;
  font-weight: bold;
  font-size: 15px;
}
.main-container .table-content table tbody tr:hover {
  background-color: #faf7f7;
}
table tbody td {
  font-size: 15px;
  padding: 15px;
  border: 1px solid #eee;
  font-weight: 500;
}
table img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 2px;
}
table img:not(:first-child) {
  margin-left: -20px;
}
/* End Table */

/* End Dashboard */

/* Start Settings */

/* Start Site Control */
.checked::before {
  content: "\f00c";
  left: 50px;
  color: var(--blue);
}
*/ .site-control textarea {
  font-size: 12px;
  resize: none;
  min-height: 150px;
  border: 1px solid #ccc;
}
/* End Site Control */

/* Start General info */
.general-info #mail {
  cursor: no-drop;
  background-color: #f0f4f8;
  color: #bbb;
}

/* End General info */

/* Start Soical Info */
.social-info .social-icon {
  width: 40px;
  height: 40px;
  border-right: 1px solid #ddd;
  color: var(--gray);
  transition: 0.3s;
}
.social-info div:focus-within .social-icon,
.social-info div:focus-within input {
  color: black;
}
/* End Soical Info */

/* Start Widgets Control */

.widgets-control .checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
}

.widgets-control .checkbox label::before,
.widgets-control .checkbox label::after {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -9px;
  border-radius: 4px;
}
.widgets-control .checkbox label::before {
  content: "";
  border: 2px solid var(--gray);
  height: 14px;
  width: 14px;
}
.widgets-control .checkbox label:hover::before {
  border-color: var(--blue);
}
.widgets-control .checkbox label::after {
  font-family: var(--fa-style-family-classic);
  content: "\f00c";
  font-weight: 900;
  font-size: 12px;
  color: white;
  background-color: var(--blue);
  height: 18px;
  width: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0) rotate(360deg);
  transition: 0.3s;
}
.widgets-control .checkbox input[type="checkbox"]:checked + label::after {
  transform: scale(1);
}
/* End Widgets Control */

/* Start Backup Manager */
.backup-manager form input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
}
.backup-manager form label::before,
.backup-manager form label::after {
  position: absolute;
  left: 0;
  top: 50%;
  border-radius: 50%;
}

.backup-manager form label::before {
  content: "";
  border: 2px solid var(--gray);
  height: 18px;
  width: 18px;
  margin-top: -11px;
}
.backup-manager form label:hover::before {
  border-color: var(--blue);
}

.backup-manager form label::after {
  content: "";
  width: 12px;
  height: 12px;
  top: 6px;
  left: 4.5px;
  background-color: var(--blue);
  transition: 0.3s;
  transform: scale(0);
}
.backup-manager form input[type="radio"]:checked + label::after {
  transform: scale(1);
}

.backup-manager .cards div.active {
  border-color: var(--blue);
  color: var(--blue);
}

.backup-manager .cards {
  display: flex;
}
@media (max-width: 767.2px) {
  .backup-manager .cards {
    display: block;
  }
}
/* End Backup Manager */

/* End Settings */

/* Start Profile */

/* Start Info Content */

.info .img-content {
  width: 300px;
  border-right: 1px solid var(--lightGray);
}
.info .info-content div p:not(:first-child) {
  min-width: 250px;
}

.info .info-content div .toggle {
  height: 20px;
  max-width: 78px;
}
.info .info-content div .toggle::before {
  font-size: 9px;
  width: 13px;
  height: 13px;
  top: 3.5px;
}
.info .info-content div .checked::before {
  content: "\f00c";
  left: 60px;
  color: var(--blue);
}

@media (max-width: 767px) {
  .profile-content .info {
    flex-direction: column;
  }
  .profile-content .info .img-content {
    border-right: none;
    border-bottom: 1px solid var(--lightGray);
  }
}
/* End Info Content */

/* End Profile */

/* Start Projects */

.projects .projects-card .team-profile a:hover {
  z-index: 1;
}

/* End Projects */

/* Start Friends */
.friends .friends-communty .vip {
  color: #f59e0b;
  right: 0px;
  transform: translateY(-50%);
  top: 50%;
  opacity: 0.2;
  font-size: 40px;
}

.friends .friends-card .contact svg {
  background-color: #eee;
  padding: 10px;
  border-radius: 50%;
  color: #666;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}
.friends .friends-card .contact svg:hover {
  background-color: var(--blue);
  color: white;
}
/* End Friends */

/* Start Files */
.files .files-content .files-card img {
  transition: 0.3s;
}
.files .files-content .files-card:hover img {
  transform: rotate(5deg);
}

.files-content .files-statistics .statistics-info .icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.files-content .files-statistics .upload {
  width: fit-content;
  background-color: var(--blue);
  color: white;
  padding: 8px 16px;
}

.files-content .files-statistics .upload:hover {
  background-color: var(--blue-alt);
}
.files-content .files-statistics .upload:hover svg {
  animation: moveUpAndDown 0.3s alternate infinite;
}

@keyframes moveUpAndDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-4px);
  }
}
/* End Files */

/* Start Plans */
.plans .plans-content .plans-card .heading {
  color: white;
  border: 3px solid white;
}

.plans .plans-content .plans-card .free {
  background-color: var(--green);
  outline: 3px solid var(--green);
}

.plans .plans-content .plans-card .basic {
  background-color: var(--blue);
  outline: 3px solid var(--blue);
}

.plans .plans-content .plans-card .premium {
  background-color: var(--yellow);
  outline: 3px solid var(--yellow);
}

.plans .plans-content .plans-card li {
  padding: 14px 0;
}

.plans .plans-content .plans-card .true,
.plans .plans-content .plans-card .false {
  font-size: 18px;
}

.plans .plans-content .plans-card .true {
  color: var(--green);
}

.plans .plans-content .plans-card .false {
  color: var(--red);
}

.plans .plans-content .plans-card .help {
  color: var(--gray);
}

.plans .plans-content .plans-card .bas-btn,
.plans .plans-content .plans-card .pre-btn {
  color: white;
}

/* End Plans */
