@import url(https://fonts.googleapis.com/css?family=Roboto:300,400);
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css);
.wl-chatbot-container {
    z-index: 9999;
    position: fixed;
    display: inline-block;
}

.right-bottom {
    bottom: 1em;
    right: 1em;
    float: right !important;
}

.left-bottom {
    bottom: 1em;
    left: 1em;
    float: left !important;
}

.wl-sofi-panel {
    width: calc(100vw - 40px);
    max-width: 400px;
    margin-bottom: 3%;
    /*margin-left: 3%;*/
    background-color: #757575;
    color: white;
    border: 2px solid #eee;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    border-radius: 5px;
    display: none;
    height: 80vh;
    max-height: 700px;
}

@media (max-width: 450px) {
    .wl-sofi-panel {
        max-width: 450px;
        position: fixed;
        height: 100vh;
        max-height: 100vh;
        height: -webkit-fill-available;
        width: 100vw;
        margin-bottom: 0 !important;
        border-radius: 0 !important;
        box-shadow: none;
        margin: 0;
        padding: 0;
        top: 0;
        left: 0;
    }
}

div.wl-sofi-panel {
    font-family: Roboto;
    font-size: 15px;
}

.wl-panel-contents {
    padding: 15px;
}

.wl-chat-button {
    font-size: 24px;
    color: #ffffff;
    font-size: 24px;
    text-align: center;
    line-height: 60px;
    cursor: pointer;
    height: 100%;
    width: 100%;
    display: table;
    background-size: 65px 65px;
}

.wl-sofi-iframe {
    overflow: hidden;
    height: 100%;
    width: 100%;
    background-color: transparent !important;
    border: 0px !important;
    padding: 0px !important;
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
    -webkit-border-top-left-radius: 15px;
    -moz-border-top-left-radius: 15px;
}

.wl-sofi-iframe>html>body {
    background-color: transparent !important;
}

.wl-chat-button-container {
    width: 62px;
    height: 58px;
    border-radius: 100%;
}

.rotate-forward {
    animation-name: rotateF;
    animation-duration: 0.65s;
    animation-iteration-count: 1;
}

@keyframes rotateF {
    from {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

.rotate-backward {
    animation-name: rotateB;
    animation-duration: 0.65s;
    animation-iteration-count: 1;
}

@keyframes rotateB {
    from {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
}

.wl-chatbot-container {
    border-radius: 20px;
    overflow: hidden;
}

.wl-sofi-panel {
    border-radius: 20px;
    overflow: hidden;
    border: 0px solid #eee;
}

@media screen and ( max-width: 450) {
    .wl-sofi-panel {
        width: 100% !important;
        height: 100% !important;
    }
}

@media screen and (min-width: 451px) {
    .wl-sofi-panel {
        width: 400px !important;
    }
}

.wl-chat-button {
    /* background-image: url('../images/chatbot_default.svg'); */
    background-repeat: no-repeat;
}

.wl-chat-button:hover {
    /* background-image: url('../images/chatbot_hover.svg'); */
    background-repeat: no-repeat;
}

.popup {
    display: none;
}

.wl-chat-button-info {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    position: sticky;
    width: 233px;
    height: 51px;
    left: -243px;
    top: 4px;
    background: #FFFFFF;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
}

.popup-close-icon {
    background: #333C59;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    position: relative;
    left: 15px;
    z-index: 999;
    cursor: pointer;
}

.popup-close-icon img {
    top: 5px;
    left: 5px;
    position: relative;
}

.cross-btn-icon {
    position: absolute;
    top: 5px;
    width: calc(100% - 5px);
}

.cross-btn-icon>div {
    background-image: url('../images/ic_close.svg');
    background-repeat: no-repeat;
}

#inner-cross-btn {
    width: 15px;
    height: 15px;
    float: right;
    position: relative;
    margin-right: 15px;
    margin-top: 15px;
    cursor: pointer;
}

