/********* OPENED *********/
.sqwonchat-container {
    position: fixed;
    bottom: 0;

    width: 370px;
    height: 100%;
    max-height: 590px;

    left: calc(100% - 420px);
    visibility: visible;
    background: none;
    opacity: 1;
    display: inherit;
    z-index: 20000;
}

.sqwonchat-container iframe {
    border: none;
    width: 100%;
    height: 100%
}

.sqwonchat-container iframe .sc-chat-window {
    right: auto !important
}

.sqwonchat-container iframe .sc-launcher {
    right: 0 !important
}


/********* CLOSED *********/
.sqwonchat-container.closed {
    left: calc(100% - 200px);
    bottom: 0;

    width: 150px;
    height: 50px;
}


/********* < 768 *********/
@media only screen and (max-width: 768px) {
    .sqwonchat-container.closed {
        transform: rotate(-90deg);
        transform-origin: top;
        top: calc(100% - 120px);
        left: calc(100% - 120px);
    }

    .sqwonchat-container {
        width: 320px;
        height: 100%;
        max-height: 100%;
        bottom: 0;
        left: calc(100% - 320px);
    }
}