@charset "utf-8";
/* -----------------중고거래 ------------------*/
.benefit_event_wrap{
}
.jungo_review_wrap{
    /* width:90%; */
    margin:0 auto;
}
.jungo_review_wrap .tab_btn2{
    overflow-x: scroll;
    margin-bottom: 23px;
}
.jungo_review_wrap .tab_btn2 ul{
    display: flex;
    gap:12px;
    white-space: nowrap;
}
.jungo_review_wrap .tab_btn2 ul li{
    color:#dcdcdc;
    font-size: 16px;
    font-weight: 700;
    padding:3px 0;
}
.jungo_review_wrap .tab_btn2 ul li.on{
    color:#1D1D1D;
    border-bottom: 3px solid #FF8787;
}
.jungo_review_wrap .tab_cont2 ul li{
    display: none;
}
.jungo_review_wrap .tab_cont2 ul li.on{
    display: block;
}
.jungo_review_wrap .flex_wrap{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.jungo_review_wrap .tab_cont2 .title{
    font-weight: 700;
    font-size: 14px;
    margin:6px 0px 3px 0;
    white-space: nowrap;
    overflow: hidden;
    width:80%;
    text-overflow: ellipsis;
}
.jungo_review_wrap .tab_cont2 .good{
    margin-left:auto;
}
.jungo_review_wrap .tab_cont2 .info{
    color:#dcdcdc;
    font-size: 12px;
    margin-top:5px;
}
.jungo_review_wrap .tab_cont2 .jungo_img_wrap{
    position: relative;
    min-width: 80px;
    max-width: 80px;
    background-color: #E3E3E3;
    border-radius: 10px;
    overflow: hidden;
    border:1px solid #dcdcdc;
}
.jungo_review_wrap .tab_cont2 .jungo_img_wrap:after{
    content: "";
    display: block;
    padding-bottom: 100%;
}
.jungo_review_wrap .tab_cont2 .jungo_img_wrap img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.jungo_review_wrap .good_count{
    margin-right:10px;
    margin-left:4px;
}

.jungo_review_wrap .view_count{
    margin-left:4px;
}
.jungo_review_wrap .flex_wrap img{
    width:10px;
    display: block;
}
.review_count{
    font-size: 12px;
    color:#aaaaaa;
}
.jungo_review_wrap .tab_cont2 .jungo_cont{
    display: flex;
    gap:15px;
    margin-bottom: 15px;
    position: relative;
}
.jungo_review_wrap .good{
    width:30px;
    position: absolute;
    right:5%;
    top:10%;
}

.con-like {
    --red: #FF5D5D;
    position: relative;
    width: 20px;
    height: 20px;
  }
  
  .con-like .like {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 20;
    cursor: pointer;
  }
  
  .con-like .checkmark {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .con-like .outline{
    fill: #A7A7A7;
    position: absolute;
  }
  .con-like .filled {
    fill: #FF5D5D;
    position: absolute;
  }
  
  .con-like .filled {
    animation: kfr-filled 0.5s;
    display: none;
  }
  
  .con-like .celebrate {
    position: absolute;
    animation: kfr-celebrate 0.5s;
    animation-fill-mode: forwards;
    display: none;
  }
  
  .con-like .poly {
    stroke: #A7A7A7;
    fill: #FF5D5D;
  }
  
  .con-like .like:checked ~ .checkmark .filled {
    display: block
  }
  
  .con-like .like:checked ~ .checkmark .celebrate {
    display: block
  }
  
  @keyframes kfr-filled {
    0% {
      opacity: 0;
      transform: scale(0);
    }
  
    50% {
      opacity: 1;
      transform: scale(1.2);
    }
  }
  
  @keyframes kfr-celebrate {
    0% {
      transform: scale(0);
    }
  
    50% {
      opacity: 0.8;
    }
  
    100% {
      transform: scale(1.2);
      opacity: 0;
      display: none;
    }
  }
/* -----------------중고거래 ------------------*/

/*북마크로 변경*/

.ui-bookmark {
  --icon-size: 24px;
  --icon-secondary-color: rgb(230, 230, 230);
  --icon-hover-color: rgb(230, 230, 230);
  --icon-primary-color: #32d1d4;
  --icon-circle-border: 1px solid var(--icon-primary-color);
  --icon-circle-size: 35px;
  --icon-anmt-duration: 0.3s;
}

.ui-bookmark input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}

.ui-bookmark .bookmark {
  width: var(--icon-size);
  height: auto;
  fill: var(--icon-secondary-color);
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}

.bookmark::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  -webkit-box-shadow: 0 30px 0 -4px var(--icon-primary-color),
    30px 0 0 -4px var(--icon-primary-color),
    0 -30px 0 -4px var(--icon-primary-color),
    -30px 0 0 -4px var(--icon-primary-color),
    -22px 22px 0 -4px var(--icon-primary-color),
    -22px -22px 0 -4px var(--icon-primary-color),
    22px -22px 0 -4px var(--icon-primary-color),
    22px 22px 0 -4px var(--icon-primary-color);
  box-shadow: 0 30px 0 -4px var(--icon-primary-color),
    30px 0 0 -4px var(--icon-primary-color),
    0 -30px 0 -4px var(--icon-primary-color),
    -30px 0 0 -4px var(--icon-primary-color),
    -22px 22px 0 -4px var(--icon-primary-color),
    -22px -22px 0 -4px var(--icon-primary-color),
    22px -22px 0 -4px var(--icon-primary-color),
    22px 22px 0 -4px var(--icon-primary-color);
  border-radius: 50%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.bookmark::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: var(--icon-circle-border);
  opacity: 0;
}

/* actions */

.ui-bookmark:hover .bookmark {
  fill: var(--icon-hover-color);
}

.ui-bookmark input:checked + .bookmark::after {
  -webkit-animation: circles var(--icon-anmt-duration)
    cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation: circles var(--icon-anmt-duration)
    cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  -webkit-animation-delay: var(--icon-anmt-duration);
  animation-delay: var(--icon-anmt-duration);
}

.ui-bookmark input:checked + .bookmark {
  fill: var(--icon-primary-color);
  -webkit-animation: bookmark var(--icon-anmt-duration) forwards;
  animation: bookmark var(--icon-anmt-duration) forwards;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.ui-bookmark input:checked + .bookmark::before {
  -webkit-animation: circle var(--icon-anmt-duration)
    cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation: circle var(--icon-anmt-duration)
    cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  -webkit-animation-delay: var(--icon-anmt-duration);
  animation-delay: var(--icon-anmt-duration);
}

@-webkit-keyframes bookmark {
  50% {
    -webkit-transform: scaleY(0.6);
    transform: scaleY(0.6);
  }

  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

@keyframes bookmark {
  50% {
    -webkit-transform: scaleY(0.6);
    transform: scaleY(0.6);
  }

  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

@-webkit-keyframes circle {
  from {
    width: 0;
    height: 0;
    opacity: 0;
  }

  90% {
    width: var(--icon-circle-size);
    height: var(--icon-circle-size);
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes circle {
  from {
    width: 0;
    height: 0;
    opacity: 0;
  }

  90% {
    width: var(--icon-circle-size);
    height: var(--icon-circle-size);
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes circles {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    opacity: 1;
  }

  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
  }
}

@keyframes circles {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    opacity: 1;
  }

  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
  }
}