body{
    min-height: 100vh;
    background: #27ae60;
    font-size: 1em;
    letter-spacing: 0.1px;
    color: #2b65a4;
    text-rendering: optimizeLegibility;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
    -webkit-font-smoothing: antialiased;
}

.chat-box {
    background: #fbfdff !important;
}

.chat-box p {
    color: white;
}

.chat-box .replies p {
    color: #14549A;
}

.chat-box-body {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

/* .main-content-container{
  padding-top: 90px;
} */

.hidden{
    display: none;
}

.unread{
    padding: 5px !important;
    right: 0 !important;
    left: auto !important;
    top: 50% !important;
    bottom: auto !important;
    margin: 0px !important;
    background-color: #dc3545!important;
    border-color: #f8f9fa!important;
    border-radius: 50%!important;
    position: absolute !important;
}

.main-content-container-wrap{
  display: flex;
  justify-content: center;
}

.main-content-container-wrap {
    padding: 0px !important;
}

svg.pp{
    width: 2.5rem;
    border-radius: 50%;
    font-weight: 700;
    color: #14549A;
    background: #e7edf4;
    border: 1px solid #14549A;
}

svg.pp text{
    text-transform: uppercase;
}

span.pp{
    width: 2rem;
    color: #ffffff;
    background: #14549A;
    border-radius: 50%;
    font-weight: 700;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.userfileis{
    border-radius: 10px !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

#frame {
    width: 100%;
    /* min-width: 360px; */
    /* max-width: 1000px; */
    height: 94vh;
    min-height: 300px;
    /* max-height: 900px; */
    /* background: #e6eaea; */
    /* background: #dde2e3; */
    /* border: 2px solid #dde2e3; */
}

@media screen and (max-width: 360px) {
    #frame {
        width: 100%;
        height: 100vh;
    }
}

#frame #sidepanel {
    float: left;
    min-width: 280px;
    max-width: 340px;
    width: 40%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #fbfdff;
    color: #14549A;
    border: 1px solid #4276ae !important;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

#frame #sidepanel.contacts-active{
    border-bottom: 10px solid #2b65a4;
}

@media screen and (max-width: 735px) {
    #frame #sidepanel {
        width: 58px;
        min-width: 58px;
    }
    /* #frame .content.empty{
        padding: 20px 0px !important;
    } */
    #frame .content.empty img {
        width: 200px !important;
    }
    #frame .content .contact-profile p {
        font-size: 17px !important;
        margin: 0px 5px !important;
    }
}

#frame #sidepanel #profile {
    /* width: 80%; */
    /* margin: 25px auto; */
    padding: 10px;
    width: 100%;
    background-color: #2b65a4;
    /* Added By Z */
    visibility: hidden;
    height: 20px;
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #profile {
        width: 100%;
        margin: 0 auto;
        padding: 5px 0 0 0;
        background: #2b65a4;
    }
}

#frame #sidepanel #profile.expanded .wrap {
    height: 210px;
    line-height: initial;
}

#frame #sidepanel #profile.expanded .wrap p {
    margin-top: 20px;
}

#frame #sidepanel #profile.expanded .wrap i.expand-button {
    -moz-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

#frame #sidepanel #profile .wrap {
    height: 60px;
    line-height: 60px;
    overflow: hidden;
    -moz-transition: 0.3s height ease;
    -o-transition: 0.3s height ease;
    -webkit-transition: 0.3s height ease;
    transition: 0.3s height ease;
    /* Added By Z */
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    height: auto;
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #profile .wrap {
        height: 55px;
    }
}

#frame #sidepanel #profile .wrap img {
    width: 50px;
    border-radius: 50%;
    padding: 3px;
    border: 2px solid #e74c3c;
    height: auto;
    float: left;
    cursor: pointer;
    -moz-transition: 0.3s border ease;
    -o-transition: 0.3s border ease;
    -webkit-transition: 0.3s border ease;
    transition: 0.3s border ease;
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #profile .wrap img {
        width: 40px;
        margin-left: 4px;
    }
}

#frame #sidepanel #profile .wrap img.online {
  border: 2px solid #2ecc71;
}

#frame #sidepanel #profile .wrap svg {
    width: 3rem;
    width: 4rem;
}

#frame #sidepanel #profile .wrap svg.online {
    border: 2px solid #2ecc71;
}

#frame #sidepanel #profile .wrap img.away {
    border: 2px solid #f1c40f;
}

#frame #sidepanel #profile .wrap img.busy {
    border: 2px solid #e74c3c;
}

#frame #sidepanel #profile .wrap img.offline {
    border: 2px solid #95a5a6;
}

#frame #sidepanel #profile .wrap p {
    float: left;
    margin-left: 12px;
    margin-bottom: 0px;
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #profile .wrap p {
        display: none;
    }
}

#frame #sidepanel #profile .wrap i.expand-button {
    float: right;
    margin-top: 23px;
    font-size: 0.8em;
    cursor: pointer;
    color: #10437b;
    display: none; /* Added By Z */
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #profile .wrap i.expand-button {
        display: none;
    }
}

#frame #sidepanel #profile .wrap #status-options {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 150px;
    margin: 70px 0 0 0;
    border-radius: 6px;
    z-index: 99;
    line-height: initial;
    background: #10437b;
    -moz-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    display: none; /* Added By Z */
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #profile .wrap #status-options {
        width: 58px;
        margin-top: 57px;
    }
}

#frame #sidepanel #profile .wrap #status-options.active {
    opacity: 1;
    visibility: visible;
    margin: 75px 0 0 0;
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #profile .wrap #status-options.active {
        margin-top: 62px;
    }
}

#frame #sidepanel #profile .wrap #status-options:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #10437b;
    margin: -8px 0 0 24px;
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #profile .wrap #status-options:before {
        margin-left: 23px;
    }
}

#frame #sidepanel #profile .wrap #status-options ul {
    overflow: hidden;
    border-radius: 6px;
}

#frame #sidepanel #profile .wrap #status-options ul li {
    padding: 15px 0 30px 18px;
    display: block;
    cursor: pointer;
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #profile .wrap #status-options ul li {
        padding: 15px 0 35px 22px;
    }
}

#frame #sidepanel #profile .wrap #status-options ul li:hover {
    background: #496886;
}

#frame #sidepanel #profile .wrap #status-options ul li span.status-circle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 5px 0 0 0;
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #profile .wrap #status-options ul li span.status-circle {
        width: 14px;
        height: 14px;
    }
}

#frame #sidepanel #profile .wrap #status-options ul li span.status-circle:before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    margin: -3px 0 0 -3px;
    background: transparent;
    border-radius: 50%;
    z-index: 0;
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #profile .wrap #status-options ul li span.status-circle:before {
        height: 18px;
        width: 18px;
    }
}

#frame #sidepanel #profile .wrap #status-options ul li p {
    padding-left: 12px;
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #profile .wrap #status-options ul li p {
        display: none;
    }
}

#frame #sidepanel #profile .wrap #status-options ul li#status-online span.status-circle {
    background: #2ecc71;
}

#frame #sidepanel #profile .wrap #status-options ul li#status-online.active span.status-circle:before {
    border: 1px solid #2ecc71;
}

#frame #sidepanel #profile .wrap #status-options ul li#status-away span.status-circle {
    background: #f1c40f;
}

#frame #sidepanel #profile .wrap #status-options ul li#status-away.active span.status-circle:before {
    border: 1px solid #f1c40f;
}

#frame #sidepanel #profile .wrap #status-options ul li#status-busy span.status-circle {
    background: #e74c3c;
}

#frame #sidepanel #profile .wrap #status-options ul li#status-busy.active span.status-circle:before {
    border: 1px solid #e74c3c;
}

#frame #sidepanel #profile .wrap #status-options ul li#status-offline span.status-circle {
    background: #95a5a6;
}

#frame #sidepanel #profile .wrap #status-options ul li#status-offline.active span.status-circle:before {
    border: 1px solid #95a5a6;
}

#frame #sidepanel #profile .wrap #expanded {
    padding: 100px 0 0 0;
    display: block;
    line-height: initial !important;
    display: none; /* Added By Z */
}

#frame #sidepanel #profile .wrap #expanded label {
    float: left;
    clear: both;
    margin: 0 8px 5px 0;
    padding: 5px 0;
}

#frame #sidepanel #profile .wrap #expanded input {
    border: none;
    margin-bottom: 6px;
    background: #2b65a4;
    border-radius: 3px;
    color: #f5f5f5;
    padding: 7px;
    width: calc(100% - 43px);
}

#frame #sidepanel #profile .wrap #expanded input:focus {
    outline: none;
    background: #10437b;
}

#frame #sidepanel #search {
    border-bottom: 1px solid #2b65a4;
    font-weight: 300;
    display: flex;
    padding-bottom: 15px;
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #search {
        display: none;
    }
}

#frame #sidepanel #search label {
    position: absolute;
    margin: 12px 0 0 21px;
}

#frame #sidepanel #search input {
    padding: 10px 0 10px 46px;
    width: calc(100% - 25px);
    margin: auto;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid #14549A;
    background: transparent;
    color: #14549A;
    border-radius: 5px;
    font-size: 16px;
}

#frame #sidepanel #search input:focus {
    outline: none;
    border: 1px solid #14549A;
    background: #e7edf4;
}

#frame #sidepanel #search input::-webkit-input-placeholder {
    color: #14549A;
}

#frame #sidepanel #search input::-moz-placeholder {
    color: #14549A;
}

#frame #sidepanel #search input:-ms-input-placeholder {
    color: #14549A;
}

#frame #sidepanel #search input:-moz-placeholder {
    color: #14549A;
}

#frame .content .wrap input::-webkit-input-placeholder {
    color: #14549A;
}

#frame .content .wrap input::-moz-placeholder {
    color: #14549A;
}

#frame .content .wrap input:-ms-input-placeholder {
    color: #14549A;
}

#frame .content .wrap input:-moz-placeholder {
    color: #14549A;
}

#frame .content .wrap input::placeholder {
    color: #14549A;
}

#frame #sidepanel #contacts,
#frame #sidepanel #groups {
    transition: all 300ms ease;
}

#frame #sidepanel #contacts * {
    transition: all 250ms ease;
}

#frame #sidepanel #contacts, #groups {
    height: calc(100% - 177px);
    overflow-y: scroll;
    overflow-x: hidden;
    border-top: 1px solid #2b65a4;
    border-bottom: 1px solid #2b65a4;
    height: calc(100% - 120px); /* Added By Z */
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #contacts, #groups {
        /* height: calc(100% - 149px); */
        height: calc(100% - 80px);
        overflow-y: scroll;
        overflow-x: hidden;
    }

    #frame #sidepanel #contacts::-webkit-scrollbar, #groups::-webkit-scrollbar {
        display: none;
    }
}

.message-input button,.message-input input,.message-input optgroup,.message-input select,.message-input textarea {
  margin: 0;
  font-family: unset;
  font-size: small;
  line-height: normal;
}

#frame #sidepanel #contacts.expanded, #groups.expanded {
    height: calc(100% - 334px);
}

#frame #sidepanel #contacts::-webkit-scrollbar, #groups::-webkit-scrollbar {
    width: 4px;
    background: #fbfdff;
}

#frame #sidepanel #contacts::-webkit-scrollbar-thumb, #groups::-webkit-scrollbar-thumb {
    background-color: #14549A;
}

#frame #sidepanel #contacts ul, #groups ul{
    list-style: none;
    padding: 0px;
    margin-bottom: 10px !important;
    padding-left: 4px;
}

#frame #sidepanel #contacts ul li.contact, #groups ul li.contact {
    position: relative;
    padding: 10px 0 15px 0;
    font-size: 0.9em;
    cursor: pointer;
    border-bottom: 1px solid #14549A;
    margin-bottom: 3px;
}

#frame #sidepanel #contacts ul li.contact p, #groups ul li.contact p {
    color: #14549A;
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #contacts ul li.contact, #groups ul li.contact {
        padding: 6px 0 46px 8px;
    }
}

#frame #sidepanel #contacts ul li.contact.active span.contact-status, #groups ul li.contact.active span.contact-status {
    border: 2px solid #2b65a4 !important;
}

#frame #sidepanel #contacts ul li.contact .wrap, #groups ul li.contact .wrap {
    width: 88%;
    margin: 0 auto;
    position: relative;
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #contacts ul li.contact .wrap, #groups ul li.contact .wrap {
        width: 100%;
    }
}

#frame #sidepanel #contacts ul li.contact .wrap span, #groups ul li.contact .wrap span {
    position: absolute;
    left: 0;
    margin: -2px 0 0 -2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #14549A;
    background: #95a5a6;
}

#frame #sidepanel #contacts ul li.contact .wrap span.online, #groups ul li.contact .wrap span.online {
    background: #2ecc71;
}

#frame #sidepanel #contacts ul li.contact .wrap span.away, #groups ul li.contact .wrap span.away {
    background: #f1c40f;
}

#frame #sidepanel #contacts ul li.contact .wrap span.busy, #groups ul li.contact .wrap span.busy {
    background: #e74c3c;
}

#frame #sidepanel #contacts ul li.contact .wrap img, #groups ul li.contact .wrap img {
    width: 40px;
    border-radius: 50%;
    float: left;
    margin-right: 10px;
}

#frame #sidepanel #contacts ul li.contact .wrap svg, #groups ul li.contact .wrap svg {
    width: 40px;
    border-radius: 50%;
    float: left;
    margin-right: 10px;
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #contacts ul li.contact .wrap img, #groups ul li.contact .wrap img {
        margin-right: 0px;
    }
}

#frame #sidepanel #contacts ul li.contact .wrap .meta, #groups ul li.contact .wrap .meta {
    padding: 5px 0 0 0;
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #contacts ul li.contact .wrap .meta, #groups ul li.contact .wrap .meta {
        display: none;
    }
}

#frame #sidepanel #contacts ul li.contact .wrap .meta .name, #groups ul li.contact .wrap .meta .name {
    font-weight: 600;
    text-transform: capitalize;
}

#frame #sidepanel #contacts ul li.contact .wrap .meta .name span, #frame #sidepanel #groups ul li.contact .wrap .meta .name span {
    font-weight: 400 !important;
}

#frame #sidepanel #contacts ul li.contact .wrap .meta .preview, #groups ul li.contact .wrap .meta .preview {
    margin: 5px 0 0 0;
    padding: 0 0 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -moz-transition: 1s all ease;
    -o-transition: 1s all ease;
    -webkit-transition: 1s all ease;
    transition: 1s all ease;
    display: none; /* Added By Z */
    font-weight: 600;
}

#frame #sidepanel #contacts ul li.contact .wrap .meta .preview span, #groups ul li.contact .wrap .meta .preview span {
    position: initial;
    border-radius: initial;
    background: none;
    border: none;
    padding: 0 2px 0 0;
    margin: 0 0 0 1px;
    opacity: 0.5;
}


#frame #sidepanel #bottom-bar {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 10px 10px;
}

#frame #sidepanel #top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 5px 4px;
}

#frame #sidepanel #top-bar * {
    transition: all 250ms ease;
}

#frame #sidepanel #bottom-bar button,
#frame #sidepanel #top-bar button {
    float: left;
    padding: 10px 0;
    cursor: pointer;
    font-size: 0.85em;
    width: 49%;
    border: 1px solid #14549A !important;
    border-radius: 5px;
    background: transparent;
    color: #14549A !important;
}

#frame #sidepanel #top-bar button {
    padding: 12px 0;
}

#frame #sidepanel #top-bar button svg g path,
#frame #sidepanel #bottom-bar button svg g path {
    stroke: #14549A !important;
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #bottom-bar button,
    #frame #sidepanel #top-bar button {
        float: none;
        width: 100%;
        padding: 15px 0;
    }
}

#frame #sidepanel #bottom-bar button:focus,
#frame #sidepanel #top-bar button:focus {
    outline: none;
}

#frame #sidepanel #bottom-bar button:nth-child(1) {
    width: 100%;
}

#frame #sidepanel #bottom-bar button:nth-child(2) {
    display: none !important;
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #bottom-bar button:nth-child(1),
    #frame #sidepanel #top-bar button:nth-child(1) {
        border-right: none;
        border-bottom: 1px solid #14549A;
    }
}

#frame #sidepanel #bottom-bar button:hover,
#frame #sidepanel #top-bar button:hover,
#frame #sidepanel #contacts ul li.contact:hover,
#groups ul li.contact:hover {
    background: #e7edf4;
}

#frame #sidepanel #bottom-bar button i,
#frame #sidepanel #top-bar button i {
    margin-right: 3px;
    font-size: 1em;
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #bottom-bar button i,
    #frame #sidepanel #top-bar button i {
        font-size: 1.3em;
    }
}

@media screen and (max-width: 735px) {
    #frame #sidepanel #bottom-bar button span,
    #frame #sidepanel #top-bar button span {
        display: none;
    }
}

#toggleContacts.active, #toggleGroups.active{
    background: #e7edf4 !important;
    cursor: auto !important;
}

#frame .content {
    float: right;
    width: 60%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

@media screen and (max-width: 735px) {
    #frame .content {
        width: calc(100% - 58px);
        /* min-width: 300px !important; */
    }
}

@media screen and (min-width: 900px) {
    #frame .content {
        width: calc(100% - 340px);
    }
}

#frame .content .contact-profile {
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: #f5f5f5;
    background: #ffffff;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 0px 10px;
}

#frame .content.empty{
    display: flex;
    justify-content: center;
    align-items: center;
}

#frame .content.empty .empty-inner{
    padding: 30px;
}

#frame .content.empty img{
    width: 250px;
    display: flex;
    margin: auto;
}

#frame .content.empty p{
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

#frame .content .contact-profile img {
    width: 40px;
    border-radius: 50%;
    float: left;
    margin: 9px 12px 0 9px;
}

#frame .content .contact-profile p {
    float: left;
    font-weight: 500;
    margin: 0px 10px;
    font-size: 20px;
    text-transform: capitalize;
    color: #14549A;
}

#frame .content .contact-profile .social-media {
    float: right;
    display: none; /* Added By Z */
}

#frame .content .contact-profile .social-media i {
    margin-left: 14px;
    cursor: pointer;
}

#frame .content .contact-profile .social-media i:nth-last-child(1) {
    margin-right: 20px;
}

#frame .content .contact-profile .social-media i:hover {
    color: #10437b;
}

#frame .content .messages {
    height: auto;
    min-height: calc(100% - 93px);
    max-height: calc(100% - 93px);
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100%;
    /* Added by Z */
    background: url(../site-assets/img/logo.png);
    background-repeat: no-repeat;
    background-position: center center;
}

@media screen and (max-width: 735px) {
    #frame .content .messages {
        max-height: calc(100% - 105px);
        background-size: 250px;
    }
    #frame .content .message-input {
        border-bottom: 10px solid #14549A !important;
    }
}

#frame .content .messages::-webkit-scrollbar {
    width: 4px;
    background: #fbfdff;
}

#frame .content .messages::-webkit-scrollbar-thumb {
    background-color: #14549A;
}

#frame .content .messages ul {
    padding: 0px;
}

#frame .content .messages ul li {
    display: inline-block;
    clear: both;
    /* float: left; */
    margin: 15px 15px 5px 15px;
    width: calc(100% - 25px);
    font-size: 0.9em;
}

.messages svg{
  width: 1.9rem;
}

#frame .content .messages ul li:nth-last-child(1) {
    margin-bottom: 20px;
}

#frame .content .messages ul li.replies img {
    margin: 6px 8px 0 0;
}

#frame .content .messages ul li.replies svg {
    margin: 6px 4px 0 0;
}

#frame .content .messages ul li.replies span {
    margin: 6px 4px 0 0;
}

#frame .content .messages ul li.replies p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 500;
    background: #e7edf4;
    border: 1px solid #14549A;
}

#frame .content .messages ul li.replies span.pp {
    color: #14549A;
    background: #e7edf4;
    border: 1px solid #14549A;
}

#frame .content .messages ul li.sent img {
    float: right;
    margin: 6px 0 0 8px;
}

#frame .content .messages ul li.sent svg {
    float: right;
    margin: 6px 0 0 8px;
}

#frame .content .messages ul li.sent span {
    float: right;
    margin: 6px 0 0 8px;
}

#frame .content .messages ul li.sent p {
    background: #2b65a4;
    color: #ffffff;
    float: right;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 500;
}

#frame .content .messages ul li.sent a {
    color: #fff !important;
    text-decoration: underline;
}

#frame .content .messages ul li.replies a {
    color: #000 !important;
    text-decoration: underline;
}

#frame .content .messages ul li img {
    width: 22px;
    border-radius: 50%;
    float: left;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

#frame .content .messages ul li svg {
    width: 22px;
    border-radius: 50%;
    float: left;
}

#frame .content .messages ul li p {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 20px;
    max-width: 205px;
    line-height: 130%;
}

@media screen and (min-width: 735px) {
    #frame .content .messages ul li p {
        max-width: 300px;
    }
}

#frame .content .message-input {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 99;
    border-bottom: 5px solid #14549A;
    background-color: #fbfdff;
}

#frame .content .message-input .wrap {
    position: relative;
}

#frame .content .message-input .wrap input {
    float: left;
    border: none;
    width: calc(100% - 90px);
    padding: 11px 32px 10px 8px;
    font-size: 0.8em;
    color: #2b65a4;
    font-weight: 500;
}

@media screen and (max-width: 735px) {
    #frame .content .message-input .wrap input {
        padding: 15px 32px 16px 8px;
    }
}

#frame .content .message-input .wrap input:focus {
    outline: none;
}

#frame .content .message-input .wrap .attachment {
    position: absolute;
    right: 60px;
    z-index: 4;
    margin-top: 10px;
    font-size: 1.4em;
    color: #10437b;
    opacity: 0.5;
    cursor: pointer;
}

@media screen and (max-width: 735px) {
    #frame .content .message-input .wrap .attachment {
        margin-top: 17px;
        right: 65px;
    }
}

#frame .content .message-input .wrap .attachment:hover {
    opacity: 1;
}

#frame .content .message-input .wrap button {
    float: right;
    border: none;
    width: 50px;
    padding: 12px 0;
    cursor: pointer;
    background: #14549A;
    color: #f5f5f5;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}

@media screen and (max-width: 735px) {
    #frame .content .message-input .wrap button {
        padding: 16px 0;
    }
}

#frame .content .message-input .wrap button:hover {
    background: #10437b;
}

#frame .content .message-input .wrap button:focus {
    outline: none;
}

/* SPINNER CSS */
.spinner {
  font-size: 28px;
  position: relative;
  display: none;
  width: 1em;
  height: 1em;
}

.spinner .spinner-blade {
  position: absolute;
  left: 0.4629em;
  bottom: 0;
  width: 0.074em;
  height: 0.2777em;
  border-radius: 0.0555em;
  background-color: transparent;
  -webkit-transform-origin: center -0.2222em;
  -ms-transform-origin: center -0.2222em;
  transform-origin: center -0.2222em;
  animation: spinner-fade9234 1s infinite linear;
}

.spinner .spinner-blade.black {
  animation: spinner-fade9234-black 1s infinite linear;
}

.spinner .spinner-blade:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.spinner .spinner-blade:nth-child(2) {
  -webkit-animation-delay: 0.083s;
  animation-delay: 0.083s;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

.spinner .spinner-blade:nth-child(3) {
  -webkit-animation-delay: 0.166s;
  animation-delay: 0.166s;
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.spinner .spinner-blade:nth-child(4) {
  -webkit-animation-delay: 0.249s;
  animation-delay: 0.249s;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.spinner .spinner-blade:nth-child(5) {
  -webkit-animation-delay: 0.332s;
  animation-delay: 0.332s;
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

.spinner .spinner-blade:nth-child(6) {
  -webkit-animation-delay: 0.415s;
  animation-delay: 0.415s;
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}

.spinner .spinner-blade:nth-child(7) {
  -webkit-animation-delay: 0.498s;
  animation-delay: 0.498s;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.spinner .spinner-blade:nth-child(8) {
  -webkit-animation-delay: 0.581s;
  animation-delay: 0.581s;
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}

.spinner .spinner-blade:nth-child(9) {
  -webkit-animation-delay: 0.664s;
  animation-delay: 0.664s;
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

.spinner .spinner-blade:nth-child(10) {
  -webkit-animation-delay: 0.747s;
  animation-delay: 0.747s;
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.spinner .spinner-blade:nth-child(11) {
  -webkit-animation-delay: 0.83s;
  animation-delay: 0.83s;
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}

.spinner .spinner-blade:nth-child(12) {
  -webkit-animation-delay: 0.913s;
  animation-delay: 0.913s;
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}

@keyframes spinner-fade9234 {
  0% {
      background-color: #FFFFFF;
  }

  100% {
      background-color: transparent;
  }
}

@keyframes spinner-fade9234-black {
  0% {
      background-color: #000000;
  }

  100% {
      background-color: transparent;
  }
}


/* Loader With Text */
.loader-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 80%);
    z-index: 9999;
    backdrop-filter: blur(8px);
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
.loader {
    width: 250px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    font-family: helvetica, arial, sans-serif;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.2em;
}
.loader::before, .loader::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: #fff;
    position: absolute;
    -webkit-animation: load .7s infinite alternate ease-in-out;
            animation: load .7s infinite alternate ease-in-out;
}
.loader::before {
    top: 0;
}
.loader::after {
    bottom: 0;
}
@-webkit-keyframes load {
    0% {
        left: 0;
        height: 30px;
        width: 15px;
    }
    50% {
        height: 8px;
        width: 40px;
    }
    100% {
        left: 235px;
        height: 30px;
        width: 15px;
    }
}
@keyframes load {
    0% {
        left: 0;
        height: 30px;
        width: 15px;
    }
    50% {
        height: 8px;
        width: 40px;
    }
    100% {
        left: 235px;
        height: 30px;
        width: 15px;
    }
}


/* Drop Overlay CSS */
#drop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drop-content {
    text-align: center;
}

.drop-content .upload-icon {
    font-size: 4rem;
    color: #87B14B;
}

.drop-content p {
    font-size: 1.5rem;
    margin-top: 20px;
}

/* Tagify Additional CSS */
.tagify{
    width: 100%;
    margin-bottom: 10px;
}

/* Enlarge Image Code Added */
img[onclick="enlargeImage(this)"]{
    cursor: pointer !important;
}



#frame .content .messages::before {
    content: "";
    position: absolute;
    top: 0;
    left: 35px;
    width: 80%;
    height: 100%;
    background: url(../site-assets/img/logo.png) no-repeat center center;
    background-size: contain;
    filter: blur(2px);
}

#frame .content .messages > * {
    position: relative;
    z-index: 1;
}
