@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600&display=swap');
.shortcode_section {
  display: flex;
  justify-content: flex-start;
  margin: 20px 0;
  align-items: center;
  gap: 20px;
}
.shortcode_title {
  font-size: 16px;
  font-weight: 500;
}
.shortcode_discription {
  font-size: 14px;
  font-weight: 400;
}
.shortcode_line {
  margin: 30px 0;
}
.wc-add-item-1,
.wc-add-item-2,
.wc-add-item-3,
.wc-add-item-4 {
  margin-top: 10px !important;
}
.progress_wrapper {
  width: 100%;
  height: auto;
}
.progress_wrapper .line-1,
.progress_wrapper .line-2,
.progress_wrapper .line-3 {
  border: 1px solid #d23a26;
  height: 0px;
}
.progress_wrapper > :nth-child(1).line-1,
.progress_wrapper > :nth-child(1).line-2,
.progress_wrapper > :nth-child(1).line-3 {
  display: none;
}
.progressbar_table {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 20px 16px;
  padding: 10px;
}
.progress_input .regular-text {
  width: 100% !important;
}
.shortcode_value input {
  width: 100% !important;
}
.skill {
  margin-bottom: 60px !important;
}
.skills {
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
}
.skill-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 20px 0;
}
.skill-bar {
  height: 20px;
  background: #fac0b7;
  border-radius: 30px;
  position: relative;
}
.skill-per {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-align: right;
  padding-right: 1%;
  color: #fff;
  height: 20px;
  line-height: 20px;
  background: #d23a26;
  border-radius: 20px;
  position: relative;
  animation: fillBars 2.5s 1;
}
.skill-per-1 {
  z-index: 10;
}
.skill-per-2 {
  top: -20px;
  z-index: 9;
  background: #ed8071;
}
.skill-per-3 {
  top: -40px;
  z-index: 8;
  background: #f29a8c;
}
.skill-per::before {
  content: attr(per);
  position: absolute;
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 12px;
  top: 40px;
  right: 0;
  color: #333;
  white-space: nowrap;
  transform: translateX(50%);
}
.skill-per::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 8px;
  background: #333;
  top: 36px;
  right: 0;
  white-space: nowrap;
}
.skill-end {
  position: absolute;
  right: 0;
  top: 32px;
}
.skill-end::before {
  content: attr(per);
  position: absolute;
  padding: 4px 0;
  border-radius: 4px;
  font-size: 12px;
  top: 8px;
  white-space: nowrap;
  right: 0;
}
.skill-end::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 8px;
  background: #333;
  top: 4px;
  right: 0;
  white-space: nowrap;
}
.skill-start {
  position: absolute;
  left: 0;
  display: none;
}
.skill-start::before {
  content: attr(per);
  position: absolute;
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 12px;
  top: 38px;
  right: 0;
  white-space: nowrap;
  transform: translateX(50%);
}
.skill-start::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 8px;
  background: #333;
  top: 32px;
  right: 0;
  white-space: nowrap;
}
.add-new {
  display: inline-block;
  min-height: 30px !important;
  height: 30px;
  width: 30px;
  line-height: 15px !important;
  padding: 0 !important;
  align-items: center;
  text-align: center;
  color: #2cb357 !important;
  border-color: #2cb357 !important;
  background: #fff !important;
}
.add-new:hover {
  color: #00571c !important;
  border-color: #00571c !important;
}
.remove-button {
  display: flex !important;
  min-height: 30px !important;
  width: 30px;
  align-items: center;
  justify-content: center;
  color: #e94243 !important;
  border-color: #e94243 !important;
  background: #fff !important;
}
.remove-button:hover {
  color: #9f0001 !important;
  border-color: #9f0001 !important;
}
.hide_table {
  display: none;
}
.show_table {
  display: table;
}
@keyframes fillBars {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
