.quick_banner {
    right:-100px;
}
.kakao_quick {
    position: fixed;
    right: 10px;
    bottom: 30px;
    width: 100px;
    height: 100px;
}

.kakao_quick a {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ffe206;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 5px;
    box-shadow: 0px 0px 5px #33333361;
    overflow: hidden
}

.kakao_quick a img {
    width: 40px;
}

.kakao_quick a p {
    line-height: 1.2;
    font-weight: 600;
    width: 100%;
}
.quickslide_btn {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    border-radius:10px 0 0 10px;
    left:-30px;
    width:30px;
    height:85px;
    background-color:#fff;
    color:#174d8c;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
    box-shadow:-2px 0px 5px #4b4b4b29;
    cursor:pointer;
}

@media screen and (max-width:1280px) {
    .kakao_quick {
        position: fixed;
        right: 10px;
        bottom: 30px;
        width: 50px;
        height: 50px;
    }

    .kakao_quick a {
        border-radius: 50%;
    }

    .kakao_quick a img {
        width: 30px;
    }

    .kakao_quick a p {
        display: none;
    }
}