/**
 * Fixed Buttons
 */

.kite-fixed-btns-wrapper {
    height: 0;
    position: sticky;
    bottom: 0;
    z-index: 999;
}

.kite-fixed-btns {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
}

.kite-fixed-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 173px;
    height: 60px;
    background: var(--kite-green);
    color: var(--kite-white);
    font-size: 18px;
    /* font-weight: 500; */
    font-weight: 400;
    /* letter-spacing: 20px; */
    text-decoration: none;
    text-align: center;
    letter-spacing: 2px;
    border-radius: 2px 0 0 2px;
    transition: opacity 0.3s;
}

.kite-fixed-btn:hover {
    opacity: 0.85;
}

.kite-fixed-btn--room {
    margin-bottom: 5px;
}

/* English version */
.kite-fixed-btns--en .kite-fixed-btn {
    flex-direction: column;
    line-height: 1.2;
}

.kite-fixed-btn__main {
    font-size: 18px;
}

.kite-fixed-btn__sub {
    font-size: 14px;
}

@media (max-width: 767px) {
    .kite-fixed-btns {
        bottom: 0;
    }
    .kite-fixed-btn {
        width: 104px;
        height: 36px;
        font-size: 10px;
        flex-direction: column;
        line-height: 1.4;
    }

    /* English SP */
    .kite-fixed-btns--en .kite-fixed-btn__main {
        font-size: 10px;
    }
    .kite-fixed-btns--en .kite-fixed-btn__sub {
        font-size: 8px;
    }
}
