@-webkit-keyframes ngdialog-fadeout {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes ngdialog-fadeout {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes ngdialog-fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes ngdialog-fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.ngdialog {
  box-sizing: border-box;
}

.ngdialog *,
.ngdialog *:before,
.ngdialog *:after {
  box-sizing: inherit;
}

.ngdialog {
  position: fixed;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.ngdialog.ngdialog-disabled-animation,
.ngdialog.ngdialog-disabled-animation .ngdialog-overlay,
.ngdialog.ngdialog-disabled-animation .ngdialog-content {
  -webkit-animation: none!important;
  animation: none!important;
}

.ngdialog-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadein 0.5s;
  animation: ngdialog-fadein 0.5s;
}

.ngdialog-no-overlay {
  pointer-events: none;
}

.ngdialog.ngdialog-closing .ngdialog-overlay {
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadeout 0.5s;
  animation: ngdialog-fadeout 0.5s;
}

.ngdialog-content {
  background: white;
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadein 0.5s;
  animation: ngdialog-fadein 0.5s;
  pointer-events: all;
}

.ngdialog.ngdialog-closing .ngdialog-content {
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadeout 0.5s;
  animation: ngdialog-fadeout 0.5s;
}

.ngdialog-close:before {
  font-family: 'Helvetica', Arial, sans-serif;
  content: '\00D7';
  cursor: pointer;
}

html.ngdialog-open,
body.ngdialog-open {
  overflow: hidden;
}
@-webkit-keyframes ngdialog-flyin{0%{opacity:0;-webkit-transform:translateY(-40px);transform:translateY(-40px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes ngdialog-flyin{0%{opacity:0;-webkit-transform:translateY(-40px);transform:translateY(-40px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes ngdialog-flyout{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-40px);transform:translateY(-40px)}}@keyframes ngdialog-flyout{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-40px);transform:translateY(-40px)}}.ngdialog.ngdialog-theme-default{padding-bottom:160px;padding-top:160px}.ngdialog.ngdialog-theme-default.ngdialog-closing .ngdialog-content{-webkit-animation:ngdialog-flyout .5s;animation:ngdialog-flyout .5s}.ngdialog-theme-default .ngdialog-content{-webkit-animation:ngdialog-flyin .5s;animation:ngdialog-flyin .5s;background:#FFFFFF;color:#444;font-family:"Helvetica Regular", Helvetica, Roboto, Arial, sans-serif;font-size:1.1em;line-height:1.5em;margin:0 auto;max-width:100%;position:relative;width:500px}.ngdialog-theme-default.large .ngdialog-content{width:80%;max-width:55.55556rem}@media only screen and (max-width: 40em){.ngdialog-theme-default.large .ngdialog-content{width:100%;max-width:100%}}
.ngdialog.ngdialog-theme-default .ngdialog-close{border-radius:5px;cursor:pointer;position:absolute;top:3%;right:3%}.ngdialog.ngdialog-theme-default .ngdialog-close:before{background:transparent;border-radius:3px;color:#bbb;content:'\00D7';font-size:26px;font-weight:400;height:30px;line-height:26px;position:absolute;right:3px;text-align:center;top:3px;width:30px}.ngdialog.ngdialog-theme-default .ngdialog-close:hover:before,.ngdialog.ngdialog-theme-default .ngdialog-close:active:before{color:#777}.ngdialog.ngdialog-theme-default .ngdialog-message{margin-bottom:.5em}.ngdialog.ngdialog-theme-default .ngdialog-input{margin-bottom:1em}.ngdialog.ngdialog-theme-default .ngdialog-input textarea,.ngdialog.ngdialog-theme-default .ngdialog-input input[type="text"],.ngdialog.ngdialog-theme-default .ngdialog-input input[type="password"],.ngdialog.ngdialog-theme-default .ngdialog-input input[type="email"],.ngdialog.ngdialog-theme-default .ngdialog-input input[type="url"]{background:#fff;border:0;border-radius:3px;font-family:inherit;font-size:inherit;font-weight:inherit;margin:0 0 .25em;min-height:2.5em;padding:.25em .67em;width:100%}.ngdialog.ngdialog-theme-default .ngdialog-input textarea:focus,.ngdialog.ngdialog-theme-default .ngdialog-input input[type="text"]:focus,.ngdialog.ngdialog-theme-default .ngdialog-input input[type="password"]:focus,.ngdialog.ngdialog-theme-default .ngdialog-input input[type="email"]:focus,.ngdialog.ngdialog-theme-default .ngdialog-input input[type="url"]:focus{box-shadow:inset 0 0 0 2px #8dbdf1;outline:none}.ngdialog.ngdialog-theme-default .ngdialog-buttons{*zoom:1}.ngdialog.ngdialog-theme-default .ngdialog-buttons:after{content:'';display:table;clear:both}.ngdialog.ngdialog-theme-default .ngdialog-button{border:0;border-radius:3px;cursor:pointer;float:right;font-family:inherit;font-size:.8em;letter-spacing:.1em;line-height:1em;margin:0 0 0 .5em;padding:.75em 2em;text-transform:uppercase}.ngdialog.ngdialog-theme-default .ngdialog-button:focus{-webkit-animation:ngdialog-pulse 1.1s infinite;animation:ngdialog-pulse 1.1s infinite;outline:none}.ngdialog-mp-title{background-color:#e4e6e6;margin:-15px;padding:10px 18px;font-weight:bold}.social-title{margin-top:10px;font-weight:bold}.ngdialog-mp-socials{padding:0;list-style:none;margin-top:0px;margin-bottom:10px;font-size:28px;margin-left:2px}.ngdialog-mp-socials li{padding-right:25px;display:inline-block;text-align:center}.ngdialog-mp-socials li:last-child{padding-right:0}.ngdialog-mp-socials li.twitter a{color:#4099ff}.ngdialog-mp-socials li.twitter a:hover{color:#0071f3}.ngdialog-mp-socials li.facebook a{color:#3b5998}.ngdialog-mp-socials li.facebook a:hover{color:#263961}.ngdialog-mp-socials li.linkedin a{color:#0077b5}.ngdialog-mp-socials li.linkedin a:hover{color:#004569}.button-small{font-size:0.92857rem}.ngdialog-errors{font-size:18px;margin-top:25px;margin-bottom:25px}.ngdialog.ngdialog-theme-default .button{font-weight:bold;margin-bottom:0px}.ngdialog.ngdialog-theme-default .message{margin-top:35px}@media (max-width: 568px){.ngdialog.ngdialog-theme-default .ngdialog-button:focus{-webkit-animation:none;animation:none}}.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-primary{background:#3288e6;color:#fff}.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-secondary{background:#e0e0e0;color:#777}.upgrade-info{display:inline-block;margin-bottom:3px}.ngdialog-wide .ngdialog-content{width:650px}

.link-loading{padding:10px;text-align:center;font-size:13px;background:#f6f6f6}.file-row .picture,#file-information .picture{text-align:center;font-size:41px;line-height:140px;border-right:1px solid #e0e0e1;color:#222 !important}.link-content{border:1px solid #e0e0e1;box-shadow:0px 0px 10px rgba(0,0,0,0.13);height:140px;position:relative;overflow:hidden}.link-content .picture-selector{position:absolute;bottom:0;height:50px;background:rgba(0,0,0,0.49);width:100%;padding:10px 20px;text-align:right}.link-content .picture-selector i{padding:5px 12px;background:rgba(0,0,0,0.7);color:#FFF;font-size:20px;line-height:20px;cursor:pointer}.link-content .details{padding:10px 15px;overflow:hidden}.link-content .details p{color:#515151;margin-bottom:0px;font-size:14px;line-height:16px;word-wrap:break-word;word-break:break-all}.link-content .details .link{color:#857D7D;display:block;margin-top:10px}.link-content .picture{width:200px;float:left;overflow:hidden;min-height:100px;height:140px;position:relative}.link-content .picture img{width:100% !important;height:auto;vertical-align:bottom;position:absolute;bottom:0}#link-information .picture img{width:auto !important;height:100%;vertical-align:bottom;position:absolute;bottom:0;max-width:130%}#file-information,#link-information{padding:20px;padding-bottom:0px;padding-top:10px}.remove{position:absolute;top:0;right:0;background:rgba(211,211,217,0.84);text-align:center;width:20px;height:20px}.pictures-thumbnails{height:100px;overflow:hidden;margin-bottom:10px;margin:0;padding:0px}.pictures-thumbnails>ul{margin:0px !important;padding:0px}.pictures-thumbnails>ul>li{overflow:hidden;height:100px;margin:0;padding:0px !important;position:relative}.pictures-thumbnails .add-more{background:#f6f6f6;width:187px;height:100px;line-height:100px;text-align:center;cursor:pointer;font-size:x-large}#progress-uploading{position:absolute;top:0;left:0;height:100%;width:100%;background:rgba(236,236,236,0.77);text-align:center;padding:70px}#file-upload-update-pdf,#file-upload-update{opacity:0;position:absolute;bottom:-5px;left:-5px;width:1px;height:1px}#updater-box{border-bottom:1px solid #B8BCCA;margin-bottom:20px;box-shadow:0px 2px 2px rgba(0,0,0,0.17);position:relative}#navigation-tabs{text-align:center;background:#f6f4f4}#navigation-tabs i{margin-right:10px}#navigation-tabs ul{margin:0px}#navigation-tabs li:first-child{border-right:1px solid #e0e0e1}#navigation-tabs li{font-weight:bold;font-size:13px;cursor:pointer;padding-bottom:0px;padding-right:0px;padding-left:0px}#navigation-tabs li a{padding:10px;color:#222;display:block;width:100%;height:100%}#navigation-tabs li:hover{background:#FFF}#navigation-tabs li:first-child{background:#FFF}#post-update-tab i{color:#73a238}#post-update-tab .fa-video-camera{margin-right:6px}#share-picture-tab i{color:#7e578c}#post-article-tab i{color:#593242}#post-event-tab i{color:#cebc45}#send-message-tab i{color:#428ac8}#post-update-tab,#share-picture-tab{padding:10px !important}#editor-place-holder{background:#FFF;border-top:none !important;padding:20px 20px !important}#editor-place-holder,#editor{border-left:0px;border-right:0px;padding:0px;font-size:14px !important}#title-wrapper{display:flex;align-items:center;border-top:1px solid #E0E0E1}#title-wrapper input{margin-bottom:0;padding:20px 20px 0 20px;border-style:none;transition:unset;box-shadow:unset;font-size:16px;color:#000}#title-wrapper input:focus{background-color:#FFF}#updater{background:#FFF}#updater button{background:#FFF;color:#515151;margin:0px;border-right:1px solid #e0e0e1}#updater .remove-button{font-size:10pt;padding:8px 10px;color:#fff;background-color:#dc3545;border-color:#dc3545}#updater .remove-button:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}#updater d .right button:first-child,#updater d .right li:first-child{border-left:1px solid #e0e0e1}#updater d .right button:last-child,#updater d .right li:last-child{border-right:none}#bottom-toolbar2{display:flex;align-items:center}#bottom-toolbar2 label{margin-left:10px}#bottom-toolbar2 input{position:relative;margin:0 0 0px 5px;height:30px}#bottom-toolbar{margin-top:0}#social-fields{position:absolute;height:0px;width:0px;overflow:hidden;opacity:0}#bottom-toolbar,#bottom-toolbar2{border-top:1px solid #e0e0e1;overflow:hidden;line-height:40px}#bottom-toolbar .inline-list,#bottom-toolbar2 .inline-list{margin-bottom:0px}#bottom-toolbar .inline-list li,#bottom-toolbar2 .inline-list li{border-right:1px solid #e0e0e1;padding-left:0;padding-top:10px;padding-right:20px}#bottom-toolbar .inline-list li:first-child,#bottom-toolbar2 .inline-list li:first-child{padding:10px 20px}#bottom-toolbar .inline-list li>*,#bottom-toolbar2 .inline-list li>*{display:inline}#bottom-toolbar .inline-list li input[type='radio'],#bottom-toolbar .inline-list li input[type='checkbox'],#bottom-toolbar2 .inline-list li input[type='radio'],#bottom-toolbar2 .inline-list li input[type='checkbox']{height:15px;width:15px;top:3px}#bottom-toolbar input,#bottom-toolbar2 input{display:inline;margin-left:10px;position:relative;top:-1px}#bottom-toolbar .fa.fa-twitter,#bottom-toolbar2 .fa.fa-twitter{margin-left:10px;color:#00aced}#bottom-toolbar #twitter,#bottom-toolbar #twitter2,#bottom-toolbar2 #twitter,#bottom-toolbar2 #twitter2{margin-left:2px}#post-update,#post-update2{background:#77bd21 !important;border-radius:3px;padding:12px 39px;line-height:8px;color:#FFF !important;margin-right:10px !important;border-left:none !important}#show-preview{background:#00adee !important;border-radius:3px;padding:12px 39px;line-height:8px;color:#FFF !important;margin-right:10px !important;border-left:none !important}.picture-row .owl-carousel{position:relative}.picture-row .owl-carousel .owl-nav{position:absolute;top:50%;width:100%;transform:translateY(-50%);margin:0}.picture-row .owl-carousel .owl-nav .owl-prev{position:absolute;left:-50px}.picture-row .owl-carousel .owl-nav .owl-next{position:absolute;right:-50px}.picture-row .owl-carousel .owl-nav button{color:white !important;padding:5px 10px !important;border-radius:3px}.picture-row .owl-carousel .owl-nav button span{font-size:36px !important}

.company{font-size:13px;color:#185079}.name{font-size:15px;color:#438ac8}.ocupation{color:#515151}.play-embeded i{font-size:55px;color:#fff;line-height:140px;font-weight:bold;border-radius:50%;text-shadow:1px 0px 11px rgba(0,0,0,0.48)}.play-embeded{text-align:center;cursor:pointer}#updates{margin-bottom:30px}#updates .test-thumbnail{width:40px !important;height:40px !important}#updates .link-content.player{height:200px !important}#updates .video-player{width:400px;float:left;overflow:hidden}#updates .video-player-s3{max-height:400px;width:100%;float:left;overflow:hidden}#updates .placeholder-update .poster-picture-thumbnail.left{background:#dadada;height:75px !important;width:75px !important}#updates .placeholder-update .poster-name-ocupation .title,#updates .placeholder-update .poster-name-ocupation .name,#updates .placeholder-update .poster-name-ocupation .ocupation{background:#dadada;width:200px;height:16px;display:block;margin-bottom:5px}#updates .placeholder-update .author-actions .open{height:35px;width:100px;border-color:#cdcdcd}#updates .placeholder-update .actions,#updates .placeholder-update .content{background:#e7e7e7 !important;text-align:center}#updates .placeholder-update .actions i,#updates .placeholder-update .content i{font-size:16px;color:#a7a7a7}#updates .placeholder-update .success{background:#cdcdcd}#updates>ul{list-style:none;padding:0px;margin:0px}#updates .button.open{font-size:13px;border-radius:3px;background:none;color:#000;border:1px solid #222930;padding:7px 20px;margin:0px 10px}#updates .button.open:hover{background:#4289c8;color:#FFF;border-color:#3981c2}#updates .connection .user-picture{overflow:hidden;border-radius:3px;width:85px;height:85px;margin-right:20px}#updates .connection .user-info{width:340px}#updates .connection .user-info a{display:block}#updates .connection .user-actions{margin-top:30px;overflow:hidden}#updates .ca-header .header .ocupation{display:inline !important}#updates .ca-header .title{font-size:14px !important}#updates .nested{padding:20px;border-bottom:1px solid #B8BCCA;margin-bottom:20px;box-shadow:0px 2px 2px rgba(0,0,0,0.17);border-top:1px solid #e0e0e1;margin-top:10px}#updates .update-wrapper{margin-bottom:50px;position:relative}#updates .update-wrapper .testimonial-author{margin-top:10px;border-top:1px solid #e0e0e1;padding:10px 0px}#updates .update-wrapper .testimonial-author .user-info .name,#updates .update-wrapper .testimonial-author .user-info .company{display:inline}#updates .update-wrapper .user-picture{overflow:hidden;border-radius:3px;width:75px;height:75px;margin-right:10px}#updates .update-wrapper .user-info{overflow:hidden}#updates .update-wrapper .content-wrapper{border-bottom:1px solid #B8BCCA;margin-bottom:20px;box-shadow:0px 2px 2px rgba(0,0,0,0.17);margin-bottom:0px !important;margin-top:9px;background:#FFF}#updates .update-wrapper span{display:block;font-size:13px;color:#515151}#updates .update-wrapper span.title{font-size:18px;margin-bottom:5px;margin-top:-1px;color:#222}#updates .update-wrapper span.title i{border-radius:3px;border-color:#B4B3B3;color:#ACACAC;margin-right:5px}#updates .update-wrapper .picture-row{margin-bottom:20px;text-align:center;background:#F8F6F6}#updates .update-wrapper .picture-row .clearing-assembled .clearing-container .carousel>ul li{width:auto !important}#updates .update-wrapper .picture-row ul{margin:0;padding:0}#updates .update-wrapper .picture-row ul li{margin:0px;padding:0px;height:100%;overflow:hidden;border-right:2px solid #FFF}#updates .update-wrapper .picture-row ul li img{width:auto;max-width:600px;max-height:300px !important}#updates .update-wrapper .picture-row ul li:last-child{border-right:none !important}#updates .update-wrapper .picture-row .picture-grid{display:flex;justify-content:center;align-items:center;gap:10px;list-style:none;padding:0;margin:0;flex-wrap:wrap}#updates .update-wrapper .content{padding:20px}#updates .update-wrapper .content h2{font-family:'Roboto Slab', serif;margin-bottom:15px;font-size:22px}#updates .update-wrapper .content h2 a{color:#222}#updates .update-wrapper .content .continue-reading{margin-top:10px;color:#438ac8}#updates .update-wrapper .content .message{overflow:hidden}#updates .update-wrapper .content .message a{color:#222}#updates .update-wrapper .content .message ul,#updates .update-wrapper .content .message ol{padding:10px 0px}#updates .update-wrapper .content .message ul{list-style-type:disc}#updates .update-wrapper .content .message img{width:auto;max-height:300px !important}#updates .update-wrapper .content .picture-wrapper ul{margin:0;padding:0;float:left;margin-right:20px}#updates .update-wrapper .content .picture-wrapper .picture{width:130px;height:130px;overflow:hidden;box-shadow:0px 0px 15px rgba(0,0,0,0.21)}#updates .update-wrapper .content .date-time{width:90px;height:90px;float:left;text-align:center;border:1px solid #e0e0e1;margin-right:20px}#updates .update-wrapper .content .date-time span{display:block}#updates .update-wrapper .content .date-time .day{font-size:30px;line-height:30px;margin-top:10px}#updates .update-wrapper .content .date-time .moth{font-size:18px}#updates .update-wrapper .content .date-time .time{color:#515151}#updates .update-wrapper .content>a{color:inherit}#updates .update-wrapper .content p{margin-bottom:0px}#updates .update-wrapper .ca-header .poster-picture-thumbnail{width:45px !important;height:45px !important}#updates .update-wrapper .header .time{text-align:right;font-size:13px;margin-bottom:10px}#updates .update-wrapper .header .time a{color:#515151}#updates .update-wrapper .header .time a:hover{color:#222}#updates .update-wrapper .header .poster-picture-thumbnail{border-radius:3px;overflow:hidden;margin-right:8px;width:75px;height:75px}#updates .update-wrapper .header .poster-name-ocupation{line-height:18px;margin-top:4px}#updates .update-wrapper .user-actions,#updates .update-wrapper .author-actions{text-align:right}#updates .update-wrapper .user-actions .button:last-child,#updates .update-wrapper .author-actions .button:last-child{margin-right:0px}#updates .update-wrapper .actions{font-size:14px;padding:10px 0;display:flex;justify-content:space-between;align-items:center;font-weight:bold}#updates .update-wrapper .actions .show-interest{display:block;line-height:30px;border-radius:0;width:180px;margin-bottom:0px;padding:3px 20px;margin:0px;font-size:14px;font-weight:bold;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#updates .update-wrapper .actions .add-comment{background:transparent;border:1px solid gray;color:black;border-radius:0;margin:0;font-size:14px;font-weight:normal;width:180px}#updates .update-wrapper .actions .liked-by{color:#494c50;padding:5px 15px;border-right:1px solid #e0e0e1;margin-right:15px}#updates .update-wrapper .actions .sub-actions{line-height:30px}#updates .update-wrapper .actions .sub-actions a{padding:0px 15px 0px 0px}#updates .update-wrapper .actions .sub-actions a i{margin-right:5px}#updates .update-wrapper .comment-input-content{padding:10px 20px;position:relative}#updates .update-wrapper .comment-input-content .pic-wrapper{height:35px;width:35px;overflow:hidden;border-radius:3px}#updates .update-wrapper .comment-input-content .text-wrapper{margin-left:-5px}#updates .update-wrapper .comment-input-content textarea{margin-bottom:0px;height:35px;min-height:35px;padding-left:10px}#updates .update-wrapper .comment-input-content .post-comment{height:35px;width:100%}#updates .update-wrapper .comments-list{padding:10px 0px 10px 20px;margin:0px}#updates .update-wrapper .comments-list>li{border-bottom:1px solid #e0e0e1;padding-bottom:10px;padding-right:20px}#updates .update-wrapper .comments-list .time{position:absolute;top:9px;right:0;font-size:13px;color:#C3C3C3}#updates .update-wrapper .comments-list .poster-details{padding-top:10px;padding-bottom:10px;position:relative;padding:10px 5px 0px 0px !important}#updates .update-wrapper .comments-list .poster-details .poster-picture-thumbnail{width:40px;height:40px;overflow:hidden;margin-right:15px;float:left}#updates .update-wrapper .comments-list .poster-details .poster-picture-thumbnail img{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}#updates .update-wrapper .comments-list .poster-details .poster-name-ocupation{line-height:17px}#updates .update-wrapper .comments-list .poster-details .poster-name-ocupation a{font-size:15px}#updates .update-wrapper .comments-list .poster-details .poster-name-ocupation .company{color:#012e49;margin-top:3px;font-size:13px}#updates .update-wrapper .comments-list .poster-details .comment-time{position:absolute;top:10px;right:20px;font-size:12px;color:#A89F9F}#updates .update-wrapper .comments-list .poster-details .company{margin-top:0px}#updates .update-wrapper .comments-list .comment-content p{margin:0px}#updates .update-wrapper .link-content{margin-top:0px !important;padding-top:0px;margin:20px}#updates-list-wrapper .video-player{width:400px;float:left;overflow:hidden}#updates-list-wrapper .video-player-s3{max-height:400px;width:100%;float:left;overflow:hidden}#left-column{width:100%}@media only screen and (min-width: 40.063em) and (max-width: 70.366em){#left-column{float:none !important;margin:0 auto}}@media only screen and (min-width: 70.429em) and (max-width: 90em){#left-column{padding-right:20px}}
#filter-header-medium{cursor:pointer;padding:0px 0px 20px}#filter-header-medium i{margin-left:5px}#right-column{width:350px}@media only screen and (min-width: 40.063em) and (max-width: 70.366em){#right-column{display:none}}
#sites-update-header{margin-bottom:20px;border-bottom:1px solid #e0e0e1}#sites-update-header .post-update{padding:10px 30px;margin-top:0.5rem}#sites-update-header .subheader{margin-bottom:20px}#sities-update-filter{margin-bottom:20px;margin-bottom:20px}#sities-update-filter a{color:#222}#filter-grid-wrapper{padding:20px}#filter-grid-wrapper>li{padding:0px;padding-right:20px;margin:0px}#filter-grid-wrapper .no-bullet li{margin-bottom:10px}#filter-grid-wrapper .no-bullet li:last-child{margin-bottom:0px}#toolbar button{font-size:14px;padding-right:10px;padding-left:10px;margin-left:5px;margin-right:5px}#toolbar .ql-active{background:#3D94CC;color:#FFF}#toolbar .right i{margin-left:10px}.ql-editor{padding:5px 20px 20px 20px}.picture.video{cursor:pointer}.picture img{width:auto !important;height:100%;vertical-align:bottom;position:absolute;bottom:0;max-width:130%}#filter-by .user-list{padding:15px 0px !important}#filter-by ul{padding-left:20px}#filter-by ul li{padding:6px 0px;padding-right:15px;border-bottom:1px solid #e0e0e1}#filter-by ul li a{color:#222}#filter-by ul li a:hover{color:#3d94cc}#right-column{width:310px}#right-column .box-header h3.professionals{color:#003333;font-size:16px;font-weight:600;margin-bottom:15px}#right-column .box-content{border-bottom:1px solid #B8BCCA;margin-bottom:20px;box-shadow:0px 2px 2px rgba(0,0,0,0.17)}#right-column .user-list{padding:15px 0px;padding-left:15px;background-color:white}#right-column ul{margin:0px}#right-column li{list-style-type:none;border-bottom:1px solid #e0e0e1;margin-bottom:10px}#right-column li:last-child{border-bottom:none;margin-bottom:15px}#right-column .first{margin-bottom:18px}#right-column .user-div-img{float:left;overflow:hidden;height:55px;width:55px;margin-right:10px}#right-column .user-div-img img{border-radius:3px}#right-column .user-info{overflow:hidden}#right-column .user-info h3{line-height:13px}#right-column .user-info h3.name{color:#438ac8;font-size:15px;font-weight:400}#right-column .user-info h3.company{color:#185079;font-size:13px;font-weight:400}#right-column .user-info h3.position{color:#515151;font-size:13px;margin-top:0px;line-height:10px}#right-column .more-info{border:1px solid #e3e4e5}#right-column .more-info h3{position:relative;font-size:14px;padding:15px;margin-bottom:0px;margin-top:0px}#right-column .more-info h3 .message-arrow{position:absolute;top:15px;right:15px;color:#545454;font-weight:600}#right-column .more-info .view-more-members-of-interest h3{border-bottom:1px solid #e3e4e5}#right-column .more-info .view-more-members-of-interest h3 #members-number{font-weight:600}#right-column .more-info .edit-preferences h3{font-weight:600;border-bottom:none !important}#right-column .more-info .view-newest-members h3{border-bottom:1px solid #e3e4e5}#right-column .more-info .view-newest-members h3 #new-members-number{font-weight:600}#my-contacts .view-more-members h3{border-bottom:none !important}#my-contacts .view-more-members h3 #members-number{font-weight:600}.activity-tags{margin-top:10px}.activity-tags__item{list-style-type:none;margin-right:10px;margin-bottom:10px;cursor:pointer;position:relative;display:inline-block;padding:4px 7px;background:#F9F8F8 !important;box-shadow:0px 1px 2px rgba(0,0,0,0.3) !important}#updates .update-wrapper .content{padding-bottom:10px}.meta-profile-picture{object-fit:contain;height:100%}.enquiry{margin:0}.article-card{box-shadow:0 2px 2px rgba(0,0,0,0.17);margin-right:1%;margin-bottom:1%}.article-card__actions{display:flex;flex-wrap:wrap;justify-content:flex-end}.article-card__actions .actions__delete,.article-card__actions .actions__edit{margin-right:5px}.article-card__actions .actions__delete a,.article-card__actions .actions__edit a{color:black}.header .updates-actions{text-align:right;font-size:13px;padding-top:25px;display:inline-block}.header .updates-actions a{color:black}#post-wrapper{width:94%;margin-bottom:20px}.report-content{height:30px}.report-button{padding:10px;border:1px solid #d1cfcf;background-color:#e4e4e4;color:#878787}.report-button:hover,.report-button:link,.report-button:visited{color:#878787}.report-message-button{padding:10px;border:1px solid #d1cfcf;background-color:#e4e4e4;color:#878787}.report-message-button:hover,.report-message-button:link,.report-message-button:visited{color:#878787}.report-content-message{padding:20px 30px}.inboxItem{border-bottom:1px solid #c7c7c7}@media (min-width: 768px){#updates .video-player-s3{display:flex;justify-content:center;align-items:center}#updates .video-player-s3 video{margin-block:0;max-height:400px;border-radius:10px}}.picture-row .owl-carousel{position:relative}.picture-row .owl-carousel .owl-nav{position:absolute;top:50%;width:100%;transform:translateY(-50%);margin:0}.picture-row .owl-carousel .owl-nav .owl-prev{position:absolute;left:-50px}.picture-row .owl-carousel .owl-nav .owl-next{position:absolute;right:-50px}.picture-row .owl-carousel .owl-nav button{color:white !important;padding:5px 10px !important;border-radius:3px}.picture-row .owl-carousel .owl-nav button span{font-size:36px !important}.preview-video-player{width:100%;overflow:hidden;display:flex;flex-direction:column}.preview-video-player video{height:auto;width:400px;border-radius:10px;object-fit:cover}#preview-modal .preview-video-player{display:flex;justify-content:center;align-items:center;margin-bottom:16px}#preview-modal .preview-video-player .preview-video-note{border:1px solid #ddd;padding:15px;margin:10px 0;background-color:#f9f9f9;border-radius:4px}#preview-modal .preview-video-player .preview-video-note span{font-size:13px;color:#004670;line-height:1.6}#preview-modal .preview-video-player .preview-video-note div{margin-top:8px;font-size:11px;color:#5a8aa8;font-style:italic}
