.link_list .link_item #modalOpen{
    display: block;
    padding: .5rem;
    text-align: center;
    text-decoration: none;
    color: #5a5a5a;
    cursor: pointer;
    transition: background-color 200ms ease-out;
  }

  .link_list .link_item #modalOpen .img_wrap{
    display: block;
    width: 3rem;
    height: 3rem;
    padding: .5rem;
    margin: 0 auto;
    background-color: #f2f2f2;
  }

  .link_list .link_item #modalOpen .img_wrap img{
    display: block;
    width: 100%;
    height: 100%;
  }

  
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
  }
  
  .modal-content {
    background-color: white;
    border-radius: 10px;
    margin: 20% auto;
    width: 472px;
    box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2),0 7px 20px 0 rgba(0,0,0,0.17);
    animation-name: modalopen;
    animation-duration: 1s;
    padding: 20px;
  }
  
  @keyframes modalopen {
    from {opacity: 0}
    to {opacity: 1}
  }
  
  #afterSetting{
    position: relative;
  }

  .shortCutBox{
    margin-bottom: 20px;
  }
  .shortCutTextBox{
    border: none;
    width: 432px;
    background-color: rgb(230,235,230);
    padding: 6px 8px;
    border-radius: 5px;
  }

  .buttonBox{
    text-align: right;
  }

  #shortCutLink{
    display: flex;
    flex-direction: column;
    position: relative;
  }

  #editIcon{
    display: none;
    width: 25px;
    height: 28px;
    background-color: lightgray;
    position: absolute;
    right: 0;
    z-index: 1;
    animation-name: modalopen;
    animation-duration: 3s;
  }


  #editAction{
    display: none;
    width: 190px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    position: absolute;
    background-color: white;
    box-shadow: 0 0 8px gray;
    z-index: 2;
  }

  #editAction button{
    width: 180px;
    height: 30px;
    margin-left: 5px;
    margin-right: 5px;
    background-color: white;
    border: none;
    text-align: left;
  }

  #editAction button:hover{
    background-color: lightgray;
  }

  