#frame {
    width: 100%;
    height: 100vh;
    min-height: 300px;
    background: #f5f5f5;
    margin:50px 0px 0px 0px;

}

#frame #sidepanel {
    float: left;
    width: 20%;
    height: 100%;
    background: #fff;
    color: #fff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

#frame #sidepanel #profile {
    width: 80%;
    margin: 25px ;
}

#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;
}

#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;
}

#frame #sidepanel #profile .wrap img.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: 15px;
}

#frame #sidepanel #profile .wrap i.expand-button {
    float: right;
    margin-top: 23px;
    font-size: 0.8em;
    cursor: pointer;
    color: #435f7a;
}

#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: #435f7a;
    -moz-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

#frame #sidepanel #profile .wrap #status-options.active {
    opacity: 1;
    visibility: visible;
    margin: 75px 0 0 0;
}

#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 #435f7a;
    margin: -8px 0 0 24px;
}

#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;
}

#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;
}

#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;
}

#frame #sidepanel #profile .wrap #status-options ul li p {
    padding-left: 12px;
}

#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;
}

#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: #32465a;
    border-radius: 3px;
    color: #f5f5f5;
    padding: 7px;
    width: calc(100% - 43px);
}

#frame #sidepanel #profile .wrap #expanded input:focus {
    outline: none;
    background: #435f7a;
}

#frame #sidepanel #search {
    border-top: 1px solid #32465a;
    border-bottom: 1px solid #32465a;
    font-weight: 300;
}

#frame #sidepanel #search label {
    position: absolute;
    margin: 10px 0 0 20px;
}

#frame #sidepanel #search input {
    font-family: "proxima-nova",  "Source Sans Pro", sans-serif;
    padding: 10px 0 10px 46px;
    width: calc(100% - 25px);
    border: none;
    background: #32465a;
    color: #f5f5f5;
}

#frame #sidepanel #search input:focus {
    outline: none;
    background: #435f7a;
}

#frame #sidepanel #search input::-webkit-input-placeholder {
    color: #f5f5f5;
}

#frame #sidepanel #search input::-moz-placeholder {
    color: #f5f5f5;
}

#frame #sidepanel #search input:-ms-input-placeholder {
    color: #f5f5f5;
}

#frame #sidepanel #search input:-moz-placeholder {
    color: #f5f5f5;
}

#frame #sidepanel #contacts.expanded {
    height: calc(100% - 334px);
}

#frame #sidepanel #contacts::-webkit-scrollbar {
    width: 8px;
    background: #2c3e50;
}

#frame #sidepanel #contacts::-webkit-scrollbar-thumb {
    background-color: #243140;
}

#frame #sidepanel #contacts ul li.contact {
    position: relative;
    padding: 15px 0 8px 0;
    font-size: 0.9em;
    cursor: pointer;
    border-bottom: solid 1px #f1f1ff;
    color: #000;    
}

#frame #sidepanel #contacts ul li.contact:hover {
    background: #fafafa;
}

#frame #sidepanel #contacts ul li.contact.active {
    background: #f5f5f5;
    border-right: 5px solid #ccc;
}

#frame #sidepanel #contacts ul li.contact.active span.contact-status {
    border: 2px solid #32465a !important;
}

#frame #sidepanel #contacts ul li.contact .wrap {
    width: 88%;
    margin: 0 auto;
    position: relative;
}

#frame #sidepanel #contacts ul li.contact .wrap span {
    position: absolute;
    left: 0;
    margin: -2px 0 0 -2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #2c3e50;
    background: #95a5a6;
}

#frame #sidepanel #contacts ul li.contact .wrap span.online {
    background: #2ecc71;
}

#frame #sidepanel #contacts ul li.contact .wrap span.away {
    background: #f1c40f;
}

#frame #sidepanel #contacts ul li.contact .wrap span.busy {
    background: #e74c3c;
}

#frame #sidepanel #contacts ul li.contact .wrap img {
    width: 40px;
    border-radius: 50%;
    float: left;
    margin-right: 10px;
}

#frame #sidepanel #contacts ul li.contact .wrap .meta {
    padding: 5px 0 0 0;
}

#frame #sidepanel #contacts ul li.contact .wrap .meta .name {
    font-weight: 400;
    font-size: 18px;
}

#frame #sidepanel #contacts ul li.contact .wrap .meta .preview {
    margin: 5px 0 0 0;
    padding: 0 0 1px;
    font-weight: 400;
    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;
}

#frame #sidepanel #contacts 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: .5;
}

#frame #sidepanel #bottom-bar {
    position: absolute;
    width: 100%;
    bottom: 0;
}

#frame #sidepanel #bottom-bar button {
    float: left;
    border: none;
    width: 50%;
    padding: 10px 0;
    background: #32465a;
    color: #f5f5f5;
    cursor: pointer;
    font-size: 0.85em;
    font-family: "proxima-nova",  "Source Sans Pro", sans-serif;
}

#frame #sidepanel #bottom-bar button:focus {
    outline: none;
}

#frame #sidepanel #bottom-bar button:nth-child(1) {
    border-right: 1px solid #2c3e50;
}

#frame #sidepanel #bottom-bar button:hover {
    background: #435f7a;
}

#frame #sidepanel #bottom-bar button i {
    margin-right: 3px;
    font-size: 1em;
}

#frame .content {
    width: 100%;
    height: calc(100% - 97px);
    position: relative;
    background: #edeff2;
    overflow: auto; 
   
}

#frame .content .contact-profile {
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: #f5f5f5;
}

#frame .content .contact-profile img {
    width: 40px;
    border-radius: 50%;
    float: left;
    margin: 9px 12px 0 9px;
}

#frame .content .contact-profile .social-media {
    float: right;
}

#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: #435f7a;
}



#frame .content .messages::-webkit-scrollbar {
    width: 8px;
    background: transparent;
}

#frame .content .messages::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
}

#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;
}

#frame .content .messages ul li:nth-last-child(1) {
    margin-bottom: 10px;
}

#frame .content .messages ul li.sent img {
    margin: 6px 8px 0 0;
}

#frame .content .messages ul li.sent .message-body {
    background: #fff;
    color: #000;
    box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);

}


#frame .content .messages ul li.replies .message-body {
    background: #f2faff;
    float: right;
    color: #000;
     box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);

}



#frame .content .messages ul li .message-body {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 10px;
    max-width: 800px;
    line-height: 130%;
    min-width:250px;
    margin-bottom:0px;
}

.message-body img{
    max-width: 100%;
    height: auto;
}

#frame .content .message-input {
    position: fixed;
    bottom: 0;
    left:85px;
    width: 93%;
    z-index: 99;
    background: #edeff3;
}

#frame .content .message-input .wrap {
    position: relative;
    /*background: #eaebec;*/

}

#frame .content .message-input .wrap input {
    font-family: "proxima-nova",  "Source Sans Pro", sans-serif;
    float: left;
    border: none;
    width: calc(100% - 160px);
    padding: 14px 32px 14px 8px;
    font-size: 0.8em;
    color: #32465a;
    margin-left: 102px;
}


#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.1em;
    color: #435f7a;
    opacity: .5;
    cursor: pointer;
}


#frame .content .message-input .wrap .attachment:hover {
    opacity: 1;
}

#frame .content .message-input .wrap button {
    float: right;
    border: none;
    padding: 10px 0;
    cursor: pointer;
    background: #226595;
    color: #f5f5f5;
    position: absolute;
    right: 15px;
    width: 40px;
    height: 40px;
    bottom: 3px;
    border-radius: 50%;
    margin-top: 5px;
    z-index: 999;
}


#frame .content .message-input .wrap button:hover {
    background: #435f7a;
}

#frame .content .message-input .wrap button:focus {
    outline: none;
}

.sent-user-name{
    width: 100%;
    display: block;
    color: #51a9e8;
    padding-bottom:5px;
    font-size: 12px;
}

.chat-timeing{
    width: 100%;
    display: block;
    color: #ccc;
    padding-top:5px;
    text-align: right;
    font-size: 12px;
}
.replies-user-icon{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    float: right;
    background: #a7a7a7;
    text-align: center;
    padding-top: 2px;
    margin-left: 5px;
}

.chat-room-icon{
    width: 40px;
    height: 40px;
    background:#226494;
    border-radius: 50%;
    float: left;
    margin-right: 5px;
    font-size: 18px;
    text-align: center;
    padding-top: 8px;
    color: #fff;
}

.incoming-notification {
    position: absolute;
    right: 22px;
    margin: -12px 0 0 -2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    padding-top: 1px;
    background: #61d362;
    font-size:12px;
    top:38px;
    color: #fff;
}

.chat-room-box{
    border: solid 1px #f1f1f1;
    padding:15px 10px 20px 10px;
    cursor: pointer;
}



.chat-room-name{
    font-size: 20px;
    padding-top: 7px;
    padding-left: 52px;
}

.full-chat-box{
    background: #fafafa;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0px;
    z-index: 9999;
}

.chat-close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    padding: 15px 10px 8px 10px;
    cursor: pointer;
}


.chat-tab{
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 2px rgba(50, 50, 50, 0.15);
    margin-bottom: 1px;
    position: fixed;
    z-index: 1;
    height: 48px;
}
.chat-tab ul{
    list-style: none;
    padding: 0px 20px 0px 0px;
    margin:0px;

}
.chat-tab ul li{
    display: inline-block;
    padding: 15px 8px 8px 8px; 
}
.chat-tab ul li a{
    
}

.chat-tab ul li.active{
    color: #f28e3c;
    border-bottom: solid 3px #f28e3c;
}

.tab-notifications {
    float: right;
    right: 22px;
    margin: 0px 0 0 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    padding-top: 1px;
    background: #61d362;
    font-size:12px;
    top:38px;
    color: #fff;
}

.staff {
    font-size: 10px;
    padding: 5px;
}

.no-scroll{
/*    overflow: hidden;
    height:100vh;
}
.add-scroll{
    overflow: auto;
    height:auto;*/
}

.switch {
  position: absolute;
  display: inline-block;
  width: 44px;
  height: 26px;
  z-index: 9;
  top: 12px;
  left: 18px;
}

.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
  left: -4px;
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

#button
{
    background-color: blue;
    color: white;
}




.upload-icon{
    font-size: 30px;
    padding-top: 6px;
    padding-left: 7px;
}

.ajax-file-upload-filename {
    width: 300px;
    height: auto;
    margin: 0 5px 5px 0px;
}


.ajax-file-upload-statusbar {
    border: 1px solid #ccc;
    margin-top: 10px;
    width: 30%;
    margin-right: 10px;
    margin: 5px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 5px 5px 5px 15px;
    position: absolute;
    bottom: 42px;
    background: #fff;
}

.ajax-file-upload-red {
    -moz-box-shadow: inset 0 39px 0 -24px #e67a73;
    -webkit-box-shadow: inset 0 39px 0 -24px #e67a73;
    box-shadow: inset 0 39px 0 -24px #e67a73;
    background-color: #e4685d;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    display: inline-block;
    color: #fff;
    font-family: arial;
    font-size: 13px;
    font-weight: normal;
    padding: 4px 15px;
    text-decoration: none;
    text-shadow: 0 1px 0 #b23e35;
    cursor: pointer;
    vertical-align: middle;
    margin-right: 5px;
}

.fileuploader-icon{
    position: absolute;
    left:67px;
}


.cke_chat-editor{
    width: calc(100% - 180px);
    float: left;
    margin-left: 102px;
}

.cke-content {
    height: calc(100% - 232px)!important;
}



.ckeditor-upload {
    bottom: 210px;
}


.ajax-upload-dragdrop span b{
    display: none;
}

.my-chat-btn{
    background: #69a34a;
    color: #fff;
    cursor: pointer;
    position: fixed;
    padding: 3px 15px;
    border-radius: 4px;
    top:10%;
    right: 1%; 
}


.chat-bar-bottom{
    width: 50%; 
    float: right; 
    position: relative
}

.banner-ad-live{
    display: block;
    background: #edeff2;
    border-right: solid 1px #ccc;
}
.youtube-video-box{
    padding: 5px;
    background: #fbfbfb;
    border-right: solid 1px #ccc;
}

.youtube-video-box-toggle{
    position: absolute;
    left:22px;
    transform: rotate(-90deg);
    top: 70%;
    background-color: #226595;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    z-index: 99999;
    outline: none;
    padding: 5px 20px;
    cursor: pointer;
}

.youtube-video-box-toggle:hover{
    color: #fff;
     outline: none;
}

.pop-dashboard-full-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, 0.9);
    z-index: 999999;
    color: #fff;
    display: none;
}

.close-pop-dashboard{
    text-align: center;
    padding: 25px;
    cursor: pointer;

}
.pop-dashboard-box{
    width: 320px;
    border:solid 1px #fff; 
    border-radius: 4px;
    margin: auto;
    padding: 15px;
}

.pop-btn-submit{
    padding: 7px 20px;
    width: 100%;
    background: #f28e3c;
    border-color: #f28e3c;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}

.roll-number-error{
    font-size: 12px;
    color: #f50000;
}

.application-number-error{
    font-size: 12px;
    color: #f50000;
}

.date-of-birth-error{
   font-size: 12px;
    color: #f50000;
}

.chat-message-attachment{
    max-width: 100%!important;
    height: auto!important;
}


@media (max-width: 767px) {

    .youtube-video-box-toggle{
        position: relative;
        left: 0px;
        transform: rotate(0deg);
        top: 0%;
        background-color: #226595;
        color: #fff;
        font-size: 13px;
        cursor: pointer;
        z-index: 99999;
        outline: none;
        padding: 5px 20px;
        cursor: pointer;
        width: 100%;
        text-align: center;
    }

    .youtube-video-box{
      padding: 0px;
    }

    .banner-ad-live{
        display: none;
    }

    .chat-bar-bottom{
        width: 100%; 
        float: left; 
        position: relative
    }

    .my-chat-btn{
        background: #69a34a;
        color: #fff;
        cursor: pointer;
        position: fixed;
        padding: 3px 15px;
        border-radius: 4px;
        top:18%;
        right: 2%;
    }

    .cke-content {
        height: calc(100% - 208px)!important;
    }
    .ajax-file-upload-statusbar {
        width: 88%;
    }

    #frame {
        width: 100%;
        height: calc(100% - 50px);
        margin:  50px 0px 0px; 
    }

    

    #frame #sidepanel {
        width: 58px;
        min-width: 58px;
    }

    #frame #sidepanel #profile {
        width: 100%;
        margin: 0 auto;
        padding: 5px 0 0 0;
        background: #32465a;
    }

    #frame #sidepanel #profile .wrap {
        height: 55px;
    }

    #frame #sidepanel #profile .wrap img {
        width: 40px;
        margin-left: 4px;
    }

    #frame #sidepanel #profile .wrap p {
        display: none;
    }

    #frame #sidepanel #profile .wrap i.expand-button {
        display: none;
    }

    #frame #sidepanel #profile .wrap #status-options {
        width: 58px;
        margin-top: 57px;
    }

    #frame #sidepanel #profile .wrap #status-options.active {
        margin-top: 62px;
    }

    #frame #sidepanel #profile .wrap #status-options:before {
        margin-left: 23px;
    }

    #frame #sidepanel #profile .wrap #status-options ul li {
        padding: 15px 0 35px 22px;
    }

    #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 {
        height: 18px;
        width: 18px;
    }

    #frame #sidepanel #profile .wrap #status-options ul li p {
        display: none;
    }

    #frame #sidepanel #search {
        display: none;
    }

    #frame #sidepanel #contacts ul li.contact {
        padding: 6px 0 46px 8px;
    }

    #frame #sidepanel #contacts ul li.contact .wrap {
        width: 100%;
    }

    #frame #sidepanel #contacts ul li.contact .wrap img {
        margin-right: 0px;
    }

    #frame #sidepanel #contacts ul li.contact .wrap .meta {
        display: none;
    }

    #frame #sidepanel #bottom-bar button {
        float: none;
        width: 100%;
        padding: 15px 0;
    }

    #frame #sidepanel #bottom-bar button:nth-child(1) {
        border-right: none;
        border-bottom: 1px solid #2c3e50;
    }

    #frame #sidepanel #bottom-bar button i {
        font-size: 1.3em;
    }

    #frame #sidepanel #bottom-bar button span {
        display: none;
    }

    #frame .content {
        min-width: 300px !important;
        margin: 0px;
        height: calc(100% - 50px);
    }

    #frame .content2 {
        min-width: 300px !important;
        margin: 0px;
        height: calc(100% - 295px);
    }
    
    #frame .content3 {
        min-width: 300px !important;
        margin: 0px;
        height: calc(100% - 75px);
    }

    

    #frame .content .messages ul li p {
        max-width: 300px;
        min-width:180px;
    }

    #frame .content .message-input {
        left:0px;
        width: 100%;
    }
    
    
    #frame .content .message-input .wrap .attachment {
        margin-top: 17px;
        right: 65px;
    }

    .full-chat-box{
        right: 15px;
        left: 15px;
       
    }
    
}













