/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 20 2026 | 13:47:44 */
.ct-back-to-top {
	display: none !important;
}

.floating-group {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.4s, opacity 0.3s;
    z-index: 98;
}

.flBtn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 26px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
    text-decoration: none;
}

.flBtn:hover {
    transform: translateY(-3px);
}

.flBtn.kakao {
    color: #391c1d;
    font-size: 36px;
    background-color: #f2da00;
}

.flBtn.topBtn {
    color: #fff;
    font-size: 24px;
    background-color: var(--main-color);
}



/*==================================================*/
@media (max-width: 550px) {
    .floating-group {
        bottom: 30px;
        right: 30px;
    }

    .flBtn {
        width: 50px;
        height: 50px;
        border-radius: 20px;
    }

    .flBtn.kakao {
        font-size: 32px;
    }

    .flBtn.topBtn {
        display: none !important;
    }
}