/* Buttons */
.skl-btn {
    display: inline-block;
    height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 3px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.15);
    text-transform: uppercase;
    font-size: 12px;
    font-family: "OpenSans-Bold", Helvetica, Arial, sans-serif;
    font-weight: normal;
    line-height: 3;
    cursor: pointer;
    -webkit-transition: background-color 0.2s ease-out;
    transition: background-color 0.2s ease-out;
    overflow: hidden;
}
.skl-btn:focus,
.skl-btn:active {
    outline: 0 !important;
    box-shadow: none !important;
}
.skl-btn.blue {
    color: #fff;
    background-color: #2fc6f6;
}
.skl-btn.blue:hover {
    color: #fff;
    background-color: #3fddff;
}
.skl-btn.green {
    color: #535c69;
    background-color: #bbed21;
}
.skl-btn.green:hover {
    background-color: #d2f95f;
}
.skl-btn.green:hover {
    border-bottom-color: transparent;
}
.skl-btn.red {
    background: #d00000;
    color: white;
}
.skl-btn.red:hover {
    background-color: #ee0000;
}
.skl-btn.cancel {
    height: auto;
    padding: 0;
    color: #535c69;
    line-height: 1.5;
    background-color: transparent;
    box-shadow: none;
    border-bottom: 1px solid #c0c2c5;
    -webkit-transition: border-color 0.2s ease-out;
    transition: border-color 0.2s ease-out;
}
.skl-btn.simple {
    box-shadow: none;
}

/* Loader */
.skl-overlay-container {
    position: relative;
    cursor: default;
}
body.skl-overlay-container {
    position: initial;
}
body.skl-overlay-container .skl-overlay {
    position: fixed !important;
}
.skl-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    background-color: rgba(255, 255, 255, 0.75);
    opacity: 0;
    line-height: 1;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    will-change: opacity, background-color;
    z-index: 9999;
    pointer-events: none;
}
.skl-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}
.skl-overlay .skl-loader {
    display: block;
}
.skl-overlay .skl-loader {
    color: rgba(0, 0, 0, 0.87);
}
.skl-overlay .skl-loader:before {
    border-color: rgba(0, 0, 0, 0.1);
}
.skl-overlay .skl-loader:after {
    border-color: #767676 transparent transparent;
}
.skl-loader {
    display: none;
    position: absolute;
    width: 20px;
    height: 20px;
    font-size: 1em;
    top: 50%;
    left: 50%;
    margin: 0px;
    text-align: center;
    z-index: 9999;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.skl-loader:before,
.skl-loader:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.skl-loader:before {
    border: 0.2em solid rgba(0, 0, 0, 0.1);
}
.skl-loader:after {
    -webkit-animation: sklloader 0.6s linear;
    animation: sklloader 0.6s linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    border-color: #767676 transparent transparent;
    border-style: solid;
    border-width: 0.2em;
    box-shadow: 0px 0px 0px 1px transparent;
}
@-webkit-keyframes sklloader {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes sklloader {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Notify */
.skl-notify {
    position: fixed;
    max-width: 300px;
    min-height: 30px;
    top: 15px;
    right: 15px;
    z-index: 2000;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 7px 21px rgba(83, 92, 105, .12), 0 -1px 6px 0 rgba(83, 92, 105, .06);
    font: 13px "Helvetica Neue", Helvetica, Arial, sans-serif;
    will-change: opacity;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
    -webkit-animation: sklnotify .4s 1;
    animation: sklnotify .4s 1;
}
@-webkit-keyframes sklnotify {
    from {opacity: .5; -webkit-transform: scale(.5);}
    to {opacity: 1; -webkit-transform: scale(1);}
}
@keyframes sklnotify {
    from {opacity: 0; transform: scale(.5);}
    to {opacity: 1; transform: scale(1);}
}
.skl-notify span {
    display: block;
    color: #636363;
    padding-right: 20px;
}
.skl-notify button {
    position: absolute;
    width: 14px;
    height: 14px;
    top: 8px;
    right: 8px;
    padding: 0;
    border-radius: 50%;
    border: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
    background-image: url('images/close-gray.svg');
    text-indent: -9999px;
    white-space: nowrap;
    overflow: hidden;
    will-change: background;
    -webkit-transition: background 0.2s ease-out;
    transition: background 0.2s ease-out;
}
.skl-notify button:hover {
    cursor: pointer;
    background-color: #f00;
    background-image: url('images/close-white.svg');
}
.skl-notify button:focus,
.skl-notify button:active {
    outline: 0 !important;
    box-shadow: none !important;
}

/* Dialog */
.skl-dialog {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 1002;
}
.skl-dialog-content {
    position: relative;
    display: inline-block;
    width: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background-color: #fff;
    padding: 0 15px;
}
.skl-dialog-title {
    max-width: 280px;
    margin: 0 auto;
    padding-top: 25px;
    font-size: 12px;
    font-family: "OpenSans-Semibold", Helvetica, Arial, sans-serif;
    color: #000;
}
.skl-dialog-controls {
    padding-top: 40px;
    padding-bottom: 25px;
    text-align: center;
}
.skl-dialog-controls > * {
    display: inline-block;
    vertical-align: middle;
    margin: 0 14px;
}

/* User Select */
.skl-userselect {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1200;
    background-color: rgba(0,0,0,.5);
}
.skl-userselect.open {
    display: block;
}
.skl-userselect > div {
    position: relative;
    top: 50%;
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.skl-userselect.open .finder-box {
    display: block !important;
    margin: 0 auto;
    background-color: #fff;
    padding: 16px;
}
.skl-userselect [data-action=close] {
    position: absolute;
    width: 64px;
    height: 64px;
    top: 47px;
    right: 54px;
    z-index: 5;
    padding: 15px;
    background-color: rgba(255,255,255,.35);
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
}
.skl-userselect [data-action=close]>span {
    display: inline-block;
    padding-top: 23px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 20px;
    background-image: url('/local/assets/images/close.svg');
    will-change: opacity;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}
.skl-userselect [data-action=close]:hover>span {
    opacity: 0.7;
}

.bx24-connection-status, .bx-messenger-connection-status {
    display: none !important;
}
.pinable-block[data-block-name="SE_ORIGINATOR"] {
    display: none !important;
}
.task-dashed-link-inner[data-target="originator"] {
    display: none !important;
}
.feed-post-text-more[bx-mpl-block="more-button"] {
    display: block !important;
}
#intranet_user_grid_s1_toolbar_button {
    display: none;
}

/** popup copy calendar event */
.popup-background-copy {
    position: absolute;
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: #00000088;
    justify-content: center;
}

.popup-copy-title {
    text-transform: uppercase;
    text-align: center;
}

.popup-copy-event-calendar {
    width: 650px;
    padding: 20px;
    background: white;
    border-radius: 5px;
}

.popup-copy-date {
    display: flex;
    margin: 10px 0;
    justify-content: center;
}

.border-copy {
    border-bottom: 1px solid black;
    width: 10px;
    height: 0;
    margin: auto 10px;
}

.popup-btn-block {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#copy_cancel {
    cursor: pointer;
    text-transform: uppercase;
    padding: 5px;
    font-weight: 600;
    margin-right: 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
}

#copy_event {
    cursor: pointer;
    text-transform: uppercase;
    color: #535c69;
    background-color: #bbed21;
    border-radius: 3px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.15);
    font-size: 12px;
    transition: background-color 0.2s ease-out;
    padding: 13px;
    font-weight: 600;
}
