﻿.floating-block {
    position: fixed;
    bottom: 16px;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    z-index: 200;
    right: 32px;
    row-gap: 10px;
}

.go-to-top {
    visibility: hidden;
    width: 60px;
    height: 60px;
    z-index: 190;
    opacity: 0;
    background: rgba(99, 100, 102, .6);
    border-radius: 100px;
    cursor: pointer;
    -webkit-transition: all .3s ease;
}

    .go-to-top.active {
        visibility: initial;
        opacity: 1;
    }

.go-to-top-icon {
    width: 60px;
    height: 60px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

svg {
    outline: none;
}

.floating-wrapper {
    display: block;
    z-index: 200;
    position: relative;
}

#kakao-talk-channel-chat-button:hover {
    opacity: 0.9;
}
