/*--------------------------------------------------------------
# Skills bars
--------------------------------------------------------------*/
.skillbars .container {
  max-width:100%;
  margin-bottom:2em;
}
.skillbars .content {
  margin-left:2em;
  margin-right:2em;
}

.skillbars .content {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
  color: var(--body-color);
}


.skillbars .headsize, .section-title span {
text-align: center;
}

.skillbars .headsize {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 0;
    color: #4d4643;
    position: relative;
    z-index: 2;
}

.skillbars .section-title .headsize::after {
    content: "";
    position: absolute;
    display: block;
    width: 100px;
    height: 5px;
    background: var(--terraplanet-color-primary);
    bottom: -.2em;
    left: calc(50% - 50px);
}

.skillbars .section-title p.title {
	text-align: center;
}

.skillbars .section-title span {
    position: absolute;
    color: #f0f1f3;
	margin-bottom: 10px;
    left: 0;
    right: 0;
    z-index: 1;
    font-weight: 700;
    font-size: 52px;
    text-transform: uppercase;
    line-height: 0;
}

@media (max-width: 575px) {
.skillbars .section-title .headsize {
    font-size: 28px;
    margin-bottom: 15px;
  }

.skillbars .section-title span {
    visibility: hidden;
  }
}


/*skill*/
.skillbars .progress {
  margin-top: .5em;
}

.skillbars .skill {
  padding: 10px 0;
  margin-bottom: -1em;
  margin-top: .5em;
  text-transform: uppercase;
  display: block;
  font-weight: var(--terraplanet-font-weight-headings);
  font-family: var(--terraplanet-font-family-headings);
  color: var(--body-color);
}

.skillbars .skill .per {
  float: right;
  font-style: normal;
}



.skillbars .progress-bar{
	width: 1%;
	display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #0d6efd;
    transition: width .6s ease;
	border-radius: 0.25rem;	
}

.skillbars .progress-bar-striped{
	width: 1px;
}

.skillbars .progress-bar__percent{
	z-index: 500;
	display: block;
	padding: 0 10px;
	font-family: 'verdana';
	font-weight:bold;
	font-size: 12px;
	text-align: center;
	line-height: 1rem;
	color: white;
	position: absolute;
}

.skillbars .bg-gray{
	background-color: var(--gray-900);
}