/*-------------------
Below are resources for V1
-----------------*/


/*Deshboard CSS*/

/* Toggle Styles */
.dashboard-login {
  font-family: 'Poppins', sans-serif;
  color: #36414F;
  font-size: 14px;
  background: #E5E5E5;
}

nav.dashboard-nav {
  padding: 13px 0px 13px 0px;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 4%);
  height: 60px;
}

nav.dashboard-nav .navbar-brand {
  margin: 0 0 0 0px;
}

nav.dashboard-nav .fixed-brand {
  width: 241px;
}

nav.dashboard-nav .img-logo {
  width: 107px;
}

#sidebar-wrapper {
  top: 60px;
  z-index: 1000;
  position: fixed;
  left: 241px;
  height: 100%;
  margin-left: -241px;
  overflow-y: auto;
  background: #032646;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow-x: hidden;
}

/* Sidebar Styles */
.sidebar-nav {
  width: 241px;
  list-style: none;
  padding-top: 24px;
  overflow-y: scroll;
  height: 420px;
  max-height: 100%;
  padding-bottom: 20px;
}

.sidebar-nav::-webkit-scrollbar {
  width: 2px
}

.sidebar-nav::-webkit-scrollbar-track {
  background: #032646
}

.sidebar-nav::-webkit-scrollbar-thumb {
  background: #18A0FB;
  border-radius: 5px
}

.sidebar-nav li {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 33px;
  font-size: 14px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sidebar-nav li a {
  display: block;
  text-decoration: none;
  color: #828FA2;
}

.sidebar-nav li a:hover,
.sidebar-nav li.active a {
  text-decoration: none;
  color: #fff;
  transition: 0s;
  filter: invert(0%) sepia(100%) saturate(630%) hue-rotate(542deg) brightness(104%) contrast(97%);
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
  text-decoration: none;
}

#sidebar-wrapper {
  width: 241px;
}

#wrapper.toggled #sidebar-wrapper,
#wrapper.toggled .sidebar-nav {
  width: 104px;
}

#wrapper.toggled #sidebar-wrapper li .sidebat_text {
  display: none;
}

#sidebar-wrapper span.sidebat_text {
  margin-left: 16px;
}

#wrapper.toggled .sidebar-nav li {
  padding-left: 0;
  text-align: center;
}

.sidebar_bottum {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 60px;
}

.sidebar_bottum .tata_logo {
  padding-bottom: 20px;
  background: #032646;
  padding-top: 10px;
}

button#menu-toggle {
  width: 100%;
  padding: 20px 0px;
  border: none;
  outline: none;
  color: #fff;
  background: #031D35;

}

.sidebar_bottum .tata_logo span {
  display: block;
  font-weight: 700;
  font-size: 22px;
  line-height: 18px;
  font-family: 'Sansation';
  text-transform: uppercase;
  color: #fff;
  margin-top: 30px;
}

.toggled .sidebar_bottum .tata_logo span {
  display: none;
}

#wrapper button#menu-toggle span {
  transform: rotate(180deg);
  display: block;
}

#wrapper.toggled button#menu-toggle span {
  transform: rotate(0deg);
  display: block;
}

.dashboard-nav .search {
  display: flex;
  align-items: center;
  position: relative;
}

.dashboard-nav .search input.form-control {
  background: #F8F8F8;
  border-radius: 4px;
  border: none;
  padding: 0 30px 0 30px;
  height: 40px;
  text-align: center;
  font-size: 12px;
  color: #828FA2;
  width: 460px;
}

.dashboard-nav .search button {
  position: absolute;
  left: 0;
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  width: 40px;
  height: 40px;
}

.dashboard-nav .search button:active {
  background: transparent;
  border: none;
  outline: none;
}

.dashboard-nav .notification {
  position: relative;
}

.dashboard-nav .notification span {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #E04B43;
  border-radius: 10px;
  right: -2px;
  top: -2px;
}

.dashboard-nav .profile_item {
  display: flex;
  align-items: center;
}

.dashboard-nav .profile_item h2 {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #2D2D2D;
  margin: 0;
}

.dashboard-nav .profile_item p {
  color: #979797;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  margin: 0;
}

.dashboard-nav .profile_img img {
  border-radius: 100px;
  width: 50px;
  margin-left: 10px;
}

.dashboard-nav ul.navbar-nav {
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.dashboard-nav .nav-item .nav-link {
  padding: 0px;
}

.dropdown-toggle::after {
  display: none;
}

.dashboard-nav li.welcom_text {
  margin-left: 12%;
}

.dashboard-nav .profile-dropdown {
  top: 55px;
  margin: 0;
}

.dashboard-nav .profile-dropdown a.dropdown-item {
  font-size: 14px;
  padding: 8px 17px;
  color: #36414F;
}

.dashboard-nav .profile-dropdown a.dropdown-item:hover {
  background: #E5E5E5;
  color: #36414F;
}

.dropdown-menu-animated {
  -webkit-animation-name: DropDownSlide;
  animation-name: DropDownSlide;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  margin: 0;
  z-index: 1000;
}

@keyframes DropDownSlide {
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}

@media screen and (max-height: 530px) {
  .sidebar-nav {
    height: 290px;
    max-height: 100%;
  }

  .sidebar_bottum .tata_logo img {
    width: 45px;
  }
}

@media screen and (max-height: 460px) {
  .sidebar-nav {
    height: 190px;
    max-height: 100%;
  }
}

@media only screen and (max-width: 767px) {
  nav.dashboard-nav {
    height: auto;
  }

  .dashboard-nav li.welcom_text {
    margin-bottom: 20px;
    margin-top: 20px;
    margin-left: 0%;
  }

  .dashboard-nav ul.navbar-nav {
    align-items: end;
  }

  .dashboard-nav .profile-dropdown {
    text-align: right;
  }
}

/* wrapper csss */
#wrapper {
  padding-top: 60px;
  padding-left: 241px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}

#page-content-wrapper {
  position: relative;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#page-content-wrapper .form-select {
  font-size: 14px;
  color: #36414F;
  border-radius: 4px;
  border: none;
  padding: 13px 16px;
}

#wrapper.toggled #page-content-wrapper {
  position: relative;
  margin-right: 0;
  margin-left: -137px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: auto;
}

#page-content-wrapper h1 {
  color: #2D2D2D;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 0;
}

.card {
  border: none;
  background: #FFFFFF;
  border-radius: 4px;
}

.card .card-header {
  background: #FFFFFF;
  padding: 18px 25px;
  border-bottom: 1px solid #F7F7F7;
}

.card .header-title {
  color: #2D2D2D;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  margin: 0;
}

.card .card-body {
  padding: 15px 25px 65px 25px;
}

.progressbar_list {
  margin-top: 60px;
}

.progressbar_list .progress_item {
  border-bottom: 1px solid #E2E8ED;
  padding-bottom: 20px;
  padding-top: 20px;
  margin-left: 10%;
  margin-right: 10%;
}

.progressbar_list .progress-bar-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
  display: block;
}

.progressbar_list .progress {
  background: #F8F8F8;
  border-radius: 32px;
  width: 100%;
  margin-right: 10px;
}

.progressbar_list span.percentage {
  color: #2D2D2D;
  font-size: 16px;
  line-height: 24px;
}

.animated-progress {
  position: relative;
}

.animated-progress .progress-bar {
  position: relative;
  border-radius: 6px;
  -webkit-animation: animate-positive 2s;
  animation: animate-positive 2s;
}

@-webkit-keyframes animate-positive {
  0% {
    width: 0
  }
}

@keyframes animate-positive {
  0% {
    width: 0
  }
}

@media only screen and (min-width: 768px) {
  #page-content-wrapper .center_section {
    padding-top: 20px;
  }
}

@media only screen and (min-width: 992px) {
  #page-content-wrapper .center_section {
    padding-left: 24px;
  }
}

@media only screen and (max-width: 1024px) {
  #wrapper {
    padding-left: 100px;
  }

  #wrapper.toggled {
    padding-left: 240px;
  }

  #wrapper.toggled #page-content-wrapper {
    margin-left: -140px;
  }

  .progressbar_list .progress_item {
    margin-left: 0%;
    margin-right: 0%;
  }
}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {

  #wrapper.toggled #sidebar-wrapper,
  #wrapper.toggled .sidebar-nav {
    width: 60px;
  }

  .sidebar_bottum .tata_logo img {
    width: 60px;
    padding: 0 8px;
  }

  #wrapper {
    padding-left: 60px;
    padding-top: 80px;
  }

  #wrapper.toggled {
    padding-left: 210px;
  }

  #sidebar-wrapper {
    width: 210px;
    left: 0;
    margin-left: 0px;
  }

  .sidebar-nav {
    width: 210px;
  }

  .sidebar-nav li {
    padding-left: 15px;
  }

  #wrapper.toggled #page-content-wrapper {
    margin-left: -150px;
  }

  .progressbar_list {
    margin-top: 20px;
  }

  .card .card-body {
    padding: 15px 25px 30px 25px;
  }
}

/*Skill Section*/
.row.circle-progress-list {
  margin-left: 2%;
  margin-right: 2%;
  margin-top: 54px;
}

.circle-progress {
  position: relative;
  text-align: center;
}

.barOverflow {
  /* Wraps the rotating .bar */
  position: relative;
  overflow: hidden;
  width: 200px;
  height: 100px;
  margin-bottom: -14px;
  margin-left: auto;
  margin-right: auto;
}

.bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  /* full circle! */
  border-radius: 50%;
  box-sizing: border-box;
  border: 16px solid #E2E3E4;
  /* half gray, */
  -webkit-animation: animate-transform 2s;
  animation: animate-transform 2s;
}

.circle-progress-list .circle-progress span {
  color: #404D5C;
  font-weight: 700;
}

.circle-progress-list .circle-progress p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  margin: 40px 0 0 0;
}

@-webkit-keyframes animate-transform {
  0% {
    transform: rotate(45deg)
  }
}

@keyframes animate-transform {
  0% {
    transform: rotate(45deg)
  }
}

.table-list .table {
  margin-bottom: 0px;
  border-color: #ECECEC;
}

.table-list .table td,
.table-list .table th {
  padding: 7px 6px;
  font-size: 13px;
  vertical-align: middle;
}

.table-list .table th {
  font-weight: 600;
}

.table-responsive {
  scrollbar-color: #bf3d4a #e3e3e3;
  scrollbar-width: thin;
}

.table-responsive::-webkit-scrollbar {
  height: 5px
}

.table-responsive::-webkit-scrollbar-track {
  background: #ECECEC
}

.table-responsive::-webkit-scrollbar-thumb {
  background: #032646;
  border-radius: 0
}

@media only screen and (max-width: 1199px) {
  .table-list .table {
    margin-bottom: 10px
  }
}

@media only screen and (max-width: 991px) {
  .circle-progress-list .circle-progress p {
    margin: 25px 0 0 0;
  }

  .row.circle-progress-list {
    margin-left: 0;
    margin-right: 0;
    margin-top: 35px;
  }

  .table-list .table td:first-child {
    width: 34px;
  }
}

@media only screen and (max-width: 767px) {
  .card .card-header {
    padding: 12px 15px;
  }

  .card .card-body {
    padding: 15px 15px 15px 15px;
  }

  .table-list .table th {
    text-align: right;
  }

  .table-list .table td:nth-child(2) {
    width: 150px;
  }
}

@media only screen and (max-width: 575px) {
  .table-list .table td:nth-child(2) {
    width: 88px;
  }
}

/*Wrapper Left Exam section*/
.left_section .left_exam_area>img {
  width: 100%;
  margin-top: 4px;
}

.left_section .left_exam_area {
  position: relative;
  background: #FFECEC;
}

.left_section .date_overlay {
  background: #F17155;
  border: 1px solid #9E2828;
  border-radius: 4px;
  text-align: center;
  position: relative;
  width: 200px;
  margin: -90px auto 0px auto;
  color: #fff;
  padding: 30px 10px 20px 10px;
}

.left_section .certificate_overlay {
  background: #F17155;
  border: 1px solid #9E2828;
  border-radius: 4px;
  text-align: center;
  position: relative;
  width: 200px;
  margin: -40px auto 0px auto;
  color: #fff;
  padding: 14px 10px 14px 10px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
}

.date_overlay .calendar {
  position: absolute;
  background: #F17155;
  border: 1px solid #9E2828;
  border-radius: 29px;
  top: -30px;
  left: 0;
  right: 0;
  margin: 0px auto;
  width: 48px;
  height: 48px;
  line-height: 45px;
  text-align: center;
}

.date_overlay h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
}

.date_overlay p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 0;
}

.left_section .exam_detail {
  padding: 15px 30px 30px 30px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}

.left_section a.left-btn {
  display: block;
  text-decoration: none;
  background: #032646;
  border-radius: 4px;
  padding: 10px 10px;
  color: #fff;
  font-weight: 500;
  margin-top: 30px;
  text-align: center;
}

/*Wrapper Left Scholarship employability section*/
.employability {
  padding: 24px 20px;
  background: #ffffff;
}

.scholarship {
  border-top: none;
}

.employability h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
  color: #2D2D2D;
}

.employability p {
  line-height: 22px;
  color: rgba(54, 65, 79, 0.6);
}

@media only screen and (max-width: 767px) {
  .left_section .left_exam_area>img {
    margin-top: 0;
  }

  .left_section {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/*Popup Modal css*/
.modal-dialog .modal-content {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  border: none;
}

.modal .modal-header {
  background: #E2E8ED;
  padding: 24px 16px;
  border-radius: 4px 4px 0px 0px;
  border: none;
}

.modal .modal-header h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #2D2D2D;
}

.modal .modal-header .btn-close {
  color: #2D2D2D;
  opacity: 1;
}

.modal .modal-body {
  padding: 20px 32px 10px 32px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group .form-label {
  color: #9299A3;
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  margin-bottom: 5px;
}

.form-group .form-control {
  color: #36414F;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  border: 1px solid #C3C8CC;
  border-radius: 4px;
}

.modal .modal-footer {
  border-color: #E5E5E5;
  padding: 16px;
}

.modal .modal-footer .btn {
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  border: none;
  padding: 10px 19px;
}

.modal .modal-footer button.btn-light {
  background: #E2E8ED;
  color: #032646;
}

.modal .modal-footer button.btn-save {
  background: #032646;
  color: #FFFFFF;
}


/*
***********************
Professor Dashboard
Total Enrollments
***********************
*/
.total-enrollments {
  background: #fff;
  margin-top: 21px;
  padding: 18px 7px 18px 23px;
  border-radius: 4px;
}

.total-enrollments h3 {
  color: #2D2D2D;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  margin: 0px
}

.total-enrollments .btn {
  width: 142px;
  height: 48px;
  padding: 0;
}

.modal-body table.table {
  border: 1px solid #ECECEC;
  font-size: 13px;
  color: #36414F;
}

.modal-body table.table th {
  color: rgba(54, 65, 79, 0.6);
  text-transform: uppercase;
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  .total-enrollments {
    padding: 10px 10px 10px 10px;
    display: block !important;
    text-align: center;
  }

  .total-enrollments h3 {
    margin-bottom: 10px;
  }
}

/*
***********************
Filter Section
***********************
*/
.filter-area {
  margin-top: 21px;
  margin-bottom: 11px;
}

.filter-area .filter {
  position: relative;
}

.filter-area .filter input {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  border: none;
  outline: none;
  color: #36414F;
  height: 48px;
  width: 335px;
  padding: 0px 20px;
}

.filter-area .filter .filter-icon {
  position: absolute;
  top: 30%;
  right: 10px;
  padding: 0;
  border: none;
  background: no-repeat;
  outline: none;
}

.filter-area .button-group {
  padding-right: 7px;
}

.filter-area .btn {
  width: 142px;
  height: 48px;
  margin-right: 8px;
}

@media only screen and (max-width: 991px) {
  .filter-area .filter input {
    width: 300px;
  }
}

@media only screen and (max-width: 767px) {
  .filter-area.d-flex {
    display: block !important;
  }

  .filter-area .filter input {
    width: 100%;
  }

  .filter-area .btn {
    margin-bottom: 10px;
  }

  .filter-area .button-group {
    padding-right: 0;
    text-align: center;
  }
}


/*
***********************
Reach Section
***********************
*/
.reach-section {
  background: #fff;
  margin-top: 10px;
  padding: 18px 7px 18px 23px;
  border-radius: 4px;
}

.reach-section h3 {
  color: #2D2D2D;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  margin: 0px
}

.reach-section .reach-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
  align-items: center;
  margin-left: 7%;
}

.reach-section .reach-list li {
  width: 125px;
  text-align: center;
  height: 22px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.reach-section .reach-list li:first-child {
  border-left: none
}

@media only screen and (max-width: 991px) {
  .reach-section {
    display: block !important;
  }

  .reach-section h3 {
    margin-bottom: 10px;
  }

  .reach-section .reach-list {
    margin-left: 0;
  }

  .reach-section .reach-list li {
    border: none;
    width: auto;
    text-align: left;
  }
}

@media only screen and (max-width: 767px) {
  .reach-section .reach-list {
    display: block;
  }

  .reach-section .reach-list li {
    margin-bottom: 10px;
  }
}

/*
***********************
Benificiaries Card
***********************
*/
.benificiaries-card ul {
  display: block;
  background: #EEF8FF;
  padding: 9px 7px;
  width: 100%;
  margin-bottom: 20px;
}

.benificiaries-card ul li {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 24px;
  padding-right: 24px;
  display: inline-block;
}

.benificiaries-card ul li:first-child {
  border-left: none;
  padding-left: 0px;
}

.benificiaries-card h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
}

.benificiaries-card .table {
  border-color: #ECECEC;
}

.benificiaries-card .table td,
.benificiaries-card .table th {
  padding: 7px 6px;
  font-size: 13px;
  vertical-align: middle;
}

@media only screen and (max-width: 991px) {
  .benificiaries-card {
    margin-bottom: 25px;
    height: auto !important;
  }
}

@media only screen and (max-width: 767px) {
  .chart {
    margin: 0px auto;
    width: fit-content;
  }

  .benificiaries-card ul li {
    padding-right: 0;
    padding-left: 0;
    display: block;
    border: none;
  }
}

/*
***********************
Exclusive Card
***********************
*/
.exclusive-card .i-get-card {
  background: #005C97;
  border-radius: 4px;
  text-align: center;
  color: #fff;
  padding: 10px;
}

.exclusive-card .i-get-card img {
  width: 100%;
}

.exclusive-card .i-get-card h3 {
  border-top: 2px solid rgb(255 255 255 / 50%);
  font-weight: 600;
  font-size: 24px;
  line-height: 22px;
  margin-bottom: 4px;
  padding-top: 15px;
}

.exclusive-card .i-get-card p {
  opacity: 0.7;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 10px;
}

.exclusive-card .table {
  border-color: #ECECEC;
}

.exclusive-card .table td,
.exclusive-card .table th {
  padding: 7px 6px;
  font-size: 13px;
  vertical-align: middle;
}

.exclusive-card .table td {
  width: 180px;
}

@media only screen and (max-width: 1199px) {
  .exclusive-card .i-get-card {
    margin-bottom: 20px;
  }
}

/*
***********************
Semester Card
***********************
*/
.semester-card .circle-progress .bar {
  border-bottom-color: #69D174;
  border-right-color: #69D174;
}

.semester-card .circle-progress p {
  line-height: 22px;
  margin-top: 20px;
  margin-bottom: 0;
}

.semester-card h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  color: #2D2D2D;
  margin-bottom: 20px;
}

.semester-card .table {
  margin-bottom: 30px;
}

.semester-card .btn-outline-primary {
  border-radius: 4px;
  float: right;
  width: 140px;
}

#semesterCollege .modal-header {
  background: #fff;
  border-bottom: 1px solid #D9D9D9;
}

#semesterCollege .modal-body table.table th,
#semesterCollege .modal-body table.table td {
  vertical-align: middle;
}

@media only screen and (max-width: 991px) {
  .semester-card {
    margin-bottom: 25px;
    height: auto !important;
  }
}

/*
***********************
Soft Skills (2170)
***********************
*/
.admin-soft-skill .card-header .d-flex div {
  display: flex;
  align-items: center;
}

.admin-soft-skill .card-header .d-flex span {
  margin-left: 25px;
  margin-right: 10px;
}

.admin-soft-skill .progressbar_list {
  margin-top: 0px;
}

.admin-soft-skill .progressbar_list .progress_item {
  margin-left: 0%;
  margin-right: 0%;
  border: none;
  padding-top: 13px;
  padding-bottom: 13px;
}

.admin-soft-skill .progressbar_list .progress-bar-title {
  margin-bottom: 0px;
}

.admin-soft-skill .progressbar_list span.percentage {
  width: 90px;
  font-size: 14px;
}

.admin-soft-skill .progressbar_list .progress-bar-title {
  font-size: 14px;
}

.admin-soft-skill .progressbar_list .progress {
  height: 12px
}

@media only screen and (max-width: 460px) {
  .admin-soft-skill .card-header {
    display: block !important;
  }

  .admin-soft-skill .card-header .d-flex div {
    margin-right: 10px;
  }

  .admin-soft-skill .card-header .d-flex span {
    margin-left: 0;
    margin-right: 8px;
  }
}

/*
***********************
Fundamentals of Automobile Design
***********************
*/
.fundamentals-card .table-responsive {
  margin-right: 15%;
}

.fundamentals-card .table {
  border-color: #ECECEC;
}

.fundamentals-card .table td,
.exclusive-card .table th {
  padding: 7px 6px;
  font-size: 13px;
  vertical-align: middle;
}

.fundamentals-card h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  margin-bottom: 24px;
}

ul.fundamentals-tab {
  display: block;
  width: 100%;
}

ul.fundamentals-tab li.nav-item {
  display: block;
}

ul.fundamentals-tab .nav-item .nav-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #36414F;
  padding: 10px 10px 10px 12px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #ECECEC;
  width: 100%;
  text-align: left;
  margin-bottom: 0px;
  outline: none;
}

ul.fundamentals-tab .nav-item .nav-link.active {
  background: #032646;
  border: 1px solid #E2E8ED;
  color: #fff;
}

.fundamentals-card .btn-outline-primary {
  border-radius: 4px;
  float: right;
  width: 140px;
}

@media only screen and (max-width: 1199px) {
  .fundamentals-card .table-responsive {
    margin-right: 0;
    margin-left: 5%;
  }
}

@media only screen and (max-width: 991px) {
  .fundamentals-card .table-responsive {
    margin-left: 0%;
  }
}

@media only screen and (max-width: 767px) {
  ul.fundamentals-tab {
    margin-bottom: 20px;
  }
}
