body{
    background: #FAFAFA;
    font-size: 13px;
    font-family: "Nunito" sans-serif;
    overflow-x:hidden;
}
body::-webkit-scrollbar, div::-webkit-scrollbar,ul::-webkit-scrollbar,textarea::-webkit-scrollbar {
    width: .5em;
}

body::-webkit-scrollbar-track, div::-webkit-scrollbar-track,ul::-webkit-scrollbar-track,textarea::-webkit-scrollbar-track {
}

body::-webkit-scrollbar-thumb, div::-webkit-scrollbar-thumb,ul::-webkit-scrollbar-thumb, textarea::-webkit-scrollbar-thumb {
    background-color: #BEC3CF;
    border-radius: 5px;
    outline: 1px solid #BEC3CF;
}
div, a, h1, h2, h3, h4, h5, p, span, form {
    white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
    white-space: -pre-wrap !important; /* Opera 4-6 */
    white-space: -o-pre-wrap !important; /* Opera 7 */
    white-space: pre-wrap !important; /* css-3 */
    word-wrap: break-word !important; /* Internet Explorer 5.5+ */
    white-space: -webkit-pre-wrap !important; /* Newer versions of Chrome/Safari*/
    word-break: normal !important;
    white-space: normal !important;
}
.emojionearea .emojionearea-editor {
    min-height: 50px !important;
    max-height: 60px !important;
}
.dropdown-item{
    font-size: 13px;
    padding: 7px 15px !important;
}
.dropdown-item:hover{
    background: red;
    color: #ffffff;
}
.container{
    max-width: 935px;
    padding: 0;
}
.css-loader {
    border: 3px solid #f3f3f3; /* Light grey */
    border-top: 3px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 0.5s linear infinite;
}
.emojioneemoji {
    width: 20px;
}
.triangle-with-shadow {
    width: 80px;
    height: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 0px -17px rgba(176,176,176, 0.5);
}
.triangle-with-shadow:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    transform: rotate(45deg);
    top: 20px;
    left: 25px;
    box-shadow: -1px -1px 10px -2px rgba(176,176,176, 0.5);
}
.triangle-with-shadow:hover, .triangle-with-shadow:hover:after {
    box-shadow: none;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.hide{
    display: none;
}
.bootstrap-tagsinput{
    width: 100% !important;
    margin-top: 5px;
}
a {
    color: #000000;
    text-decoration: none !important;
}
.btn{
    cursor: pointer;
}
.btn-default{
    background: white;
    color: #000000 !important;
}
input{
    font-size: 12px;
}
.form-control{
    font-size: 12px !important;
    font-family: 'Poppins', sans-serif;
}
.file-chooser {
    display: block;
    position: relative;
}
.file-chooser input{
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    opacity: 0;
}
.tags-lg {
    padding: 10px 25px !important;
}
.tag-default{
    background: none;
    color: #000000 !important;
    border: solid 1px black !important;
}
.tag-default:hover{
    color: grey !important;
    border-color: grey !important;
}
.load-bar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    width: 100%;
    height: 3px;
    background-color: #fdba2c;
    display: none;
}
.bar {
    content: "";
    display: inline;
    position: absolute;
    width: 0;
    height: 100%;
    left: 50%;
    text-align: center;
}
.bar:nth-child(1) {
    background-color: #da4733;
    animation: loading 3s linear infinite;
}
.bar:nth-child(2) {
    background-color: #3b78e7;
    animation: loading 3s linear 1s infinite;
}
.bar:nth-child(3) {
    background-color: #fdba2c;
    animation: loading 3s linear 2s infinite;
}
@keyframes loading {
    from {left: 50%; width: 0;z-index:100;}
    33.3333% {left: 0; width: 100%;z-index: 10;}
    to {left: 0; width: 100%;}
}
.no-padding{
    padding: 0;
}
#header{
    background: white;
    border-bottom: 1px solid rgba(0,0,0,.0975);
    height: 54px;
}
#header > .container{
    display: flex;
    align-items: center;
    height: 100%;
    gap: 12px;
}
#header .navbar-brand{
    flex: 0 0 auto;
    margin-right: 8px;
}
#header.public-header .navbar-brand{
    display: inline-flex;
    align-items: center;
    min-width: 0;
}
.public-company-mark{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-weight: 800;
}
.public-company-mark span:last-child{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap !important;
}
.public-company-dot{
    width: 34px;
    height: 34px;
    border-radius: 100px;
    display: inline-block;
    flex: 0 0 auto;
}
.public-company-brand-logo{
    display: block;
    max-width: 170px;
    max-height: 38px;
    object-fit: contain;
}
#header-nav {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    flex: 0 1 auto;
    min-width: 0;
}
.rtl-layout #header-nav {
    position: absolute;
    right: 12%;
}
.rtl-layout .header-right-nav {
    position: absolute;
    left: 0;
}
.rtl-layout .float-left{
    float: right !important;
}
.rtl-layout .float-right{
    float: left !important;
}
#header-nav li{
    padding: 0px 5px;
    border-bottom: solid 3px transparent;
}
#header-nav li:hover{
    border-bottom: solid 3px #DBDBDB;
}
#header-nav .active{
    border-bottom: solid 3px red !important;
}
#header-nav li .nav-link{
    position: relative;
    bottom: 0;
    white-space: nowrap !important;
}
#header-nav li .nav-link i{
    font-size: 17px;
    position: relative;
    top: 2px;
}
#header .search-control{
    position: static;
    flex: 1 1 220px;
    max-width: 260px;
    min-width: 160px;
    height: 55px;
    display: flex;
    align-items: center;
    background: none;
    border-left: solid 1px #DBDBDB;
    border-right: solid 1px #DBDBDB;
    margin-left: auto;
    padding: 0 10px;

}
.rtl-layout #header .search-control {
    right: auto;;
    left: 15%;
    border-left: solid 1px #DBDBDB;
    border-right: none;
}
#header .search-control input{
    background: none;
    border: none;
    outline: none;
    min-width: 0;
    width: 100%;
}
#header .search-control i{
    position: relative;
    top: 2px;
}
#header .header-right-nav .nav-link i{
    font-size: 15px;
}
#header .header-right-nav{
    flex: 0 0 auto;
    min-width: 0;
}
#header .header-right-nav .navbar-nav{
    align-items: center;
    flex-direction: row;
}
.public-footer-bar{
    margin-top: 28px;
    border-top: 1px solid rgba(0,0,0,.0975);
    background: #ffffff;
}
.public-footer-bar > .container{
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
}
.public-footer-company{
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.public-footer-company strong,
.public-footer-company small{
    display: block;
}
.public-footer-company small{
    color: #6b7280;
    font-size: 12px;
}
.public-footer-logo{
    display: block;
    max-width: 120px;
    max-height: 34px;
    object-fit: contain;
}
.public-footer-brand{
    font-weight: 800;
    color: #111827;
    white-space: nowrap !important;
}
#header .header-right-nav .add-button{
    width: 30px;
    height: 30px;
    background: red;
    border-radius: 100px;
    color: #ffffff;
    border: none;
    font-size: 20px;
    padding: 0 4px !important;
    text-align: center;
    position: relative;
    top: 3px;
}
#header .header-right-nav .add-button i{
    font-size: 20px;
    position: relative;
    top: 2px;
    left: 1px;
}
#header .header-right-nav .user-account-menu > a{
    width: 30px;
    height: 30px;
    text-align: center;
    position: relative;
    top: 3px;
    border-radius: 100px;
    color: #575757;
    font-size: 20px;
    padding: 0;
    margin: 0 5px;
    overflow: hidden;
}
#header .header-right-nav .user-account-menu > a img{
    width: 30px;
    height: 30px;
    border-radius: 100px;
    position: relative;
    bottom: 3px;
}
#header .header-right-nav .user-account-menu .dropdown-menu{
    width: 150px;
    top: 0px;
}
#header .header-right-nav .user-account-menu.dropdown-item span{
    color: grey;
}
#main-content-area{
    margin-top: 60px;
}
.pane {
    background: white;
    margin: 20px 0px;
    border: 1px solid rgba(0,0,0,.0975);
}
.pane .right{
    border-left: 1px solid rgba(0,0,0,.0975);
}
.pane .menu{
    padding: 0;

}
.pane .menu .nav-link{
    color: #000000;
    width: 100%;
    padding: 15px 20px !important;
    background: white;
    border-left: solid 2px white;
}
.pane .menu .nav-link:hover, .pane .menu .active{
    background: #F6F6F6;
    border-left: solid 2px #616161;
}
.rtl-layout .pane .right {
    border-left:none;
    border-right: 1px solid rgba(0,0,0,.0975);
}
.rtl-layout .pane .menu .nav-link {
    border-left:none;
    border-right: solid 2px white;
}
.rtl-layout .pane .menu .nav-link:hover, .rtl-layout .pane .menu .active {
    border-left: none;
    border-right: solid 2px #616161;
}
.pane .right{
    padding: 20px;
}
.pane .title{
    font-size: 18px;
    margin: 10px 0;
}
.pane .nav-tabs{
    margin-bottom: 20px;
}
#homepage {
    background-image: url(../images/background.png);
    background-position: center;
    background-size: cover;
    position: fixed;
    width: 100%;
    height: 100vh;
}
#homepage .cover-bg{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.2);
}
#home-footer-members {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: rgba(0,0,0,0.9);
    overflow: hidden;
    text-align: center;
}
#home-footer-members a {
    margin: 8px 5px;
    display: inline-block;
}
#home-footer-members a img{
    width: 30px;
    height: 30px;
    border-radius: 100px;
}
#home-content{
    width: 25%;
    min-height: 400px;
    margin: 3% auto;
    text-align: center;
    z-index: 99 !important;
    position: relative;
}

#home-content .logo{
    width: 200px;
    margin: 30px auto;
    display: block;
}
#home-content .welcome-text{
    color: white;
    font-size: 18px;
}
#home-language-switch {
    position: absolute;
    top: 10px;
    right: 20px;
}
#home-language-switch  > a{
    font-size: 15px;
    color: #ffffff;
}
#home-footer-links {
    position: absolute;
    bottom: 60px;
    width: 100%;
    padding: 10px 20px;
    color: #ffffff;
}
#home-footer-links a{
    color: white;
    font-size: 15px;
}
.home-forgot-link {
    color: white;
    margin-top: 20px;
    display: block;
    text-align: center;
}
.home-access-links {
    position: absolute;
    top: 20px;
    left: 20px;
}
.loader-container {
    position: fixed;
    top: 0;
    display: none;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.9);
    z-index: 99999999999;
    padding: 20% 0;
    text-align: center;

}
.loader-container .css-loader{
    margin:30px auto;
}
.form-pane{
    background: white;
    margin: 15px 0;
    border-radius: 3px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.form-pane .form-control{
    border-radius: 0;
    border: none;
    border-bottom: solid 1px #ECECEC;
    padding: 15px ;
    font-size: 13px !important;
    background: none;
}
.form-pane .form-control:focus {
    background: #F1F1F1;
}
.form-pane .form-control:last-child{
    border: none;
}
.skip_button{
    margin: 20px 0;
    display: block;
    text-align: center;
}
#getstarted-step-1 {
    padding-top: 15%;
    text-align: center;
}
#getstarted-step-1 img{
    border-radius: 100px;
}
.tags-suggestion {
    position: relative;
    width: 100%;
}
.tags-suggestion .tags-dropdown{
    position: absolute;
    top: 40px;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
    background-clip: padding-box;
    width: 100%;
    max-height: 200px;
    border-radius: 3px;
    overflow:auto;
}
#placeholder-editor  .avatar{
    width: 40px;
    margin: 17px auto;
    display: block;
    height: 40px;
    border-radius: 100%;
}
#placeholder-editor .col-sm-2{
    background: #F1F1F1
}
#placeholder-editor  ul li {
    border-right: dashed 1px #F1F1F1;
}
#placeholder-editor  ul li:last-child {
    border: none;
}
#placeholder-editor  ul li a {
    text-align: center;
    color: #000000;
    font-weight: 500;
}
#placeholder-editor  ul li a img{
    display: block;
    margin: auto;

}
.fab-button{
    background: red;
    color: #ffffff !important;
}
.fab-link{
    background: white;
    color: #000000;
}
#post-editor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    overflow: auto;
    overflow-x:hidden ;
    display: none;
}
#post-editor .cover{
    background: rgba(255,255,255,0.9);
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
}
#post-editor .container {
    padding-top: 100px;
}
#post-editor .head{
    border-bottom: dashed 2px #D9D9D9;
    padding: 10px;
}
#post-editor .head img{
    width: 30px;
    height: 30px;
    border-radius: 100%;
}
#post-editor .head span{
    font-weight: bold;
}
#post-editor .body{
    background: #ECECEC;
    padding: 10px;
}
#post-editor .body .btn-default{
    background: none;
    color: grey !important;
    padding: 10px;
    border: dashed 1px #D9D9D9;
}
#post-editor .body .post{
    display: none;
}
#post-editor .post-footer{
    padding: 10px;
    border-top: dashed 2px #D9D9D9;
}
.each-post .head{
    border-bottom: solid 1px #ECECEC;
    padding: 10px 20px;
}
.each-post .head img{
    width: 40px;
    height: 40px;
    border-radius: 100px;
}
.each-post .head span{
    font-weight: bold;
    color: grey;
    margin-left: 5px;
}
.each-post .body iframe{
    width:100% !important;
}
.each-post .body .post-images {
    width: 100%;
    min-height: 250px;
    position: relative;
}
.each-post .body .post-images .image{
    width: 100%;
    display: none;
    min-height: 250px;
    position: relative;
}
.each-post .body .post-images .image img{
    width: 100% !important;
}
.each-post .body .post-images .image-0{
    display: block;
}
.each-post .body .post-images .nav-btn{
    position: absolute;
    top: 30%;
    font-size: 40px;
    z-index: 999;
    background: rgba(0,0,0,0.1);
    border-radius: 5px;
    color: white;
    text-decoration: none !important;
}
.each-post .body .post-images .nav-right{
    right: 0;
}
.each-post .foot {
    padding: 5px 20px;
}
.each-post .post-like-container li{
}
.each-post .post-like-container a{
    font-size: 25px;
    padding: 0;
    text-align: left !important;
    margin-right: 20px !important;
}
.each-post .post-like-container .float-right a{
    margin-right: 0 !important;
}
.each-post .comment-form{
    border-top: solid 1px #ECECEC;
    padding: 10px 0;
    margin-top: 10px;
}
.each-post .comment-form .float-left{
    width: 90%;
}
.each-post .comment-form .float-left input{
    border: none;
}
.liked,.favourite{
    color: #ff0000 !important;
}

.comment{
    padding: 7px 0;
}
.btn-confirm-ok,.btn-confirm-cancel {
    padding: 7px 15px !important;
    border-radius: 2px !important;
}
.btn-confirm-ok {
    background: red !important;
    opacity: .8 !important;
}
.btn-confirm-ok:hover{
    opacity: .7 !important;
}
.btn-confirm-cancel {
    background: white !important;
    color: grey !important;
    border: solid 1px #ECECEC !important;
}

#profile-container .head{
    padding: 40px 10%;
}
#profile-container .head .avatar img{
    width: 150px;
    height: 150px;
    border-radius: 100px;
    border: solid 1px #D1D1D1;
}
#profile-container .head .nav a{
    font-size: 15px;
}
#profile-container .head .nav a span{
    font-weight: bold;
}

#profile-container .profile-menu{
    border-top: solid 1px #D1D1D1;
    margin: 30px 0;
}
#profile-container .profile-menu a{
    text-transform: uppercase;
    color: grey;
    position: relative;
    bottom: 2px;
    font-weight: 500;
}
#profile-container .profile-menu .active{
    color: #000000;
    border-top: solid 2px #000000;
}
.post-grid {
    border: solid 1px #D1D1D1;
    border-radius: 5px;
    height: 250px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}
.post-grid .post-images {
    width: 100%;
    height: 100%;
}
.post-grid .post-images{
    width: 100%;
    min-height: 100%;
    background-position: center;
    background-size: cover;
}
.post-grid iframe{
    width:100% !important;
}
.post-grid .info {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    color: white;
    z-index: 99;
    background: rgba(0,0,0,0.5);
    padding: 30% 0;
    display: none;
}
.post-grid .info .nav-item{
    font-size: 20px !important;
    margin: 10px;
}
#post-page-container {
    padding-top: 20px;
}
#post-page-container .col-md-5{
    border-left: solid 1px #D1D1D1;
}
#post-page-container .post-images {
    height: 500px;
}
#post-page-container .post-images .image{
    width: 100% !important;
    height: 100% !important;
    background-size: cover;
    background-position: center;
    position: relative;
}
#post-page-container .post-images .image img{
    width: 100% !important;
    height: 100% !important;
}
#post-viewer ,#photo-viewer{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    z-index: 99999;
    overflow: auto;
    overflow-x:hidden;
}
#post-viewer .close, #photo-viewer .close{
    color: white;

    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 99999;
}
.rtl-layout #post-viewer .close, .rtl-layout #photo-viewer .close {
    right: auto;
    left: 20px;
}
#post-viewer .cover, #photo-viewer .cover{
    background: rgba(0,0,0,0.8);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
#photo-viewer img {
    max-width: 100%;
}
#photo-viewer .container{
    padding-top: 50px;
}
.notification-dropdown {
    position: absolute;
    top: 40px;
    width: 300px;
    left: -100px;
    display: none;
    color: #000000;
}
.notification-dropdown .notification-content{
    height: 350px;
    width: 100%;
    background: white;
    border-radius: 7px;
    box-shadow: 0 16px 10px -17px rgba(0, 0, 0, 0.5);
    border: solid 1px #DEDEDD;
    position: relative;
    top: 0px;
}
.notification-dropdown .notification-content .notification-lists{
    width: 100%;
    height: 300px;
    overflow: auto;
}
.notification-dropdown .triangle-with-shadow {
    position: absolute;
    right: 55px;
    top: 5px;
    display: none;
    z-index: 99;
}
.notify{
    position: absolute;
    bottom: 0;
    width: 7px;
    height: 7px;
    border-radius: 100px;
    background: #DD5757;
    right: 10px;
}
.each-notification{
    border-bottom: solid 1px #EFEFEF;
    padding: 5px 10px;
}
.each-notification img{
    width: 40px;
    height: 40px;
    border-radius: 100px;
}
.each-notification h6{
    position: relative;
    top: 5px;
    font-weight: normal;
}
.each-notification .time{
    color: grey;
}
.not-unread{
    background: #FCFCFC;
}
#search-viewer {
    background: #FAFAFA;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99999;
    display: none;
    overflow: auto;
    overflow-x:hidden;
}
#search-viewer .close{
    position: fixed;
    right: 20px;
    top: 60px;
}
.rtl-layout #search-viewer .close {
    right: auto;
    left: 20px;
}
#search-viewer > .head{
    background: #DD5778;
    width: 100%;
    height: 150px;
    padding: 40px 0;
}
#search-viewer > .head input{
    height: 60px;
    background: none;
    border: none;
    font-size: 25px !important;
    color: #ffffff;
}
#search-viewer > .head i {
    color: #ffffff;
    font-size: 40px;
    position: relative;
    top: 20px;
}
#search-viewer .head input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-size: 25px;
    color: #ffffff;
}
#search-viewer .head input::-moz-placeholder { /* Firefox 19+ */
    color: pink;
}
#search-viewer .head input:-ms-input-placeholder { /* IE 10+ */
    color: pink;
}
#search-viewer .head input:-moz-placeholder { /* Firefox 18- */
    color: pink;
}
#search-viewer .content{
    padding: 20px 0;
}
.explore{
    padding-top: 30px;
}
.user{
    text-align: center;
    padding: 20px;
}
.user h6{
    margin:5px 0;
}
.user-inline{
    padding: 10px;
    border-bottom: solid 1px #F8F8F8;
    position: relative;
}
.user-inline .action{
    position: absolute;
    right: 5px;
    top: 25px;
}
.rtl-layout .user-inline img{
    margin-left: 10px;
}
.verify-badge{
    border-radius: 100px;
    height: 20px;
    width: 20px;
    font-size: 15px !important;
    text-align: center;
    padding:2px 3px;
    border: none;
}
.stat{
    border: solid 2px #F5F5F5;
    min-height: 80px;
    text-align: center;
    margin: 2px;
}
.stat .col-sm-4{
    background: #F5F5F5;
    font-size: 40px;
    padding: 10px 15px;
}
.stat .count{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

#messagesDialog .modal-body{
    height: 60vh !important;
    background: #ECECEC;
    overflow: auto;
}
#messagesDialog #new-message-btn {
    position: absolute;
    right: 40px;
    top: 17px;
}
#chat-message-container {

}
#chat-message-container form{
    padding: 10px;
    display: block;
}
#chat-message-container form textarea {
    border: none;
}
.chat {
    display: block;
    margin-bottom: 5px;
}
.chat .left{
    background: white;
    padding: 5px;
    display: inline-block;
    border-radius: 10px;
}
.chat .right{
    padding: 5px;
    display: inline-block;
    border-radius: 10px;
    background: #7893E4;
    color: white;
}
.chat .time{
    margin-top: 4px;
    font-weight: bold;
    font-size: 11px;
}
#social-auth-links a{
    background: #E7E7E7;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: inline-block;
    text-align: center;
    padding: 5px 0;
    color: #5B5B5B;
}
.user-completion {
    background: #E9E9E9;
    padding: 10px;
}
.user-box .nav{
    padding: 10px 0 ;
    text-align: center;
}
.user-box .nav-link{

}
.user-box .nav span{
    display: block;
}
.badges-container {
    border-top: solid 1px #F2F2F2;
    padding: 5px 10px;
}
.badges-container img{
    width: 30px;
    height: 30px;
    margin: 4px;
}

.new-badge-hover {
    z-index: 9999999;
    width: 100%;
    top: 0;
    height: 100vh;
    position: fixed;
    background: rgba(0,0,0,1);
}
.new-badge-hover .close{
    margin: 20px;
    color: #ffffff;
}
.new-badge-hover .container{
    padding: 80px;
    color: #ffffff;
}
.new-badge-hover .container h1{
    text-align: center;
}
.video-player-placeholder {
    display: block;
    width: 100%;
    height: 300px;
    background-position: center;
    background-size: cover;

}
.video-player-placeholder .detail{
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    text-align: center;
    padding-top: 15%;

    cursor: pointer;
    font-size: 50px;
}
.video-player-placeholder .detail:hover{
    background: rgba(255,255,255,0.5);
}
#post-page-container iframe, #post-page-container video{
    width: 100% !important;
    height: 500px !important;
}
#post-page-container .video-player-placeholder {
    height: 500px;
}
#post-page-container .video-player-placeholder .detail {
    padding-top: 35%;
}
.close {
    z-index: 9999999;
}
.caption img{
    width: 30px;
    height: 30px;
}
.small-notification-link {
    display: none !important;
}
.chat-message-form .left{
    width: 90%;
    float: left;
}
.chat-message-form .right{
    width: 10%;
    float: left;
    text-align: right;
}
.story-box {
}
.story-box .titl {
    color: grey;
}
.story-box ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.story-box ul li{
    float: left;
    margin-right: 5px;
}
.story-box ul li a{
    width: 70px;
    height: 70px;
    background-color: #F7F7F7;
    background-position: center;
    background-size: cover;
    border: solid 2px #F7F7F7;
    display: block;
    border-radius: 100px;
    text-align: center;

}
.story-box ul li .active {
    border: solid 2px #C9C9C9;
    background-color: #ffffff;
}
.story-box ul li a i{
    font-size: 50px;
    position: relative;
    margin: 8px 0;
    color: #E3E3E3;
    display: block;
}
#story-viewer {
    position: fixed;
    z-index: 99999;
    top: 0;
    display: none;
    height: 100%;
    width: 100%;
    background: #414141;
}
#story-viewer .close {
    display: block;
    margin: 20px;
    color: #ffffff;
    z-index: 99999999;
}
#story-viewer .content{
    max-width: 400px;
    padding: 10px 0px;
    position: relative;
    height: 100vh;
}
#story-viewer .content .story-main-content{

    margin: 5px 30px;
    height: 85vh;
    border-radius: 5px;
    background-color: black;
    background-position: center;
    background-size: cover;
}
#story-viewer .content .story-main-content video {
    width: 100%;
    height: 400px;
    margin-top: 20%;
}
#story-viewer .content .story-main-content .not-available{
    display: block;
    text-align: center;
    font-size: 15px;
    color: #ffffff;
    padding: 40% 0;
}
#story-viewer .content .story-nav{
    position: absolute;
    color: #ffffff;
    font-size: 20px;
    top: 45%;
}
#story-viewer .content .story-nav-right{
    right: 0;
}
#story-viewer .content .indicator {
    width: 100%;
    display: block;
    padding: 10px 30px;
}
#story-viewer .content .indicator a{
    display: block;
    float: left;
    margin: 2px 0;
    border: none;
    padding:0 2px;
    padding-left: 0;
}
#story-viewer .content .indicator a:last-child {
    padding-right: 0;
}
#story-viewer .content .avatar{
    padding: 0 30px;
    color: white;
    font-weight: bold;
}
#story-viewer .content .avatar img{
    width: 40px;
    height: 40px;
    border-radius: 100px;
    margin-right: 10px;
}
.jcarousel-control-prev,.jcarousel-control-next {
    background: rgba(255,255,255,0.6);
    color: #000000;
}
#inline-people-suggestion li{
    width: 200px !important;
    margin-right: 10px;
}
#inline-people-suggestion .user{
    width: 200px;
    display: inline-block;
}
@media(max-width: 760px){
    #search-viewer > .head input {
        width: 70%;
    }
    #homepage {
        overflow: auto;
        overflow-x:hidden;
    }
    #home-content {
        width: 90%;
    }
    #home-footer-links {
        position: relative;
        bottom:0 ;
    }
    #home-footer-links a{
        display: none;
    }
    #home-footer-members {
        position: relative;
        background: none;
    }
    #home-content .logo {
        width: 100px;
    }
    #profile-container {
        margin-top: 0;
    }
    #profile-container .head{
        text-align: center;
    }
    #profile-container .head .nav{
        width: 100%;

    }
    #profile-container .head .nav li{

    }

    #profile-container .avatar {
        margin:10px auto !important;
        display: block;
        text-align: center;
    }

    .large-notification-link {
        display: none !important;
    }
    .small-notification-link {
        display: inline-block !important;
    }
}
@media (max-width: 600px) {
    #placeholder-editor{
        margin-top: 0;
    }
    #placeholder-editor .col-sm-2 {
        display: none;
    }
    #placeholder-editor .nav-item a span{
        display: none;
    }
}
@media(max-width: 800px) {
    .feed-right{
        display: none;
    }
    .pane .right {
        border-left: none;
        border-top: solid 1px #EDEDED;
    }
    #search-viewer > .head i {
        display: none;
    }
    #header .navbar-nav {
        display: inline-block;
    }
    #header .navbar-nav li {
        display: inline-block;
    }
    #header .navbar-nav li a{
        padding: 11px 10px;
    }
    .container{
        padding: 0 20px;
    }
    #header {
        padding: 0;

        margin: 0;

    }
    #header .container{
        width: 100%;
        padding: 0 10px;
    }
    #header #header-nav {
        position: absolute;
        left: 20px;
        top: 10px;
        width: 100%;
        display: inline-block;
    }
    #header #header-nav a span{
        display: none;
    }
    #header .search-control {
        position: absolute;
        flex: none;
        min-width: 0;
        max-width: none;
        border: none;
        right: 29%;
        top: 3px;
        cursor: pointer;
    }
    .company-indicator {
        display: none;
    }
    .rtl-layout #header .search-control {
        right: auto;
        left: 23%;
        z-index: 99;
    }
    #header .search-control input{
        display: none;
    }
    .user-account-menu {
        position: relative;
    }
    .user-account-menu .dropdown-menu {
        position: absolute !important;
        right: 10px;

    }
    .navbar-brand {
        display: none;
    }
    #header.public-header .navbar-brand {
        display: inline-flex;
        max-width: 64%;
    }
    #header.public-header .public-company-mark span:last-child{
        max-width: 180px;
    }
    .header-right-nav {
        position: absolute;
        right: 0;
        top: 5px;
    }
    .rtl-layout .header-right-nav {
        left: 0;
        right: auto;
    }
    .notification-dropdown {
        position: absolute;
        left: -400px;
    }

}
@media(max-width: 550px) {
    .notification-dropdown {
        position: absolute;
        left: -300px;
    }
}
@media (max-width: 400px) {
    #header .header-right-nav .user-account-menu > a {
        width: 15px;
        height: 15px;
    }
    #header .header-right-nav li a{
        padding: 14px 5px;
    }

}
.gifplayer-wrapper ,.gifplayer-wrapper img{
    width: 100% !important;
    height: auto !important;
    position: relative !important;
}
.play-gif{
    top: 40% !important;
    left: 45% !important;
}

#post-page-container .nav-left{
    position: absolute;
    left: 0;
    top: 40%;
    color: white !important;
    font-size: 30px;
}
#post-page-container .nav-right{
    position: absolute;
    right: 0;
    top: 40%;
    color: #ffffff;
    font-size: 30px;
}
.company-chip{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 160px;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap !important;
}
.company-indicator{
    max-width: 180px;
    overflow: hidden;
}
.corporate-shell{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.corporate-shell--public{
    padding: 32px 0;
}
.corporate-hero{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f7 100%);
    border: 1px solid #f0e4e7;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
}
.corporate-hero--compact{
    padding: 20px 24px;
}
.corporate-hero h1,
.corporate-hero h4{
    margin: 0 0 8px 0;
}
.corporate-hero p{
    margin: 0;
    color: #6b7280;
}
.corporate-hero__actions{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.corporate-eyebrow{
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #e4405f;
}
.corporate-grid{
    row-gap: 16px;
}
.corporate-card{
    border-radius: 8px;
    border: 1px solid #edf0f3;
    box-shadow: 0 16px 38px rgba(17, 24, 39, 0.05);
    overflow: hidden;
}
.corporate-card__body{
    padding: 20px;
}
.corporate-card__body--table{
    padding: 0;
}
.corporate-card--filters{
    border-radius: 8px;
}
.corporate-card--company .corporate-card__body{
    min-height: 230px;
}
.corporate-card--sidebar{
    border-radius: 8px;
}
.corporate-company__badge{
    width: 48px;
    height: 48px;
    border-radius: 8px;
    margin-bottom: 14px;
}
.corporate-chipset{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.corporate-chip{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f4f6f8;
    font-size: 12px;
    font-weight: 700;
}
.corporate-list,
.corporate-side-list{
    list-style: none;
    margin: 0;
    padding: 0;
}
.corporate-list__item,
.corporate-side-list li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #edf0f3;
}
.corporate-list__item:last-child,
.corporate-side-list li:last-child{
    border-bottom: none;
}
.corporate-form__group label{
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}
.corporate-field-hint{
    display: block;
    margin-top: 6px;
    color: #6b7280;
    line-height: 1.4;
}
.corporate-form__actions{
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.corporate-form__actions--filters{
    margin-top: 4px;
}
.corporate-checkbox{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
}
.corporate-color{
    min-height: 40px;
}
.corporate-empty-state{
    padding: 48px 24px;
    text-align: center;
}
.corporate-empty-state h4{
    margin-bottom: 8px;
}
.corporate-table{
    margin: 0;
}
.corporate-table th,
.corporate-table td{
    padding: 14px 16px !important;
    vertical-align: middle;
}
.corporate-filters{
    display: block;
}
.corporate-summary-grid,
.corporate-context-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
}
.corporate-summary-card,
.corporate-context-card{
    padding: 16px 18px;
    border: 1px solid #edf0f3;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.04);
}
.corporate-summary-card span,
.corporate-context-card span{
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.corporate-summary-card strong,
.corporate-context-card strong{
    display: block;
    font-size: 20px;
    line-height: 1.2;
    color: #111827;
}
.corporate-summary-card--success{
    border-color: #d5f4e2;
    background: #f4fff8;
}
.corporate-summary-card--warning{
    border-color: #fde6bf;
    background: #fffaf0;
}
.corporate-summary-card--accent{
    border-color: #f5cbd6;
    background: #fff5f7;
}
.corporate-badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
}
.corporate-badge--neutral{
    background: #eef2f7;
    color: #334155;
}
.corporate-badge--muted{
    background: #f3f4f6;
    color: #6b7280;
}
.corporate-badge--success{
    background: #dcfce7;
    color: #166534;
}
.corporate-badge--warning{
    background: #fef3c7;
    color: #92400e;
}
.corporate-badge--danger{
    background: #fee2e2;
    color: #991b1b;
}
.corporate-badge--accent{
    background: #fce7f3;
    color: #9d174d;
}
.corporate-color-swatch{
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: -2px;
    border: 1px solid rgba(0,0,0,.12);
}
.corporate-timeline{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 12px 0;
}
.corporate-timeline__item{
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px;
    border: 1px solid #edf0f3;
    border-radius: 8px;
    background: #fbfcfd;
}
.corporate-timeline__item p{
    margin: 8px 0 0 0;
}
.corporate-form--reply{
    margin-top: 14px;
}
.corporate-public__ticket{
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #edf0f3;
}
.corporate-search-card{
    margin-top: 16px;
}
.corporate-search-group{
    margin-top: 12px;
}
.corporate-search-item{
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #edf0f3;
}
.corporate-search-item:last-child{
    border-bottom: 0;
}
.corporate-search-item strong,
.corporate-search-item span{
    display: block;
}
.corporate-search-item span{
    color: #6b7280;
    font-size: 12px;
}
.corporate-notification-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-right: 12px;
    border-radius: 50%;
    background: #fce7f3;
    color: #9d174d;
}
.corporate-post-meta{
    padding-bottom: 12px;
}
.corporate-post-meta h5{
    margin: 6px 0;
}
.corporate-feed-banner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #f1d9df;
    background: linear-gradient(135deg, #ffffff 0%, #fff3f6 100%);
}
.corporate-feed-banner__content h4{
    margin: 0 0 6px 0;
}
.corporate-public-feed__banner{
    border-top: 4px solid #e4405f;
    align-items: flex-start;
}
.corporate-public-feed__banner small{
    display: block;
    color: #6b7280;
    font-weight: 700;
}
.corporate-public-feed__search{
    display: flex;
    gap: 8px;
    min-width: 260px;
}
.corporate-public-feed__menus{
    padding: 14px;
}
.corporate-public-post__author{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}
.corporate-public-post__author img,
.corporate-public-avatar{
    width: 34px;
    height: 34px;
    border-radius: 100px;
    display: inline-block;
    object-fit: cover;
}
.corporate-public-post__image img{
    width: 100%;
    display: block;
}
.corporate-side-list--stacked li{
    align-items: flex-start;
}
.corporate-side-list--stacked li div{
    min-width: 0;
}
.corporate-side-list--stacked li strong,
.corporate-side-list--stacked li span{
    display: block;
}
.corporate-side-list--stacked li span{
    color: #6b7280;
    font-size: 12px;
}
.corporate-public{
    background: #f6f7fb;
    min-height: 100vh;
}
.corporate-public__hero{
    padding: 40px 0 24px 0;
    border-top: 6px solid #e4405f;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.06);
}
.corporate-public__hero-content{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
}
.corporate-public__search{
    display: flex;
    gap: 8px;
    min-width: 320px;
}
.corporate-chipset--public{
    margin-top: 16px;
}
.corporate-public__body{
    padding: 24px 0 40px 0;
}
.corporate-public__post{
    padding: 16px 0;
    border-bottom: 1px solid #edf0f3;
}
.corporate-public__post:last-child{
    border-bottom: none;
}
.corporate-nav__divider{
    margin-top: 8px;
    padding: 8px 16px !important;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #9ca3af;
}
.company-indicator .nav-link{
    padding-top: 6px !important;
}
@media(max-width: 991px) {
    .corporate-hero,
    .corporate-public__hero-content,
    .corporate-feed-banner{
        flex-direction: column;
        align-items: stretch;
    }
    .corporate-summary-grid,
    .corporate-context-grid{
        grid-template-columns: 1fr;
    }
    .corporate-public__search{
        min-width: 0;
    }
    .corporate-public-feed__search{
        min-width: 0;
        width: 100%;
    }
    .public-footer-bar > .container{
        align-items: flex-start;
        flex-direction: column;
        padding: 12px 15px;
    }
    #main-content-area{
        padding-bottom: 74px;
    }
    .mobile-bottom-nav{
        display: flex;
    }
}
.mobile-bottom-nav{
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    height: 58px;
    background: #ffffff;
    border-top: 1px solid #edf0f3;
    box-shadow: 0 -8px 22px rgba(17, 24, 39, 0.08);
    align-items: center;
    justify-content: space-around;
}
.mobile-bottom-nav a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #6b7280;
    font-size: 10px;
    font-weight: 700;
    min-width: 48px;
}
.mobile-bottom-nav a.active{
    color: #e4405f;
}
.mobile-bottom-nav i{
    font-size: 18px;
}
@media(max-width: 991px) {
    .mobile-bottom-nav{
        display: flex;
    }
}

/* Temas por empresa */
body.organizei-theme--padrao{}

body.organizei-theme--glassmorphism,
body.organizei-theme--skeuomorphism,
body.organizei-theme--neo-brutalism,
body.organizei-theme--claymorphism,
body.organizei-theme--minimalism,
body.organizei-theme--liquid-glass{
    background-color: var(--organizei-bg) !important;
    color: var(--organizei-text);
}
body.organizei-theme--glassmorphism{
    --organizei-bg: #eef4f7;
    --organizei-surface: rgba(255, 255, 255, .66);
    --organizei-surface-strong: rgba(255, 255, 255, .82);
    --organizei-text: #16212b;
    --organizei-muted: #5f6f7b;
    --organizei-border: rgba(255, 255, 255, .62);
    --organizei-radius: 18px;
    --organizei-shadow: 0 20px 50px rgba(20, 35, 50, .13);
    --organizei-header-bg: rgba(255, 255, 255, .72);
}
body.organizei-theme--skeuomorphism{
    --organizei-bg: #edf0f2;
    --organizei-surface: #f8fafb;
    --organizei-surface-strong: #ffffff;
    --organizei-text: #1e2a33;
    --organizei-muted: #64727d;
    --organizei-border: #d5dde3;
    --organizei-radius: 10px;
    --organizei-shadow: 8px 8px 18px rgba(120, 132, 142, .24), -7px -7px 14px rgba(255, 255, 255, .9);
    --organizei-header-bg: #f7f9fa;
}
body.organizei-theme--neo-brutalism{
    --organizei-bg: #f6f2df;
    --organizei-surface: #fffdf3;
    --organizei-surface-strong: #ffffff;
    --organizei-text: #111111;
    --organizei-muted: #373737;
    --organizei-border: #111111;
    --organizei-radius: 2px;
    --organizei-shadow: 6px 6px 0 #111111;
    --organizei-header-bg: #fffdf3;
}
body.organizei-theme--claymorphism{
    --organizei-bg: #f1f5f3;
    --organizei-surface: #ffffff;
    --organizei-surface-strong: #ffffff;
    --organizei-text: #1c2b26;
    --organizei-muted: #60716a;
    --organizei-border: rgba(28, 43, 38, .08);
    --organizei-radius: 22px;
    --organizei-shadow: 0 18px 36px rgba(54, 76, 68, .13);
    --organizei-header-bg: #ffffff;
}
body.organizei-theme--minimalism{
    --organizei-bg: #ffffff;
    --organizei-surface: #ffffff;
    --organizei-surface-strong: #ffffff;
    --organizei-text: #171717;
    --organizei-muted: #666666;
    --organizei-border: #e7e7e7;
    --organizei-radius: 4px;
    --organizei-shadow: none;
    --organizei-header-bg: #ffffff;
}
body.organizei-theme--liquid-glass{
    --organizei-bg: #edf6f8;
    --organizei-surface: rgba(255, 255, 255, .56);
    --organizei-surface-strong: rgba(255, 255, 255, .78);
    --organizei-text: #102027;
    --organizei-muted: #5f737a;
    --organizei-border: rgba(255, 255, 255, .7);
    --organizei-radius: 20px;
    --organizei-shadow: 0 24px 60px rgba(13, 40, 50, .15);
    --organizei-header-bg: rgba(255, 255, 255, .68);
}
body.organizei-theme--glassmorphism #header,
body.organizei-theme--skeuomorphism #header,
body.organizei-theme--neo-brutalism #header,
body.organizei-theme--claymorphism #header,
body.organizei-theme--minimalism #header,
body.organizei-theme--liquid-glass #header{
    border-bottom-color: var(--organizei-border);
    box-shadow: var(--organizei-shadow);
}
body.organizei-theme--glassmorphism #header,
body.organizei-theme--liquid-glass #header,
body.organizei-theme--glassmorphism .pane,
body.organizei-theme--liquid-glass .pane,
body.organizei-theme--glassmorphism .corporate-card,
body.organizei-theme--liquid-glass .corporate-card,
body.organizei-theme--glassmorphism .corporate-hero,
body.organizei-theme--liquid-glass .corporate-hero,
body.organizei-theme--glassmorphism .corporate-feed-banner,
body.organizei-theme--liquid-glass .corporate-feed-banner,
body.organizei-theme--glassmorphism .each-post,
body.organizei-theme--liquid-glass .each-post,
body.organizei-theme--glassmorphism .mobile-bottom-nav,
body.organizei-theme--liquid-glass .mobile-bottom-nav,
body.organizei-theme--glassmorphism .public-footer-bar,
body.organizei-theme--liquid-glass .public-footer-bar{
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    backdrop-filter: blur(18px) saturate(145%);
}
body.organizei-theme--liquid-glass #header,
body.organizei-theme--liquid-glass .pane,
body.organizei-theme--liquid-glass .corporate-card,
body.organizei-theme--liquid-glass .corporate-hero,
body.organizei-theme--liquid-glass .corporate-feed-banner,
body.organizei-theme--liquid-glass .each-post,
body.organizei-theme--liquid-glass .mobile-bottom-nav,
body.organizei-theme--liquid-glass .public-footer-bar{
    -webkit-backdrop-filter: blur(24px) saturate(170%);
    backdrop-filter: blur(24px) saturate(170%);
}
body.organizei-theme--glassmorphism .pane,
body.organizei-theme--skeuomorphism .pane,
body.organizei-theme--neo-brutalism .pane,
body.organizei-theme--claymorphism .pane,
body.organizei-theme--minimalism .pane,
body.organizei-theme--liquid-glass .pane,
body.organizei-theme--glassmorphism .corporate-card,
body.organizei-theme--skeuomorphism .corporate-card,
body.organizei-theme--neo-brutalism .corporate-card,
body.organizei-theme--claymorphism .corporate-card,
body.organizei-theme--minimalism .corporate-card,
body.organizei-theme--liquid-glass .corporate-card,
body.organizei-theme--glassmorphism .corporate-hero,
body.organizei-theme--skeuomorphism .corporate-hero,
body.organizei-theme--neo-brutalism .corporate-hero,
body.organizei-theme--claymorphism .corporate-hero,
body.organizei-theme--minimalism .corporate-hero,
body.organizei-theme--liquid-glass .corporate-hero,
body.organizei-theme--glassmorphism .corporate-feed-banner,
body.organizei-theme--skeuomorphism .corporate-feed-banner,
body.organizei-theme--neo-brutalism .corporate-feed-banner,
body.organizei-theme--claymorphism .corporate-feed-banner,
body.organizei-theme--minimalism .corporate-feed-banner,
body.organizei-theme--liquid-glass .corporate-feed-banner,
body.organizei-theme--glassmorphism .each-post,
body.organizei-theme--skeuomorphism .each-post,
body.organizei-theme--neo-brutalism .each-post,
body.organizei-theme--claymorphism .each-post,
body.organizei-theme--minimalism .each-post,
body.organizei-theme--liquid-glass .each-post{
    background: var(--organizei-surface);
    border-color: var(--organizei-border);
    border-radius: var(--organizei-radius);
    box-shadow: var(--organizei-shadow);
    color: var(--organizei-text);
}
body.organizei-theme--glassmorphism .corporate-card__body,
body.organizei-theme--skeuomorphism .corporate-card__body,
body.organizei-theme--neo-brutalism .corporate-card__body,
body.organizei-theme--claymorphism .corporate-card__body,
body.organizei-theme--minimalism .corporate-card__body,
body.organizei-theme--liquid-glass .corporate-card__body{
    background: transparent;
}
body.organizei-theme--glassmorphism .form-control,
body.organizei-theme--skeuomorphism .form-control,
body.organizei-theme--neo-brutalism .form-control,
body.organizei-theme--claymorphism .form-control,
body.organizei-theme--minimalism .form-control,
body.organizei-theme--liquid-glass .form-control{
    background: var(--organizei-surface-strong);
    border-color: var(--organizei-border);
    border-radius: var(--organizei-radius);
    color: var(--organizei-text);
    box-shadow: none;
}
body.organizei-theme--glassmorphism .form-control:focus,
body.organizei-theme--skeuomorphism .form-control:focus,
body.organizei-theme--neo-brutalism .form-control:focus,
body.organizei-theme--claymorphism .form-control:focus,
body.organizei-theme--minimalism .form-control:focus,
body.organizei-theme--liquid-glass .form-control:focus{
    border-color: var(--organizei-primary);
    box-shadow: 0 0 0 3px rgba(228, 64, 95, .12);
}
body.organizei-theme--glassmorphism .btn-primary,
body.organizei-theme--skeuomorphism .btn-primary,
body.organizei-theme--neo-brutalism .btn-primary,
body.organizei-theme--claymorphism .btn-primary,
body.organizei-theme--minimalism .btn-primary,
body.organizei-theme--liquid-glass .btn-primary,
body.organizei-theme--glassmorphism .corporate-chip,
body.organizei-theme--skeuomorphism .corporate-chip,
body.organizei-theme--neo-brutalism .corporate-chip,
body.organizei-theme--claymorphism .corporate-chip,
body.organizei-theme--minimalism .corporate-chip,
body.organizei-theme--liquid-glass .corporate-chip{
    border-radius: var(--organizei-radius);
}
body.organizei-theme--neo-brutalism #header,
body.organizei-theme--neo-brutalism .pane,
body.organizei-theme--neo-brutalism .corporate-card,
body.organizei-theme--neo-brutalism .corporate-hero,
body.organizei-theme--neo-brutalism .corporate-feed-banner,
body.organizei-theme--neo-brutalism .each-post,
body.organizei-theme--neo-brutalism .form-control,
body.organizei-theme--neo-brutalism .mobile-bottom-nav,
body.organizei-theme--neo-brutalism .public-footer-bar{
    border-width: 2px;
    border-style: solid;
}
body.organizei-theme--neo-brutalism .btn-primary,
body.organizei-theme--neo-brutalism .corporate-chip{
    border: 2px solid #111111 !important;
    box-shadow: 4px 4px 0 #111111;
    color: #111111 !important;
    font-weight: 800;
}
body.organizei-theme--neo-brutalism .btn-primary{
    background: var(--organizei-primary) !important;
}
body.organizei-theme--neo-brutalism .btn-primary:hover,
body.organizei-theme--neo-brutalism .corporate-chip:hover{
    transform: translate(1px, 1px);
    box-shadow: 3px 3px 0 #111111;
}
body.organizei-theme--skeuomorphism .btn-primary,
body.organizei-theme--skeuomorphism .corporate-chip{
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45), 0 6px 12px rgba(70, 82, 92, .18);
}
body.organizei-theme--claymorphism .btn-primary,
body.organizei-theme--claymorphism .corporate-chip{
    box-shadow: 0 10px 20px rgba(54, 76, 68, .16);
}
body.organizei-theme--minimalism #header,
body.organizei-theme--minimalism .pane,
body.organizei-theme--minimalism .corporate-card,
body.organizei-theme--minimalism .corporate-hero,
body.organizei-theme--minimalism .corporate-feed-banner,
body.organizei-theme--minimalism .each-post,
body.organizei-theme--minimalism .mobile-bottom-nav,
body.organizei-theme--minimalism .public-footer-bar{
    box-shadow: none;
}
body.organizei-theme--glassmorphism .text-muted,
body.organizei-theme--skeuomorphism .text-muted,
body.organizei-theme--neo-brutalism .text-muted,
body.organizei-theme--claymorphism .text-muted,
body.organizei-theme--minimalism .text-muted,
body.organizei-theme--liquid-glass .text-muted,
body.organizei-theme--glassmorphism .corporate-hero p,
body.organizei-theme--skeuomorphism .corporate-hero p,
body.organizei-theme--neo-brutalism .corporate-hero p,
body.organizei-theme--claymorphism .corporate-hero p,
body.organizei-theme--minimalism .corporate-hero p,
body.organizei-theme--liquid-glass .corporate-hero p,
body.organizei-theme--glassmorphism .corporate-field-hint,
body.organizei-theme--skeuomorphism .corporate-field-hint,
body.organizei-theme--neo-brutalism .corporate-field-hint,
body.organizei-theme--claymorphism .corporate-field-hint,
body.organizei-theme--minimalism .corporate-field-hint,
body.organizei-theme--liquid-glass .corporate-field-hint{
    color: var(--organizei-muted) !important;
}
body.organizei-theme--glassmorphism .corporate-eyebrow,
body.organizei-theme--skeuomorphism .corporate-eyebrow,
body.organizei-theme--neo-brutalism .corporate-eyebrow,
body.organizei-theme--claymorphism .corporate-eyebrow,
body.organizei-theme--minimalism .corporate-eyebrow,
body.organizei-theme--liquid-glass .corporate-eyebrow,
body.organizei-theme--glassmorphism .mobile-bottom-nav a.active,
body.organizei-theme--skeuomorphism .mobile-bottom-nav a.active,
body.organizei-theme--neo-brutalism .mobile-bottom-nav a.active,
body.organizei-theme--claymorphism .mobile-bottom-nav a.active,
body.organizei-theme--minimalism .mobile-bottom-nav a.active,
body.organizei-theme--liquid-glass .mobile-bottom-nav a.active{
    color: var(--organizei-primary);
}
body.organizei-theme--glassmorphism .mobile-bottom-nav,
body.organizei-theme--skeuomorphism .mobile-bottom-nav,
body.organizei-theme--neo-brutalism .mobile-bottom-nav,
body.organizei-theme--claymorphism .mobile-bottom-nav,
body.organizei-theme--minimalism .mobile-bottom-nav,
body.organizei-theme--liquid-glass .mobile-bottom-nav,
body.organizei-theme--glassmorphism .public-footer-bar,
body.organizei-theme--skeuomorphism .public-footer-bar,
body.organizei-theme--neo-brutalism .public-footer-bar,
body.organizei-theme--claymorphism .public-footer-bar,
body.organizei-theme--minimalism .public-footer-bar,
body.organizei-theme--liquid-glass .public-footer-bar{
    background: var(--organizei-header-bg);
    border-color: var(--organizei-border);
}

/* ===== Home INDEX (widgets corporativos no topo do feed) ===== */
.corporate-home-index {
    padding: 16px 18px 18px;
    margin-bottom: 14px;
    border-radius: 14px;
}
.corporate-home-index__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 12px;
}
.corporate-home-index__header .corporate-eyebrow {
    font-size: 11px;
    letter-spacing: 1.2px;
    color: #8794a3;
}
.corporate-home-index__header h5 {
    margin: 0;
    font-weight: 600;
}
.corporate-home-index__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
.corporate-home-widget {
    background: #f7f9fc;
    border: 1px solid #e3e8ef;
    border-radius: 12px;
    padding: 12px;
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.corporate-home-widget:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}
.corporate-home-widget__head {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #4a5568;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #d8e0e8;
}
.corporate-home-widget__head i {
    font-size: 16px;
}
.corporate-home-widget__list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 180px;
    overflow-y: auto;
}
.corporate-home-widget__list li + li {
    margin-top: 6px;
}
.corporate-home-widget__list a,
.corporate-home-widget__list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 8px;
    color: #2d3748;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.3;
}
.corporate-home-widget__list a:hover {
    background: #ffffff;
    color: #1a202c;
    text-decoration: none;
}
.corporate-home-widget__list i.icons {
    flex-shrink: 0;
    font-size: 14px;
    color: #6b7280;
}
.corporate-home-widget__list span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.corporate-home-widget__list small {
    color: #8794a3;
    font-size: 11px;
    flex-shrink: 0;
}
.corporate-home-widget--links .corporate-home-widget__head i { color: #3f51b5; }
.corporate-home-widget--news .corporate-home-widget__head i { color: #e53e3e; }
.corporate-home-widget--absences .corporate-home-widget__head i { color: #d69e2e; }
.corporate-home-widget--tech .corporate-home-widget__head i { color: #38a169; }
@media (max-width: 768px) {
    .corporate-home-index__grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .corporate-home-index__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Indicador de cadeado em modulos restritos ===== */
.corporate-restricted-lock {
    display: inline-block;
    margin-left: 4px;
    color: #d69e2e;
    font-size: 12px;
    vertical-align: middle;
}
.corporate-restricted-lock:hover {
    color: #b7791f;
}
