.wcc-container {
    width: 340px;
    min-height: 500px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: none;
    position: fixed;
    bottom: 13vh;
    left: 3vw;
    z-index: 9999999;
}

.wcc-header {
    background: #128C7E;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;  
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 60px;
}
.wcc-close-chat{
    color: white;
    position: absolute;
    right: 6%;
    top: 14px;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    font-weight: 700;
}
.wcc-title {
    color: white;
    font-size: 17px;
    padding: 15px 0 20px 0 !important;
    margin: 0;
    text-align: center;
    font-weight: 550;
}
.wcc-profile{
    height: 35px;
    width: 35px;
    margin: 0 10px 0 15px;
}
.wcc-profile svg{
    max-width: 100%;
}

.wcc-body {
    box-shadow: inset 0 8px 15px -5px rgba(20, 20, 20, .25);
    font-weight: 400;
    padding: 10px 15px;
}

.wcc-msg {
    background: #fefefe;
    display: inline-block;
    margin: 10px;
    padding: 20px 25px;
    border-radius: 10px;
    position: relative;
    box-shadow: -2px 3px 5px 0px rgba(20, 20, 20, .3);
}

.wcc-msg:before {
    content: "";
    width: 0;
    height: 0;
    border-right: solid #fefefe 18px;
    border-bottom: solid transparent 30px;
    position: absolute;
    left: -7px;
    top: 0;
}

.wcc-msg-container {
    padding: 20px 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

#wcc-form {
    margin: 0;
    display: flex;
}

#wcc-form-msg {
    border-radius: 10px;
    padding: 10px 15px;
    margin-left: 10px;
    font-size: 16px;
    background: #fefefe;
    border: none;
    position: relative;
    width: 80%;
    min-height: 30px;
    box-shadow: -2px 3px 4px 0px rgba(20, 20, 20, .3);
    display: inline-block;
}

#wcc-form-msg:before {
    content: "";
    width: 0;
    height: 0;
    border-right: solid #fefefe 18px;
    border-bottom: solid transparent 30px;
    position: absolute;
    left: -7px;
    top: 0;
}

#wcc-form-msg textarea {
    border: none;
    height: 100%;
    width: 100%;
    font-size: 16px;
    background: transparent;
    resize: none;

}

#wcc-form-msg textarea:focus{
    outline: 0;
}

.wcc-btn-send-container {
    display: inline-block;
    width: 15%;
    vertical-align: middle;
}

#wcc-btn-send {
    background: #128C7E;
    border: none;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0px 0px 6px 1px rgba(20, 20, 20, .3);
    transition: all .5s, box-shadow .7s;
}

#wcc-btn-send:hover {
    transform: scale(.95);
    box-shadow: none;
}

#wcc-btn-send svg {
    fill: #ffffff;
    margin-left: 3px;
}

/*Floating button*/
.float-button {
    background: none;
    border: none;
    transition: all .5s;
    position: fixed;
    bottom: 3vh;
    left: 3vw;
    z-index: 5;   
}

@keyframes shadow-pulse
{
     0% {
          box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
     }
     100% {
          box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
     }
}


.float-button svg {
    cursor: pointer;
    border-radius: 50% 50% 50% 0;
    transition: all .5s;
    animation: shadow-pulse 1s infinite;
}

.float-button img {
    max-width: 300px;
    height: auto;
    transition: all .5s;
}

.float-button span {
    font-size:12px;
    text-transform:uppercase;
    color:#fff;
    background:#55CD6C;
    padding:5px;
    border-radius:5px;
    margin-bottom:5px;
}

#wcc-btn-send{
    line-height: 0;
}

.float-button:hover svg, .float-button:hover img {
    transform: scale(.95);
    box-shadow: none;    
}
.float-button:hover, .float-button:active, .float-button:focus{
    background: transparent;
    outline: 0;
}

.wcc-msg{
    display: none;
}

.chat-mobile{
    display: block!important;
}

@media (max-width: 442px){    
    .wcc-container{
        width: 90vw;
        min-height: auto;
        height: 70vh;
        bottom: 90px;
    }
    .wcc-btn-send-container{
        width: 15%;
    }
    .float-button{
        bottom: 10px;
    }
    .float-button span {
        font-size:10px !important;
    }

    .float-button svg{
        width: 40px;
        height: auto;
    }

    .float-button img {
        max-width: 100px;
    }
    
}
