/* ---- General layout ---------------------------------------------------------------------- */

.chat {
    margin-bottom: 1em
}

/* ---- Chat posts -------------------------------------------------------------------------- */

.chat ul.chat__posts {
    border: 1px solid var(--ck-color-base-border);
    border-top-left-radius: var(--ck-border-radius);
    border-top-right-radius: var(--ck-border-radius);
    border-bottom: none;
    margin: 1em 0 0;
    padding: 1em;
    list-style-position: inside;
}

.chat ul.chat__posts li {
    display: flex;
}

.chat ul.chat__posts li.new-post {
    /* Highlight a new post in the chat. */
    animation: highlight 600ms ease-out;
}

.chat ul.chat__posts li + li {
    margin-top: 1em;
}

.chat .chat__posts li .photo {
    border-radius: 100%;
    height: 40px;
    margin-right: 1.5em;
}

.chat .chat__posts li .time {
    color: hsl(0, 0%, 72%);
    font-size: .9em;
}

.chat .chat__posts .chat__posts__post__message > strong::after,
.chat__posts__post__mailto-user::after {
    content: "•";
    padding-left: 5px;
    padding-right: 5px;
    color: hsl(0, 0%, 72%);
}

@keyframes highlight {
    0% {
        background-color: yellow;
    }

    100% {
        background-color: white;
    }
}

/* ---- Chat editor ------------------------------------------------------------------------- */

.chat .chat__editor {
    /* Anti–FOUC (flash of unstyled content). */
    padding: 1em;
    border: 1px solid var(--ck-color-base-border);
}

.chat .chat__editor + .ck.ck-editor {
    margin-top: 0;
}

.chat .chat__editor + .ck.ck-editor .ck.ck-toolbar {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.chat .chat__editor + .ck.ck-editor .ck-content.highlighted {
    animation: highlight 600ms ease-out;
}

/* ---- In–editor mention list --------------------------------------------------------------- */

.ck-mentions .mention__item {
    display: block;
}

.ck-mentions .mention__item img {
    border-radius: 100%;
    height: 30px;
    width: 30px;
}

.ck-mentions .mention__item span {
    margin-left: .5em;
}

.ck-mentions .mention__item.ck-on span {
    color: var(--ck-color-base-background);
}

.ck-mentions .mention__item .mention__item__full-name {
    color: hsl(0, 0%, 45%);
}

.ck-mentions .mention__item:hover:not(.ck-on) .mention__item__full-name {
    color: hsl(0, 0%, 40%);
}

/* ---- Chat editor content styles ----------------------------------------------------------- */

.chat .ck-content .mention {
    background: unset;
}

.chat .ck.ck-content a,
.chat .chat__posts a {
    color: hsl(231, 89%, 53%);
}

.ck-editor__editable_inline {
    min-height: 150px;
 }

 .ck-content .mention {
    background-color: #f2f9fb !important;
    color: #000000 !important;
 }

 .ck.ck-editor__editable_inline {
    overflow: auto !important;
    padding: 0px 0px 0px 25px !important;
    border: 1px solid transparent;
 }

 .chat-send {
    float: right !important;
 }


.cke_autocomplete_panel {
    width: 250px !important;
    max-height: 350px !important;
    background: #f2f9fb !important;
    border: 1px solid #b6b6b6 !important;
    border-bottom-color: #999 !important;
    border-radius: 3px !important;
}

.cke_autocomplete_panel > li
{
    padding: 10px;
    color: #000 !important;
    background-color: #f2f9fb !important;
    font-size: 14px !important;
}
.cke_autocomplete_panel > li:hover
{
    cursor: pointer !important;
    background-color: #13b89d !important;
    color: #fff !important;
}
.cke_autocomplete_selected, .cke_autocomplete_panel > li:hover
{
    background-color: #13b89d;
    color: #fff !important;
}

.cke_autocomplete_panel {
    position: absolute;
    margin-top: 10px !important;
    display: none;
    box-sizing: border-box;
    width: 200px;
    max-height: 300px;
    overflow: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    background: #FFF;
    border: 1px solid #b6b6b6;
    border-bottom-color: #999;
    border-radius: 3px;
    font: 12px Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
}

/* CSS Shared by Tamanna */
.feed-header {
    padding: 0.5rem 0.5rem;
    position: relative;
}
.feed-notify {
    position: absolute;
    right: 0;
    top: 0;
    width: 34px;
    height: 34px;
    background: rgb(19 184 157 / 20%);
    text-align: center;
    border-radius: 100%;
    line-height: 43px;
    color: #333333;
    font-size: 17px;
} 
.feed-notify a{
    color: #333333;
}
.feed-notify.active:after {
    width: 8px;
    height: 8px;
    content: '';
    background: #ff0000;
    position: absolute;
    border-radius: 100%;
    top: 8px;
    right: 7px;
}
.feed-notify .dropdown-menu {
    left: auto;
    right: 0;
    min-width: 18rem;
    box-shadow: 0px 0px 4px 0px rgb(0 0 0 / 24%);
    border: 0;
    margin: 0;
    vertical-align: middle;
    padding: 0;
    white-space: normal;
    border-radius: 6px;
}
.feed-notify .dropdown-menu ul {
    list-style: none;
    margin: auto;
    background: #fafafa;
    position: relative;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
}
.feed-notify a.dropdown-item {
    padding: 8px 10px;
    border-top: 1px #e7eef0 solid;
    white-space: normal;
    line-height: normal;
    color: #038fb0;
}
.feed-notify h4 {
    color: #000000;
    font-size: 1.4rem;
    font-weight: 400;
    font-family: 'Conv_FoundersGrotesk-Medium';
    text-align: center;
    margin: 0.75rem auto 0.50rem;
    line-height: normal;
}
 
.btn-post {
    background: #028fb0;
    border-color: #028fb0;
    padding: 8px 12px 0;
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: 'Conv_FoundersGrotesk-Medium';
    margin: 5px 0px;
    font-weight: 500;
    color: #fff;
    vertical-align: middle;
    letter-spacing: 0.5px;
    font-size: 15px;
    line-height: 23px;
    min-height: 35px;
}
.btn-post:hover,
.btn-post:not(:disabled):not(.disabled).active, 
.btn-post:not(:disabled):not(.disabled):active, 
.show>.btn-post.dropdown-toggle {
    color: #ffffff;
    background-color: #13b89d;
    border-color: #13b89d;
}
.btn-post.focus, .btn-post:focus {
    color: #ffffff;
    background-color: #13b89d;
    border-color: rgba(82 94 133 / 0.44);
    box-shadow: 0 0 0 0.2rem rgba(82 94 133 / 0.22);
}
.user-allcomments {
    position: relative;
    width: 100%;
    padding: 0 10px;
    max-height: 500px;
    overflow-y: auto;
}
.post-card {
    width: 100%;
    position: relative;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 6px 2px rgb(0 0 0 / 10%);
    margin: 1rem auto;
    display: inline-block;
} 
span.username {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Conv_FoundersGrotesk-Medium';
}
 
.post-body {
    position: relative;
    padding: 10px 0 0;
}
.post-icons span {
    vertical-align: middle;
    color: #028fb0;
    font-size: 13px;
    line-height: normal;
    margin-right: 15px;
}
.post-icons span a {
    color: #028fb0;
    text-decoration: none;
    font-size: 13px;
}
.icons {
    font-size: 14px;
    font-style: italic;
    line-height: 30px;
    font-weight: 400;
    color: #9f9f9f !important;
}
.icons i {
    color: #edb214;
    padding-right: 1px;
}
 
.comment-wrapper {
    padding: 1rem 1.2rem 0;
    position: relative;
}
.comment-input {margin-top: 15px;position: relative;}
.comment-input .form-control {
    height: 45px;
    border: 0px #e4e7ea solid;
    border-radius: 10px;
    background: #f6f6f6;
}
.input-group-text.attachment {
    background: #f6f6f6;
    border: 0px #b1c9cf solid;
    border-radius: 0px;
    color: #424242;
}
.input-group {
    border: 1px #e4e7ea solid;
    border-radius: 10px;
    background: #f6f6f6;
}
.btn-reply {
    background: #dedede;
    border-radius: 0px 10px 10px 0px;
    padding: 8px 18px 4px;
    font-size: 1.1rem;
    font-family: 'Conv_FoundersGrotesk-Medium';
    font-weight: 500;
    color: #000;
    vertical-align: middle;
    letter-spacing: 0.5px;
}
hr {
    border-top: 1px #e7eef0 solid;
}
.setting-icon {
    width: 30px;
    height: 30px;
    background: rgb(19 184 157 / 20%);
    text-align: center;
    border-radius: 100%;
    line-height: 36px;
    color: #333333;
    font-size: 13px;
    display: inline-block;
}
.post-edit ul.dropdown-menu {
    left: auto;
    right: 0;
    min-width: 90px !important;
    box-shadow: 0px 0px 4px 0px rgb(0 0 0 / 24%);
    border: 0;
    margin: 0;
    vertical-align: middle;
}
.post-edit ul.dropdown-menu li a.dropdown-item {
    border-bottom: 1px #eee solid;
    padding: 0.5rem 1.5rem 0.25rem;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Conv_FoundersGrotesk-Light';
    letter-spacing: 0.5px;
    line-height: 19px;
}
.post-edit ul.dropdown-menu li:last-child a.dropdown-item {
    border: 0;
}
 .msg-bubble {
    position: relative;
    text-align: center;
    margin: auto;
    z-index: 9;
}
.msg-bubble h4 {
    color: #fff;
    margin: auto;
    line-height: 25px;
    font-size: 18px;
    background: #13b89d;
    padding: 10px 25px 5px;
    border-radius: 50px;
    display:inline-block;
    position: absolute;
    left: 50%;
    margin-left: -100px;
}
/* End of CSS Shared by Tamanna */

.givekudos-box.list {
    margin: 0 !important;
}

.givekudos-box.list .item-inner {
    border: 1px solid #ced4da;
    background: #fff;
    border-radius: 50px;
    padding-left: 23px;
    padding-top: 10px;
    margin: 0 0 0 10px;
}

.givekudos-box.list .item-media {
    margin: auto;
    text-align: center;
    background: #fff;
    display: inline-block !important;
    border-radius: 100%;
    width: 40px;
    height: 40px !important;
    line-height: 32px;
}

.btn-choosegif {text-align: center;display: inline-block;}

.btn-choosegif img {width: 25px;}

.btn-upload-picture {text-align: center;display: inline-block;}

.btn-upload-picture img {width: 30px;}

.popup-header.popup-close {
    text-align: right;
    /*padding: 20px 20px 0px;*/
    position: relative;
}

.custom-swal-height {
  height: 400px !important;
}

.giphy-icon-list {
    padding: 4px 4px;
    text-align: center;
    background: #d5ddd7;
    border: 1px #eee solid;
    border-radius:10px;
    overflow: hidden;
    margin: 1px auto;
    /*width: 100px;
    height: 100px;*/
    vertical-align: middle;
}

.gif-popup-close {
    text-align: right;
    position: relative;
}

.gif_search_div {
    padding: 10px 10px;
    position: relative;
}

.searchbar-inner {
    padding: 2px !important;
}

.gif_search_div .button-fill {
    /*width: 50px !important;*/
    margin: 0px !important;
    border-radius: 8px;
    height: 35px !important;
    border: 0px;
    background: #ffff;
}

.gif_search_div .searchbar input[type=search], .gif_search_div .searchbar input[type=text] {
    padding: 10px 10px 4px !important;
    /* margin: 10px; */
    width: 95%;
    float: left;
    height: 35px;
    border: 0px;
    border-radius: 10px;
}

.gif_search_div_newpost {
    padding: 10px 10px;
    position: relative;
}

.gif_search_div_newpost .button-fill {
    width: 50px !important;
    margin: 0px !important;
    border-radius: 8px;
    height: 35px !important;
    border: 0px;
    background: #ffff;
}


.gif_search_div_newpost .searchbar input[type=search], .gif_search_div_newpost .searchbar input[type=text] {
    padding: 10px 10px 4px !important;
    /* margin: 10px; */
    width: 95%;
    float: left;
    height: 35px;
    border: 0px;
    border-radius: 10px;
    font-size: 16px !important;
}

.gif_pagination {
    height: 40px;
    width: auto;
    overflow: hidden;
    position: relative;
    border-radius: 3px;
    /*margin-bottom: 1em;*/
    float:right !important;
    margin: 10px !important;
  }
  
  .gif_pagination:after {
    content: "▼";
    padding: 12px 8px;
    position: absolute;
    right: 10px;
    top: 0;
    z-index: 1;
    text-align: center;
    width: 10%;
    height: 100%;
    pointer-events: none;
  }
  
  .gif_pagination_field, .gif_search_pagination_field {
    height: 40px;
    width: 100%;
    padding: 5px 15px;
    color: #616263;
    background-color: #ececec;
    border: 1px solid #e3e3e3;
    outline: none;
    font-size: 16px;
    -webkit-appearance: none;
    /* for webkit browsers */
    -moz-appearance: none;
    /* for firefox */
    appearance: none;
    /* for modern browsers */
  }

  .gif_pagination_newpost {
    height: 40px;
    width: auto;
    overflow: hidden;
    position: relative;
    border-radius: 3px;
    /*margin-bottom: 1em;*/
    float:right !important;
    margin: 10px !important;
  }
  
  .gif_pagination_newpost:after {
    content: "▼";
    padding: 12px 8px;
    position: absolute;
    right: 10px;
    top: 0;
    z-index: 1;
    text-align: center;
    width: 10%;
    height: 100%;
    pointer-events: none;
  }
  
  .gif_pagination_field_newpost, .gif_search_pagination_field_newpost {
    height: 40px;
    width: 100%;
    padding: 5px 15px;
    color: #616263;
    background-color: #ececec;
    border: 1px solid #e3e3e3;
    outline: none;
    font-size: 16px;
    -webkit-appearance: none;
    /* for webkit browsers */
    -moz-appearance: none;
    /* for firefox */
    appearance: none;
    /* for modern browsers */
  }

  .search-box.searchbar {
        border: 1px #2d2926 solid;
        border-radius: 8px;
        width: 100% !important;
        margin: 0px;
        height: 50px;
        background: #fff;
    }

  .go-top {
     display: block;
     z-index: 999;
     position: sticky;
     width: 40px;
     height: 40px;
     background-color: transparent;
     font-size: 30px;
     line-height: 35px;
     text-align: center;
     color: #13B89D !important;
     top: auto;
     margin-left: 100% !important;
     left: auto;
     right: 0px;
     bottom: 30px;
     cursor: pointer;
     border: 3px #13B89D solid;
     border-radius: 100%;
 }

.feed-container {
    position: relative;
}

.popup-header-reply.popup-close-reply {
    text-align: right;
    position: relative;
}

input.search_gif {
    display: block !important;
    height: auto !important;
    margin: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    width: 80% !important;
}

/*.giphy_img_click{
    width:50%;
    height:50%;
    -webkit-transition:.4s all;
}*/

img.zoom {
    width: 350px;
    height: 200px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
}
 
.transition {
    -webkit-transform: scale(1.8); 
    -moz-transform: scale(1.8);
    -o-transform: scale(1.8);
    transform: scale(1.8);
}

.no_notifications {
    text-align:center; 
    color: #808080 !important;
}

#cke_newposteditor {
   margin: 2px 10px 2px 10px !important
}

div[id*="cke_newreplyeditor_"], div[id*="cke_newposteditor"] {
    border-radius: 5px;
    /* padding: 4px; */
    /*box-shadow: 10px 10px 10px 10px #f2f2f2;*/
}

.cke_inner{
    border-radius: 10px;
    background: transparent ! important;
}

.cke_contents{
    border-radius: 0px 0px 10px 10px;
}

.cke_top{
    border-radius: 10px 10px 0px 0px;
}

.newsfeed-names-initials {
    display: inline-block;
    font-size: 18px !important;
    width: 40px;
    height: 40px;
    line-height: 47px;
    text-align: center;
    border-radius: 50%;
    /* padding: 5px 0px 6px 2px; */
    color: #fff;
    background-color: #008fb1;
    font-family: 'Conv_FoundersGrotesk-Bold';
}

/* News Feed Profile Profile  */
.newsfeed-panel {
    position: relative;
    text-align: center; 
}

.popover { 
    background: rgb(2 143 176 / 80%);
    border-color: #028fb0;
}
.popover-body {
    padding: .5rem .5rem;
}
.newsfeed-userinfo {
    text-align: center;
    position: relative;
    margin: auto;
    padding: 10px 0;
}

.newsfeed-user-img {
    border-radius: 100%;
    width: 90px;
    height: 90px;
    max-width: 100%;
    position: relative;
    margin: auto;
}

.newsfeed-user-img img {
    border: 5px rgb(255 255 255 / 25%) solid;
    border-radius: 100%;
    width: 90px;
    height: 90px;
    max-width: 100%;
    object-fit: fill;
    -o-object-fit: fill;
}

.newsfeed-userinfo h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    margin: auto;
    display: block;
}

.newsfeed-userinfo h3 span {
    display: block;
    font-size: 13px;
    line-height: normal;
}

.newsfeeduser-pnts {
    color: #fff;
    padding: 5px 0;
    margin: auto;
}

.newsfeeduser-pnts h4 {
    display: inline-block;
    border: 1px #ffffff solid;
    background: #b8bcbb;
    border-radius: 50px;
    padding: 4px 15px 5px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    color: #333333;
    vertical-align: middle;
    margin: 0px auto;
    letter-spacing: 0.5px;
    line-height: 25px;
}

.newsfeed-panel .badges-list ul li h5 {
    font-weight: 500;
    font-size: 13px;
}

.bs-popover-auto[x-placement^=right] .arrow::before, .bs-popover-right .arrow::before {
    border-right-color: rgb(2 143 176 / 80%);
}

.bs-popover-auto[x-placement^=right] .arrow::after, .bs-popover-right .arrow::after {
    border-right-color: rgb(2 143 176 / 80%);
}