/*=========================== Login =========================*/

.login {
  min-height: 100%;
  position: relative;
}

.login .login-header {
  min-height: 50px;
}

.login .logo {
  margin-bottom: 50px;
}

.login .welcome-text {
  margin: 0 0 40px 0;
  text-align: center;
}

.login form {
  margin-bottom: 200px;
}

.login form button {
  margin-bottom: 25px;
  margin-top: 0;
}

.login .links {
  font-size: 13px;
  line-height: 21px;
}

.login .links a {
  text-decoration: underline;
}

.login .login-footer { 
  position: absolute; 
  bottom: 0;
  right: 0;
  left: 0;
  margin: 15px 0;
}

.login .login-footer a,
.login .login-footer span {
  font-size: 15px;
  line-height: 18px;
  opacity: 0.7;
}

.login .login-footer a:hover {
  text-decoration: none;
  opacity: 1;
}

.login .login-footer .logo {
  margin: 50px 0 50px 0;
  max-height: 100px;
}

@media (min-width: 768px) {
  .login .login-header {
    min-height: 80px;
  }

  .login .logo {
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .login form .links .right {
    float: right;
  }
}

/*========== Header ==========*/

.header { 
    background: #ffffff;
    width: 100%; 
    margin: 0 auto;
    padding: 0px;
    z-index: 1040;
    position: relative;
}

.header a {
    color: #ffffff;
    text-decoration: none;
}

.header a:hover {
    color: #ffffff;
}

.header .header-main {
    height: 70px;
    border-bottom: none;
    background: #333333;
}

.header .dropdown-item,
.header.app-switcher-open .dropdown-item {
    color: #212529;
}

.header .dropdown-item:hover,
.header.app-switcher-open .dropdown-item:hover {
    color: #ffffff;
    background-color: #212529;
}

.header .app-selector {
    float: left;
}

.header .app-selector > a {
    font-size: 19px;
    width: 50px;
    line-height: 70px;
    display: inline-block;
    padding: 0 15px;
    outline: none;
    text-decoration: none;
}

.header .app-selector > a .os-icon-apps {
    color: #ffffff;
    width: 19px;
    display: inline-flex;
    opacity: 0.8;
}

.header .app-selector > a .os-icon-apps:before {
    content: "\e900";
}

.header.app-switcher-open .app-selector > a .os-icon-apps:before {
    content: "\e01f";
}

@media (min-width: 576px) {

    .header .app-selector > a .os-icon-apps:before {
        content: "\e901";
    }

    .header.app-switcher-open .app-selector > a .os-icon-apps:before {
        content: "\e901";
    }
    
}

.header .app-list { 
    position: absolute;
    background-color: #ffffff;
    display: none;
    z-index: 1040;
    padding: 0;
    margin: 0;
    min-width: 292px;
    width: 100%;
    box-shadow: 0px 20px 16px 3px rgb(0 0 0 / 7%), 0 5px 7px 0 rgb(0 0 0 / 10%);
}

.header.app-switcher-open .app-list {
    display: block;
}

@media (min-width: 576px) {

    .header .app-list {
        border: 1px solid #E5E5E5;
        width: auto;
        margin: 5px 5px 0 5px;
        box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.5);
    }

}

.header .app-list .app-scroll {
    padding: 10px;
}

.header .app-list .app-row {
    overflow: hidden;
}

.header .app-list .app { 
    float: none; 
    display: block; 
    overflow: hidden; 
    color: #000000; 
    padding: 10px 0; 
    min-height: none; 
    width: auto; 
    border: 1px solid transparent; 
    text-decoration: none;
}

@media (min-width: 576px) {

    .header .app-list .app {
        float: left;
        width: 33%;
        min-height: 60px;
        text-align: center;
    }

}

.header .app-list .app .icon { 
    float: left;
    height: 48px;
    width: 48px;
    margin-right: 15px;
    filter: invert(82%) sepia(0%) saturate(108%) hue-rotate(165deg) brightness(95%) contrast(107%);
}

@media (min-width: 576px) {

    .header .app-list .app .icon {
        float: none;
        margin-bottom: 10px;
        margin-right: 0;
        height: 32px;
        width: 32px;
    }

}

.header .app-list .app .name {
    float: left;
    display: block;
    color: #999999;
    font-size: 18px;
    line-height: 48px;
    font-weight: 500;
}

@media (min-width: 576px) {

    .header .app-list .app .name {
        float: none; 
        line-height: 16px;
        font-size: 12px;
    }

}

.header .app-list .app:hover,
.header .app-list .app:hover .name {
    color: #000000;
}

.header .app-list .app:hover .icon {
    filter: invert(0%) sepia(100%) saturate(7432%) hue-rotate(358deg) brightness(111%) contrast(116%); /* Tool used to generate https://codepen.io/sosuke/pen/Pjoqqp */
} 

.header .brand {
    height: 70px;
    width: calc(100% - 70px);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #ffffff;
    padding-left: 6px;
}

.header .brand .client-name {
    font-size: 24px;
    line-height: 70px;
    font-weight: 200;
    text-decoration: none;
}

.header .brand .client-logo {
    height: 100%;
}

.header .brand .client-logo img {
    max-height: 70px;
}

.header .controls {
    float: right;
    position: relative;
    margin: 0 5px;
}

.header .controls .dropdown-menu {
    margin: 0 5px;
    z-index: 1050;
}

.header .controls .controls-item {
    padding: 20px 8px;
    position: relative;
    float: left;
}

.header .controls .controls-item > a {
    display: inline-block;
    width: 30px;
    height: 30px;
    float: left;
    text-decoration: none;
}

.header .controls .controls-item > a img {
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.header .controls .controls-item > a i {
    display: inline-block;
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 33px;
}

.header .header-search {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: none;
    color: #333333;
    padding: 0 10px;
    z-index: 1040;
}

.header .header-search a { 
    color: #333333;
}

.header .header-search input { 
    margin: 10px 0;
    border: 0;
    font-size: 24px;
}

.header .header-search input:focus {
    box-shadow: none;
}

.header .search-dropdown {
    display: none;
    position: absolute;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 0;
    margin: 0;
    left: 0;
    top: 70px;
}

.header .search-dropdown .results { 
    padding: 0;
    margin: 0;
}

.header .search-dropdown .results a { 
    font-size: 16px; 
    line-height: 18px; 
    color: #212529; 
    display: block; 
    padding: 10px 10px; 
}

.header .search-dropdown .results a:hover,
.header .search-dropdown .results a.active  {
    background: #212529;
    color: #ffffff;
    text-decoration: none;
}

.header .search-dropdown .results .sub-text {
    display: block;
    font-style: italic;
    color: #aaaaaa;
    font-size: 14px;
}

.header .search-dropdown .results a:hover .sub-text,
.header .search-dropdown .results a.active .sub-text {
    color: #dddddd;
}

.header .search-dropdown .results-link {
    color: #00B4ED;
    font-size: 16px; 
    margin: 20px 10px; 
    display: block; 
}

.header .search-dropdown .results-link i { 
    top: 2px; 
}

@media (min-width: 768px) {
    .header { 
        margin-bottom: 0;
        top: 0;
        position: fixed;
    }

    .header .brand {
        padding-left: 15px;
    }
}

.header .left-nav-scroll {
    display: none;
}
/************* tickets **************/
.helpDesk .tickets th {
    white-space: nowrap
} 

.helpDesk .tickets a {
    display: block;
    text-decoration: none;
}

.helpDesk .tickets th small {
    display: block;
} 

/************* create ticket **************/

.helpDesk .create-ticket .form-section {
    padding: 40px 0px;
    border-bottom: 1px solid #E5E5E5;
}

.helpDesk .create-ticket .form-section.last {
    border-bottom: none;
}

.helpDesk .create-ticket .types {
    margin: 0;
    background: #EFEFEF;
    border: 1px solid #E5E5E5;
}

.helpDesk .create-ticket .types .description {
    background: #FFF;
    padding: 5px;
}

.helpDesk .create-ticket .types .radio-container {
    position: relative;
    border-right: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    padding: 5px;
    background: #EFEFEF;
}

.helpDesk .create-ticket .types .radio-container:last-child {
    border-bottom: none;
}

.helpDesk .create-ticket .types .radio-container.active {
    background-color: #FFF;
    border-right: none;
}


/************* typeahead tags input **************/
.tt-menu { min-width: 10rem; margin: 12px 0; padding: 8px 0; background-color: #fff; border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2); box-shadow: 0 5px 10px rgba(0,0,0,.2); }
    
.tt-suggestion { display: block; width: 100%; padding: .25rem 1.5rem; clear: both; font-weight: 400;
    color: #212529; text-align: inherit; white-space: nowrap; background-color: transparent; border: 0; }

.tt-cursor, .tt-suggestion:hover { background-color: #EEE; }
.twitter-typeahead { width: 100%; }

.input-tag { margin-right: 5px; }

/************* access modal **************/

.accessors {
    padding-top: 20px;
}

.accessors .accessor {
    border-bottom: 1px solid #CCC;
    margin-bottom: 10px;
    padding-bottom: 10px;
    overflow: hidden;
}

.accessors .accessor .name {
    font-size: 16px;
    font-weight: 600;
}

.accessors .accessor .email {
    font-size: 14px;
    color: #999;
}

.accessors .accessor .meta {
    float: left;
}

.accessors .accessor .remove-accessor {
    float: right;
    position: relative;
    top: 12px;
}

/************* ticket details **************/

.ticket-details .details {
    padding: 20px 0 0 5px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.ticket-details .details .subject {
    font-size: 24px;
    line-height:24px;
    padding-bottom: 10px;
}

.ticket-details .details .item {
    margin-bottom: 30px;
}

.ticket-details .details .item .label {
    font-weight: 700;
}

.ticket-details .details .item .attachment {
    overflow: hidden;
    display: block;
    margin: 0 0 15px 0;
    text-decoration: none;
    color: #333;
    word-break: break-all;
}

.ticket-details .details .item .attachment .file-icon {
    float: left;
}

.ticket-details .details .item .attachment .filename {
    display: block;
    margin: 3px 0 0 45px;
    font-size: 15px;
}

.ticket-details .details .item .attachment .filename small {
    display: block; 
    font-size: 12px;
}


.ticket-details .detail-section {
    border: 1px solid #CCC;
    padding: 20px;
    font-size: 14px;
}

.ticket-details .detail-sub-section {
    margin-bottom: 30px;
}

.ticket-details .detail-sub-section:last-child {
    margin-bottom: 0;
}

.ticket-details .detail-sub-section .section-name {
    font-size: 18px;
    border-bottom: 1px solid #aaa;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.ticket-details .detail-sub-section .section-item {
    margin-bottom: 10px;
}

.ticket-details .detail-sub-section .section-item .label {
    color: #333333;
    font-weight: 700;
}

.ticket-details .detail-sub-section .dropdown-toggle {
    font-size: 14px;
    font-weight: 400;
}

.ticket-details .detail-sub-section .dropdown-toggle::after {
    content: none;
}

.ticket-details .detail-sub-section .btn-group.open .dropdown-toggle {
    box-shadow: none;
    -webkit-box-shadow: none;
}

.ticket-details .detail-sub-section .dropdown-menu > li form {
    display: block;
    width: 100%;
}

.ticket-details .detail-sub-section .dropdown-menu > li input[type=submit] {
    display: block;
    background: none;
    border: none;
    padding: 4px 20px;
    clear: both;
    font: 400 14px/1.42857143 "Helvetica Neue", Helvetica, Arial;
    color: #333333;
    white-space: nowrap;
    width: 100%;
    text-align: left;
}

.ticket-details .detail-sub-section .dropdown-menu > li input[type=submit]:hover {
    color: #FFF;
    background-color:#333;
}.conversation-thread { margin: 80px 0 80px 0; }

.feed { overflow: hidden; margin: 0; padding: 0; list-style: none; }
.feed .item { margin-bottom: 30px; }
.feed .item h2 { padding-bottom: 5px; }
.feed .item .photo { float: left; margin-right: 15px; width: 60px; height: 60px; }
.feed .item .photo img { border-radius: 50%; }
.feed .item .details { border: 1px solid #CCC; padding: 15px 20px; margin-left: 75px; }
@media (max-width: 767px) { .feed .item .details { margin-left: 0; } }
.feed .item .poster { display: inline-block; font-weight: bold; }
.feed .item .message { margin: 0 0 30px 0; }
.feed .item .image-attachments { margin: 0 0 30px 0; overflow:hidden; }
.feed .item .image-attachments .attachment { margin: 0 0 20px 0; }
.feed .item .image-attachments .attachment .image { background-color: #F4F4F4; display: block; text-align: center; overflow: hidden; height: auto; }
.feed .item .image-attachments .attachment .image .landscape { height: auto; width: 100%; }
.feed .item .image-attachments .attachment .image .portrait { height: auto; width: 100%; }

@media (min-width: 544px) { 
    .feed .item .image-attachments .attachment .image { height: 150px; }
    .feed .item .image-attachments .attachment .image .landscape { height: auto; width: 100%; }
    .feed .item .image-attachments .attachment .image .portrait { height: 150px; width: auto; }
}

@media (min-width: 767px) { 
    .feed .item .image-attachments .attachment .image { height: 200px; }
    .feed .item .image-attachments .attachment .image .landscape { height: auto; width: 100%; }
    .feed .item .image-attachments .attachment .image .portrait { height: 200px; width: auto; }
}

@media (min-width: 991px) {
    .feed .item .image-attachments .attachment .image { height: 100px; }
    .feed .item .image-attachments .attachment .image .landscape { height: auto; width: 100%; }
    .feed .item .image-attachments .attachment .image .portrait { height: 100px; width: auto; }
}

@media (min-width: 1200px) {
    .feed .item .image-attachments .attachment .image { height: 150px; }
    .feed .item .image-attachments .attachment .image .landscape { height: auto; width: 100%; }
    .feed .item .image-attachments .attachment .image .portrait { height: 150px; width: auto; }
}

.feed .item .image-attachments .attachment .filename { font-size: 11px; line-height: 13px; color: #999; word-break: break-all;  }
.feed .item .thread-file-attachments { margin: 0 0 30px 0; }
.feed .item .thread-file-attachments .attachment { overflow: hidden; display: block; margin: 0 0 15px 0; text-decoration: none; color: #333; word-break: break-all;  }
.feed .item .thread-file-attachments .attachment .file-icon { float: left; }
.feed .item .thread-file-attachments .attachment .filename { display: block; margin: 3px 0 0 45px; font-size: 15px; }
.feed .item .thread-file-attachments .attachment .filename small { display: block; font-size: 12px; }
.feed .item .meta { color: #999; font-size: 12px; line-height: 18px; }
.feed .item .meta a { color: #999; cursor: pointer; }
.feed .item .link-box { margin: 5px 0 5px 0; }
.feed .item .link-box td { vertical-align: top; }
.feed .item .link-box .title { font-weight: bold; margin-bottom: 5px; }
.feed .item .link-box .desc { color: #999; font: 12px/14px arial; }
.feed .item .link-box .link { color: #CCC; font: 11px/12px arial; margin-bottom: 10px; }
.feed .item .link-box img { width: 120px; margin:0 5px; }
.feed .date { margin: 10px 0 0 0; }

.reply { margin: 0; }
.reply .photo { float: left; margin-right: 15px; width: 60px; height: 60px;  }
.reply .photo img { border-radius: 50%; }
.reply form { margin: 0 0 20px 75px; }
@media (max-width: 767px) { 
    .reply form { margin-left: 0; } 
}
.reply form .form-body { display: none; }
.reply form .form-body .message { border: 1px solid #CCC; margin: 0 0 10px 0; padding: 15px 20px; }
.reply form .form-body .message trix-editor { border: none; padding: 0; margin:0; min-height: 100px; }
.reply form .form-body .subscriptions { margin: 0 10px; }
.reply form .form-body .options { margin: 0 10px; }
.reply form .form-body-collapsed { cursor: text; font: 15px/21px Arial; color: #a9a9a9; padding: 19px; border: 1px solid #ccc; position: relative; margin: 0; zoom: 1; }
.reply form.active .form-body { display: block; }
.reply form.active .form-body-collapsed { display: none;}

.pending-attachments { border: 1px dashed #BBB; padding: 12px; border-radius: 5px; color: #666;  margin: 10px 0 0 0; }
.pending-attachments.isHovered { border: 2px dashed #000; }
.pending-attachments .description { margin-bottom: 10px; }
.pending-attachments .select-files { cursor: pointer; }

.thread-file-list .thread-file-item { overflow: hidden; display: block; margin: 0 0 15px 0; text-decoration: none; color: #333; word-break: break-all; }
.thread-file-list .thread-file-item .file-icon { float: left; }
.thread-file-list .thread-file-item .thread-file-thumb { float: left; max-width: 45px; max-height: 45px; border: 1px solid #EEE; }
.thread-file-list .thread-file-item .thread-file-details { display: block; margin: 0 0 0 55px; font-size: 15px; }
.thread-file-list .thread-file-item .thread-file-size { display: block; color: #818a91; font-size: 12px; }
.thread-file-list .thread-file-item .thread-file-size strong { font-weight: 400; }
.thread-file-list .thread-file-item .dz-progress { overflow: hidden; height: 5px; background-color: #f5f5f5; }
.thread-file-list .thread-file-item .dz-upload { float: left; width: 0%; height: 100%; background-color: #337ab7; -webkit-transition: width 0.6s ease; -o-transition: width 0.6s ease; transition: width 0.6s ease; }

.thread-file-list .thread-file-item .thread-file-feedback { color: #ef5350; }
.thread-file-list .thread-file-item .glyph-close { display: inline-block; margin: 0 0 0 15px; text-decoration: none; cursor: pointer; }
.thread-file-list .thread-file-item:focus { outline: none; }

.message-history { margin: 0 0 40px 0; }
.message-history article { padding: 0 0 20px; margin: 0 0 20px 0; border-bottom: 1px solid #aaa; }
.message-history article:last-child { padding: 0; border-bottom: none;}
.message-history article .message { margin: 0; }
.message-history article .date { color: #AA9C84; font: 12px/13px arial; }
.message-history article ul { list-style: disc; padding-left: 20px; }
.message-history article ol { list-style: decimal; padding-left: 20px; }

.drop-overlay { z-index: 999; position: fixed; top: 0; bottom: 0; right: 0; left: 0; background: rgba(255, 255, 255, 0.7); }
.drop-overlay.hidden { display: none; }
.drop-overlay .drop-area { position: absolute; left: 0; top: 0; background: #E5E5E5; width: 100%; height: 100%; text-align: center; padding-top: 130px; }
.drop-overlay .drop-area .os-icon-download { font-size: 60px;  display: block; margin-bottom: 20px; }
.modal-body .drop-overlay { position: absolute; }
.modal-body .drop-overlay .drop-area {width: 300px; height: 300px; padding-top: 80px;}

@media (min-width: 600px) {
    .drop-overlay .drop-area { left: 50%; top: 50%; transform: translate(-50%, -50%); border-radius: 50%; width: 400px; height: 400px; }
}/* altered container */

@media (min-width: 992px) {
  body.with-left-nav .main .container {
    max-width: 732px;
  }
}

@media (min-width: 1200px) {
  body.with-left-nav .main .container {
    max-width: 940px;
  }
}

/* main class */
body.with-left-nav .main {
  left: 0;
  transition: left .25s ease-out;
}

/* main content */
@media (min-width: 992px) {
  body.with-left-nav .main .main-content {
    margin-left: 260px;
    transition: margin-left .25s ease-out;
  }
}

/* toggle */
.left-nav-toggle {
  position: absolute;
  z-index: 1000;
  width: 32px;
  height: 32px;
  font-size: 24px;
  text-align: center;
  color: #333333;
  top: 2px;
  left: 2px;
  cursor: pointer;
  transition: left .25s ease-out;
}

@media (min-width: 992px) {
  body.with-left-nav .main .left-nav-toggle {
    display: none;
  }
}

/* mobile nav open */
body.with-left-nav.left-nav-open {
  overflow-x: hidden;
}

@media (min-width: 992px) {
  body.with-left-nav.left-nav-open { 
    overflow-x: auto;
  }
}

@media (max-width: 992px) {
  body.with-left-nav.left-nav-open .main {
    left: 260px;
    transition: left .25s ease-out;
  }

  body.with-left-nav.left-nav-open .left-nav {
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.5);
  }
}

/* section title */
.left-nav .section-title {
  font-size: 20px;
  min-height: 50px;
  padding: 25px 0 10px 20px;
  display: block;
  color: #000000;
}
.left-nav .section-title:hover {
  text-decoration: none;
  color: #00B4ED;
}

/* left nav */
.left-nav {
  position: absolute;
  width: 260px;
  background: #FFF;
  top: 0;
  bottom: 0;
  left: -260px;
  min-height: 100%;
  transition: left .25s ease-out;
  z-index: 1000;
  box-shadow: none;
}

@media (min-width: 992px) {
  .left-nav {
    position: fixed;
    left: 0;
    padding-top: 70px;
    transition: left .25s ease-out;
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.5);
  }

  .left-nav .left-nav-scroll {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
  }
}

.left-nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.left-nav li {
  margin: 0;
  padding: 0;
  position: relative;
}



/* nav styles start */

/* node */
.left-nav li .node { display: block; min-height: 50px; padding: 0 40px 0 0; position: relative; }
.left-nav li .node:hover { background-color: #F9FBFC; }

/* text */
.left-nav li .txt { color: #666666; font-size: 16px; font-weight: 300; line-height: 24px; padding: 13px 0; width: 100%; display: inline-block; }
.left-nav li .txt:hover { text-decoration: none; }
.left-nav li .node:hover > .txt { color: #00B4ED; }

/* arrow */
.left-nav li > .node .arrow { display: none; color: #CCC; font-size: 14px; text-align: center; height: 30px; width: 30px; padding: 5px 0; position: absolute; right: 10px; top: 10px; cursor: pointer; }
.left-nav li .node:hover .arrow { display: block; }

/* open node */
.left-nav li.open > .node > .txt { font-weight: 700; color: #000; }
.left-nav li.open > .node .arrow i:before { content: "\e009"; }

/* active node */
.left-nav li.active > .node { background-color: #F4F4F4; border-left: 4px solid #00B4ED; }
.left-nav li.active > .node > .txt { font-weight: 700; color: #000; }



/* 1st level */
.left-nav li          .node { padding-left: 20px; }
.left-nav li.active > .node { padding-left: 16px; }

/* 2nd level */
.left-nav li li          .node { min-height: 40px; padding-left: 40px; }
.left-nav li li          .node .txt { padding: 8px 0;  color: #000000; }
.left-nav li li        > .node .arrow { top: 5px; }
.left-nav li li.active > .node { padding-left: 36px; }

/* 3rd level */
.left-nav li li li          .node { min-height: 40px; padding-left: 40px; }
.left-nav li li li          .node .txt { padding-left: 19px; border-left: 1px solid #CCCCCC; }
.left-nav li li li.active > .node { padding-left: 40px; border-left: unset; }
.left-nav li li li.active > .node .txt { padding-left: 16px; border-left: 4px solid #00B4ED; }

/* 4th level */
.left-nav li li li li          .node { min-height: 40px; padding-left: 40px; }
.left-nav li li li li          .node .txt { margin-left: 20px; border-left: 1px solid #CCCCCC; }
.left-nav li li li li          .node::before { content: ' '; position: absolute; height: 40px; width: 20px; border-left: 1px solid #CCCCCC; }
.left-nav li li li li.active > .node { padding-left: 40px; border-left: unset; }
.left-nav li li li li.active > .node .txt { padding-left: 16px; border-left: 4px solid #00B4ED; }

/* 5th level */
.left-nav li li li li li          .node { min-height: 40px; padding-left: 40px; }
.left-nav li li li li li          .node .txt { margin-left: 20px; padding-left: 40px; border-left: 1px solid #CCCCCC; }
.left-nav li li li li li.active > .node { padding-left: 40px; border-left: unset; }
.left-nav li li li li li.active > .node .txt { padding-left: 40px; border-left: 1px solid #CCCCCC; }
/*===========================Search=========================*/

.search-results .result {
    margin-bottom: 30px;
}

.search-results .result .preview {
    display: block;
    position: relative;
    width: 100%;
    height: 160px;
    line-height: 146px;
    overflow: hidden;
    border: 1px solid #cccccc;
}

.search-results .result .preview img {
    max-height: 160px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.search-results .result .preview .file-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.search-results .result h4 {
   margin-bottom: 0.625rem;
}

.search-results .result .tags {
    margin-bottom: 0.625rem;
    font-size: 14px;
}

.search-results .result .tags a {
    color: #333333;
}

.search-results .result .url {
    color: #858585;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}.page-type-content .tab-pane { 
    display: none;
}

.page-type-content .tab-pane.active {
    display: block;
}

.page-type-content .share-link [data-action=copy] {
    position: relative;
    cursor: pointer;
}

.page-type-content .pager .pager-label {
	display: block;
	padding-bottom: 10px;
}


.page-type-content .image-popup {
    display: inline-block;
    position: relative;
}

.page-type-content .image-popup:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: all 0.8s;
    opacity: 0;
    background-color: #000;
}

.page-type-content .image-popup:hover:before {
    opacity: 0.35;
}

.page-type-content .image-popup:hover:after {
    content: "\e611";
    width: 100%;
    font-family: 'os-icons';
    font-size: 32px;
    text-align: center;
    margin-top: -32px;
    position: absolute;
    z-index: 990;
    top: 50%;
    left: 0;
    color: #FFF;
}

.content-menu h6 {
    font-size: 14px;
    color: #333333;
}

.content-menu .list-group {
    border-radius: 0;
}

.content-menu .list-group-item {
    border: none;
    border-left: 2px solid #E5E5E5;
    background-color: transparent;
    padding: 3px 0 3px 18px;
    font-size: 14px;
}

.content-menu .list-group-item.active {
    border-left: 2px solid #00B4ED;
    font-weight: bold;
    background-color: transparent;
}
/*
.content-menu .list-group-item:last-child {
    font-weight: normal;
    border-left: 2px solid #ffffff;
    margin-top: 30px;
}
*//*============= Folder View =================*/
.folderList { padding-bottom: 40px; }

.folderList .item { height: 190px; position: relative; margin-bottom: 30px; border: 1px solid #cccccc; background-color: #FFFFFF; cursor: pointer; }
.folderList .item .image { display: inline-block; height: 145px; width: 100%; background: #EDEDED; text-align: center; padding: 20px 0; }
.folderList .item .crop { height: 145px; line-height: 145px; width: 100%; text-align: center; overflow: hidden; float: none; position: relative; }
.folderList .item .crop .file-icon { margin: 24px 0; }
.folderList .item .crop .file-icon[data-type=folder] { width: 124px; }

.folderList .item .crop img { height: 100%; width: auto; margin-left: 50%; transform: translateX(-50%); }
.folderList .item .crop.checkered {
  background-color: #FFFFFF;
  background-image:
    -moz-linear-gradient(45deg, #CCCCCC 25%, transparent 25%),
    -moz-linear-gradient(-45deg, #CCCCCC 25%, transparent 25%),
    -moz-linear-gradient(45deg, transparent 75%, #CCCCCC 75%),
    -moz-linear-gradient(-45deg, transparent 75%, #CCCCCC 75%);
  background-image:
    -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, #CCCCCC), color-stop(.25, transparent)),
    -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, #CCCCCC), color-stop(.25, transparent)),
    -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.75, transparent), color-stop(.75, #CCCCCC)),
    -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.75, transparent), color-stop(.75, #CCCCCC));
  -moz-background-size: 20px 20px;
  background-size: 20px 20px;
  -webkit-background-size: 20px 21px; /* override value for shitty webkit */
  background-position:0 0, 10px 0, 10px -10px, 0px 10px;
}
.folderList .item .details { height: 43px; padding: 0 10px; background-color: #ffffff; border-top: 1px solid #cccccc; }
.folderList .item .details h3 {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  padding-top: 5px;
  float: left;
  white-space: pre;
  white-space: pre-wrap;
  white-space: pre-line;
  margin: 0;
  display: block;
  width: 100%; 
  cursor: pointer;
  overflow: hidden;
  height: 100%;
}
.folderList .item .details a { color: #AAA; margin-left: 5px; line-height: 35px; }

.folderList .item .checkbox-container { position: absolute; top: 4px; left: 6px; z-index: 500; visibility: hidden; }

.catfish {
  bottom: 35%;
  right: 0;
  position: fixed;
  z-index: 600;
}

.catfish .catfish-inner { position: relative;}
.catfish .catfish-content {
  box-shadow: 0.5px 0.5px 5px 0.5px #707070;
  background-color: white;
  position: absolute;
  right: -260px;
  width: 250px;
  -webkit-transition: right 1s; /* Safari */
  transition: right 0.5s;
}
.catfish.show .catfish-content { right: 40px; }
.catfish .catfish-content .catfish-header { padding: 20px; border-bottom: 1px solid #E5E5E5 }
.catfish .catfish-content .catfish-body { padding: 20px; text-align: right; }
.catfish .catfish-content h4 { margin: 0; }

#download-processing {display: none; }

#download-link-wrapper { display: none; padding: 50px }
#download-link-wrapper a:hover { text-decoration: none; }
#download-link-wrapper .os-icon-download { display: block; font-size: 60px; margin-bottom: 20px; }

.folder-download-options .media { position: relative; min-height: 80px; }
.folder-download-options .media-preview { margin-right: 20px; width: 50px; text-align: center; }
.folder-download-options .remove-file { position: absolute; right: 15px; z-index: 500; }
.folder-download-options .media-preview .file-icon[data-type=folder] { background-position: top; }

/*============= Single File =================*/
.file-type-content {
  background-color: #f7f7f7;
  padding: 30px 0;
  margin-bottom: 40px;
  color: #333;
}

.file-type-content h3 {
  margin-bottom: 30px;
}

.file-type-content a:hover {
  text-decoration: none;
}

.file-type-content .detail-section {
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 14px;
}

.file-type-content .detail-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.file-type-content .detail-section .label {
  margin-bottom: 10px;
  font-size: 16px;
}

.file-type-content .detail-section small {
  font-size: 12.8px;
}

.file-type-content .detail-section .custom-control  {
  margin-bottom: 3px;
}

.file-type-content .detail-section .custom-size {
  display: block;
  margin-top: 10px;
}

.file-type-content .download-options {
  margin-bottom: 20px;
}

.file-type-content .preview {
  margin-bottom: 30px;
}

.file-type-content .preview.is-icon {
  text-align: center;
}

.file-type-content .preview.bg-white {
  background-color: #ffffff;
}

.file-type-content .preview.bg-gray {
  background-color: #cccccc;
}

.file-type-content .preview.bg-black {
  background-color: #000000;
}

.file-type-content .preview.bg-checkered {
    background-color: #FFFFFF;
    background-image:
      -moz-linear-gradient(45deg, #CCCCCC 25%, transparent 25%),
      -moz-linear-gradient(-45deg, #CCCCCC 25%, transparent 25%),
      -moz-linear-gradient(45deg, transparent 75%, #CCCCCC 75%),
      -moz-linear-gradient(-45deg, transparent 75%, #CCCCCC 75%);
    background-image:
      -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, #CCCCCC), color-stop(.25, transparent)),
      -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, #CCCCCC), color-stop(.25, transparent)),
      -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.75, transparent), color-stop(.75, #CCCCCC)),
      -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.75, transparent), color-stop(.75, #CCCCCC));
    -moz-background-size: 20px 20px;
    background-size: 20px 20px;
    -webkit-background-size: 20px 21px; /* override value for shitty webkit */
    background-position: 0 0, 10px 0, 10px -10px, 0px 10px;
}

.file-type-content .preview .file-icon {
  margin: 100px 0;
}

.file-type-content .preview .file-icon::before {
  border-top-color: #f7f7f7;
  border-right-color: #f7f7f7;
}

.file-type-content .file-body {
  font-size: 14px;
}

.disclaimer {
  background-color: #C99737;
  padding: 10px;
  margin-bottom: 30px;
  margin-top: 20px;
}

.file-type-content .pdf-controls {
  text-align: center;
}

.file-type-content .pdf-controls a {
  display: inline-block;
  font-size: 30px;
  line-height: 30px;
  margin: 10px 15px;
  text-decoration: none;
}

.file-type-content .pdf-controls a:hover,
.file-type-content .pdf-controls a:focus {
  text-decoration: none;
}

.file-type-content .pdf-controls a.disabled {
  color: #CCCCCC;
}

.download-options .download-editor .cropper-wrapper {
  min-height: calc(100vh - 228px);
  max-height: calc(100vh - 228px);
}

.download-options .download-editor .cropper-wrapper img {
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}

.download-options .download-editor .cropper-wrapper .loader-image {
  display: block;
  margin: 10px auto;
}

.download-options .download-editor .cropper-tools {
  margin: 20px auto;
  text-align: center;
}

.related-content .related-content-item {
	margin-bottom: 30px;
}

.related-content .related-content-item .crumbs {
  font-size: 12.8px;
  margin-bottom: 5px;
  color: #333333;
}
/*============== Pulse ===============*/
body.type-pulse { background-color: #F5F5F5; }

@media (min-width: 768px) {
  body.type-pulse .modal-dialog {
    width: 680px;
  }
}

.pulse .welcome-overlay { position: fixed; z-index: 999; left: 0; right: 0; height: 100%; text-align: center; padding-top: 70px; }
.pulse .welcome-overlay .logo-container {
  background: url('/resources/img/BrandOS-pulse-spinner.gif') no-repeat center center;
  width: 100px;
  height: 116px;
  margin: 0 auto 20px auto;
}

.pulse .welcome-overlay h1 { font-size: 64px; line-height: 72px; max-width: 400px; margin: 0 auto; }
.pulse.in .welcome-overlay { display: none; }

.pulse { padding: 0; margin: 30px auto 40px auto; }
.pulse .card-post a,
.pulse .card-post img,
.pulse .card-post div,
.pulse .card-post span { 
  opacity: 0; 
  -webkit-transition: opacity 1.5s ease-in;
     -moz-transition: opacity 1.5s ease-in;
      -ms-transition: opacity 1.5s ease-in;
       -o-transition: opacity 1.5s ease-in;
          transition: opacity 1.5s ease-in;
}
.pulse .card-post.in a,
.pulse .card-post.in img,
.pulse .card-post.in div,
.pulse .card-post.in span { opacity: 1; }

.card-post { position: relative; margin-bottom: 20px; border: 1px solid #E1E2E1; }
.card-post .card-img-top { display: block; width: auto; max-width: 100%; margin: 0 auto; }
.card-post .card-img-top.icon { margin-top: 1.25rem; }
.card-post .card-block { position: relative; padding: .75rem; }
.card-post .card-block a { color: #4A4A4A; text-decoration: none; }
.card-post .card-block h3 { margin-top: 0; word-wrap: break-word; }
.card-post .card-block .card-text { word-wrap: break-word; }
.card-post .card-block .card-text.large { font-size: 19px; }
.card-post .card-block .tags { word-wrap: break-word; }
.card-post .card-footer { width: 100%; padding: 1rem; overflow: hidden; background-color: #FFF; border-top: none; }
.card-post .card-footer .share-options { height: 24px; }
.card-post .card-footer .share-options a, 
.card-post .card-footer .share-options span { margin: 0 5px 0 0; cursor: pointer; color: #aaa; text-decoration: none; line-height: 24px; }
.card-post .card-footer .profile-photo  { height: 24px; width: 24px; border-radius: 50%; }
.card-post .card-link { color: #aaa; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-post .card-link a { color: #aaa; }
.card-post .card-link + .card-link { margin-left: 0; }

.card-post .pin { height: 20px; width: 14px; float: right; text-align: center; margin: 3px 6px 3px 2px;}
.card-post .image-link { position: relative; display: block; }
.card-post .os-icon-play { display: none; }
.card-post.video .os-icon-play {
  display: inline-block;
  width: 60px;
  height: 60px;
  position: absolute;
  text-align: center;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  top: 50%;
  left: 50%;
  font-size: 25px;
  color: #FFF;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  line-height: 58px;
  padding-left: 6px;
}

.card-post.post-form { box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.30); margin-top: 30px; }
.card-post.post-form .new-post-tile { display: block; font-size: 22px; line-height: 28px; color: #999; min-height: 60px; }
.card-post.post-form .new-post-tile img { display: none; float: left; height: 40px; width: 40px; margin: 10px; border-radius: 50%; }
.card-post.post-form .new-post-tile .title { display: block; float: left; line-height: 60px; margin-left: 15px; }
.card-post.post-form .new-post-tile .os-icon-system-assets { color: #5C5C5C; border: 1px solid #5C5C5C; border-radius: 50%; float: right; display: block; font-size: 24px; line-height: 42px; padding-left: 7px; margin: 10px; width: 40px; height: 40px; }

@media (min-width: 600px) {
  .card-post.post-form .new-post-tile { font-size: 24px; }
  .card-post.post-form .new-post-tile img { display: block; }
}


.pulseAddEdit .modal-body { padding: 0; }
.pulseAddEdit .description-placeholder { margin: 15px; height: 50px; font-size: 14px; color: #999; }
.pulseAddEdit .description textarea { height: 150px; padding: 15px; margin: 0; border: none; outline: 0px none transparent; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; }

.pulseAddEdit .cke_top { padding: 6px 20px 2px; border: none; background: none; }
.pulseAddEdit .cke_toolgroup { border: none; background: none; }
.pulseAddEdit .cke_chrome { border: none; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }

/********** Dropzone **********/

.pulseAddEdit .fileupload .sortable-placeholder { float: left; background-size: cover; opacity: 0.3}
.pulseAddEdit .container-fluid.full-bleed { padding-left: 0; padding-right: 0; }
.pulseAddEdit .modal-header { border-bottom: 0px; padding: 5px 15px; }

.pulseAddEdit .fileupload { background-color: #F5F5f5; color: #aaa; position: relative; }
.pulseAddEdit .fileupload .large-preview { width: 100%; height: auto; text-align: center; }
.pulseAddEdit .fileupload .large-preview img { max-width: 680px; max-height: 375px; }

.pulseAddEdit .fileupload .dropzone-previews { overflow:auto; display: table; width: 100%; padding: 8px 15px; }
.pulseAddEdit .fileupload .dropzone-previews .dropzone-background .os-icon-system-assets,
.pulseAddEdit .fileupload .dropzone-previews .dropzone-background .os-icon-camera { font-size: 29px; margin-bottom: 20px; }
.pulseAddEdit .fileupload .dropzone-previews .dropzone-background .text-dark { color: #666; }
.pulseAddEdit .fileupload .dropzone-previews .dropzone-dash { text-align: center; height: 60px; width: 60px; padding: 0; }
.pulseAddEdit .fileupload .dropzone-previews .dropzone-dash .dash { height: 100%; border: 1px dashed #ccc; border-radius: 5%; position: relative; height: 65px; width: 65px; }
.pulseAddEdit .fileupload .dropzone-previews .dropzone-dash .plus { line-height: 0; height:9px; font-size: 40px; display: inline-block; position: absolute; top: 50%; transform: translate(-50%, -50%); }

.pulseAddEdit .fileupload .dropzone-previews.top { height: 200px; }
.pulseAddEdit .fileupload .dropzone-previews.top .dropzone-background { display: table-cell; vertical-align: middle; cursor: pointer; }
.pulseAddEdit .fileupload .dropzone-previews.top .dropzone-dash { display: none; }

.pulseAddEdit .fileupload .dropzone-previews.bottom { height: 65px; }
.pulseAddEdit .fileupload .dropzone-previews.bottom .dropzone-background { display: none; }
.pulseAddEdit .fileupload .dropzone-previews.bottom .dropzone-dash { display: inline-block; cursor: pointer; }

.pulseAddEdit .fileupload .dz-preview { position: relative; float: left; height: 65px; max-width: 110px; overflow: hidden; margin-right: 5px; cursor: move; }
.pulseAddEdit .fileupload .dz-preview img { max-height: 65px; vertical-align: top; }
.pulseAddEdit .fileupload .dz-preview.dz-file-preview { width: 65px; background-image: url(/resources/img/file_types/file.png); background-size: auto 65px; background-repeat: no-repeat; background-position: center center; }
.pulseAddEdit .fileupload .dz-preview.dz-file-preview.pdf-file { background-image: url(/resources/img/file_types/pdf.png); }
.pulseAddEdit .fileupload .dz-preview.dz-file-preview.video-file { background-image: url(/resources/img/file_types/video.png); }

.pulseAddEdit .fileupload .dz-preview.sortable-chosen { background-color: #0090be; }
.pulseAddEdit .fileupload .dz-preview.sortable-ghost { background-color: #0090be; }
.pulseAddEdit .fileupload .dz-preview.sortable-drag { background-color: #0090be; }

.pulseAddEdit .fileupload .dz-preview .dz-remove { position: absolute; top: 0; right: 0; display: block; width: 15px; height: 15px;  background: url("/resources/img/system-icons-small.png") no-repeat -758px -4px; }
.pulseAddEdit .fileupload .dz-preview .dz-success-mark,
.pulseAddEdit .fileupload .dz-preview .dz-error-mark,
.pulseAddEdit .fileupload .dz-preview .dz-size,
.pulseAddEdit .fileupload .dz-preview .dz-filename,
.pulseAddEdit .fileupload .dz-preview .dz-error-message { display: none; }


.pulseAddEdit .tags { margin: 0 15px; padding: 15px 0; border-bottom: 2px solid #e2e2e2;}
.pulseAddEdit .tags .os-icon-tag { float: left; font-size: 21px; color: #CCC; }
.pulseAddEdit .tags .tag-list { margin-left: 25px; }
.pulseAddEdit .tags .tag { margin: 0 3px 3px 3px; float: left; font-size: 100%; font-weight: normal; }
.pulseAddEdit .tags .tag .os-icon-close { margin-left: 5px; font-size: 12px; top: 0px; }
.pulseAddEdit .tags  input { font-size: 13px; line-height: 13px; color: #999999; margin: 5px 0 5px 10px; padding: 0; border: none; width: 150px; outline: none; }
.pulseAddEdit .options { padding: 15px; display: table; height: 100%; width: 100%; color: #999; }
.pulseAddEdit .main-options a { color: #999; }
.pulseAddEdit .options #defaultPostNotification { text-decoration: none; color: #999; outline: none; }
.pulseAddEdit .options a.red { color: #a94442 };
.pulseAddEdit .options i { vertical-align: middle;}
.pulseAddEdit .options .option { display: inline-block; }
.pulseAddEdit .options .option { border-left: 2px solid #e2e2e2; padding: 0 0 0 15px; margin-left: 5px; }
.pulseAddEdit .options .option:first-of-type { border-left: none;  padding: 0; margin-left: 0; }
.pulseAddEdit .options .option.pinToggle label { font-weight: normal; margin: 0; cursor: pointer; }
.pulseAddEdit .options .option.pinToggle label .os-icon-pin { margin-top: -2px }
.pulseAddEdit .options .option.pinToggle label.active { color: #333; }
.pulseAddEdit .options .option.pinToggle input { display: none; }
.pulseAddEdit .options .delete { margin-top: 6px; }
.pulseAddEdit .submit-post { text-align: right; padding: 15px; }
.pulseAddEdit .progress { margin-bottom: 0; height: 10px; border-radius: 0; }

.drop-overlay { position: fixed; top: 0; bottom: 0; right: 0; left: 0; background: rgba(255, 255, 255, 0.7); }
.drop-overlay .drop-area { position: absolute; left: 0; top: 0; background: #E5E5E5; width: 100%; height: 100%; text-align: center; padding-top: 130px; }
.drop-overlay .drop-area .os-icon-download { font-size: 60px;  display: block; margin-bottom: 20px; }
.modal-content .drop-overlay { position: absolute; }

@media (min-width: 600px) {
  .drop-overlay .drop-area { left: 50%; top: 50%; transform: translate(-50%, -50%); border-radius: 50%; width: 400px; height: 400px; }
}

#editPulseForm { margin-bottom: 100px; }

/*============== Pulse: Active Link ===============*/
.linkContainer .loader { margin: 0 auto 20px auto; display: block; }

.active-link { background-color: #F5F5F5; box-shadow: 0 2px 4px #CCC; margin: 0 30px 20px 30px; overflow: hidden; }
.active-link.bleed { margin-left: 0; }
.active-link .link-image { overflow: hidden; }
.active-link .link-image img { height: 140px; max-width: none; }
.active-link .link-details { margin: 15px 15px 15px 15px; }
.active-link.no-image .link-details { margin-left: 30px; }
.active-link .link-details h4 { margin: 0;  text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }
.active-link .link-details strong.url { display: block; margin: 0 0 10px 0; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; color: #000; }
.active-link .link-details .remove { float: right; margin-right: -20px; }

@media (min-width: 768px) {
  .active-link .link-image { float: left; width: 140px; overflow: hidden; }
  .active-link .link-details { margin: 15px 30px 15px 160px; }
}

/*============= Comments =================*/
.comments, .commentForm { font-size: 12px; }
.comments .thread > li { margin-top: 15px; }
.comments .thread li:last-child { border: none;}
.comments .thread li .profilePhoto img { width: 36px; height: 36px; border-radius: 50%; }
.comments .thread li .commentDetails h5 { padding-right: 12px; font-size: 14px; margin-bottom: 10px; }
.comments .thread li .commentDetails h5 .date { margin: 0 25px 0 25px; color: #666; float: right; }
.comments .thread li .commentDetails .remove { color: #666; margin-top: 6px; }
.comments .thread li .messageBody { margin-bottom: 5px; overflow: hidden; }

.commentForm { margin-top: 30px; padding-bottom: 10px; }
.commentForm .profilePhoto img { width: 38px; height: 38px; border-radius: 50%; }

/*============= TinyMCE =================*/
.tox.tox-tinymce { border: none; }/*========== MGA Campaigns ==========*/
.campaigns { padding: 0; margin: 0 auto 40px auto; }

.campaigns .campaign { width: 260px; float: left; margin: 10px 0; border: 1px solid #E5E5E5; }
.campaigns .grid-sizer { width: 260px; }
@media (min-width: 768px) {
    .campaigns .campaign,
    .campaigns .grid-sizer { width: 360px; }
}
.campaigns .campaign .image-wrap { position: relative; }
.campaigns .campaign .image-wrap .banner { max-width: 100%; width: auto; margin: 0 auto; }
.campaigns .campaign .image-wrap .watermark { position: absolute; bottom: 15px; right: 15px; }
.campaigns .campaign .image-wrap .watermark img { width: 100px; }
.campaigns .campaign h3 { margin: 28px 15px 12px 15px; font: 16px/19px "paypal sans medium", arial; }
.campaigns .campaign h3 a { color: #333; }
.campaigns .campaign .description { margin: 0 15px; overflow: hidden; color: #777; font: 13px/20px "paypal sans regular", arial; }
.campaigns .campaign .bottom-menu { height: 40px; width: 100%; margin-top: 3px; overflow: hidden; background: #F5F5F5; border-top: 1px solid #E5E5E5; }
.campaigns .campaign .bottom-menu .shareOptions { float: left; padding-left: 10px; }
.campaigns .campaign .bottom-menu .shareOptions a { display: inline-block; margin: 10px 10px 0 0; color: #969696; text-decoration: none; }
/*.campaigns .campaign.pending { border-color: #faebcc; }*/

@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.modal-pager a { position: absolute; color: #FFF; font-size: 35px; top: 200px; opacity: 0; animation-name: fade-in; animation-duration: .8s; animation-delay: .5s; animation-fill-mode: forwards; }
.modal-pager a.prev { left: 20px; }
.modal-pager a.next { right: 20px; }
@media (min-width: 768px) {
    .modal-pager a.prev { left: -50px; }
    .modal-pager a.next { right: -50px; }
}
@media (min-width: 992px) {
    .modal-pager a.prev { left: -135px; }
    .modal-pager a.next { right: -135px; }
}
body.type-pulse .modal-pager { display: none; }

.quickview .quickview-header { height: 65px; border-bottom: 0; }
.quickview .quickview-header .button-wrap { padding: 15px; float: right; }
.quickview .quickview-header .icon { float: left; color: #777; font-size: 40px; padding: 8px 8px 0 8px; }
.quickview .campaign { padding-bottom: 15px; }
.quickview .campaign .image-wrap { position: relative; }
.quickview .campaign .image-wrap .watermark { position: absolute; bottom: 30px; right: 30px; }
.quickview .campaign .image-wrap .watermark img { width: 150px; }

.quickview .campaign .details { margin: 0 30px; }
.quickview .campaign .details h2 { color: #000; font: 28px/35px "paypal sans light", arial; margin-bottom: 20px; }
.quickview .campaign .details .description { color: #777; font: 15px/21px "paypal sans regular", arial; margin-bottom: 20px;}
.quickview .quickview-footer { padding: 5px 15px 20px 30px; }
.quickview .campaign .details .meta,
.campaign-page .meta { font: 13px/15px "paypal sans regular", arial; margin-bottom: 10px; }
.quickview .campaign .details .meta .def-title,
.campaign-page .meta .def-title { font-family: "paypal sans medium", arial; }


.campaign-page { font: 15px/22px "paypal sans light", arial; color: #777; } 
.campaign-page .btn-vote { line-height: 28px; padding-top: 2px; padding-bottom: 2px; }
.campaign-page .btn-vote i { font-size: 23px; line-height: 23px; float: left; margin: 1px 7px 0 0; }
.campaign-page .btn-lg.btn-vote { line-height: 40px; }
.campaign-page .btn-lg.btn-vote i { font-size: 31px; line-height: 31px; margin: 4px 10px 0 0; }

.campaign-page .toolbar { padding: 5px 0; overflow: hidden; }
.campaign-page .toolbar .pull-right { margin-left: 5px; }
.campaign-page .toolbar [class^="os-icon-"], 
.campaign-page .toolbar [class*="os-icon-"] { font-size: 21px; line-height: 35px; color: #777; }

.campaign-page h5 { font-family: "paypal sans medium", arial; }
.campaign-page .title { margin-bottom: 25px; }
.campaign-page .watermark { margin-bottom: 20px; }
.campaign-page .video-player { display: block; margin: 30px auto; }
.campaign-page .banner-cta { background-color: #CE155A; padding: 20px 0; background: -webkit-linear-gradient(left, #CE155A, #58286B); background: -o-linear-gradient(right, #CE155A, #58286B); background: -moz-linear-gradient(right, #CE155A, #58286B); background: linear-gradient(to right, #CE155A, #58286B); }
.campaign-page .banner-cta .graphic { margin: 0 auto; display: block; }
.campaign-page .banner-cta h2 { color: #FFF; font-size: 42px; margin: 35px 0; }
.campaign-page .banner-cta .btn-vote { background-color: #FFF; border: none; color: #632C7E; padding-left: 25px; padding-right: 25px; font-size: 25px; }

@media (min-width: 992px) {
    .campaign-page .banner-cta .graphic { margin: 0; }
    .campaign-page .banner-cta h2 { line-height: 58px; margin-top: 20px; margin-bottom: 10px; }
    .campaign-page .banner-cta .btn-vote { margin-top: 28px; }
}

@media (min-width: 1200px) {
    .campaign-page .banner-cta h2 { line-height: 80px; }
    .campaign-page .banner-cta .btn-vote { margin-top: 38px; }
}

.campaign-page .banner-light-grey { background-color: #F5F5F5; padding: 30px 0;  }
.campaign-page .banner-light-grey.cta { padding: 60px 0; }
.campaign-page .banner-blue { background-color: #009CDE; color: #FFF; padding: 30px 0 30px 0; }
.campaign-page .banner-blue h3,
.campaign-page .banner-blue h4,
.campaign-page .banner-blue h5 { color: #FFF; margin-top: 0; }
.campaign-page .banner-dark-blue { background-color: #003087; color: #FFF; padding: 15px 0 40px 0; }
.campaign-page .banner-dark-blue h3,
.campaign-page .banner-dark-blue h5 { color: #FFF; }
.campaign-page .carousel { margin: 20px 0 40px 0; }
.campaign-page .carousel .carousel-indicators { bottom: -40px; }
.campaign-page .carousel .carousel-indicators li { border: none; background-color: #777; }
.campaign-page .carousel .carousel-indicators li.active { background-color: #009CDE; }
.campaign-page .touchpoints h3 { margin: 30px 0; }
.campaign-page .touchpoint { margin-bottom: 30px; }

.mga-campaign-form .or-wrap { position: relative; margin: 15px 0; }
.mga-campaign-form .or-wrap:before { position: absolute; bottom: 50%; left: 0; content: " "; height: 0; width: 100%; border-bottom: 1px solid #CCC;  }
.mga-campaign-form .or-wrap span { background-color: #FFF; position: relative; padding: 0 15px; }
.mga-campaign-form .slides .slide { display: inline-block; position: relative; margin-right: 10px; }
.mga-campaign-form .slides .slide .delete-checkbox { position: absolute; top: -13px; right: -12px; }
.mga-campaign-form .slides .slide .delete-checkbox .glyphicon { font-size: 24px; }
.mga-campaign-form .slides .slide input[type=checkbox] { visibility: hidden; }
.mga-campaign-form .slides .slide input[type=checkbox]:checked + .glyphicon { color: #a94442; }
.mga-campaign-form video, .mga-campaign-form iframe { width: 100%;}
.mga-campaign-form .video-file, 
.mga-campaign-form .video-link { position: relative; }
.mga-campaign-form .touchpoint { padding: 15px; border: 1px solid #ccc; background: #F5F5F5; margin-bottom: 15px; margin-top: 15px; }
.mga-campaign-form .remove-video { position: absolute; font-size: 24px; top: -15px; right: -12px; }

.modal .modal-header.vote { border-bottom: 0; padding: 25px 25px 0 25px; }
.modal .modal-header.vote h3 { font: 28px/35px "paypal sans light", arial; color: #000; }
.modal .modal-body.vote { font: 15px/22px "paypal sans regular", arial; color: #777; padding-left: 10px; padding-right: 10px; }

.modal .modal-header.touchpoint { border-bottom: none; }
.modal .modal-body.touchpoint { padding-top: 0; text-align: center; }
.modal .modal-body.touchpoint video,
.modal .modal-body.touchpoint iframe { max-width: 100%; }
/*============== Dashboard ============*/

.dashboard, .module-dashboard { background-color: #f5f5f6; }

.dashboard section { margin-bottom: 60px; }
.dashboard .post-form { margin-bottom: 20px; margin-top: 0; }
.dashboard #recent-downloads .card .card-block { padding: 25px 20px !important; }
.dashboard #recent-downloads ul { margin-bottom: 0; }
.dashboard #recent-downloads ul.list-unstyled li:not(:last-child) { margin-bottom: 15px }
.dashboard #recent-downloads ul.list-unstyled li a { color: #009CDE !important; font-size: 16px; }
.dashboard #recent-downloads ul.list-unstyled li a i.os-icon-download { margin-right: 10px; font-size: 20px; }

.dashboard #recent-helpdesk ul.list-unstyled li:not(:last-child) { margin-bottom: 15px }

.dashboard .card .card-block { padding-top: 20px; }
.dashboard .empty-state { padding: 10px 0 30px; }

/* ugliest solution ever - force xl to behave like lg */
@media (min-width: 768px) {
  .dashboard .pulse-item.col-lg-6 { max-width: 50%; flex: 0 0 50%; }
}
@media (min-width: 992px) {
  .dashboard .pulse-item.col-lg-6 { max-width: 33.33333333%; flex: 0 0 33.3333333333%; }
}
@media (min-width: 1200px) {
  .dashboard .pulse-item.col-lg-6 { max-width: 25%; flex: 0 0 25%; }
}

@media (min-width: 1600px) {
  .dashboard .col-xl-4 { max-width: 50%; flex: 0 0 50%; }
  .dashboard .col-xl-2 { max-width: 25%; flex: 0 0 25%; }
}

.dashboard .recent-download-icon { float: left; }
.dashboard .dashboard-header { padding: 50px 0; text-align: center; }
.greeter .close-greeter {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 21px;
    text-decoration: none;
}