.logo-syrus-admin-bar {
    width: 20px !important;
    height: 20px !important;
    margin-right: 5px !important;
}

article iframe {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

#syrus-chat-container button.chat-toggle {
    width: 50px;
    position: fixed;
    right: 1em;
    bottom: 80px;
    border-radius: 50%;
    height: 50px;
    border: none;
    background-color: white;
    box-shadow: 1px 1px 10px rgba(0,0,0, .2);
    transition: all .3s;
    border: 1px solid white;
    z-index: 9999 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

#syrus-chat-container button.chat-toggle > i.bi{
    font-size: 23px;
    color: #25d366;
}

#syrus-chat-container button.chat-toggle:hover {
    border-color:#25d366;
    box-shadow: 1px 1px 10px rgba(0,0,0, .3);
}

#syrus-chat-container .chat-container {
    z-index: 9999 !important;
    position: fixed;
    right: 1em;
    bottom: 140px;
    width: 400px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 1px 1px 10px rgba(0,0,0, .3);
    border: 1px solid rgba(0,0,0, .2);
}

#syrus-chat-container .chat-container .chat-header {
    height: 25%;
    background-color: #095e54;
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

#syrus-chat-container .chat-container .chat-header .profile-picture-container {
    height: 100%;
    aspect-ratio: 1;
    position: relative;
}

#syrus-chat-container .chat-container .chat-header .profile-picture-container::after {
    content: "";
    position: absolute;
    background-color: lime;
    width: 15px;
    height: 15px;
    bottom: 1%;
    right: 1%;
    border-radius: 100%;
    border: 2px solid #095e54;
}

#syrus-chat-container .chat-container .chat-header .profile-picture-container > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 100%;
}

#syrus-chat-container .chat-container .chat-header .sender-container { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

#syrus-chat-container .chat-container .chat-header .sender-container .name {
    color: white;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
}

#syrus-chat-container .chat-container .chat-header .sender-container .status {
    margin: 0;
    color: #fbfbfb;
    font-style: italic;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .5px;
}

#syrus-chat-container .chat-container .chat-header .close-button {
    position: absolute;
    right: 10px;
    top: 10px;
}

#syrus-chat-container .chat-container .chat-header .close-button > i.bi{
    color: #bdbdbd;
    font-size: 25px;
    cursor: pointer;
}

#syrus-chat-container .chat-container .chat-body {
    height: 60%;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: 100%;
    box-shadow: inset 1px 1px 10px rgba(0,0,0, .1);
    position: relative;
    padding: 20px;
}

#syrus-chat-container .chat-container .chat-body .message-container {
    width: 85%;
    height: auto;
    background-color: white;
    position: relative;
    border-radius: 0px 10px 10px 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

#syrus-chat-container .chat-container .chat-body .message-container::before {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC);
    background-size: 100%;
    left: -10px;
    background-repeat: no-repeat;
    top: 0;
}

#syrus-chat-container .chat-container .chat-body .message-container .name {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 800;
    color: #848484;
}

#syrus-chat-container .chat-container .chat-body .message-container .content {
    font-size: 14px !important;
    margin: 0;
}

#syrus-chat-container .chat-container .chat-body .message-container .time {
    margin-bottom: 0;
    margin-top: 15px;
    font-size: 12px;
    text-align: right;
    width: 100%;
    color: #848484;
}

#syrus-chat-container .chat-container .chat-body .message-container.loading-container {
    position: absolute;
    width: 20%;
    height: 50px;
}

#syrus-chat-container .chat-container .chat-body .message-container.loading-container > img {
    width: 50px;
    top: -10px;
    position: relative;
}
    
#syrus-chat-container .chat-container .chat-footer {
    height: 15%;
    background-color: white;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#syrus-chat-container .chat-container .chat-footer a {
    text-decoration: none;
    text-align: center;
    display: block;
    width: 90%;
    position: relative;
    padding: 5px 25px;
    border-radius: 15px;
    border: none;
    background-color: #25d366;
    color: white;
    font-weight: 700;
}

@media only screen and (max-width: 670px) {

    #syrus-chat-container button.chat-toggle::after {
        content: "WhatsApp";
        color: #25d366;
        font-weight: 600;
    }

    #syrus-chat-container button.chat-toggle {
        right: 0;
        left: 0;
        margin-left: auto;
        margin-right: auto;
        bottom: 1em;
        width: auto;
        border-radius: 50px;
        padding: 5px 25px;
        gap: 10px;
    }

    #syrus-chat-container .chat-container {
        right: 0;
        left: 0;
        bottom: 80px;
        width: 85%;
        margin-left: auto;
        margin-right: auto;
    }

}