.aboutList {
  background-color: #FBFCFC;
  color: #747474;
  min-height: calc(100vh - 56px);
  padding-bottom: 1px;
}

.bookmark {
  position: fixed;
  top: 56px;
  left: 16px;
  z-index: 35;
  
  width: 40px;
  height: 50px;
  background: linear-gradient(to bottom, #e66e52, #f35841);
  
  transition: height 0s;
}

.modalAbout {
  background-color: #FBFCFC;
}

.bookmark > div:nth-child(2) {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 0;
  
  border-style: solid;
  border-width: 0 20px 20px 20px;
  border-color: transparent transparent #FBFCFC transparent;
}

.aboutHeader {
  font-family: 'Anonymous Pro';
  font-weight: 700;
  font-size: 32px; 
  padding: 32px 16px 50px 77px;
  position: relative;
  
  color: #747474;
}

.aboutItem {
  margin: 0 50px 14px 77px;
  font-family: 'Roboto Mono';
  font-weight: 300;
  font-size: 12px;
  position: relative;
}

.aboutItem:last-child {
  /*margin: 0 50px 0 77px;*/
}

.aboutItemCount {
  float: right;
  width: 20px;
  background-color: #FBFCFC;
  padding-left: 1px; 
  position: relative;
  z-index: 2;
}

.aboutItemName {
  background-color: #FBFCFC; 
  position: relative;
  z-index: 2;
}

.aboutItem::after {
  content: '........................................................';
  font-family: 'Roboto Mono';
  font-weight: 300;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
}

.aboutItemOpened {
  position: absolute;
  top: 56px;
  left: 0vw;
  bottom: 0;
  width: 100vw;
  box-sizing: border-box;
  padding: 44px 43px 50px 77px;
  z-index: 6;
  opacity: 0;
  overflow: scroll;
  color: #747474;
  
  animation: aboutItemOpen 0.3s forwards;
  
  font-family: 'Roboto Mono';
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.4px;
}

@keyframes aboutItemOpen {
  0% {
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    left: 50px;
  }
  
  100% {
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 1;
    left: 0px;
  }
}

@keyframes aboutItemRemove {
  0% {
    animation-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
    opacity: 1;
    left: 0px;
  }
  
  100% {
    animation-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
    opacity: 0;
    left: 50px;
  }
}

.aboutItemOpenedMark .aboutHeader {
  animation: aboutItemOpenMark 0.3s forwards;
}

.aboutItemOpenedMark .aboutItem {
  animation: aboutItemOpenMark 0.3s forwards;
}

.aboutItemOpenMarkRemove {
  animation: aboutItemOpenMarkRemove 0.3s forwards;
}

@keyframes aboutItemOpenMark {
  0% {
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 1;
    left: 0px;
  }
  
  100% {
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    left: -50px;
  }
}

@keyframes aboutItemOpenMarkRemove {
  0% {
    animation-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
    opacity: 0;
    left: -50px;
  }
  
  100% {
    animation-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
    opacity: 1;
    left: 0px;
  }
}

.modalAbout ul {
  list-style: none;
}

.aboutSectionText {
  padding: 0 16px 50px 77px;
  color: #747474;
  font-family: 'Roboto Mono';
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.4px;
}
