.fixed{
    position: fixed;
    right: 2vw;
    bottom: 2vw;
    z-index: 999;
}

.fixed ul{
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 10px 0;
}

.fixed ul li{
    width: 60px;
    height: 60px;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
}

.fixed ul li.download{
    background-color: #0097d9;
    position: relative;
    transition: width .5s;
}

.fixed ul li.buy{
    background-color: #0066b2;
    position: relative;
    transition: width .5s;
}

.fixed ul li.download img, .fixed ul li.buy img{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 18px;
}

.fixed ul li.download p, .fixed ul li.buy p{
    width: max-content;
    font-size: 18px;
    color: #fff;
    font-family: 'Pretendard-SemiBold', sans-serif;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
}

.fixed ul li.download:hover{
    width: 155px;
}
.fixed ul li.buy:hover{
    width: 170px;
}

.fixed ul li.download:hover p, .fixed ul li.buy:hover p{
    opacity: 1;
    visibility: visible;
}

.fixed ul li.top{
    background-color: #013a73;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 16px;
    color: #fff;
    font-family: 'Pretendard-Medium', sans-serif;
}

.fixed ul li.top i{
    font-size: 14px;
    color: #fff;
}


































/* mobile */
@media screen and (max-width: 767px){

    /*.fixed{*/
    /*    right: 20px;*/
    /*    bottom: 30px;*/
    /*}*/
    
    .fixed ul{
        gap: 10px 0;
    }
    
    .fixed ul li{
        width: 40px;
        height: 40px;
        cursor: inherit;
    }
    
    .fixed ul li.download img, .fixed ul li.buy img{
        width: 20px;
        right: 10px;
    }
    
    .fixed ul li.download p, .fixed ul li.buy p{
        display: none;
    }
    
    .fixed ul li.download:hover, .fixed ul li.buy:hover{
        width: 40px;
    }

    .fixed ul li.top{
        font-size: 12px;
    }
    
    .fixed ul li.top i{
        font-size: 10px;
    }

}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

    /*.fixed{*/
    /*    right: 20px;*/
    /*    bottom: 50px;*/
    /*}*/
    
    .fixed ul{
        gap: 10px 0;
    }
    
    .fixed ul li{
        width: 40px;
        height: 40px;
        cursor: inherit;
    }
    
    .fixed ul li.download img, .fixed ul li.buy img{
        width: 20px;
        right: 10px;
    }
    
    .fixed ul li.download p, .fixed ul li.buy p{
        display: none;
    }
    
    .fixed ul li.download:hover, .fixed ul li.buy:hover{
        width: 40px;
    }

    .fixed ul li.top{
        font-size: 12px;
    }
    
    .fixed ul li.top i{
        font-size: 10px;
    }

}





















/* pc */
@media screen and (min-width: 1025px) and (max-width: 1400px){

    /*.fixed{*/
    /*    right: 30px;*/
    /*    bottom: 150px;*/
    /*}*/

    .fixed ul li{
        width: 50px;
        height: 50px;
    }
    
    .fixed ul li.inquiry img{
        width: 20px;
        right: 15px;
    }
    
    .fixed ul li.inquiry p{
        font-size: 16px;
    }
    
    .fixed ul li.inquiry:hover{
        width: 130px;
    }

    .fixed ul li.top{
        font-size: 14px;
    }
    
    .fixed ul li.top i{
        font-size: 12px;
    }

}