#chat{
    color: #333;
}

#chat-prompt, #chat-open, #chat-close{
    position: fixed;
    right: 30px;
}

#chat-prompt, #chat-open{
    width: 350px;
}

#chat-prompt{
    bottom: 100px;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #ddd;
}

#chat-prompt > p:first-child{
    font-size: 16px;
    font-weight: bold;
}

#chat-prompt > p:first-child > span{
    display: inline-block;
}

#chat-prompt > p:first-child > span.icofont{
    cursor: pointer;
    margin-top: 3px;
    font-size: 18px;
}

#chat-prompt > p:last-of-type{
    font-size: 13px;
    margin: 15px 0px;
}

#chat-prompt > button{
    font-size: 14px;
    padding: 7px;
    background-color: #25D366;
    color: #fff;
    outline: none;
    border: none;
}

#chat-prompt > button:hover{
    opacity: .9;
}

#chat-open{
    bottom: 100px;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
}

#chat-head{
    margin: -20px -20px 20px -20px;
    border-radius: 8px 8px 0px 0px;
    background-color: #25D366;
    color: #fff;
    padding: 20px 20px 20px 20px;
}

#chat-body > p{
    margin-bottom: 20px;
}

#chat-body > p > span{
    display: inline-block;
    background-color: #25D366;
    color: #fff;
}

#chat-body > p > span:first-child{
    border-radius: 50%;
    padding: 8px 5px;
    margin-right: 10px;
    vertical-align: top;
}

#chat-body > p > span:last-child{
    border-radius: 4px;
    padding: 7px 10px;
    width: 250px;
}

#chat-text{
    margin-top: 50px;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    padding: 10px;
}

#chat-text > span{
    display: table-cell;
}

#chat-text > span:first-child{
    width: 270px;
    outline: none;
    word-break: break-all;
}

#chat-text > span:last-child{
    font-size: 30px;
    vertical-align: middle;
    text-align: right;
    cursor: pointer;
    padding-left: 10px;
    color: #25D366;
}

#chat-close{
    bottom: 30px;
    background-color: #fff;
    padding: 10px 10px 5px 10px;
    border-radius: 50%;
    color: #25D366;
    cursor: pointer;
}

#chat-close > span{
    font-size: 35px;
}

#announcement-wrapper{
    position: fixed;
    bottom: 0px;
    width: 100%;
    background-color: #4980ff;
    color: #fff;
    text-align: center;
    padding: 20px 100px;
    z-index: 1;
    display: none;
}

.overlay-body{
    position: absolute;
    z-index: 1000;
    background-color: #000;
    opacity: .7;
    top: 0px;
    width: 100%;
    height: 100%;
}

.copy-to-clipboard{
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 1000;
}

.copy-to-clipboard > p{
    padding: 20px;
    border-radius: 8px;
    background-color: #000;
    color: #fff;
    width: 100px;
    height: 100px;
    margin: 250px auto;
    text-align: center;
}

.copy-to-clipboard > p > span{
    display: block;
}

.copy-to-clipboard > p > span:first-child{
    font-size: 25px;
    margin-bottom: 10px;
}

.copy-to-clipboard > p > span:last-child{
    font-size: 16px;
}

@media (min-width: 250px){
    
}

@media (min-width: 768px){
    
}

@media (min-width: 992px){
    
}

@media (min-width: 1200px){
    
}

@media (max-width: 767px){
    #chat-prompt, #chat-open{
        width: 300px;
    }
    
    #chat-body > p > span:last-child{
        width: 200px;
    }
    
    #announcement-wrapper{
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 991px){
    
}