@charset "utf-8";
/*
@font-face{font-family:Jervinho;src:url(fonts/jervinho/JervinhoRegular.ttf);}
@font-face{font-family:Cambay;src:url(fonts/Cambay/Cambay-Regular.ttf);}
@font-face{font-family:Work_Sans;src:url(fonts/Work_Sans/WorkSans-VariableFont_wght.ttf);}
/*
@font-face{font-family:Sans-Light;src:url(fonts/open-sans/OpenSans-Light.ttf);}
@font-face{font-family:Roboto;src:url(fonts/Roboto/Roboto-Bold.ttf);}
*/
@font-face{font-family:Nanum;src:url(fonts/Nanum_Gothic/NanumGothic-Regular.ttf);}

:root {
   --f-num  : Nanum;
   --f-txt  : Lexend;
   --f-h    : Nanum;
   --f-label: Lexend;
   --f-size : 0.7rem;

   /* TIMELINE */
   --tl-background:#f0f6ff;
   --tl-line-color: #e6ecf9;
   --tl-bullet: #cad2e3;
}
body{
  font-family: var(--f-txt);
  font-size: var(--f-size);
  background: #fbffff;
  color: #222;
}
/* TIMELINE TREE */
.timeline-tree{
  padding-bottom: 50px;
}
.timeline-tree-header{
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  padding-bottom: 20px;
}
.timeline-tree-quote{
  text-align: center;
}
.timeline-tree-branch{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.timeline-tree-branch > div{
  display: grid;
}
.branch{
}
.timeline-branch-post{
  text-align: center;
}
.timeline-branch-post .textarea{
  display: inline-block;
  padding: 15px;
  width: 350px;
  max-width: 100%;
  min-height: 55px;
  border-radius: 10px;
  border: solid 2px var(--tl-line-color);
  margin: auto;
  text-align: left;
}
.timeline-branch-post .textarea:focus {
  outline: none !important;
  border: 1px solid #d5a824;
  box-shadow: 0 0 5px #CED0D5;
}
.coat-1,
.coat-2{
  height: 15px;
  margin: auto;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.coat-1{
  background-color: var(--tl-bullet);
  width: 150px;
}
.coat-2{
  background-color: var(--tl-line-color);
  width: 100px;
}
#leaf-data:empty:before{
  content: attr(data-placeholder);
  color: #bbb;
}
.btn-leaf{
  background-color: var(--tl-line-color);
  color: #403f3f;
  padding: 8px 50px;
  width: auto;
  margin: auto;
  border: none;
  font-size: 0.8rem;
  cursor: pointer;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.btn-leaf:hover{
  background-color: orange;
  color: #fff;
}
.branch-grafting{
  width: 50%;
  border-right: solid 5px var(--tl-line-color);
  padding: 10px;
}
.branch-daily::before{
  width: 50%;
  border-right: solid 5px #aaa;
}
.branch-daily{
  background-color: #7ad077;
  color: #fff;
  padding: 7px 20px;
  width: max-content;
  margin: auto;
  border-radius: 5px;
}
.branch-official{
  background-color: var(--tl-background);
  padding: 7px 12px;
  width: auto;
  margin: auto;
  border-radius: 20px;
  border: solid 2px var(--tl-line-color);
  position: relative;
  max-width: 500px;
  min-width: 300px;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  transition: transform 200ms;
}
.branch-official:hover{
transform: translateX(-0.75rem);
}
.branch-official-header{
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-gap: 10px;
}
.branch-official .official-avatar,
.leaf-comment-item .official-avatar{
  width: 35px;
  height: 35px;
  z-index: 2;
}
.user-image{
  width: 30px;
  height: 30px;
}
.official-avatar img,
.user-image img{
  border-radius: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border: solid 2px var(--tl-line-color);
}
.leaf-data-avatar{
  border-radius: 100%;
  width: 30px;
  height: 30px;
  object-fit: cover;
  border: solid 2px #336831;
  vertical-align: middle;
}
.branch-official-action{
  position: absolute;
  right: 10px;
  top: 5px;
}
.icon-leaf-del{
  color: #ffe8e8;
  font-size: 1rem;
}
.icon-leaf-del:hover{
  color: #fd9e9e;
  cursor: pointer;
}

/* URL META */
.url-meta,
.url-meta-side{
  background-color: var(--tl-line-color);
  padding: 10px;
  border-radius: 15px;
  margin-bottom: 5px;
  display: inline-block;
  width: 100%;
  color: currentColor;
}
.url-meta-side{
  background-color: transparent;
}
.url-meta-side-right{
  padding-left: 40px;
}
.url-meta-side-left{
  padding-right: 40px;
}
.url-meta:hover{
  background-color: beige;
  text-decoration: none;
}
.url-meta-content,
.url-meta-content-side-left{
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-gap: 10px;
}
.url-meta-content-side-left{
  grid-template-columns: 1fr 50px;
}
.url-meta-img{
  width: 50px;
  height: 50px;
  z-index: 2;
}
.url-meta-img img{
  border-radius: 5px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border: solid 2px #336831;
}
.twig{
  border-bottom: solid 5px var(--tl-line-color);
  width: fit-content;
  padding: 20px 5px 5px;
  position: relative;
}
.twig:hover{
  border-bottom-color: var(--tl-bullet);
  animation: pulse 0.5s;
}
.twig-cut{
  height: 10px;
  width: 10px;
  background-color: var(--tl-bullet);
  position: absolute;
  border-radius: 100%;
  bottom: -7px;
}
.twig-cut-left{
  left: -9px;
}
.twig-cut-right{
  right: -9px;
}
.twig-avatar{
  position: absolute;
  bottom: -18px;
  width: 35px;
  height: 35px;
  z-index: 2;
}
.twig-avatar img{
  border-radius: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border: solid 2px var(--tl-line-color);
}
.twig-avatar-left{
  left: -38px;
}
.twig-avatar-right{
  right: -38px;
}
.branch-left{
  border-right: solid 5px var(--tl-line-color);
  justify-content: end;
}
.twig-data{
  max-width: 60ch;
}
.twig-data-left{
  text-align: right;
}
.twig-data-right{
  text-align: left;
}
.twig-data-image{
  cursor: pointer;
}
.twig-data-avatar{
  cursor: pointer;
  border-radius: 100%;
  height: 80px;
  width: 80px;
  object-fit: cover;
  border: solid 2px brown;
}
.twig-data-project-name{
  color: #2db5d5;
}
.twig-data-task-name{
  color: #4d9daa;
}
.branch-fullname{
  font-size: 0.75rem;
  padding: 0 5px;
  display: inline-block;
  align-self: end;
}
.branch-official-info{
  display: grid;
}
.branch-data{
  padding-top: 10px;
  container-type: inline-size;
}
.branch-data > p{
  max-width: 90ch;
}
.branch-time{
  color: #aaa;
  font-size: 0.7rem;
  display: inline-block;
  padding: 0 5px;
}
.branch-avatar-left,
.branch-avatar-right{
  position: absolute;
  top: 63%;
  width: 35px;
  height: 35px;
  z-index: 2;
}
.twig-image{
  border-radius: 100%;
  height: 80px;
  width: 80px;
  object-fit: cover;
  border: solid 3px brown;
}
.align-left{
  text-align: left;
}
.align-right{
  text-align: right;
}

/* LEAF LOVE */
.leaf-love-div i{
  font-size: 0.8rem;
  color: coral;
}
.leaf-love-div i:hover,
.leaf-love-div span:hover{
  cursor: pointer;
}
.leaf-love-div span:hover{
  font-weight: 600;
}
.leaf-comment-form{
  margin-top: 25px;
}
.leaf-comment-form input[type=text]{
  width: 100%;
  padding: 8px;
  border-radius: 3px;
  border: solid 1px #ccc;
  outline: none !important;
}
/* LEAF COMMENTS */
.leaf-comment-item{
  margin-bottom: 2px;
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-gap: 2px;
  padding: 10px 0;
  border-top: 1px solid #f2f2f2;
}
.leaf-comment-item .branch-fullname{
  color: dodgerblue;
  display: block;
}
.leaf-comment-text{
  color: #444;
  padding: 0 5px;
  display: inline-block;
}
