
html,body{
    font-family: 'Montserrat',sans-serif !important;
}

#chat-button{
    position: fixed;
    right: 5px;
    bottom: 0;
    background-color: #a00202;
    border-style: solid;
    border-color: #a00202;
    border-top-width: 2px;
    border-right-width: 2px;
    border-left-width: 2px;
    border-top-width: 2px;
    border-bottom-width: 0;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
}

#chat-button:hover{
    background-color: #E30202;
    border-color: #E30202;
}

#chat-button span{
    color: #fff;
    font-size: 16px;
    padding: 9px 10px 5px 10px;
    display: inline-block;
}

#chat-modal{
    position: fixed;
    right: 5px;
    bottom: 0;
    width: 357px;
    border: solid #BDBDBD 1px;
    border-radius: 21px 21px 0 0;
    border-bottom-width: 0;
    background-color: #fff;
    z-index: 999;
    -webkit-box-shadow: 0px 0px 7px 1px rgba(0,0,0,0.21);
    -moz-box-shadow: 0px 0px 7px 1px rgba(0,0,0,0.21);
    box-shadow: 0px 0px 7px 1px rgba(0,0,0,0.21);
}

#chat-modal .top-bar{
    padding: 10px;
    border-bottom: solid #BDBDBD 1px;
    color: #BDBDBD;
}

#chat-modal .top-bar span{
    cursor: pointer;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}

#chat-modal .top-bar .close-btn{
    margin-right: 5px;
}

#chat-modal .top-bar:after{
    content: " ";
    display: block;
    clear: both;
}

#chat-modal .chat-content{
    width: 100%;
    height: 500px;
    overflow: auto;
    -webkit-overflow-scrolling:touch;
}

#chat-modal .chat-content iframe{
    width: 100%;
    height: 100%;
    
    width: 1px;
    min-width: 100%;
    *width: 100%;
}


@media (max-width:768px){
    #chat-modal{
        width: calc(100% - 20px);
        margin: 0 auto;
        height: calc(100% - 20px);
        margin-top: 10px;
        top: 0;
        left: 0;
        border-radius: 3px;
        border-bottom-width: 1px;
    }
}
