.fab-chat-wrapper {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.fab-chat-wrapper .chat-frame {
    position: fixed;
    right: 1rem;
    bottom: 90px;
    height: 83vh;
    max-height: 666px;
    width: 90%;
    max-width: 420px;
    border: 1px solid #c5c5c5;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 2px 5px 7px #5e59597d;
    overflow: hidden;
    transform: scale(0);
    transform-origin: bottom right;
    transition: .3s ease all;
}

.fab-chat-wrapper .chat-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.fab-chat-wrapper .chat-button {
    width: 64px;
    height: 64px;
    border-radius: 64px;
    border: none;
    background: #111010;
    box-shadow: 2px 5px 7px #5e5959;
}

.fab-chat-wrapper .chat-button .chat-icon {
    width: 42px;
    height: 42px;
}

.fab-chat-wrapper .chat-button .chat-icon.close {
    display: none;
}

.fab-chat-wrapper.opened .chat-frame {
    transform: scale(1);
    transform-origin: bottom right;
    transition: .3s ease all;
}

.fab-chat-wrapper.opened .chat-button {
    box-shadow: none;
}

.fab-chat-wrapper.opened .chat-button .chat-icon {
    display: none;
}

.fab-chat-wrapper.opened .chat-button .chat-icon.close {
    display: block;
    margin: 0 auto;
    padding: 18px 0 0;
}

.fab-chat-wrapper.opened .chat-button .chat-icon.close #closeSvg {
    fill: #fff;
}

.fab-chat-wrapper .chat-frame .chat-frame-header {
    display: none;
    height: 35px;
    background: #111010;
    text-align: right;
}

.chat-frame-header button {
    height: 35px;
    padding: 0 1rem;
    color: #fff;
    background: transparent;
    border: none;
}

.fab-chat-wrapper.opened .chat-frame-header {
    display: block;
    position: absolute;
    right: 0;
    width: 55px;
    height: 44px;
    border-bottom-left-radius: 15px;
}

@media (max-width: 576px) {
    .fab-chat-wrapper.opened {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

    .fab-chat-wrapper.opened .chat-frame {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .fab-chat-wrapper.opened .chat-button {
        display: none;
    }
}
