.foldertab {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .foldertab .folder {
    position: relative;
    height: 10px;
  }
  .foldertab .folder-border {
    border-bottom: 10px solid #000;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    height: 0;
    width: 60px;
    position: absolute;
  }
  .foldertab .folder-light {
    border-bottom: 10px solid #a3a3a3;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    height: 0;
    width: 60px;
    top: 1px;
    position: absolute;
  }
  .foldertab .folder-bg {
    border-bottom: 10px solid #555;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    height: 0;
    width: 60px;
    top: 2px;
    position: absolute;
  }
  .foldertab .folders {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .foldertab .folders .folder-left {
    height: 10px;
    position: relative;
  }
  .foldertab .folders .folder-left .folder-border {
    border-bottom: 10px solid #000;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    height: 0;
    width: 60px;
    position: absolute;
  }
  .foldertab .folders .folder-left .folder-light {
    border-bottom: 10px solid #a3a3a3;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    height: 0;
    width: 60px;
    top: 1px;
    position: absolute;
  }
  .foldertab .folders .folder-left .folder-bg {
    border-bottom: 10px solid #555;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    height: 0;
    width: 60px;
    top: 2px;
    position: absolute;
  }
  .foldertab .folders .folder-right {
    height: 10px;
    position: relative;
  }
  .foldertab .folders .folder-right > * {
    border-right: 0;
  }
  .foldertab .folders .folder-right .folder-border {
    border-bottom: 10px solid #000;
    border-left: 12px solid transparent;
    height: 0;
    width: 120px;
    position: absolute;
    right: 0;
  }
  .foldertab .folders .folder-right .folder-light {
    border-bottom: 10px solid #a3a3a3;
    border-left: 12px solid transparent;
    height: 0;
    width: 119px;
    top: 1px;
    position: absolute;
    right: 1;
  }
  .foldertab .folders .folder-right .folder-bg {
    border-bottom: 12px solid #555;
    border-left: 14px solid transparent;
    height: 0;
    width: 117px;
    top: 2px;
    position: absolute;
    right: 1;
  }
  .foldertab .tab {
    height: 12px;
    background-color: #555;
    border: 1.5px solid black;
    box-shadow: inset 6px 7px 0px -6px #a3a3a3;
  }
