@charset "utf-8";

#mask {
  background-color: #000;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  display: none;
  opacity: 0.8;
}

#layerNode {
  display: none;
  background-color: rgb(255, 255, 255);
  max-width: 400px;
  width: 90%;
  z-index: 9999;
  position: fixed;
  border-radius: 5px;
}

.popup_header {padding-bottom:15px; margin:20px 15px 0 15px; border-bottom:1px solid #333; font-size:1.1em; position:relative; text-align:center; z-index:1000;}
.popup_header span {font-size:1.1em; color: #323232; font-weight: bold;vertical-align: middle;}
.popup_header span .ico_img {width: 16px; height: 16px;padding-top: 3px;}
.popup_header .btn_close{ height:15px; position:absolute; top:4px; right:5px; cursor: pointer; }

#likeForm, #likeModifyForm {
  padding: 15px;
}

#likeForm .option_btn {
  padding-top: 15px;
  text-align: center;
}

#likeForm .reg_list {
  display: none;
  padding-top: 15px;
}

#likeForm .reg_list input, #likeModifyForm .mod_list input {
  width: 100%;
}

#likeForm .reg_list input[type=text], #likeModifyForm .mod_list input[type=text] {
  font-size: 0.9em;
}

#likeForm .reg_list input.list-name, #likeModifyForm .mod_list input.list-name {
  width: 100%;
}

#likeForm .reg_list input.btn_add, #likeModifyForm .mod_list input.btn_mod {
  margin-top: 10px;
}

#likeForm .option_btn input {
  text-align: center;
  width: 100%;
}

#likeForm .like-list {
  display: flex;
  flex-direction: column;
  height: 200px;
  overflow-y: scroll;
  border-bottom: 1px solid #333;
  padding: 0 10px 10px 10px;
}

.bookmark-list {
  display: flex;
  flex-direction: column;
  height: 250px;
  overflow-y: scroll;
  border: none;
  padding: 10px 15px 15px 15px;
  margin-bottom: 10px;
}

.bookmark-list .like-list-item {
  justify-content: center;
  padding: 8px 0;
}

.bookmark-list .like-list-item a {
  width: 100%;
  font-size: 1.2em;
  color: #787878;
  display: flex;
  align-items: center;
}

.bookmark-list .like-list-item img {
  vertical-align: middle;
  margin-right: 5px;
  width: 17px;
  height: 17px;
}

.bookmark-list .like-list-item strong {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

#likeForm .like-list .like-list-item {
  margin-bottom: 15px;
}

#likeForm .like-list .like-list-item label {
  display: flex;
  align-items: center;
}

#likeForm .like-list .like-list-item strong {
  vertical-align: middle;
  cursor: pointer;
  font-size: 1.2em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding-left: 5px;
}

#likeForm .like-list .like-list-item span {
  cursor: pointer;
}

#likeForm .error, #likeModifyForm .error {
  color: #e90329;
  font-size: 0.8em;
  display: none;
}


.btn_new, .btn_add, .btn_mod {
  padding: 10px;
  background-color: #00b1b4;
  color: #fff;
  font-size: 1.0em;
  border: 1px solid #71b8b9;
  outline: none;
  cursor: pointer;
}

.ts-fixed-center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 99999;
}

.ts-animation-heart {
  width: 128px;
  height: 128px;
  display: inline-block;
  background: url("/img/like/img_bookmark_effect.png")
  no-repeat;
  background-size: 128px 128px;
  transform: scale(0.1);
  opacity: 0;
  display: none;
}

.ts-animation-heart.switch-on {
  display: block;
  animation: updown-effect 0.7s ease-out forwards;
  -webkit-animation: updown-effect 0.7s ease-out forwards;
}

@keyframes click-wave {
  0% {
    height: 40px;
    width: 40px;
    opacity: 0.35;
    position: relative;
  }
  100% {
    height: 200px;
    width: 200px;
    margin-left: -80px;
    margin-top: -80px;
    opacity: 0;
  }
}
