@charset "UTF-8";

/* ==[ FONT IMPORT ]== */
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700');

@font-face {
    font-family: "CircularBook";
    src: url("../fonts/circular/CircularStd-Book.otf");
}
@font-face {
    font-family: "CircularMedium";
    src: url("../fonts/circular/CircularStd-Medium.otf");
}
@font-face {
    font-family: "CircularBold";
    src: url("../fonts/circular/CircularStd-Bold.otf");
}

@font-face {
    font-family: "GraphikLight";
    src: url("../fonts/graphik/Graphik-Light.otf");
}
@font-face {
    font-family: "GraphikMedium";
    src: url("../fonts/graphik/Graphik-Medium.otf");
}
@font-face {
    font-family: "GraphikRegular";
    src: url("../fonts/graphik/Graphik-Regular.otf");
}
@font-face {
    font-family: "GraphikBold";
    src: url("../fonts/graphik/Graphik-Semibold.otf");
}
/* ==[ FONT IMPORT END ]== */

/* ==[ CSS RESET ]== */
* { margin:0px; padding:0px; border:none; outline:none; font-size: 100%; box-sizing: border-box; vertical-align: baseline; background:transparent; }
html { width:100%; height:100%; }
body { font-family: 'Roboto'; background-color: #ffffff; width:100%; height:100%; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; *vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }
label, input[type=button], input[type=submit], button { cursor: pointer; }
table { font-size:inherit; font:100%; }
select, input, textarea { font:99% sans-serif; }
nav ul { list-style:none; }
body.iosBugFixCaret { position: fixed; width: 100%; }
/* ==[ CSS RESET END ]== */

/* ==[ BASIC STYLES ]== */
::selection { background: rgba(68, 119, 238, 0.3); }
::-moz-selection { background: rgba(68, 119, 238, 0.3); }

.clearfloat::after { content: ""; display: table; clear: both; }

[data-action] { cursor: pointer; }
/* ==[ BASIC STYLES END ]== */

/* ==[ PAGE: LOGIN STYLES ]== */
body.page-login .login-box {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 50%;
    max-width: 300px;
}

body.page-login .login-box > .header {
    position: relative;
    margin-bottom: 20px;
}

body.page-login .login-box > .header > h1 {
    font-size: 1.25em;
    font-weight: 400;
    margin-bottom: .35em;
}

body.page-login .login-box > .header > p {
    font-size: .85em;
    color: #6d7b81;
}

body.page-login .login-box > .header > p.success {
    color: #23C66D;
}

body.page-login .login-box > .header > p.error {
    color: #e84141;
}

body.page-login .login-box > #login-form {
    position: relative;
}

body.page-login .login-box > #login-form .form-group {
    display: block;
    position: relative;
    width: 100%;
}

body.page-login .login-box > #login-form .form-group .show-pw-toggle {
    display: flex;
    position: absolute;
    width: 25px;
    height: 25px;
    bottom: 5px;
    right: 6px;
    background: transparent;
    border-radius: 3px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

body.page-login .login-box > #login-form .form-group .show-pw-toggle > i {
    color: #34495e;
    font-size: 20px;
}

body.page-login .login-box > #login-form label {
    display: block;
    font-size: .7em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #899ca4;
}

body.page-login .login-box > #login-form input {
    display: block;
    border: 1px solid #cad1d4;
    width: 100%;
    position: relative;
    margin: 5px 0;
    margin-bottom: 17px;
    padding: 9px;
    font-size: .83em;
    border-radius: 3px;
    color: black;
    font-family: "Roboto", sans-serif;
    -webkit-transition: border .2s ease-in-out;
    -moz-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out;
}

body.page-login .login-box > #login-form input:focus {
    border-color: #2352d6;
}

body.page-login .login-box > #login-form input.error {
    border-color: #e84141;
}

body.page-login .login-box > #login-form > button {
    display: block;
    background-color: #2352d6;
    width: 100%;
    position: relative;
    padding: 14px 25px;
    font-size: .83em;
    border-radius: 5px;
    color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: .9em;
    line-height: 1;
    -webkit-transition: background-color .1s ease;
    -moz-transition: background-color .1s ease;
    -o-transition: background-color .1s ease;
    transition: background-color .1s ease;
}

body.page-login .login-box > #login-form > button:hover {
    background-color: #3262eb;
}

body.page-login .login-box > #login-form > button:active {
    background-color: #4774f3;
}

body.page-login .login-box > #login-form > button > * {
    display: inline-block;
    font-size: 1em;
    vertical-align: middle;
}

body.page-login .login-box > #login-form > button > i {
    margin-left: .3em;
}
/* ==[ PAGE: LOGIN STYLES END ]== */

/* ==[ PAGE LAYOUT STYLES ]== */
body::before {
    display: block;
    content: '';
    z-index: 75;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: black;
    visibility: hidden;
    pointer-events: all; /* none */
    opacity: 0;
    -webkit-transition: .2s all ease-in-out;
    -moz-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

body.navigation-open::before, body.bottom-panel-open::before {
    visibility: visible;
    pointer-events: all;
    opacity: .2;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    height: 67px;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 7px 18px;
    -webkit-transition: .2s all cubic-bezier(.65,.05,.36,1);
    -moz-transition: .2s all cubic-bezier(.65,.05,.36,1);
    transition: .2s all cubic-bezier(.65,.05,.36,1);
}

header.hidden {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

body.navigation-open header.hidden {
    -webkit-transform: translateX(250px) translateY(-100%);
    -moz-transform: translateX(250px) translateY(-100%);
    transform: translateX(250px) translateY(-100%);
}

#navigation {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: white;
    width: 250px;
    height: 100%;
    visibility: hidden;
    -webkit-transform: translateX(-250px);
    -moz-transform: translateX(-250px);
    transform: translateX(-250px);
    -webkit-transition: .2s all cubic-bezier(.65,.05,.36,1);
    -moz-transition: .2s all cubic-bezier(.65,.05,.36,1);
    transition: .2s all cubic-bezier(.65,.05,.36,1);
}

body.navigation-open #navigation {
    visibility: visible;
    left: 0vw;
    -webkit-transform: translateX(0vw);
    -moz-transform: translateX(0vw);
    transform: translateX(0vw);
}

body.navigation-open header, body.navigation-open main, body.navigation-open #error-bar {
    -webkit-transform: translateX(250px);
    -moz-transform: translateX(250px);
    transform: translateX(250px);
}

main {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 67px;
    /*overflow-x: hidden;*/
    -webkit-transition: .2s all cubic-bezier(.65,.05,.36,1), 0s padding ease;
    -moz-transition: .2s all cubic-bezier(.65,.05,.36,1), 0s padding ease;
    transition: .2s all cubic-bezier(.65,.05,.36,1), 0s padding ease;
}

#bottom-panel {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    background: white;
    width: 100%;
    -webkit-transition: .2s all cubic-bezier(.65,.05,.36,1);
    -moz-transition: .2s all cubic-bezier(.65,.05,.36,1);
    transition: .2s all cubic-bezier(.65,.05,.36,1);
}

body.bottom-panel-open #bottom-panel {
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
}
/* ==[ PAGE LAYOUT STYLES END ]== */

/* ==[ HEADER STYLES ]== */
header > .header-button {
    display: block;
    text-decoration: none;
    color: inherit;
    flex: 0 0 auto;
}

header > .header-button > i {
    display: block;
    font-size: 28px;
}

header > .header-info {
    display: block;
    flex: 1 1 auto;
    padding: 0 12px;
}

header > .header-info > h1 {
    font-size: 22px;
    line-height: 24px;
    font-weight: 500;
    font-family: "CircularBook",sans-serif;
    margin: 0;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.03rem;
}

header > .header-action {
    display: flex;
    flex: 0 0 auto;
    position: relative;
    width: 37px;
    height: 37px;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #3881ff;
    background-image: url(../img/icons/create.svg);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}

header > .header-action[data-action="createTask"] {
    background-image: url(../img/icons/calendar.svg);
    background-size: 24px;
}

header > .header-user {
    display: block;
    flex: 0 0 auto;
    position: relative;
    cursor: pointer;
}

header > .header-user > img {
    display: block;
    width: 37px;
    height: 37px;
    background-color: #222222;
    border-radius: 100%;
    object-fit: cover;
    object-position: center;
}

header > .header-user > .show-more {
    display: block;
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: white;
    border-radius: 100%;
    border: 3px solid black;
    right: -3px;
    bottom: -3px;
    background-image: url(../img/icons/caret-down.svg);
    background-size: 5px;
    background-position: center;
    background-repeat: no-repeat;
}
/* ==[ HEADER STYLES END ]== */

/* ==[ NAVIGATION STYLES ]== */
#navigation > .user-info {
    position: relative;
    text-align: center;
    padding: 15px;
    background-color: #eaeaea;
    background: rgb(234,234,234);
    background: -moz-linear-gradient(top, rgba(234,234,234,1) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top, rgba(234,234,234,1) 0%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(234,234,234,1) 0%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#ffffff',GradientType=0 );
}

#navigation > .user-info > a {
    display: block;
    margin-bottom: 5px;
    position: relative;
}

#navigation > .user-info > a > img {
    display: inline-block;
    width: 75px;
    height: 75px;
    border-radius: 100%;
    background-color: gray;
    object-fit: cover;
    object-position: center;
}

#navigation > .user-info > .info {
    padding: 0 10px;
    position: relative;
    text-align: center;
}

#navigation > .user-info > .info > h1 {
    font-size: 1.1em;
    font-weight: normal;
    font-family: "CircularBook",sans-serif;
    margin: 0;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: inherit;
}

#navigation > .user-info > .info > h2 {
    font-size: .7em;
    font-family: "Roboto",sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: inherit;
    margin-bottom: 0;
    opacity: .5;
}

#navigation > nav {
    position: relative;
    margin-top: -15px;
    padding: 20px;
}

#navigation > nav > ul > a {
    text-decoration: none;
    color: inherit;
}

#navigation > nav > ul > a > li {
    display: block;
    position: relative;
    padding: 7.5px 0;
    margin: 8px 0;
    color: #202730;
    font-family: "CircularBook", sans-serif;
    padding-left: 32px;
    background-size: 16px;
    background-position: left center;
    background-repeat: no-repeat;
    font-size: .9em;
}

#navigation > nav > ul > a > li.active {
    color: #4477EE;
}

nav > ul > a[href="/"] > li { background-image: url(../img/icons/nav/dashboard.svg); }
nav > ul > a[href="/"] > li.active { background-image: url(../img/icons/nav/dashboard-active.svg); }

nav > ul > a[href="/monitoring"] > li { background-image: url(../img/icons/nav/monitoring.svg); }
nav > ul > a[href="/monitoring"] > li.active { background-image: url(../img/icons/nav/monitoring-active.svg); }

nav > ul > a[href="/calendar"] > li { background-image: url(../img/icons/nav/calendar.svg); }
nav > ul > a[href="/calendar"] > li.active { background-image: url(../img/icons/nav/calendar-active.svg); }

nav > ul > a[href="/settings"] > li { background-image: url(../img/icons/nav/settings.svg); }
nav > ul > a[href="/settings"] > li.active { background-image: url(../img/icons/nav/settings-active.svg); }
/* ==[ NAVIGATION STYLES END ]== */

/* ==[ PRIMARY ACTION BUTTON STYLES ]== */
#primary-action {
    position: fixed;
    z-index: 50;
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
    border-radius: 100%;
    background-color: #2352d6;
    box-shadow: 0 3px 15px rgba(35, 82, 214, 0.3);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: .2s all cubic-bezier(.65,.05,.36,1);
    -moz-transition: .2s all cubic-bezier(.65,.05,.36,1);
    transition: .2s all cubic-bezier(.65,.05,.36,1);
}

body.status-bar-visible #primary-action {
    -webkit-transform: translateY(-60px);
    -moz-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    -o-transform: translateY(-60px);
    transform: translateY(-60px);
}

#primary-action > i {
    font-size: 20px;
}

body.ajax-loading main::before {
    content: 'Die Seite wird neu geladen';
    position: absolute;
    top: 67px;
    left: 0;
    width: 100%;
    height: calc(100vh - 67px);
    max-height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    font-family: "CircularBook", sans-serif;
    background-image: url(/static/assets/img/icons/loader.svg);
    background-size: 35px;
    background-position: center calc(50% - 3em);
    background-repeat: no-repeat;
}
/* ==[ PRIMARY ACTION BUTTON STYLES END ]== */

/* ==[ STATUS BAR STYLES ]== */
#status-bar {
    position: fixed;
    z-index: 50;
    width: 100%;
    height: 60px;
    bottom: 0;
    left: 0;
    background-color: #2352d6;
    color: white;
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 7px 18px;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: .2s all cubic-bezier(.65,.05,.36,1);
    -moz-transition: .2s all cubic-bezier(.65,.05,.36,1);
    transition: .2s all cubic-bezier(.65,.05,.36,1);
}

body.status-bar-visible #status-bar {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

#status-bar > .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
}

#status-bar.show-progress > .progress-bar {
    display: block;
}

#status-bar > .progress-bar > .progress {
    display: block;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.55);
}

#status-bar > i {
    font-size: 25px;
    margin-right: 10px;
}

#status-bar > .status {
    flex: 1 1 auto;
    font-family: "CircularBook", sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#status-bar > i.close {
    font-size: 20px;
    margin-right: 0;
    opacity: .5;
    -webkit-transition: .2s all cubic-bezier(.65,.05,.36,1);
    -moz-transition: .2s all cubic-bezier(.65,.05,.36,1);
    transition: .2s all cubic-bezier(.65,.05,.36,1);
}

#status-bar > i.close:hover {
    opacity: .8;
}
/* ==[ STATUS BAR STYLES END ]== */

/* ==[ POST STYLES ]== */
.post_wrapper {
    display: block;
    position: relative;
    background-color: white;
    border: 2px solid #f3f3f3;
    border-radius: 5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: .2s all cubic-bezier(.65,.05,.36,1);
    -moz-transition: .2s all cubic-bezier(.65,.05,.36,1);
    transition: .2s all cubic-bezier(.65,.05,.36,1);
}

.post_wrapper.shadowed {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.post_wrapper.shadowed:active {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.075);
}

.post_wrapper.highlighted {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    z-index: 50;
}

.post_wrapper > .content {
    display: block;
    position: relative;
    padding: 15px;
}

.post_wrapper > .content > *:not(:first-child) {
    margin-top: 10px;
}

.post_wrapper > .content > .text {
    font-family: "CircularBook", sans-serif;
    font-size: 1em;
    color: #25282a;
    word-wrap: break-word;
    white-space: pre-line;
    line-break: strict;
}

.post_wrapper > .content > .link {
    display: block;
    position: relative;
    padding: 15px;
    padding-left: 60px;
    border: 1px solid #f6f6f6;
    border-radius: 3px;
    text-decoration: none;
    color: inherit;
    font-size: .9em;
}

.post_wrapper > .content > .link::before {
    content: 'link';
    position: absolute;
    top: calc(50% - 15px);
    left: 15px;
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 30px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    color: #2352d6;
}

.post_wrapper > .content > .link > h1 {
    font-family: "CircularMedium", sans-serif;
    font-weight: 500;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.01rem;
    color: #36404a;
}

.post_wrapper > .content > .link > p {
    font-size: .8em;
    font-family: "CircularBook", sans-serif;
    color: #858d92;
    line-height: 1.2em;
    margin-top: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    max-height: 3.6em;
}

.post_wrapper > .content > .link > span {
    font-size: .6em;
    font-weight: 500;
    color: #b8c5ce;
    text-transform: uppercase;
    letter-spacing: .5px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    margin-top: 5px;
}

.post_wrapper > .content > .image {
    position: relative;
    width: 100%;
    height: 75px;
    overflow: hidden;
    border-radius: 4px;
    background-color: #e8e8e8;
}

.post_wrapper > .content > .image:not(.highres)::before {
    content: 'Bild anzeigen';
    position: absolute;
    width: 100%;
    top: calc(50% - 6px);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1em;
    text-transform: uppercase;
    color: white;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    z-index: 2;
}

.post_wrapper > .content > .image.loading:not(.highres)::before {
    content: 'Bild wird geladen...';
}

.post_wrapper > .content > .image.highres {
    height: auto;
    overflow: inherit;
}

.post_wrapper > .content > .image > .lowres {
    position: absolute;
    left: -15px;
    top: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}

.post_wrapper > .content > .image.highres > .lowres {
    display: none;
}

.post_wrapper > .content > .image > img {
    display: block;
    width: 100%;
    border-radius: 4px;
    pointer-events: none;
}

.post_wrapper > .info {
    position: relative;
    padding: 15px;
    padding-top: 0;
    display: flex;
    align-items: start;
    width: 100%;
}

.post_wrapper > .info > .user {
    flex: 0 0 auto;
    width: calc(65% - 10px);
    margin-right: 10px;
    position: relative;
    display: flex;
    align-items: center;
}

.post_wrapper > .info > .user > img {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    object-fit: cover;
    object-position: center;
    margin-right: 7.5px;
}

.post_wrapper > .info > .user > .info {
    position: relative;
    width: calc(100% - 45px);
}

.post_wrapper > .info > .user > .info > h1 {
    font-family: "CircularMedium", sans-serif;
    font-weight: 500;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.01rem;
    color: #121314;
}

.post_wrapper > .info > .user > .info > p {
    font-size: .758em;
    font-family: "CircularBook", sans-serif;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.01rem;
    color: #858d92;
}

.post_wrapper > .info > .platforms {
    flex: 0 0 auto;
    width: 35%;
    position: relative;
    display: block;
}

.post_wrapper > .info > .platforms > h1 {
    display: block;
    font-size: .7em;
    font-family: "CircularBook", sans-serif;
    font-weight: 500;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.01rem;
    color: #858d92;
}

.post_wrapper > .info > .platforms > .platforms-wrapper {
    width: 100%;
    display: flex;
    align-items: left;
    margin-top: 4px;
}

.post_wrapper > .info > .platforms > .platforms-wrapper > span {
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
}

.post_wrapper > .info > .platforms > .platforms-wrapper > span.facebook {
    background-image: url(../img/icons/platforms/facebook.svg);
}

.post_wrapper > .info > .platforms > .platforms-wrapper > span.twitter {
    background-image: url(../img/icons/platforms/twitter.svg);
}

.post_wrapper > .management {
    position: relative;
    padding: 15px;
    display: block;
    width: 100%;
    border-top: 2px solid #f3f3f3;
}

.post_wrapper > .management > .entry {
    display: flex;
    width: 100%;
    position: relative;
    align-items: center;
}

.post_wrapper > .management > .entry:not(:last-of-type) {
    padding-bottom: 7.5px;
}

.post_wrapper > .management > .entry > .icon {
    display: flex;
    flex: 0 0 auto;
    position: relative;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: flex-start;
    margin-right: 10px;
    color: #3881ff;
}

.post_wrapper > .management > .entry > .icon > i {
    position: relative;
    display: block;
    font-size: 24px;
}

.post_wrapper > .management > .entry > .info {
    display: block;
    width: calc(100% - 34px);
}

.post_wrapper > .management > .entry > .info > h1 {
    font-family: "CircularBook", sans-serif;
    font-weight: normal;
    color: #585f67;
    font-size: .85em;
    white-space: nowrap;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post_wrapper > .management > .entry > .info > p {
    font-size: .8em;
    font-family: "Roboto", sans-serif;
    color: #858d92;
    margin-top: 5px;
}

.post_wrapper > .management > .entry > .info > .sent_when {
    display: block;
    margin-top: 5px;
    font-size: .7em;
    color: #8f979d;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post_wrapper > .management > .entry > .info > li.error {
    list-style: none;
    font-size: .8em;
    font-family: "Roboto", sans-serif;
    color: #e84141;
    margin-top: 5px;
}

.post_wrapper > .management > .entry > .info > h1 > b {
    color: #202730;
    font-weight: normal;
}

/*.post_wrapper > .management > .entry:not(:last-of-type)::after {
    content: '';
    position: absolute;
    width: 2px;
    height: calc(100% - 28px);
    top: 26px;
    left: 11px;
    background: #f3f3f3;
}*/

.post_wrapper > .management > .entry > .info > .platform_link {
    display: block;
    padding: 5px;
    width: 50%;
    padding-left: 20px;
    padding-right: 10px;
    font-size: 0.85em;
    color: black;
    text-decoration: none;
    font-family: "CircularBook", sans-serif;
    background-size: 15px;
    background-position: left center;
    background-repeat: no-repeat;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
    float: left;
    margin-top: 5px;
}

.post_wrapper > .management > .entry > .info > .platform_link.facebook {
    background-image: url(../img/icons/platforms/facebook-active.svg);
    background-color: #2352d6;
    color: white;
    border-radius: 3px;
    background-size: .95em;
    background-position: 5px center;
    padding: 7px 15px;
    padding-left: 22px;
    font-size: .8em;
    width: auto;
    padding-right: 10px;
    margin-right: 5px;
}

.post_wrapper > .management > .entry > .info > .platform_link.twitter {
    background-image: url(../img/icons/platforms/twitter-active.svg);
    background-color: #1da1f2;
    color: white;
    border-radius: 3px;
    background-size: .95em;
    background-position: 5px center;
    padding: 7px 15px;
    padding-left: 24px;
    font-size: .8em;
    width: auto;
    padding-right: 10px;
    margin-right: 5px;
}

.post_wrapper > .sub {
    position: relative;
    padding: 10px 15px;
    display: flex;
    align-items: start;
    width: 100%;
    border-top: 2px solid #f3f3f3;
}

.post_wrapper > .sub > .status {
    flex: 1 1 auto;
    display: block;
    color: #858d92;
    max-width: calc(100% - 21px);
}

.post_wrapper > .sub > .status > i {
    font-size: 1.3em;
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
}

.post_wrapper > .sub > .status > span {
    font-size: .8em;
    font-family: "CircularBook", sans-serif;
    max-width: calc(100% - 1.3em - 20px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.01rem;
    color: #858d92;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.3em;
}

.post_wrapper > .sub > .settings {
    flex: 0 0 auto;
    display: block;
    color: #858d92;
}

.post_wrapper > .sub > .settings > i {
    font-size: 21px;
    display: block;
}

.post_wrapper > .actions {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 15;
    border-radius: 3px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: .2s all cubic-bezier(.65,.05,.36,1);
    -moz-transition: .2s all cubic-bezier(.65,.05,.36,1);
    transition: .2s all cubic-bezier(.65,.05,.36,1);
}

.post_wrapper.actions_open > .actions {
     visibility: visible;
     opacity: 1;
     pointer-events: all;
}

.post_wrapper > .actions > .button_wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    -webkit-transition: .2s transform cubic-bezier(.65,.05,.36,1);
    -moz-transition: .2s transform cubic-bezier(.65,.05,.36,1);
    transition: .2s transform cubic-bezier(.65,.05,.36,1);
}

.post_wrapper.actions_open > .actions > .button_wrapper {
    transform: scale(1);
}

.post_wrapper > .actions > .button_wrapper > div {
    width: 65px;
    height: 65px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: .2s all cubic-bezier(.65,.05,.36,1);
    -moz-transition: .2s all cubic-bezier(.65,.05,.36,1);
    transition: .2s all cubic-bezier(.65,.05,.36,1);
}

.post_wrapper > .actions > .button_wrapper > div::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-radius: 100%;
    background: white;
    -webkit-transition: .2s all cubic-bezier(.65,.05,.36,1);
    -moz-transition: .2s all cubic-bezier(.65,.05,.36,1);
    transition: .2s all cubic-bezier(.65,.05,.36,1);
}

.post_wrapper > .actions > .button_wrapper > div > i {
    font-size: 27px;
    -webkit-transition: .2s transform cubic-bezier(.65,.05,.36,1);
    -moz-transition: .2s transform cubic-bezier(.65,.05,.36,1);
    transition: .2s transform cubic-bezier(.65,.05,.36,1);
}

.post_wrapper > .actions > .button_wrapper.selected > div {
    width: 85px;
    height: 85px;
    margin: -42.5px !important;
    box-shadow: none !important;
}

.post_wrapper > .actions > .button_wrapper.selected > div > i {
    font-size: 40px;
}

.post_wrapper > .actions > .button_wrapper > div.selected {
    z-index: 2;
}

.post_wrapper > .actions > .button_wrapper > div.active::after {
    width: 100%;
    height: 100%;
    border-radius: 3px;
    z-index: 1;
}

.post_wrapper > .actions > .button_wrapper > div.active > i {
    z-index: 2;
    transform: scale(1.2);
}

.post_wrapper > .actions > .button_wrapper > div.revision_request {
    background-color: #c2d4f5;
    color: #2566c6;
}

.post_wrapper > .actions > .button_wrapper > div.revision_request::after {
    background: #c2d4f5;
}

.post_wrapper > .actions > .button_wrapper > div.approve {
    width: 85px;
    height: 85px;
    margin: 0 10px;
    background-color: #c2f5c4;
    color: #34b038;
    box-shadow: 0 5px 15px rgba(52, 176, 56, 0.1);
}

.post_wrapper > .actions > .button_wrapper > div.approve > i {
    font-size: 40px;
}

.post_wrapper > .actions > .button_wrapper > div.approve::after {
    background: #c2f5c4;
}

.post_wrapper > .actions > .button_wrapper > div.decline {
    background-color: #f5c2c2;
    color: #d92b2b;
}

.post_wrapper > .actions > .button_wrapper > div.decline::after {
    background: #f5c2c2;
}


.post_wrapper > .content > .linkpreview {
    display: block;
    position: relative;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccd3d8;
    border-radius: 3px;
}

.post_wrapper > .content > .linkpreview.loading {
    height: 100px;
    overflow: hidden;
}

.post_wrapper > .content > .linkpreview.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 3px;
    z-index: 5;
    background-image: url(../img/icons/circle-loader.svg);
    background-size: 33px;
    background-position: center calc(50% - 12px);
    background-repeat: no-repeat;
}

.post_wrapper > .content > .linkpreview.loading::before {
    content: 'Daten werden abgerufen...';
    position: absolute;
    top: calc(50% + 12.5px);
    left: 0;
    z-index: 6;
    font-family: "CircularBook", sans-serif;
    font-size: .9em;
    width: 100%;
    text-align: center;
    color: #202730;
}

.post_wrapper > .content > .linkpreview > .badge {
    position: absolute;
    top: 7.5px;
    left: 0;
    background: #4774f3;
    z-index: 1;
    font-size: .8em;
    padding: 5px 6px;
    color: white;
    font-family: "CircularBook",sans-serif;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    line-height: 1;
}

.post_wrapper > .content > .linkpreview > .images {
    display: flex;
    position: relative;
    width: calc(100% + 20px);
    height: 150px;
    background: #ccd3d8;
    margin: -10px;
    margin-bottom: 15px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.post_wrapper > .content > .linkpreview > .images > img {
    display: none;
    max-width: 100%;
}

.post_wrapper > .content > .linkpreview > .images > .linkImageSliderCounter {
    display: block;
    position: absolute;
    top: 7.5px;
    right: 5px;
    font-size: .8em;
    font-family: "CircularBook",sans-serif;
    color: white;
    padding: 5px 0;
}

.post_wrapper > .content > .linkpreview > .images > .linkImageSliderLeft {
    display: flex;
    width: 22px;
    height: 45px;
    position: absolute;
    top: calc(50% - 22.5px);
    left: 0px;
    background: rgba(255, 255, 255, 0.75);
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    justify-content: center;
    align-items: center;
    color: #2f2f2f;
    cursor: pointer;
}

.post_wrapper > .content > .linkpreview > .images > .linkImageSliderRight {
    display: flex;
    width: 22px;
    height: 45px;
    position: absolute;
    top: calc(50% - 22.5px);
    right: 0px;
    background: rgba(255, 255, 255, 0.75);
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    justify-content: center;
    align-items: center;
    color: #2f2f2f;
    cursor: pointer;
}

.post_wrapper > .content > .linkpreview > .info {
    display: block;
    position: relative;
    width: 100%;
}

.post_wrapper > .content > .linkpreview > .info > h1 {
    font-weight: 500;
    font-family: "CircularBook",sans-serif;
    font-size: .95em;
    margin-bottom: 3px;
}

.post_wrapper > .content > .linkpreview > .info > p {
    font-size: .825em;
    font-family: "Roboto", sans-serif;
    color: #7b8b91;
    line-height: 1.3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.post_wrapper > .content > .linkpreview > .info > span {
    font-size: .75em;
    font-family: "Roboto", sans-serif;
    color: #a8b1b6;
    margin-top: 7.5px;
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.03rem;
}
/* ==[ POST STYLES END ]== */

/* ==[ MESSAGE STYLES ]== */
#messages {
    display: block;
    position: relative;
    padding: 15px;
    background-color: #1b1b1b;
    color: white;
}

#messages > .message-wrapper {
    display: flex;
    position: relative;
    width: 100%;
    align-items: flex-start;
}

#messages > .message-wrapper:not(:last-of-type) {
    margin-bottom: 15px;
}

#messages > .message-wrapper > .avatar {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

#messages > .message-wrapper > .avatar > img {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 3px;
    object-fit: cover;
    object-position: center;
}

#messages > .message-wrapper > .avatar > .settings {
    width: 30px;
    height: 30px;
    border-radius: 3px;
    color: #525252;
    text-align: center;
}

#messages > .message-wrapper > .avatar > .settings > i {
    font-size: 15px;
    line-height: 30px;
}

#messages > .message-wrapper > .content {
    width: calc(100% - 40px);
    position: relative;
}

#messages > .message-wrapper > .content > h1 {
    font-family: "CircularBook", sans-serif;
    font-weight: normal;
    font-size: .72em;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: .5px;
}

#messages > .message-wrapper > .content > p {
    font-size: .9em;
    line-height: 1.3em;
    color: #e0e0e0;
    white-space: pre-line;
    line-break: strict;
}

#messages > .message-wrapper > .content > span {
    display: block;
    margin-top: 5px;
    font-size: .75em;
    color: #747474;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#messages > .message-wrapper > .content > span > .user {
    color: #9a9a9a;
}
/* ==[ MESSAGE STYLES END ]== */

/* ==[ DASHBOARD STYLES ]== */
body.page-dashboard main > #relevant-posts,
body.page-dashboard main > #own-posts,
body.page-dashboard main > #all-posts {
    padding: 15px;
}

body.page-dashboard main .post_wrapper:not(:last-of-type),
body.page-dashboard main > #messages > .message-wrapper:not(:last-of-type) {
    margin-bottom: 15px;
}

body.page-dashboard main .seperator {
  display: table;
  white-space: nowrap;
  height: auto;
  margin: 1.2rem 0;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: .75em;
  letter-spacing: .1em;
  color: #69757e;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

body.page-dashboard main .seperator:first-child {
    margin-top: 7.5px;
}

body.page-dashboard main .seperator::before,
body.page-dashboard main .seperator::after {
  content: '';
  display: table-cell;
  position: relative;
  top: 50%;
  width: 50%;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC);
}

body.page-dashboard main .seperator::before {
  background-position: right 1em top 50%;
}

body.page-dashboard main .seperator::after {
  background-position: left 1em top 50%;
}

body.page-dashboard main .none-found {
    display: block;
    position: relative;
    text-align: center;
    width: 80%;
    margin: 10px auto;
}

body.page-dashboard main .none-found > i {
    font-size: 3em;
    color: #6d7b81;
}

body.page-dashboard main .none-found > h1 {
    font-size: 1em;
    font-weight: 500;
    font-family: "CircularBook",sans-serif;
    color: #202730;
    margin: 10px 0;
}

body.page-dashboard main .none-found > p {
    font-size: .8em;
    line-height: 1.5em;
    color: #acbec7;
}

body.page-dashboard main .none-found > p > a {
    text-decoration: none;
    color: #4774f3;
    border-bottom: 1px dotted #4774f3;
}
/* ==[ DASHBOARD STYLES END ]== */

/* ==[ MONITORING STYLES ]== */
body.page-monitoring #tabs > li {
    padding: 10px 7.5px;
}

body.page-monitoring .tab-wrapper {
    padding: 15px;
}

body.page-monitoring .tab-wrapper > .loading {
    display: none;
    position: relative;
    text-align: center;
    width: 80%;
    margin: 25px auto;
}

body.page-monitoring .tab-wrapper.loading > .loading {
    display: block;
}

body.page-monitoring .tab-wrapper.loading > .loading > img {
    width: 2.5em;
    height: 2.5em;
    object-fit: cover;
    object-position: center;
}

body.page-monitoring .tab-wrapper.loading > .loading > h1 {
    font-size: .95em;
    font-weight: 500;
    font-family: "CircularBook",sans-serif;
    color: #202730;
    margin: 10px 0;
}

body.page-monitoring .tab-wrapper.loading > .loading > p {
    font-size: .8em;
    line-height: 1.5em;
    color: #acbec7;
}

body.page-monitoring .tab-wrapper > .error {
    display: none;
    position: relative;
    text-align: center;
    width: 85%;
    margin: 25px auto;
}

body.page-monitoring .tab-wrapper.show-error > .error {
    display: block;
}

body.page-monitoring .tab-wrapper > .error > i {
    font-size: 35px;
}

body.page-monitoring .tab-wrapper > .error > h1 {
    font-size: .95em;
    font-weight: 500;
    font-family: "CircularBook",sans-serif;
    color: #202730;
    margin: 10px 0;
}

body.page-monitoring .tab-wrapper > .error > p {
    font-size: .8em;
    line-height: 1.5em;
    color: #acbec7;
}

body.page-monitoring .tab-wrapper > .error > p > a {
    text-decoration: none;
    color: #4774f3;
    border-bottom: 1px dotted #4774f3;
}

.monitoring-post {
    display: block;
    position: relative;
    background-color: white;
    border: 2px solid #f3f3f3;
    border-radius: 5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: .2s all cubic-bezier(.65,.05,.36,1);
    -moz-transition: .2s all cubic-bezier(.65,.05,.36,1);
    transition: .2s all cubic-bezier(.65,.05,.36,1);
}

.monitoring-post.shadowed {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.monitoring-post.shadowed:active {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.075);
}

.monitoring-post > .infobar {
    display: flex;
    position: relative;
    padding: 15px;
    align-items: center;
}

.monitoring-post > .infobar > .user {
    flex: 0 0 auto;
    width: calc(100% - 50px);
    margin-right: 10px;
    position: relative;
    display: flex;
    align-items: center;
}

.monitoring-post > .infobar > .user > img {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    object-fit: cover;
    object-position: center;
    margin-right: 7.5px;
    overflow: hidden;
    color: transparent;
    background-color: #dbdbdb;
}

.monitoring-post > .infobar > .user > .badge {
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: white;
    z-index: 2;
    bottom: -3px;
    left: 26px;
    border-radius: 4px;
    border: 3px solid white;
    background-image: url(../img/favicons/icon.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.monitoring-post > .infobar > .user > .info {
    position: relative;
    width: calc(100% - 45px);
}

.monitoring-post > .infobar > .user > .info > a {
    text-decoration: none;
    color: inherit;
}

.monitoring-post > .infobar > .user > .info > a > h1 {
    font-family: "CircularMedium", sans-serif;
    font-weight: 500;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.01rem;
    color: #121314;
}

.monitoring-post > .infobar > .user > .info > p {
    font-size: .758em;
    font-family: "CircularBook", sans-serif;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.01rem;
    color: #858d92;
}

.monitoring-post > .infobar > .settings {
    flex: 0 0 auto;
    display: flex;
    color: #858d92;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: flex-end;
}

.monitoring-post > .infobar > .settings > i {
    font-size: 20px;
}

.monitoring-post > .content {
    display: block;
    position: relative;
    padding: 15px;
    padding-top: 0;
}

.monitoring-post > .content > *:not(:first-child) {
    margin-top: 10px;
}

.monitoring-post > .content > .text {
    font-family: "CircularBook", sans-serif;
    font-size: 1em;
    color: #25282a;
    word-wrap: break-word;
    white-space: pre-line;
    line-break: strict;
}

.monitoring-post > .content > .link {
    display: block;
    position: relative;
    padding: 15px;
    padding-left: 60px;
    border: 1px solid #f6f6f6;
    border-radius: 3px;
    text-decoration: none;
    color: inherit;
    font-size: .9em;
}

.monitoring-post > .content > .link::before {
    content: 'link';
    position: absolute;
    top: calc(50% - 15px);
    left: 15px;
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 30px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    color: #2352d6;
}

.monitoring-post > .content > .link > h1 {
    font-family: "CircularMedium", sans-serif;
    font-weight: 500;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.01rem;
    color: #36404a;
}

.monitoring-post > .content > .link > p {
    font-size: .8em;
    font-family: "CircularBook", sans-serif;
    color: #858d92;
    line-height: 1.2em;
    margin-top: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    max-height: 3.6em;
}

.monitoring-post > .content > .link > span {
    font-size: .6em;
    font-weight: 500;
    color: #b8c5ce;
    text-transform: uppercase;
    letter-spacing: .5px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.monitoring-post > .content > .image {
    position: relative;
    width: 100%;
    height: 75px;
    overflow: hidden;
    border-radius: 4px;
    background-color: #e8e8e8;
}

.monitoring-post > .content > .image:not(.highres)::before {
    content: 'Bild anzeigen';
    position: absolute;
    width: 100%;
    top: calc(50% - 6px);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1em;
    text-transform: uppercase;
    color: white;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    z-index: 2;
}

.monitoring-post > .content > .image.loading:not(.highres)::before {
    content: 'Bild wird geladen...';
}

.monitoring-post > .content > .image.highres {
    height: auto;
    overflow: inherit;
}

.monitoring-post > .content > .image > .lowres {
    position: absolute;
    left: -15px;
    top: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}

.monitoring-post > .content > .image.highres > .lowres {
    display: none;
}

.monitoring-post > .content > .image > img {
    display: block;
    width: 100%;
    border-radius: 4px;
    pointer-events: none;
}

.monitoring-post > .social {
    display: flex;
    position: relative;
    padding: 15px;
    padding-top: 0;
}

.monitoring-post > .social > .likes {
    flex: 0 0 auto;
    /*width: calc(50% - 10px);*/
    margin-right: 10px;
    position: relative;
    display: block;
}

.monitoring-post > .social > div > h1 {
    font-weight: 500;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #4774f3;
    font-size: .7em;
    text-transform: uppercase;
    letter-spacing: .25px;
}

.monitoring-post > .social > div > h1 > i {
    font-size: 1.2em;
    margin-right: 5px;
}

.monitoring-post > .social > .likes > .likes-wrapper {
    display: none;
    position: relative;
    width: 100%;
    overflow: auto;
}

.monitoring-post > .social > .likes > .likes-wrapper[data-extends-likes] {
    padding-right: 30px;
}

.monitoring-post > .social > .likes > .likes-wrapper[data-extends-likes]::after {
    content: attr(data-extends-likes);
    position: absolute;
    font-size: 15px;
    font-family: "CircularMedium", sans-serif;
    font-weight: 500;
    color: #6d7b81;
    top: 11.5px;
    right: 6.5px;
}

.monitoring-post > .social > .likes > .likes-wrapper > a {
    display: block;
    float: left;
    margin-top: 5px;
}

.monitoring-post > .social > .likes > .likes-wrapper > a > img {
    display: block;
    width: 28px;
    height: 28px;
    border: 2px solid white;
    border-radius: 100%;
    object-fit: cover;
    object-position: center;
}

.monitoring-post.deleting::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 3px;
    z-index: 5;
    background-image: url(../img/icons/circle-loader.svg);
    background-size: 40px;
    background-position: center calc(50% - 20px);
    background-repeat: no-repeat;
}

.monitoring-post.deleting::before {
    content: 'Post wird gelöscht...';
    position: absolute;
    top: calc(50% + 12.5px);
    left: 0;
    z-index: 6;
    font-family: "CircularBook", sans-serif;
    font-size: 1em;
    width: 100%;
    text-align: center;
    color: #202730;
}

body.page-monitoring #facebook > .posts-wrapper > .monitoring-post:not(:last-of-type),
body.page-monitoring #twitter > .posts-wrapper > .monitoring-post:not(:last-of-type) {
    margin-bottom: 15px;
}
/* ==[ MONITORING STYLES END ]== */

/* ==[ CALENDAR STYLES ]== */
body.page-calendar #calendar-wrapper {
    display: block;
    position: relative;
    padding: 5px 15px;
    background-color: #1b1b1b;
    color: white;
}

body.page-calendar #calendar-wrapper > .caption {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0 5px;
}

body.page-calendar #calendar-wrapper > .caption > a {
    text-decoration: none;
    color: inherit;
    opacity: .5;
}

body.page-calendar #calendar-wrapper > .caption > a > i {
    display: block;
    font-size: 20px;
}

body.page-calendar #calendar-wrapper > .caption > h1 {
    font-size: 1.3em;
    font-family: "CircularBook",sans-serif;
    font-weight: 500;
    margin: 0 10px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.02rem;
}

body.page-calendar #calendar-wrapper > .calendar {
    width: 100%;
    margin: 0;
    position: relative;
    margin-top: 10px;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
}

body.page-calendar #calendar-wrapper > .calendar tr {
    width: 100%;
}

body.page-calendar #calendar-wrapper > .calendar tr th {
    text-align: center;
    position: relative;
    font-family: "CircularMedium",sans-serif;
    font-weight: 400;
    font-size: .75em;
    color: #535353;
    border-bottom: 0;
    padding-bottom: 5px;
    width: 39px;
}

body.page-calendar #calendar-wrapper > .calendar tr td {
    position: relative;
    text-align: center;
    border-radius: 100%;
    padding: 11px 0;
    border: 0;
}

body.page-calendar #calendar-wrapper > .calendar tr td.campaign::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 70%;
    background: #3a3a3a;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 100px;
    z-index: 1;
}

body.page-calendar #calendar-wrapper > .calendar tr td a {
    position: relative;
}

body.page-calendar #calendar-wrapper > .calendar tr td.campaign a {
    z-index: 2;
}

body.page-calendar #calendar-wrapper > .calendar tr td.campaign a > .daycount {
    color: white;
}

body.page-calendar #calendar-wrapper > .calendar tr td.campaign.campaign-between::after {
    border-radius: 0;
}

body.page-calendar #calendar-wrapper > .calendar tr td.campaign.campaign-last-day::after {
    border-radius: 100px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    left: 0;
    margin: auto 0;
}

body.page-calendar #calendar-wrapper > .calendar tr td.campaign.campaign-first-day::after {
    border-radius: 100px !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    right: 0;
    margin: auto 0;
}

body.page-calendar #calendar-wrapper > .calendar tr td.campaign.campaign-only-day::after {
    border-radius: 100px !important;
    width: 85%;
    margin: auto auto;
}

[data-bgcolor=red]::after {background-color: #F44336 !important}
[data-bgcolor=blue]::after {background-color: #2196F3 !important}
[data-bgcolor=light-blue]::after {background-color: #00BCD4 !important}
[data-bgcolor=turquoise]::after {background-color: #009688 !important}
[data-bgcolor=green]::after {background-color: #4CAF50 !important}
[data-bgcolor=light-green]::after {background-color: #8BC34A !important}
[data-bgcolor=yellow]::after {background-color: #FFC107 !important}
[data-bgcolor=orange]::after {background-color: #ff5722 !important}
[data-bgcolor=gray]::after {background-color: #9e9e9e !important}
[data-bgcolor=gray-blue]::after {background-color: #607D8B !important}
[data-bgcolor=brown]::after {background-color: #795548 !important}

body.page-calendar #calendar-wrapper > .calendar tr td.othermonth {
    opacity: .3;
}

body.page-calendar #calendar-wrapper > .calendar tr td a span.daycount {
    font-family: "CircularBook",sans-serif;
    font-weight: 400;
    color: #b5b5b5;
}

body.page-calendar #calendar-wrapper > .calendar tr td a.today span.daycount {
    color: white;
}

body.page-calendar #campaigns-wrapper {
    display: block;
    position: relative;
    padding: 15px;
    background-color: #2b2b2b;
    color: white;
}

body.page-calendar #campaigns-wrapper > h1 {
    font-family: "CircularBook", sans-serif;
    font-weight: normal;
    font-size: .72em;
    text-transform: uppercase;
    margin-bottom: 7.5px;
    letter-spacing: .5px;
}

body.page-calendar #campaigns-wrapper > .campaign-category {
    display: block;
    position: relative;
}

body.page-calendar #campaigns-wrapper > .campaign-category:not(:last-of-type) {
    margin-bottom: 15px;
}

body.page-calendar #campaigns-wrapper > .campaign-category > h1 {
    font-weight: normal;
    font-size: 1em;
    margin-bottom: 5px;
}

body.page-calendar #campaigns-wrapper > .campaign-category > h1 > span.color {
    display: inline-block;
    vertical-align: middle;
    width: 12px;
    height: 12px;
    background: #4d4d4d;
    border-radius: 2px;
    margin-right: 5px;
}

body.page-calendar #campaigns-wrapper > .campaign-category > h1 > span.title {
    display: inline-block;
    vertical-align: top;
}

body.page-calendar #campaigns-wrapper > .campaign-category > h1 > span.color[data-bgcolor=none] {display: none !important}
body.page-calendar #campaigns-wrapper > .campaign-category > h1 > span.color[data-bgcolor=red] {background-color: #F44336 !important}
body.page-calendar #campaigns-wrapper > .campaign-category > h1 > span.color[data-bgcolor=blue] {background-color: #2196F3 !important}
body.page-calendar #campaigns-wrapper > .campaign-category > h1 > span.color[data-bgcolor=light-blue] {background-color: #00BCD4 !important}
body.page-calendar #campaigns-wrapper > .campaign-category > h1 > span.color[data-bgcolor=turquoise] {background-color: #009688 !important}
body.page-calendar #campaigns-wrapper > .campaign-category > h1 > span.color[data-bgcolor=green] {background-color: #4CAF50 !important}
body.page-calendar #campaigns-wrapper > .campaign-category > h1 > span.color[data-bgcolor=light-green] {background-color: #8BC34A !important}
body.page-calendar #campaigns-wrapper > .campaign-category > h1 > span.color[data-bgcolor=yellow] {background-color: #FFC107 !important}
body.page-calendar #campaigns-wrapper > .campaign-category > h1 > span.color[data-bgcolor=orange] {background-color: #ff5722 !important}
body.page-calendar #campaigns-wrapper > .campaign-category > h1 > span.color[data-bgcolor=gray] {background-color: #9e9e9e !important}
body.page-calendar #campaigns-wrapper > .campaign-category > h1 > span.color[data-bgcolor=gray-blue] {background-color: #607D8B !important}
body.page-calendar #campaigns-wrapper > .campaign-category > h1 > span.color[data-bgcolor=brown] {background-color: #795548 !important}

body.page-calendar #campaigns-wrapper > .campaign-category > .campaigns {
    list-style:  none;
    color: #dfdfdf;
    font-size: .9em;
}

body.page-calendar #campaigns-wrapper > .campaign-category > .campaigns > li {
    display:  block;
    position:  relative;
    margin: 5px 0;
    padding-left: 1em;
}

body.page-calendar #campaigns-wrapper > .campaign-category > .campaigns > li > h1 {
    font-weight:  normal;
}

body.page-calendar #campaigns-wrapper > .campaign-category > .campaigns > li::before {
    content:  "-";
    position:  absolute;
    left: 0;
    top: 0;
}

body.page-calendar #campaigns-wrapper > .campaign-category > .campaigns > li > p {
    margin-top: 5px;
    font-size: .9em;
    color: #c7c7c7;
}

body.page-calendar #campaigns-wrapper > .campaign-category > .campaigns > li > p.dates {
    margin-top: 3px;
    font-size: .75em;
    color: #989898;
}
/* ==[ CALENDAR STYLES END ]== */

/* ==[ SETTINGS STYLES ]== */
body.page-settings #user {
    padding: 15px;
    flex: 0 0 auto;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

body.page-settings #user > .avatar-wrapper {
    width: 75px;
    margin-right: 12.5px;
    height: 75px;
    position: relative;
}

body.page-settings #user > .avatar-wrapper.uploading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    background-image: url(../img/icons/loader.svg);
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
}

body.page-settings #user > .avatar-wrapper > img {
    width: 75px;
    height: 75px;
    border-radius: 100%;
    object-fit: cover;
    object-position: center;
}

body.page-settings #user > .avatar-wrapper > button {
    position: absolute;
    width: 25px;
    height: 25px;
    bottom: -3px;
    right: -3px;
    background: #eaeaea;
    border-radius: 100%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

body.page-settings #user > .avatar-wrapper > button > i {
    font-size: 13px;
    color: #202730;
}

body.page-settings #user > .info {
    position: relative;
    width: calc(100% - 87.5px);
}

body.page-settings #user > .info > h1 {
    font-family: "CircularMedium", sans-serif;
    font-weight: 500;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.01rem;
    color: #121314;
    font-size: 1.3em;
}

body.page-settings #user > .info > h2 {
    font-size: .9em;
    font-family: "CircularBook", sans-serif;
    font-weight: 500;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.01rem;
    color: #858d92;
}

body.page-settings .settings-group {
    display: block;
    position: relative;
    padding: 15px;
    padding-top: 0;
}

body.page-settings .settings-group > h1 {
    font-family: "CircularMedium", sans-serif;
    font-weight: 500;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.01rem;
    color: #121314;
    font-size: 1em;
}

body.page-settings .settings-group > .group-action {
    position: absolute;
    top: 0;
    right: 15px;
    width: 1.5em;
    height: 1.5em;
    background: #2e5fe9;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

body.page-settings .settings-group > .group-action > i {
    font-size: 1em;
}

body.page-settings .settings-group > .settings-wrapper {
    display: block;
    position: relative;
    margin-top: 10px;
    padding: 3px 10px;
    background-color: #f6f6f6;
    border-radius: 4px;
    padding-bottom: 1px;
}

#push-notifications-wrapper {
    margin:  -15px;
    margin-top: 15px;
    border-top: 1px solid #f0f0f0;
    padding: 15px;
    display:  flex;
    align-items:  center;
}

#push-notifications-wrapper > .left > h1 {
    font-family: "CircularMedium", sans-serif;
    font-weight: 500;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.01rem;
    color: #121314;
    font-size: 1em;
}

#push-notifications-wrapper > .left  > p {
    font-size: .8em;
    font-family: "CircularBook", sans-serif;
    font-weight: 500;
    color: #858d92;
    line-height: 1.3em;
    margin-top: 5px;
}

#push-notifications-wrapper > .left > p.error {
    color: #e74c3c;
}

#push-notifications-wrapper > .left > p.loading {
    color: #4774f3;
}

#push-notifications-wrapper > .left {
    display: inline-block;
    position: relative;
    width: calc(100% - 35px);
    vertical-align:  top;
    padding-right: 10px;
}

#push-notifications-wrapper > .right {
    width: 35px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

#push-notifications-wrapper > .right > button {
    display: flex;
    width: 35px;
    height: 35px;
    background: #6d7b81;
    border-radius: 4px;
    color: white;
    justify-content: center;
    align-items: center;
}

#push-notifications-wrapper > .right > button.subscribed,
#push-notifications-wrapper > .right > button.success {
    background: #2ecc71;
}

#push-notifications-wrapper > .right > button.error {
    background: #e84141;
}

#push-notifications-wrapper > .right > button.loading {
    background: #4774f3;
}

#push-notifications-wrapper > .right > button > i {
    font-size: 21px;
}

#push-notifications-wrapper > .left > span.badge {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: .075rem;
    color: #4774f3;
    font-size: 10px;
    border: 1px solid #4774f3;
    padding: 1px 3px;
    line-height: 1;
    border-radius: 3px;
}

body.page-settings .settings-group:not(:last-of-type) {
    margin-bottom: 10px;
}

body.page-settings .settings-group > .settings-wrapper > .setting {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    cursor: pointer;
}

body.page-settings .settings-group > .settings-wrapper > .setting > .icon {
    display: flex;
    flex: 0 0 auto;
    position: relative;
    width: 37px;
    height: 37px;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #4774f3;
}

body.page-settings .settings-group > .settings-wrapper > .setting > .text {
    display: block;
    width: calc(100% - 47px);
    position: relative;
    padding: 13px 0;
}

body.page-settings .settings-group > .settings-wrapper > .setting > .text > h1 {
    font-family: "CircularMedium", sans-serif;
    font-weight: 500;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.01rem;
    color: #121314;
    font-size: 1em;
    margin-bottom: .2em;
    line-height: 1em;
}

body.page-settings .settings-group > .settings-wrapper > .setting > .text > h1 > .status {
    font-size: .95em;
    vertical-align: middle;
    margin-bottom: .2em;
    margin-left: 4px;
}

body.page-settings .settings-group > .settings-wrapper > .setting > .text > h1 > .status.valid {
    color: #2ecc71;
}

body.page-settings .settings-group > .settings-wrapper > .setting > .text > h1 > .status.invalid {
    color: #e84141;
}

body.page-settings .settings-group > .settings-wrapper > .setting > .text > p {
    font-size: .8em;
    font-family: "CircularBook", sans-serif;
    font-weight: 500;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.01rem;
    color: #858d92;
}

body.page-settings .settings-group > .settings-wrapper.platforms > .setting > .text > p {
    white-space: inherit;
    overflow: inherit;
    text-overflow: inherit;
}

body.page-settings .settings-group > .settings-wrapper > .setting:not(:last-of-type):not(.last) > .text {
    border-bottom: 1px solid #e3e3e3;
}

body.page-settings .settings-group > .settings-wrapper:not(.platforms) > .setting > .text::after {
    content: 'keyboard_arrow_right';
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: calc(50% - 12px);
    right: 0;
    opacity: .3;
}

body.page-settings .settings-group > .settings-wrapper:not(.platforms) > .setting.open > .text::after {
    content: 'close';
    font-size: 20px;
    top: calc(50% - 10px);
}

body.page-settings .settings-group > .settings-wrapper > .setting.facebook > .icon {
    background-image: url(../img/icons/platforms/facebook.svg);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}

body.page-settings .settings-group > .settings-wrapper > .setting.twitter > .icon {
    background-image: url(../img/icons/platforms/twitter.svg);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}

body.page-settings .settings-group > .info-wrapper {
    display: block;
    position: relative;
    margin-top: 10px;
}

body.page-settings .settings-group > .info-wrapper > .info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 5px 0;
}

body.page-settings .settings-group > .info-wrapper > .info > span:first-of-type {
    font-family: "CircularMedium", sans-serif;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.01rem;
    color: #3e4245;
    font-size: .8em;
    margin-bottom: .2em;
    line-height: 1em;
}

body.page-settings .settings-group > .info-wrapper > .info > span:last-of-type {
    font-family: "CircularBook", sans-serif;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.01rem;
    color: #6d7b81;
    font-size: .8em;
    margin-bottom: .2em;
    line-height: 1em;
}

body.page-settings .settings-group > .settings-wrapper > .setting-content {
    display: none;
    position: relative;
    padding: 15px;
    background: white;
    margin: 0 -10px;
    margin-top: -1px;
    border: 1px solid #f6f6f6;
    border-width: 0 1px;
    -webkit-transition: .2s all cubic-bezier(.65,.05,.36,1);
    -moz-transition: .2s all cubic-bezier(.65,.05,.36,1);
    transition: .2s all cubic-bezier(.65,.05,.36,1);
    /*box-shadow: inset 0 7px 9px -7px rgba(0, 0, 0, 0.1);*/
}

body.page-settings .settings-group > .settings-wrapper > .setting.open + .setting-content {
    display: block;
}

/*body.page-settings .settings-group > .settings-wrapper > .setting.open {
    background-color: #4774f3;
    color: white;
    margin: -10px;
    margin-top: -3px;
    margin-bottom: 0;
    width: calc(100% + 20px);
    padding: 0 10px;
}

body.page-settings .settings-group > .settings-wrapper > .setting:first-of-type.open {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

body.page-settings .settings-group > .settings-wrapper > .setting.open > .icon {
    color: white;
}

body.page-settings .settings-group > .settings-wrapper > .setting.open > .text > h1 {
    color: white;
}

body.page-settings .settings-group > .settings-wrapper > .setting.open > .text > p {
    color: #9fb5f2;
}*/

body.page-settings .settings-group > .settings-wrapper > .setting-content > .cbx-wrapper {
    display: block;
    position: relative;
}

body.page-settings .settings-group > .settings-wrapper > .setting-content > .cbx-wrapper:not(:last-of-type) {
    margin-bottom: 10px;
}

body.page-settings .settings-group > .settings-wrapper > .setting-content > .cbx-wrapper.disabled {
    pointer-events: none;
    opacity: .5;
}

body.page-settings .settings-group > .settings-wrapper > .setting-content > .cbx-wrapper > input {
    display: none;
}

body.page-settings .settings-group > .settings-wrapper > .setting-content > .cbx-wrapper > .cbx-icon {
    position: relative;
    top: 1px;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    border: 1px solid #c8ccd4;
    border-radius: 3px;
    cursor: pointer;
}

body.page-settings .settings-group > .settings-wrapper > .setting-content > .cbx-wrapper > input:checked + .cbx-icon {
    border-color: transparent;
}

body.page-settings .settings-group > .settings-wrapper > .setting-content > .cbx-wrapper > .cbx-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #18cda6;
    transform: scale(0);
}

body.page-settings .settings-group > .settings-wrapper > .setting-content > .cbx-wrapper > input:checked + .cbx-icon::before {
    transform: scale(1);
    opacity: 0;
    transition: all 0.3s ease;
}

body.page-settings .settings-group > .settings-wrapper > .setting-content > .cbx-wrapper > .cbx-icon::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 2px;
    height: 2px;
    border-radius: 2px;
    box-shadow: 0 -18px 0 #18cda6, 12px -12px 0 #18cda6, 18px 0 0 #18cda6, 12px 12px 0 #18cda6, 0 18px 0 #18cda6, -12px 12px 0 #18cda6, -18px 0 0 #18cda6, -12px -12px 0 #18cda6;
    transform: scale(0);
}

body.page-settings .settings-group > .settings-wrapper > .setting-content > .cbx-wrapper > input:checked + .cbx-icon::after {
    transform: scale(1);
    opacity: 0;
    transition: all 0.6s ease;
}

body.page-settings .settings-group > .settings-wrapper > .setting-content > .cbx-wrapper > .cbx-icon > svg {
    position: relative;
    top: -1px;
    transform: scale(0);
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.page-settings .settings-group > .settings-wrapper > .setting-content > .cbx-wrapper > input:checked + .cbx-icon > svg {
    transform: scale(1);
    transition: all 0.4s ease;
    transition-delay: 0.1s;
}

body.page-settings .settings-group > .settings-wrapper > .setting-content > .cbx-wrapper > .cbx-icon > svg > polyline {
    stroke-width: 2;
    stroke: #18cda6;
}

body.page-settings .settings-group > .settings-wrapper > .setting-content > .cbx-wrapper > .cbx-label {
    font-size: 14px;
    font-family: "CircularBook", sans-serif;
    font-weight: 500;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.01rem;
    color: #34495e;
    display: inline-block;
    vertical-align: text-bottom;
}

body.page-settings .settings-group > .settings-wrapper.users {
    padding: 0;
    background-color: inherit;
    border-radius: 0;
}

body.page-settings .settings-group > .settings-wrapper.users > .user {
    position: relative;
    display: flex;
    align-items: center;
}

body.page-settings .settings-group > .settings-wrapper.users > .user:not(:last-of-type) {
    margin-bottom: 10px;
}

body.page-settings .settings-group > .settings-wrapper.users > .user > .avatar {
    width: 45px;
    flex: 0 0 auto;
    overflow: hidden;
    margin-right: 12px;
    position: relative;
}

body.page-settings .settings-group > .settings-wrapper.users > .user > .avatar > img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 100%;
}

body.page-settings .settings-group > .settings-wrapper.users > .user > .info {
    position: relative;
    font-size: .9em;
    width: calc(100% - 80px);
}

body.page-settings .settings-group > .settings-wrapper.users > .user > .info > h1 {
    font-family: "CircularMedium",sans-serif;
    color: #202730;
    font-size: 1.1em;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
    letter-spacing: 0;
    font-weight: normal;
}

body.page-settings .settings-group > .settings-wrapper.users > .user > .info > h1 > .self {
    font-size: .8em;
    color: #77828c;
    margin-left: 3px;
}

body.page-settings .settings-group > .settings-wrapper.users > .user > .info > p {
    font-family: "Roboto",sans-serif;
    color: #8f9aa4;
    font-size: .89em;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
    margin-left: 0;
}

body.page-settings .settings-group > .settings-wrapper.users > .user > .options {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 20px;
    height: 50px;
    color: #b5bec4;
}

body.page-settings .settings-group > .settings-wrapper.users > .user > .options > i {
    font-size: 20px;
}
/* ==[ SETTINGS STYLES END ]== */

/* ==[ MODAL STYLES ]== */
.jconfirm div.jconfirm-box {
    background-color: white;
    color: black;
    border-radius: 3px!important;
}

.jconfirm div.jconfirm-box div.jconfirm-closeIcon {
    background-size: 9px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .35;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 22px !important;
}

.jconfirm div.jconfirm-box>div.jconfirm-title-c {
    padding-bottom: 7.5px;
}

.jconfirm div.jconfirm-box>div.jconfirm-title-c>.jconfirm-title {
    font-size: .82em;
    font-family: "CircularBook",sans-serif;
    margin: 0;
    max-width: calc(100% - 20px);
    /*white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;*/
    color: black;
}

.jconfirm div.jconfirm-box div.jconfirm-content-pane {
    margin-bottom: 5px;
}

.jconfirm div.jconfirm-box div.jconfirm-buttons {
    display: flex;
    width: 100%;
    position: relative;
    justify-content: space-between;
}

.jconfirm div.jconfirm-box div.jconfirm-buttons button {
    text-transform: inherit!important;
    font-weight: normal!important;
    font-family: "CircularBook",sans-serif;
    background-color: #e8e9e9;
    width: auto;
    flex: 1 1 auto;
}

.jconfirm div.jconfirm-box div.jconfirm-buttons button.btn-createUser {
    background-color: transparent;
    color: black;
    padding-left: 25px;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgdmlld0JveD0iMCAwIDQ3NyA0NzciIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3NyA0Nzc7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtmaWxsOiMyMzUyRDY7fQ0KPC9zdHlsZT4NCjxnPg0KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yNTcuOCwwYzE5LjgsNi40LDQwLjgsMTAuNCw1OS4xLDE5LjhjNjIsMzEuNiw5NSwxMDMuMiw4MC45LDE3MC42Yy0xNC40LDY4LjQtNzIsMTIwLTE0MC45LDEyNi40DQoJCWMtMjIuMiwyLjEtNDUuMiwxLjktNjYuNSw3LjZjLTc5LjUsMjEuMS0xMjksNzMtMTQ5LjQsMTUyLjdjLTEzLDAtMjYsMC0zOSwwQzIwLjYsMzg5LDczLjYsMzI5LjYsMTU1LjksMjk0DQoJCWMtMy41LTIuOC02LjMtNS4xLTkuMS03LjNjLTIuOC0yLjMtNS43LTQuNS04LjMtN0M5My4zLDIzNyw3My41LDE4NSw4Ny43LDEyMy44YzE0LjEtNjAuOSw1My41LTEwMC4xLDExMy41LTExOA0KCQljNy45LTIuNCwxNi0zLjgsMjQuMS01LjdDMjM2LjIsMCwyNDcsMCwyNTcuOCwweiBNMjQyLjYsMjc4LjNjNjUuNS0wLjEsMTE5LjItNTQsMTE5LjItMTE5LjVjLTAuMS02NS4zLTU0LjQtMTE5LjYtMTE5LjUtMTE5LjQNCgkJYy02NiwwLjMtMTE5LjMsNTMuNS0xMTkuNCwxMTkuMkMxMjIuNywyMjUsMTc2LjEsMjc4LjQsMjQyLjYsMjc4LjN6Ii8+DQoJPHJlY3QgeD0iMzcxLjgiIHk9IjMxMC45IiBjbGFzcz0ic3QwIiB3aWR0aD0iNDEuOCIgaGVpZ2h0PSIxNjUuNyIvPg0KCQ0KCQk8cmVjdCB4PSIzNzEuOCIgeT0iMzEwLjkiIHRyYW5zZm9ybT0ibWF0cml4KC0xLjgzNjk3MGUtMTYgMSAtMSAtMS44MzY5NzBlLTE2IDc4Ni4zOTQ0IDEuMDE5MykiIGNsYXNzPSJzdDAiIHdpZHRoPSI0MS44IiBoZWlnaHQ9IjE2NS43Ii8+DQo8L2c+DQo8L3N2Zz4NCg==);
    background-size: 15px;
    background-position: left center;
    background-repeat: no-repeat;
    text-align: left;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jconfirm div.jconfirm-box div.jconfirm-buttons button.btn-cancel {
    background-color: transparent;
    color: black;
    opacity: .75;
}

form.userModalForm,
form.postModalForm {
    margin-bottom: 0;
    position: relative;
}

form.userModalForm > .form-group,
form.postModalForm > .form-group {
    margin-top: 5px;
    display: block;
}

form.userModalForm label,
form.postModalForm label {
    font-family: "CircularBook",sans-serif;
    font-size: 13px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

form.userModalForm label > .hint,
form.postModalForm label > .hint {
    color: #8e9192;
}

form.userModalForm input,
form.userModalForm select,
form.postModalForm input,
form.postModalForm select {
    background: #fff;
    border-radius: 3px;
    color: black;
    cursor: text;
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 7.5px;
    font-size: 13px;
    padding: 7px 9px;
    border: 1px solid #ccd3d8;
}

form.userModalForm input:focus,
form.postModalForm input:focus {
    border: 1px solid #2a5be4;
}

form.userModalForm input.ErrorField,
form.postModalForm input.ErrorField {
    border: 1px solid #ff4040;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

form.userModalForm .ValidationErrors,
form.postModalForm .ValidationErrors {
    display: block;
    width: 100%;
    background-color: #ff4040;
    color: white;
    margin-top: -8px;
    padding: 5px 10px;
    margin-bottom: 8px;
    font-size: .7em;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

form.userModalForm label.required::after,
form.postModalForm label.required::after {
    content: '*';
    font-family: "CircularMedium",sans-serif;
    margin-left: 3px;
    color: #ff4040;
}

form.userModalForm textarea,
form.postModalForm textarea {
    background: #fff;
    border-radius: 3px;
    color: black;
    cursor: text;
    display: block;
    width: 100%;
    margin-bottom: 7.5px;
    font-size: 13px;
    padding: 7px 9px;
    border: 1px solid #ccd3d8;
    resize: unset;
    height: 100px;
}

form.userModalForm label > .hint, form.postModalForm label > .hint {
    color: #8e9192;
}

form.postModalForm #modal-post-platforms {
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    justify-content: stretch;
}

form.postModalForm #modal-post-length-exceeded {
    font-size: .8em;
    color: #ff7500;
}

form.postModalForm #modal-post-platforms > input {
    background: #eaeaea;
    display: flex;
    flex: 0 1 auto;
    border-radius: 0;
    color: white;
    cursor: pointer;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0;
    height: 33px;
    align-items: center;
    vertical-align: center;
}

form.postModalForm #modal-post-platforms > input#modal-post-platforms-facebook {
    position: relative;
    background-image: url(../img/icons/platforms/facebook-active.svg);
    background-size: 15px;
    background-position: calc(50% - 40px) center;
    background-repeat: no-repeat;
    background-color: #3b5998;
}

form.postModalForm #modal-post-platforms > input#modal-post-platforms-facebook:not(:checked) {
    background-image: url(../img/icons/platforms/facebook.svg);
}

form.postModalForm #modal-post-platforms > input#modal-post-platforms-twitter {
    position: relative;
    background-image: url(../img/icons/platforms/twitter-active.svg);
    background-size: 15px;
    background-position: calc(50% - 30px) center;
    background-repeat: no-repeat;
    background-color: #1da1f2;
}

form.postModalForm #modal-post-platforms > input#modal-post-platforms-twitter:not(:checked) {
    background-image: url(../img/icons/platforms/twitter.svg);
}

form.postModalForm #modal-post-platforms > input#modal-post-platforms-facebook::after {
    content: 'Facebook';
    position: absolute;
    left: 37.5px;
    font-family: "CircularBook", sans-serif;
    line-height: 13px;
    font-size: 13px;
    top: calc(50% - 6.5px);
}

form.postModalForm #modal-post-platforms > input#modal-post-platforms-twitter::after {
    content: 'Twitter';
    position: absolute;
    left: calc(50% - 15px);
    font-family: "CircularBook", sans-serif;
    line-height: 13px;
    font-size: 13px;
    top: calc(50% - 6.5px);
}

form.postModalForm > .error {
    font-size: .9em;
    margin: 10px 0 0;
    color: #f02f2f;
}

form.postModalForm #modal-post-platforms > input:not(:checked) {
    background-color: white !important;
    color: #1b1b1b;
    border: 1px solid #ccd3d8;
}

form.postModalForm #modal-post-platforms > input:not(:checked) + input:not(:checked) {
    border-left-width: 0;
}

#bottom-panel.select-context {
    padding: 15px;
    font-size: .95em;
}

.select-context > h1 {
    display: block;
    font-family: "Roboto",sans-serif;
    text-transform: uppercase;
    font-size: .75em;
    letter-spacing: .5px;
    color: #8f9aa4;
    font-weight: 500;
    margin-bottom: 8px;
}

.select-context > .select-context-options-wrapper {
    position: relative;
}

.select-context > .select-context-options-wrapper > .select-context-option {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: left;
    padding: 4.5px 0;
    color: #364656;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.select-context > .select-context-options-wrapper > .select-context-option:not(:last-of-type) {
    margin-bottom: 5px;
}

.select-context > .select-context-options-wrapper > .select-context-option > i {
    font-size: 1.1em;
    width: 1em;
    height: 1em;
    display: block;
}

.select-context > .select-context-options-wrapper > .select-context-option > span {
    margin-left: 10px;
    line-height: 1em;
    font-family: "CircularBook",sans-serif;
}

.select-context > .select-context-options-wrapper > .select-context-seperator {
    margin-top: .5rem;
    margin-bottom: .5rem;
    border-top: 1px solid #eaeaea;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content > div > p {
    color: #6d7b81;
    font-size: .9em;
}
/* ==[ MODAL STYLES END ]== */

/* ==[ MISCELLANEOUS STYLES ]== */
#error-bar {
    display: block;
    position: relative;
    width: 100%;
    margin-top: 67px;
    background-color: #e84141;
    color: white;
    padding: 15px;
    -webkit-transition: .2s all cubic-bezier(.65,.05,.36,1);
    -moz-transition: .2s all cubic-bezier(.65,.05,.36,1);
    transition: .2s all cubic-bezier(.65,.05,.36,1);
}

#error-bar > h1 {
    font-size: 15px;
    font-weight: 500;
    font-family: "CircularBook",sans-serif;
    margin-bottom: 5px;
    padding-right: 25px;
}

#error-bar > p {
    font-size: .8em;
    color: #f79f9f;
    display: block;
}

#error-bar > .closebtn {
    position: absolute;
    width: 1em;
    height: 1em;
    top: 15px;
    right: 15px;
    opacity: .5;
}

#error-bar > .closebtn > i {
  font-size: 1em;
}

#error-bar + main {
    padding-top: 0;
}

#tabs {
    display: flex;
    position: relative;
    padding: 10px;
    background-color: #1b1b1b;
    color: white;
    justify-content: stretch;
}

#messages + #tabs {
    background-color: #2b2b2b;
}

#tabs > li {
    list-style: none;
    flex: 1 1 auto;
    text-align: center;
    border: 1px solid #5c5c5c;
    border-width: 1px 0 1px 1px;
    padding: 7.5px;
    font-size: .9em;
    color: silver;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#tabs > li:first-of-type {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

#tabs > li:last-of-type {
    border-right-width: 1px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

#tabs > li.active {
    border-color: white;
    color: white;
}

#tabs > li.active + li {
    border-left-color: white;
}

#tabs > li > span {
    opacity: .5;
    margin-left: 5px;
}

#tabs > li > i {
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#tabs > li[data-tab="facebook"].active {
    border-color: #3b5998;
    background-color: #3b5998;
}

#tabs > li[data-tab="facebook"].active + li {
    border-left-color: #3b5998;
}

#tabs > li[data-tab="twitter"].active {
    border-color: #55ACEE;
    background-color: #55ACEE;
}

#tabs > li[data-tab="facebook"] > i { background-image: url(../img/icons/platforms/facebook.svg); }
#tabs > li[data-tab="twitter"] > i { background-image: url(../img/icons/platforms/twitter.svg); }
#tabs > li[data-tab="facebook"].active > i { background-image: url(../img/icons/platforms/facebook-active.svg); }
#tabs > li[data-tab="twitter"].active > i { background-image: url(../img/icons/platforms/twitter-active.svg); }

.tab-wrapper {
    display: none;
}

.tab-wrapper.current{
    display: inherit;
}

[extends-menu] {
    position: relative;
}

[extends-menu] .extended-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.125);
    color: black;
    padding: 3.5px 7.5px;
    border-radius: 3px;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: .2s all ease-in-out;
    -moz-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

[extends-menu].menu-extended .extended-menu {
    visibility: visible;
    pointer-events: all;
    opacity: 1;
}

[extends-menu] .extended-menu::before {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    top: -3px;
    right: 15px;
    transform: rotate(45deg);
}

[extends-menu] .extended-menu > li {
    list-style: none;
    white-space: nowrap;
    margin: 5px 0;
    display: flex;
    align-items: center;
    color: #202730;
    cursor: pointer;
}

[extends-menu] .extended-menu > li.critical {
    color: #ff3b3b;
}

[extends-menu] .extended-menu > li.seperator {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #e8e8e8;
    margin: 7.5px 0;
}

[extends-menu] .extended-menu > li > i {
    display: block;
    font-size: 18px;
    margin-right: 5.5px;
}

[extends-menu] .extended-menu > li > span {
    display: block;
    font-size: .85em;
    line-height: 1em;
    font-family: "CircularBook", sans-serif;
}

#status-bar.success {
    background-color: #2ecc71;
}

.jconfirm-content textarea {
    background: #fff;
    border-radius: 3px;
    color: black;
    cursor: text;
    display: block;
    width: 100%;
    margin-bottom: 7.5px;
    font-size: 13px;
    padding: 7px 9px;
    border: 1px solid #ccd3d8;
    resize: unset;
    height: 100px;
}

noscript {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 5000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    pointer-events: all;
}

noscript > i {
    font-size: 50px !important;
    margin-bottom: 15px;
    color: #e84141;
}

noscript > h1 {
    font-size: 1.2em;
    font-weight: normal;
    text-align: center;
    padding: 0 15px;
    margin-bottom: 10px;
}

noscript > p {
    font-size: 1em;
    font-weight: normal;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 10px;
    color: #d1d1d1;
}

noscript > a {
    font-size: 1em;
    font-weight: normal;
    text-decoration: none;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 10px;
    color: #7195fa;
}

.jconfirm-type-postDisplayModal {
    padding: 0 !important;
}

.jconfirm-type-postDisplayModal .jconfirm-title-c, .jconfirm-type-postDisplayModal .jconfirm-buttons {
    display: none !important;
}

.jconfirm-type-postDisplayModal .jconfirm-content-pane {
    display: block !important;
    margin: 0 !important;
}
/* ==[ MISCELLANEOUS STYLES END ]== */
