@charset "UTF-8";

@import url("/rw_css/vars.css");
@import url("/rw_css/fonts.css");

.rw_fix {
    position: fixed;
    top: 125px;
    right: 0;
    width: 80px;
    z-index: 999999;
    background: #292929;
    color: var(--color-white);
    text-align: center;
    letter-spacing: 0;
    box-sizing: border-box;
    font-family: 'Pretendard';

    li{
        width: 100%;
        height: 120px;
        border-bottom: 1px solid var(--alpha-white-30);
        font-weight: var(--font-weight-bold);
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;

        a{
            display: block;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        &.top_btn{
            height: 44px;
            margin: 0;  
            letter-spacing: 1px;
            cursor: pointer;

            p{
                position: relative;

                &::before{
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 20px;
                    height: 20px;
                }
            }
        }

        figcaption{
            margin-top: 10px;

            span{
                font-size: 20px;
                line-height: 0.7;
                display: inline-block;
            }
        }

        p{
            line-height: 1.2;
            font-size: 14px;
        }
    }
}

.fixed-nav {
    position: fixed;
    /* 202504041915 정세영 수정 */
    bottom: 70px;
    /* 202504041914 정세영 수정 */
    right: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 300;
  
    .fixed-nav-button-area {
      display: flex;
      flex-direction: column;
      row-gap: 1rem;
      position: relative;
    }
  
    .fixed-nav-button {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 4.8rem;
      height: 4.8rem;
      border-radius: 50%;
      background: var(--alpha-black-30);
      color: var(--color-white);
      line-height: 0;
      transition: all 0.3s;

      img{
        transition: all 0.3s;
        position: absolute;
        top: 50%; transform: translateY(-50%);
        right: 13px; 
        width: 26px;
        height: 26px;

        &.naver_hover {
            opacity: 0;
        }

        &.naver_wh {
            opacity: 1;
        }
      }  
      
      &.text {
        width: auto;
        height: 40px;
        padding: 0px 45px 0px 15px;
        border-radius: 9999px;
        font-size: 14px;
        font-weight: var(--font-weight-bold);
      }
  
      @media (hover: hover) and (pointer: fine) {
        &:hover {
          background: var(--color-white);
          color: var(--color-black);

          .naver_wh {
            opacity: 0;
          }

          .naver_hover {
            opacity: 1;
          }
        }
      }
    }
}





