.dashboard-container {
  display: flex;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.03);
  flex-direction: row-reverse;
}
.dashboard-container .dashboard-content-wrapper {
  width: 75%;
}
.dashboard-container .dashboard-sidebar {
  width: 25%;
}
.dashboard-content-wrapper {
  padding: 30px 20px;
  background: #ffffff;
}
.dashboard-sidebar {
  background-image: linear-gradient(to right, #ffffff, #f7f9fc);
  padding: 20px;
}
.dashboard-sidebar .user-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.dashboard-sidebar .user-info .thumb {
  width: 60px;
  margin-right: 15px;
  border-radius: 3px;
  overflow: hidden;
}
.dashboard-sidebar .user-info .thumb img {
  border-radius: 3px;
}
.dashboard-sidebar .user-info .user-body h5 {
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.dashboard-sidebar .profile-progress .progress-on {
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 0;
}
.dashboard-sidebar .profile-progress .progress-body {
  position: relative;
}
.dashboard-sidebar .profile-progress .progress-body .progress {
  border-radius: 0;
  height: 5px;
}
.dashboard-sidebar .profile-progress .progress-body .progress .progress-bar {
  border-radius: 0;
}
.dashboard-sidebar .profile-progress .progress-body .progress-to {
  position: absolute;
  top: -20px;
  right: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 0;
}
.dashboard-sidebar .dashboard-menu {
  padding-top: 20px;
}
.dashboard-sidebar .dashboard-menu ul {
  padding: 0;
  padding-bottom: 10px;
  margin: 0;
  list-style: none;
}
.dashboard-sidebar .dashboard-menu ul li {
  padding: 10px 0;
}
.dashboard-sidebar .dashboard-menu ul li i {
  color: #aaa;
  width: 25px;
}
.dashboard-sidebar .dashboard-menu ul li a {
  font-family: "Poppins", sans-serif;
  color: #6f7484;
  font-weight: 400;
  font-size: 1.4rem;
  padding: 5px 10px;
}
.dashboard-sidebar .dashboard-menu ul li:hover i, .dashboard-sidebar .dashboard-menu ul li.active i {
  color: #246df8;
}
.dashboard-sidebar .dashboard-menu ul li:hover a, .dashboard-sidebar .dashboard-menu ul li.active a {
  color: #246df8;
  background-image: linear-gradient(to right, rgba(36, 109, 248, 0.2), rgba(36, 109, 248, 0));
}
.dashboard-sidebar .dashboard-menu ul.delete {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 0;
  padding-top: 10px;
}
.dashboard-sidebar .dashboard-menu ul.delete li i {
  color: #ff3366;
}
.dashboard-sidebar .dashboard-menu ul.delete li:hover i {
  color: #ff3366;
}
.dashboard-sidebar .dashboard-menu ul.delete li:hover a {
  color: #ff3366;
  background-image: linear-gradient(to right, rgba(255, 51, 102, 0.2), rgba(255, 51, 102, 0));
}
.dashboard-content-wrapper .dashboard-section + .dashboard-section {
  margin-top: 60px;
}
.user-statistic-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-shrink: 1;
}
.user-statistic-block .user-statistic {
  width: 31.5%;
  color: #ffffff;
  padding: 30px 20px;
  border-radius: 5px;
  padding-left: 80px;
  position: relative;
}
.user-statistic-block .user-statistic svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  height: 40px;
  width: 40px;
}
.user-statistic-block .user-statistic h3 {
  font-size: 3.6rem;
  font-weight: 500;
}
.user-statistic-block .user-statistic span {
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.user-statistic-block .user-statistic:first-child {
  background-image: linear-gradient(to right, #aa91fa, #9eacfd);
}
.user-statistic-block .user-statistic:nth-child(2) {
  background-image: linear-gradient(to right, #aea9fe, #e1b8fe);
}
.user-statistic-block .user-statistic:last-child {
  background-image: linear-gradient(to right, #91bcf9, #99d7f2);
}
.dashboard-recent-activity {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}
.dashboard-recent-activity .title {
  padding: 20px;
  font-size: 1.5rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: #f7f9fc;
}
.dashboard-recent-activity .activity-list {
  padding: 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.dashboard-recent-activity .activity-list:last-child {
  border-bottom: 0;
}
.dashboard-recent-activity .activity-list > i {
  width: 30px;
  color: rgba(1, 209, 61, 0.5);
  transition: all 0.3s ease;
}
.dashboard-recent-activity .activity-list h5 {
  font-size: 1.4rem;
  color: #6f7484;
  font-weight: 400;
}
.dashboard-recent-activity .activity-list .time {
  color: #aaafbc;
}
.dashboard-recent-activity .activity-list span {
  font-size: 1.3rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.dashboard-recent-activity .activity-list .close-activity {
  margin-left: auto;
}
.dashboard-recent-activity .activity-list .close-activity i {
  height: 15px;
  width: 15px;
  border-radius: 3px;
  background: rgba(36, 109, 248, 0.7);
  color: #ffffff;
  text-align: center;
  line-height: 15px;
  font-size: 1rem;
}
.dashboard-recent-activity .activity-list .close-activity i:hover {
  background: #ff3366;
}
.dashboard-recent-activity .activity-list:hover {
  background: #fafafa;
}
.dashboard-recent-activity .activity-list:hover > i {
  color: #01d13d;
}
.details-section.dashboard-section h4 {
  padding-bottom: 30px;
  padding-right: 32px;
}
.dashboard-section .information {
  padding: 20px;
  margin-top: 30px;
}
.dashboard-section .information h4 {
  padding-bottom: 20px;
}
.dashboard-section .information ul {
  display: flex;
  flex-wrap: wrap;
}
.dashboard-section .information ul li {
  width: 50%;
}
.details-section.last-child {
  padding-top: 60px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.dashboard-section {
  position: relative;
}
.dashboard-section .edit-resume {
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px 10px;
  color: #246df8;
  background: rgba(36, 109, 248, 0.15);
  border-color: transparent;
  border-radius: 3px;
  outline: none;
  box-shadow: none;
}
.dashboard-section .edit-resume:focus, .dashboard-section .edit-resume:visited, .dashboard-section .edit-resume:active {
  box-shadow: none;
  outline: none;
}
.dashboard-section .edit-resume:hover {
  background: #246df8;
  color: #ffffff;
}
.dashboard-section .edit-resume svg {
  height: 15px;
  width: 15px;
}
.dashboard-section.last-child .edit-resume {
  top: 60px;
}
.dashboard-section .modal-dialog {
  max-width: 900px;
}
.dashboard-section .modal .modal-body {
  padding: 50px 30px;
}
.dashboard-section .modal .modal-body .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.dashboard-section .modal .modal-body .title h4 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.dashboard-section .modal .modal-body .title h4 svg {
  height: 15px;
  width: 15px;
  margin-right: 10px;
  color: #6f7484;
}
.dashboard-section .modal .modal-body .title .add-more {
  font-size: 1.3rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  padding: 3px 15px;
  margin-right: 0;
  border: 0;
  border-radius: 3px;
  background: rgba(36, 109, 248, 0.15);
  color: #246df8;
}
.dashboard-section .modal .modal-body .title .add-more:hover {
  color: #ffffff;
  background: #246df8;
}
.dashboard-section .modal .modal-body form h4 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding-top: 30px;
  padding-bottom: 20px;
}
.dashboard-section .modal .modal-body form h4 svg {
  height: 15px;
  width: 15px;
  margin-right: 10px;
  color: #6f7484;
}
.dashboard-section .modal .modal-body form .input-block-wrap + .input-block-wrap {
  margin-top: 60px;
}
.dashboard-section .modal .modal-body form .form-group {
  margin-bottom: 20px;
}
.dashboard-section .modal .modal-body form .input-group-text {
  background: transparent;
  margin-right: 1px;
  border: 0;
  font-size: 1.4rem;
  width: 32px;
  padding-left: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}
.dashboard-section .modal .modal-body form .input-group-text:before {
  position: absolute;
  content: "";
  top: 10px;
  bottom: 10px;
  right: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}
.dashboard-section .modal .modal-body form .form-control {
  height: 40px;
  border: 0;
  outline: none;
  box-shadow: none;
  border-radius: 0;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.dashboard-section .modal .modal-body form .form-control:focus {
  border-bottom-color: #246df8;
}
.dashboard-section .modal .modal-body form .form-control:focus + .input-group-text {
  border-bottom-color: #246df8;
}
.dashboard-section .modal .modal-body form textarea.form-control {
  height: 120px;
}
.dashboard-section .modal .modal-body form .dropdown-label {
  width: 200px;
  overflow: hidden;
  position: relative;
  background: white;
  width: 70px;
  padding: 0;
  border-bottom: 0;
}
.dashboard-section .modal .modal-body form .dropdown-label select {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: transparent;
  width: 100%;
  border: 0;
  border-radius: 0;
  padding-left: 0.5em;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 10;
}
@-moz-document url-prefix() {
  .dashboard-section .modal .modal-body form .dropdown-label select {
    width: 110%;
  }
}
.dashboard-section .modal .modal-body form .dropdown-label select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 black;
}
.dashboard-section .modal .modal-body form .dropdown-label select::-ms-expand {
  display: none;
}
.dashboard-section .modal .modal-body form .dropdown-label i {
  position: absolute;
  right: 0.5em;
  top: 13px;
  z-index: 5;
  color: black;
}
.dashboard-section .modal .modal-body form .buttons {
  margin-bottom: -10px;
}
.dashboard-section .modal .modal-body form .buttons button {
  border: 0;
  box-shadow: none;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  padding: 15px 30px;
  cursor: pointer;
  border-radius: 3px;
  margin-right: 10px;
  margin-bottom: 10px;
  color: #246df8;
  transition: all 0.3s ease;
  background: rgba(36, 109, 248, 0.15);
}
.dashboard-section .modal .modal-body form .buttons button:hover, .dashboard-section .modal .modal-body form .buttons button.primary-bg {
  background: #246df8;
  color: #ffffff;
}
.dashboard-section.details-section .modal h4 {
  padding-right: 0;
  padding-bottom: 0;
}
.dashboard-section.details-section .modal h4 svg {
  position: static;
}
.no-padding {
  padding: 0;
}
.dashboard-sidebar .company-info {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.dashboard-sidebar .company-info .thumb {
  width: 60px;
  height: 60px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  background: #f9f9f9;
}
.dashboard-sidebar .company-info .thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 50px;
  max-height: 50px;
  border-radius: 3px;
}
.dashboard-sidebar .company-info .company-body {
  padding-left: 15px;
}
.dashboard-sidebar .company-info .company-body h5 {
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.dashboard-sidebar .company-info:after {
  content: "";
  position: absolute;
  right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, rgba(249, 251, 253, 0) 0%, #f9fbfd 100%);
}
@media (max-width: 991px) {
  .dashboard-container {
    display: block;
  }
  .dashboard-container .dashboard-content-wrapper, .dashboard-container .dashboard-sidebar {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .user-statistic-block .user-statistic {
    width: 47%;
    margin-bottom: 30px;
  }
  .user-statistic-block .user-statistic svg {
    top: 40px;
    transform: translateY(0);
  }
}
@media (max-width: 479px) {
  .user-statistic-block {
    display: block;
  }
  .user-statistic-block .user-statistic {
    width: 100%;
  }
  .user-statistic-block .user-statistic svg {
    top: 40px;
    transform: translateY(0);
  }
  .dashboard-section .information ul {
    display: block;
  }
  .dashboard-section .information ul li {
    width: 100%;
  }
  .dashboard-section .modal .modal-body .title {
    display: block;
  }
  .dashboard-section .modal .modal-body .title .add-more {
    margin-top: 15px;
  }
}
