/*!
 * jQuery UI Resizable 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */
.ui-resizable {
  position: relative;
}
.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none;
}
.ui-resizable-autohide .ui-resizable-handle,
.ui-resizable-disabled .ui-resizable-handle {
  display: none;
}
.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}
.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}
.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}
.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}
.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}
.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: FontAwesome;
  src: url(../fonts/fontawesome-webfont.eot?v=4.7.0);
  src: url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0)
      format("embedded-opentype"),
    url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format("woff2"),
    url(../fonts/fontawesome-webfont.woff?v=4.7.0) format("woff"),
    url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format("truetype"),
    url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular)
      format("svg");
  font-weight: 400;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: 0.08em solid #eee;
  border-radius: 0.1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  -webkit-animation: a 2s infinite linear;
  animation: a 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: a 1s infinite steps(8);
  animation: a 1s infinite steps(8);
}
@-webkit-keyframes a {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes a {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270 {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-close:before,
.fa-remove:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-cog:before,
.fa-gear:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-repeat:before,
.fa-rotate-right:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-image:before,
.fa-photo:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-exclamation-triangle:before,
.fa-warning:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-cogs:before,
.fa-gears:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-floppy-o:before,
.fa-save:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-bars:before,
.fa-navicon:before,
.fa-reorder:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-sort:before,
.fa-unsorted:before {
  content: "\f0dc";
}
.fa-sort-desc:before,
.fa-sort-down:before {
  content: "\f0dd";
}
.fa-sort-asc:before,
.fa-sort-up:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-gavel:before,
.fa-legal:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-bolt:before,
.fa-flash:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-clipboard:before,
.fa-paste:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-chain-broken:before,
.fa-unlink:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-caret-square-o-down:before,
.fa-toggle-down:before {
  content: "\f150";
}
.fa-caret-square-o-up:before,
.fa-toggle-up:before {
  content: "\f151";
}
.fa-caret-square-o-right:before,
.fa-toggle-right:before {
  content: "\f152";
}
.fa-eur:before,
.fa-euro:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-inr:before,
.fa-rupee:before {
  content: "\f156";
}
.fa-cny:before,
.fa-jpy:before,
.fa-rmb:before,
.fa-yen:before {
  content: "\f157";
}
.fa-rouble:before,
.fa-rub:before,
.fa-ruble:before {
  content: "\f158";
}
.fa-krw:before,
.fa-won:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-caret-square-o-left:before,
.fa-toggle-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-try:before,
.fa-turkish-lira:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-bank:before,
.fa-institution:before,
.fa-university:before {
  content: "\f19c";
}
.fa-graduation-cap:before,
.fa-mortar-board:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-image-o:before,
.fa-file-photo-o:before,
.fa-file-picture-o:before {
  content: "\f1c5";
}
.fa-file-archive-o:before,
.fa-file-zip-o:before {
  content: "\f1c6";
}
.fa-file-audio-o:before,
.fa-file-sound-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-ring:before,
.fa-life-saver:before,
.fa-support:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before,
.fa-resistance:before {
  content: "\f1d0";
}
.fa-empire:before,
.fa-ge:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-hacker-news:before,
.fa-y-combinator-square:before,
.fa-yc-square:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-paper-plane:before,
.fa-send:before {
  content: "\f1d8";
}
.fa-paper-plane-o:before,
.fa-send-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-futbol-o:before,
.fa-soccer-ball-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-ils:before,
.fa-shekel:before,
.fa-sheqel:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-bed:before,
.fa-hotel:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-y-combinator:before,
.fa-yc:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery-full:before,
.fa-battery:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-paper-o:before,
.fa-hand-stop-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-television:before,
.fa-tv:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-american-sign-language-interpreting:before,
.fa-asl-interpreting:before {
  content: "\f2a3";
}
.fa-deaf:before,
.fa-deafness:before,
.fa-hard-of-hearing:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-sign-language:before,
.fa-signing:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-address-card:before,
.fa-vcard:before {
  content: "\f2bb";
}
.fa-address-card-o:before,
.fa-vcard-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer-full:before,
.fa-thermometer:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bath:before,
.fa-bathtub:before,
.fa-s15:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}

/*!
 * Bootstrap v3.3.4 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: 700;
}
dfn {
  font-style: italic;
}
h1 {
  margin: 0.67em 0;
  font-size: 2em;
}
mark {
  color: #000;
  background: #ff0;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  height: 0;
  box-sizing: content-box;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  box-sizing: content-box;
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  padding: 0.35em 0.625em 0.75em;
  margin: 0 2px;
  border: 1px solid silver;
}
legend {
  padding: 0;
  border: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: 700;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  :after,
  :before {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  blockquote,
  pre {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  img,
  tr {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  select {
    background: #fff !important;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered td,
  .table-bordered th {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: Glyphicons Halflings;
  src: url(../fonts/glyphicons-halflings-regular.eot);
  src: url(../fonts/glyphicons-halflings-regular.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/glyphicons-halflings-regular.woff2) format("woff2"),
    url(../fonts/glyphicons-halflings-regular.woff) format("woff"),
    url(../fonts/glyphicons-halflings-regular.ttf) format("truetype"),
    url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular)
      format("svg");
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: Glyphicons Halflings;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\2a";
}
.glyphicon-plus:before {
  content: "\2b";
}
.glyphicon-eur:before,
.glyphicon-euro:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.glyphicon-cd:before {
  content: "\e201";
}
.glyphicon-save-file:before {
  content: "\e202";
}
.glyphicon-open-file:before {
  content: "\e203";
}
.glyphicon-level-up:before {
  content: "\e204";
}
.glyphicon-copy:before {
  content: "\e205";
}
.glyphicon-paste:before {
  content: "\e206";
}
.glyphicon-alert:before {
  content: "\e209";
}
.glyphicon-equalizer:before {
  content: "\e210";
}
.glyphicon-king:before {
  content: "\e211";
}
.glyphicon-queen:before {
  content: "\e212";
}
.glyphicon-pawn:before {
  content: "\e213";
}
.glyphicon-bishop:before {
  content: "\e214";
}
.glyphicon-knight:before {
  content: "\e215";
}
.glyphicon-baby-formula:before {
  content: "\e216";
}
.glyphicon-tent:before {
  content: "\26fa";
}
.glyphicon-blackboard:before {
  content: "\e218";
}
.glyphicon-bed:before {
  content: "\e219";
}
.glyphicon-apple:before {
  content: "\f8ff";
}
.glyphicon-erase:before {
  content: "\e221";
}
.glyphicon-hourglass:before {
  content: "\231b";
}
.glyphicon-lamp:before {
  content: "\e223";
}
.glyphicon-duplicate:before {
  content: "\e224";
}
.glyphicon-piggy-bank:before {
  content: "\e225";
}
.glyphicon-scissors:before {
  content: "\e226";
}
.glyphicon-bitcoin:before,
.glyphicon-btc:before,
.glyphicon-xbt:before {
  content: "\e227";
}
.glyphicon-jpy:before,
.glyphicon-yen:before {
  content: "\00a5";
}
.glyphicon-rub:before,
.glyphicon-ruble:before {
  content: "\20bd";
}
.glyphicon-scale:before {
  content: "\e230";
}
.glyphicon-ice-lolly:before {
  content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
.glyphicon-education:before {
  content: "\e233";
}
.glyphicon-option-horizontal:before {
  content: "\e234";
}
.glyphicon-option-vertical:before {
  content: "\e235";
}
.glyphicon-menu-hamburger:before {
  content: "\e236";
}
.glyphicon-modal-window:before {
  content: "\e237";
}
.glyphicon-oil:before {
  content: "\e238";
}
.glyphicon-grain:before {
  content: "\e239";
}
.glyphicon-sunglasses:before {
  content: "\e240";
}
.glyphicon-text-size:before {
  content: "\e241";
}
.glyphicon-text-color:before {
  content: "\e242";
}
.glyphicon-text-background:before {
  content: "\e243";
}
.glyphicon-object-align-top:before {
  content: "\e244";
}
.glyphicon-object-align-bottom:before {
  content: "\e245";
}
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}
.glyphicon-object-align-left:before {
  content: "\e247";
}
.glyphicon-object-align-vertical:before {
  content: "\e248";
}
.glyphicon-object-align-right:before {
  content: "\e249";
}
.glyphicon-triangle-right:before {
  content: "\e250";
}
.glyphicon-triangle-left:before {
  content: "\e251";
}
.glyphicon-triangle-bottom:before {
  content: "\e252";
}
.glyphicon-triangle-top:before {
  content: "\e253";
}
.glyphicon-console:before {
  content: "\e254";
}
.glyphicon-superscript:before {
  content: "\e255";
}
.glyphicon-subscript:before {
  content: "\e256";
}
.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-menu-down:before {
  content: "\e259";
}
.glyphicon-menu-up:before {
  content: "\e260";
}
*,
:after,
:before {
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:focus,
a:hover {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.carousel-inner > .item > a > img,
.carousel-inner > .item > img,
.img-responsive,
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
  font-weight: 400;
  line-height: 1;
  color: #777;
}
.h1,
.h2,
.h3,
h1,
h2,
h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small {
  font-size: 65%;
}
.h4,
.h5,
.h6,
h4,
h5,
h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
  font-size: 75%;
}
.h1,
h1 {
  font-size: 36px;
}
.h2,
h2 {
  font-size: 30px;
}
.h3,
h3 {
  font-size: 24px;
}
.h4,
h4 {
  font-size: 18px;
}
.h5,
h5 {
  font-size: 14px;
}
.h6,
h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
.small,
small {
  font-size: 85%;
}
.mark,
mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777;
}
.text-primary {
  color: #337ab7;
}
a.text-primary:hover {
  color: #286090;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #337ab7;
}
a.bg-primary:hover {
  background-color: #286090;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee;
}
ol,
ul {
  margin-top: 0;
  margin-bottom: 10px;
}
ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}
.list-inline,
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dd,
dt {
  line-height: 1.42857143;
}
dt {
  font-weight: 700;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[data-original-title],
abbr[title] {
  cursor: help;
  border-bottom: 1px dotted #777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}
blockquote ol:last-child,
blockquote p:last-child,
blockquote ul:last-child {
  margin-bottom: 0;
}
blockquote .small,
blockquote footer,
blockquote small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777;
}
blockquote .small:before,
blockquote footer:before,
blockquote small:before {
  content: "\2014 \00A0";
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0;
}
.blockquote-reverse .small:before,
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
blockquote.pull-right .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before {
  content: "";
}
.blockquote-reverse .small:after,
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
blockquote.pull-right .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after {
  content: "\00A0 \2014";
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, Courier New, monospace;
}
code {
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}
code,
kbd {
  padding: 2px 4px;
  font-size: 90%;
}
kbd {
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  box-shadow: none;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}
table {
  background-color: transparent;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
}
caption,
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > td,
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > td,
.table > thead:first-child > tr:first-child > th {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}
.table-condensed > tbody > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > thead > tr > th {
  padding: 5px;
}
.table-bordered,
.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > thead > tr > td.active,
.table > thead > tr > th.active {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr.active:hover > th,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover {
  background-color: #e8e8e8;
}
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > thead > tr > td.success,
.table > thead > tr > th.success {
  background-color: #dff0d8;
}
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr.success:hover > th,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover {
  background-color: #d0e9c6;
}
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > thead > tr > td.info,
.table > thead > tr > th.info {
  background-color: #d9edf7;
}
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr.info:hover > th,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover {
  background-color: #c4e3f3;
}
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > thead > tr > td.warning,
.table > thead > tr > th.warning {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr.warning:hover > th,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover {
  background-color: #faf2cc;
}
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > thead > tr > td.danger,
.table > thead > tr > th.danger {
  background-color: #f2dede;
}
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr.danger:hover > th,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover {
  background-color: #ebcccc;
}
.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > thead > tr > th {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > thead > tr > th:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > thead > tr > th:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0;
  }
}
fieldset {
  min-width: 0;
  margin: 0;
}
fieldset,
legend {
  padding: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}
input[type="search"] {
  box-sizing: border-box;
}
input[type="checkbox"],
input[type="radio"] {
  margin: 4px 0 0;
  margin-top: 1px\9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="checkbox"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  padding-top: 7px;
}
.form-control,
output {
  display: block;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
}
.form-control {
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"],
  input[type="datetime-local"],
  input[type="month"],
  input[type="time"] {
    line-height: 34px;
  }
  .input-group-sm input[type="date"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"],
  .input-group-sm input[type="time"],
  input[type="date"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  input[type="time"].input-sm {
    line-height: 30px;
  }
  .input-group-lg input[type="date"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"],
  .input-group-lg input[type="time"],
  input[type="date"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  input[type="time"].input-lg {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.checkbox,
.radio {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.checkbox label,
.radio label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}
.checkbox-inline input[type="checkbox"],
.checkbox input[type="checkbox"],
.radio-inline input[type="radio"],
.radio input[type="radio"] {
  position: absolute;
  margin-top: 4px\9;
  margin-left: -20px;
}
.checkbox + .checkbox,
.radio + .radio {
  margin-top: -5px;
}
.checkbox-inline,
.radio-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}
.checkbox-inline + .checkbox-inline,
.radio-inline + .radio-inline {
  margin-top: 0;
  margin-left: 10px;
}
.checkbox-inline.disabled,
.checkbox.disabled label,
.radio-inline.disabled,
.radio.disabled label,
fieldset[disabled] .checkbox-inline,
fieldset[disabled] .checkbox label,
fieldset[disabled] .radio-inline,
fieldset[disabled] .radio label,
fieldset[disabled] input[type="checkbox"],
fieldset[disabled] input[type="radio"],
input[type="checkbox"].disabled,
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="radio"][disabled] {
  cursor: not-allowed;
}
.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
select[multiple].input-sm,
textarea.input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.form-group-sm .form-control {
  height: 30px;
  line-height: 30px;
}
select[multiple].form-group-sm .form-control,
textarea.form-group-sm .form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
select[multiple].input-lg,
textarea.input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.form-group-lg .form-control {
  height: 46px;
  line-height: 46px;
}
select[multiple].form-group-lg .form-control,
textarea.form-group-lg .form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .checkbox,
.has-success .checkbox-inline,
.has-success.checkbox-inline label,
.has-success.checkbox label,
.has-success .control-label,
.has-success .help-block,
.has-success .radio,
.has-success .radio-inline,
.has-success.radio-inline label,
.has-success.radio label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .checkbox,
.has-warning .checkbox-inline,
.has-warning.checkbox-inline label,
.has-warning.checkbox label,
.has-warning .control-label,
.has-warning .help-block,
.has-warning .radio,
.has-warning .radio-inline,
.has-warning.radio-inline label,
.has-warning.radio label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .checkbox,
.has-error .checkbox-inline,
.has-error.checkbox-inline label,
.has-error.checkbox label,
.has-error .control-label,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline,
.has-error.radio-inline label,
.has-error.radio label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .form-control,
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .checkbox,
  .form-inline .radio {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .checkbox label,
  .form-inline .radio label {
    padding-left: 0;
  }
  .form-inline .checkbox input[type="checkbox"],
  .form-inline .radio input[type="radio"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .checkbox,
.form-horizontal .checkbox-inline,
.form-horizontal .radio,
.form-horizontal .radio-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .checkbox,
.form-horizontal .radio {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.333333px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
  }
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn.focus,
.btn:focus,
.btn:hover {
  color: #333;
  text-decoration: none;
}
.btn.active,
.btn:active {
  background-image: none;
  outline: 0;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  box-shadow: none;
  opacity: 0.65;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default.active,
.btn-default.focus,
.btn-default:active,
.btn-default:focus,
.btn-default:hover,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default.active,
.btn-default:active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default.disabled.active,
.btn-default.disabled.focus,
.btn-default.disabled:active,
.btn-default.disabled:focus,
.btn-default.disabled:hover,
.btn-default[disabled],
.btn-default[disabled].active,
.btn-default[disabled].focus,
.btn-default[disabled]:active,
.btn-default[disabled]:focus,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default,
fieldset[disabled] .btn-default.active,
fieldset[disabled] .btn-default.focus,
fieldset[disabled] .btn-default:active,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default:hover {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.btn-primary {
  color: #fff;
  background-color: #b70712;
  border-color: #cd0814;
}
.btn-primary.active,
.btn-primary.focus,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #b70712;
  border-color: #cd0814;
}
.btn-primary.active,
.btn-primary:active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary.disabled.active,
.btn-primary.disabled.focus,
.btn-primary.disabled:active,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled],
.btn-primary[disabled].active,
.btn-primary[disabled].focus,
.btn-primary[disabled]:active,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary,
fieldset[disabled] .btn-primary.active,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:active,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success.active,
.btn-success.focus,
.btn-success:active,
.btn-success:focus,
.btn-success:hover,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success.active,
.btn-success:active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled,
.btn-success.disabled.active,
.btn-success.disabled.focus,
.btn-success.disabled:active,
.btn-success.disabled:focus,
.btn-success.disabled:hover,
.btn-success[disabled],
.btn-success[disabled].active,
.btn-success[disabled].focus,
.btn-success[disabled]:active,
.btn-success[disabled]:focus,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success,
fieldset[disabled] .btn-success.active,
fieldset[disabled] .btn-success.focus,
fieldset[disabled] .btn-success:active,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success:hover {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info.active,
.btn-info.focus,
.btn-info:active,
.btn-info:focus,
.btn-info:hover,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info.active,
.btn-info:active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled,
.btn-info.disabled.active,
.btn-info.disabled.focus,
.btn-info.disabled:active,
.btn-info.disabled:focus,
.btn-info.disabled:hover,
.btn-info[disabled],
.btn-info[disabled].active,
.btn-info[disabled].focus,
.btn-info[disabled]:active,
.btn-info[disabled]:focus,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info,
fieldset[disabled] .btn-info.active,
fieldset[disabled] .btn-info.focus,
fieldset[disabled] .btn-info:active,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info:hover {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning.active,
.btn-warning.focus,
.btn-warning:active,
.btn-warning:focus,
.btn-warning:hover,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning.active,
.btn-warning:active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled,
.btn-warning.disabled.active,
.btn-warning.disabled.focus,
.btn-warning.disabled:active,
.btn-warning.disabled:focus,
.btn-warning.disabled:hover,
.btn-warning[disabled],
.btn-warning[disabled].active,
.btn-warning[disabled].focus,
.btn-warning[disabled]:active,
.btn-warning[disabled]:focus,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning,
fieldset[disabled] .btn-warning.active,
fieldset[disabled] .btn-warning.focus,
fieldset[disabled] .btn-warning:active,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning:hover {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger.active,
.btn-danger.focus,
.btn-danger:active,
.btn-danger:focus,
.btn-danger:hover,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger.active,
.btn-danger:active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled,
.btn-danger.disabled.active,
.btn-danger.disabled.focus,
.btn-danger.disabled:active,
.btn-danger.disabled:focus,
.btn-danger.disabled:hover,
.btn-danger[disabled],
.btn-danger[disabled].active,
.btn-danger[disabled].focus,
.btn-danger[disabled]:active,
.btn-danger[disabled]:focus,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger,
fieldset[disabled] .btn-danger.active,
fieldset[disabled] .btn-danger.focus,
fieldset[disabled] .btn-danger:active,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger:hover {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  font-weight: 400;
  color: #337ab7;
  border-radius: 0;
}
.btn-link,
.btn-link.active,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}
.btn-link,
.btn-link:active,
.btn-link:focus,
.btn-link:hover {
  border-color: transparent;
}
.btn-link:focus,
.btn-link:hover {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:focus,
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:focus,
fieldset[disabled] .btn-link:hover {
  color: #777;
  text-decoration: none;
}
.btn-group-lg > .btn,
.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-group-sm > .btn,
.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-group-xs > .btn,
.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="button"].btn-block,
input[type="reset"].btn-block,
input[type="submit"].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropdown,
.dropup {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:focus,
.dropdown-menu > .disabled > a:hover {
  color: #777;
}
.dropdown-menu > .disabled > a:focus,
.dropdown-menu > .disabled > a:hover {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropdown-menu-left {
  right: auto;
  left: 0;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px solid;
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group-vertical > .btn,
.btn-group > .btn {
  position: relative;
  float: left;
}
.btn-group-vertical > .btn.active,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:hover,
.btn-group > .btn.active,
.btn-group > .btn:active,
.btn-group > .btn:focus,
.btn-group > .btn:hover {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}
.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical
  > .btn-group:first-child:not(:last-child)
  > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical
  > .btn-group:last-child:not(:first-child)
  > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn input[type="radio"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn,
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn,
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type="checkbox"],
.input-group-addon input[type="radio"] {
  margin-top: 0;
}
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group .form-control:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group-addon:last-child,
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group .form-control:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn,
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:active,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:hover {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  margin-left: -1px;
}
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav > li,
.nav > li > a {
  position: relative;
  display: block;
}
.nav > li > a {
  padding: 10px 15px;
}
.nav > li > a:focus,
.nav > li > a:hover {
  text-decoration: none;
  background-color: #eee;
}
.nav > li.disabled > a {
  color: #777;
}
.nav > li.disabled > a:focus,
.nav > li.disabled > a:hover {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
  background-color: #eee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:hover {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:focus,
  .nav-tabs.nav-justified > .active > a:hover {
    border-bottom-color: #fff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:focus,
.nav-pills > li.active > a:hover {
  color: #fff;
  background-color: #337ab7;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:focus,
.nav-tabs-justified > .active > a:hover {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:focus,
  .nav-tabs-justified > .active > a:hover {
    border-bottom-color: #fff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.1);
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-bottom .navbar-collapse,
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}
.navbar-fixed-bottom .navbar-collapse,
.navbar-fixed-top .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-bottom .navbar-collapse,
  .navbar-fixed-top .navbar-collapse {
    max-height: 200px;
  }
}
.container-fluid > .navbar-collapse,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container > .navbar-header {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container-fluid > .navbar-collapse,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container > .navbar-header {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-bottom,
.navbar-fixed-top {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-bottom,
  .navbar-fixed-top {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px;
  font-size: 18px;
  line-height: 20px;
}
.navbar-brand:focus,
.navbar-brand:hover {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container-fluid .navbar-brand,
  .navbar > .container .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7.5px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu .dropdown-header,
  .navbar-nav .open .dropdown-menu > li > a {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:focus,
  .navbar-nav .open .dropdown-menu > li > a:hover {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.navbar-form {
  padding: 10px 15px;
  margin: 8px -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.1),
    0 1px 0 hsla(0, 0%, 100%, 0.1);
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .form-control,
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .checkbox,
  .navbar-form .radio {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .checkbox label,
  .navbar-form .radio label {
    padding-left: 0;
  }
  .navbar-form .checkbox input[type="checkbox"],
  .navbar-form .radio input[type="radio"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:hover {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:focus,
.navbar-default .navbar-nav > .disabled > a:hover {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
  color: #555;
  background-color: #e7e7e7;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:focus,
.navbar-default .btn-link:hover {
  color: #333;
}
.navbar-default .btn-link[disabled]:focus,
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:focus,
fieldset[disabled] .navbar-default .btn-link:hover {
  color: #ccc;
}
.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:focus,
.navbar-inverse .navbar-brand:hover {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > li > a,
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:focus,
.navbar-inverse .navbar-nav > li > a:hover {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:focus,
.navbar-inverse .navbar-nav > .active > a:hover {
  color: #fff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:focus,
.navbar-inverse .navbar-nav > .disabled > a:hover {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:focus,
.navbar-inverse .navbar-toggle:hover {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:focus,
.navbar-inverse .navbar-nav > .open > a:hover {
  color: #fff;
  background-color: #080808;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {
    color: #fff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:focus,
.navbar-inverse .btn-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:focus,
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:focus,
fieldset[disabled] .navbar-inverse .btn-link:hover {
  color: #444;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}
.breadcrumb > .active {
  color: #777;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}
.pagination > .disabled > a,
.pagination > .disabled > a:focus,
.pagination > .disabled > a:hover,
.pagination > .disabled > span,
.pagination > .disabled > span:focus,
.pagination > .disabled > span:hover {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:focus,
.pager li > a:hover {
  text-decoration: none;
  background-color: #eee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:focus,
.pager .disabled > a:hover,
.pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
}
.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}
a.label:focus,
a.label:hover {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #777;
}
.label-default[href]:focus,
.label-default[href]:hover {
  background-color: #5e5e5e;
}
.label-primary {
  background-color: #337ab7;
}
.label-primary[href]:focus,
.label-primary[href]:hover {
  background-color: #286090;
}
.label-success {
  background-color: #5cb85c;
}
.label-success[href]:focus,
.label-success[href]:hover {
  background-color: #449d44;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:focus,
.label-info[href]:hover {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:focus,
.label-warning[href]:hover {
  background-color: #ec971f;
}
.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:focus,
.label-danger[href]:hover {
  background-color: #c9302c;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  background-color: #777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-group-xs > .btn .badge,
.btn-xs .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:focus,
a.badge:hover {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding: 30px 15px;
  margin-bottom: 30px;
  background-color: #eee;
}
.jumbotron,
.jumbotron .h1,
.jumbotron h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container-fluid .jumbotron,
.container .jumbotron {
  border-radius: 6px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding: 48px 0;
  }
  .container-fluid .jumbotron,
  .container .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  .jumbotron .h1,
  .jumbotron h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-right: auto;
  margin-left: auto;
}
a.thumbnail.active,
a.thumbnail:focus,
a.thumbnail:hover {
  border-color: #337ab7;
}
.thumbnail .caption {
  padding: 9px;
  color: #333;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: 700;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@-webkit-keyframes b {
  0% {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes b {
  0% {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.progress-bar-striped,
.progress-striped .progress-bar {
  background-image: -webkit-linear-gradient(
    45deg,
    hsla(0, 0%, 100%, 0.15) 25%,
    transparent 0,
    transparent 50%,
    hsla(0, 0%, 100%, 0.15) 0,
    hsla(0, 0%, 100%, 0.15) 75%,
    transparent 0,
    transparent
  );
  background-image: linear-gradient(
    45deg,
    hsla(0, 0%, 100%, 0.15) 25%,
    transparent 0,
    transparent 50%,
    hsla(0, 0%, 100%, 0.15) 0,
    hsla(0, 0%, 100%, 0.15) 75%,
    transparent 0,
    transparent
  );
  background-size: 40px 40px;
}
.progress-bar.active,
.progress.active .progress-bar {
  -webkit-animation: b 2s linear infinite;
  animation: b 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(
    45deg,
    hsla(0, 0%, 100%, 0.15) 25%,
    transparent 0,
    transparent 50%,
    hsla(0, 0%, 100%, 0.15) 0,
    hsla(0, 0%, 100%, 0.15) 75%,
    transparent 0,
    transparent
  );
  background-image: linear-gradient(
    45deg,
    hsla(0, 0%, 100%, 0.15) 25%,
    transparent 0,
    transparent 50%,
    hsla(0, 0%, 100%, 0.15) 0,
    hsla(0, 0%, 100%, 0.15) 75%,
    transparent 0,
    transparent
  );
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(
    45deg,
    hsla(0, 0%, 100%, 0.15) 25%,
    transparent 0,
    transparent 50%,
    hsla(0, 0%, 100%, 0.15) 0,
    hsla(0, 0%, 100%, 0.15) 75%,
    transparent 0,
    transparent
  );
  background-image: linear-gradient(
    45deg,
    hsla(0, 0%, 100%, 0.15) 25%,
    transparent 0,
    transparent 50%,
    hsla(0, 0%, 100%, 0.15) 0,
    hsla(0, 0%, 100%, 0.15) 75%,
    transparent 0,
    transparent
  );
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(
    45deg,
    hsla(0, 0%, 100%, 0.15) 25%,
    transparent 0,
    transparent 50%,
    hsla(0, 0%, 100%, 0.15) 0,
    hsla(0, 0%, 100%, 0.15) 75%,
    transparent 0,
    transparent
  );
  background-image: linear-gradient(
    45deg,
    hsla(0, 0%, 100%, 0.15) 25%,
    transparent 0,
    transparent 50%,
    hsla(0, 0%, 100%, 0.15) 0,
    hsla(0, 0%, 100%, 0.15) 75%,
    transparent 0,
    transparent
  );
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(
    45deg,
    hsla(0, 0%, 100%, 0.15) 25%,
    transparent 0,
    transparent 50%,
    hsla(0, 0%, 100%, 0.15) 0,
    hsla(0, 0%, 100%, 0.15) 75%,
    transparent 0,
    transparent
  );
  background-image: linear-gradient(
    45deg,
    hsla(0, 0%, 100%, 0.15) 25%,
    transparent 0,
    transparent 50%,
    hsla(0, 0%, 100%, 0.15) 0,
    hsla(0, 0%, 100%, 0.15) 75%,
    transparent 0,
    transparent
  );
}
.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.media-body {
  width: 10000px;
}
.media-object {
  display: block;
}
.media-right,
.media > .pull-right {
  padding-left: 10px;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-body,
.media-left,
.media-right {
  display: table-cell;
  vertical-align: top;
}
.media-middle {
  vertical-align: middle;
}
.media-bottom {
  vertical-align: bottom;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
a.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:focus,
a.list-group-item:hover {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}
.list-group-item.disabled,
.list-group-item.disabled:focus,
.list-group-item.disabled:hover {
  color: #777;
  cursor: not-allowed;
  background-color: #eee;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text {
  color: #777;
}
.list-group-item.active,
.list-group-item.active:focus,
.list-group-item.active:hover {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:focus .list-group-item-text,
.list-group-item.active:hover .list-group-item-text {
  color: #c7ddef;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:focus,
a.list-group-item-success:hover {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
a.list-group-item-success.active:focus,
a.list-group-item-success.active:hover {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:focus,
a.list-group-item-info:hover {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
a.list-group-item-info.active:focus,
a.list-group-item-info.active:hover {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:focus,
a.list-group-item-warning:hover {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
a.list-group-item-warning.active:focus,
a.list-group-item-warning.active:hover {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:focus,
a.list-group-item-danger:hover {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
a.list-group-item-danger.active:focus,
a.list-group-item-danger.active:hover {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle,
.panel-title {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
}
.panel-title > .small,
.panel-title > .small > a,
.panel-title > a,
.panel-title > small,
.panel-title > small > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel
  > .panel-collapse
  > .list-group:first-child
  .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.list-group + .panel-footer,
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.panel > .panel-collapse > .table,
.panel > .table,
.panel > .table-responsive > .table {
  margin-bottom: 0;
}
.panel > .panel-collapse > .table caption,
.panel > .table-responsive > .table caption,
.panel > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}
.panel > .table-responsive:first-child > .table:first-child,
.panel
  > .table-responsive:first-child
  > .table:first-child
  > tbody:first-child
  > tr:first-child,
.panel
  > .table-responsive:first-child
  > .table:first-child
  > thead:first-child
  > tr:first-child,
.panel > .table:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel
  > .table-responsive:first-child
  > .table:first-child
  > tbody:first-child
  > tr:first-child
  td:first-child,
.panel
  > .table-responsive:first-child
  > .table:first-child
  > tbody:first-child
  > tr:first-child
  th:first-child,
.panel
  > .table-responsive:first-child
  > .table:first-child
  > thead:first-child
  > tr:first-child
  td:first-child,
.panel
  > .table-responsive:first-child
  > .table:first-child
  > thead:first-child
  > tr:first-child
  th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel
  > .table:first-child
  > thead:first-child
  > tr:first-child
  th:first-child {
  border-top-left-radius: 3px;
}
.panel
  > .table-responsive:first-child
  > .table:first-child
  > tbody:first-child
  > tr:first-child
  td:last-child,
.panel
  > .table-responsive:first-child
  > .table:first-child
  > tbody:first-child
  > tr:first-child
  th:last-child,
.panel
  > .table-responsive:first-child
  > .table:first-child
  > thead:first-child
  > tr:first-child
  td:last-child,
.panel
  > .table-responsive:first-child
  > .table:first-child
  > thead:first-child
  > tr:first-child
  th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table-responsive:last-child > .table:last-child,
.panel
  > .table-responsive:last-child
  > .table:last-child
  > tbody:last-child
  > tr:last-child,
.panel
  > .table-responsive:last-child
  > .table:last-child
  > tfoot:last-child
  > tr:last-child,
.panel > .table:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel
  > .table-responsive:last-child
  > .table:last-child
  > tbody:last-child
  > tr:last-child
  td:first-child,
.panel
  > .table-responsive:last-child
  > .table:last-child
  > tbody:last-child
  > tr:last-child
  th:first-child,
.panel
  > .table-responsive:last-child
  > .table:last-child
  > tfoot:last-child
  > tr:last-child
  td:first-child,
.panel
  > .table-responsive:last-child
  > .table:last-child
  > tfoot:last-child
  > tr:last-child
  th:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel
  > .table-responsive:last-child
  > .table:last-child
  > tbody:last-child
  > tr:last-child
  td:last-child,
.panel
  > .table-responsive:last-child
  > .table:last-child
  > tbody:last-child
  > tr:last-child
  th:last-child,
.panel
  > .table-responsive:last-child
  > .table:last-child
  > tfoot:last-child
  > tr:last-child
  td:last-child,
.panel
  > .table-responsive:last-child
  > .table:last-child
  > tfoot:last-child
  > tr:last-child
  th:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child td,
.panel > .table > tbody:first-child > tr:first-child th {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child {
  border-left: 0;
}
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child {
  border-right: 0;
}
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .list-group,
.panel-group .panel-heading + .panel-collapse > .panel-body {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
  border-color: #337ab7;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}
.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}
.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}
.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2;
}
.close:focus,
.close:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.5;
}
button.close {
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.modal,
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  -webkit-transform: translateY(-25%);
  transform: translateY(-25%);
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0);
  transform: translate(0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: 0;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}
.modal-header {
  min-height: 16.42857143px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  filter: alpha(opacity=0);
  opacity: 0;
}
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: 0.9;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  right: 5px;
}
.tooltip.top-left .tooltip-arrow,
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  left: 5px;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: left;
  white-space: normal;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  content: "";
  border-width: 10px;
}
.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
}
.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}
.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}
.carousel,
.carousel-inner {
  position: relative;
}
.carousel-inner {
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > a > img,
.carousel-inner > .item > img {
  line-height: 1;
}
@media (-webkit-transform-3d), all and (transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
  }
  .carousel-inner > .item.active.right,
  .carousel-inner > .item.next {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  .carousel-inner > .item.active.left,
  .carousel-inner > .item.prev {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  .carousel-inner > .item.active,
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right {
    left: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  filter: alpha(opacity=50);
  opacity: 0.5;
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.0001)
  );
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0.0001))
  );
  background-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.0001)
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.0001),
    rgba(0, 0, 0, 0.5)
  );
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.0001)),
    to(rgba(0, 0, 0, 0.5))
  );
  background-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.0001) 0%,
    rgba(0, 0, 0, 0.5)
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control:focus,
.carousel-control:hover {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: 0.9;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-next,
.carousel-control .icon-prev {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  font-family: serif;
  line-height: 1;
}
.carousel-control .icon-prev:before {
  content: "\2039";
}
.carousel-control .icon-next:before {
  content: "\203a";
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000\9;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next,
  .carousel-control .icon-prev {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -15px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.btn-group-vertical > .btn-group:after,
.btn-group-vertical > .btn-group:before,
.btn-toolbar:after,
.btn-toolbar:before,
.clearfix:after,
.clearfix:before,
.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before,
.dl-horizontal dd:after,
.dl-horizontal dd:before,
.form-horizontal .form-group:after,
.form-horizontal .form-group:before,
.modal-footer:after,
.modal-footer:before,
.nav:after,
.nav:before,
.navbar-collapse:after,
.navbar-collapse:before,
.navbar-header:after,
.navbar-header:before,
.navbar:after,
.navbar:before,
.pager:after,
.pager:before,
.panel-body:after,
.panel-body:before,
.row:after,
.row:before {
  display: table;
  content: " ";
}
.btn-group-vertical > .btn-group:after,
.btn-toolbar:after,
.clearfix:after,
.container-fluid:after,
.container:after,
.dl-horizontal dd:after,
.form-horizontal .form-group:after,
.modal-footer:after,
.nav:after,
.navbar-collapse:after,
.navbar-header:after,
.navbar:after,
.pager:after,
.panel-body:after,
.row:after {
  clear: both;
}
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-lg,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-md,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-sm,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-xs,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  td.visible-xs,
  th.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  td.visible-sm,
  th.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  td.visible-md,
  th.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  td.visible-lg,
  th.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  td.visible-print,
  th.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
@import url("../libs/bootstrap/css/bootstrap.css");
@import url("../vendor/jqueryui/themes/base/resizable.css");
@import url("../vendor/fontawesome/css/font-awesome.css");
.side-nav1-heading-gray-gradient {
  background: #283a50;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  max-width: 100%;
}
.box-sizing-border-box {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-boz-sizing: border-box;
}
.circled-borders-radius {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.ellipse-borders-radius {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.ten-px-border-radius {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.five-px-border-radius {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.four-px-border-radius {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.three-px-border-radius {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.two-px-border-radius {
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}
.no-border-radius {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}
.left-padding-20 {
  padding: 0 0 0 20px;
}
.gray-border-style {
  border: 1px solid #dbdbdb;
}
.no-borders {
  border: 0 !important;
}
.noshadow {
  box-shadow: none;
}
.default-box-shadow {
  box-shadow: 0px 1px 5px 0px rgba(80, 80, 80, 0.3);
}
.dropdown-menu-shadow {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.176);
}
.black-shadow {
  box-shadow: inset 0 0 10px #000;
}
.box-shadow-blur {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
}
.box-shadow-blur5 {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
}
.box-shadow-blur2 {
  box-shadow: 0 -1px 2px #e6e6e6;
  -moz-box-shadow: 0 -1px 2px #e6e6e6;
  -webkit-box-shadow: 0 -1px 2px #e6e6e6;
}
.box-shadow-blur6 {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.box-shadow-blur18 {
  box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.75);
}
.box-shadow-blur4 {
  box-shadow: 0px 0px 4px 0px rgba(50, 50, 50, 0.75);
}
.box-shadow-one {
  box-shadow: -1px 0px 5px #acacac;
}
.box-shadow-two {
  box-shadow: 0px 1px 2px 0px hsla(0, 0%, 45%, 0.31);
}
.box-shadow-four {
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
}
.box-shadow-five {
  box-shadow: 0 1px 2px #e6e6e6;
}
.box-shadow-seven {
  box-shadow: 0 -1px 2px #e6e6e6;
}
.box-shadow-inset-one {
  box-shadow: inset 0px 0px 0px 2px #9b9b9b;
}
.box-shadow-gray {
  box-shadow: 1px 1px 3px 1px #aaa;
  -moz-box-shadow: 1px 1px 3px 1px #aaa;
  -webkit-box-shadow: 1px 1px 3px 1px #aaa;
}
.full-width-block {
  width: 100%;
  max-width: 100%;
}
span.fa-circle {
  background: inherit;
}
.red {
  background: #e14938;
}
.red:before {
  color: #e14938;
}
.orange {
  background: #f4a932;
}
.orange:before {
  color: #f4a932;
}
.yellow {
  background: #ffe400;
}
.yellow:before {
  color: #ffe400;
}
.green {
  background: #41a85f;
}
.green:before {
  color: #41a85f;
}
.light-blue {
  background: #54acd2;
}
.light-blue:before {
  color: #54acd2;
}
.blue {
  background: #2969b0;
}
.blue:before {
  color: #2969b0;
}
.purple {
  background: #9365b8;
}
.purple:before {
  color: #9365b8;
}
.grey:before {
  color: #767676;
}
.grey {
  background: #767676;
}
.color-circles {
  width: 20px;
  max-width: 20px;
  height: 20px;
  max-height: 20px;
  display: inline-block !important;
  vertical-align: middle;
  margin-right: 5px;
  padding: 0 !important;
  border: 0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.color-circles > i {
  display: none;
}
.color-circles.active > i {
  color: #fff;
  display: block;
}
.gray-border-bottom {
  border-bottom: 1px solid #ddd;
}
.acacac-gradient {
  background: #acacac;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #acacac),
    color-stop(100%, #a3a3a3)
  );
  background: -webkit-linear-gradient(top, #acacac, #a3a3a3);
  background: linear-gradient(180deg, #acacac 0%, #a3a3a3);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#acacac',endColorstr='#a3a3a3',GradientType=0);
}
.btn-facebook,
.btn-linkedin,
.btn-twitter {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  margin: 5px 0px 5px 15px !important;
  color: #fff;
  text-align: left;
  padding: 4px 0 !important;
  box-shadow: 0 1px 1px #ccc;
}
.btn-facebook > i,
.btn-facebook > span,
.btn-linkedin > i,
.btn-linkedin > span,
.btn-twitter > i,
.btn-twitter > span {
  display: inline-block;
  vertical-align: middle;
}
.btn-facebook > i,
.btn-linkedin > i,
.btn-twitter > i {
  width: 32px;
  padding-top: 3px;
  height: 20px;
  text-align: center;
}
.btn-facebook > span,
.btn-linkedin > span,
.btn-twitter > span {
  text-align: center;
  width: 187px;
}
.btn-facebook {
  background-color: #2b4170;
  background: -webkit-linear-gradient(top, #7993c6, #4462a2);
  border: 1px solid #4363a0;
}
.btn-facebook > i {
  border-right: 1px solid #3f5994;
}
.btn-facebook:hover {
  color: #fff;
  background-color: #3b5998;
  background: -webkit-linear-gradient(top, #2b4170, #3b5998);
}
.btn-googleplus {
  background-color: #c33219;
  background: -webkit-linear-gradient(top, #e64522, #c33219);
  border: 1px solid #c33219;
  text-shadow: 0 -1px -1px #972412;
}
.btn-googleplus > i {
  border-right: 1px solid #e64522;
}
.btn-googleplus:hover {
  background-color: #e64522;
  background: -webkit-linear-gradient(top, #c33219, #e64522);
}
.btn-googleplus:hover > i {
  border-right: 1px solid #e64522;
}
.btn-linkedin {
  background-color: #0073b2;
  background: -webkit-linear-gradient(top, #6ab4e1, #1b83c2);
  border: 1px solid #1c82c0;
}
.btn-linkedin > i {
  border-right: 1px solid #1976af;
}
.btn-linkedin:hover {
  color: #fff;
  background-color: #009cda;
  background: -webkit-linear-gradient(top, #0073b2, #009cda);
}
.btn-twitter {
  background-color: #0081ce;
  background: -webkit-linear-gradient(top, #87d3f7, #3cb1e7);
  border: 1px solid #3cb1e7;
}
.btn-twitter > i {
  border-right: 1px solid #37a1d3;
}
.btn-twitter:hover {
  color: #fff;
  background-color: #00aced;
  background: -webkit-linear-gradient(top, #0081ce, #00aced);
}
.bottomControls {
  background: #fff;
  box-shadow: 0 -1px 2px #e6e6e6;
  overflow-y: auto;
  height: auto;
}
.bottomControls .attachmentBlock .panel {
  margin-bottom: 0px;
}
.received_images_carousel {
  width: 100%;
  overflow: hidden;
}
.received_images_carousel .imgloading {
  position: absolute;
  z-index: 10;
  background: #fff;
}
.received_images_carousel a.remove_image {
  position: absolute;
  right: 2px;
  top: 2px;
  color: #fff;
  line-height: 1;
  z-index: 2;
  background-color: #555;
  border-radius: 5px;
  padding-bottom: 2px;
}
.received_images_carousel a.remove_image:hover {
  text-decoration: none;
}
.received_images_carousel a.remove_image .fa {
  display: block;
}
.received_images_carousel .received_image_preview {
  margin-bottom: 10px;
  position: relative;
}
.received_images_carousel .received_image_preview span.imagecnt {
  position: relative;
  display: inline-block;
  margin-right: 5px;
}
.received_images_carousel .received_image_preview img {
  height: auto;
  max-height: 120px;
  width: auto;
  max-width: 250px;
  margin: 0px auto;
  cursor: pointer;
}
.received_images_carousel .received_image_preview img.vishidden {
  visibility: hidden;
}
.received_images_carousel .received_image_preview .image_container {
  margin-left: 27px;
  width: calc(100% - 54px);
  overflow: hidden;
}
.received_images_carousel
  .received_image_preview
  .image_container.active
  .received_images_container {
  transition: left 0.2s;
}
.received_images_carousel
  .received_image_preview
  .image_container
  .received_images_container {
  position: relative;
  height: 120px;
  overflow: hidden;
  left: 0;
}
.received_images_carousel
  .received_image_preview
  .image_container
  .received_images_container.show_names {
  height: 160px;
}
.received_images_carousel
  .received_image_preview
  .image_container
  .received_images_container
  .imagecnt {
  float: left;
  margin-right: 5px;
}
.received_images_carousel
  .received_image_preview
  .image_container
  .received_images_container
  .imagecnt
  .innercnt {
  position: relative;
  width: 100%;
}
.received_images_carousel
  .received_image_preview
  .image_container
  .received_images_container
  .imgoveralay {
  text-align: center;
  width: 100%;
  background-color: #595959;
  position: absolute;
  left: 0px;
  right: 0px;
}
.received_images_carousel
  .received_image_preview
  .image_container
  .received_images_container
  .imgoveralay
  .imgname,
.received_images_carousel
  .received_image_preview
  .image_container
  .received_images_container
  .imgoveralay
  .imgsize {
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #fff;
  overflow: hidden;
  width: 100%;
  padding: 0px 5px;
}
.received_images_carousel .received_image_preview .slider {
  position: absolute;
  top: calc(50% - 7px);
  cursor: pointer;
}
.received_images_carousel .received_image_preview .slider.slider-left {
  left: 8px;
}
.received_images_carousel .received_image_preview .slider.slider-right {
  right: 8px;
}
.ellipsisforce {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.valign-bottom {
  vertical-align: bottom;
  line-height: inherit;
}
.margin-top-10 {
  margin-top: 10px;
}
.check-box,
.radio-button {
  cursor: pointer;
  color: #3e3e3e;
  font-size: 15px;
}
.cursor-pointer {
  cursor: pointer;
}
.cursor-pointer > label {
  cursor: inherit;
}
.width-inherit {
  width: inherit;
}
.height-inherit {
  height: inherit;
}
legend.asLabel {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
  color: #3e3e3e;
}
legend.asLabel.noBold {
  font-weight: 400;
}
a.fa:focus,
a.fa:hover {
  text-decoration: none;
}
body :focus {
  outline: 2px solid #4087c9;
  -moz-outline-radius: 3px;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.display-inline-block {
  display: inline-block !important;
}
.display-inline {
  display: inline !important;
}
.reset-group-item-borders {
  border: 0;
  border-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding: 0;
  margin: 0;
}
.btnReset button,
button.btnReset {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
}
legend {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: inherit;
  font-size: inherit;
  float: inherit;
}
.mt-30 {
  margin-top: 30px;
}
.mt-29 {
  margin-top: 29px;
}
.mt-28 {
  margin-top: 28px;
}
.mt-27 {
  margin-top: 27px;
}
.mt-26 {
  margin-top: 26px;
}
.mt-25 {
  margin-top: 25px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-23 {
  margin-top: 23px;
}
.mt-22 {
  margin-top: 22px;
}
.mt-21 {
  margin-top: 21px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-19 {
  margin-top: 19px;
}
.mt-18 {
  margin-top: 18px;
}
.mt-17 {
  margin-top: 17px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-14 {
  margin-top: 14px;
}
.mt-13 {
  margin-top: 13px;
}
.mt-12 {
  margin-top: 12px;
}
.mt-11 {
  margin-top: 11px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-9 {
  margin-top: 9px;
}
.mt-8 {
  margin-top: 8px;
}
.mt-7 {
  margin-top: 7px;
}
.mt-6 {
  margin-top: 6px;
}
.mt-5 {
  margin-top: 5px;
}
.mt-4 {
  margin-top: 4px;
}
.mt-3 {
  margin-top: 3px;
}
.mt-2 {
  margin-top: 2px;
}
.mt-1 {
  margin-top: 1px;
}
.mt-0 {
  margin-top: 0px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-29 {
  margin-bottom: 29px;
}
.mb-28 {
  margin-bottom: 28px;
}
.mb-27 {
  margin-bottom: 27px;
}
.mb-26 {
  margin-bottom: 26px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-23 {
  margin-bottom: 23px;
}
.mb-22 {
  margin-bottom: 22px;
}
.mb-21 {
  margin-bottom: 21px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-19 {
  margin-bottom: 19px;
}
.mb-18 {
  margin-bottom: 18px;
}
.mb-17 {
  margin-bottom: 17px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-14 {
  margin-bottom: 14px;
}
.mb-13 {
  margin-bottom: 13px;
}
.mb-12 {
  margin-bottom: 12px;
}
.mb-11 {
  margin-bottom: 11px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-9 {
  margin-bottom: 9px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-7 {
  margin-bottom: 7px;
}
.mb-6 {
  margin-bottom: 6px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-4 {
  margin-bottom: 4px;
}
.mb-3 {
  margin-bottom: 3px;
}
.mb-2 {
  margin-bottom: 2px;
}
.mb-1 {
  margin-bottom: 1px;
}
.mb-0 {
  margin-bottom: 0px;
}
.ml-30 {
  margin-left: 30px;
}
.ml-29 {
  margin-left: 29px;
}
.ml-28 {
  margin-left: 28px;
}
.ml-27 {
  margin-left: 27px;
}
.ml-26 {
  margin-left: 26px;
}
.ml-25 {
  margin-left: 25px;
}
.ml-24 {
  margin-left: 24px;
}
.ml-23 {
  margin-left: 23px;
}
.ml-22 {
  margin-left: 22px;
}
.ml-21 {
  margin-left: 21px;
}
.ml-20 {
  margin-left: 20px;
}
.ml-19 {
  margin-left: 19px;
}
.ml-18 {
  margin-left: 18px;
}
.ml-17 {
  margin-left: 17px;
}
.ml-16 {
  margin-left: 16px;
}
.ml-15 {
  margin-left: 15px;
}
.ml-14 {
  margin-left: 14px;
}
.ml-13 {
  margin-left: 13px;
}
.ml-12 {
  margin-left: 12px;
}
.ml-11 {
  margin-left: 11px;
}
.ml-10 {
  margin-left: 10px;
}
.ml-9 {
  margin-left: 9px;
}
.ml-8 {
  margin-left: 8px;
}
.ml-7 {
  margin-left: 7px;
}
.ml-6 {
  margin-left: 6px;
}
.ml-5 {
  margin-left: 5px;
}
.ml-4 {
  margin-left: 4px;
}
.ml-3 {
  margin-left: 3px;
}
.ml-2 {
  margin-left: 2px;
}
.ml-1 {
  margin-left: 1px;
}
.ml-0 {
  margin-left: 0px;
}
.mr-30 {
  margin-right: 30px;
}
.mr-29 {
  margin-right: 29px;
}
.mr-28 {
  margin-right: 28px;
}
.mr-27 {
  margin-right: 27px;
}
.mr-26 {
  margin-right: 26px;
}
.mr-25 {
  margin-right: 25px;
}
.mr-24 {
  margin-right: 24px;
}
.mr-23 {
  margin-right: 23px;
}
.mr-22 {
  margin-right: 22px;
}
.mr-21 {
  margin-right: 21px;
}
.mr-20 {
  margin-right: 20px;
}
.mr-19 {
  margin-right: 19px;
}
.mr-18 {
  margin-right: 18px;
}
.mr-17 {
  margin-right: 17px;
}
.mr-16 {
  margin-right: 16px;
}
.mr-15 {
  margin-right: 15px;
}
.mr-14 {
  margin-right: 14px;
}
.mr-13 {
  margin-right: 13px;
}
.mr-12 {
  margin-right: 12px;
}
.mr-11 {
  margin-right: 11px;
}
.mr-10 {
  margin-right: 10px;
}
.mr-9 {
  margin-right: 9px;
}
.mr-8 {
  margin-right: 8px;
}
.mr-7 {
  margin-right: 7px;
}
.mr-6 {
  margin-right: 6px;
}
.mr-5 {
  margin-right: 5px;
}
.mr-4 {
  margin-right: 4px;
}
.mr-3 {
  margin-right: 3px;
}
.mr-2 {
  margin-right: 2px;
}
.mr-1 {
  margin-right: 1px;
}
.mr-0 {
  margin-right: 0px;
}
.pt-30 {
  padding-top: 30px;
}
.pt-29 {
  padding-top: 29px;
}
.pt-28 {
  padding-top: 28px;
}
.pt-27 {
  padding-top: 27px;
}
.pt-26 {
  padding-top: 26px;
}
.pt-25 {
  padding-top: 25px;
}
.pt-24 {
  padding-top: 24px;
}
.pt-23 {
  padding-top: 23px;
}
.pt-22 {
  padding-top: 22px;
}
.pt-21 {
  padding-top: 21px;
}
.pt-20 {
  padding-top: 20px;
}
.pt-19 {
  padding-top: 19px;
}
.pt-18 {
  padding-top: 18px;
}
.pt-17 {
  padding-top: 17px;
}
.pt-16 {
  padding-top: 16px;
}
.pt-15 {
  padding-top: 15px;
}
.pt-14 {
  padding-top: 14px;
}
.pt-13 {
  padding-top: 13px;
}
.pt-12 {
  padding-top: 12px;
}
.pt-11 {
  padding-top: 11px;
}
.pt-10 {
  padding-top: 10px;
}
.pt-9 {
  padding-top: 9px;
}
.pt-8 {
  padding-top: 8px;
}
.pt-7 {
  padding-top: 7px;
}
.pt-6 {
  padding-top: 6px;
}
.pt-5 {
  padding-top: 5px;
}
.pt-4 {
  padding-top: 4px;
}
.pt-3 {
  padding-top: 3px;
}
.pt-2 {
  padding-top: 2px;
}
.pt-1 {
  padding-top: 1px;
}
.pt-0 {
  padding-top: 0px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pb-29 {
  padding-bottom: 29px;
}
.pb-28 {
  padding-bottom: 28px;
}
.pb-27 {
  padding-bottom: 27px;
}
.pb-26 {
  padding-bottom: 26px;
}
.pb-25 {
  padding-bottom: 25px;
}
.pb-24 {
  padding-bottom: 24px;
}
.pb-23 {
  padding-bottom: 23px;
}
.pb-22 {
  padding-bottom: 22px;
}
.pb-21 {
  padding-bottom: 21px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pb-19 {
  padding-bottom: 19px;
}
.pb-18 {
  padding-bottom: 18px;
}
.pb-17 {
  padding-bottom: 17px;
}
.pb-16 {
  padding-bottom: 16px;
}
.pb-15 {
  padding-bottom: 15px;
}
.pb-14 {
  padding-bottom: 14px;
}
.pb-13 {
  padding-bottom: 13px;
}
.pb-12 {
  padding-bottom: 12px;
}
.pb-11 {
  padding-bottom: 11px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pb-9 {
  padding-bottom: 9px;
}
.pb-8 {
  padding-bottom: 8px;
}
.pb-7 {
  padding-bottom: 7px;
}
.pb-6 {
  padding-bottom: 6px;
}
.pb-5 {
  padding-bottom: 5px;
}
.pb-4 {
  padding-bottom: 4px;
}
.pb-3 {
  padding-bottom: 3px;
}
.pb-2 {
  padding-bottom: 2px;
}
.pb-1 {
  padding-bottom: 1px;
}
.pb-0 {
  padding-bottom: 0px;
}
.pl-30 {
  padding-left: 30px;
}
.pl-29 {
  padding-left: 29px;
}
.pl-28 {
  padding-left: 28px;
}
.pl-27 {
  padding-left: 27px;
}
.pl-26 {
  padding-left: 26px;
}
.pl-25 {
  padding-left: 25px;
}
.pl-24 {
  padding-left: 24px;
}
.pl-23 {
  padding-left: 23px;
}
.pl-22 {
  padding-left: 22px;
}
.pl-21 {
  padding-left: 21px;
}
.pl-20 {
  padding-left: 20px;
}
.pl-19 {
  padding-left: 19px;
}
.pl-18 {
  padding-left: 18px;
}
.pl-17 {
  padding-left: 17px;
}
.pl-16 {
  padding-left: 16px;
}
.pl-15 {
  padding-left: 15px;
}
.pl-14 {
  padding-left: 14px;
}
.pl-13 {
  padding-left: 13px;
}
.pl-12 {
  padding-left: 12px;
}
.pl-11 {
  padding-left: 11px;
}
.pl-10 {
  padding-left: 10px;
}
.pl-9 {
  padding-left: 9px;
}
.pl-8 {
  padding-left: 8px;
}
.pl-7 {
  padding-left: 7px;
}
.pl-6 {
  padding-left: 6px;
}
.pl-5 {
  padding-left: 5px;
}
.pl-4 {
  padding-left: 4px;
}
.pl-3 {
  padding-left: 3px;
}
.pl-2 {
  padding-left: 2px;
}
.pl-1 {
  padding-left: 1px;
}
.pl-0 {
  padding-left: 0px;
}
.pr-30 {
  padding-right: 30px;
}
.pr-29 {
  padding-right: 29px;
}
.pr-28 {
  padding-right: 28px;
}
.pr-27 {
  padding-right: 27px;
}
.pr-26 {
  padding-right: 26px;
}
.pr-25 {
  padding-right: 25px;
}
.pr-24 {
  padding-right: 24px;
}
.pr-23 {
  padding-right: 23px;
}
.pr-22 {
  padding-right: 22px;
}
.pr-21 {
  padding-right: 21px;
}
.pr-20 {
  padding-right: 20px;
}
.pr-19 {
  padding-right: 19px;
}
.pr-18 {
  padding-right: 18px;
}
.pr-17 {
  padding-right: 17px;
}
.pr-16 {
  padding-right: 16px;
}
.pr-15 {
  padding-right: 15px;
}
.pr-14 {
  padding-right: 14px;
}
.pr-13 {
  padding-right: 13px;
}
.pr-12 {
  padding-right: 12px;
}
.pr-11 {
  padding-right: 11px;
}
.pr-10 {
  padding-right: 10px;
}
.pr-9 {
  padding-right: 9px;
}
.pr-8 {
  padding-right: 8px;
}
.pr-7 {
  padding-right: 7px;
}
.pr-6 {
  padding-right: 6px;
}
.pr-5 {
  padding-right: 5px;
}
.pr-4 {
  padding-right: 4px;
}
.pr-3 {
  padding-right: 3px;
}
.pr-2 {
  padding-right: 2px;
}
.pr-1 {
  padding-right: 1px;
}
.pr-0 {
  padding-right: 0px;
}
.btn-group-vertical > .btn-group:after,
.btn-group-vertical > .btn-group:before,
.btn-toolbar:after,
.btn-toolbar:before,
.clearfix:after,
.clearfix:before,
.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before,
.dl-horizontal dd:after,
.dl-horizontal dd:before,
.form-horizontal .form-group:after,
.form-horizontal .form-group:before,
.modal-footer:after,
.modal-footer:before,
.nav:after,
.nav:before,
.navbar-collapse:after,
.navbar-collapse:before,
.navbar-header:after,
.navbar-header:before,
.navbar:after,
.navbar:before,
.pager:after,
.pager:before,
.panel-body:after,
.panel-body:before,
.row:after,
.row:before {
  content: "";
}
.asterisk-before:before {
  margin-right: 2px;
}
.asterisk-after:after,
.asterisk-before:before {
  content: "\2a";
  font-weight: 700;
}
.asterisk-red-before:before {
  margin-right: 2px;
}
.asterisk-red-after:after,
.asterisk-red-before:before {
  color: #ad1b00;
  content: "\2a";
  font-weight: 700;
}
.border-bottom {
  border-bottom: 1px solid #eee;
}
.border-top {
  border-top: 1px solid #eee;
}
.border-left {
  border-left: 1px solid #eee;
}
.border-right {
  border-right: 1px solid #eee;
}
.text-align-right {
  text-align: right;
}
.gradient-sortbar {
  color: #595959;
  background: #283a50;
}
.text-facebook {
  color: #3b5998;
}
.text-twitter {
  color: #55acee;
}
.text-linkedin {
  color: #0077b5;
}
.auto-wide {
  width: auto;
  max-width: auto;
}
.highlighted-li {
  background-color: #0e57ab;
  color: #fff;
}
.highlighted-li i {
  color: #fff;
}
.default-button-focus {
  outline: 2px solid #4087c9;
  -moz-outline-radius: 3px;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.text-color-wcag-freespeech-red {
  color: #ad1b00;
}
.text-color-green {
  color: #41a85f;
}
body {
  background-color: #fff;
  font-family: Lato, Helvetica Neue, Helvetica, Arial, sans-serif;
  overflow: hidden;
  color: #3e3e3e;
}
.content,
body,
html {
  height: 100%;
  min-height: 100%;
  margin: 0;
}
.content {
  box-sizing: border-box;
  padding-top: 50px;
  background: #fff;
  z-index: 1;
}
.content.simple-content {
  padding-top: 0;
}
.content.simple-content .sidebar.level0 {
  display: none;
}
.content.simple-content #workspace0 {
  margin-left: 0;
}
.master {
  overflow: visible;
  height: calc(100vh - 50px);
}
.translate-cloak {
  opacity: 0;
}
.scroll-container {
  overflow: auto;
  height: 100%;
}
.scrollWidth {
  overflow: hidden;
  overflow-x: auto;
}
.scrollHeight {
  overflow: hidden;
  overflow-y: auto;
}
.scrollBoth {
  overflow: auto;
}
#workspace0 {
  margin-left: 56px;
  overflow: visible;
}
#workspace1 {
  z-index: 399;
  float: left;
}
#workspace2 {
  float: left;
}
.alert {
  padding-top: 9px;
  padding-bottom: 9px;
  margin-bottom: 10px;
}
.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
hr {
  border-color: #eee;
}
.hr-lg {
  border-top: 5px solid #eee;
}
.clearboth {
  clear: both;
}
.loading-spinner-home {
  color: #c4c4c4;
  text-align: center;
  font-size: 2em;
}
.loading-spinner {
  color: #c4c4c4;
  text-align: center;
  font-size: 0.4em;
}
.loading-full-screen {
  position: absolute;
  width: 100px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-left: -50px;
  margin-top: -100px;
}
.collapseCaret[data-toggle="collapse"] .fa:before {
  font-family: FontAwesome;
  font-size: 14px;
  line-height: 20px;
  content: "\f0d7";
}
.collapseCaret[data-toggle="collapse"].collapsed .fa:before {
  content: "\f0da";
}
.nomsg,
.paletext {
  color: #595959;
}
.nomsg {
  text-align: center;
  word-wrap: break-word;
  min-width: 225px;
  max-width: 500px;
  margin: 155px auto 0;
  padding: 0px 30px;
}
.nomsg .fa,
.nomsg .fa-3x,
.nomsg .fa-4x {
  padding: 0;
  margin: 0;
  font-size: 60px;
  margin-bottom: 10px;
}
.nomsg a,
.nomsg p,
.nomsg span {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 4px;
}
.info-icon-container div.tooltip,
.info-icon-container div.tooltip-inner,
.ng-binding div.tooltip,
.ng-binding div.tooltip-inner {
  text-align: left;
}
div.tooltip,
div.tooltip-inner {
  text-align: center;
}
input::-ms-clear {
  display: none;
}
.position-relative {
  position: relative;
  width: 100%;
}
ul.dashed {
  margin: 0;
  list-style-type: none;
}
ul.dashed > li {
  text-indent: -5px;
}
ul.dashed > li:before {
  content: "- ";
  text-indent: -5px;
}
@font-face {
  font-family: icon-wm;
  src: url(../fonts/icon-wm.eot?7ysbj9);
  src: url(../fonts/icon-wm.eot?7ysbj9#iefix) format("embedded-opentype"),
    url(../fonts/icon-wm.ttf?7ysbj9) format("truetype"),
    url(../fonts/icon-wm.woff?7ysbj9) format("woff"),
    url(../fonts/icon-wm.svg?7ysbj9#icon-wm) format("svg");
  font-weight: 400;
  font-style: normal;
}
[class*=" icon-wm-"],
[class^="icon-wm-"] {
  font-family: icon-wm !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-wm-desktop-tablet:before {
  content: "\e90a";
}
.icon-wm-clock-remove:before {
  content: "\e909";
}
.icon-wm-calendar-remove:before {
  content: "\e908";
}
.icon-wm-enlarge:before {
  content: "\e989";
}
.icon-wm-collapse:before {
  content: "\e91c";
}
.icon-wm-expand:before {
  content: "\e904";
}
.icon-wm-window:before {
  content: "\e900";
}
.icon-wm-envelope:before {
  content: "\e903";
}
.icon-wm-trash:before {
  content: "\e606";
}
.icon-wm-calendar-new:before {
  content: "\e907";
}
.icon-wm-agenda:before {
  content: "\e623";
}
.icon-wm-day:before {
  content: "\e61d";
}
.icon-wm-week:before {
  content: "\e61e";
}
.icon-wm-month:before {
  content: "\e61f";
}
.icon-wm-timezone:before {
  content: "\e902";
}
.icon-wm-disconnected .path1:before {
  content: "\e61a";
  color: #cdcdcd;
}
.icon-wm-disconnected .path2:before {
  content: "\e61b";
  margin-left: -1em;
  color: #e33a3a;
}
.icon-wm-overlap:before {
  content: "\e901";
}
.icon-wm-organizer:before {
  content: "\e614";
}
.icon-wm-declined:before {
  content: "\e615";
}
.icon-wm-tentative:before {
  content: "\e616";
}
.icon-wm-tasks:before {
  content: "\e906";
}
.icon-wm-tasks-new:before {
  content: "\e905";
}
.icon-wm-alert:before {
  content: "\e628";
}
.icon-wm-archive-add:before {
  content: "\e626";
}
.icon-wm-archive-remove:before {
  content: "\e627";
}
.icon-wm-contacts:before {
  content: "\e621";
}
.icon-wm-contacts-new:before {
  content: "\e620";
}
.icon-wm-file-type-doc:before {
  content: "\e90d";
  color: #1870ca;
}
.icon-wm-file-type-ppt:before {
  content: "\e90e";
  color: #de4a32;
}
.icon-wm-file-type-xls:before {
  content: "\e90f";
  color: #01a414;
}
.icon-wm-file-type-csv:before {
  content: "\e910";
  color: #bb9685;
}
.icon-wm-file-type-gif:before {
  content: "\e911";
  color: #5019c0;
}
.icon-wm-file-type-pdf:before {
  content: "\e912";
  color: #b11919;
}
.icon-wm-file-type-psd:before {
  content: "\e913";
  color: #34addf;
}
.icon-wm-file-type-txt:before {
  content: "\e914";
  color: #16ccac;
}
.icon-wm-file-type-zip:before {
  content: "\e915";
  color: #dd6190;
}
.icon-wm-file-type-image:before {
  content: "\e916";
  color: #e8b21f;
}
.icon-wm-file-type-audio:before {
  content: "\e917";
  color: #ee832d;
}
.icon-wm-file-type-video:before {
  content: "\e918";
  color: #a43ebe;
}
.icon-wm-file-type-html:before {
  content: "\e919";
  color: gray;
}
.icon-wm-calendar:before {
  content: "\e612";
}
.btn {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 3px;
  height: 30px;
}
.btn-group.open .dropdown-toggle,
.btn.active,
.btn:active {
  box-shadow: none;
}
.btn-primary,
.btn-primary[aria-expanded="true"],
.open > .dropdown-toggle.btn-primary {
  border-color: #1e75d9;
  color: #fff;
  background: #4a9bea;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #4a9bea),
    color-stop(100%, #1e75d9)
  );
  background: -webkit-linear-gradient(top, #4a9bea, #1e75d9);
  background: linear-gradient(180deg, #4a9bea 0%, #1e75d9);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4A9BEA',endColorstr='#1E75D9',GradientType=0);
}
.btn-primary:focus,
.btn-primary:hover {
  border-color: #1e75d9;
  color: #fff;
  background: #3c86cf;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #3c86cf),
    color-stop(100%, #216ec3)
  );
  background: -webkit-linear-gradient(top, #3c86cf, #216ec3);
  background: linear-gradient(180deg, #3c86cf 0%, #216ec3);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3C86CF',endColorstr='#216EC3',GradientType=0);
}
.btn-primary:active {
  border-color: #1e75d9;
  color: #fff;
  background: #1d6cbb;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #1d6cbb),
    color-stop(100%, #175aa3)
  );
  background: -webkit-linear-gradient(top, #1d6cbb, #175aa3);
  background: linear-gradient(180deg, #1d6cbb 0%, #175aa3);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1D6CBB',endColorstr='#175aa3',GradientType=0);
  box-shadow: inset 0 0 2px #000;
}
.btn-default,
.btn-default[aria-expanded="true"],
.open > .dropdown-toggle.btn-default {
  border-color: #dcdcdc;
  color: #444;
  background: #fafafa;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #fafafa),
    color-stop(100%, #e5e5e5)
  );
  background: -webkit-linear-gradient(top, #fafafa, #e5e5e5);
  background: linear-gradient(180deg, #fafafa 0%, #e5e5e5);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA',endColorstr='#E5E5E5',GradientType=0);
}
.btn-default:focus,
.btn-default:hover,
.uploadButton:focus > .btn-default {
  border-color: #dcdcdc;
  color: #444;
  background: #eee;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #eee),
    color-stop(100%, #ddd)
  );
  background: -webkit-linear-gradient(top, #eee, #ddd);
  background: linear-gradient(180deg, #eee 0%, #ddd);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EEEEEE',endColorstr='#DDDDDD',GradientType=0);
}
.btn-default:active {
  border-color: #ccc;
  color: #444;
  background: #f6f6f6;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #f6f6f6),
    color-stop(100%, #e5e5e5)
  );
  background: -webkit-linear-gradient(top, #f6f6f6, #e5e5e5);
  background: linear-gradient(180deg, #f6f6f6 0%, #e5e5e5);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#E5E5E5',GradientType=0);
  box-shadow: inset 0 0 2px #000;
}
.btn-default:focus,
.btn-primary:focus,
.uploadButton:focus > .btn-default {
  outline: 2px solid #4087c9;
  -moz-outline-radius: 3px;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn-fw {
  width: 30px;
  padding: 5px 0px;
}
.btn-fw-narrow {
  width: 20px;
  padding: 5px 0px;
}
.btn-link-big-text {
  font-size: 14px;
  padding: 3px 8px;
}
.topButtons {
  height: 50px;
  padding: 10px 12px;
  color: #595959;
  box-shadow: 0 2px 2px #eee;
  background-color: #fff;
}
.topButtons button {
  vertical-align: top;
}
.spacer-right {
  margin-right: 10px;
}
.spacer-right-lg {
  margin-right: 30px;
}
.spacer-left {
  margin-left: 10px;
}
.spacer-left-lg {
  margin-left: 30px;
}
.uploadButton {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.uploadButton:focus {
  outline: none;
}
.uploadButton .btn {
  position: relative;
}
.uploadButton input {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  height: 30px;
  width: 30px;
  cursor: pointer;
}
.uploadButton
  > .btn:first-child:not(:last-child):not(.dropdown-toggle):not(.sr-only) {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.icon-wm-disconnected .path1,
.icon-wm-disconnected .path2 {
  float: left;
}
.btn-group .btn + .tooltip + .btn,
.btn-group .btn + .tooltip + .btn-group,
.btn-group .btn-group + .tooltip + .btn,
.btn-group .btn-group + .tooltip + .btn-group {
  margin-left: -1px;
}
.badge {
  color: #fff;
  background-color: #c4c4c4;
}
textarea {
  resize: none;
  white-space: pre-wrap;
  overflow: auto;
}
input.form-control::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: #595959;
}
input.form-control:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: #595959;
}
input.form-control:-moz-placeholder,
input.form-control::-moz-placeholder,
input:-moz-placeholder,
input::-moz-placeholder {
  color: #595959;
  opacity: 1;
}
@media (min-width: 768px) {
  .form-horizontal .form-group label {
    text-align: left;
    font-weight: 400;
  }
}
.form-table .form-group {
  display: table;
  width: 100%;
}
.form-table .control-label {
  display: table-cell;
  padding-right: 5px;
  width: 1px;
}
.form-table .form-control {
  display: table-cell;
  width: 100%;
}
.form-control,
.form-control:focus {
  box-shadow: none;
  border: 1px solid #949494;
  transition: none;
  color: #3e3e3e;
  border-radius: 2px;
}
.form-control:-moz-placeholder,
.form-control:-ms-input-placeholder,
.form-control::-moz-placeholder,
.form-control::-webkit-input-placeholder {
  color: #595959;
  opacity: 1;
}
.input-sm,
select.input-sm {
  padding-left: 13px;
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.form-horizontal .control-label-sm {
  padding-top: 6px;
  padding-bottom: 4px;
  margin-bottom: 0px;
  text-align: right;
}
.form-minimal .form-group {
  margin-bottom: 0px;
  height: 30px;
}
.form-minimal .control-label {
  font-weight: 400;
  font-size: 14px;
  color: #595959;
}
.form-minimal .form-control {
  border: 0px;
  box-shadow: none;
  border: none;
  transition: none;
  color: #3e3e3e;
}
.dropdown-menu {
  margin: 0px;
  border-radius: 0px;
  border: 0px;
}
.dropdown-menu li {
  color: #3e3e3e;
}
.dropdown-menu li.divider {
  margin: 10px;
  width: auto !important;
}
.dropdown-menu li > a {
  padding: 3px 10px;
}
.dropdown-menu li a.withIcon {
  padding-left: 25px;
}
.dropdown-menu li .iconContainer {
  float: left;
  width: 20px;
  height: 20px;
  margin-left: -20px;
}
.dropdown-menu li .disabled {
  opacity: 0.5;
}
.dropdown-menu li > a:active,
.dropdown-menu li > a:focus,
.dropdown-menu li > a:hover {
  color: #fff;
  background-color: #0e57ab;
}
.scrollable-menu {
  height: auto;
  max-height: 264px;
  overflow-x: hidden;
}
.dropdown-hover > ul > li.active,
.dropdown-hover > ul > li:active,
.dropdown-hover > ul > li:focus,
.dropdown-hover > ul > li:hover {
  color: #fff;
  background-color: #0e57ab;
  cursor: pointer;
}
.mini-submenu {
  position: relative;
}
.mini-submenu > ul {
  display: none;
  background: #fff;
  position: absolute;
  left: 100%;
  top: 0;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
}
.mini-submenu > a:hover + ul,
.mini-submenu > ul:hover {
  display: block;
}
#winspace1 .cke_toolgroup,
#workspace1 .cke_toolgroup {
  background: 0;
  border: 0;
  box-shadow: none;
  margin: 0 5px 0 0;
}
#winspace1 .cke_toolbar,
#workspace1 .cke_toolbar {
  margin: 0 5px 5px 0;
}
#winspace1 .cke_combo_button,
#workspace1 .cke_combo_button {
  margin: 0 5px 0 0;
}
#winspace1 .cke_toolbar:after,
#workspace1 .cke_toolbar:after {
  content: "";
}
#winspace1 .cke_toolbar:not(:last-child):after,
#workspace1 .cke_toolbar:not(:last-child):after {
  content: "|";
  color: #bbb;
  margin-left: 5px;
  line-height: 24px;
}
#winspace1 .cke_top,
#workspace1 .cke_top {
  background: #d5d5d5;
  box-shadow: none;
  border: none;
}
#winspace1 .cke_top .cke_combo,
#workspace1 .cke_top .cke_combo {
  color: #3e3e3e;
}
#winspace1 .cke_chrome,
#workspace1 .cke_chrome {
  border: none;
  box-shadow: none;
}
#winspace1 .cke_chrome .cke_button,
#workspace1 .cke_chrome .cke_button {
  padding: 5px;
}
#winspace1 .cke_wysiwyg_frame,
#workspace1 .cke_wysiwyg_frame {
  padding-top: 0;
}
#winspace1 #cke_9 > a.cke_combo_button,
#workspace1 #cke_9 > a.cke_combo_button {
  min-width: 50px;
}
#winspace1 .narrow_toolbar .cke_toolgroup,
#workspace1 .narrow_toolbar .cke_toolgroup {
  margin-left: 0;
  margin-right: 0;
}
#winspace1 .narrow_toolbar .cke_toolbar,
#workspace1 .narrow_toolbar .cke_toolbar {
  margin-right: 0;
}
#winspace1 .narrow_toolbar .cke_toolbar:not(:last-child):after,
#workspace1 .narrow_toolbar .cke_toolbar:not(:last-child):after {
  margin-left: 0;
}
.cke_reset_all .cke_dialog_body * {
  color: #3e3e3e;
}
.cke_reset_all .cke_dialog_body label {
  font-weight: 700;
}
.cke_reset_all .cke_dialog_body .cke_dialog_close_button {
  background-image: none;
  opacity: 1;
}
.cke_reset_all .cke_dialog_body .cke_dialog_close_button:after {
  content: "Ã—";
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}
.cke_reset_all .cke_dialog_body a.cke_btn_locked,
.cke_reset_all .cke_dialog_body a.cke_btn_reset {
  background-image: none;
  text-decoration: none;
  color: #0e57ab;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0);
}
.cke_reset_all .cke_dialog_body a.cke_btn_locked:focus,
.cke_reset_all .cke_dialog_body a.cke_btn_reset:focus {
  outline: none;
}
.cke_reset_all .cke_dialog_body a.cke_btn_locked:after {
  content: "\f023";
  font-size: 17px;
}
.cke_reset_all .cke_dialog_body a.cke_btn_locked.cke_btn_unlocked:after {
  content: "\f13e";
}
.cke_reset_all .cke_dialog_body a.cke_btn_reset:after {
  content: "\f01e";
  font-size: 16px;
}
.cke_reset_all .cke_dialog_body .cke_dialog_footer {
  direction: rtl;
}
.cke_reset_all .cke_dialog_body .cke_dialog_footer .cke_dialog_ui_button_ok {
  background-image: none;
  background-color: #0e57ab;
  color: #fff;
  margin-left: 5px;
}
.cke_reset_all .cke_dialog_body .cke_resizer {
  border-right-color: #3e3e3e;
}
.inviteBlock {
  color: #595959;
}
.inviteBlock .inviteActions {
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  background-color: #f6f6f6;
  padding: 15px 15px 10px;
  margin: 0 -15px 15px;
}
.inviteBlock .inviteActions .form-control,
.inviteBlock .inviteActions .form-control:focus {
  border: 1px solid #8e8e8e;
}
.inviteBlock .inviteActions .inviteStatus,
.inviteBlock .inviteActions .inviteSummary {
  min-height: 30px;
}
.inviteBlock .inviteActions .inviteStatus p,
.inviteBlock .inviteActions .inviteSummary p {
  margin: 0px;
}
.inviteBlock .inviteActions .inviteStatus strong,
.inviteBlock .inviteActions .inviteSummary strong {
  color: #000;
}
.inviteBlock .inviteActions .inviteStatus ul,
.inviteBlock .inviteActions .inviteSummary ul {
  list-style-type: none;
  margin: 0px;
  padding-left: 5px;
}
.inviteBlock .inviteActions .inviteStatus ul li:before,
.inviteBlock .inviteActions .inviteSummary ul li:before {
  content: "- ";
}
.inviteBlock .inviteActions .inviteSummary {
  margin-bottom: 15px;
  line-height: 20px;
}
.inviteBlock .inviteActions .inviteStatus {
  margin-bottom: 5px;
  line-height: 30px;
}
.inviteBlock .inviteActions .inviteStatus .btn-link {
  color: #003e87;
}
.inviteBlock .inviteActions .inviteActionButtons .btn {
  margin-bottom: 5px;
}
.inviteBlock
  .inviteActions
  .inviteActionButtons
  .row
  .col-md-12
  .btn-group:last-of-type {
  margin-right: 10px;
}
.inviteBlock .inviteActions .inviteActionButtons .btn-link {
  padding-left: 0px;
  padding-right: 0px;
  color: #003e87;
}
.inviteBlock .inviteActions .inviteActionDetails {
  overflow: hidden;
  max-height: 0px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.inviteBlock .inviteActions .inviteActionDetails .form-group:last-child {
  margin-bottom: 5px;
}
.inviteBlock .inviteActions .slideopen {
  max-height: 175px;
  -webkit-transition: 0.75s;
  transition: 0.75s;
}
.inviteBlock .inviteActions .suggestedTime span {
  color: #000;
}
.inviteBlock .inviteActions .suggestedTime a {
  margin-left: 10px;
}
.inviteBlock .inviteActions a {
  color: #0e57ab;
}
.inviteBlock .inviteDetails #inviteAttendeesList .attendee {
  margin-right: 8px;
  display: inline-block;
}
.inviteBlock .inviteDetails #inviteAttendeesList .attendee > span {
  position: relative;
  display: inline-block;
}
.inviteBlock .inviteDetails #inviteAttendeesList .attendee > span > span {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  pointer-events: none;
}
.inviteBlock
  .inviteDetails
  #inviteAttendeesList
  .attendee
  > span
  > span.icon-wm-organizer {
  color: #54acd2;
}
.inviteBlock
  .inviteDetails
  #inviteAttendeesList
  .attendee
  > span
  > span.fa-check-circle-o {
  color: #41a85f;
}
.inviteBlock
  .inviteDetails
  #inviteAttendeesList
  .attendee
  > span
  > span.icon-wm-tentative {
  color: #f4a932;
}
.inviteBlock
  .inviteDetails
  #inviteAttendeesList
  .attendee
  > span
  > span.icon-wm-declined {
  color: #ad1b00;
}
.inviteBlock .inviteDetails #inviteTimes .fa {
  color: #3e3e3e;
  margin: 0px 10px;
}
.inviteBlock .inviteDetails.form-horizontal .control-label-sm {
  text-align: left;
}
.inviteBlock .inviteDetails pre.inviteDescription {
  font-family: Lato, Helvetica Neue, Helvetica, Arial, sans-serif;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0px;
  font-size: 14px;
  color: #595959;
  word-break: normal;
  word-break: break-word;
  white-space: pre;
  white-space: -moz-pre-wrap;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: hidden;
}
.inviteBlock .inviteDetails a {
  color: #0e57ab;
}
.inviteBlock .inviteDetails .divider-line {
  width: 100%;
  float: left;
}
.inviteBlock #inviteCalendar .form-control {
  width: auto;
  min-width: 250px;
}
.inviteBlock #inviteCalendar .dropdown-container {
  padding-left: 0px;
}
.inviteBlock h5 {
  font-weight: 700;
  color: #3e3e3e;
  margin-bottom: 5px;
}
.inviteBlock .spacer-left {
  margin-left: 15px;
}
.inviteBlock hr {
  margin: 5px 0px;
}
.navbar {
  width: 100%;
  z-index: 600;
  color: #fff;
  margin-bottom: 0px;
  background-color: #1d2937;
  height: 50px;
  overflow: visible;
}
.navbar .navbar-header {
  float: left;
}
.navbar .loggedInOptions .navbar-right {
  float: right;
  margin: 0;
}
.navbar .loggedInOptions .instructionsButton {
  display: block;
  font-size: 22px;
  margin-top: -50px;
  float: left;
}
.navbar .loggedInOptions .instructionsButton:focus {
  margin-top: 10px;
}
.navbar .loggedInOptions .tooltip .tooltip-arrow {
  border-right-color: #fff;
}
.navbar .loggedInOptions .tooltip .tooltip-inner {
  background-color: #fff;
  color: #3e3e3e;
  max-width: 300px;
}
.navbar-nav.navbar-right:last-child {
  margin-right: 20px;
}
.navbar-fixed-top {
  border-bottom: 0px;
}
.navbar-brand {
  padding: 0px;
  height: 50px;
  min-width: 50px;
  max-width: 300px;
}
.top-nav {
  padding: 0px;
}
.top-nav .dropdown-container button:focus,
.top-nav .dropdown-container button:hover,
.top-nav .dropdown-container button[aria-expanded="true"] {
  color: #3e3e3e;
  background-color: #fff;
}
.top-nav .dropdown-container button[aria-expanded="true"] {
  padding-bottom: 20px;
  z-index: 1001;
}
.top-nav .dropdown-container button {
  position: relative;
  padding: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 20px;
  background: none;
  border: none;
  border-left: 1px solid #1d2937;
  border-right: 1px solid #1d2937;
}
.top-nav .dropdown-container button .greetings-element {
  display: inline-block;
  float: left;
}
.top-nav .dropdown-container button .greetings-element.display-name {
  margin-left: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 115px;
}
.top-nav .dropdown-container button .greetings-element.user-caret span {
  font-size: 16px;
}
.top-nav .dropdown-container .dropdown-options-container {
  border-radius: 0 0 4px 4px;
  box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
  color: #fff;
  background-color: #fff;
  border-top: 5px solid #0e57ab;
  padding-top: 5px;
  margin-top: -5px;
}
.top-nav
  .dropdown-container
  .dropdown-options-container
  .dropdown-options
  .dropdown-option {
  height: 35px;
  line-height: 35px;
  min-width: 230px;
  padding: 0 28px 0 8px;
  border-bottom: 1px solid #eee;
}
.top-nav
  .dropdown-container
  .dropdown-options-container
  .dropdown-options
  .dropdown-option.highlighted {
  background-color: #0e57ab;
  color: #fff;
}
.top-nav #migrationModal button.close {
  display: none;
}
.instructionsModal .modal-content {
  padding: 0 10px;
}
.instructionsModal .modal-body {
  max-height: calc(100vh - 220px);
  width: 600px;
  overflow-y: auto;
}
.instructionsModal .modal-body,
.instructionsModal .modal-body .body-content {
  padding-left: 8px;
  padding-right: 8px;
}
.instructionsModal .modal-body .moreInfo {
  font-weight: 400;
  color: #595959;
}
.instructionsModal .modal-body h4 {
  margin-bottom: 10px;
  line-height: inherit;
  font-weight: 700;
  font-size: 14px;
}
.instructionsModal .modal-body ul.instructionList {
  padding-left: 15px;
  margin-bottom: 0px;
}
.instructionsModal .modal-body ul.instructionList li {
  margin-top: 8px;
}
.instructionsModal .modal-body .ckeditorLink {
  color: #0e57ab;
  font-weight: 700;
  text-decoration: none;
}
.instructionsModal .modal-body table.instructionsTable {
  width: 100%;
  margin-top: 20px;
}
.instructionsModal .modal-body table.instructionsTable caption {
  padding: 3px 8px 0;
  color: #3e3e3e;
  font-weight: 700;
  border-bottom: 1px solid #ddd;
}
.instructionsModal .modal-body table.instructionsTable caption h4 {
  margin: 0;
}
.instructionsModal .modal-body table.instructionsTable td,
.instructionsModal .modal-body table.instructionsTable th {
  padding-top: 2px;
  padding-bottom: 1px;
  width: 50%;
}
.instructionsModal .modal-body table.instructionsTable td:first-child,
.instructionsModal .modal-body table.instructionsTable th:first-child {
  padding-left: 8px;
}
.instructionsModal .modal-body table.instructionsTable.page1 caption .moreInfo,
.instructionsModal .modal-body table.instructionsTable.page3 caption .moreInfo {
  display: inline-block;
  padding-top: 5px;
  padding-bottom: 10px;
}
.instructionsModal .modal-body table.instructionsTable.page1 th,
.instructionsModal .modal-body table.instructionsTable.page3 th {
  padding-right: 18px;
}
.instructionsModal .modal-body table.instructionsTable.page1 td.firstCell,
.instructionsModal .modal-body table.instructionsTable.page3 td.firstCell {
  padding-right: 26px;
}
.instructionsModal .modal-body table.instructionsTable.page1 tbody td,
.instructionsModal .modal-body table.instructionsTable.page1 tbody th,
.instructionsModal .modal-body table.instructionsTable.page3 tbody td,
.instructionsModal .modal-body table.instructionsTable.page3 tbody th {
  vertical-align: top;
  padding-top: 10px;
  padding-bottom: 10px;
}
.instructionsModal .modal-body table.instructionsTable tbody tr:nth-child(odd) {
  background-color: #f7f7f7;
}
.instructionsModal .modal-footer .buttonContainer {
  border-top: 1px solid #ddd;
  float: left;
  padding-top: 10px;
}
.instructionsModal .modal-footer .buttonContainer .btn {
  font-size: 13px;
  margin: 0;
}
.instructionsModal .modal-footer .buttonContainer .btn .fa {
  font-size: 20px;
  position: relative;
  top: 2px;
}
.instructionsModal .modal-footer .buttonContainer.first {
  width: 40%;
  text-align: left;
}
.instructionsModal .modal-footer .buttonContainer.first .fa {
  margin-right: 5px;
}
.instructionsModal .modal-footer .buttonContainer.second {
  width: 20%;
  text-align: center;
}
.instructionsModal .modal-footer .buttonContainer.third {
  width: 40%;
  text-align: right;
}
.instructionsModal .modal-footer .buttonContainer.third .fa {
  margin-left: 5px;
}
.preferences-2fa .form-group.has-error:before,
.setup-2fa .form-group.has-error:before,
.verify-2fa .form-group.has-error:before {
  content: "";
}
.preferences-2fa .icon,
.setup-2fa .icon,
.verify-2fa .icon {
  height: 32.8px;
  margin-top: -5px;
  margin-right: 10px;
}
.preferences-2fa h3,
.setup-2fa h3,
.verify-2fa h3 {
  margin: 20px 0;
}
.preferences-2fa .panel-header,
.setup-2fa .panel-header,
.verify-2fa .panel-header {
  padding: 10px 20px;
  background: #f3f3f3;
  border-radius: 5px;
  margin: -50px -20px 10px;
}
.preferences-2fa .separator,
.setup-2fa .separator,
.verify-2fa .separator {
  border-top: 1px solid #ccc;
  margin: 20px -20px;
}
.preferences-2fa .code-block,
.setup-2fa .code-block,
.verify-2fa .code-block {
  border-radius: 5px;
  border: 1px solid #ccc;
  margin: 10px 0 0;
  padding: 20px;
}
.preferences-2fa .code-block .code-image,
.setup-2fa .code-block .code-image,
.verify-2fa .code-block .code-image {
  width: 49%;
  display: table-cell;
  text-align: right;
  padding-right: 40px;
}
.preferences-2fa .code-block .code-secret,
.setup-2fa .code-block .code-secret,
.verify-2fa .code-block .code-secret {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
}
.preferences-2fa .left-separator,
.setup-2fa .left-separator,
.verify-2fa .left-separator {
  border-left: 2px dashed #ccc;
  padding-left: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.preferences-2fa ol,
.setup-2fa ol,
.verify-2fa ol {
  padding-left: 13px;
}
.preferences-2fa ol li,
.setup-2fa ol li,
.verify-2fa ol li {
  padding-left: 10px;
  padding-bottom: 10px;
}
.preferences-2fa .form-group,
.setup-2fa .form-group,
.verify-2fa .form-group {
  margin-bottom: 0;
  margin-top: 10px;
}
.preferences-2fa .form-group input,
.setup-2fa .form-group input,
.verify-2fa .form-group input {
  border-radius: 5px;
}
.preferences-2fa .btn,
.setup-2fa .btn,
.verify-2fa .btn {
  padding-left: 40px;
  padding-right: 40px;
}
.preferences-2fa .buttons-block,
.setup-2fa .buttons-block,
.verify-2fa .buttons-block {
  margin: 20px 0;
}
.verify-2fa div.buttons-block {
  margin-top: 0;
}
.signature-wizard .btn {
  padding-right: 20px;
  padding-left: 20px;
}
.signature-wizard .no-gutters {
  padding-left: 0;
  padding-right: 0;
}
.signature-wizard .signature-footer {
  color: #bbb;
}
.signature-wizard .signature-input .form-group {
  position: relative;
}
.signature-wizard .signature-input .input-value {
  margin-right: 60px;
}
.signature-wizard .signature-input .color-picker {
  width: 55px;
  height: 34px;
  border: 1px solid #dcdcdc;
  float: right;
  position: absolute;
  top: 0;
  right: 0;
}
.signature-wizard .signature-input .color-picker .outerRing {
  position: absolute;
  top: -3px;
  left: 4px;
  width: 22px;
  height: 22px;
  border: 0;
  margin: 8px 2px 0 0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.signature-wizard .signature-input .color-picker input {
  z-index: -2;
  position: absolute;
}
.signature-wizard
  .signature-input
  .color-picker
  input:focus
  + .outerRing:before {
  content: " ";
  border: 2px solid #4087c9;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  display: block;
  margin: -4px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.signature-wizard .signature-input .color-picker .fa-angle-down {
  line-height: 34px;
  width: 15px;
  font-weight: 700;
}
.signature-wizard .signature-input .form-group {
  margin-bottom: 7px;
}
.signature-wizard .signature-input label {
  margin-bottom: 1px;
}
.signature-wizard .signature-preview .signature-content {
  background-color: #fff;
  height: 414px;
  padding-top: 20px;
}
.signature-wizard .signature-preview .signature-content iframe {
  border: 0;
  width: 100%;
  height: 100%;
}
.signature-wizard .signature-preview .signature-content .signature-placeholder {
  height: 409px;
  text-align: center;
}
.signature-wizard
  .signature-preview
  .signature-content
  .signature-placeholder
  .image {
  width: 120px;
  height: 120px;
  background-image: url(../images/signaturewizard/icon-signature.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-top: calc(50% - 25px);
}
#addcontacts-sidebar-directive .side-sidebar .sidebarcontent {
  padding-left: 0;
  padding-right: 0;
}
#addcontacts-sidebar-directive .loading-spinner {
  margin-top: 45%;
}
#addcontacts-sidebar-directive .pagination {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 3px 10px 10px;
}
#addcontacts-sidebar-directive .contacts-section .contacts-lists {
  margin: 0;
}
#addcontacts-sidebar-directive
  .contacts-section
  .contacts-lists
  > .contacts-long-list {
  width: 100%;
}
#addcontacts-sidebar-directive
  .contacts-section
  .contacts-lists
  .contacts-nav
  ul {
  margin-bottom: 0;
}
#addcontacts-sidebar-directive
  .contacts-section
  .contacts-lists
  .contacts-nav
  ul
  li
  .col-xs-10
  > div {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#addcontacts-sidebar-directive
  .contacts-section
  .contacts-lists
  .contacts-nav
  ul
  li:hover {
  box-shadow: none;
}
#addcontacts-sidebar-directive
  .contacts-section
  .contacts-lists
  .contacts-nav
  ul
  li
  div {
  padding-top: 0;
  padding-bottom: 0;
}
#addcontacts-sidebar-directive
  .contacts-section
  .contacts-lists
  .contacts-nav
  ul
  li.list-group-item:focus {
  margin-bottom: 0;
  padding: 10px 15px 9px;
}
#addcontacts-sidebar-directive
  .contacts-section
  .contacts-lists
  .contacts-nav
  ul
  li.list-group-item:active,
#addcontacts-sidebar-directive
  .contacts-section
  .contacts-lists
  .contacts-nav
  ul
  li.list-group-item:hover {
  border: 2px solid #595959;
  padding: 9px 14px 8px;
  margin-bottom: 0;
}
#addcontacts-sidebar-directive
  .contacts-section
  .contacts-lists
  .contacts-nav
  ul
  li.title-item {
  background: #595959;
  color: #fff;
  padding: 5px 10px;
}
#addcontacts-sidebar-directive
  .contacts-section
  .contacts-lists
  .contacts-nav
  ul
  li.title-item
  h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}
#addcontacts-sidebar-directive
  .contacts-section
  .contacts-lists
  .contacts-nav
  ul
  li.title-item
  input[type="checkbox"] {
  margin-top: 16px;
}
#addcontacts-sidebar-directive
  .contacts-section
  .contacts-lists
  .contacts-nav
  ul[keyarrownav-directive] {
  padding: 2px;
}
#addcontacts-sidebar-directive
  .contacts-section
  .contacts-lists
  .contacts-nav
  ul[keyarrownav-directive]:focus {
  border: 2px solid #4087c9 !important;
  padding: 0;
}
#addcontacts-sidebar-directive
  .contacts-section
  .contacts-lists
  .contacts-nav
  #noContacts {
  padding-top: 20px;
  text-align: center;
}
#addcontacts-sidebar-directive
  .contacts-section
  .contacts-lists
  .contacts-nav
  .bolded {
  color: #3e3e3e;
}
#addcontacts-sidebar-directive
  .contacts-section
  .contacts-lists
  pagination-directive {
  padding: 10px 16px;
}
#addcontacts-sidebar-directive
  .contacts-section
  .contacts-lists
  .searchbar
  ul.dropdown-menu {
  width: 306px;
}
#addcontacts-sidebar-directive .sidebar-search-box {
  width: 100%;
  padding: 10px 16px;
  color: #595959;
}
#addcontacts-sidebar-directive .sidebar-search-box input {
  border: 1px solid #ccc;
  width: 100%;
  padding: 3px;
  color: #3e3e3e;
  height: 28px;
}
#addcontacts-sidebar-directive .sidebar-search-box span.fa {
  position: absolute;
  top: 17px;
  right: 22px;
}
#addcontacts-sidebar-directive .sidebar-search-box ::-webkit-input-placeholder {
  color: #595959;
}
#addcontacts-sidebar-directive .sidebar-search-box :-moz-placeholder,
#addcontacts-sidebar-directive .sidebar-search-box ::-moz-placeholder {
  color: #595959;
  opacity: 1;
}
#addcontacts-sidebar-directive .sidebar-search-box :-ms-input-placeholder {
  color: #595959;
}
#addcontacts-sidebar-directive .sidebar-buttons {
  position: absolute;
  bottom: 10px;
  width: 100%;
  height: 30px;
  padding: 0 16px;
}
#addcontacts-sidebar-directive .sidebar-buttons .counter {
  padding: 6px 0;
}
.level0,
.navholder-menu .tooltip {
  position: fixed;
}
.level0 {
  width: 56px;
  padding: 0px;
  background: #1d2937;
  color: #fff;
  z-index: 700;
  overflow-y: visible;
}
.navbar-nav {
  margin: 0;
}
.side-nav0 {
  overflow-x: hidden;
  overflow-y: auto;
}
.side-nav0 > li.divider {
  border-top: 1px solid rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.25);
  width: 100%;
}
.side-nav0 > li > a {
  width: 56px;
  height: 56px;
  padding: 16px;
  color: #fff;
  text-align: center;
  line-height: 22px;
}
.side-nav0 > li.active > a,
.side-nav0 > li > a:focus,
.side-nav0 > li > a:hover {
  outline: none;
  color: #283a50;
  background-color: #bbc5d1;
}
.drophoverVars {
  border: 3px dashed #767676;
}
.level1 {
  float: left;
  background: #e4e6e9;
  z-index: 600;
  height: auto !important;
}
.level1:focus {
  outline: 0;
}
.level1 .headerbar {
  height: 50px;
  margin-left: 12px;
  margin-right: 12px;
  margin-top: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.level1 .headerbar h1 {
  line-height: 37px;
  margin: 0;
  margin-left: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 24px;
}
.level1 .headerbar.withButton h1 {
  width: calc(100% - 51px);
  float: left;
  margin-left: 16px;
}
.level1 .headerbar.withButtonCaret h1 {
  width: calc(100% - 71px);
  float: left;
  margin-left: 16px;
}
.level1 .nav-scroll-after-header {
  height: calc(100vh - 112px);
  overflow: hidden;
  overflow-y: auto;
}
.level1 .nav-scroll-after-search {
  height: calc(100vh - 158px);
  overflow: hidden;
  overflow-y: auto;
}
.level1 .nav-scroll {
  overflow: hidden;
  overflow-y: auto;
}
.level1 .panel {
  background: none;
  box-shadow: none;
  margin-bottom: 0;
  border: none;
  border-radius: 0;
}
.level1 .panel .panel-heading {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}
.level1 .panel .panel-heading.drophover {
  border: 3px dashed #767676;
}
.level1 .panel .panel-heading .panel-title {
  font-weight: 700;
  clear: both;
}
.level1 .panel .panel-heading .panel-title a.addbtn,
.level1 .panel .panel-heading .panel-title button.addbtn {
  float: right;
  margin: 0px;
  padding: 3px 0px;
  text-align: right;
}
.level1 .panel .panel-heading .panel-title.withplus {
  width: 80%;
  float: left;
}
.level1 .panel .panel-heading .panel-title a,
.level1 .panel .panel-heading .panel-title button {
  color: inherit;
  font-size: 14px;
  line-height: 20px;
  float: left;
  width: 100%;
}
.level1 .panel .panel-heading .panel-title a div,
.level1 .panel .panel-heading .panel-title button div {
  float: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 20px;
  width: calc(100% - 16px);
}
.level1 .panel .panel-heading .panel-title a.withplus,
.level1 .panel .panel-heading .panel-title button.withplus {
  width: 80%;
  float: left;
}
.level1 .panel .panel-heading .panel-title .fa {
  display: block;
  width: 16px;
  float: left;
}
.level1 .panel .panel-heading .panel-title i:before {
  line-height: 20px;
}
.level1 .panel .panel-heading .panel-title .text {
  font-size: 14px;
  margin: 0;
  float: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 20px;
  width: calc(100% - 16px);
}
.level1 .panel .panel-heading .context {
  float: right;
  text-align: right;
  padding: 5px 13px 5px 0px;
}
.level1 .panel .panel-heading .context span.fa {
  margin: inherit;
  color: #fff;
}
.level1 .panel .panel-heading .panel-title.with-context .text,
.level1 .panel .panel-heading .panel-title.with-context a div {
  width: calc(100% - 32px);
}
.level1 .panel .panel-heading a:focus,
.level1 .panel .panel-heading a:hover {
  cursor: pointer;
  text-decoration: none;
}
.level1 .panel .panel .panel-heading {
  margin: 0 14px 0px;
  padding: 5px 0px 0px;
  border-bottom: 0px;
  min-height: 30px;
}
.level1 .panel .panel .panel-heading .panel-title {
  margin: 0 16px 5px;
  margin-right: 0px;
}
.level1 .panel .panel .panel-heading .panel-title a {
  font-weight: 400;
  color: inherit;
  font-size: 14px;
}
.level1 .panel .panel .panel-heading .panel-title a div {
  width: calc(100% - 32px);
}
.level1 .panel .panel .panel-heading .panel-title.with-context a div {
  width: calc(100% - 48px);
}
.level1 .panel .panel .panel-heading.drophover {
  border: 3px dashed #767676;
}
.level1 .panel .panel-heading-underline {
  border-bottom: 1px solid #767676;
  padding: 5px 0px 4px;
  margin: 0 12px 8px;
}
.level1 .panel .panel-heading-underline .panel-title {
  color: #3e3e3e;
  height: 20px;
}
.level1 .panel .panel-heading-bar {
  margin-bottom: 8px;
  background: #283a50;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  max-width: 100%;
}
.level1 .panel .panel-heading-bar .panel-title {
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
  padding: 5px 13px;
  min-height: 30px;
  font-size: 14px;
}
.level1 .panel .panel-body {
  border: none;
  padding: 0 0 8px;
}
.level1 ul.side-nav1 {
  width: auto;
  border: none;
  border-radius: 0;
  float: none;
}
.level1 ul.side-nav1 li {
  width: 100%;
}
.level1 ul.side-nav1 li > div a {
  color: inherit;
  cursor: pointer;
}
.level1 ul.side-nav1 li > div .context,
.level1 ul.side-nav1 li > div .controls,
.level1 ul.side-nav1 li > div .spacer,
.level1 ul.side-nav1 li > div .text {
  height: 18px;
  line-height: normal;
}
.level1 ul.side-nav1 li > div .spacer {
  float: left;
  width: 0px;
}
.level1 ul.side-nav1 li > div .controls {
  float: left;
  width: 16px;
}
.level1 ul.side-nav1 li > div .text {
  float: left;
}
.level1 ul.side-nav1 li > div .text .menutext {
  white-space: nowrap;
  height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.level1 ul.side-nav1 li > div .text .menutext a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.level1 ul.side-nav1 li > div .text-spacer-1 {
  width: calc(100% - 16px);
}
.level1 ul.side-nav1 li > div .text-spacer-2 {
  width: calc(100% - 32px);
}
.level1 ul.side-nav1 li > div .text-spacer-3 {
  width: calc(100% - 48px);
}
.level1 ul.side-nav1 li > div .text-spacer-4 {
  width: calc(100% - 64px);
}
.level1 ul.side-nav1 li > div .text-spacer-5 {
  width: calc(100% - 80px);
}
.level1 ul.side-nav1 li > div .text-spacer-6 {
  width: calc(100% - 96px);
}
.level1 ul.side-nav1 li > div .text-spacer-7 {
  width: calc(100% - 112px);
}
.level1 ul.side-nav1 li > div .text-spacer-8 {
  width: calc(100% - 128px);
}
.level1 ul.side-nav1 li > div .text-spacer-9 {
  width: calc(100% - 144px);
}
.level1 ul.side-nav1 li > div .text-spacer-10 {
  width: calc(100% - 160px);
}
.level1 ul.side-nav1 li > div .text-spacer-11 {
  width: calc(100% - 176px);
}
.level1 ul.side-nav1 li > div .text-spacer-12 {
  width: calc(100% - 192px);
}
.level1 ul.side-nav1 li > div .text-spacer-13 {
  width: calc(100% - 208px);
}
.level1 ul.side-nav1 li > div .context {
  position: absolute;
  min-width: 16px;
}
.level1 ul.side-nav1 li > div .context .dropdown,
.level1 ul.side-nav1 li > div .context > .fa,
.level1 ul.side-nav1 li > div .context > input {
  float: left;
  display: block;
  width: 16px;
  height: 18px;
  text-align: right;
}
.level1 ul.side-nav1 li > div .context input[type="checkbox"],
.level1 ul.side-nav1 li > div .context input[type="radio"] {
  margin-top: 2px;
  margin-left: 3px;
  margin-right: -1px;
  width: 14px;
  height: 16px;
}
.level1 ul.side-nav1 li > div .context button {
  text-align: right;
}
.level1 ul.side-nav1 li > div .context > .fa {
  line-height: 18px;
}
.level1 .nav1bulleted {
  height: 29px;
  line-height: 11px;
  margin-bottom: 3px;
  border: 3px solid transparent;
  padding: 3px 11px;
}
.level1 .nav1bulleted .context {
  right: 14px;
}
.level1 .nav1bulleted .shifted-tooltip .tooltip {
  padding-left: 60px;
}
.level1 button.nav1listing {
  display: block;
  text-align: left;
  width: calc(100% - 28px);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.level1 .nav1listing {
  height: 29px;
  line-height: normal;
  margin: 0px 12px 3px;
  border: 3px solid transparent;
  padding: 3px 13px;
  border-radius: 2px;
  background-color: transparent;
}
.level1 .nav1listing.disabled {
  color: #767676;
  cursor: wait;
}
.level1 .nav1listing.disabled .menutext {
  cursor: wait;
}
.level1 .nav1listing .controls button.collapsebtn {
  background: transparent;
  border: none;
  color: #000;
  width: 16px;
  padding: 0px;
  text-align: left;
  outline: none;
}
.level1 .nav1listing .controls button.collapsebtn > .fa-caret-down {
  display: block;
  margin-left: -10px;
  padding-left: 10px;
}
.level1 .nav1listing .controls button.collapsebtn.collapsed > .fa-caret-down,
.level1 .nav1listing .controls button.collapsebtn > .fa-caret-right {
  display: none;
}
.level1 .nav1listing .controls button.collapsebtn.collapsed > .fa-caret-right {
  display: block;
  margin-left: -10px;
  padding-left: 10px;
}
.level1 .nav1listing .controls-spacer-1 {
  margin-left: 0px;
}
.level1 .nav1listing .controls-spacer-2 {
  margin-left: 16px;
}
.level1 .nav1listing .controls-spacer-3 {
  margin-left: 32px;
}
.level1 .nav1listing .controls-spacer-4 {
  margin-left: 48px;
}
.level1 .nav1listing .controls-spacer-5 {
  margin-left: 64px;
}
.level1 .nav1listing .controls-spacer-6 {
  margin-left: 80px;
}
.level1 .nav1listing .controls-spacer-7 {
  margin-left: 96px;
}
.level1 .nav1listing .controls-spacer-8 {
  margin-left: 112px;
}
.level1 .nav1listing .controls-spacer-9 {
  margin-left: 128px;
}
.level1 .nav1listing .controls-spacer-10 {
  margin-left: 144px;
}
.level1 .nav1listing .controls-spacer-11 {
  margin-left: 160px;
}
.level1 .nav1listing .controls-spacer-12 {
  margin-left: 176px;
}
.level1 .nav1listing .context {
  right: 30px;
}
.level1 .nav1listing .context button.menu {
  display: none;
  background: transparent;
  border: none;
  color: #3e3e3e;
  width: 16px;
  padding: 0px;
  text-align: right;
}
.level1 .nav1listing .dropdown-menu.dropdown-menu-right {
  top: 29px;
  right: 14px;
  left: 14px;
  margin-bottom: 10px;
}
.level1 .nav1listing .dropdown-menu.dropdown-menu-right li {
  width: 100%;
}
.level1 .nav1listing .dropdown-menu.dropdown-menu-right li > a {
  padding-left: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.level1 .nav1listing .dropdown-menu.dropdown-menu-right li > a:active,
.level1 .nav1listing .dropdown-menu.dropdown-menu-right li > a:focus,
.level1 .nav1listing .dropdown-menu.dropdown-menu-right li > a:hover {
  color: #fff;
}
.level1 .nav1listing.personalFolder.open,
.level1 .nav1listing.remoteFolderContainer.open,
.level1 .nav1listing:focus,
.level1 .nav1listing:hover {
  outline: none;
  border: 3px solid transparent;
  border-radius: 2px;
  background-color: #838383;
  color: #fff;
  cursor: pointer;
}
.level1 .nav1listing.personalFolder.open button.menu,
.level1 .nav1listing.remoteFolderContainer.open button.menu,
.level1 .nav1listing:focus button.menu,
.level1 .nav1listing:hover button.menu {
  display: block;
}
.level1 .nav1listing.personalFolder.open button.collapsebtn,
.level1 .nav1listing.personalFolder.open button.menu,
.level1 .nav1listing.remoteFolderContainer.open button.collapsebtn,
.level1 .nav1listing.remoteFolderContainer.open button.menu,
.level1 .nav1listing:focus button.collapsebtn,
.level1 .nav1listing:focus button.menu,
.level1 .nav1listing:hover button.collapsebtn,
.level1 .nav1listing:hover button.menu {
  color: #fff;
}
.level1 .nav1listing.personalFolder.open .hideOnHover,
.level1 .nav1listing.remoteFolderContainer.open .hideOnHover,
.level1 .nav1listing:focus .hideOnHover,
.level1 .nav1listing:hover .hideOnHover {
  display: none;
}
.level1 .nav1listing.drophover {
  border: 3px dashed #838383;
}
.level1 li.active > .nav1listing,
.level1 li.active > .nav1listing:focus,
.level1 li.active > .nav1listing:hover {
  outline: none;
  border: 3px solid transparent;
  color: #fff;
  background-color: #283a50;
}
.level1 li.active > .nav1listing .context,
.level1 li.active > .nav1listing:focus .context,
.level1 li.active > .nav1listing:hover .context {
  background-color: #283a50;
}
.level1 li.active > .nav1listing:focus button.collapsebtn,
.level1 li.active > .nav1listing:focus button.menu,
.level1 li.active > .nav1listing:hover button.collapsebtn,
.level1 li.active > .nav1listing:hover button.menu,
.level1 li.active > .nav1listing button.collapsebtn,
.level1 li.active > .nav1listing button.menu {
  color: #fff;
}
.level1 li.folderLists:focus,
.level1 li.remoteFolder:focus {
  outline: none;
}
.level1 li.folderLists:focus:not(.active) > div.nav1listing,
.level1 li.remoteFolder:focus:not(.active) > div.nav1listing {
  outline: none;
  border: 3px solid transparent;
  border-radius: 2px;
  background-color: #838383;
  color: #fff;
  cursor: pointer;
}
.level1 li.folderLists:focus > div.nav1listing button.menu,
.level1 li.remoteFolder:focus > div.nav1listing button.menu {
  display: block;
}
.level1 li.folderLists:focus > div.nav1listing button.collapsebtn,
.level1 li.folderLists:focus > div.nav1listing button.menu,
.level1 li.remoteFolder:focus > div.nav1listing button.collapsebtn,
.level1 li.remoteFolder:focus > div.nav1listing button.menu {
  color: #fff;
}
.level1 li.folderLists:focus > div.nav1listing .hideOnHover,
.level1 li.remoteFolder:focus > div.nav1listing .hideOnHover {
  display: none;
}
.level1 li.folderLists.active:focus > div.nav1listing,
.level1 li.remoteFolder.active:focus > div.nav1listing {
  color: #fff;
}
.level1 .nav1input {
  width: auto;
  height: 29px;
  margin: 3px 14px;
}
.level1 .nav1input .input-group {
  width: 100%;
}
.level1 .nav1input input {
  vertical-align: middle;
  line-height: normal;
  height: 29px !important;
}
.level1 .nav1input ::-webkit-input-placeholder {
  color: #595959;
}
.level1 .nav1input :-moz-placeholder,
.level1 .nav1input ::-moz-placeholder {
  color: #595959;
  opacity: 1;
}
.level1 .nav1input :-ms-input-placeholder {
  color: #595959;
}
.level1 .nav1input .error-message-box {
  z-index: 10;
  position: relative;
  top: 5px;
}
.level1 .nav1input .error-message-box .tooltip-arrow {
  top: -5px;
  right: 10px;
  margin-bottom: 5px;
  border-width: 0px 5px 5px;
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-bottom-color: #555;
  border-style: solid;
}
.level1 .nav1input .error-message-box .tooltip-inner {
  padding: 3px 8px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  background-color: #555;
  border-radius: 4px;
  max-width: inherit;
}
.level1 .side-nav1 .nav1input {
  margin-top: 0px;
}
.level1 .panel .panel .panel-heading .nav1input {
  margin-left: 0px;
  margin-right: 0px;
  display: inline;
}
.level1 .panel .createListItem,
.level1 .panel .renameListItem {
  margin-bottom: 3px;
}
.level1 .panel .inputLevel1 input {
  padding-left: 15px;
}
.level1 .panel .inputLevel2 input {
  padding-left: 31px;
}
.level1 .panel .inputLevel3 input {
  padding-left: 47px;
}
.level1 .panel .inputLevel4 input {
  padding-left: 63px;
}
.level1 .panel .inputLevel5 input {
  padding-left: 79px;
}
.level1 .panel .inputLevel6 input {
  padding-left: 95px;
}
.level1 .panel .inputLevel7 input {
  padding-left: 111px;
}
.level1 .panel .inputLevel8 input {
  padding-left: 127px;
}
.level1 .panel .inputLevel9 input {
  padding-left: 143px;
}
.level1 .panel .inputLevel10 input {
  padding-left: 159px;
}
.level1 .panel .inputLevel11 input {
  padding-left: 175px;
}
.level1 .panel .inputLevel12 input {
  padding-left: 191px;
}
.level1 .panel .inputLevel13 input {
  padding-left: 207px;
}
.level1 .searchbar,
.side-sidebar .searchbar {
  margin: 0px 12px 12px;
  color: #595959;
}
.level1 .searchbar .form-control.search-text,
.side-sidebar .searchbar .form-control.search-text {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.level1 .searchbar input,
.side-sidebar .searchbar input {
  border-right: 0px;
  padding-left: 15px;
  padding-right: 17px;
}
.level1 .searchbar input::-ms-clear,
.side-sidebar .searchbar input::-ms-clear {
  display: none;
}
.level1 .searchbar input:focus,
.side-sidebar .searchbar input:focus {
  outline: 2px solid #4087c9;
  -moz-outline-radius: 3px;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.level1 .searchbar ::-webkit-input-placeholder,
.side-sidebar .searchbar ::-webkit-input-placeholder {
  color: #595959;
}
.level1 .searchbar :-moz-placeholder,
.level1 .searchbar ::-moz-placeholder,
.side-sidebar .searchbar :-moz-placeholder,
.side-sidebar .searchbar ::-moz-placeholder {
  color: #595959;
  opacity: 1;
}
.level1 .searchbar :-ms-input-placeholder,
.side-sidebar .searchbar :-ms-input-placeholder {
  color: #595959;
}
.level1 .searchbar .searchclear-btn,
.side-sidebar .searchbar .searchclear-btn {
  position: absolute;
  right: 40px;
  margin: 0px;
  width: 15px;
  height: 34px;
  z-index: 2;
  border: 0px;
  background: transparent;
  font-size: 14px;
  padding: 0px;
  vertical-align: middle;
  color: #595959;
  box-shadow: none;
}
.level1 .searchbar .searchtype-btn,
.side-sidebar .searchbar .searchtype-btn {
  height: 34px;
}
.level1 .searchbar .searchsubtitle,
.side-sidebar .searchbar .searchsubtitle {
  font-weight: 700;
  padding-left: 15px;
  padding-bottom: 4px;
}
.level1 .searchbar .input-group-btn > button,
.level1 .searchbar .input-group-btn > button:focus,
.level1 .searchbar .input-group-btn > button:hover,
.side-sidebar .searchbar .input-group-btn > button,
.side-sidebar .searchbar .input-group-btn > button:focus,
.side-sidebar .searchbar .input-group-btn > button:hover {
  border-top: 1px solid #949494;
  border-bottom: 1px solid #949494;
  border-right: 1px solid #949494;
  border-left: 0px;
  margin-left: 0px;
  background: #fff;
  color: #595959;
  padding: 6px 14px 6px 5px;
  width: 40px;
}
.level1 .searchbar .input-group-btn .dropdown-menu,
.side-sidebar .searchbar .input-group-btn .dropdown-menu {
  min-width: 188px;
}
.level1 .searchbar .input-group-btn .dropdown-menu li .iconContainer,
.side-sidebar .searchbar .input-group-btn .dropdown-menu li .iconContainer {
  margin-left: 0px;
}
.level1 .searchbar .input-group-btn .dropdown-menu li.dropdownActions,
.side-sidebar .searchbar .input-group-btn .dropdown-menu li.dropdownActions {
  margin-bottom: 8px;
  margin-top: 12px;
}
.level1 .searchbar .input-group-btn .dropdown-menu li.dropdownActions:hover,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu
  li.dropdownActions:hover {
  background: none;
}
.level1 .searchbar .input-group-btn .dropdown-menu.dropdown-menu-right,
.side-sidebar .searchbar .input-group-btn .dropdown-menu.dropdown-menu-right {
  width: initial;
}
.level1 .searchbar .input-group-btn .dropdown-menu.dropdown-menu-right li,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  li {
  display: block;
}
.level1 .searchbar .input-group-btn .dropdown-menu.dropdown-menu-right li a,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  li
  a {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  display: block;
  padding-right: 30px;
  box-sizing: border-box;
}
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu,
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu {
  padding: 0;
  margin-top: 0;
}
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li,
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li {
  display: block;
  clear: both;
}
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  .timeIntervalFilter,
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  a,
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  .timeIntervalFilter,
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  a,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  .timeIntervalFilter,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  a,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  .timeIntervalFilter,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  a {
  white-space: nowrap;
  width: 100%;
  display: block;
  box-sizing: border-box;
  color: #3e3e3e;
  text-decoration: none;
}
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  a,
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  a,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  a,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  a {
  overflow: hidden;
  padding-right: 30px;
}
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  a:active,
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  a:focus,
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  a:hover,
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  a:active,
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  a:focus,
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  a:hover,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  a:active,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  a:focus,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  a:hover,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  a:active,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  a:focus,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  a:hover {
  color: #fff;
}
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  .timeIntervalFilter,
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  .timeIntervalFilter,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  .timeIntervalFilter,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  .timeIntervalFilter {
  float: left;
  position: relative;
  padding: 0 10px;
}
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  .timeIntervalFilter
  .builtInIcon,
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  .timeIntervalFilter
  .builtInIcon,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  .timeIntervalFilter
  .builtInIcon,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  .timeIntervalFilter
  .builtInIcon {
  position: absolute;
  bottom: 8px;
  font-size: 18px;
  color: #0e57ab;
  right: 23px;
  z-index: 2;
}
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  .timeIntervalFilter
  label,
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  .timeIntervalFilter
  label,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  .timeIntervalFilter
  label,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  .timeIntervalFilter
  label {
  font-weight: 400;
  margin-bottom: 0;
  text-transform: capitalize;
}
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  .timeIntervalFilter
  input.form-control,
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  .timeIntervalFilter
  input.form-control,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  .timeIntervalFilter
  input.form-control,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  .timeIntervalFilter
  input.form-control {
  border-right: 1px solid #838383;
  border-radius: 2px;
}
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  .timeIntervalFilter
  .picker-switch.accordion-toggle
  a,
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  .timeIntervalFilter
  .picker-switch.accordion-toggle
  a,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  .timeIntervalFilter
  .picker-switch.accordion-toggle
  a,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  .timeIntervalFilter
  .picker-switch.accordion-toggle
  a {
  color: #0e57ab;
  padding: 0;
}
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  .timeIntervalFilter
  .picker-switch.accordion-toggle
  a
  span,
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  .timeIntervalFilter
  .picker-switch.accordion-toggle
  a
  span,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  .timeIntervalFilter
  .picker-switch.accordion-toggle
  a
  span,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  .timeIntervalFilter
  .picker-switch.accordion-toggle
  a
  span {
  padding: 0;
  font-size: 16px;
  line-height: 2em;
  height: 2em;
}
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  .timeIntervalFilter.endDate,
.level1
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  .timeIntervalFilter.endDate,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-dynamic
  .dropdown-sub-menu
  li
  .timeIntervalFilter.endDate,
.side-sidebar
  .searchbar
  .input-group-btn
  .dropdown-menu.dropdown-menu-right
  .dropdown-sub-menu
  li
  .timeIntervalFilter.endDate {
  padding-top: 10px;
}
.level1 .searchbar .searchtypeContainer .dropdown-menu li > a:active,
.level1 .searchbar .searchtypeContainer .dropdown-menu li > a:focus,
.level1 .searchbar .searchtypeContainer .dropdown-menu li > a:hover,
.side-sidebar .searchbar .searchtypeContainer .dropdown-menu li > a:active,
.side-sidebar .searchbar .searchtypeContainer .dropdown-menu li > a:focus,
.side-sidebar .searchbar .searchtypeContainer .dropdown-menu li > a:hover {
  background: #0e57ab;
}
.level1 > .searchbar input {
  border-top: 1px solid #838383;
  border-bottom: 1px solid #838383;
  border-left: 1px solid #838383;
}
.level1 > .searchbar .input-group-btn > button,
.level1 > .searchbar .input-group-btn > button:focus,
.level1 > .searchbar .input-group-btn > button:hover {
  border-top: 1px solid #838383;
  border-bottom: 1px solid #838383;
  border-right: 1px solid #838383;
}
.side-nav1-action-links,
.side-nav1-action-text {
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: left;
  padding: 5px 13px 5px 30px;
  font-size: 13px;
  line-height: 13px;
}
.side-nav1-action-links {
  color: #0e57ab;
  font-weight: 700;
}
.side-nav1-action-links > a {
  color: #0e57ab;
}
.autofillcontainer .autofill-list-container {
  position: absolute;
  z-index: 100;
  background: #fff;
  box-shadow: 0 0 3px 1px #ccc;
}
.autofillcontainer .autofill-list-container ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  overflow-y: auto;
  max-height: 300px;
}
.autofillcontainer .autofill-list-container li {
  padding: 5px 15px;
  border-bottom: 1px solid #ddd;
  min-width: 265px;
  max-width: 400px;
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.autofillcontainer .selected-contact {
  padding: 1px 5px;
  background-color: #bbc5d1;
  border: 1px solid #bbc5d1;
  border-radius: 2px;
  display: inline-block;
  color: #3e3e3e;
  margin: 2px 1px;
  cursor: default;
}
.autofillcontainer .selected-contact .remove {
  margin: 0 0 0 10px;
  display: inline-block;
  cursor: pointer;
}
.autofillcontainer .email-input-cnt {
  display: block;
  float: left;
}
.autofillcontainer .email-input-cnt input.tagEdit {
  font-size: 13px;
  padding: 0 5px;
}
.autofillcontainer .email-input-cnt span.tagEdit {
  font-size: 13px;
  display: inline-block;
}
.autofillcontainer .email-input-cnt .dummy {
  visibility: hidden;
  float: left;
  height: 0px;
}
.autofillcontainer.text-input {
  cursor: text;
  vertical-align: top;
  overflow: hidden;
  display: inline-block;
  max-height: 30px;
  height: auto;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.autofillcontainer.text-input.full-height {
  max-height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.autofillcontainer.text-input.full-height.scrollBar {
  overflow-y: scroll;
}
.autofillcontainer.text-input.full-height.scrollBar .moreToggle {
  padding-right: 40px;
}
.autofillcontainer.text-input label {
  display: inline;
  float: left;
  width: auto;
  margin-top: 5px;
}
.autofillcontainer.text-input .fieldContent {
  display: inline;
}
.autofillcontainer.text-input .fieldContent.more {
  display: block;
  padding-right: 80px;
}
.autofillcontainer.text-input .moreToggle {
  position: absolute;
  right: 0;
  top: 5px;
  color: #54acd2;
  cursor: pointer;
  padding-right: 25px;
  visibility: hidden;
}
.autofillcontainer.text-input .moreToggle.visible {
  visibility: visible;
}
.autofill-suggestion-contacts {
  padding: 10px;
  position: absolute;
  top: 0;
  left: 50px;
  background: #fff;
  z-index: 1111;
}
.suggestions-section {
  display: block;
  width: 100%;
  max-width: 100%;
  background: #fff;
}
.groupTag {
  color: #757575;
}
.active .groupTag {
  color: #fff;
}
.found-suggestions {
  display: block;
  width: 100%;
  max-width: 400px;
}
.found-suggestions > ul {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.found-suggestions > ul > li {
  display: inline-block;
  vertical-align: middle;
  max-width: 49%;
  font-size: 12px;
  color: #595959;
  padding: 5px 0;
  cursor: pointer;
}
.found-suggestions > ul > li img {
  width: 48px;
  height: 48px;
}
.add-contact-icon {
  position: absolute;
  right: 0px;
  top: 5px;
}
.tags-fields {
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  padding: 0 5px;
  position: relative;
}
.tags-fields .tags .selected-tags {
  color: #fff;
  padding: 3px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-right: 5px;
  background-color: #0e57ab;
}
.tags-fields .tags .selected-tags.violet {
  background-color: #9365b8;
}
.tags-fields .tags .selected-tags.green {
  background-color: #41a85f;
}
.tags-fields .tags .selected-tags.red {
  background-color: #e14938;
}
.tags-fields .tags .selected-tags.dark-blue {
  background-color: #2969b0;
}
.tags-fields .tags .selected-tags.yellow {
  background-color: #ffe400;
}
.tags-fields .tags .selected-tags.light-blue {
  background-color: #0e57ab;
}
.tags-fields .tags .selected-tags.orange {
  background-color: #f4a932;
}
.tags-fields .tags .selected-tags a.remove {
  color: #fff;
}
.tags-fields .tags .remove {
  cursor: pointer;
  margin-left: 6px;
  position: relative;
  top: 0;
}
.tags-fields .tags-input {
  display: inline-block;
  width: 200px;
  border: none;
  background-color: transparent;
}
.tags-fields .tagname {
  display: inline-block;
  max-width: 180px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 16px;
  vertical-align: text-top;
}
.tags-fields .autofill-input {
  display: inline-block;
}
.tags-fields .autofill-list-container {
  position: absolute;
  z-index: 100;
  background: #fff;
  border: 1px solid #ddd;
}
.tags-fields .autofill-list-container ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.tags-fields .autofill-list-container li {
  padding: 5px 10px;
  border-bottom: 1px solid #ddd;
}
.tags-fields .autofill-list-container li.active {
  background-color: #0e57ab;
  cursor: pointer;
  color: #fff;
}
.default-view .tags-fields {
  border: none;
  padding: 0;
  position: relative;
  cursor: text;
}
.default-view .tags-fields .tags .selected-tags {
  padding: 1px 5px;
  border-radius: 2px;
  display: inline-block;
  color: #3e3e3e;
  margin: 2px 1px;
  cursor: default;
  background-color: #bbc5d1;
  border: 1px solid #bbc5d1;
}
.default-view .tags-fields .tags .selected-tags.violet {
  background-color: #9365b8;
  border: 1px solid #9365b8;
}
.default-view .tags-fields .tags .selected-tags.violet .remove {
  color: #fff;
}
.default-view .tags-fields .tags .selected-tags.green {
  background-color: #41a85f;
  border: 1px solid #41a85f;
}
.default-view .tags-fields .tags .selected-tags.green .remove {
  color: #fff;
}
.default-view .tags-fields .tags .selected-tags.red {
  background-color: #e14938;
  border: 1px solid #e14938;
}
.default-view .tags-fields .tags .selected-tags.red .remove {
  color: #fff;
}
.default-view .tags-fields .tags .selected-tags.dark-blue {
  background-color: #2969b0;
  border: 1px solid #2969b0;
}
.default-view .tags-fields .tags .selected-tags.dark-blue .remove {
  color: #fff;
}
.default-view .tags-fields .tags .selected-tags.yellow {
  background-color: #ffe400;
  border: 1px solid #ffe400;
}
.default-view .tags-fields .tags .selected-tags.light-blue {
  background-color: #0e57ab;
  border: 1px solid #0e57ab;
}
.default-view .tags-fields .tags .selected-tags.orange {
  background-color: #f4a932;
  border: 1px solid #f4a932;
}
.default-view .tags-fields .tags .selected-tags.orange .remove {
  color: #fff;
}
.default-view .tags-fields .tags .selected-tags .remove {
  margin: 0 0 0 10px;
  display: inline-block;
  cursor: pointer;
}
.default-view .tags-fields .tags-input {
  display: inline-block;
  width: 200px;
  border: none;
  background-color: transparent;
}
.default-view .tags-fields .tagname {
  display: inline-block;
  max-width: 180px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 16px;
  vertical-align: text-top;
}
.default-view .tags-fields .autofill-input {
  display: inline-block;
}
.default-view .tags-fields .autofill-list-container {
  position: absolute;
  z-index: 100;
  background: #fff;
  border: 1px solid #ddd;
}
.default-view .tags-fields .autofill-list-container .name-block,
.default-view .tags-fields .autofill-list-container .value-block {
  width: 49%;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.default-view .tags-fields .autofill-list-container ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.default-view .tags-fields .autofill-list-container li {
  padding: 5px 10px;
  border-bottom: 1px solid #ddd;
}
.default-view .tags-fields .autofill-list-container li.active {
  background-color: #0e57ab;
  cursor: pointer;
  color: #fff;
}
.colorpicker-visible,
.colorpicker-visible .dropdown-menu {
  display: block !important;
}
colorpicker-saturation {
  display: block;
  width: 100px;
  height: 100px;
  background-image: url(../images/saturation.png);
  cursor: crosshair;
  float: left;
  border: 1px solid #dcdcdc;
}
colorpicker-saturation i {
  display: block;
  height: 7px;
  width: 7px;
  border: 1px solid #000;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  margin: -4px 0 0 -4px;
}
colorpicker-saturation i:after {
  content: "";
  display: block;
  height: 7px;
  width: 7px;
  border: 1px solid #fff;
  border-radius: 5px;
}
colorpicker-alpha,
colorpicker-hue {
  width: 15px;
  height: 100px;
  float: left;
  cursor: row-resize;
  margin-left: 4px;
  margin-bottom: 4px;
}
colorpicker-alpha i,
colorpicker-hue i {
  display: block;
  height: 4px;
  background: #fff;
  border: 1px solid #767676;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: -1px;
}
colorpicker-hue {
  background-image: url(../images/hue.png);
}
colorpicker-alpha {
  display: none;
}
.colorpicker-color,
colorpicker-alpha {
  background-image: url(../images/alpha.png);
}
.colorpicker {
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
}
.colorpicker colorpicker-alpha,
.colorpicker colorpicker-hue,
.colorpicker colorpicker-saturation {
  position: relative;
}
.colorpicker input {
  width: 100px;
  font-size: 11px;
  color: #3e3e3e;
  background-color: #fff;
}
.colorpicker.alpha {
  min-width: 140px;
}
.colorpicker.alpha colorpicker-alpha {
  display: block;
}
.colorpicker.dropdown {
  position: fixed;
  border: 1px solid #dcdcdc;
  box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.75);
}
.colorpicker.colorpicker-fixed-position {
  position: fixed;
}
.colorpicker .dropdown-menu:after,
.colorpicker .dropdown-menu:before {
  display: inline-block;
  position: absolute;
}
.colorpicker .dropdown-menu:after {
  clear: both;
  border: 6px solid transparent;
  top: -5px;
  left: 7px;
}
.colorpicker .dropdown-menu:before {
  border: 7px solid transparent;
  top: -6px;
  left: 6px;
}
.colorpicker .dropdown-menu {
  position: static;
  top: 0;
  left: 0;
  min-width: 229px;
  padding: 4px;
  margin-top: 0;
}
.colorpicker-position-top .dropdown-menu:after {
  border-top: 6px solid #fff;
  border-bottom: 0;
  top: auto;
  bottom: -5px;
}
.colorpicker-position-top .dropdown-menu:before {
  border-top: 7px solid rgba(0, 0, 0, 0.2);
  border-bottom: 0;
  top: auto;
  bottom: -6px;
}
.colorpicker-position-right .dropdown-menu:after {
  border-right: 6px solid #fff;
  border-left: 0;
  top: 11px;
  left: -5px;
}
.colorpicker-position-right .dropdown-menu:before {
  border-right: 7px solid rgba(0, 0, 0, 0.2);
  border-left: 0;
  top: 10px;
  left: -6px;
}
.colorpicker-position-bottom .dropdown-menu:after {
  border-bottom: 6px solid #fff;
  border-top: 0;
}
.colorpicker-position-bottom .dropdown-menu:before {
  border-bottom: 7px solid rgba(0, 0, 0, 0.2);
  border-top: 0;
}
.colorpicker-position-left .dropdown-menu:after {
  border-left: 6px solid #fff;
  border-right: 0;
  top: 11px;
  left: auto;
  right: -5px;
}
.colorpicker-position-left .dropdown-menu:before {
  border-left: 7px solid rgba(0, 0, 0, 0.2);
  border-right: 0;
  top: 10px;
  left: auto;
  right: -6px;
}
colorpicker-preview {
  display: block;
  top: 0px;
  height: 30px;
  margin: 5px 0 3px;
  clear: both;
  background-position: 0 100%;
}
colorpicker-preview,
input[name="colorpicker-input"] {
  left: 136px;
  position: absolute;
  width: 80px;
  border: 1px solid #595959;
}
input[name="colorpicker-input"] {
  top: 42px;
  padding: 1px 10px;
  font-size: 13px;
}
button.close-colorpicker {
  opacity: 1;
  position: absolute;
  bottom: 9px;
  left: 136px;
  width: 80px;
  overflow: hidden;
  font-weight: 400;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 3px;
  height: 30px;
  border-color: #1e75d9;
  color: #fff;
  background: #4a9bea;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #4a9bea),
    color-stop(100%, #1e75d9)
  );
  background: -webkit-linear-gradient(top, #4a9bea, #1e75d9);
  background: linear-gradient(180deg, #4a9bea 0%, #1e75d9);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4A9BEA',endColorstr='#1E75D9',GradientType=0);
}
button.close-colorpicker:focus,
button.close-colorpicker:hover {
  opacity: 1;
  border-color: #1e75d9;
  color: #fff;
  background: #3c86cf;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #3c86cf),
    color-stop(100%, #216ec3)
  );
  background: -webkit-linear-gradient(top, #3c86cf, #216ec3);
  background: linear-gradient(180deg, #3c86cf 0%, #216ec3);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3C86CF',endColorstr='#216EC3',GradientType=0);
}
#fontColor label,
.colors label {
  margin-right: 5px;
  background: transparent;
}
#fontColor input[type="radio"],
.colors input[type="radio"] {
  position: absolute;
  z-index: -2;
  margin-top: 12px;
  margin-left: 4px;
}
#fontColor input[type="radio"]:focus,
.colors input[type="radio"]:focus {
  border: none;
  outline: none;
}
#fontColor input[type="radio"] + label .circleColor,
.colors input[type="radio"] + label .circleColor {
  display: inline-block;
  width: 19px;
  height: 19px;
  vertical-align: middle;
  margin: 8px 2px 0 0;
  cursor: pointer;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  float: left;
}
#fontColor input[type="radio"] + label .circleColor.red,
.colors input[type="radio"] + label .circleColor.red {
  background-color: #ad1b00;
}
#fontColor input[type="radio"] + label .circleColor.orange,
.colors input[type="radio"] + label .circleColor.orange {
  background-color: #f4a932;
}
#fontColor input[type="radio"] + label .circleColor.yellow,
.colors input[type="radio"] + label .circleColor.yellow {
  background-color: #ffe400;
}
#fontColor input[type="radio"] + label .circleColor.green,
.colors input[type="radio"] + label .circleColor.green {
  background-color: #41a85f;
}
#fontColor input[type="radio"] + label .circleColor.light-blue,
.colors input[type="radio"] + label .circleColor.light-blue {
  background-color: #54acd2;
}
#fontColor input[type="radio"] + label .circleColor.blue,
.colors input[type="radio"] + label .circleColor.blue {
  background-color: #0e57ab;
}
#fontColor input[type="radio"] + label .circleColor.violet,
.colors input[type="radio"] + label .circleColor.violet {
  background-color: #9365b8;
}
#fontColor input[type="radio"] + label .circleColor.grey,
.colors input[type="radio"] + label .circleColor.grey {
  background-color: #767676;
}
#fontColor input[type="radio"]:checked + label,
.colors input[type="radio"]:checked + label {
  position: relative;
  height: 27px;
  width: 21px;
}
#fontColor input[type="radio"]:checked + label .outerRing,
.colors input[type="radio"]:checked + label .outerRing {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 27px;
  height: 27px;
  border: 2px solid #3e3e3e;
  margin: 8px 2px 0 0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
#fontColor input[type="radio"]:checked + label .outerRing .circleColor,
.colors input[type="radio"]:checked + label .outerRing .circleColor {
  margin: 2px;
}
#fontColor input[type="radio"]:checked + label .outerRing .circleColor:before,
.colors input[type="radio"]:checked + label .outerRing .circleColor:before {
  font-size: 14px;
  text-indent: 3px;
  color: #fff;
  font-family: FontAwesome;
  content: "\f00c";
  display: inline-block;
}
#fontColor input[type="radio"]:focus + label .outerRing,
.colors input[type="radio"]:focus + label .outerRing {
  border-color: #4087c9;
  border-color: -webkit-focus-ring-color;
}
#fontColor #colorPicker,
.colors #colorPicker {
  width: 94px;
  height: 34px;
  border: 1px solid #949494;
  float: right;
  position: relative;
  border-radius: 2px;
}
#fontColor #colorPicker input[type="radio"]:checked + label .outerRing,
.colors #colorPicker input[type="radio"]:checked + label .outerRing {
  margin-left: 10px;
  margin-top: 7px;
  padding: 2px;
}
#fontColor #colorPicker input[type="radio"]:checked + label .circleColor,
.colors #colorPicker input[type="radio"]:checked + label .circleColor {
  margin: 0px;
}
#fontColor #colorPicker input[type="radio"]:checked + label .circleColor:before,
.colors #colorPicker input[type="radio"]:checked + label .circleColor:before {
  position: relative;
  top: -1px;
  left: -1px;
}
#fontColor #colorPicker .circleColor,
.colors #colorPicker .circleColor {
  display: inline-block;
  width: 19px;
  height: 19px;
  margin: 7px 0px 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #fff;
  border: 1px solid #595959;
}
#fontColor #colorPicker span.fa-angle-down,
.colors #colorPicker span.fa-angle-down {
  font-size: 20px;
  position: absolute;
  right: 10px;
  top: 5px;
  pointer-events: none;
}
.datepickerinput-wrapper {
  position: relative;
  background-color: #fff;
}
.datepickerinput-wrapper[disabled] {
  color: #595959;
  opacity: 0.6;
}
.datepickerinput-wrapper input[type="text"] {
  position: relative;
  background-color: transparent;
  padding-right: 35px;
  z-index: 1;
}
.datepickerinput-wrapper span:after {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: 400;
  text-decoration: inherit;
  position: absolute;
  font-size: 18px;
  line-height: 34px;
  color: #cacaca;
  right: 12px;
  top: 0px;
  z-index: 0;
}
.datepickerinput-wrapper input:active ~ span:after,
.datepickerinput-wrapper input:focus ~ span:after {
  color: #4c9ce7 !important;
}
.datepickerinput-wrapper[disabled] input:active ~ span:after,
.datepickerinput-wrapper[disabled] input:focus ~ span:after {
  color: #cacaca !important;
}
.datepickerinput-wrapper .datepickerinput-calendar:after {
  content: "\f073";
}
.datepickerinput-wrapper .datepickerinput-clock:after {
  content: "\f017";
}
.bootstrap-datetimepicker-widget {
  min-width: unset !important;
  width: auto !important;
  margin: 0px !important;
  z-index: 999999;
  padding: 10px !important;
  list-style: none;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
  margin: 2px 0;
  padding: 4px;
  width: 19em;
}
.bootstrap-datetimepicker-widget.dropdown-menu a:hover {
  color: #595959 !important;
}
@media (min-width: 768px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 992px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 1200px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
.bootstrap-datetimepicker-widget.dropdown-menu:after,
.bootstrap-datetimepicker-widget.dropdown-menu:before {
  content: "";
  display: inline-block;
  position: absolute;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  top: -7px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  top: -6px;
  left: 8px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  bottom: -7px;
  left: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
  bottom: -6px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
  left: auto;
  right: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
  left: auto;
  right: 7px;
}
.bootstrap-datetimepicker-widget .list-unstyled {
  margin: 0;
}
.bootstrap-datetimepicker-widget a[data-action] {
  padding: 6px 0;
}
.bootstrap-datetimepicker-widget a[data-action]:active {
  box-shadow: none;
}
.bootstrap-datetimepicker-widget button[data-action] {
  padding: 6px;
}
.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]:after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]:after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]:after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]:after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="showHours"]:after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]:after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]:after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle AM/PM";
}
.bootstrap-datetimepicker-widget .btn[data-action="clear"]:after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Clear the picker";
}
.bootstrap-datetimepicker-widget .btn[data-action="today"]:after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Set the date to today";
}
.bootstrap-datetimepicker-widget .picker-switch {
  text-align: center;
}
.bootstrap-datetimepicker-widget .picker-switch:after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle Date and Time Screens";
}
.bootstrap-datetimepicker-widget .picker-switch td {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  line-height: inherit;
}
.bootstrap-datetimepicker-widget.dropdown-menu a.tabable.tabed {
  color: #3e3e3e;
  background: #c0dcfc;
  cursor: pointer;
}
.bootstrap-datetimepicker-widget .picker-switch td span {
  font-weight: 700;
  height: 2.5em;
  width: 100%;
}
.bootstrap-datetimepicker-widget table {
  width: 100%;
  margin: 0;
  border-spacing: 3px;
  border-collapse: separate;
}
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  text-align: center;
}
.bootstrap-datetimepicker-widget table th {
  height: 20px;
  line-height: 20px;
  width: 20px;
}
.bootstrap-datetimepicker-widget table th.picker-switch {
  width: 145px;
}
.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
  background: none;
  color: #3e3e3e;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table th.prev:after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Previous Month";
}
.bootstrap-datetimepicker-widget table th.next:after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Next Month";
}
.bootstrap-datetimepicker-widget table thead tr:first-child th {
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table thead tr:first-child th.tabed,
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #c0dcfc;
  color: #3e3e3e;
}
.bootstrap-datetimepicker-widget table td {
  width: auto !important;
  height: auto !important;
  line-height: normal !important;
  text-align: center;
}
.bootstrap-datetimepicker-widget table td.cw {
  font-size: 0.8em;
  height: 20px;
  line-height: 20px;
  color: #3e3e3e;
}
.bootstrap-datetimepicker-widget table td.day {
  min-width: 36px;
  color: #3e3e3e;
  background-color: #fff;
}
.bootstrap-datetimepicker-widget table td span.month,
.bootstrap-datetimepicker-widget table td span.year {
  min-width: 59px;
  margin: 0 3px 3px 0;
}
.bootstrap-datetimepicker-widget table td span.decade {
  min-width: 120px;
  margin: 0 3px 3px 0;
}
.bootstrap-datetimepicker-widget table td span:empty {
  padding: 0;
}
.bootstrap-datetimepicker-widget .datepicker-days table thead > tr {
  padding: 0px 10px;
}
.bootstrap-datetimepicker-widget .datepicker-days table thead > tr:first-child {
  font-weight: 400;
  color: #3e3e3e !important;
}
.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover,
.bootstrap-datetimepicker-widget table td span:hover {
  color: #3e3e3e;
  background: #c0dcfc;
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table td.new,
.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td span.new,
.bootstrap-datetimepicker-widget table td span.old {
  background-color: #f6f6f6;
  color: #3e3e3e;
}
.bootstrap-datetimepicker-widget table td.new:hover,
.bootstrap-datetimepicker-widget table td.old:hover,
.bootstrap-datetimepicker-widget table td span.new:hover,
.bootstrap-datetimepicker-widget table td span.old:hover {
  background-color: #003e87;
  color: #fff;
}
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover,
.bootstrap-datetimepicker-widget table td.tabable,
.bootstrap-datetimepicker-widget table td.tabed,
.bootstrap-datetimepicker-widget table td span.active,
.bootstrap-datetimepicker-widget table td span.active:hover {
  background-color: #c0dcfc;
  color: #3e3e3e;
}
.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover,
.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
  background: none;
  color: #ad1b00;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table td span {
  display: inline-block;
  padding: 10px;
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table td span.glyphicon-trash {
  padding: 0;
}
.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
  height: 27px;
  line-height: 27px;
}
.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
  text-align: center;
  width: 40px;
  margin: 0;
}
.allActive .bootstrap-datetimepicker-widget table td.day,
.allActive .bootstrap-datetimepicker-widget table td.day:hover {
  color: #3e3e3e;
  background: #c0dcfc;
}
.allActive .bootstrap-datetimepicker-widget table td.day.new,
.allActive .bootstrap-datetimepicker-widget table td.day.old {
  background-color: #003e87;
  color: #fff;
}
.allActive .bootstrap-datetimepicker-widget table td.day.disabled,
.allActive .bootstrap-datetimepicker-widget table td.day.disabled:hover {
  color: #3e3e3e;
  background-color: #fff;
  cursor: default;
}
.allActive .bootstrap-datetimepicker-widget table td.day.new.disabled,
.allActive .bootstrap-datetimepicker-widget table td.day.old.disabled,
.allActive
  .bootstrap-datetimepicker-widget
  table
  td.day.old.disabled:hover
  .allActive
  .bootstrap-datetimepicker-widget
  table
  td.day.new.disabled:hover {
  color: #3e3e3e;
  background-color: #f6f6f6;
  cursor: default;
}
.timepicker-picker .btn {
  color: #3e3e3e !important;
  padding: 0px 5px !important;
  margin-left: 0px !important;
}
.timepicker-picker .btn-primary {
  color: #fff !important;
  background: #595959 !important;
  border: none;
  margin: 0px 5px !important;
}
.timepicker-picker td {
  text-align: center !important;
}
.timepicker-picker tr {
  height: 30px;
}
.emailAutocomplite {
  width: 200px;
}
.input-group.date .input-group-addon {
  cursor: pointer;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.modal {
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-dialog {
  margin-top: 100px;
  font-size: 13px;
  width: 480px;
  display: table;
}
.modal-content {
  background-color: #fff;
  color: #3e3e3e;
}
.modal-content .modal-title {
  font-weight: 700;
  display: inline-block;
}
.modal-content .close {
  position: absolute;
  top: 8px;
  right: 14px;
  z-index: 2;
  opacity: 1;
  color: #3e3e3e;
}
.modal-dialog [ng-transclude]:empty {
  display: none;
}
.modal-body {
  padding: 14px;
}
.modal-body.modal-limited-height {
  max-height: calc(100vh - 220px);
  overflow-y: auto;
}
.modal-footer {
  border: none;
  padding: 4px 14px 14px;
  white-space: nowrap;
}
.modal-footer:after,
.modal-footer:before {
  display: inline-block;
}
.modal-footer button.btn + .btn {
  min-width: 80px;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-left: 14px;
  color: #fff;
}
.modal-footer button.btn + .btn.middleModalBtn {
  width: auto;
  color: #3e3e3e;
  background-color: #eee;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#eee),
    to(#eee)
  );
  background: -webkit-linear-gradient(top, #eee, #eee);
  background: -o-linear-gradient(top, #eee, #eee);
  border-color: #cdcdcd;
}
.modal-footer button.btn + .btn.middleModalBtn:hover {
  background-color: #dbdbdb;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#dbdbdb),
    to(#dbdbdb)
  );
  background: -webkit-linear-gradient(top, #dbdbdb, #dbdbdb);
  background: -o-linear-gradient(top, #dbdbdb, #dbdbdb);
  border-color: #ccc;
}
.modal-footer button.btn.btn-default {
  padding: 0;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-left: 14px;
  color: #0e57ab;
  background: none;
  border: none;
}
.modal-footer p {
  display: inline-block;
  float: left;
  margin: 0;
  line-height: 30px;
}
.modal-footer p label {
  margin-bottom: 0;
}
.modal-footer p label input[type="checkbox"] {
  margin: 0 5px 0 0;
  vertical-align: text-bottom;
  position: relative;
  bottom: 1px;
}
.buttonstyle-gray .modal-footer button[ng-show="middlebtn"] {
  background-image: -webkit-linear-gradient(top, #fff, #e0e0e0);
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fff),
    to(#e0e0e0)
  );
  background-image: linear-gradient(180deg, #fff 0%, #e0e0e0);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe0e0e0',GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-repeat: repeat-x;
  border-color: #d5d5d5;
  border-color: #ccc;
  color: #444;
}
.modal-header {
  border: none;
  font-size: 16px;
  padding: 14px 14px 4px;
}
.modal-header h4 {
  line-height: 14px;
  font-size: 16px;
}
.modal-header .close {
  position: relative;
  top: -4px;
  z-index: 2;
  opacity: 1;
  color: #3e3e3e;
}
.modal-description {
  display: block;
  font-size: 12px;
  color: #767676;
}
.modal-backdrop {
  background-color: transparent;
}
.modal-backdrop.in {
  opacity: 0;
}
.collaborators .collaborator-item {
  height: 45px;
  margin-top: 10px;
}
.collaborators .collaborator-item .nameemailcnt .name {
  font-size: 14px;
}
.collaborators .collaborator-item .info-holder > span {
  color: #3e3e3e;
}
.collaborators .collaborator-suggestions li {
  padding: 5px 15px;
  border-bottom: 1px solid #ddd;
  min-width: 265px;
  max-width: 400px;
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.collaborators .collaborator-suggestions li.active {
  background: #0e57ab;
  color: #fff;
  cursor: pointer;
  border-bottom: 1px solid #338ee7;
}
.collaborators-calendar .collaborator-item .nameemailcnt .name {
  font-size: 14px;
}
.collaborators-calendar .collaborator-suggestions {
  position: absolute;
  z-index: 2000;
  background-color: #fff;
}
.collaborators-calendar .collaborator-suggestions ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
.collaborators-calendar .collaborator-suggestions li {
  padding: 5px 15px;
  border-bottom: 1px solid #ddd;
  min-width: 265px;
  max-width: 400px;
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.collaborators-calendar .collaborator-suggestions li.active {
  background: #0e57ab;
  color: #fff;
  cursor: pointer;
  border-bottom: 1px solid #338ee7;
}
.collaborators-calendar .collaborator-list {
  clear: both;
  margin: 15px 0px 0px;
  color: #595959;
}
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator {
  min-width: 200px;
  max-width: 200px;
  background-color: #fff;
  z-index: 1;
  float: left;
  width: auto;
  height: auto;
  display: inline;
  padding: 10px;
  display: none;
  position: absolute;
  border: none;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
}
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator
  .collaborator-info {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator
  h4 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 175px;
}
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator
  .action {
  clear: both;
  color: inherit;
  cursor: pointer;
  display: block;
  margin: 5px 0px;
  float: left;
}
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator
  .action
  .fa {
  margin: 0px 5px 0px 0px;
}
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator.collaborator-popup-left {
  right: 0;
}
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator.collaborator-popup-left:after,
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator.collaborator-popup-left:before {
  left: inherit;
  right: 16px;
}
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator:after
  h4,
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator:before
  h4 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 175px;
}
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator:after {
  border-color: hsla(0, 0%, 100%, 0);
  border-bottom-color: #fff #fff;
  border-width: 10px;
  margin-left: -10px;
}
.collaborators-calendar
  .collaborator-list
  .selected-contact:hover
  .edit-collaborator {
  background-color: #fff;
  position: absolute;
  z-index: 1;
  float: left;
  width: auto;
  height: auto;
  display: inline;
  padding: 10px;
  transition: opacity 0.4s ease-out;
  -moz-transition: opacity 0.4s ease-out;
  -webkit-transition: opacity 0.4s ease-out;
  -o-transition: opacity 0.4s ease-out;
  border: none;
}
#editeventsidebar .collaborator-list .selected-contact,
#neweventsidebar .collaborator-list .selected-contact {
  width: 16.6%;
}
.notificationWrapper {
  position: relative;
}
.notification {
  position: absolute;
  z-index: 1000;
  right: 0px;
  height: 0;
}
.notification .notificationContainer {
  height: 0;
}
.notification.public,
.notification.public .notificationContainer {
  width: 100% !important;
}
.notification .notificationitem {
  background-color: #faf4d2;
  min-height: 30px;
  padding: 3px 10px 3px 15px;
  margin: 10px auto;
  width: 70%;
  border-radius: 3px;
  line-height: 2em;
  word-break: break-word;
}
.notification .notificationitem.double .info .title {
  font-size: 14px;
  font-weight: 700;
}
.notification .notificationitem.info {
  background-color: #faf4d2;
  border: 1px solid #b3ad97;
  color: #3e3e3e;
}
.notification .notificationitem.success {
  background-color: #d2fad5;
  border: 1px solid #80b27f;
  color: #3e3e3e;
}
.notification .notificationitem.error {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.notification .notificationitem.error,
.notification .notificationitem.newinfo {
  background-color: #fad5d2;
  border: 1px solid #ac887f;
  color: #3e3e3e;
}
.notification .notificationitem .info {
  float: left;
}
.notification .notificationitem .info .title {
  font-size: 13px;
  line-height: 18px;
  padding: 10px 0;
}
.notification .notificationitem .tasks .action {
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  margin: 0 0 0 10px;
  padding: 0;
}
.notification .notificationitem .tasks .action.details {
  font-size: 14px;
  margin-right: 10px;
  color: #0e57ab;
  line-height: 56px;
}
.notification .notificationitem a {
  color: #003e87;
}
.overlayBody {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(32, 32, 32, 0.7);
  box-shadow: inset 0 0 10px #000;
  top: 50px;
  left: 272px;
}
.content.simple-content .overlayBody {
  top: 0;
  left: 216px;
  height: 100% !important;
  width: 100% !important;
}
.overlayAccounts {
  width: 500px;
  height: 350px;
  margin: 20% auto;
  color: #ccc;
  text-align: center;
}
.overlayAccounts span i {
  margin: 0px auto;
  font-size: 100px;
}
.overlayAccounts span img {
  margin: 0px auto;
  height: 100px;
}
.overlayAccounts a {
  color: #ccc;
}
.overlayAccounts h3,
.overlayAccounts h4 {
  margin: 0 auto 10px;
}
.freebusy {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #3e3e3e;
}
.freebusy .aboveHeader {
  display: flex;
  flex-wrap: wrap;
  min-height: 50px;
  padding: 10px 8px;
  margin-bottom: 8px;
  background-color: #f6f6f6;
}
.freebusy .aboveHeader .eventTime,
.freebusy .aboveHeader .nextAvailableTimeSlot,
.freebusy .aboveHeader .today {
  display: inline-block;
  vertical-align: top;
}
.freebusy .aboveHeader button {
  height: 30px;
  padding-top: 4px;
  vertical-align: top;
}
.freebusy .aboveHeader .today {
  margin-top: 0;
}
.freebusy .aboveHeader .eventTime {
  padding: 7px 10px 0;
  flex-grow: 1;
}
.freebusy .aboveHeader .nextAvailableTimeSlot > span {
  display: inline-block;
  padding-right: 10px;
  padding-top: 7px;
}
.freebusy .aboveHeader .nextAvailableTimeSlot .fa {
  font-size: 20px;
  font-weight: 700;
}
.freebusy .header {
  display: table;
  background-color: #f6f6f6;
  width: 100%;
  border-bottom: 1px solid #dcdcdc;
  font-size: 14px;
  height: 34px;
}
.freebusy .header .next,
.freebusy .header .previous {
  width: 15px;
  padding-top: 2px;
  display: table-cell;
  vertical-align: top;
  text-align: center;
}
.freebusy .header .next .btn,
.freebusy .header .previous .btn {
  width: 15px;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.freebusy .header .next .btn:focus,
.freebusy .header .previous .btn:focus {
  outline: 2px solid #4087c9;
  -moz-outline-radius: 3px;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.freebusy .header .attendees {
  width: 145px;
  padding-top: 9px;
  padding-left: 15px;
  font-weight: 700;
  display: table-cell;
  vertical-align: top;
  font-size: 13px;
  box-sizing: content-box;
}
.freebusy .header .hours {
  display: table-cell;
}
.freebusy .header .hours .hour {
  display: inline-block;
  border-left: 1px solid #dcdcdc;
  box-sizing: border-box;
  height: 34px;
  padding-top: 3px;
  text-align: center;
}
.freebusy .header .hours .hour.use24hFormat {
  padding-top: 8px;
}
.freebusy .header .hours .hour div.number {
  font-size: 14px;
  height: 14px;
}
.freebusy .header .hours .hour div.ampm {
  font-size: 12px;
  height: 12px;
}
.freebusy .header .hours .hour:first-of-type {
  border-left: none;
}
.freebusy .users {
  position: relative;
}
.freebusy .users .user {
  position: relative;
  display: table;
  width: 100%;
  height: 54px;
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}
.freebusy .users .user .info {
  display: table-cell;
  width: 161px;
  padding-top: 9px;
  vertical-align: top;
  border-right: 1px solid #dcdcdc;
}
.freebusy .users .user .info > span {
  position: relative;
  display: inline-block;
  margin-left: 8px;
  margin-right: 8px;
}
.freebusy .users .user .info > span .image {
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  float: none;
  text-decoration: none;
}
.freebusy .users .user .info > span > span {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  pointer-events: none;
}
.freebusy .users .user .info > span > span.icon-wm-organizer {
  color: #54acd2;
}
.freebusy .users .user .info > span > span.fa-check-circle-o {
  color: #41a85f;
}
.freebusy .users .user .info > span > span.icon-wm-tentative {
  color: #f4a932;
}
.freebusy .users .user .info > span > span.icon-wm-declined {
  color: #ad1b00;
}
.freebusy .users .user .info .infodata {
  vertical-align: top;
  display: inline-block;
  font-size: 13px;
}
.freebusy .users .user .info .infodata .name {
  font-weight: 700;
  width: 80px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.freebusy .users .user .info .infodata .required {
  color: #595959;
  margin-top: 6px;
}
.freebusy .users .user .info .infodata .required .fa {
  margin: 1px 3px 0 0;
  width: 14px;
  height: 14px;
  font-size: 15px;
}
.freebusy .users .user .info .infodata .required label {
  font-weight: 400;
  vertical-align: top;
  width: 60px;
}
.freebusy .users .user .info .removeAttendee {
  color: #0e57ab;
  display: inline-block;
  vertical-align: initial;
  margin-left: 3px;
  font-size: 14px;
  padding: 0 2px;
  border: 0;
  height: 20px;
  cursor: pointer;
}
.freebusy .users .user .info .removeAttendee:focus {
  outline: 2px solid #4087c9;
  -moz-outline-radius: 3px;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.freebusy .users .user .timeline {
  display: table-cell;
  padding-left: 15px;
  padding-right: 15px;
}
.freebusy .users .user .timeline .eventsContainer {
  position: relative;
  height: 54px;
  overflow: hidden;
}
.freebusy .users .user .timeline .eventsContainer .event {
  background-color: #eee;
  border: 1px solid #dcdcdc;
  border-left: 4px solid #c4c4c4;
  height: 43px;
  position: absolute;
  top: 6px;
  font-size: 12px;
  color: #000;
  overflow: hidden;
  padding-top: 5px;
  box-sizing: border-box;
}
.freebusy .users .user .timeline .eventsContainer .event > div {
  float: left;
}
.freebusy .users .user .timeline .eventsContainer .event .time {
  font-weight: 700;
  float: left;
}
.freebusy .users .user .timeline .eventsContainer .event .padding {
  height: 100%;
  width: 7px;
}
.freebusy .users .user .timeline .eventsContainer .event.disconnected {
  background: repeating-linear-gradient(
    290deg,
    #fafafa,
    #fafafa 10px,
    #eee 0,
    #eee 20px
  );
  width: 100%;
  left: 0;
}
.freebusy .users .separator-accepted,
.freebusy .users .separator-declined,
.freebusy .users .separator-needs-action,
.freebusy .users .separator-tentative {
  position: relative;
  height: 21px;
  font-size: 13px;
  font-weight: 700;
  padding-top: 2px;
  padding-left: 13px;
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}
.freebusy .users .separator-accepted {
  background: #d2fad5;
}
.freebusy .users .separator-declined {
  background: #fad5d2;
}
.freebusy .users .separator-tentative {
  background: #faf4d2;
}
.freebusy .users .customHoursLayer,
.freebusy .users .sliderOverlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  display: block;
  pointer-events: none;
}
.freebusy .users .customHoursLayer .customHoursContainer,
.freebusy .users .customHoursLayer .sliderContainer,
.freebusy .users .sliderOverlay .customHoursContainer,
.freebusy .users .sliderOverlay .sliderContainer {
  position: relative;
  height: 100%;
  display: block;
  margin-left: 177px;
  margin-right: 16px;
}
.freebusy .users .customHoursLayer .sliderContainer,
.freebusy .users .sliderOverlay .sliderContainer {
  overflow: hidden;
}
.freebusy .users .customHoursLayer .sliderContainer .originalSlider,
.freebusy .users .customHoursLayer .sliderContainer .slider,
.freebusy .users .sliderOverlay .sliderContainer .originalSlider,
.freebusy .users .sliderOverlay .sliderContainer .slider {
  pointer-events: auto;
  height: 100%;
  position: absolute;
}
.freebusy
  .users
  .customHoursLayer
  .sliderContainer
  .originalSlider
  .sliderSection,
.freebusy .users .customHoursLayer .sliderContainer .slider .sliderSection,
.freebusy .users .sliderOverlay .sliderContainer .originalSlider .sliderSection,
.freebusy .users .sliderOverlay .sliderContainer .slider .sliderSection {
  height: 55px;
  border-left: 2px solid;
  border-right: 2px solid;
  box-sizing: border-box;
  border-top: none;
}
.freebusy
  .users
  .customHoursLayer
  .sliderContainer
  .originalSlider
  .sliderSection.overlap,
.freebusy
  .users
  .customHoursLayer
  .sliderContainer
  .slider
  .sliderSection.overlap,
.freebusy
  .users
  .sliderOverlay
  .sliderContainer
  .originalSlider
  .sliderSection.overlap,
.freebusy
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .sliderSection.overlap {
  border-left-style: dashed;
  border-right-style: dashed;
}
.freebusy
  .users
  .customHoursLayer
  .sliderContainer
  .originalSlider
  .sliderSection.separator,
.freebusy
  .users
  .customHoursLayer
  .sliderContainer
  .slider
  .sliderSection.separator,
.freebusy
  .users
  .sliderOverlay
  .sliderContainer
  .originalSlider
  .sliderSection.separator,
.freebusy
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .sliderSection.separator {
  height: 21px;
}
.freebusy
  .users
  .customHoursLayer
  .sliderContainer
  .originalSlider
  .sliderSection:last-child,
.freebusy
  .users
  .customHoursLayer
  .sliderContainer
  .slider
  .sliderSection:last-child,
.freebusy
  .users
  .sliderOverlay
  .sliderContainer
  .originalSlider
  .sliderSection:last-child,
.freebusy
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .sliderSection:last-child {
  border-bottom: 2px solid;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.freebusy
  .users
  .customHoursLayer
  .sliderContainer
  .originalSlider
  .sliderSection:last-child.overlap,
.freebusy
  .users
  .customHoursLayer
  .sliderContainer
  .slider
  .sliderSection:last-child.overlap,
.freebusy
  .users
  .sliderOverlay
  .sliderContainer
  .originalSlider
  .sliderSection:last-child.overlap,
.freebusy
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .sliderSection:last-child.overlap {
  border-bottom-style: dashed;
}
.freebusy .users .customHoursLayer .sliderContainer .slider,
.freebusy .users .sliderOverlay .sliderContainer .slider {
  background-color: rgba(58, 141, 227, 0.15);
  color: #0e57ab;
  font-size: 25px;
  cursor: move;
}
.freebusy .users .customHoursLayer .sliderContainer .slider .sliderSection,
.freebusy
  .users
  .customHoursLayer
  .sliderContainer
  .slider
  .sliderSection:last-child,
.freebusy .users .sliderOverlay .sliderContainer .slider .sliderSection,
.freebusy
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .sliderSection:last-child {
  border-color: #0e57ab;
}
.freebusy .users .customHoursLayer .sliderContainer .slider .leftCaret,
.freebusy .users .customHoursLayer .sliderContainer .slider .rightCaret,
.freebusy .users .sliderOverlay .sliderContainer .slider .leftCaret,
.freebusy .users .sliderOverlay .sliderContainer .slider .rightCaret {
  position: absolute;
  top: -9px;
}
.freebusy .users .customHoursLayer .sliderContainer .slider .leftCaret,
.freebusy .users .sliderOverlay .sliderContainer .slider .leftCaret {
  left: -6.5px;
}
.freebusy .users .customHoursLayer .sliderContainer .slider .rightCaret,
.freebusy .users .sliderOverlay .sliderContainer .slider .rightCaret {
  right: -6.5px;
}
.freebusy
  .users
  .customHoursLayer
  .sliderContainer
  .slider
  .leftBorderClickZone,
.freebusy
  .users
  .customHoursLayer
  .sliderContainer
  .slider
  .rightBorderClickZone,
.freebusy .users .sliderOverlay .sliderContainer .slider .leftBorderClickZone,
.freebusy .users .sliderOverlay .sliderContainer .slider .rightBorderClickZone {
  position: absolute;
  height: 100%;
  width: 5px;
  cursor: ew-resize;
}
.freebusy
  .users
  .customHoursLayer
  .sliderContainer
  .slider
  .leftBorderClickZone,
.freebusy .users .sliderOverlay .sliderContainer .slider .leftBorderClickZone {
  left: -3px;
}
.freebusy
  .users
  .customHoursLayer
  .sliderContainer
  .slider
  .rightBorderClickZone,
.freebusy .users .sliderOverlay .sliderContainer .slider .rightBorderClickZone {
  right: -3px;
}
.freebusy .users .customHoursLayer .sliderContainer .slider.disabled,
.freebusy
  .users
  .customHoursLayer
  .sliderContainer
  .slider.disabled
  .leftBorderClickZone,
.freebusy
  .users
  .customHoursLayer
  .sliderContainer
  .slider.disabled
  .rightBorderClickZone,
.freebusy .users .sliderOverlay .sliderContainer .slider.disabled,
.freebusy
  .users
  .sliderOverlay
  .sliderContainer
  .slider.disabled
  .leftBorderClickZone,
.freebusy
  .users
  .sliderOverlay
  .sliderContainer
  .slider.disabled
  .rightBorderClickZone {
  cursor: default;
}
.freebusy .users .customHoursLayer .sliderContainer .originalSlider,
.freebusy .users .sliderOverlay .sliderContainer .originalSlider {
  background-color: hsla(0, 0%, 86%, 0.15);
}
.freebusy
  .users
  .customHoursLayer
  .sliderContainer
  .originalSlider
  .sliderSection,
.freebusy
  .users
  .customHoursLayer
  .sliderContainer
  .originalSlider
  .sliderSection:last-child,
.freebusy .users .sliderOverlay .sliderContainer .originalSlider .sliderSection,
.freebusy
  .users
  .sliderOverlay
  .sliderContainer
  .originalSlider
  .sliderSection:last-child {
  border-color: #dcdcdc;
}
.freebusy .users .customHoursLayer .customHoursContainer .customHours,
.freebusy .users .customHoursLayer .customHoursContainer .customHoursLeft,
.freebusy .users .customHoursLayer .customHoursContainer .customHoursLeftFill,
.freebusy .users .customHoursLayer .customHoursContainer .customHoursRight,
.freebusy .users .customHoursLayer .customHoursContainer .customHoursRightFill {
  height: 100%;
  position: absolute;
  background: #f6f6f6;
}
.freebusy .users .customHoursLayer .customHoursContainer .customHours,
.freebusy .users .customHoursLayer .customHoursContainer .customHoursLeft {
  border-right: 2px dashed #dcdcdc;
}
.freebusy .users .customHoursLayer .customHoursContainer .customHours,
.freebusy .users .customHoursLayer .customHoursContainer .customHoursRight {
  border-left: 2px dashed #dcdcdc;
}
.freebusy .users .customHoursLayer .customHoursContainer .customHoursLeftFill,
.freebusy .users .customHoursLayer .customHoursContainer .customHoursRightFill {
  width: 15px;
}
.freebusy .users .customHoursLayer .customHoursContainer .customHoursLeftFill {
  left: -15px;
}
.freebusy .users .customHoursLayer .customHoursContainer .customHoursRightFill {
  right: -15px;
}
.freebusy .footer {
  min-height: 50px;
  padding-top: 10px;
  padding-left: 15px;
  margin-bottom: 10px;
  font-weight: 700;
  background-color: #f6f6f6;
}
.freebusy .footer .addattendeesresources {
  display: inline-block;
  margin: 0 10px 10px 0;
}
.freebusy .footer .addattendeesresources #queryText {
  width: 337px;
  height: 30px;
  line-height: 14px;
}
.freebusy .footer > .add-attendees-label {
  float: left;
  padding-top: 7px;
  padding-right: 2px;
}
.freebusy .footer > .attendees-can-invite-others-container .fa {
  vertical-align: middle;
  margin: 0 5px 3px 0;
  width: 14px;
  height: 14px;
}
.freebusy .conflicts {
  font-size: 13px;
}
.freebusy .conflicts > div:first-child {
  font-weight: 700;
  padding-top: 20px;
  padding-bottom: 5px;
}
.freebusy .conflicts .conflictsList {
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  padding-top: 5px;
  padding-bottom: 5px;
}
.freebusy .conflicts .conflictsList .conflict .conflictSummary {
  padding-top: 5px;
  padding-bottom: 5px;
}
.freebusy .conflicts .conflictsList .conflict .conflictSummary div {
  display: inline-block;
}
.freebusy .conflicts .conflictsList .conflict .conflictSummary .message,
.freebusy .conflicts .conflictsList .conflict .conflictSummary .pull-right {
  padding-top: 3px;
}
.freebusy .conflicts .conflictsList .conflict .conflictSummary .ignoreConflict,
.freebusy .conflicts .conflictsList .conflict .conflictSummary .toggleDetails {
  color: #0e57ab;
  float: none;
  font-weight: 700;
  padding-right: 15px;
}
.freebusy
  .conflicts
  .conflictsList
  .conflict
  .conflictSummary
  .icon-wm-overlap {
  color: #ad1b00;
}
.freebusy .conflicts .conflictsList .conflict .detailsList {
  background-color: #eee;
  padding-left: 55px;
}
.freebusy .conflicts .conflictsList .conflict .detailsList > div {
  padding-top: 5px;
  padding-bottom: 5px;
}
.freebusy.leftBorderDragged,
.freebusy.leftBorderDragged .users .sliderOverlay .sliderContainer .slider,
.freebusy.leftBorderDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .leftBorderClickZone,
.freebusy.leftBorderDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .rightBorderClickZone {
  cursor: ew-resize;
}
.freebusy.leftBorderDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .leftBorderClickZone
  .sliderSection,
.freebusy.leftBorderDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .rightBorderClickZone
  .sliderSection,
.freebusy.leftBorderDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .sliderSection {
  border-left-color: #0e57ab;
}
.freebusy.leftBorderDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .leftBorderClickZone
  .leftCaret,
.freebusy.leftBorderDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .leftCaret,
.freebusy.leftBorderDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .rightBorderClickZone
  .leftCaret {
  color: #0e57ab;
}
.freebusy.rightBorderDragged,
.freebusy.rightBorderDragged .users .sliderOverlay .sliderContainer .slider,
.freebusy.rightBorderDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .leftBorderClickZone,
.freebusy.rightBorderDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .rightBorderClickZone {
  cursor: ew-resize;
}
.freebusy.rightBorderDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .leftBorderClickZone
  .sliderSection,
.freebusy.rightBorderDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .rightBorderClickZone
  .sliderSection,
.freebusy.rightBorderDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .sliderSection {
  border-right-color: #0e57ab;
}
.freebusy.rightBorderDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .leftBorderClickZone
  .rightCaret,
.freebusy.rightBorderDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .rightBorderClickZone
  .rightCaret,
.freebusy.rightBorderDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .rightCaret {
  color: #0e57ab;
}
.freebusy.middleAreaDragged,
.freebusy.middleAreaDragged .users .sliderOverlay .sliderContainer .slider,
.freebusy.middleAreaDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .leftBorderClickZone,
.freebusy.middleAreaDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .rightBorderClickZone {
  cursor: move;
}
.freebusy.middleAreaDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .leftBorderClickZone
  .sliderSection,
.freebusy.middleAreaDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .rightBorderClickZone
  .sliderSection,
.freebusy.middleAreaDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .sliderSection {
  border-left-color: #0e57ab;
  border-right-color: #0e57ab;
  border-bottom-color: #0e57ab;
}
.freebusy.middleAreaDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .leftBorderClickZone
  .leftCaret,
.freebusy.middleAreaDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .leftBorderClickZone
  .rightCaret,
.freebusy.middleAreaDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .leftCaret,
.freebusy.middleAreaDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .rightBorderClickZone
  .leftCaret,
.freebusy.middleAreaDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .rightBorderClickZone
  .rightCaret,
.freebusy.middleAreaDragged
  .users
  .sliderOverlay
  .sliderContainer
  .slider
  .rightCaret {
  color: #0e57ab;
}
.tooltip.freebusyTooltip.bottom {
  font-family: inherit;
  opacity: 1;
}
.tooltip.freebusyTooltip.bottom .tooltip-arrow {
  border-bottom-color: #eee;
}
.tooltip.freebusyTooltip.bottom .tooltip-arrow:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  top: 1px;
  left: -4px;
  z-index: -1;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.5);
}
.tooltip.freebusyTooltip.bottom .tooltip-inner {
  background-color: #eee;
  font-size: 12px;
  color: #3e3e3e;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.5);
  padding: 9px 10px;
}
ul.password-info-block {
  padding-left: 10px;
}
#password-directive .info-message {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  background-color: #444;
  color: #fff;
  padding: 6px 7px;
  position: absolute;
  top: 27px;
  width: 250px;
  right: -257px;
  transition: none;
}
#password-directive .info-message:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid;
  border-color: transparent #444 transparent transparent;
  top: 9px;
  left: -11px;
}
#password-directive .info-message h4 {
  color: #fff;
  margin-top: 3px;
  margin-left: 5px;
  margin-bottom: 4px;
}
#password-directive .error-message {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  background-color: #fad5d2;
  padding: 6px 7px;
  position: absolute;
  top: 27px;
  width: 250px;
  right: -257px;
  transition: none;
}
#password-directive .error-message:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid;
  border-color: transparent #fad5d2 transparent transparent;
  top: 9px;
  left: -11px;
}
#password-directive .error-message h4 {
  margin-top: 3px;
  margin-left: 5px;
  margin-bottom: 4px;
  color: #000;
}
#password-directive .error-message ul {
  padding-left: 20px;
  margin-bottom: 3px;
}
div.contactdetailssidebar {
  cursor: default;
}
div.contactdetailssidebar a,
div.contactdetailssidebar a:focus,
div.contactdetailssidebar a:hover {
  color: #0e57ab;
  text-decoration: none;
}
div.contactdetailssidebar .name {
  font-size: 24px;
  border-bottom: 1px solid #767676;
  padding-bottom: 18px;
}
div.contactdetailssidebar .generalInfo {
  padding-top: 18px;
  padding-bottom: 50px;
}
div.contactdetailssidebar .generalInfo .column1,
div.contactdetailssidebar .generalInfo .column2 {
  height: 92px;
  display: inline-block;
  vertical-align: top;
}
div.contactdetailssidebar .generalInfo .column1 {
  width: 71px;
  margin-right: 36px;
}
div.contactdetailssidebar .generalInfo .column1 .avatar {
  width: 70px;
  height: 70px;
  max-width: 70px;
  max-height: 70px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-bottom: 6px;
}
div.contactdetailssidebar .generalInfo .column1 a {
  float: none;
}
div.contactdetailssidebar .generalInfo .column1 span.fa {
  margin-left: 5px;
  margin-right: 5px;
  color: #595959;
}
div.contactdetailssidebar .generalInfo .column1 .fa.active {
  cursor: pointer;
}
div.contactdetailssidebar .generalInfo .column1 .fa.active.fa-facebook {
  color: #3b5998;
}
div.contactdetailssidebar .generalInfo .column1 .fa.active.fa-linkedin {
  color: #0077b5;
}
div.contactdetailssidebar .generalInfo .column1 .fa.active.fa-twitter {
  color: #55acee;
}
div.contactdetailssidebar .generalInfo .column2 {
  color: gray;
  padding-top: 18px;
  width: 175px;
  overflow: visible;
}
div.contactdetailssidebar .generalInfo .column2 .jobTitle {
  margin-bottom: 5px;
}
div.contactdetailssidebar .generalInfo .column2 .company {
  margin-bottom: 20px;
}
div.contactdetailssidebar .generalInfo .column2 .localTime,
div.contactdetailssidebar .generalInfo .column2 .timezone {
  color: #595959;
}
div.contactdetailssidebar .contactInformation .infoTitle,
div.contactdetailssidebar .recentMessages .infoTitle,
div.contactdetailssidebar .upcomingMeetings .infoTitle {
  font-weight: 700;
  cursor: pointer;
  padding-bottom: 5px;
}
div.contactdetailssidebar .contactInformation .infoTitle span.fa,
div.contactdetailssidebar .recentMessages .infoTitle span.fa,
div.contactdetailssidebar .upcomingMeetings .infoTitle span.fa {
  padding-right: 3px;
}
div.contactdetailssidebar .contactInformation .infoContent,
div.contactdetailssidebar .recentMessages .infoContent {
  padding-bottom: 50px;
}
div.contactdetailssidebar .contactInformation .infoContent {
  border-top: 1px solid #767676;
}
div.contactdetailssidebar .contactInformation .infoContent > div {
  margin-top: 20px;
}
div.contactdetailssidebar .contactInformation .infoContent > div .infoLabel {
  display: inline-block;
  width: 100px;
  font-weight: 700;
  color: #3e3e3e;
}
div.contactdetailssidebar .contactInformation .infoContent > div .infoValue {
  color: #595959;
}
div.contactdetailssidebar .recentMessages .infoContent .message {
  padding-top: 14px;
  border-top: 1px solid #767676;
  cursor: pointer;
}
div.contactdetailssidebar
  .recentMessages
  .infoContent
  .message
  .messageTopRow
  .starPlaceholder {
  display: inline-block;
  padding-right: 8px;
  width: 20px;
  background: url(../images/star-filled-s.png) 50% no-repeat;
}
div.contactdetailssidebar
  .recentMessages
  .infoContent
  .message
  .messageTopRow
  .messageSender {
  font-weight: 700;
}
div.contactdetailssidebar
  .recentMessages
  .infoContent
  .message
  .messageTopRow
  .messageDate {
  float: right;
  color: #595959;
}
div.contactdetailssidebar
  .recentMessages
  .infoContent
  .message
  .messageSubject {
  padding-left: 20px;
}
div.contactdetailssidebar
  .recentMessages
  .infoContent
  .message
  .messageBottomIcons {
  height: 14px;
}
div.contactdetailssidebar
  .recentMessages
  .infoContent
  .message
  .messageBottomIcons
  .fa {
  float: right;
}
div.contactdetailssidebar .upcomingMeetings .upcomingMeetingsListDaySeparator {
  height: 29px;
  color: #fff;
  background-color: gray;
  margin-left: -15px;
  margin-right: -16px;
  padding-left: 27px;
  padding-top: 5px;
}
div.contactdetailssidebar .upcomingMeetings .goToCalendar,
div.contactdetailssidebar .upcomingMeetings .meeting + .meeting {
  border-top: 1px solid #767676;
}
div.contactdetailssidebar .upcomingMeetings .meeting {
  padding-top: 15px;
  padding-left: 15px;
  padding-bottom: 15px;
  height: 68px;
  cursor: pointer;
}
div.contactdetailssidebar .upcomingMeetings .meeting > div {
  white-space: nowrap;
}
div.contactdetailssidebar .upcomingMeetings .meeting .meetingStart,
div.contactdetailssidebar .upcomingMeetings .meeting .meetingTitle {
  font-weight: 700;
}
div.contactdetailssidebar .upcomingMeetings .meeting .meetingStart {
  float: left;
  padding-top: 10px;
  padding-right: 14px;
}
div.contactdetailssidebar .upcomingMeetings .meeting .meetingTitle {
  padding-bottom: 2px;
}
div.contactdetailssidebar .upcomingMeetings .meeting .meetingLocation,
div.contactdetailssidebar .upcomingMeetings .meeting .meetingTitle {
  text-overflow: ellipsis;
  overflow: hidden;
}
div.contactdetailssidebar .recentMessages .goToInbox,
div.contactdetailssidebar .upcomingMeetings .goToCalendar {
  border-top: 1px solid #767676;
  padding-top: 8px;
}
div.contactdetailssidebar .recentMessages .goToInbox > a,
div.contactdetailssidebar .upcomingMeetings .goToCalendar > a {
  float: none;
  text-decoration: none;
}
.switchbutton {
  display: inline-block;
  direction: ltr;
  cursor: pointer;
  border-radius: 10px;
  border: 0px none;
  position: relative;
  text-align: left;
  overflow: hidden;
  line-height: 8px;
  width: 100px;
  padding: 2px;
  height: 22px;
  z-index: 0;
}
.switchbutton .switchbutton-container {
  display: inline-block;
  top: 0;
  border-radius: 10px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 200px;
}
.switchbutton.switchbutton-animate .switchbutton-container {
  -webkit-transition: margin-left 0.5s vo;
  transition: margin-left 0.5s;
}
.switchbutton.switchbutton-off {
  background-color: #7bb7f5;
}
.switchbutton.switchbutton-off .switchbutton-container {
  margin-left: -70px;
}
.switchbutton.switchbutton-on {
  background-color: #3c8ce3;
}
.switchbutton.switchbutton-on .switchbutton-container {
  margin-left: 0px;
}
.switchbutton .switchbutton-handle,
.switchbutton .switchbutton-handleoff,
.switchbutton .switchbutton-handleon {
  cursor: pointer;
  display: inline-block !important;
  height: 100%;
  padding: 2px;
  font-size: 12px;
  line-height: 14px;
}
.switchbutton .switchbutton-handle {
  text-align: center;
  z-index: 100;
  color: #000;
  width: 20px;
  border-radius: 10px;
  background: #fff;
}
.switchbutton .switchbutton-handleon {
  color: #fff;
  padding-left: 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  width: 70px;
}
.switchbutton .switchbutton-handleoff {
  color: #fff;
  width: 70px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
templates-dropdown {
  text-align: left;
}
templates-dropdown .btn-group {
  vertical-align: top;
}
templates-dropdown .btn-group .btn {
  height: 27px;
  background-color: #fff;
  color: #3e3e3e;
  border: none;
  border-radius: 0;
}
templates-dropdown .btn-group .btn.dropdown-toggle {
  width: 150px;
}
templates-dropdown .btn-group .btn .fa-angle-down {
  width: 0;
  margin-top: 6px;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid #3e3e3e;
  float: right;
}
templates-dropdown .btn-group .btn .fa-angle-down:before {
  content: none;
}
templates-dropdown ul.dropdown-menu.scrollable-menu {
  width: 150px;
  max-width: 150px;
  min-width: 150px;
}
templates-dropdown ul.dropdown-menu li.active:hover {
  background-color: #e4e6e9;
}
templates-dropdown ul.dropdown-menu li.insert-template {
  padding-left: 10px;
}
templates-dropdown ul.dropdown-menu li.insert-template:hover {
  color: #fff;
}
#saveAsTemplate .modal-header button.close {
  width: 15px;
}
#saveAsTemplate .modal-body .item-property-group input.form-control {
  border: 1px solid #3e3e3e;
  margin-top: 2px;
  margin-bottom: 7px;
}
#saveAsTemplate .modal-footer button.btn.btn-primary {
  color: #fff;
}
.error-message-container[show-errors]:not(.has-error) .error-message {
  display: none;
}
.error-message-container[show-errors].has-error {
  position: relative;
}
.error-message-container[show-errors].has-error label:before {
  content: "!";
  color: #ad1b00;
  position: absolute;
  right: 14px;
  top: 24px;
  float: right;
  font-size: 18px;
  font-weight: 700;
}
.error-message-container[show-errors].has-error .error-message {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  background-color: #fad5d2;
  padding: 6px 7px;
  display: block;
  position: absolute;
  margin-top: 9px;
}
.error-message-container[show-errors].has-error .error-message:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #fad5d2;
  top: -11px;
  right: 12px;
}
.top-modal {
  border: 8px solid rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  min-width: 500px;
}
.sq-modal-content {
  background: #fff;
}
.sq-modal-content .sq-modal-header {
  background: #348de3;
}
.sq-modal-content .sq-modal-header .modal-title {
  text-align: center;
  padding: 10px 0px;
  font-size: 28px;
  color: #fff;
}
.sq-modal-content .sq-modal-footer {
  background: #fff;
  border-top: 1px solid #dcdcdc;
  height: 70px;
  padding: 18px;
  clear: both;
}
.sq-modal-content .sq-modal-footer .carousel-indicators {
  bottom: 16px;
}
.sq-modal-content .sq-modal-footer .carousel-indicators li {
  background: #dcdcdc;
  margin-left: 6px;
  margin-right: 6px;
  cursor: default;
}
.sq-modal-content .sq-modal-footer .carousel-indicators li.active {
  width: 10px;
  height: 10px;
  margin-top: 1px;
  margin-bottom: 1px;
  background: gray;
}
.sq-modal-content .sq-modal-footer button {
  position: relative;
  z-index: 30;
}
.sq-modal-content .sq-modal-footer button.goInbox {
  margin-right: 5px;
}
.sq-modal-content .sq-modal-body {
  padding: 20px;
}
.sq-modal-content .sq-modal-body p {
  margin-bottom: 50px;
  color: gray;
}
.sq-modal-content .sq-modal-body .content-text {
  color: gray;
  font-size: 14px;
}
.sq-modal-content .sq-modal-body .form-group {
  float: left;
  width: 100%;
  margin-bottom: 12px;
}
.sq-modal-content .sq-modal-body .form-group label {
  margin-top: 6px;
}
.sq-modal-content .sq-modal-body .form-group .col-sm-8 {
  padding: 0;
}
.sq-modal-content .sq-modal-body .form-group .col-sm-4 {
  padding-left: 0;
  text-align: right;
}
.sq-modal-content .sq-modal-body .lengthInfo {
  color: gray;
  margin-top: 5px;
}
.ts-modal-content {
  background: #fff;
}
.ts-modal-content .ts-modal-header {
  background: #54acd2;
}
.ts-modal-content .ts-modal-header .modal-title {
  text-align: center;
  padding: 10px 0px;
  font-size: 28px;
  color: #fff;
}
.ts-modal-content .ts-modal-footer {
  background: #fff;
  border-top: 1px solid #dcdcdc;
  height: 70px;
  padding: 18px;
}
.ts-modal-content .ts-modal-body {
  padding: 20px;
}
.modal-btn-footer .ch-select {
  float: left;
  font-size: 14px;
  color: gray;
  height: 35px;
  line-height: 35px;
  width: 100%;
}
.modal-btn-footer .ch-select input {
  margin-right: 8px;
  margin-top: 0;
  vertical-align: middle;
}
.modal-btn-footer .ch-select span {
  vertical-align: middle;
}
.modal-btn-footer .ch-select .link-text {
  color: #0e57ab;
  float: right;
  margin-right: 18px;
  cursor: pointer;
}
.modal-inbox-tour,
.modal-task-tour {
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-inbox-tour .play-video,
.modal-task-tour .play-video {
  color: #fff;
  float: right;
  font-size: 18px;
  position: relative;
  right: 15px;
  top: -30px;
  cursor: pointer;
  display: none;
}
.modal-inbox-tour .modal-dialog,
.modal-task-tour .modal-dialog {
  width: 590px;
  padding: 0 55px;
}
.modal-inbox-tour .modal-dialog .tour-content,
.modal-task-tour .modal-dialog .tour-content {
  width: 480px;
  height: 425px;
  background: #f6f6f6;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
}
.modal-inbox-tour .modal-dialog .tour-content .close,
.modal-task-tour .modal-dialog .tour-content .close {
  width: 24px;
  height: 24px;
  line-height: 18px;
  background: #0e57ab;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: 1;
  text-shadow: none;
  position: absolute;
  right: 55px;
  z-index: 1041;
  color: #fff;
  margin: -12px -12px 0 0;
  text-align: center;
}
.modal-inbox-tour .modal-dialog .tour-content .close .fa,
.modal-task-tour .modal-dialog .tour-content .close .fa {
  font-size: 16px;
}
.modal-inbox-tour .modal-dialog .tour-content .allslides .carousel-indicators,
.modal-task-tour .modal-dialog .tour-content .allslides .carousel-indicators {
  width: 100%;
  left: 30%;
  color: #fff;
  height: 20px;
}
.modal-inbox-tour
  .modal-dialog
  .tour-content
  .allslides
  .carousel-indicators
  li,
.modal-task-tour
  .modal-dialog
  .tour-content
  .allslides
  .carousel-indicators
  li {
  width: 8px;
  height: 8px;
  display: none;
}
.modal-inbox-tour
  .modal-dialog
  .tour-content
  .allslides
  .carousel-indicators
  .active,
.modal-task-tour
  .modal-dialog
  .tour-content
  .allslides
  .carousel-indicators
  .active {
  width: 10px;
  height: 10px;
}
.modal-inbox-tour .modal-dialog .tour-content .carousel-indicators,
.modal-task-tour .modal-dialog .tour-content .carousel-indicators {
  top: 400px;
}
.modal-inbox-tour .modal-dialog .tour-content .carousel-indicators .active,
.modal-task-tour .modal-dialog .tour-content .carousel-indicators .active {
  background-color: #0e57ab;
}
.modal-inbox-tour .modal-dialog .tour-content .carousel-indicators li,
.modal-task-tour .modal-dialog .tour-content .carousel-indicators li {
  background-color: #d3d3d3;
  border: none;
  margin-right: 10px;
}
.modal-inbox-tour .modal-dialog .tour-content .carousel-inner .item,
.modal-task-tour .modal-dialog .tour-content .carousel-inner .item {
  width: 482px;
}
.modal-inbox-tour
  .modal-dialog
  .tour-content
  .carousel-inner
  .item
  .description-holder,
.modal-task-tour
  .modal-dialog
  .tour-content
  .carousel-inner
  .item
  .description-holder {
  padding: 14px;
  border-top: 1px solid #dcdcdc;
}
.modal-inbox-tour
  .modal-dialog
  .tour-content
  .carousel-inner
  .item
  .description-holder
  .modal-title,
.modal-task-tour
  .modal-dialog
  .tour-content
  .carousel-inner
  .item
  .description-holder
  .modal-title {
  font-size: 16px;
  text-align: center;
  color: #3e3e3e;
  margin-bottom: 3px;
}
.modal-inbox-tour
  .modal-dialog
  .tour-content
  .carousel-inner
  .item
  .description-holder
  .body-text,
.modal-task-tour
  .modal-dialog
  .tour-content
  .carousel-inner
  .item
  .description-holder
  .body-text {
  font-size: 13px;
  color: #3e3e3e;
  text-align: center;
  display: block;
}
.modal-inbox-tour .modal-dialog .carousel-control,
.modal-task-tour .modal-dialog .carousel-control {
  top: 235px;
  background: #0e57ab;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: 1;
  text-shadow: none;
  height: 30px;
  width: 30px;
  text-align: center;
}
.modal-inbox-tour .modal-dialog .carousel-control .fa-chevron-left,
.modal-inbox-tour .modal-dialog .carousel-control .fa-chevron-right,
.modal-inbox-tour .modal-dialog .carousel-control .icon-next,
.modal-inbox-tour .modal-dialog .carousel-control .icon-prev,
.modal-task-tour .modal-dialog .carousel-control .fa-chevron-left,
.modal-task-tour .modal-dialog .carousel-control .fa-chevron-right,
.modal-task-tour .modal-dialog .carousel-control .icon-next,
.modal-task-tour .modal-dialog .carousel-control .icon-prev {
  font-size: 20px;
  margin-top: -12px;
}
.modal-inbox-tour .modal-dialog .carousel-control .btn-done,
.modal-inbox-tour .modal-dialog .carousel-control .btn-next-arrow,
.modal-inbox-tour .modal-dialog .carousel-control .btn-prev-arrow,
.modal-task-tour .modal-dialog .carousel-control .btn-done,
.modal-task-tour .modal-dialog .carousel-control .btn-next-arrow,
.modal-task-tour .modal-dialog .carousel-control .btn-prev-arrow {
  color: #fff;
  height: 30px;
  line-height: 30px;
  background: #0e57ab;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  opacity: 1;
  text-shadow: none;
  display: block;
}
.modal-inbox-tour .modal-dialog .carousel-control .btn-next-arrow,
.modal-inbox-tour .modal-dialog .carousel-control .btn-prev-arrow,
.modal-task-tour .modal-dialog .carousel-control .btn-next-arrow,
.modal-task-tour .modal-dialog .carousel-control .btn-prev-arrow {
  width: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.modal-inbox-tour .modal-dialog .carousel-control .btn-done,
.modal-task-tour .modal-dialog .carousel-control .btn-done {
  width: 110px;
  font-size: 14px;
  font-weight: 700;
  line-height: 30px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.modal-inbox-tour .modal-dialog .carousel-control .btn-done:focus,
.modal-inbox-tour .modal-dialog .carousel-control .btn-done:hover,
.modal-task-tour .modal-dialog .carousel-control .btn-done:focus,
.modal-task-tour .modal-dialog .carousel-control .btn-done:hover {
  text-decoration: none;
}
.modal-inbox-tour .modal-dialog a.carousel-control,
.modal-task-tour .modal-dialog a.carousel-control {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
}
.tour-email-modal {
  width: 600px;
  border: 8px solid rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  -ms-box-sizing: content-box;
  box-sizing: content-box;
}
.tour-email-modal .tour-email-modal-content .tour-email-modal-header {
  padding: 30px;
  background: #0e57ab;
  color: #fff;
  z-index: 20;
  position: relative;
}
.tour-email-modal .tour-email-modal-content .tour-email-modal-header h2 {
  line-height: 1;
  font-weight: 300;
  font-size: 50px;
  margin: 0px 0px 10px;
}
.tour-email-modal .tour-email-modal-content .tour-email-modal-header h4 {
  font-weight: 300;
  font-size: 22px;
  width: 300px;
  color: #fff;
  margin: 0px;
}
.tour-email-modal .tour-email-modal-content .tour-email-modal-header .close {
  opacity: 1;
  top: 5px;
  right: 10px;
  position: absolute;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-header
  .close
  .fa {
  color: #fff;
  font-size: 16px;
}
.tour-email-modal .tour-email-modal-content .tour-email-modal-body {
  background: #0e57ab;
  color: #3e3e3e;
  display: block;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list {
  padding: 0;
  display: block;
  width: 100%;
  max-width: 100%;
  position: relative;
  margin: 0;
  background: #dcdcdc;
  height: 161px;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li:not(:last-child) {
  border-right: 1px solid #dcdcdc;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  .li-anim-all {
  background: #0e57ab;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li.hidefromtour {
  display: none;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li.animated-block {
  height: 161px;
  max-width: 120px;
  display: inline-block;
  vertical-align: top;
  height: 100%;
  position: relative;
  width: 100%;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li.animated-block
  .title {
  font-size: 14px;
  height: 46px;
  z-index: 20;
  vertical-align: middle;
  width: 100%;
  position: absolute;
  top: 0;
  text-align: center;
  margin: 0;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li.animated-block
  .title
  span {
  display: table-cell;
  vertical-align: middle;
  width: 120px;
  height: 46px;
  padding: 0 5px;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li.animated-block
  .content-show {
  max-height: 161px !important;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li.animated-block
  .box-content-visible {
  max-height: 161px;
  display: block;
  height: 161px;
  position: absolute;
  z-index: 5;
  padding-top: 46px;
  text-align: center;
  vertical-align: middle;
  width: 100%;
  overflow: hidden;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li.animated-block
  .box-content-visible
  .btn-start {
  margin: 10px;
  display: block;
  margin: 10px auto;
  outline: none;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  width: 100px;
  height: 29px;
  line-height: 25px;
  text-decoration: none;
  cursor: pointer;
  font-size: 17px;
  background: #0e57ab;
  padding: 0;
  text-transform: capitalize;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li.animated-block
  .box-content-visible
  .btn-start:hover {
  color: #fff;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li.animated-block
  .box-content-visible
  .btn.active,
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li.animated-block
  .box-content-visible
  .btn:active {
  box-shadow: none !important;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li.animated-block
  .box-content-visible
  i {
  font-size: 40px;
  margin: 10px 0;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li.animated-block
  .box-content {
  display: block;
  height: 161px;
  background: #f6f6f6;
  border-bottom: 1px solid #dcdcdc;
  position: absolute;
  z-index: 5;
  padding-top: 46px;
  text-align: center;
  vertical-align: middle;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.8s;
  transition: max-height 0.8s;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li.animated-block
  .box-content
  .btn-start {
  margin: 10px;
  display: block;
  outline: none;
  margin: 10px auto;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  width: 75px;
  height: 29px;
  line-height: 25px;
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
  background: #0e57ab;
  padding: 0;
  text-transform: capitalize;
  color: #fff;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li.animated-block
  .box-content
  .btn-start:hover {
  color: #fff;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li.animated-block
  .box-content
  .btn.active,
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li.animated-block
  .box-content
  .btn:active {
  box-shadow: none !important;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li.animated-block
  .box-content
  .fa {
  font-size: 40px;
  margin: 10px 0;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li.animated-block.mock-hover
  .box-content,
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li.animated-block:hover
  .box-content {
  max-height: 161px;
  border-bottom: none;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  li.animated-block.mock-hover
  .box-content {
  -webkit-transition: none;
  transition: none;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  .li-anim-cal,
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  .li-anim-clo,
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  .li-anim-con,
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  .li-anim-inb,
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  .li-anim-task {
  background: no-repeat scroll 0 100%/119px 115px;
}
.tour-email-modal
  .tour-email-modal-content
  .tour-email-modal-body
  ul.tour-nav-list
  .li-anim-pre {
  background: no-repeat scroll 0 100%/120px 115px;
}
.modal-start-all-tour {
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-start-all-tour .modal-dialog {
  width: 590px;
  padding: 0 55px;
}
.modal-start-all-tour .modal-dialog .tour-content {
  height: auto !important;
}
.modal-start-all-tour .modal-dialog .tour-content .carousel-indicators {
  bottom: 10px;
}
.modal-start-all-tour .modal-dialog .tour-content .carousel-indicators .active {
  background-color: #767676;
  width: 10px;
  height: 10px;
}
.modal-start-all-tour .modal-dialog .tour-content .carousel-indicators li {
  background-color: #ccc;
  border: none;
  margin-right: 10px;
  width: 8px;
  height: 8px;
}
.modal-start-all-tour .modal-dialog .tour-content .rp-modal-content {
  background: #fff;
}
.modal-start-all-tour
  .modal-dialog
  .tour-content
  .rp-modal-content
  .rp-modal-header {
  background: #54acd2;
}
.modal-start-all-tour
  .modal-dialog
  .tour-content
  .rp-modal-content
  .rp-modal-header
  .modal-title {
  text-align: center;
  padding: 10px 0px;
  font-size: 28px;
  color: #fff;
}
.modal-start-all-tour
  .modal-dialog
  .tour-content
  .rp-modal-content
  .rp-modal-footer {
  background: #fff;
  border-top: 1px solid #dcdcdc;
  height: 70px;
  padding: 18px;
  clear: both;
}
.modal-start-all-tour
  .modal-dialog
  .tour-content
  .rp-modal-content
  .rp-modal-body {
  padding: 20px;
}
.modal-start-all-tour
  .modal-dialog
  .tour-content
  .rp-modal-content
  .rp-modal-body
  p {
  margin-bottom: 20px;
  color: gray;
}
.modal-start-all-tour
  .modal-dialog
  .tour-content
  .rp-modal-content
  .rp-modal-body
  .content-text {
  color: gray;
  font-size: 14px;
}
.modal-start-all-tour
  .modal-dialog
  .tour-content
  .rp-modal-content
  .rp-modal-body
  .form-control {
  width: 65%;
}
.modal-start-all-tour
  .modal-dialog
  .tour-content
  .rp-modal-content
  .rp-modal-body
  .control-set {
  height: 35px;
  margin: 10px 0px;
  color: #3e3e3e;
}
.modal-start-all-tour
  .modal-dialog
  .tour-content
  .rp-modal-content
  .rp-modal-body
  .control-set
  label {
  margin: 7px 5px 0px 0px;
}
.side-sidebar {
  background: #fff;
  position: fixed;
  top: 0;
  height: 100%;
  max-height: 100%;
  width: 336px;
  max-width: 336px;
  border-left: 1px solid #ccc;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
  padding: 0px;
  z-index: 303;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  right: -342px;
}
.side-sidebar.slideopen {
  right: 0px;
  -webkit-transition: 0.75s;
  transition: 0.75s;
}
.side-sidebar .close {
  display: block;
  width: 10px;
  height: 10px;
  text-align: right;
  color: #3e3e3e;
  font-size: 18px;
  line-height: 10px;
  position: absolute;
  right: 0;
  padding: 0px;
  margin: 12px 12px 0px 0px;
  opacity: 1;
  text-shadow: none;
}
.side-sidebar .sidebarheader {
  padding: 24px 16px 0px;
}
.side-sidebar .sidebarheader h2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 25px;
  color: #3e3e3e;
  margin-bottom: 18px;
  margin-top: 0px;
  margin-left: 0px;
  min-height: 20px;
}
.side-sidebar .sidebarheader hr {
  margin-bottom: 0px;
}
.side-sidebar .sidebarcontent {
  padding: 10px 16px;
  overflow: auto;
}
.side-sidebar .sidebarcontent .sidebar-content-set {
  position: relative;
}
.side-sidebar .sidebarcontent form .form-group label.sidebarlabel {
  font-weight: 700;
  white-space: nowrap;
}
.side-sidebar .sidebarcontent p.note {
  color: gray;
}
.side-sidebar .sidebarcontent hr {
  margin-top: 10px;
  margin-bottom: 10px;
}
.side-sidebar .sidebarcontent .sidebar-bottom-right-buttons {
  height: auto;
  float: right;
  margin-bottom: 15px;
  vertical-align: bottom;
}
.side-sidebar .sidebarcontent .collaborators-calendar .attendees {
  padding-right: 0px !important;
}
.caldayview .loading {
  color: gray;
}
.caldayview .loading > p {
  margin-top: 30px;
}
.caldayview .dayview h3 {
  font-size: 24px;
  margin-bottom: 24px;
  margin-top: 0px;
  color: #3e3e3e;
  font-weight: lighter;
}
.caldayview .dayview h3 a,
.caldayview .dayview h3 a:active,
.caldayview .dayview h3 a:focus,
.caldayview .dayview h3 a:hover,
.caldayview .dayview h3 a:visited {
  cursor: pointer;
  color: #3e3e3e;
  text-decoration: none;
  font-weight: 400;
}
.caldayview .dayview h3 a .fa,
.caldayview .dayview h3 a:active .fa,
.caldayview .dayview h3 a:focus .fa,
.caldayview .dayview h3 a:hover .fa,
.caldayview .dayview h3 a:visited .fa {
  color: #3e3e3e;
  font-size: 16px;
}
.caldayview .dayview .fc {
  color: #bbb;
}
.caldayview .dayview .fc .fc-view table thead,
.caldayview .dayview .fc hr.fc-widget-header {
  display: none;
}
.caldayview .dayview .fc td.fc-widget-content {
  border-color: transparent;
}
.caldayview .dayview .fc .fc-day-grid td.fc-widget-content,
.caldayview .dayview .fc .fc-time-grid-container td.fc-widget-content {
  border-color: #eee;
  border-left: 0px;
  border-right: 0px;
}
.caldayview .dayview .fc .fc-day-grid td.fc-widget-content.fc-axis,
.caldayview .dayview .fc .fc-time-grid-container td.fc-widget-content.fc-axis {
  border-color: transparent;
  color: #3e3e3e;
}
.caldayview .dayview .fc .fc-day-grid .fc-slats > tr td.fc-widget-content,
.caldayview
  .dayview
  .fc
  .fc-time-grid-container
  .fc-slats
  > tr
  td.fc-widget-content {
  border-top-width: 2px;
  border-color: #eee;
  border-color: transparent;
}
.caldayview .dayview .fc .fc-day-grid .fc-time-grid-event.fc-tentative,
.caldayview
  .dayview
  .fc
  .fc-time-grid-container
  .fc-time-grid-event.fc-tentative {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-top-style: dotted;
  border-right-style: dotted;
  border-bottom-style: dotted;
}
.caldayview .dayview .fc .fc-bg table {
  border-collapse: separate;
}
.caldayview .dayview .fc .fc-bg table .fc-axis {
  vertical-align: top;
}
.caldayview .dayview .fc .fc-bg table .fc-day {
  background-color: #fff;
  border: 0px;
  border-top: 2px solid #eee;
}
pagination-directive {
  position: absolute;
  top: 100%;
  padding: 0 12px 10px;
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
  width: 100%;
  max-width: 100%;
  min-height: 62px;
  background: #fff;
  overflow: hidden;
  box-shadow: -2px -1px 2px #eee;
}
.pagination {
  float: right;
  width: 100%;
  margin: 0;
  color: #3e3e3e;
}
.pagination .pagerControls {
  float: left;
  margin-left: 10px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
}
.pagination .pagerControls button {
  float: left;
}
.pagination .pagerControls .pageInfo {
  display: inline-block;
  float: left;
  flex-grow: 1;
  text-align: center;
}
.pagination .pagerControls .pageInfo input {
  width: 40px;
  height: 30px;
  float: none;
  display: inline-block;
  text-align: center;
  margin: 0 5px;
  padding: 0;
  -moz-appearance: textfield;
}
.pagination .pagerControls .pageInfo input::-webkit-inner-spin-button,
.pagination .pagerControls .pageInfo input::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}
.pagination .pagerCount {
  float: left;
  line-height: 22px;
  font-size: 13px;
  height: 22px;
}
.paginationHoriz {
  float: right;
  width: 100%;
  margin: 0;
  color: #3e3e3e;
}
.paginationHoriz .pagerControls {
  float: left;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.paginationHoriz .pagerControls button {
  float: left;
  padding-right: 5px;
  padding-left: 5px;
}
.paginationHoriz .pagerControls .pageInfo {
  display: inline-block;
  float: left;
  flex-grow: 1;
  text-align: center;
  padding-right: 10px;
  padding-left: 5px;
}
.paginationHoriz .pagerControls .pageInfo input {
  width: 40px;
  height: 30px;
  float: none;
  display: inline-block;
  text-align: center;
  margin: 0 5px;
  padding: 0;
  -moz-appearance: textfield;
}
.paginationHoriz .pagerControls .pageInfo input::-webkit-inner-spin-button,
.paginationHoriz .pagerControls .pageInfo input::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}
.paginationHoriz .pagerCount {
  min-width: 100px;
  text-align: right;
  float: left;
  line-height: 30px;
  font-size: 13px;
  height: 30px;
  padding-right: 10px;
}
.dropdown-container {
  position: relative;
  display: block;
}
.dropdown-container .dropdown-select {
  color: #3e3e3e;
  background: #fff;
  cursor: pointer;
  padding: 6px 12px;
  height: 34px;
  border: 1px solid #949494;
  border-radius: 2px;
}
.dropdown-container .dropdown-select > .fa {
  float: left;
  font-size: 20px;
  width: 12px;
}
.dropdown-container .dropdown-select > .dropdown-selected-option-container {
  float: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  height: 100%;
  width: calc(100% - 12px);
}
.dropdown-container .dropdown-select.disabled {
  cursor: default;
  background-color: #eee;
}
.dropdown-container .dropdown-select.disabled + .tooltip {
  display: block !important;
}
.dropdown-container .dropdown-select + .tooltip {
  display: none !important;
}
.dropdown-container .dropdown-button + .dropdown-options-container {
  min-width: 0;
}
.dropdown-container .dropdown-options-container {
  color: #3e3e3e !important;
  overflow: hidden;
  white-space: nowrap;
  min-width: 100%;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.25);
  z-index: 1000;
}
.dropdown-container .dropdown-options-container label {
  display: block;
  margin: 4px 34px 4px 8px;
  border-bottom: 1px solid #dbdbdb;
}
.dropdown-container .dropdown-options-container .dropdown-options {
  overflow-y: auto;
  overflow-x: hidden;
  margin-right: -20px;
}
.dropdown-container
  .dropdown-options-container
  .dropdown-options
  .dropdown-option {
  height: 30px;
  padding: 5px 25px 5px 5px;
  cursor: pointer;
  overflow: hidden;
}
.dropdown-container
  .dropdown-options-container
  .dropdown-options
  .dropdown-option
  .fa {
  display: inline-block;
  width: 13px;
  font-size: 10px;
  color: #3e3e3e;
}
.dropdown-container
  .dropdown-options-container
  .dropdown-options
  .dropdown-option.highlighted {
  background-color: #0e57ab;
  color: #fff;
}
.dropdown-container
  .dropdown-options-container
  .dropdown-options
  .dropdown-option.highlighted
  .fa {
  color: #fff;
}
.dropdown-container
  .dropdown-options-container
  .dropdown-options-down-container,
.dropdown-container .dropdown-options-container .dropdown-options-up-container {
  height: 18px;
}
.dropdown-container .dropdown-options-container .dropdown-options-down,
.dropdown-container .dropdown-options-container .dropdown-options-up {
  height: 18px;
  text-align: center;
  cursor: pointer;
}
.dropdown-container .dropdown-options-container .dropdown-options-down:hover,
.dropdown-container .dropdown-options-container .dropdown-options-up:hover {
  background-color: #0e57ab;
  color: #fff;
}
.checkbox-directive {
  cursor: pointer;
}
.checkbox-directive.checkbox-directive-disabled {
  cursor: inherit;
  opacity: 0.5;
}
.radiobutton-directive {
  cursor: pointer;
  margin-left: -13px;
  font-size: 14px;
}
.radiobutton-directive.radiobutton-directive-disabled {
  cursor: inherit;
  opacity: 0.5;
}
input[type="radio"]:focus + .radiobutton-directive {
  outline: 2px solid #7dadd9;
  -moz-outline-radius: 3px;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.mobile .navbar-brand {
  float: none;
  margin: 0 auto;
}
.mobile .navbar-brand img {
  margin: 0 auto;
}
.mobile .content {
  text-align: center;
  padding: 75px 25px 0;
  color: #bbb;
}
.mobile .content .desktop-tablet {
  font-size: 100px;
}
.mobile .content h4 {
  font-size: 20px;
}
.addattendeesresources {
  position: relative;
  font-weight: 400;
  font-size: 13px;
}
.addattendeesresources .tooltip {
  position: absolute;
}
.addattendeesresources .suggestions {
  position: absolute;
  background-color: #fff;
  z-index: 1;
}
.addattendeesresources .suggestions .suggestion {
  min-height: 30px;
  padding: 5px 19px;
  border: 1px solid #fff;
  cursor: pointer;
}
.addattendeesresources .suggestions .suggestion.highlighted {
  background-color: #0e57ab;
  color: #fff;
}
.addattendeesresources .suggestions .suggestion.highlighted i {
  color: #fff;
}
.addattendeesresources .suggestions .suggestion span {
  color: #d5d5d5;
}
.addattendeesresources .suggestions .divider {
  height: 1px;
  background-color: #eee;
  margin: 8px;
}
.locationautocomplete {
  position: relative;
  font-weight: 400;
  font-size: 13px;
}
.locationautocomplete .suggestions {
  position: absolute;
  background-color: #fff;
  z-index: 1;
}
.locationautocomplete .suggestions .suggestion {
  min-height: 30px;
  padding: 5px 19px;
  border: 1px solid #fff;
  cursor: pointer;
}
.locationautocomplete .suggestions .suggestion.highlighted {
  background-color: #0e57ab;
  color: #fff;
}
.locationautocomplete .suggestions .suggestion.highlighted i {
  color: #fff;
}
.locationautocomplete .suggestions .suggestion span {
  color: #d5d5d5;
}
.locationautocomplete .suggestions .divider {
  height: 1px;
  background-color: #eee;
  margin: 8px;
}
.ellipsistooltip {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.customSpaceLoginLeft,
.customSpaceLoginRight {
  padding-top: 50px;
  padding-bottom: 20px;
}
.customSpaceLoginLeft .f-adv-b,
.customSpaceLoginRight .f-adv-b {
  margin-bottom: 30px;
}
.customSpaceLoginSocial {
  padding: 0px 20px 10px;
  color: #3e3e3e;
  line-height: 30px;
}
.customSpaceLoginSocial a {
  text-decoration: none;
  margin-right: 10px;
}
.customSpaceLoginSocial a.socialItem.facebook {
  color: #3b5998;
}
.customSpaceLoginSocial a.socialItem.twitter {
  color: #55acee;
}
.customSpaceLoginSocial a.socialItem.youtube {
  color: #cd201f;
}
.customSpaceLoginSocial a.socialItem.linkedin {
  color: #0077b5;
}
.customSpaceLoginSocial a:active.socialItem.facebook,
.customSpaceLoginSocial a:focus.socialItem.facebook,
.customSpaceLoginSocial a:hover.socialItem.facebook {
  color: #1e2e4f;
}
.customSpaceLoginSocial a:active.socialItem.twitter,
.customSpaceLoginSocial a:focus.socialItem.twitter,
.customSpaceLoginSocial a:hover.socialItem.twitter {
  color: #147bc9;
}
.customSpaceLoginSocial a:active.socialItem.youtube,
.customSpaceLoginSocial a:focus.socialItem.youtube,
.customSpaceLoginSocial a:hover.socialItem.youtube {
  color: #741212;
}
.customSpaceAppTop {
  text-align: center;
  z-index: 304;
}
.customSpaceAppTop,
.customSpaceMailRight {
  background-color: #f6f6f6;
  position: relative;
}
.customSpaceMailRight {
  float: right;
  z-index: 302;
  height: 100%;
}
.tooltip.contact-hover-tooltip,
.tooltip.top.contact-hover-tooltip {
  filter: alpha(opacity=100);
  opacity: 1;
}
.tooltip.contact-hover-tooltip .tooltip-arrow,
.tooltip.top.contact-hover-tooltip .tooltip-arrow {
  border-top-color: #fff;
}
.tooltip.contact-hover-tooltip .tooltip-arrow:after,
.tooltip.top.contact-hover-tooltip .tooltip-arrow:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  top: -9px;
  left: -4px;
  z-index: -1;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.5);
}
.tooltip.contact-hover-tooltip .tooltip-inner,
.tooltip.top.contact-hover-tooltip .tooltip-inner {
  max-width: none;
  text-align: left;
  background-color: inherit;
  color: #3e3e3e;
  border-radius: 0;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.5);
  padding: 13px;
  background: #fff;
  word-break: break-all;
  border-radius: 2px;
}
.tooltip.contact-hover-tooltip .tooltip-inner a,
.tooltip.contact-hover-tooltip .tooltip-inner a:focus,
.tooltip.contact-hover-tooltip .tooltip-inner a:hover,
.tooltip.top.contact-hover-tooltip .tooltip-inner a,
.tooltip.top.contact-hover-tooltip .tooltip-inner a:focus,
.tooltip.top.contact-hover-tooltip .tooltip-inner a:hover {
  display: block;
  margin-top: 8px;
  color: #0e57ab;
  text-decoration: none;
}
.tooltip.top .tooltip-arrow {
  border-top-color: #444;
}
.tooltip.right .tooltip-arrow {
  border-right-color: #444;
}
.tooltip.left .tooltip-arrow {
  border-left-color: #444;
}
.tooltip.bottom .tooltip-arrow {
  border-bottom-color: #444;
}
.tooltip-inner {
  background-color: #444;
  word-wrap: break-word;
}
.growlDimmer {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 699;
  opacity: 1;
  -webkit-transition: opacity linear 0.5s;
  transition: opacity linear 0.5s;
}
.growlDimmer.ng-hide {
  opacity: 0;
}
.growlcontain {
  position: fixed;
  bottom: 50px;
  left: 64px;
  height: auto;
  z-index: 700;
  min-height: 43px;
}
.growlcontain .messenger.uploading.ng-enter.ng-enter-active {
  -webkit-animation: c 4s;
  animation: c 4s;
  position: absolute;
}
.growlcontain.growlMaster .messenger.uploading.ng-enter.ng-enter-active {
  -webkit-animation: d 4s;
  animation: d 4s;
  position: absolute;
}
.growlcontain .messenger {
  padding: 3px 6px;
  margin: 3px 0px 0px;
  border-radius: 3px;
  color: #444;
  border-style: solid;
  border-width: 1px;
  min-width: 200px;
}
.growlcontain .messenger.alert-success {
  border-color: #70bd6d;
  background-color: #d2fad5;
}
.growlcontain .messenger.ng-enter,
.growlcontain .messenger.ng-leave {
  -webkit-transition: opacity linear 0.5s;
  transition: opacity linear 0.5s;
}
.growlcontain .messenger.ng-enter,
.growlcontain .messenger.ng-leave.ng-leave-active {
  opacity: 0;
}
.growlcontain .messenger.ng-enter.ng-enter-active,
.growlcontain .messenger.ng-leave {
  opacity: 1;
}
.growlcontain .messenger .icon {
  text-align: center;
  width: 32px;
  height: 32px;
  line-height: 32px;
  float: left;
}
.growlcontain .messenger .text {
  max-width: 154px;
  padding: 6px 0px;
  float: left;
}
.growlcontain .messenger .text.longtext {
  max-width: 188px;
  width: 100%;
  text-align: center;
}
.growlcontain .messenger .text:after {
  clear: both;
}
.growlcontain.growlFullPage {
  top: 125px;
  bottom: auto;
  left: 50%;
  margin-left: -100px;
}
.growlcontain.growlFullPage .messenger {
  width: 200px;
  text-align: center;
}
.growlcontain.growlFullPage .messenger .icon,
.growlcontain.growlFullPage .messenger .text {
  line-height: 32px;
  display: inline;
  float: none;
}
.growlcontain.growlFullPage.growlMaster
  .messenger.uploading.ng-enter.ng-enter-active,
.growlcontain.growlFullPage .messenger.uploading.ng-enter.ng-enter-active {
  -webkit-animation: none;
  animation: none;
}
@keyframes c {
  0%,
  80% {
    left: 50vw;
    margin-left: -50px;
    bottom: 100vh;
    margin-bottom: -150px;
  }
  to {
    left: 0vw;
    margin-left: 0px;
    bottom: 0vh;
    margin-bottom: 0px;
  }
}
@-webkit-keyframes c {
  0%,
  80% {
    left: 50vw;
    margin-left: -50px;
    bottom: 100vh;
    margin-bottom: -150px;
  }
  to {
    left: 0vw;
    margin-left: 0px;
    bottom: 0vh;
    margin-bottom: 0px;
  }
}
@keyframes d {
  0%,
  80% {
    left: 50vw;
    margin-left: -50px;
    bottom: 100vh;
    margin-bottom: -150px;
  }
  to {
    left: 0vw;
    margin-left: 0px;
    bottom: 43px;
    margin-bottom: 0px;
  }
}
@-webkit-keyframes d {
  0%,
  80% {
    left: 50vw;
    margin-left: -50px;
    bottom: 100vh;
    margin-bottom: -150px;
  }
  to {
    left: 0vw;
    margin-left: 0px;
    bottom: 43px;
    margin-bottom: 0px;
  }
}
.attachmentDirectiveFixed {
  position: fixed;
  bottom: 0px;
  height: auto;
}
.attachmentPanel {
  bottom: 0px;
  right: 0px;
  width: inherit;
  background-color: #fff;
  padding: 0 0 0 15px;
  position: relative;
}
@media (max-width: 768px) {
  .attachmentPanel {
    max-width: 100%;
  }
}
.attachmentPanel .collapseCaret {
  text-decoration: none;
  color: #3e3e3e;
  display: inline-block;
  outline: none;
}
.attachmentPanel .collapseCaret:hover {
  text-decoration: none;
}
.attachmentPanel .collapseCaret .fa {
  width: 10px;
}
.attachmentPanel .attachmentBlock {
  clear: both;
  padding-top: 3px;
  background-color: #fff;
  height: inherit;
  min-height: 40px;
}
.attachmentPanel .attachmentBlock.fixedMaxHeight {
  max-height: 86px;
}
.attachmentPanel .attachmentBlock.addSeparator {
  border-top: 1px solid #c4c4c4;
}
.attachmentPanel .attachmentBlock .attachmentPreview .attachmentItem {
  display: inline-block;
  width: calc(100% - 25px);
  margin-left: 10px;
  margin-right: 15px;
  height: 40px;
  line-height: 40px;
  color: #595959;
}
.attachmentPanel .attachmentBlock .attachmentPreview .attachmentItem > div {
  float: left;
  margin-right: 8px;
}
.attachmentPanel
  .attachmentBlock
  .attachmentPreview
  .attachmentItem
  > div:nth-child(2) {
  max-width: 30%;
  white-space: nowrap;
}
.attachmentPanel
  .attachmentBlock
  .attachmentPreview
  .attachmentItem
  > div:nth-child(2)
  a {
  display: block;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
}
.attachmentPanel
  .attachmentBlock
  .attachmentPreview
  .attachmentItem
  > div:nth-child(3) {
  max-width: 10%;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.attachmentPanel
  .attachmentBlock
  .attachmentPreview
  .attachmentItem
  > div
  .fa-fw {
  text-align: left;
}
.attachmentPanel
  .attachmentBlock
  .attachmentPreview
  .attachmentItem
  > div:nth-child(2) {
  max-width: 45%;
}
.attachmentPanel
  .attachmentBlock
  .attachmentPreview
  .attachmentItem
  .attachmentActions {
  float: right;
  margin-right: 0px;
}
.attachmentPanel
  .attachmentBlock
  .attachmentPreview
  .attachmentItem
  .attachmentActions
  a {
  padding-left: 10px;
}
.attachmentPanel
  .attachmentBlock
  .attachmentPreview
  .attachmentItem
  .attachmentElementIcon {
  font-size: 48px;
  display: inline-block;
  height: 50px;
  width: 60px;
  padding: 0px;
  line-height: 0px;
  position: relative;
  overflow: hidden;
  max-width: 50px;
  max-height: 40px;
}
.attachmentPanel
  .attachmentBlock
  .attachmentPreview
  .attachmentItem
  .attachmentElementIcon
  .fa {
  display: none;
}
.attachmentPanel
  .attachmentBlock
  .attachmentPreview
  .attachmentItem
  .attachmentElementIcon:hover
  .fa {
  display: block;
  color: #fff;
  z-index: 2;
  cursor: pointer;
  position: absolute;
  top: 13px;
  font-size: 16px;
}
.attachmentPanel
  .attachmentBlock
  .attachmentPreview
  .attachmentItem
  .attachmentElementIcon:hover
  .fa.fa-download {
  right: 7px;
}
.attachmentPanel
  .attachmentBlock
  .attachmentPreview
  .attachmentItem
  .attachmentElementIcon:hover
  .fa.fa-download.full-width-attachemt-icon {
  right: 17px;
}
.attachmentPanel
  .attachmentBlock
  .attachmentPreview
  .attachmentItem
  .attachmentElementIcon:hover
  .fa.fa-eye {
  left: 7px;
}
.attachmentPanel
  .attachmentBlock
  .attachmentPreview
  .attachmentItem
  .attachmentElementIcon
  img {
  display: block;
  position: absolute;
  object-fit: cover;
  width: 50px;
  height: 40px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.attachmentPanel
  .attachmentBlock
  .attachmentPreview
  .attachmentItem
  .attachmentElementDetails {
  display: inline-block;
  vertical-align: top;
  margin-left: 5px;
}
.attachmentPanel
  .attachmentBlock
  .attachmentPreview
  .attachmentItem
  .attachmentElementDetails
  .attachmentElementName {
  margin: 0px;
}
.attachmentPanel .attachmentBlock .collapsebtn {
  background: transparent;
  border: none;
  color: #000;
  width: 12px;
  margin-right: 2px;
  padding: 0px;
  text-align: left;
  outline: none;
}
.attachmentPanel .attachmentBlock a.collapseCaret {
  color: #333;
}
.attachmentPanel .attachmentBlock a.collapseCaret:focus,
.attachmentPanel .attachmentBlock a.collapseCaret:hover {
  text-decoration: none;
}
.attachmentPanel .attachmentBlock #newattachmentpanel {
  max-height: 200px;
  overflow: auto;
}
.attachmentPanel .attachmentBlock .attachments_title {
  height: 36px;
  line-height: 36px;
  display: block;
  margin-left: 10px;
  font-weight: 700;
  overflow: hidden;
  color: #3e3e3e;
}
.attachmentPanel .attachmentBlock .attachments_title .attachments_title_text {
  color: #3e3e3e;
}
.attachmentPanel .attachmentBlock .attachments_title .downloadAllLink {
  float: right;
  margin-right: 15px;
  color: #0e57ab;
}
.attachmentPanel
  .attachmentBlock
  .attachments_title
  .attachments_title_details {
  font-weight: 400;
  color: #595959;
}
.attachmentPanel .attachmentBlock .attachments_static_title {
  height: 36px;
  line-height: 36px;
  display: block;
  margin-left: 10px;
  font-weight: 700;
  overflow: hidden;
  color: #3e3e3e;
}
.attachmentPanel
  .attachmentBlock
  .attachments_static_title
  .attachments_title_text {
  color: #3e3e3e;
}
.attachmentPanel .attachmentBlock .attachments_static_title .downloadAllLink {
  float: right;
  margin-right: 15px;
  color: #0e57ab;
}
.attachmentPanel
  .attachmentBlock
  .attachments_static_title
  .attachments_title_details {
  font-weight: 400;
  color: #595959;
}
.attachmentPanel .attachmentBlock .attachmentListContainer a,
.attachmentPanel .attachmentBlock .attachmentListContainer a:active,
.attachmentPanel .attachmentBlock .attachmentListContainer a:hover {
  color: #0e57ab;
}
.attachmentPanel.no-header {
  padding-left: 0px;
  padding-right: 0px;
  margin-left: -10px;
  margin-right: -10px;
}
.attachmentPanel.no-header .attachmentBlock .attachmentPreview {
  max-height: 130px;
}
.attachmentPanel.no-header
  .attachmentBlock
  .attachmentPreview
  .attachmentListContainer
  .attachmentItem {
  margin-left: 10px;
  margin-right: 10px;
}
.dropzoneScroll {
  position: relative;
}
.dropzoneScroll .dropzoneScrollBottomArea,
.dropzoneScroll .dropzoneScrollTopArea {
  content: "";
  position: absolute;
  height: 30px;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.dropzoneScroll .dropzoneScrollTopArea {
  top: 0;
}
.dropzoneScroll .dropzoneScrollBottomArea {
  bottom: 0;
}
[dynamicdirectiverun] > a {
  position: absolute;
  top: 2px;
  right: 0;
  text-decoration: none;
  padding: 0 5px;
  min-width: 70px;
  text-align: left;
  outline: none;
  background: #fff;
}
[dynamicdirectiverun] > a span.fa {
  margin: 0 3px !important;
  font-weight: 700;
  padding: auto !important;
}
[dynamicdirectiverun].ccEntity,
[dynamicdirectiverun].toEntity {
  padding-right: 70px !important;
  float: left;
}
[dynamicdirectiverun] {
  max-height: 26px;
  overflow: hidden;
}
[dynamicdirectiverun].lessContent {
  max-height: 4500px;
}
.files-preview-modal .modal-dialog .modal-content .image-name {
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 30px;
  padding-right: 20px;
}
.files-preview-modal .modal-dialog .modal-content .image-box {
  text-align: center;
}
.files-preview-modal .modal-dialog .modal-content .image-box.zoomed {
  overflow: auto;
}
.files-preview-modal .modal-dialog .modal-content .image-box.zoomed img {
  left: 0%;
  top: 0%;
  transform: none;
}
.contact-groups ul,
.contact-groups ul.dropdown-menu.autofill-list-container.dropdown-hover > li {
  padding: 0px;
}
.contact-groups
  ul.dropdown-menu.autofill-list-container.dropdown-hover
  > li
  > a {
  margin: 0px;
  line-height: 32px;
}
#mini-calendar .goToDateContainer {
  display: block;
}
#mini-calendar .goToDateContainer .form-group {
  position: relative;
  margin-bottom: 5px;
}
#mini-calendar .goToDateContainer .form-group .tooltip.top {
  top: -30px;
  right: 0px;
  display: block;
  position: absolute;
}
#mini-calendar .goToDateContainer .form-group .tooltip.top .tooltip-arrow {
  right: 12px;
  left: auto;
}
#mini-calendar .goToDateContainer .has-error:before {
  content: "!";
  color: #ad1b00;
  position: relative;
  right: 10px;
  top: 18px;
  float: right;
  font-size: 18px;
  font-weight: 700;
  line-height: 0px;
}
#mini-calendar .goToDateContainer .has-error .error-message {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  background-color: #595959;
  color: #fff;
  padding: 6px 7px;
  position: relative;
  top: 5px;
}
#mini-calendar .goToDateContainer .has-error .error-message:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #595959;
  top: -12px;
  right: 12px;
}
.onlinestoragepopup-window .modal-content {
  border-radius: 0;
}
.onlinestoragepopup {
  width: 772px;
}
.onlinestoragepopup button.fa.fa-close {
  float: right;
  font-size: 16px;
  margin-right: 10px;
  margin-top: 10px;
  width: 16px;
  height: 16px;
}
.onlinestoragepopup .folders button,
.onlinestoragepopup .toolbar .path button,
.onlinestoragepopup .toolbar form button,
.onlinestoragepopup button.fa.fa-close,
.onlinestoragepopup td button,
.onlinestoragepopup th button {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: none;
  border: 0;
}
.onlinestoragepopup .folders,
.onlinestoragepopup .title,
.onlinestoragepopup .toolbar {
  padding-left: 25px;
  padding-right: 25px;
}
.onlinestoragepopup .folders,
.onlinestoragepopup .toolbar .path-container {
  font-weight: 700;
}
.onlinestoragepopup .title {
  font-size: 23px;
  line-height: 23px;
  padding-top: 22px;
}
.onlinestoragepopup .folders {
  font-size: 17px;
  line-height: 17px;
  padding-top: 8px;
}
.onlinestoragepopup .folders button {
  color: #0e57ab;
  margin: 0 5px;
}
.onlinestoragepopup .folders button.current {
  color: inherit;
  text-decoration: underline;
}
.onlinestoragepopup .toolbar {
  padding-top: 4px;
  padding-bottom: 8px;
}
.onlinestoragepopup .toolbar .path-container {
  display: inline-block;
}
.onlinestoragepopup .toolbar .path-container .path {
  display: inline-block;
  padding-top: 15px;
  font-size: 15px;
  line-height: 15px;
  margin-right: 5px;
}
.onlinestoragepopup .toolbar .path-container .path:before {
  content: ">";
}
.onlinestoragepopup .toolbar .path-container .path:first-child:before {
  content: "";
}
.onlinestoragepopup .toolbar .path-container .path button {
  color: #0e57ab;
}
.onlinestoragepopup .toolbar .path-container .path:last-child button {
  color: inherit;
}
.onlinestoragepopup .toolbar form {
  display: inline-block;
  position: relative;
  vertical-align: top;
}
.onlinestoragepopup .toolbar form input {
  height: 30px;
  width: 230px;
}
.onlinestoragepopup .toolbar form button {
  position: absolute;
  right: 1px;
  top: 1px;
  height: 28px;
  width: 28px;
}
.onlinestoragepopup .toolbar .btn {
  vertical-align: top;
  font-size: 20px;
  width: 30px;
  height: 30px;
  padding: 0;
  margin-left: 2px;
}
.onlinestoragepopup .toolbar .btn .fa {
  display: block;
}
.onlinestoragepopup .toolbar .btn .fa-th {
  padding-top: 2px;
}
.onlinestoragepopup table {
  width: 100%;
}
.onlinestoragepopup table thead tr {
  display: block;
  height: 30px;
  color: #fff;
  background: #595959;
}
.onlinestoragepopup table thead tr th {
  font-weight: 400;
}
.onlinestoragepopup table thead tr .type-column.sorted {
  padding-right: 17px;
}
.onlinestoragepopup table thead tr .date-modified-column.sorted {
  padding-right: 0;
}
.onlinestoragepopup table thead tr button {
  height: 28px;
}
.onlinestoragepopup table thead tr button .fa {
  width: 20px;
  margin-top: 3px;
  float: right;
}
.onlinestoragepopup table tbody {
  height: 334px;
  display: block;
}
.onlinestoragepopup table tbody.loading tr {
  display: block;
}
.onlinestoragepopup table tbody.loading tr td {
  display: block;
  text-align: center;
  padding-top: 55px;
  font-size: 19px;
}
.onlinestoragepopup table tbody.loading tr td .fa-cog {
  font-size: 80px;
  margin-bottom: 3px;
}
.onlinestoragepopup table tbody.list-view-content {
  overflow: auto;
  border-bottom: 1px solid #dcdcdc;
}
.onlinestoragepopup table tbody.list-view-content tr.empty {
  display: block;
}
.onlinestoragepopup table tbody.list-view-content tr.empty td {
  display: block;
  text-align: center;
  padding-top: 80px;
  font-size: 19px;
}
.onlinestoragepopup table tbody.list-view-content tr.empty td .fa-briefcase,
.onlinestoragepopup table tbody.list-view-content tr.empty td .fa-search {
  font-size: 50px;
  height: 58px;
}
.onlinestoragepopup table tbody.list-view-content tr.file,
.onlinestoragepopup table tbody.list-view-content tr.folder {
  height: 37px;
  border-bottom: 1px solid #dcdcdc;
}
.onlinestoragepopup
  table
  tbody.list-view-content
  tr.file
  .checkbox-column
  .checkbox-directive,
.onlinestoragepopup
  table
  tbody.list-view-content
  tr.folder
  .checkbox-column
  .checkbox-directive {
  font-size: 18px;
  margin-top: 3px;
}
.onlinestoragepopup
  table
  tbody.list-view-content
  tr.file
  .type-column
  .fa.fa-folder-open,
.onlinestoragepopup
  table
  tbody.list-view-content
  tr.folder
  .type-column
  .fa.fa-folder-open {
  height: 20px;
  width: 20px;
  font-size: 20px;
  padding-top: 2px;
}
.onlinestoragepopup table tbody.list-view-content tr.file .type-column img,
.onlinestoragepopup table tbody.list-view-content tr.folder .type-column img {
  height: 25px;
  width: 20px;
}
.onlinestoragepopup table tbody.list-view-content tr.file .name-column,
.onlinestoragepopup table tbody.list-view-content tr.folder .name-column {
  word-break: break-all;
  width: 388px;
}
.onlinestoragepopup table tbody.list-view-content tr.file .name-column > button,
.onlinestoragepopup
  table
  tbody.list-view-content
  tr.folder
  .name-column
  > button {
  max-width: 383px;
  text-align: left;
}
.onlinestoragepopup table tbody.list-view-content tr.file .name-column > div,
.onlinestoragepopup table tbody.list-view-content tr.folder .name-column > div {
  max-width: 383px;
}
.onlinestoragepopup table .checkbox-column,
.onlinestoragepopup table .date-modified-column,
.onlinestoragepopup table .type-column {
  text-align: right;
}
.onlinestoragepopup table .checkbox-column {
  width: 37px;
}
.onlinestoragepopup table .type-column {
  width: 87px;
  padding-right: 37px;
}
.onlinestoragepopup table .name-column {
  width: 388px;
}
.onlinestoragepopup table .size-column {
  width: 150px;
}
.onlinestoragepopup table .date-modified-column {
  width: 120px;
  padding-right: 20px;
}
.onlinestoragepopup .thumbnail-view {
  height: 364px;
  overflow: auto;
  padding-left: 26px;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}
.onlinestoragepopup .thumbnail-view .loading {
  text-align: center;
  padding-top: 55px;
  font-size: 19px;
}
.onlinestoragepopup .thumbnail-view .loading .fa-cog {
  font-size: 80px;
  margin-bottom: 3px;
}
.onlinestoragepopup .thumbnail-view .empty {
  text-align: center;
  padding-top: 80px;
  font-size: 19px;
}
.onlinestoragepopup .thumbnail-view .empty .fa-briefcase,
.onlinestoragepopup .thumbnail-view .empty .fa-search {
  font-size: 50px;
  height: 58px;
}
.onlinestoragepopup .thumbnail-view .thumbnail-file,
.onlinestoragepopup .thumbnail-view .thumbnail-folder {
  display: inline-block;
  position: relative;
  width: 140px;
  height: 145px;
  margin-right: 52px;
  margin-top: 26px;
  border-radius: 2px;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.onlinestoragepopup .thumbnail-view .thumbnail-file:nth-child(4n),
.onlinestoragepopup .thumbnail-view .thumbnail-folder:nth-child(4n) {
  margin-right: 0;
}
.onlinestoragepopup .thumbnail-view .thumbnail-file .thumbnail-footer,
.onlinestoragepopup .thumbnail-view .thumbnail-folder .thumbnail-footer {
  height: 46px;
  color: #fff;
  background: #767676;
  text-align: center;
  padding-top: 5px;
}
.onlinestoragepopup .thumbnail-view .thumbnail-folder {
  cursor: pointer;
}
.onlinestoragepopup .thumbnail-view .thumbnail-folder .fa-folder-open {
  position: absolute;
  font-size: 60px;
  top: 27px;
  left: 41px;
}
.onlinestoragepopup .thumbnail-view .thumbnail-folder .thumbnail-footer {
  margin-top: 99px;
}
.onlinestoragepopup
  .thumbnail-view
  .thumbnail-folder
  .thumbnail-footer
  .folder-name {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
}
.onlinestoragepopup .thumbnail-view .thumbnail-file .checkbox-directive {
  display: none;
  position: absolute;
  z-index: 2;
  top: 6px;
  left: 8px;
  font-size: 17px;
  color: #fff;
}
.onlinestoragepopup .thumbnail-view .thumbnail-file .thumbnail-overlay {
  background: none;
  height: 99px;
  z-index: 1;
  position: relative;
}
.onlinestoragepopup .thumbnail-view .thumbnail-file.checked .checkbox-directive,
.onlinestoragepopup .thumbnail-view .thumbnail-file:hover .checkbox-directive {
  display: block;
}
.onlinestoragepopup .thumbnail-view .thumbnail-file.checked .thumbnail-overlay,
.onlinestoragepopup .thumbnail-view .thumbnail-file:hover .thumbnail-overlay {
  background: rgba(0, 0, 0, 0.4);
}
.onlinestoragepopup .thumbnail-view .thumbnail-file .file-icon {
  position: absolute;
  color: #fff;
  text-align: center;
  top: 30px;
  width: 100%;
  font-size: 30px;
}
.onlinestoragepopup .thumbnail-view .thumbnail-file .file-icon.fa {
  top: 27px;
  font-size: 50px;
}
.onlinestoragepopup .thumbnail-view .thumbnail-file .thumbnail-footer {
  padding-top: 5px;
}
.onlinestoragepopup
  .thumbnail-view
  .thumbnail-file
  .thumbnail-footer
  .file-name-container {
  font-size: 0;
  white-space: nowrap;
}
.onlinestoragepopup
  .thumbnail-view
  .thumbnail-file
  .thumbnail-footer
  .file-name-container
  .file-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 110px;
}
.onlinestoragepopup
  .thumbnail-view
  .thumbnail-file
  .thumbnail-footer
  .file-name-container
  .file-extention,
.onlinestoragepopup
  .thumbnail-view
  .thumbnail-file
  .thumbnail-footer
  .file-name-container
  .file-name {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
}
.onlinestoragepopup .footer {
  height: 60px;
  padding: 15px 20px;
}
.onlinestoragepopup .footer > span {
  vertical-align: middle;
}
.onlinestoragepopup .footer .buttons {
  float: right;
}
.onlinestoragepopup .footer .buttons button {
  margin-left: 8px;
  min-width: 100px;
}
form .composeheaders .form-group-sm input.form-control {
  height: 28px;
  position: relative;
  top: 1px;
}
.featurespotlight-window .modal-content {
  border-radius: 3px;
  width: 485px;
  text-align: center;
  position: static;
}
.featurespotlight-window .modal-content .header {
  text-align: left;
  position: absolute;
  height: 35px;
  left: 1px;
  right: 1px;
  color: #fff;
  background-color: rgba(40, 52, 66, 0.85);
  padding: 10px 10px 0 16px;
}
.featurespotlight-window .modal-content .header button.link-button {
  color: #fff;
}
.featurespotlight-window .modal-content .image {
  height: 220px;
}
.featurespotlight-window .modal-content .title {
  font-size: 24px;
  padding-top: 18px;
}
.featurespotlight-window .modal-content .subtitle {
  padding: 1px 15px 27px;
}
.featurespotlight-window .modal-content .description {
  display: inline-block;
  text-align: left;
  padding: 0 50px;
}
.featurespotlight-window .modal-content .description > div {
  min-height: 26px;
  padding-bottom: 12px;
}
.featurespotlight-window .modal-content .description > div .fa {
  font-size: 17px;
  color: #0e57ab;
}
.featurespotlight-window .modal-content .summary {
  margin-top: 5px;
  margin-bottom: 7px;
}
.featurespotlight-window .modal-content .footer {
  text-align: center;
  padding-top: 20px;
}
.featurespotlight-window .modal-content .footer button {
  font-size: 14px;
}
.featurespotlight-window .modal-content .footer .btn-primary {
  width: 150px;
  margin-left: 10px;
  margin-right: 10px;
}
.featurespotlight-window .modal-content .footer .or {
  padding-top: 20px;
  padding-bottom: 10px;
}
.featurespotlight-window .modal-content .footer .or hr {
  display: inline-block;
  width: 200px;
  margin: 3px 10px;
  border-color: #d5d5d5;
}
.featurespotlight-window .modal-content .footer .dont-show {
  height: 27px;
  text-align: left;
  padding-left: 10px;
  margin-top: -2px;
}
.featurespotlight-window .modal-content .footer .dont-show .checkbox-directive {
  font-size: 15px;
}
.featurespotlight-window .modal-content .footer .footerContent {
  padding-left: 20px;
  padding-right: 20px;
}
.featurespotlight-window .modal-content .next-slide,
.featurespotlight-window .modal-content .previous-slide {
  position: absolute;
  top: 339px;
  font-size: 37px;
}
.featurespotlight-window .modal-content .next-slide .fa,
.featurespotlight-window .modal-content .previous-slide .fa {
  background: #fff;
  line-height: 25px;
  width: 31px;
}
.featurespotlight-window .modal-content .previous-slide {
  left: -50px;
}
.featurespotlight-window .modal-content .next-slide {
  right: -50px;
}
.featurespotlight-window .modal-content .table-with-cells {
  display: table;
}
.featurespotlight-window .modal-content .table-with-cells > * {
  display: table-cell;
  vertical-align: top;
}
.featurespotlight-window .modal-content .table-with-cells > .fa {
  width: 40px;
  text-align: center;
}
.featurespotlight-window .modal-content .featurespotlight-online_fax .image {
  background-image: url(../images/featurespotlight/image-spotlight-onlinefax.png);
}
.featurespotlight-window .modal-content .featurespotlight-address_books .image {
  background-image: url(../images/featurespotlight/image-spotlight-addressbooks.png);
}
.featurespotlight-window
  .modal-content
  .featurespotlight-calendar_events
  .image {
  background-image: url(../images/featurespotlight/image-spotlight-events.png);
}
.featurespotlight-window
  .modal-content
  .featurespotlight-calendar_events
  .footer
  .btn-primary {
  width: 180px;
}
.featurespotlight-window .modal-content .featurespotlight-placeholders .image {
  background-image: url(../images/featurespotlight/image-spotlight-placeholders.png);
}
.featurespotlight-window
  .modal-content
  .featurespotlight-placeholders
  .description {
  padding: 0 40px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-placeholders
  .description
  > div {
  padding-bottom: 12px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-placeholders
  .description
  > div:nth-child(1) {
  height: 23px;
  text-align: center;
  padding: 0 20px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-placeholders
  .description
  > div:nth-child(2) {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 16px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-placeholders
  .footer
  .btn-primary {
  margin-top: 16px;
  width: 180px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-threaded_messages
  .image.on {
  background-image: url(../images/featurespotlight/image-spotlight-threading-on.png);
}
.featurespotlight-window
  .modal-content
  .featurespotlight-threaded_messages
  .image.off {
  background-image: url(../images/featurespotlight/image-spotlight-threading-off.png);
}
.featurespotlight-window
  .modal-content
  .featurespotlight-threaded_messages
  .description {
  padding: 0 40px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-threaded_messages
  .description
  > div {
  padding-bottom: 22px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-threaded_messages
  .description
  > div
  .fa {
  font-size: 20px;
  padding-right: 0;
  margin-right: 8px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-threaded_messages
  .footer {
  padding-top: 2px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-threaded_messages
  .footer
  .btn-primary {
  margin-bottom: 18px;
  width: 200px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-threaded_messages
  .footer
  .or {
  padding-top: 13px;
}
.featurespotlight-window .modal-content .featurespotlight-compose_mode .image {
  background-image: url(../images/featurespotlight/image-spotlight-fulleditor.png);
}
.featurespotlight-window
  .modal-content
  .featurespotlight-compose_mode
  .description {
  padding: 0 58px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-compose_mode
  .description
  > div {
  padding-bottom: 18px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-compose_mode
  .description
  > div
  .fa {
  font-size: 20px;
  padding-right: 0;
  margin-right: 8px;
}
.featurespotlight-window .modal-content .featurespotlight-compose_mode .footer {
  padding-top: 11px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-compose_mode
  .footer
  .btn-primary {
  margin-bottom: 18px;
  width: 200px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-compose_mode
  .footer
  > div:nth-of-type(1) {
  padding: 0 50px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-message_filters
  .description {
  padding: 0 35px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-message_filters
  .image {
  background-image: url(../images/featurespotlight/image-spotlight-messagefilters.png);
}
.featurespotlight-window
  .modal-content
  .featurespotlight-message_filters
  .footer
  .btn-primary {
  width: 180px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-windowed_view
  .image.on {
  background-image: url(../images/featurespotlight/image-spotlight-windows-on.png);
}
.featurespotlight-window
  .modal-content
  .featurespotlight-windowed_view
  .image.off {
  background-image: url(../images/featurespotlight/image-spotlight-windows-off.png);
}
.featurespotlight-window
  .modal-content
  .featurespotlight-windowed_view
  .subtitle {
  padding: 0 70px 32px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-windowed_view
  .description {
  padding: 0 78px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-windowed_view
  .description
  > div {
  padding-bottom: 30px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-windowed_view
  .description
  > div
  .fa {
  font-size: 20px;
  padding-right: 0;
  margin-right: 8px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-windowed_view
  .footer {
  padding-top: 0;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-windowed_view
  .footer
  .btn-primary {
  margin-bottom: 18px;
  width: 200px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-windowed_view
  .footer
  > div:nth-of-type(1) {
  padding: 0 50px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-windowed_view
  .footer
  .or {
  padding-top: 13px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-mailbox_views
  .image.vert {
  background-image: url(../images/featurespotlight/image-spotlight-mailbox-vertical.png);
}
.featurespotlight-window
  .modal-content
  .featurespotlight-mailbox_views
  .image.horiz {
  background-image: url(../images/featurespotlight/image-spotlight-mailbox-horizontalsplit.png);
}
.featurespotlight-window
  .modal-content
  .featurespotlight-mailbox_views
  .image.horizfull {
  background-image: url(../images/featurespotlight/image-spotlight-mailbox-horizontalfull.png);
}
.featurespotlight-window
  .modal-content
  .featurespotlight-mailbox_views
  .description {
  padding: 0 105px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-mailbox_views
  .description
  > div {
  padding-bottom: 25px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-mailbox_views
  .description
  > div
  .fa {
  font-size: 20px;
  padding-right: 0;
  margin-right: 8px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-mailbox_views
  .footer {
  padding-top: 3px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-mailbox_views
  .footer
  .btn-primary {
  width: 200px;
}
.featurespotlight-window .modal-content .featurespotlight-tasks .image {
  background-image: url(../images/featurespotlight/image-spotlight-tasks.png);
}
.featurespotlight-window .modal-content .featurespotlight-tasks .footer {
  padding-top: 16px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-tasks
  .footer
  .btn-primary {
  width: 180px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-empty_mailbox_folder
  .image {
  background-image: url(../images/featurespotlight/image-spotlight-emptyfolder.png);
}
.featurespotlight-window
  .modal-content
  .featurespotlight-empty_mailbox_folder
  .description {
  text-align: center;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-empty_mailbox_folder
  .description
  > div {
  min-height: 33px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-empty_mailbox_folder
  .description
  > div
  .fa {
  font-size: 20px;
  line-height: 15px;
  padding-left: 5px;
  padding-right: 0;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-empty_mailbox_folder
  .footer {
  padding-top: 16px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-empty_mailbox_folder
  .footer
  hr {
  margin: 0 20px;
  border-color: #d5d5d5;
  padding-bottom: 16px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-highlighting_filters
  .description {
  padding: 0 48px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-highlighting_filters
  .description
  > div {
  height: 25px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-highlighting_filters
  .description
  > div
  .fa-bookmark {
  font-size: 20px;
  line-height: 15px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-highlighting_filters
  .description
  > div:nth-child(1)
  .fa-bookmark,
.featurespotlight-window
  .modal-content
  .featurespotlight-highlighting_filters
  .description
  > div:nth-child(1)
  b {
  color: #0e57ab;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-highlighting_filters
  .description
  > div:nth-child(2)
  .fa-bookmark,
.featurespotlight-window
  .modal-content
  .featurespotlight-highlighting_filters
  .description
  > div:nth-child(2)
  b {
  color: #41a85f;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-highlighting_filters
  .description
  > div:nth-child(3)
  .fa-bookmark,
.featurespotlight-window
  .modal-content
  .featurespotlight-highlighting_filters
  .description
  > div:nth-child(3)
  b {
  color: #ad1b00;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-highlighting_filters
  .image {
  background-image: url(../images/featurespotlight/image-spotlight-highlighting.png);
}
.featurespotlight-window
  .modal-content
  .featurespotlight-highlighting_filters
  .footer
  .btn-primary {
  width: 180px;
}
.featurespotlight-window .modal-content .featurespotlight-signatures .image {
  background-image: url(../images/featurespotlight/image-spotlight-signatures.png);
}
.featurespotlight-window
  .modal-content
  .featurespotlight-signatures
  .description
  > div {
  padding-bottom: 12px;
}
.featurespotlight-window .modal-content .featurespotlight-signatures .footer {
  padding-top: 7px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-signatures
  .footer
  .btn-primary {
  width: 180px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-emailing_groups
  .image {
  background-image: url(../images/featurespotlight/image-spotlight-groups.png);
}
.featurespotlight-window
  .modal-content
  .featurespotlight-emailing_groups
  .footer {
  padding-top: 12px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-emailing_groups
  .footer
  .btn-primary {
  width: 180px;
}
.featurespotlight-window .modal-content .featurespotlight-themes .image {
  background-image: url(../images/featurespotlight/image-spotlight-themes.png);
}
.featurespotlight-window .modal-content .featurespotlight-themes .description {
  padding: 0 85px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-themes
  .description
  > div {
  padding-bottom: 22px;
}
.featurespotlight-window .modal-content .featurespotlight-themes .footer {
  padding-top: 2px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-themes
  .footer
  > div:nth-of-type(1) {
  padding: 0 75px;
}
.featurespotlight-window .modal-content .featurespotlight-themes .footer .or {
  padding-top: 13px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-merge_duplicate_contacts
  .description {
  padding: 0 35px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-merge_duplicate_contacts
  .description
  em {
  font-style: normal;
  color: #767676;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-merge_duplicate_contacts
  .image {
  background-image: url(../images/featurespotlight/image-spotlight-mergecontacts.png);
}
.featurespotlight-window
  .modal-content
  .featurespotlight-merge_duplicate_contacts
  .footer
  .btn-primary {
  width: 180px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-read_receipts
  .subtitle {
  padding: 1px 30px 27px;
}
.featurespotlight-window .modal-content .featurespotlight-read_receipts .image {
  background-image: url(../images/featurespotlight/image-spotlight-readreceipts.png);
}
.featurespotlight-window
  .modal-content
  .featurespotlight-read_receipts
  .footer
  .btn-primary {
  width: 180px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-taskbox_tagging
  .image {
  background-image: url(../images/featurespotlight/image-spotlight-taskboxtagging.png);
}
.featurespotlight-window
  .modal-content
  .featurespotlight-taskbox_tagging
  .description {
  text-align: center;
  padding: 0 60px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-taskbox_tagging
  .description
  .fa {
  font-size: 20px;
  line-height: 15px;
  padding-right: 5px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-taskbox_tagging
  .description
  .fa-tag {
  padding-left: 5px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-taskbox_tagging
  .footer
  .or {
  padding-top: 13px;
}
.featurespotlight-window
  .modal-content
  .featurespotlight-taskbox_tagging
  .footer
  .footerContent {
  padding-left: 50px;
  padding-right: 50px;
}
#featurespotlight-sidebar .close {
  font-size: 16px;
  margin-top: 7px;
}
#featurespotlight-sidebar .close .fa {
  height: 15px;
}
#featurespotlight-sidebar .sidebarheader {
  padding: 12px 0 0 10px;
  border-bottom: 2px solid #767676;
}
#featurespotlight-sidebar .sidebarheader .name {
  font-size: 25px;
}
#featurespotlight-sidebar .sidebarcontent {
  padding: 10px 12px;
}
#featurespotlight-sidebar .sidebarcontent .subtitle {
  padding-bottom: 6px;
  color: #757575;
}
#featurespotlight-sidebar .sidebarcontent > div {
  padding-bottom: 4px;
}
#featurespotlight-sidebar .sidebarcontent > div .fa-chevron-circle-right {
  padding-right: 4px;
}
#featurespotlight-sidebar .sidebarcontent hr {
  margin: 10px 0px;
}
#featurespotlight-sidebar .sidebarcontent .btn-primary {
  width: 90px;
  font-size: 13px;
}
#featurespotlight-sidebar button.link-button,
.featurespotlight-window .modal-content button.link-button {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: none;
  border: 0;
  color: #0e57ab;
}
#followUpsAutomated .modal-body {
  padding-left: 0;
  min-width: 800px;
}
#followUpsAutomated .modal-body .col-sm-7 {
  border-left: 1px solid #eee;
}
#followUpsAutomated .modal-body .modal-header-container {
  padding-left: 15px;
  width: 100%;
}
#followUpsAutomated .modal-body .modal-header-container .modal-header {
  padding: 0;
  margin: 0;
  border: none;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 2px;
  font-weight: 700;
  display: block;
}
#followUpsAutomated .modal-body button.close {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 2;
  opacity: 1;
  color: #3e3e3e;
}
#followUpsAutomated .modal-body .add-new-item {
  display: block;
  margin: auto;
}
#followUpsAutomated .modal-body .template-list {
  position: relative;
}
#followUpsAutomated .modal-body .template-list .template-list-item {
  cursor: pointer;
  position: relative;
  height: 54px;
  padding: 3px;
  padding-left: 15px;
  margin-right: -15px;
  border-top: 1px solid #eee;
}
#followUpsAutomated .modal-body .template-list .template-list-item .badge {
  margin-right: 4px;
  vertical-align: middle;
  font-size: 14px;
  background-color: #0e57ab;
}
#followUpsAutomated
  .modal-body
  .template-list
  .template-list-item
  .template-list-item-info {
  display: inline-block;
  height: 48px;
  vertical-align: middle;
}
#followUpsAutomated
  .modal-body
  .template-list
  .template-list-item
  .template-list-item-info
  p {
  margin: 5px 0px;
}
#followUpsAutomated
  .modal-body
  .template-list
  .template-list-item
  .template-list-item-info
  .tli-info-text-editing {
  color: #767676;
}
#followUpsAutomated
  .modal-body
  .template-list
  .template-list-item
  .icon-wm-trash {
  font-size: 16px;
  color: #3e3e3e;
  cursor: pointer;
  display: none;
  vertical-align: middle;
  position: absolute;
  right: 4px;
  line-height: 48px;
}
#followUpsAutomated .modal-body .template-list .template-list-item:hover {
  background-color: #dbdbdb;
}
#followUpsAutomated
  .modal-body
  .template-list
  .template-list-item:hover
  .icon-wm-trash {
  display: inline-block;
}
#followUpsAutomated .modal-body .auto-followup-note {
  color: #767676;
}
#followUpsAutomated .modal-body .block-label {
  display: block;
  margin: 5px 0px;
}
#followUpsAutomated .modal-body .block-label span {
  color: #ad1b00;
}
#followUpsAutomated .modal-body .block-label + label,
#followUpsAutomated .modal-body .block-label + label + label {
  margin-right: 20px;
  font-weight: 400;
}
#followUpsAutomated .modal-body .compose-textarea {
  height: 300px;
}
.followups-reminder {
  padding: 0 10px 10px;
}
.followups-reminder .fur-realtime {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 10px 10px 0;
  background-color: #f6f6f6;
  margin-bottom: 10px;
  margin-left: -10px;
  margin-right: -10px;
}
.followups-reminder .fur-header {
  background-color: #0e57ab;
  color: #fff;
  height: 100px;
  width: 100%;
}
.followups-reminder .fur-header .fur-header-bell {
  line-height: 80px;
  font-size: 30px;
  width: 50px;
  padding: 10px;
  display: inline-block;
  vertical-align: top;
}
.followups-reminder .fur-header .fur-header-desc {
  height: 100px;
  padding-top: 14px;
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 55px);
}
.followups-reminder .fur-header .fur-header-desc p {
  margin: 0;
}
.followups-reminder .fur-header .fur-header-desc .fur-header-desc-for {
  color: #c0dcfc;
}
.followups-reminder .fur-header .fur-header-desc .fur-header-desc-subject {
  display: block;
  font-size: 20px;
  white-space: nowrap;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
}
.followups-reminder .fur-body {
  margin: 10px 0;
}
.followups-reminder .fur-body .fur-recipient-list {
  list-style-position: inside;
  list-style-type: disc;
  padding-left: 0;
}
.followups-reminder .fur-footer {
  border-top: 1px solid #eee;
  border-bottom: 2px solid #0e57ab;
  padding: 20px 0;
  background-color: #f6f6f6;
  text-align: center;
}
.followups-reminder .fur-footer .fur-footer-how {
  width: 100%;
  font-size: 18px;
}
.followups-reminder .fur-footer .fur-footer-buttons {
  width: 100%;
}
.followups-reminder .fur-footer .fur-footer-buttons .btn {
  border: 2px solid #0e57ab;
  font-size: 14px;
  background-color: #fff;
  color: #0e57ab;
  margin: 4px;
  padding: 6px;
  height: 32px;
  font-weight: 700;
  min-width: 150px;
}
.followups-reminder .fur-footer .fur-footer-buttons .btn .fa {
  margin-right: 4px;
}
.followups-reminder .fur-note {
  margin-top: 30px;
  color: #595959;
  font-size: 12px;
}
.composefeature .modal {
  display: none;
  position: fixed;
  z-index: 600;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.composefeature .modal.show {
  display: block;
}
.composefeature .modal .modal-dialog {
  margin: 100px auto;
  padding: 20px;
  width: 80%;
  height: 75%;
  display: block;
}
.composefeature .modal .modal-dialog .modal-content {
  height: 100%;
}
.composefeature .modal .modal-dialog .modal-content .modal-body {
  height: 100%;
  padding: 0px;
}
.composefeature .modal .modal-dialog .modal-content .modal-body > .row {
  height: 100%;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .col-xs-9 {
  height: 100%;
  margin-left: -15px;
  padding: 10px;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .col-xs-3,
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .left-side {
  height: 100%;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .left-side
  .list-body {
  height: 100%;
  margin-top: 0px;
  border-right: 1px solid #e4e6e9;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .left-side
  .list-body
  .list-body-header {
  min-height: 80px;
  padding: 10px;
  background-color: #e4e6e9;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .left-side
  .list-body
  .list-body-items {
  height: 100%;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 10px;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .left-side
  .list-body
  .list-body-items
  ul {
  padding-inline-start: 0px;
  padding-left: 0px;
  padding-right: 0px;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .left-side
  .list-body
  .list-body-items
  ul
  li {
  display: block;
  overflow: hidden;
  min-height: 30px;
  padding: 3px 0 3px 10px;
  text-align: left;
  border-bottom: 1px solid #e4e6e9;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .left-side
  .list-body
  .list-body-items
  ul
  li.active,
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .left-side
  .list-body
  .list-body-items
  ul
  li:hover {
  background-color: #e4e6e9;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .left-side
  .list-body
  .list-body-items
  ul
  li
  div.name-part {
  float: left;
  width: calc(70% - 35px);
  text-align: left;
  cursor: pointer;
  font-weight: bolder;
  padding: 2px 1px;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .left-side
  .list-body
  .list-body-items
  ul
  li
  div.name-part
  .name,
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .left-side
  .list-body
  .list-body-items
  ul
  li
  div.name-part
  .summary {
  overflow: hidden;
  text-overflow: ellipsis;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .left-side
  .list-body
  .list-body-items
  ul
  li
  div.size {
  float: left;
  width: 30%;
  text-align: right;
  padding: 2px 1px;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .left-side
  .list-body
  .list-body-items
  ul
  li
  div.delete {
  float: left;
  width: 35px;
  text-align: right;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .left-side
  .list-body
  .list-body-items
  .buttonWrapper {
  position: absolute;
  bottom: 10px;
  width: calc(100% - 30px);
  text-align: center;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .left-side
  .list-body
  .list-body-items
  .buttonWrapper
  button.addgroup {
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  text-align: center;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .not-item-selected {
  height: 100%;
  width: 100%;
  text-align: center;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .not-item-selected
  p {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .item-selected,
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .item-selected
  .form-horizontal {
  height: 100%;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .item-selected
  .form-horizontal
  #item-header {
  height: 160px;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .item-selected
  .form-horizontal
  #item-header
  .high-priority {
  color: #ff4c2e;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .item-selected
  .form-horizontal
  #item-body {
  height: calc(100% - 180px);
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .item-selected
  .form-horizontal
  #item-body
  .composebody {
  height: calc(100% - 50px);
  margin: 10px 0px 0px;
  max-height: 450px;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .item-selected
  .form-horizontal
  #item-body
  .composebody.attachments {
  height: calc(100% - 125px);
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .item-selected
  .form-horizontal
  #item-body
  .composebody.attachments.attachmentCollapsed {
  height: calc(100% - 84px);
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .item-selected
  .form-horizontal
  #item-body
  .composebody
  .row,
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .item-selected
  .form-horizontal
  #item-body
  .composebody
  .row
  .col-sm-12 {
  height: 100%;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .item-selected
  .form-horizontal
  #item-body
  .composebody
  .row
  .col-sm-12
  .form-group {
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  height: 100%;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .item-selected
  .form-horizontal
  #item-body
  .composebody
  .row
  .col-sm-12
  .form-group
  .CKE-container,
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .item-selected
  .form-horizontal
  #item-body
  .composebody
  .row
  .col-sm-12
  .form-group
  .CKE-container
  > .cke,
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .item-selected
  .form-horizontal
  #item-body
  .composebody
  .row
  .col-sm-12
  .form-group
  .CKE-container
  > .cke
  .cke_inner {
  height: 100%;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .item-selected
  .form-horizontal
  #item-body
  .composebody
  .row
  .col-sm-12
  .form-group
  .CKE-container
  > .cke
  .cke_inner
  .cke_contents {
  height: calc(100% - 60px) !important;
}
.composefeature
  .modal
  .modal-dialog
  .modal-content
  .modal-body
  > .row
  .item-selected
  .form-horizontal
  #item-body
  .composefeature-footer {
  position: absolute;
  bottom: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
  width: calc(100% - 20px);
  background-color: #fff;
  z-index: 9999;
}
#composeFeaturesCustomDate .datetimepicker-selector {
  padding-left: 30px;
}
#composeFeaturesCustomDate .icon-wm-calendar {
  position: relative;
  bottom: 26px;
  left: 10px;
}
#step-connect .note {
  color: gray;
}
#step-connect .alert-danger,
#step-connect .has-error .control-label {
  color: inherit;
}
#step-connect .close {
  opacity: 1;
}
#step-connecting .progress {
  margin: 0;
}
#step-connecting .btn {
  float: left;
  margin: 0;
  padding: 0;
  min-width: 0;
}
#step-disconnected ul {
  padding: 0 0 0 15px;
  list-style-position: outside;
}
.login-container {
  min-width: 375px;
}
.login-container-ads {
  min-width: 970px;
}
.login-panel {
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 50px;
  margin-bottom: 10px;
  padding: 50px 20px 0px;
}
.login-panel .loadingstatus {
  text-align: center;
  color: #595959;
  padding: 15px;
}
.login-panel #username::-ms-clear {
  display: none;
}
.login-message {
  height: 60px;
  margin-top: 20px;
}
.login-message .alert {
  float: left;
  width: 100%;
  background-color: #fad5d2;
  border: 1px solid #ac887f;
  color: #3e3e3e;
}
.login-message .alert .title:after {
  content: " ";
}
.login-message .alert .close {
  opacity: 1;
  text-shadow: none;
  font-size: 14px;
  margin-top: 3px;
}
.login-message p.textNotification {
  text-align: center;
}
.login-forgot {
  padding-bottom: 20px;
}
.login-forgot a {
  color: #0e57ab;
}
.login-logo {
  background: url(./login-logo.png) no-repeat 50% 0%;
  height: 40px;
}
.login-language .control-label {
  margin-top: 6px;
}
.resetPassword .error-message {
  width: 100%;
  background-color: #fad5d2;
  padding: 3px 5px;
  margin-bottom: 10px;
}
.resetPassword .passStrength {
  margin-top: 10px;
}
.resetPassword .passStrength .fl {
  float: left;
}
.resetPassword .passStrength .fr {
  float: right;
}
.resetPassword .passStrength .clear {
  clear: both;
}
.resetPassword .passStrength h4 {
  color: #3e3e3e;
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
.resetPassword .passStrength span {
  color: #3e3e3e;
}
.resetPassword .passStrength ul#strength {
  display: flex;
  width: 100%;
  height: 4px;
  background: #dbdbdb;
  padding: 0;
}
.resetPassword .passStrength li {
  margin: 0 !important;
  padding: 0 !important;
}
.resetPassword .passStrength li.point:last {
  margin: 0 0 0 -1px !important;
}
.resetPassword .passStrength li.point {
  margin: 0;
  padding: 0;
  border: none;
  display: inline-block;
  height: 4px;
  width: 20%;
}
.expired-password .expired-panel {
  padding: 10px 0px;
}
.expired-password .expired-panel .title {
  text-align: center;
  font-weight: 200;
  font-size: 24px;
  padding: 10px 0px;
}
.expired-password .succchanged {
  padding: 15px 0px;
  text-align: center;
}
.section-autologin {
  overflow: auto;
}
.section-autologin > * {
  padding-top: 30px;
  padding-bottom: 30px;
}
.section-autologin .login-logo {
  background: url(./login-logo.png) no-repeat 50% 0%;
  height: 40px;
}
.section-autologin .gray-header {
  color: #bbb;
}
.diskUsage {
  font-size: 12px;
  color: #3e3e3e;
}
.diskUsage .progress {
  height: 3px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  margin-top: 2px;
  margin-bottom: 0px;
  background-color: #767676;
}
.diskUsage .progress-bar {
  background-color: #1ed200;
}
.diskUsage .progress-bar.warning {
  background-color: #e3b600;
}
.diskUsage .progress-bar.danger {
  background-color: #d20000;
}
li.zimenu {
  padding: 3px 10px;
}
li.zimenu .zititle {
  font-weight: 700;
  padding: 0px 0px 10px;
}
li.zimenu span.zitext {
  max-width: 125px;
  display: inline-block;
}
li.zimenu label {
  padding: 3px 0px;
  font-weight: 400;
  width: 100%;
  cursor: pointer;
}
li.zimenu label i {
  margin: 0px 10px 0px 0px;
}
li.zimenu:hover {
  background: none !important;
}
.level1 .panel .panel .panel-heading .nav1input.force-display-rules {
  display: block;
  position: relative;
}
#collapsePersonalCore .nav1input,
#collapsePersonalCore .renameListItem,
#panelPersonalCore .nav1input,
#panelPersonalCore .renameListItem,
.collapseRemotePersonalCore .nav1input,
.collapseRemotePersonalCore .renameListItem,
.panelRemotePersonalCore .nav1input,
.panelRemotePersonalCore .renameListItem {
  display: block;
  position: relative;
  height: auto;
}
#collapsePersonalCore .nav1input .error-message-box,
#collapsePersonalCore .renameListItem .error-message-box,
#panelPersonalCore .nav1input .error-message-box,
#panelPersonalCore .renameListItem .error-message-box,
.collapseRemotePersonalCore .nav1input .error-message-box,
.collapseRemotePersonalCore .renameListItem .error-message-box,
.panelRemotePersonalCore .nav1input .error-message-box,
.panelRemotePersonalCore .renameListItem .error-message-box {
  margin: -36px 0px 0px;
  padding-left: 0px;
  padding-right: 0px;
  position: relative;
  width: 100%;
  float: left;
}
#collapsePersonalCore .nav1input .buttons-row,
#collapsePersonalCore .renameListItem .buttons-row,
#panelPersonalCore .nav1input .buttons-row,
#panelPersonalCore .renameListItem .buttons-row,
.collapseRemotePersonalCore .nav1input .buttons-row,
.collapseRemotePersonalCore .renameListItem .buttons-row,
.panelRemotePersonalCore .nav1input .buttons-row,
.panelRemotePersonalCore .renameListItem .buttons-row {
  margin: 0px -4px 0px -5px;
}
#collapsePersonalCore .nav1input .buttons-row .button-col,
#collapsePersonalCore .renameListItem .buttons-row .button-col,
#panelPersonalCore .nav1input .buttons-row .button-col,
#panelPersonalCore .renameListItem .buttons-row .button-col,
.collapseRemotePersonalCore .nav1input .buttons-row .button-col,
.collapseRemotePersonalCore .renameListItem .buttons-row .button-col,
.panelRemotePersonalCore .nav1input .buttons-row .button-col,
.panelRemotePersonalCore .renameListItem .buttons-row .button-col {
  margin-top: 5px;
  padding-left: 5px;
  padding-right: 5px;
}
#collapsePersonalCore .nav1input .buttons-row .button-col button,
#collapsePersonalCore .renameListItem .buttons-row .button-col button,
#panelPersonalCore .nav1input .buttons-row .button-col button,
#panelPersonalCore .renameListItem .buttons-row .button-col button,
.collapseRemotePersonalCore .nav1input .buttons-row .button-col button,
.collapseRemotePersonalCore .renameListItem .buttons-row .button-col button,
.panelRemotePersonalCore .nav1input .buttons-row .button-col button,
.panelRemotePersonalCore .renameListItem .buttons-row .button-col button {
  width: 100%;
}
#collapsePersonalCore .folder-reorder,
#panelPersonalCore .folder-reorder,
.collapseRemotePersonalCore .folder-reorder,
.panelRemotePersonalCore .folder-reorder {
  height: 10px;
  margin-top: -2px;
  margin-bottom: -2px;
  padding: 4px 12px;
}
#collapsePersonalCore .folder-reorder.dropReorderHover .folder-reorder-line,
#panelPersonalCore .folder-reorder.dropReorderHover .folder-reorder-line,
.collapseRemotePersonalCore
  .folder-reorder.dropReorderHover
  .folder-reorder-line,
.panelRemotePersonalCore .folder-reorder.dropReorderHover .folder-reorder-line {
  border: 1px dashed #767676;
}
.messageOptions button {
  vertical-align: top;
  margin-bottom: 0px;
}
.messageOptions .dropdown-menu > div > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.messageOptions .dropdown-menu > div > li > a:focus,
.messageOptions .dropdown-menu > div > li > a:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #0e57ab;
}
.messageOptions .dropdown-menu .accname {
  padding: 2px 10px;
  font-weight: 700;
}
.errorFolderRename,
.errorFolderRename:focus {
  border: 1px solid #ad1b00 !important;
}
.errorFolderRename:after {
  content: "!";
  right: 10px;
  position: absolute;
  display: inline;
  z-index: 1000;
  top: 5px;
  font-weight: bolder;
  color: #ad1b00;
}
.mailSearch.searchtypeContainer {
  position: static;
}
.mailSearch.searchtypeContainer .dropdown-menu-dynamic {
  right: 0;
  left: auto;
  width: 188px;
}
.mailSearch.searchtypeContainer .dropdown-menu-dynamic .dropdown-sub-menu {
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  float: left;
  width: 188px;
}
.mailSearch.searchtypeContainer
  .dropdown-menu-dynamic
  .dropdown-sub-menu.bootstrap-datetimepicker-widget {
  position: absolute;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
@media screen and (max-height: 768px) {
  .mailSearch.searchtypeContainer .dropdown-menu-dynamic {
    right: auto;
    left: 0;
    width: 376px;
  }
  .mailSearch.searchtypeContainer .dropdown-menu-dynamic.rightAlign {
    right: 0;
    left: auto;
  }
  .mailSearch.searchtypeContainer .dropdown-menu-dynamic .rightColumn {
    border-left: 1px solid #e5e5e5;
  }
  .mailSearch.searchtypeContainer .dropdown-menu-dynamic .rightColumn .divider {
    display: none !important;
  }
  .mailSearch.searchtypeContainer .dropdown-menu-dynamic .searchButton {
    width: 376px;
  }
}
.mail-navigation.level1 .headerbar .btn-fw {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.mail-navigation.level1 .headerbar .dropdown-container {
  display: inline-block;
}
.mail-navigation.level1 .headerbar .dropdown-container .btn-fw-narrow {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.mail-navigation.level1 .headerbar .dropdown-container .btn-fw-narrow .fa {
  width: 18px;
}
.mail-navigation.level1 .headerbar .dropdown-container .new-fax-description {
  width: 200px;
  white-space: normal;
  font-size: 13px;
  font-style: italic;
  color: #757575;
}
.mail-navigation.level1 .headerbar .dropdown-container .fa.fa-cog {
  font-size: 13px;
}
.mail-navigation.level1
  .headerbar
  .dropdown-container
  .highlighted
  .new-fax-description {
  color: #fff;
}
.mail-navigation.level1 .panel .panel-heading .panel-title.withplus {
  width: 73%;
  display: inline-block;
  float: none;
}
.mail-navigation.level1 .panel .panel-heading .panel-title.withplus.withinput {
  float: left;
}
.mail-navigation.level1 .panel .panel-heading .context {
  padding: 0;
  margin-right: 16px;
}
.mail-navigation.level1 .panel .panel-heading .context span.fa {
  color: #3e3e3e;
}
#folderCleanupLabel {
  font-weight: 400;
}
.inboxTopButtons {
  z-index: 301;
}
.inboxTopButtons .messageOptions {
  min-width: 600px;
  position: relative;
  float: left;
  width: 100%;
}
.inboxTopButtons .messageOptions button {
  vertical-align: top;
  margin-bottom: 0px;
}
.inboxTopButtons .messageOptions .align-past-nav2 {
  float: left;
  margin-left: 10px;
}
@media (min-width: 1018px) {
  .inboxTopButtons .messageOptions .align-past-nav2 {
    position: absolute;
    left: 328px;
  }
  .inboxTopButtons .messageOptions .align-past-nav2-lg {
    padding-left: 60px;
  }
  .inboxTopButtons .messageOptions.fromSearch .align-past-nav2 {
    left: 400px;
  }
}
.icon-wm-window {
  font-size: 1.5em;
}
.expandCollapseBlock button {
  line-height: 20px;
}
.expandCollapseBlock button .icon-wm-collapse,
.expandCollapseBlock button .icon-wm-expand {
  font-weight: 700;
}
@media (max-width: 992px) {
  .horiz.openedmessage .pagerCount {
    display: none;
  }
}
.listPane {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.msglist {
  z-index: 200;
}
.msglist .msglistContainer {
  background: #fff;
}
.msglist .listloading {
  margin-top: 30px;
  height: 100px;
}
.msglist .msglistcontrols .sortbar {
  height: 29px;
  line-height: 29px;
  background: #283a50;
  color: #fff;
}
.msglist .msglistcontrols .sortbar .sortby {
  padding-right: 4px;
  padding-left: 4px;
}
.msglist .msglistcontrols .sortbar button {
  border: 0px;
  background-color: transparent;
  padding: 0px;
  margin: 0px;
  color: #fff;
}
.msglist .msglistcontrols .sortbar button:hover {
  color: #eee;
}
.msglist .msglistcontrols .sortbar .sortdir {
  margin-left: 6px;
}
.msglist .messageListContainerOuter .messageListContainerInner {
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.msglist .messageListContainerOuter .messageListContainerInner .nomsg {
  margin-top: 20px;
}
.msglist .messageListContainerOuter .messageListContainerInner .messageList {
  display: table;
  table-layout: fixed;
  width: 100%;
  white-space: nowrap;
  border-collapse: separate;
  border-spacing: 0px;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow {
  display: table-row;
  cursor: pointer;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow:hover {
  background-color: #eff2f6;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell {
  border-top: 1px solid #eff2f6;
  border-bottom: 1px solid #eff2f6;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:first-child {
  border-left: 1px solid #eff2f6;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:last-child {
  border-right: 1px solid #eff2f6;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageCell {
  display: table-cell;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageCell:first-child {
  border-left: 1px solid #eee;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageCell:last-child {
  border-right: 1px solid #eee;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  i {
  color: #3e3e3e;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .priorityIcon {
  color: #ad1b00;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageQuickAction
  .message-action-horizontal {
  display: inline;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageQuickAction
  .message-action-horizontal.checkbox-aoe {
  margin-left: 1px;
  top: 0px;
  margin-right: -2px;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageQuickAction
  .message-action-horizontal
  .flagShow {
  position: relative;
  top: 2px;
  left: 2px;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageQuickAction
  .checkbox-aoe {
  position: relative;
  padding: 8px 5px;
  margin-left: -5px;
  top: -7px;
  min-width: 13px;
  overflow: hidden;
  box-sizing: content-box;
  margin-bottom: -8px;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageQuickAction
  .checkbox-aoe.have-code-snippet {
  margin-bottom: 0px;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageQuickAction
  .fa {
  opacity: 0;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageQuickAction
  .icon-wm-trash {
  font-size: 13px;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .flagShow {
  background: url(../images/star-filled-s.png) no-repeat;
  opacity: 1 !important;
  height: 14px;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .checkboxShow {
  opacity: 1 !important;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageDate,
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageFrom,
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messagePreview,
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageSubject {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messagePreview,
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageStatusBar
  i {
  color: #595959;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageFrom,
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageSubject {
  color: #000;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageThreadCount {
  white-space: nowrap;
  overflow: hidden;
  max-width: 35px;
  background: #0e57ab;
  color: #fff;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .flexible {
  width: auto;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.keynavActive
  .messageQuickAction
  .fa,
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow:focus
  .messageQuickAction
  .fa,
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow:hover
  .messageQuickAction
  .fa {
  opacity: 1;
  transition: opacity 0.4s ease-out;
  -moz-transition: opacity 0.4s ease-out;
  -webkit-transition: opacity 0.4s ease-out;
  -o-transition: opacity 0.4s ease-out;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected {
  background-color: #d9e1ea;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  .messagePreview,
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  .messageSize {
  color: #444;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked {
  background-color: #eff2f6;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.messageUnread
  .messageDate,
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.messageUnread
  .messageFrom,
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.messageUnread
  .messageSubject {
  font-weight: 700;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.messageUnread
  .messageSubject {
  color: #0e57ab;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.messageUnread
  .messageDate {
  color: #000;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.messageUnread
  .messagePreview {
  color: #595959;
}
.msglist
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.messageUnread
  .badge {
  background-color: #0e57ab;
}
.msglist.vert {
  float: left;
  position: relative;
}
.msglist.vert .msglistContainer .ui-resizable-e {
  width: 3px;
  right: 0px;
}
.msglist.vert .msglistcontrols .sortbar {
  padding-left: 10px;
  padding-right: 18px;
}
.msglist.vert .paginationFooter {
  height: 62px;
  background: #fff;
  overflow: hidden;
  box-shadow: -2px -1px 2px #eee;
  padding: 0 12px 10px;
  border-right: 1px inset #eee;
}
.msglist.vert .paginationFooter .pagination {
  width: 100%;
}
.msglist.vert .paginationFooter .pagination .pagerCount {
  line-height: 22px;
  font-size: 13px;
  height: 22px;
}
.msglist.vert .paginationFooter .pagination .pagerControls {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
}
.msglist.vert .paginationFooter .pagination .pagerControls .pageInfo {
  flex-grow: 1;
  text-align: center;
}
.msglist.vert .paginationFooter .pagination .pagerControls .pageInfo .page,
.msglist.vert .paginationFooter .pagination .pagerControls .pageInfo input {
  float: none;
}
.msglist.vert .messageListContainerOuter .messageListContainerInner {
  width: 100%;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow {
  height: 105px;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  .messagePreview,
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  .messageSize {
  color: #444;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageHighlightBar {
  width: 6px;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageActionBar {
  width: 23px;
  padding-left: 4px;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageActionBar
  .messageQuickAction {
  padding-top: 14px;
  color: #0e57ab;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageActionBar
  .messageQuickAction
  .checkbox-aoe
  span.fa {
  margin: 0px;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageActionBar
  .messageQuickAction
  .fa {
  float: left;
  margin-bottom: 15px;
  width: 13px;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageActionBar
  .messageQuickAction
  .fa-check-square,
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageActionBar
  .messageQuickAction
  .fa-square-o {
  padding-left: 1px;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageActionBar
  .messageQuickAction
  button.message-action {
  float: left;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfoList {
  padding-top: 8px;
  display: table;
  table-layout: fixed;
  width: 100%;
  white-space: nowrap;
  border-collapse: separate;
  border-spacing: 0px;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfoList
  .messageInfoRow {
  display: table-row;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfoList
  .messageInfoRow
  .messageInfoCell {
  display: table-cell;
  vertical-align: top;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfoList
  .messageInfoRow
  .messageFrom {
  line-height: 1.5em;
  display: inline-block;
  max-width: calc(100% - 40px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
  font-weight: 600;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfoList
  .messageInfoRow
  .messageCount {
  width: 35px;
  height: 20px;
  margin-left: 5px;
  float: left;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfoList
  .messageInfoRow
  .messageDateBar {
  width: 95px;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfoList
  .messageInfoRow
  .messageDateBar
  .messageDate {
  margin-left: 0px;
  margin-right: 0px;
  text-align: right;
  line-height: 1.5em;
  color: #000;
  width: 100%;
  padding: 0px 10px 0px 0px;
  box-sizing: border-box;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfoList
  .messageInfoRow
  .messagePriorityBar {
  width: 15px;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfoList
  .messageInfoRow
  .messagePriorityBar
  .priorityIcon {
  text-align: center;
  line-height: 1.5em;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageSubject {
  padding-right: 10px;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageSize {
  margin-right: 25px;
  float: right;
  color: #595959;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messagePreview {
  margin-right: 20px;
  line-height: 1.3em;
  height: 36px;
  white-space: normal;
  color: #757575;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageStatusBar {
  height: 19px;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageStatusBar
  .messageStatuses {
  margin-right: 10px;
  height: 100%;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageStatusBar
  .messageStatuses
  span.messageSmallStatus {
  float: right;
  margin-left: 5px;
  color: #595959;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.groupLabel {
  height: 30px;
  line-height: 30px;
  background-color: #f1f8ff;
  color: #3f9fff;
  cursor: default;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.groupLabel:hover
  > .messageCell {
  border-color: #eee;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList.noSnippet
  .messageRow,
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList.noSnippet
  .messageRow
  .messageActionBar {
  height: 69px;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList.noSnippet
  .messageRow
  .messageActionBar
  .messageQuickAction {
  padding-top: 6px;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList.noSnippet
  .messageRow
  .messageActionBar
  .messageQuickAction
  .fa {
  margin-bottom: 7px;
}
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList.noSnippet
  .messageRow.groupLabel,
.msglist.vert
  .messageListContainerOuter
  .messageListContainerInner
  .messageList.noSnippet
  .messageRow.groupLabel
  .messageActionBar {
  height: 30px;
}
.msglist.vert .messageListContainerOuter [keyarrownav-directive] {
  padding: 2px;
}
.msglist.vert .messageListContainerOuter [keyarrownav-directive]:focus {
  border: 2px solid #4087c9 !important;
  padding: 0px;
}
.msglist.horiz,
.msglist.horizfull {
  width: auto;
  float: left;
  position: relative;
}
.msglist.horiz .pagination,
.msglist.horizfull .pagination {
  margin: 0px;
}
.msglist.horiz .messageListContainerOuter,
.msglist.horizfull .messageListContainerOuter {
  width: auto !important;
}
.msglist.horiz .messageListContainerOuter .ui-resizable-s,
.msglist.horizfull .messageListContainerOuter .ui-resizable-s {
  cursor: row-resize;
  height: 7px;
  background: #d5d5d5;
  border-bottom: 2px solid #c4c4c4;
  bottom: 0px;
  text-align: center;
  color: #444;
  font-size: 13px;
  line-height: 6px;
}
.msglist.horiz .messageListContainerOuter .ui-resizable-s:before,
.msglist.horizfull .messageListContainerOuter .ui-resizable-s:before {
  font-family: FontAwesome;
  content: "\f141";
}
.msglist.horiz .messageListContainerOuter .messageListContainerInner,
.msglist.horizfull .messageListContainerOuter .messageListContainerInner {
  height: calc(100% - 7px);
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow {
  height: 38px;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageCell
  > div,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageCell
  > div {
  line-height: 38px;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageHighlightBar,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageHighlightBar {
  width: 6px;
  padding-left: 3px;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageActionBar,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageActionBar {
  width: 86px;
  padding-left: 4px;
  color: #0e57ab;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageActionBar
  .messageQuickAction
  .fa,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageActionBar
  .messageQuickAction
  .fa {
  margin-right: 10px;
  min-width: 13px;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageStatusBar,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageStatusBar {
  width: 100px;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageStatusBar
  .messageStatuses,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageStatusBar
  .messageStatuses {
  text-align: left;
  width: auto;
  margin-left: 10px;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageStatusBar
  .messageStatuses
  span.messageSmallStatus,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageStatusBar
  .messageStatuses
  span.messageSmallStatus {
  margin-left: 5px;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageDateBar,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageDateBar {
  width: 110px;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageDateBar
  .messageDate,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageDateBar
  .messageDate {
  margin-left: 10px;
  margin-right: 10px;
  text-align: right;
  color: #000;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageSizeBar,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageSizeBar {
  width: 55px;
  text-align: right;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageSize,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageSize {
  color: #595959;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageSubjectBar,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageSubjectBar {
  width: 200px;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfo,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfo {
  width: auto;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfo
  .messageText,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfo
  .messageText {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 20px;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfo
  .messagePriority,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfo
  .messagePriority {
  width: 20px;
  float: left;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfo
  .messagePriority
  .priorityIcon,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfo
  .messagePriority
  .priorityIcon {
  text-align: center;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfo
  .messageSubject,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfo
  .messageSubject {
  margin-right: 10px;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfo
  .messageCount,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow
  .messageInfo
  .messageCount {
  float: right;
  width: 35px;
  height: 34px;
  padding-top: 4px;
  margin-left: 5px;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.groupLabel,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.groupLabel {
  height: 30px;
  line-height: 30px;
  background-color: #f1f8ff;
  cursor: default;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.groupLabel:hover
  > .messageCell,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.groupLabel:hover
  > .messageCell {
  border-color: #eee;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.groupLabel
  .messageCell
  > div,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.groupLabel
  .messageCell
  > div {
  line-height: 30px;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.groupLabel
  .messageInfo
  .messageCount,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.groupLabel
  .messageInfo
  .messageCount {
  height: 30px;
}
.msglist.horiz
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.groupLabel
  .messageFrom,
.msglist.horizfull
  .messageListContainerOuter
  .messageListContainerInner
  .messageList
  .messageRow.groupLabel
  .messageFrom {
  color: #3f9fff;
}
.msglist.horizfull .messageListContainerOuter .messageListContainerInner {
  height: 100%;
}
.listPane.openedmessage .msglist.horizfull,
.msglist.horiz.full,
.msglist.vert.full {
  display: none;
  position: relative;
  float: left;
}
.listPane.msgcollapsing .msglist.horiz.full {
  display: block;
  float: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.listPane.msgcollapsing .msglist.vert.full {
  display: block;
  float: none;
  position: absolute;
}
.msglist.horiz .msglistcontrols .messageHeaderContainerOuter,
.msglist.horizfull .msglistcontrols .messageHeaderContainerOuter {
  overflow: visible;
  min-width: 475px;
}
.msglist.horiz
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner,
.msglist.horizfull
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner {
  overflow: visible;
  height: 100%;
}
.msglist.horiz
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .selectAllMessages,
.msglist.horizfull
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .selectAllMessages {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  width: 75%;
  text-align: right;
  padding-right: 10px;
}
.msglist.horiz
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .selectAllMessages
  a,
.msglist.horizfull
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .selectAllMessages
  a {
  color: #fff;
  cursor: pointer;
  text-decoration: underline;
}
.msglist.horiz
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .selectAllMessages
  a:hover,
.msglist.horizfull
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .selectAllMessages
  a:hover {
  color: #fff;
}
.msglist.horiz
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .messageHeader,
.msglist.horizfull
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .messageHeader {
  display: table;
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px;
}
.msglist.horiz
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .messageHeader
  .messageHeaderRow,
.msglist.horizfull
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .messageHeader
  .messageHeaderRow {
  display: table-row;
  height: 29px;
}
.msglist.horiz
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .messageHeader
  .messageHeaderRow
  .messageHeaderCell,
.msglist.horizfull
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .messageHeader
  .messageHeaderRow
  .messageHeaderCell {
  display: table-cell;
  vertical-align: top;
}
.msglist.horiz
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .messageHeader
  .messageHeaderRow
  .messageHeaderCell
  > div,
.msglist.horizfull
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .messageHeader
  .messageHeaderRow
  .messageHeaderCell
  > div {
  line-height: 29px;
}
.msglist.horiz
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .messageHeader
  .messageHeaderRow
  .messageActionBar,
.msglist.horizfull
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .messageHeader
  .messageHeaderRow
  .messageActionBar {
  width: 130px;
  padding-left: 9px;
}
.msglist.horiz
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .messageHeader
  .messageHeaderRow
  .messageSize,
.msglist.horizfull
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .messageHeader
  .messageHeaderRow
  .messageSize {
  color: #595959;
}
.msglist.horiz
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .messageHeader
  .messageHeaderRow
  .messageSubjectBar
  .ui-resizable-e,
.msglist.horizfull
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .messageHeader
  .messageHeaderRow
  .messageSubjectBar
  .ui-resizable-e {
  cursor: col-resize;
  width: 2px;
  background: #3e3e3e;
  border-right: 1px solid #767676;
  right: 0px;
  text-align: center;
  color: #444;
  font-size: 13px;
  line-height: 6px;
}
.msglist.horiz
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .messageHeader
  .messageHeaderRow
  .messageStatusAndDateBar,
.msglist.horizfull
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .messageHeader
  .messageHeaderRow
  .messageStatusAndDateBar {
  width: 410px;
}
.msglist.horiz
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .messageHeader
  .messageHeaderRow
  .messageStatusAndDateBar
  .messageSort,
.msglist.horizfull
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .messageHeader
  .messageHeaderRow
  .messageStatusAndDateBar
  .messageSort {
  margin-left: 10px;
  margin-right: 15px;
  text-align: right;
}
.msglist.horiz
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .messageHeader
  .messageHeaderRow
  .messageStatusAndDateBar
  .messageSort
  .btn-group,
.msglist.horizfull
  .msglistcontrols
  .messageHeaderContainerOuter
  .messageHeaderContainerInner
  .messageHeader
  .messageHeaderRow
  .messageStatusAndDateBar
  .messageSort
  .btn-group {
  vertical-align: baseline;
}
.listfolders-dropdown {
  max-width: 300px;
}
.webmailMoveHelper {
  background: #fff !important;
  padding: 5px 10px 5px 15px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  box-shadow: 1px 1px 3px 1px #aaa;
  -moz-box-shadow: 1px 1px 3px 1px #aaa;
  -webkit-box-shadow: 1px 1px 3px 1px #aaa;
  z-index: 9999;
  min-width: 75px;
  white-space: normal !important;
  word-break: normal !important;
  word-wrap: nowrap !important;
}
.webmailMoveHelper > * {
  vertical-align: middle;
  display: inline-block !important;
}
.webmailMoveHelper span.badge {
  background: #0e57ab;
  color: #fff;
  display: inline-block !important;
}
.webmailMoveHelper i {
  color: #444;
  padding: 0 5px;
  display: inline-block !important;
}
.backToSearchArrow {
  font-size: 14px;
  font-weight: 500;
  margin-top: 1px;
}
.backToSearchHorizontal {
  margin-right: 3px;
}
.backToSearch {
  margin-right: 1px;
}
.backToSearch .backToSearchArrow {
  margin-top: 2px;
}
#listContextMenu {
  position: fixed;
  z-index: 2000;
  display: none;
}
#listContextMenu:focus {
  outline: 0;
}
#listContextMenu ul.dropdown-menu {
  display: block;
  position: static;
  margin-bottom: 5px;
}
#listContextMenu ul.dropdown-menu li.divider {
  margin: 2px;
}
.listPane #workspace2.horiz,
.listPane #workspace2.horizfull {
  width: 100%;
}
.msgview {
  word-wrap: break-word;
  z-index: 199;
  overflow: visible;
  background-color: #fff;
  height: 100%;
  margin-top: -2px;
}
.msgview:before {
  display: block;
  height: 2px;
  content: "";
  border-top: 1px;
  box-shadow: inset 0px 2px 2px #e6e6e6;
}
.msgview .nomsgReadingPane {
  overflow: hidden;
}
.msgview .messageContainer {
  margin: 0px;
}
.msgview .messageContainer.msg-header-overlined {
  border-top: 2px solid #eff2f6;
}
.msgview .messageContainer h3 {
  margin-top: 10px;
}
.msgview .messageContainer .divider {
  border-top: 2px solid #eff2f6;
}
.msgview .messageContainer .messageBottomControls:not(.firstLoad) {
  transition: height 0.4s;
}
.msgview .messageContainer .messageBottomControls .attachments_title .fa {
  width: 10px;
}
.msgview .messageContainer .messageBottomControls.horizontal {
  position: absolute;
  bottom: 0px;
  width: 100%;
}
.msgview .messageContainer .contentView {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.msgview .messageContainer .contentView.threadedContainer {
  padding-left: 0px;
  padding-right: 0px;
}
.msgview .messageContainer .contentView:not(.firstLoad) {
  transition: height 0.4s;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  div.msg-header-underlined {
  border-bottom: 2px solid #eff2f6;
  padding-bottom: 2px;
  min-height: 66px;
}
.msgview .messageContainer .contentView .messageContent.threadedViewMessage {
  margin-top: 0px;
  border-color: #eff2f6;
  background-color: #eff2f6;
  height: max-content;
  min-height: 100%;
  padding: 8px;
}
.msgview
  .messageContainer
  .contentView
  .messageContent.threadedViewMessage
  .row {
  margin-left: 0px;
  margin-right: 0px;
}
.msgview
  .messageContainer
  .contentView
  .messageContent.threadedViewMessage
  .row.attachmentsInThread {
  border-top: 2px solid #eff2f6;
  margin-top: 10px;
}
.msgview
  .messageContainer
  .contentView
  .messageContent.threadedViewMessage
  .row.replyForwardHeader {
  background-color: #fff;
}
.msgview
  .messageContainer
  .contentView
  .messageContent.threadedViewMessage
  .threadmessage {
  background-color: #fff;
  border-bottom: 3px solid #a0a9b4;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  padding-bottom: 5px;
}
.msgview
  .messageContainer
  .contentView
  .messageContent.threadedViewMessage
  .threadmessage:not(:first-of-type) {
  border-top: 8px solid #eff2f6;
}
.msgview
  .messageContainer
  .contentView
  .messageContent.threadedViewMessage
  .threadmessage
  .messageHeader {
  margin-left: 0px;
}
.msgview
  .messageContainer
  .contentView
  .messageContent.threadedViewMessage
  .threadmessage
  .attachmentPanel
  .attachmentBlock {
  overflow: auto;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .subjectEntityHolder
  hr {
  margin-top: 0;
  margin-bottom: 14px;
}
.msgview .messageContainer .contentView .messageContent .topfixtitle > * {
  z-index: 350;
}
.msgview .messageContainer .contentView .messageContent .topfixtitle hr {
  margin-bottom: 20px;
}
.msgview .messageContainer .contentView .messageContent .messageBlocksWrapper {
  margin-left: 50px;
}
.msgview .messageContainer .contentView .messageContent .iframeMessageView {
  border: none;
  overflow: hidden;
}
.msgview .messageContainer .contentView .messageContent .hr-lg {
  margin-top: 0px;
  border-bottom: 2px solid #767676;
}
.msgview .messageContainer .contentView .messageContent .messageControls {
  min-width: 300px;
  font-size: 14px;
  height: 50px;
  padding: 10px 0px 10px 10px;
}
.msgview .messageContainer .contentView .messageContent .messageBlock {
  padding-left: 12px;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock.subjectEntity {
  min-height: 26px;
  color: #3e3e3e;
  padding-left: 0px;
  margin-bottom: 20px;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock.subjectEntity
  span {
  padding-left: 0px;
  margin-left: 0px;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .messageViewFrom {
  float: left;
  width: calc(100% - 160px);
  max-height: 60px;
  display: table;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .messageViewFrom
  .avatarImageDiv {
  width: 56px;
  height: 56px;
  position: absolute;
  left: -12px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .messageViewFrom
  span.fromEntity {
  display: block;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .messageViewFrom.firstOfThread {
  width: calc(100% - 210px);
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .messageViewHeaders {
  color: #595959;
  position: relative;
  min-height: 22px;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .messageViewHeaders
  span {
  margin-left: 80px;
  display: inline-block;
  padding: 1px 5px;
  margin-top: -5px;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .messageViewHeaders
  span.dateEntity {
  vertical-align: sub;
  line-height: 22px;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .messageViewHeaders
  span.fromEntity {
  margin-left: 45px;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .messageViewHeaders
  span[dynamicdirectiverun] {
  padding-left: 2px;
  padding-top: 3px;
  position: relative;
  top: -1px;
  left: -3px;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .messageViewHeaders
  span.fieldTitle {
  position: absolute;
  left: 0;
  margin-left: 0;
  max-width: 90px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 22px;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .messageViewHeaders
  span.recipient {
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 3px;
  top: 0px;
  line-height: 20px;
  cursor: default;
  padding: 0 5px;
  border-radius: 3px;
  word-break: break-all;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .messageViewHeaders
  span.recipient
  .fa-bars {
  margin-left: 5px;
  visibility: hidden;
  z-index: -1;
  position: relative;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .messageViewHeaders
  span.recipient.hoverMenu,
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .messageViewHeaders
  span.recipient:hover {
  box-shadow: 0 0 2px 1px gray;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .messageViewHeaders
  span.recipient.hoverMenu
  .fa-bars,
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .messageViewHeaders
  span.recipient:hover
  .fa-bars {
  visibility: visible;
  cursor: pointer;
  z-index: 0;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .messageViewHeaders
  .messageStatuses,
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .messageViewHeaders
  .messageStatuses
  .messageSmallStatus {
  margin-left: 0;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  div.hoverListMenu {
  display: none;
  position: fixed;
  background-color: #fff;
  z-index: 1;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  div.hoverListMenu
  ul {
  list-style: none;
  box-shadow: 0 0 1px 1px gray;
  border-radius: 3px;
  display: inline-block;
  width: 100%;
  padding: 0;
  margin-bottom: 0;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  div.hoverListMenu
  ul
  li {
  cursor: pointer;
  padding: 3px 15px;
  font-weight: 400;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .fromEntity {
  color: #3e3e3e;
  font-weight: 700;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .dateEntity {
  padding-left: 5px;
  float: left;
  vertical-align: top;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageBlock
  .toEntity {
  margin-left: -2px;
}
.msgview .messageContainer .contentView .messageContent .messageTextPart {
  margin-bottom: 10px;
  color: #444;
}
.msgview .messageContainer .contentView .messageContent .collapseCaret {
  width: 15px;
  height: 20px;
  float: left;
  margin-left: 12px;
  color: #595959;
  text-decoration: none;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageHeader
  .messageDropdown {
  height: 24px;
  margin-top: -8px;
  overflow: visible;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .messageHeader
  .messageHeaderMore
  .messageBlock
  .messageViewHeaders
  span.toEntity {
  vertical-align: middle;
}
.msgview .messageContainer .contentView .messageContent .messageIcons {
  padding-right: 10px;
  position: relative;
  z-index: 100;
  margin-top: -3px;
}
.msgview .messageContainer .contentView .messageContent .messageIcons a {
  margin-right: 5px;
  color: #0e57ab;
}
.msgview .messageContainer .contentView .messageContent .messageIcons a:active,
.msgview .messageContainer .contentView .messageContent .messageIcons a:focus,
.msgview .messageContainer .contentView .messageContent .messageIcons a:hover {
  text-decoration: none;
  color: #0e57ab;
}
.msgview .messageContainer .contentView .messageContent .messageIcons .tooltip {
  z-index: 1000;
}
.msgview .messageContainer .contentView .messageContent .pgpKeyInfo {
  margin: 0;
  padding: 7px;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .pgpKeyInfo.saved-draft-row {
  margin: 0;
  margin-top: 15px;
}
.msgview .messageContainer .contentView .messageContent .pgpKeyInfo th {
  padding-top: 10px;
  padding-bottom: 20px;
}
.msgview .messageContainer .contentView .messageContent .pgpKeyInfo td.header {
  padding: 3px 5px;
  font-weight: 700;
  text-align: right;
  padding-right: 15px;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .threadmessage
  .threadHeader {
  cursor: pointer;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .threadmessage
  .threadHeader
  .previewText {
  display: none;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .threadmessage
  .threadHeader
  .previewText
  .messageViewHeaders {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
  font-style: italic;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .threadmessage
  .threadHeader.collapsed
  .messageHeaderMore {
  display: none;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .threadmessage
  .threadHeader.collapsed
  .previewText {
  display: inline-block;
  width: calc(100% - 0px);
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .threadmessage
  .threadHeader.collapsed
  .previewText
  .messageBlock {
  padding-left: 0;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .threadmessage
  .threadHeader.collapsed
  .previewText
  .messageBlock
  .messageStatuses {
  padding: 0;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .threadmessage
  .threadHeader.collapsed
  .previewText
  .messageBlock
  .collapsedPreview {
  display: inline;
  margin-left: 0px;
  padding-left: 0px;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .threadmessage
  .threadHeader.collapsed.msg-header-underlined {
  border-bottom: 0;
  padding-bottom: 0;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .threadmessage.defaultExpanded
  .collapse {
  display: block;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .threadmessage.defaultExpanded
  .collapse.collapsed {
  display: none;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .threadmessage:not(:first-child)
  .collapse {
  display: block;
  position: fixed;
  right: 999999999999999px;
}
.msgview
  .messageContainer
  .contentView
  .messageContent
  .threadmessage:not(:first-child)
  .collapse.in {
  position: static;
}
.msgview #invitecalendarsidebar #invitecalendar,
.msgview #invitesuggestedtimesidebar #invitesuggestedtime {
  z-index: 351;
}
.horiz.msgcollapsing .msgview,
.horiz.openedmessage.full .msgview,
.horizfull.openedmessage .msgview,
.vert.msgcollapsing .msgview,
.vert.openedmessage .msgview {
  z-index: 200;
}
.horiz .msgview,
.horizfull .msgview {
  width: 100%;
}
.horiz .msgview .nomsg,
.horizfull .msgview .nomsg {
  margin-top: 20px;
}
.listPane.msgcollapsing #workspace2.horiz {
  z-index: 200;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
.listPane.msgcollapsing #workspace2.horiz,
.listPane.msgcollapsing #workspace2.horiz .contentView {
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}
.listPane.msgcollapsing #workspace2.vert {
  -webkit-transition: width 0.35s ease;
  transition: width 0.35s ease;
  z-index: 200;
  position: absolute;
  right: 0;
}
.msg-modal-body {
  text-align: center;
  padding: 14px;
  padding-top: 0;
  clear: both;
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
}
.msg-modal-body h4 {
  text-align: left;
  margin-bottom: 35px;
}
.msg-modal-body table {
  table-layout: fixed;
  white-space: nowrap;
}
.msg-modal-body table.image_info {
  margin-bottom: 20px;
}
.msg-modal-body table.image_info th {
  font-size: 14px;
  vertical-align: top;
}
.msg-modal-body table.image_info td {
  padding-left: 10px;
  text-align: left;
  font-size: 13px;
}
.modal-body.gallery-modal {
  width: auto;
}
.modal_link_button {
  min-width: 80px;
  padding-top: 4px;
  padding-bottom: 4px;
  margin: 0 3px;
}
.modal-footer button.btn + .btn.create_event_button {
  width: auto;
}
.lightbox-nav {
  position: relative;
  margin-bottom: 12px;
  text-align: center;
  font-size: 0;
}
.lightbox-nav .btn-group {
  vertical-align: top;
}
.lightbox-nav .close {
  position: absolute;
  top: 0;
  right: 0;
}
.lightbox-image-container {
  position: relative;
  text-align: center;
}
.lightbox-image-caption {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0.5em 0.9em;
  color: #000;
  font-size: 1.5em;
  font-weight: 700;
  text-align: left;
  text-shadow: 0.1em 0.1em 0.2em hsla(0, 0%, 100%, 0.5);
}
.lightbox-image-caption span {
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  background-color: hsla(0, 0%, 100%, 0.75);
  box-shadow: 0.4em 0 0 hsla(0, 0%, 100%, 0.75),
    -0.4em 0 0 hsla(0, 0%, 100%, 0.75);
}
.lightbox-nav button.close {
  color: #3e3e3e;
  opacity: 1;
  outline: none;
}
.nomsgInvite .nomsg {
  margin-top: 20px;
  margin-bottom: 40px;
}
.messageruleBlock {
  background-color: #faf4d2;
  padding: 10px;
  border: 1px solid #d8cc82;
  box-shadow: 0 1px 2px 0 #767676;
  display: flex;
  flex-wrap: wrap;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}
.messageruleBlock.receiptBlock {
  display: block;
}
.messageruleBlock.receiptBlock:not(:first-child),
.pgpBannersContainer + .messageruleBlock {
  margin-top: 10px;
}
.messageruleBlock.success {
  background-color: #d2fad5;
  border-color: #76f07f;
}
.messageruleBlock.error {
  background-color: #fad5d2;
  border-color: #f07f76;
}
.messageruleBlock .showcontent {
  float: right;
  font-weight: 700;
  margin-right: 10px;
}
.messageruleBlock .showcontent.sendReceipt {
  float: none;
  display: inline-block;
  margin-top: 6px;
}
.messageruleBlock .bold_inline_txt {
  font-weight: 700;
}
.messageruleBlock i.fa {
  padding-left: 10px;
  padding-right: 10px;
  display: none;
}
.messageruleBlock .linksContainer {
  display: flex;
  flex-wrap: wrap;
}
.messageruleBlock .textContainer {
  display: inline-block;
  flex-grow: 1;
  margin-right: 15px;
}
.receiptBlockForSender {
  background-color: #f6f6f6;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 7px;
}
#showScheduleToggle {
  color: #0e57ab;
}
#showScheduleToggle .closed {
  display: none;
}
#showScheduleToggle.collapsed .closed,
#showScheduleToggle .open {
  display: inline;
}
#showScheduleToggle.collapsed .open {
  display: none;
}
#invitesuggestedtimesidebar .date .fa {
  color: #0e57ab;
  position: absolute;
  right: 15px;
  bottom: 0;
  padding: 8px;
  font-size: 18px;
}
.saved-draft-row {
  background-color: #f6f6f6;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 7px;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
}
.saved-draft-row .cl1 {
  font-weight: 700;
}
.saved-draft-row .cl2 {
  font-weight: 700;
  text-align: right;
}
#msgsourceview .modal-dialog {
  min-width: 440px;
  width: 66%;
  min-height: 440px;
  height: 80vh;
  margin-top: 10vh;
}
#msgsourceview .msg-modal-body,
#msgsourceview .msgsource {
  text-align: left;
  width: 100%;
}
#msgsourceview .msgsource {
  height: 75vh;
  min-height: 400px;
  background-color: #fff;
  overflow: auto;
}
#msgsourceview .msgsource pre {
  border: none;
  background-color: #fff;
  white-space: pre-line;
}
footer.signatureDivContainer img {
  max-width: 100%;
}
.iframe-container {
  width: 100%;
  height: auto;
  overflow: auto;
}
.hiddenUploadButton {
  height: 0;
  width: 0;
  position: absolute;
  overflow: hidden;
  visibility: none;
}
.composebody {
  overflow: hidden;
}
@media (min-width: 1441px) {
  .composebody .hidden-xlg {
    display: none;
  }
}
.composebody .cke_top {
  padding-right: 120px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .composebody .cke_top {
    min-height: 64px;
  }
}
@media (min-width: 1441px) {
  .composebody .cke_top {
    padding-right: 220px;
  }
}
.composebody .cke_reset_all .cke_button_icon,
.composebody .cke_reset_all .cke_combo_text {
  color: #3e3e3e;
}
.composebody .cke_contents {
  min-height: 30vh;
}
.composebody .ckeditor-dropdowns {
  position: absolute;
  right: 23px;
  top: 6px;
  max-width: 400px;
  text-align: right;
}
.composebody .ckeditor-dropdowns .cke-toolbar-icon {
  line-height: 27px;
  vertical-align: top;
  margin: 1px;
}
.composebody .ckeditor-dropdowns .dropdown-container {
  display: inline-block;
  max-width: 80px;
  text-align: left;
}
.composebody .ckeditor-dropdowns .dropdown-container .dropdown-select {
  line-height: 15px;
  font-size: 12px;
  height: 27px;
  width: 80px;
  padding-right: 6px;
  color: #3e3e3e;
  background-color: #fff;
  border: none;
  border-radius: 0;
}
.composebody
  .ckeditor-dropdowns
  .dropdown-container
  .dropdown-select
  .dropdown-selected-option-container {
  width: calc(100% - 6px);
}
.composebody
  .ckeditor-dropdowns
  .dropdown-container
  .dropdown-select
  .fa-angle-down {
  width: 0;
  margin-top: 6px;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid #3e3e3e;
}
.composebody
  .ckeditor-dropdowns
  .dropdown-container
  .dropdown-select
  .fa-angle-down:before {
  content: none;
}
.composebody .ckeditor-dropdowns .dropdown-container.placeholder-dropdown {
  max-width: 110px;
}
.composebody
  .ckeditor-dropdowns
  .dropdown-container.placeholder-dropdown
  .dropdown-select {
  width: 110px;
}
.composebody
  .ckeditor-dropdowns
  .dropdown-container.placeholder-dropdown
  label {
  display: inline-block;
  width: calc(100% - 16px);
  margin: 4px 8px;
  border-bottom: 1px solid #dbdbdb;
}
.composebody .bottomComposeButtons {
  position: absolute;
  bottom: -50px;
  right: 50px;
}
.composebody .bottomComposeButtons.focused {
  bottom: 15px;
}
.sections-mail-compose {
  padding: 0;
  width: inherit;
  position: relative;
  height: 100%;
}
.sections-mail-compose .subject-title .form-control {
  width: 75%;
}
.sections-mail-compose .feedbackto {
  display: inline-block;
  padding: 6px;
  font-size: 12px;
  color: gray;
  line-height: 1.5;
}
.sections-mail-compose .mainCompose {
  overflow-y: auto;
  padding: 10px 15px 0;
  max-height: calc(100vh - 100px);
}
.sections-mail-compose .mainCompose .composebody {
  overflow: hidden;
}
.sections-mail-compose .mainCompose .composebody .cke_top {
  padding-right: 230px;
}
@media (min-width: 768px) and (max-width: 1440px) {
  .sections-mail-compose .mainCompose .composebody .cke_top {
    min-height: 64px;
  }
}
@media (min-width: 1441px) {
  .sections-mail-compose .mainCompose .composebody .cke_top {
    padding-right: 380px;
  }
}
.sections-mail-compose
  .mainCompose
  .composebody
  .cke_reset_all
  .cke_button_icon,
.sections-mail-compose
  .mainCompose
  .composebody
  .cke_reset_all
  .cke_combo_text {
  color: #3e3e3e;
}
.sections-mail-compose .mainCompose .composebody .cke_contents {
  min-height: 30vh;
}
.sections-mail-compose .mainCompose .composebody .form-group-sm {
  position: relative;
  min-height: 200px;
}
.sections-mail-compose .mainCompose .composebody .ckeditor-dropdowns {
  position: absolute;
  right: 10px;
  top: 6px;
  max-width: 395px;
  text-align: right;
}
.sections-mail-compose
  .mainCompose
  .composebody
  .ckeditor-dropdowns
  .cke-toolbar-icon {
  line-height: 27px;
  vertical-align: top;
  margin: 1px;
}
.sections-mail-compose
  .mainCompose
  .composebody
  .ckeditor-dropdowns
  .dropdown-container {
  display: inline-block;
  max-width: 80px;
  text-align: left;
}
.sections-mail-compose
  .mainCompose
  .composebody
  .ckeditor-dropdowns
  .dropdown-container
  .dropdown-select {
  line-height: 15px;
  font-size: 12px;
  height: 27px;
  width: 80px;
  padding-right: 6px;
  color: #3e3e3e;
  background-color: #fff;
  border: none;
  border-radius: 0;
}
.sections-mail-compose
  .mainCompose
  .composebody
  .ckeditor-dropdowns
  .dropdown-container
  .dropdown-select
  .dropdown-selected-option-container {
  width: calc(100% - 6px);
}
.sections-mail-compose
  .mainCompose
  .composebody
  .ckeditor-dropdowns
  .dropdown-container
  .dropdown-select
  .fa-angle-down {
  width: 0;
  margin-top: 6px;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid #3e3e3e;
}
.sections-mail-compose
  .mainCompose
  .composebody
  .ckeditor-dropdowns
  .dropdown-container
  .dropdown-select
  .fa-angle-down:before {
  content: none;
}
.sections-mail-compose
  .mainCompose
  .composebody
  .ckeditor-dropdowns
  .dropdown-container.placeholder-dropdown {
  max-width: 110px;
}
.sections-mail-compose
  .mainCompose
  .composebody
  .ckeditor-dropdowns
  .dropdown-container.placeholder-dropdown
  .dropdown-select {
  width: 110px;
}
.sections-mail-compose
  .mainCompose
  .composebody
  .ckeditor-dropdowns
  .dropdown-container.placeholder-dropdown
  label {
  display: inline-block;
  width: calc(100% - 16px);
  margin: 4px 8px;
  border-bottom: 1px solid #dbdbdb;
}
.sections-mail-compose .mainCompose .composebody .bottomComposeButtons {
  position: absolute;
  bottom: -50px;
  right: 50px;
}
.sections-mail-compose .mainCompose .composebody .bottomComposeButtons.focused {
  bottom: 15px;
}
.sections-mail-compose .mainCompose .composebody .followups-info {
  width: 100%;
  margin: 4px 0px;
  padding: 4px;
  background-color: #f6f6f6;
  border: 1px solid #eee;
}
.sections-mail-compose
  .mainCompose
  .composebody
  .followups-info
  .followups-info-title {
  position: relative;
}
.sections-mail-compose
  .mainCompose
  .composebody
  .followups-info
  .followups-info-title
  [data-toggle="collapse"].followups-info-title-clickable {
  cursor: pointer;
}
.sections-mail-compose
  .mainCompose
  .composebody
  .followups-info
  .followups-info-title
  [data-toggle="collapse"].followups-info-title-clickable:before {
  margin-right: 2px;
  font-family: FontAwesome;
  content: "\f0da";
}
.sections-mail-compose
  .mainCompose
  .composebody
  .followups-info
  .followups-info-title
  [data-toggle="collapse"].followups-info-title-clickable[aria-expanded="true"]:before {
  margin-right: 2px;
  font-family: FontAwesome;
  content: "\f0d7";
}
.sections-mail-compose
  .mainCompose
  .composebody
  .followups-info
  .followups-info-title
  .buttons-container {
  position: absolute;
  right: 0;
  font-weight: 700;
}
.sections-mail-compose
  .mainCompose
  .composebody
  .followups-info
  .followups-info-title
  .buttons-container
  .buttons-container-vr {
  color: #0e57ab;
  margin: 0 2px;
}
.sections-mail-compose
  .mainCompose
  .composebody
  .followups-info
  .followups-info-details
  .followups-info-details-item {
  display: block;
}
.sections-mail-compose .mainCompose [data-placeholder-id] {
  background-color: #c0dcfc;
  color: #003e87;
}
.sections-mail-compose h3 {
  font-size: 24px;
  color: #3e3e3e;
  height: 24px;
  margin-top: 0px;
  margin-bottom: 16px;
}
.sections-mail-compose hr {
  margin: 0px;
}
.sections-mail-compose .fromfield {
  float: left;
  padding-right: 10px;
}
.sections-mail-compose .fromfield a.fromitem {
  padding-left: 25px;
}
.sections-mail-compose .fromfield label {
  padding: 5px 0px 0px;
}
.sections-mail-compose .fromfield li.divider {
  margin: 3px 10px;
}
.sections-mail-compose .fromselected {
  padding: 5px 0px;
}
.sections-mail-compose .composePlainTextToolbar {
  height: 39px;
  width: 100%;
  background-color: #d5d5d5;
  border-bottom-color: #767676;
}
.sections-mail-compose .plainBodyInput {
  white-space: pre-wrap;
  overflow-y: auto;
  display: block;
}
.sections-mail-compose .text-input {
  cursor: text;
  height: 30px;
  vertical-align: top;
  overflow: hidden;
  display: inline-block;
  max-height: 30px;
  height: auto;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.sections-mail-compose .text-input.full-height {
  max-height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.sections-mail-compose .text-input.full-height.scrollBar {
  overflow-y: scroll;
}
.sections-mail-compose .text-input.full-height.scrollBar .moreToggle {
  padding-right: 40px;
}
.sections-mail-compose .text-input label {
  display: inline;
  float: left;
  width: auto;
  margin-top: 5px;
}
.sections-mail-compose .text-input .fieldContent {
  display: inline;
}
.sections-mail-compose .text-input .fieldContent.more {
  display: block;
  padding-right: 80px;
}
.sections-mail-compose .text-input .moreToggle {
  position: absolute;
  right: 0;
  top: 5px;
  color: #54acd2;
  cursor: pointer;
  padding-right: 25px;
  visibility: hidden;
}
.sections-mail-compose .text-input .moreToggle.visible {
  visibility: visible;
}
.sections-mail-compose .email-input-cnt {
  display: block;
  float: left;
}
.sections-mail-compose .email-input-cnt input.tagEdit {
  font-size: 13px;
  padding: 0 5px;
}
.sections-mail-compose .email-input-cnt span.tagEdit {
  font-size: 13px;
  display: inline-block;
}
.sections-mail-compose .email-input-cnt .dummy {
  visibility: hidden;
  float: left;
  height: 0px;
}
.sections-mail-compose span.high-priority {
  color: #ff4c2e;
}
.sections-mail-compose input.high-priority {
  width: calc(100% - 22px);
}
.sections-mail-compose .dragdrop_overlay {
  position: fixed;
  height: 100%;
  width: inherit;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.5);
  top: 50px;
  right: 0;
  color: #fff;
  text-align: center;
  font-size: 25px;
  padding-top: 150px;
}
.sections-mail-compose .dragdrop_overlay .moreInfo {
  font-size: 15px;
  display: block;
  max-width: 400px;
  margin: 0 auto;
}
.sections-mail-compose .dragdrop_overlay .moreInfo.fileTooBig {
  max-width: 320px;
}
@media (max-width: 768px) {
  .sections-mail-compose .dragdrop_overlay {
    left: 0;
    width: 100%;
  }
}
.sections-mail-compose .image_preview {
  float: left;
  position: relative;
  margin-bottom: 15px;
  margin-top: 15px;
  margin-left: 15px;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 40px;
  box-shadow: 0 0 1px 1px #3e3e3e;
}
.sections-mail-compose .image_preview:hover {
  box-shadow: 0 0 1px 2px #3e3e3e;
}
.sections-mail-compose .image_preview:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(62, 62, 62, 0.25);
}
.sections-mail-compose .image_preview:hover:after {
  z-index: -2;
}
.sections-mail-compose .image_preview img {
  height: 120px;
  width: auto;
  max-width: 200px;
}
.sections-mail-compose .image_preview .remove_image_preview {
  position: absolute;
  right: -1px;
  top: 0px;
  font-size: 1.2em;
  line-height: 1;
  z-index: 2;
  color: #fff;
  background-color: #595959;
  border-radius: 5px;
  padding-bottom: 2px;
  text-align: center;
}
.sections-mail-compose .imgoveralay {
  text-align: center;
  width: 100%;
  background-color: #595959;
  position: absolute;
  left: 0px;
  right: 0px;
}
.sections-mail-compose .imgoveralay .imgname,
.sections-mail-compose .imgoveralay .imgsize {
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #fff;
  overflow: hidden;
  width: 100%;
  padding: 0px 5px;
}
.sections-mail-compose .add-contact-icon button {
  color: #0e57ab;
}
.sections-mail-compose div.selected-tags {
  position: relative;
  -webkit-user-drag: element;
}
.sections-mail-compose div.selected-tags span.selected-contact:hover {
  cursor: pointer;
  background-color: #9daabe;
  border: 1px solid #9daabe;
}
.sections-mail-compose div.selected-tags span.selected-contact.noedit {
  background-color: #d5d5d5;
  border: 1px solid #ccc;
}
.sections-mail-compose
  div.selected-tags
  span.selected-contact.noedit.drag:hover {
  background-color: #c1c1c1;
}
.sections-mail-compose .bottomControls {
  position: relative;
  box-shadow: none;
  bottom: 0px;
  left: 0;
  right: 0;
  max-height: 136px;
  margin-right: 15px;
  margin-left: 15px;
}
.sections-mail-compose .bottomControls .attachmentPanel {
  padding-right: 0px;
  padding-left: 0px;
}
.sections-mail-compose .buttonContainer {
  display: inline-block;
}
.sections-mail-compose .uploadDropdown {
  padding: 4px;
}
.sections-mail-compose .uploadDropdown .fa-paperclip {
  width: 16px;
  font-size: 20px;
}
.sections-mail-compose .uploadDropdown .fa-caret-down {
  width: 12px;
}
#pgpPassphrase input[type="password"] {
  width: 100%;
  margin-bottom: 20px;
  padding: 5px;
  color: #767676;
  outline: none;
}
#pgpPassphrase input[type="password"].errorPass {
  border: 2px solid #ad1b00;
  border-radius: 3px;
}
#pgpPassphrase p.errorPass {
  margin: 0;
}
#pgpRecipients ul {
  border-top: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  max-height: 124px;
  overflow-y: auto;
  overflow-x: hidden;
}
div.files-preview-modal .modal-content {
  font-size: 18px;
  color: #3e3e3e;
  background-color: #fff;
  width: 80vw;
  height: 80vh;
}
div.files-preview-modal .modal-content .modal-body {
  width: 100%;
  height: 100%;
}
div.files-preview-modal .modal-content .modal-body .image-name-buttons {
  vertical-align: middle;
  height: 40px;
  border-bottom: 1px solid;
  margin-bottom: 10px;
}
div.files-preview-modal
  .modal-content
  .modal-body
  .image-name-buttons
  .float-left {
  float: left;
}
@media (max-width: 768px) {
  div.files-preview-modal
    .modal-content
    .modal-body
    .image-name-buttons
    .float-left {
    float: none;
    text-align: center;
    white-space: nowrap;
  }
}
div.files-preview-modal
  .modal-content
  .modal-body
  .image-name-buttons
  .float-right {
  float: right;
}
@media (max-width: 768px) {
  div.files-preview-modal
    .modal-content
    .modal-body
    .image-name-buttons
    .float-right {
    float: none;
    text-align: center;
    margin-top: 10px;
  }
}
div.files-preview-modal
  .modal-content
  .modal-body
  .image-name-buttons
  .image-name {
  font-size: 14px;
  font-weight: 700;
  outline: none;
}
@media (max-width: 768px) {
  div.files-preview-modal .modal-content .modal-body .image-name-buttons {
    height: 80px;
  }
}
div.files-preview-modal .modal-content .modal-body .image-box {
  height: calc(100% - 100px);
  position: relative;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  div.files-preview-modal .modal-content .modal-body .image-box {
    height: calc(100% - 140px);
  }
}
div.files-preview-modal .modal-content .modal-body .image-box.zoomed {
  overflow: auto;
}
div.files-preview-modal .modal-content .modal-body .image-box.zoomed img {
  max-height: 10000%;
  max-width: 10000%;
}
div.files-preview-modal .modal-content .modal-body .image-box img {
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
div.files-preview-modal .modal-content .modal-body .image-navigation {
  text-align: center;
  margin-top: 10px;
}
div.files-preview-modal
  .modal-content
  .modal-body
  .image-navigation
  .btn-group {
  margin-left: 7px;
  margin-right: 7px;
}
#missingContactData .modal-body {
  position: relative;
  box-shadow: inset 0 -10px 10px -10px #888;
}
#missingContactData .modal-body .missing-fields-contact {
  padding: 8px;
}
#missingContactData .modal-body .missing-fields-contact:nth-child(even) {
  background-color: #f7f7f7;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}
#missingContactData .modal-body .missing-fields-contact-email,
#missingContactData .modal-body .missing-fields-contact-name {
  margin: 0px;
}
#missingContactData .modal-body .missing-fields-contact-name {
  font-weight: 700;
}
#missingContactData .modal-body .missingContactDataModalField {
  display: block;
  position: relative;
}
#missingContactData .modal-body .missingContactDataModalField input {
  border: 1px solid #ad1b00;
}
#missingContactData .modal-body .missingContactDataModalField .arrow-box {
  display: inline-block;
  position: relative;
  margin-top: 8px;
  padding: 8px;
  border-radius: 4px;
  background: #fad5d2;
}
#missingContactData .modal-body .missingContactDataModalField .arrow-box:after {
  bottom: 100%;
  left: 20px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: hsla(4, 80%, 90%, 0);
  border-bottom-color: #fad5d2;
  border-width: 6px;
  margin-left: -6px;
}
#missingContactData .modal-body .missingContactDataModalField .fa-exclamation {
  font-family: FontAwesome;
  color: #ad1b00;
  display: block;
  position: absolute;
  right: 8px;
  top: 32px;
  bottom: 0;
  font-size: 20px;
}
#missingContactData .modal-body .alert-danger * {
  color: #3e3e3e;
  line-height: 21px;
}
#missingContactData .modal-body .alert-danger .close {
  opacity: 1;
}
#scheduleCustom .modalLightText,
#scheduleSevenDays .modalLightText {
  color: #767676;
}
#scheduleCustom .extraTopMargin,
#scheduleSevenDays .extraTopMargin {
  margin-top: 16px;
}
#scheduleSevenDays .checkboxGroup {
  margin-bottom: 4px;
}
#scheduleSevenDays .noCheckbox {
  visibility: hidden;
}
#scheduleCustom .editDatePicker {
  position: relative;
  padding: 5px 0 0;
  margin-top: 10px;
}
#scheduleCustom .editDatePicker input[type="date"],
#scheduleCustom .editDatePicker input[type="text"] {
  width: auto;
}
#scheduleCustom .editDatePicker a {
  text-decoration: none;
}
#scheduleCustom .editDatePicker .fa {
  color: #0e57ab;
  position: absolute;
  left: 142px;
  bottom: 0;
  padding: 8px;
  font-size: 18px;
}
.mail-compose-panel {
  width: inherit;
  height: inherit;
}
.onlinefaxcompose-section .top-bar {
  height: 58px;
  border-bottom: 1px solid #dcdcdc;
  padding-top: 16px;
  padding-left: 20px;
  padding-right: 20px;
}
.onlinefaxcompose-section .top-bar .dropdown-container {
  display: inline-block;
}
.onlinefaxcompose-section .top-bar .dropdown-container .btn {
  padding-left: 5px;
  padding-right: 5px;
}
.onlinefaxcompose-section .top-bar .dropdown-container .btn .fa-paperclip {
  font-size: 20px;
}
.onlinefaxcompose-section .top-bar .dropdown-container .btn .fa-caret-down {
  font-size: 14px;
  vertical-align: top;
  padding-top: 2px;
  padding-right: 1px;
  padding-left: 5px;
}
.onlinefaxcompose-section .top-bar .pull-right .btn {
  min-width: 80px;
  margin-left: 5px;
  font-size: 13px;
}
.onlinefaxcompose-section .content {
  padding: 10px 25px;
  overflow: auto;
}
.onlinefaxcompose-section .content h1 {
  margin-top: 0;
  font-size: 25px;
  margin-bottom: 6px;
}
.onlinefaxcompose-section .content .input-cc-email,
.onlinefaxcompose-section .content .input-fax-number {
  position: relative;
  display: flex;
  border-bottom: 1px solid #dcdcdc;
  min-height: 32px;
}
.onlinefaxcompose-section .content .input-cc-email > span,
.onlinefaxcompose-section .content .input-fax-number > span {
  padding-top: 6px;
  padding-right: 5px;
}
.onlinefaxcompose-section .content .input-cc-email .input-container,
.onlinefaxcompose-section .content .input-fax-number .input-container {
  padding-top: 2px;
  flex: 1;
  cursor: text;
  display: flex;
  flex-wrap: wrap;
}
.onlinefaxcompose-section .content .input-cc-email .input-container .tag,
.onlinefaxcompose-section .content .input-fax-number .input-container .tag {
  background-color: #bbc5d1;
  padding-left: 6px;
  padding-right: 6px;
  padding-top: 3px;
  margin-right: 5px;
  margin-bottom: 2px;
  cursor: default;
  border-radius: 4px;
}
.onlinefaxcompose-section .content .input-cc-email .input-container .tag .fa,
.onlinefaxcompose-section .content .input-fax-number .input-container .tag .fa {
  cursor: pointer;
  margin-left: 3px;
}
.onlinefaxcompose-section .content .input-cc-email .input-container input,
.onlinefaxcompose-section .content .input-fax-number .input-container input {
  flex: 1;
  border: none;
  outline: none;
}
.onlinefaxcompose-section .content .input-cc-email button.btn-plus,
.onlinefaxcompose-section .content .input-fax-number button.btn-plus {
  -webkit-appearance: none;
  padding: 0;
  background: none;
  border: 0;
  color: #0e57ab;
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 18px;
  line-height: 18px;
}
.onlinefaxcompose-section .content .input-fax-number {
  border-top: 1px solid #dcdcdc;
}
.onlinefaxcompose-section .content .input-fax-number .autofill-list-container {
  width: 250px;
}
.onlinefaxcompose-section .content .cover-page {
  padding-top: 11px;
  padding-bottom: 11px;
}
.onlinefaxcompose-section .content .cover-page label {
  display: block;
}
.onlinefaxcompose-section .content .cover-page button {
  -webkit-appearance: none;
  padding: 0;
  background: none;
  border: 2px solid #3e3e3e;
  border-radius: 11px;
  min-width: 58px;
  height: 23px;
  margin-left: 4px;
  font-size: 12px;
  text-align: left;
}
.onlinefaxcompose-section .content .cover-page button .dot {
  display: inline-block;
  background-color: #3e3e3e;
  border-radius: 8px;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  margin-left: 3px;
}
.onlinefaxcompose-section .content .cover-page button .text {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  min-width: 32px;
  padding-top: 1px;
  padding-right: 7px;
  font-weight: 700;
}
.onlinefaxcompose-section .content .cover-page button.on {
  border-color: #0e57ab;
  background-color: #0e57ab;
  color: #fff;
}
.onlinefaxcompose-section .content .cover-page button.on .dot {
  margin-left: 0;
  margin-right: 3px;
  background-color: #fff;
}
.onlinefaxcompose-section .content .cover-page button.on .text {
  padding-right: 0;
  padding-left: 7px;
}
.onlinefaxcompose-section .content .cover-page-form {
  padding-bottom: 15px;
}
.onlinefaxcompose-section .content .cover-page-form .cover-page-preview {
  display: inline-block;
  min-width: 200px;
  max-height: 275px;
  background-color: #d5d5d5;
  vertical-align: top;
  margin-top: 20px;
  margin-right: 20px;
}
.onlinefaxcompose-section .content .cover-page-form div.cover-page-preview {
  min-height: 275px;
}
.onlinefaxcompose-section .content .cover-page-form .cover-page-form-container {
  display: inline-block;
}
.onlinefaxcompose-section
  .content
  .cover-page-form
  .cover-page-form-container
  label {
  margin-bottom: 0;
}
.onlinefaxcompose-section
  .content
  .cover-page-form
  .cover-page-form-container
  div {
  padding-bottom: 5px;
}
.onlinefaxcompose-section
  .content
  .cover-page-form
  .cover-page-form-container
  input {
  height: 30px;
}
.onlinefaxcompose-section
  .content
  .cover-page-form
  .cover-page-form-container
  textarea {
  resize: vertical;
}
.onlinefaxcompose-section
  .content
  .cover-page-form
  .cover-page-form-container
  .address,
.onlinefaxcompose-section
  .content
  .cover-page-form
  .cover-page-form-container
  .company,
.onlinefaxcompose-section
  .content
  .cover-page-form
  .cover-page-form-container
  .name,
.onlinefaxcompose-section
  .content
  .cover-page-form
  .cover-page-form-container
  .phone-number {
  display: inline-block;
  width: 260px;
}
.onlinefaxcompose-section
  .content
  .cover-page-form
  .cover-page-form-container
  .address,
.onlinefaxcompose-section
  .content
  .cover-page-form
  .cover-page-form-container
  .company {
  margin-left: 15px;
}
.onlinefaxcompose-section .content .add-files {
  border-top: 1px solid #dcdcdc;
  padding-top: 17px;
}
.onlinefaxcompose-section .content .add-files input[type="file"] {
  height: 0;
  width: 0;
  position: absolute;
  visibility: hidden;
}
.onlinefaxcompose-section .content .add-files .drag-and-drop-info {
  padding-bottom: 10px;
  vertical-align: middle;
}
.onlinefaxcompose-section .content .add-files label {
  margin: 0;
}
.onlinefaxcompose-section .content .add-files > div {
  padding-bottom: 12px;
}
.onlinefaxcompose-section .content .add-files .dropdown-container,
.onlinefaxcompose-section .content .add-files > span {
  display: inline-block;
}
.onlinefaxcompose-section .content .add-files .dropdown-container button {
  height: 32px;
  min-width: 110px;
  margin-right: 10px;
}
.onlinefaxcompose-section .content .add-files .dropdown-container button .fa {
  float: right;
  line-height: 19px;
}
.onlinefaxcompose-section .content .add-files .attachments {
  padding-top: 14px;
}
.onlinefaxcompose-section .content .add-files .attachments .attachmentItem {
  margin-bottom: 14px;
}
.onlinefaxcompose-section
  .content
  .add-files
  .attachments
  .attachmentItem
  .attachmentActions {
  float: left !important;
}
.attachmentview-container {
  color: #3e3e3e;
}
.attachmentview-container .listContainer {
  overflow-y: scroll;
  -ms-overflow-style: scrollbar;
}
.attachmentview-container .listContainer .listloading {
  padding-top: 50px;
}
.attachmentview-container .tooltip-inner {
  word-break: break-all;
}
.attachmentview-container .disabled {
  z-index: 1000;
  opacity: 0.6;
  pointer-events: none;
}
.attachmentview-container .row {
  margin-right: 0px;
  margin-left: 0px;
}
.attachmentview-container .nofile-title {
  text-align: center;
  padding: 20px;
  margin-top: 100px;
  color: #767676;
  font-size: 14px;
}
.attachmentview-container .nofile-title h3 {
  font-size: 20px;
  margin: 10px 0;
}
.attachmentview-container .breadcrumb {
  padding-top: 15px;
  margin-bottom: 0px;
  list-style: none;
  background-color: transparent;
  border-radius: 0px;
  font-size: 1.8em;
  color: #acacac;
  padding-bottom: 0px;
}
.attachmentview-container .breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.attachmentview-container .breadcrumb li {
  display: inline;
  padding: 0;
  margin: 0;
}
.attachmentview-container .breadcrumb li:hover {
  color: #111;
}
.attachmentview-container .breadcrumb li:before {
  content: " > ";
}
.attachmentview-container .breadcrumb li:first-child:before {
  content: "";
}
.attachmentview-container .cursor-pointer {
  cursor: pointer;
}
.attachmentview-container .paddingl16 {
  padding-left: 16px;
}
.attachmentview-container .paddingl18 {
  padding-left: 18px;
}
.attachmentview-container .paddingl20 {
  padding-left: 20px;
}
.attachmentview-container .hideit {
  visibility: hidden;
}
.attachmentview-container .showit {
  visibility: visible;
}
.attachmentview-container .greyish {
  color: #0e57ab;
}
.attachmentview-container .greyish:hover {
  color: #3e3e3e;
}
.attachmentview-container .floatright {
  float: right;
}
.attachmentview-container .floatleft {
  float: left;
}
.attachmentview-container .attachmentview-command-pane .dropdown-menu-right {
  left: -40px;
}
.attachmentview-container
  .attachmentview-command-pane
  .dropdown-menu-right
  li
  a.sortbylink {
  float: left;
  width: 100%;
}
.attachmentview-container .attachmentview-command-pane .spacer-title {
  margin-left: 30px;
}
.attachmentview-container .attachmentview-command-pane .spacer-iconbar {
  margin-top: 20px;
  margin-bottom: 11px;
  margin-right: 20px;
}
.attachmentview-container
  .attachmentview-command-pane
  .spacer-iconbar
  .folderSelectContainer {
  display: inline-block;
  padding: 0;
  overflow: inherit;
  width: 200px;
  margin-right: 10px;
  float: left;
}
.attachmentview-container
  .attachmentview-command-pane
  .spacer-iconbar
  .folderSelectContainer
  .form-control {
  height: 30px;
}
.attachmentview-container .attachmentview-command-pane .spacer-iconbar label {
  line-height: 32px;
  margin-bottom: 0;
  float: left;
  margin-right: 8px;
}
.attachmentview-container
  .attachmentview-command-pane
  .spacer-iconbar
  .newEventDropdownPick
  div {
  line-height: 18px;
}
.attachmentview-container .attachmentview-datagrid-pane .list-view .divhead {
  background: #283a50;
  padding-right: 17px;
}
.attachmentview-container .attachmentview-datagrid-pane .list-view .divth {
  background-color: #283a50;
  color: #fff;
  font-size: 0.9em;
  padding: 6px;
  padding-left: 24px;
}
.attachmentview-container .attachmentview-datagrid-pane .list-view .divtd,
.attachmentview-container .attachmentview-datagrid-pane .list-view .divth {
  float: left;
  padding: 6px;
}
.attachmentview-container .attachmentview-datagrid-pane .list-view .divtd.cBox,
.attachmentview-container .attachmentview-datagrid-pane .list-view .divth.cBox {
  width: 30px;
  text-align: center;
  padding: 6px;
}
.attachmentview-container .attachmentview-datagrid-pane .list-view .divtd.type,
.attachmentview-container .attachmentview-datagrid-pane .list-view .divth.type {
  width: 90px;
}
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  .divtd.type
  span,
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  .divth.type
  span {
  font-size: 0.9em;
  padding-left: 5px;
}
.attachmentview-container .attachmentview-datagrid-pane .list-view .divtd.name,
.attachmentview-container .attachmentview-datagrid-pane .list-view .divth.name {
  width: 25%;
}
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  .divtd.name
  a,
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  .divth.name
  a {
  display: inline-block;
  max-width: calc(100% - 50px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #0e57ab;
}
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  .divtd.name
  .action-icons
  a,
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  .divth.name
  .action-icons
  a {
  display: inline;
}
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  .divtd.subject,
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  .divth.subject {
  width: 25%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  .divtd.sender,
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  .divth.sender {
  width: 15%;
  padding-right: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.attachmentview-container .attachmentview-datagrid-pane .list-view .divtd.size,
.attachmentview-container .attachmentview-datagrid-pane .list-view .divth.size {
  width: 10%;
}
.attachmentview-container .attachmentview-datagrid-pane .list-view .divtd.date,
.attachmentview-container .attachmentview-datagrid-pane .list-view .divth.date {
  width: auto;
}
@media (min-width: 1308px) {
  .attachmentview-container
    .attachmentview-datagrid-pane
    .list-view
    .divtd.sender,
  .attachmentview-container
    .attachmentview-datagrid-pane
    .list-view
    .divth.sender {
    width: 20%;
  }
  .attachmentview-container
    .attachmentview-datagrid-pane
    .list-view
    .divtd.subject,
  .attachmentview-container
    .attachmentview-datagrid-pane
    .list-view
    .divth.subject {
    width: 22%;
  }
}
.attachmentview-container .attachmentview-datagrid-pane .list-view .divtd {
  padding: 0 6px;
  height: 20px;
}
.attachmentview-container .attachmentview-datagrid-pane .list-view .divtd.cBox {
  padding: 0 6px;
}
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  .divtd.name
  .fa-envelope {
  position: relative;
  top: -1px;
}
.attachmentview-container .attachmentview-datagrid-pane .list-view div.divtr {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  div.divtr
  .hideit-hf {
  visibility: hidden;
}
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  div.divtr.active
  .hideit-hf,
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  div.divtr
  .hideit-hf.fa-check-square,
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  div.divtr.keynavActive
  .hideit-hf {
  visibility: visible;
}
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  div.divtr:focus,
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  div.divtr:hover {
  background: #eff2f6;
}
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  div.divtr:focus
  .hideit-hf,
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  div.divtr:hover
  .hideit-hf {
  visibility: visible !important;
}
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  .fcol-spacer {
  padding-left: 24px;
}
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  .action-icons {
  float: right;
}
.attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  .action-icons
  span.fa {
  padding-right: 10px;
}
.attachmentview-container .attachmentview-datagrid-pane .list-view .bgricon {
  font-size: 1.2em;
}
.attachmentview-container .attachmentview-side-bar {
  width: 30%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  right: 0;
  z-index: 10;
  padding: 20px;
  box-shadow: -1px 0px 5px #acacac;
}
.attachmentview-container .attachmentview-side-bar .close-button {
  font-size: 15px;
  float: right;
  padding-top: 0px;
}
.attachmentview-container .attachmentview-side-bar .thumbimg {
  padding: 4px;
  text-align: center;
  font-size: 13em;
  color: #ccc;
  height: 33%;
  background-size: contain;
  background-position-x: center;
  background-repeat: no-repeat;
}
.attachmentview-container .attachmentview-side-bar h4 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.attachmentview-container .attachmentview-side-bar .noborder td,
.attachmentview-container .attachmentview-side-bar .noborder th,
.attachmentview-container .attachmentview-side-bar .noborder tr {
  border: none;
  padding: 4px;
}
.attachmentview-container .attachmentview-side-bar .file-share-pane input,
.attachmentview-container .attachmentview-side-bar .file-share-pane textarea {
  margin-bottom: 15px;
}
.attachmentview-container
  .attachmentview-side-bar
  .file-share-pane
  .email-input {
  border: none;
  background: none;
  margin-bottom: 0px;
}
.attachmentview-container .attachmentview-side-bar .file-share-pane .dummy {
  display: none;
}
.attachmentview-container .attachmentview-side-bar .file-share-pane ul {
  color: gray;
}
.attachmentview-container .attachmentview-side-bar .file-share-pane textarea {
  height: 250px;
}
.attachmentview-container .showbar {
  visibility: visible;
}
.attachmentview-container .hidebar {
  visibility: hidden;
  display: none;
}
.attachmentview-container .paginationHoriz {
  padding: 10px;
  width: 330px;
}
.attachmentview-container.followupsview-container
  .attachmentview-datagrid-pane
  .list-view
  .divhead {
  padding-right: 0;
}
.attachmentview-container.followupsview-container .no-left-padding {
  padding-left: 0;
}
.attachmentview-container.followupsview-container .no-right-padding {
  padding-right: 0;
}
.attachmentview-container.followupsview-container .tooltip-inner {
  word-break: break-word;
}
.attachmentview-container.followupsview-container .ellipsistooltip {
  display: inline-block;
  max-width: 100%;
}
.attachmentview-container.followupsview-container .col-double-rows {
  line-height: 2.8em;
}
.attachmentview-container.followupsview-container [scroll-directive] {
  overflow-y: auto;
}
.attachmentview-container.followupsview-container .modal-body[ng-transclude] {
  padding-left: 0;
  padding-right: 0;
}
#workspace1 .signatureEdit .cke_top {
  padding: 6px 8px 8px;
}
#workspace1 .signatureEdit .cke_toolbar,
#workspace1 .signatureEdit .cke_toolgroup {
  margin: 0;
}
#workspace1 .signatureEdit .cke_toolbar:not(:last-child):after {
  margin-left: 0;
}
#workspace1 .signatureEdit .cke_toolbar:last-child {
  width: 20px;
}
#workspace1 .signatureEdit .cke_toolbar:last-child a.cke_button {
  padding: 4px 0 4px 4px;
}
#workspace1 .signatureEdit .cke_combo_text {
  padding-left: 5px;
}
.preferences {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-left: 32px;
}
.preferences .pageSubtitle {
  color: #595959;
}
.preferences .tooltip-after-block {
  display: inline-block;
  position: relative;
  right: 0px;
  top: 8px;
  vertical-align: top;
}
.preferences .standard-margin-right {
  margin-right: 12px;
}
.preferences .listloading {
  padding-top: 50px;
}
.preferences .preferenceInfo {
  clear: both;
  color: #595959;
  font-size: 13px;
  margin-bottom: 5px;
}
.preferences label.info {
  margin-bottom: 0;
}
.preferences .infoContainer {
  text-align: left;
}
.preferences .infoContainer label {
  margin-bottom: 0;
}
.preferences .infoContainer button {
  margin-left: 0;
  margin-top: 10px;
  margin-bottom: 28px;
}
.preferences .infoContainer .preferenceInfo {
  max-width: 75%;
}
.preferences .fl {
  float: left;
}
.preferences .fr {
  float: right;
}
.preferences .clear {
  clear: both;
}
.preferences .no-margin {
  margin: 0;
}
.preferences .no-padding {
  padding: 0;
}
.preferences .no-padding hr {
  margin: 0;
}
.preferences .padding-r {
  padding: 0 5px 0 0;
}
.preferences .padding-l {
  padding: 0 0 0 5px;
}
.preferences .zeroLeftPad,
.preferences .zeroRightPad {
  position: relative;
}
.preferences .zeroLeftPad .builtInIcon,
.preferences .zeroRightPad .builtInIcon {
  position: absolute;
  bottom: 7px;
  font-size: 20px;
  color: #0e57ab;
}
.preferences .zeroLeftPad {
  padding-left: 0;
}
.preferences .zeroLeftPad .builtInIcon {
  right: 23px;
}
.preferences .zeroRightPad {
  padding-right: 0;
}
.preferences .zeroRightPad .builtInIcon {
  right: 8px;
}
.preferences .clickable {
  cursor: pointer;
}
.preferences .form-control {
  padding: 6px 18px 6px 10px;
}
.preferences textarea#forwardAddress {
  min-height: 100px;
  white-space: pre-line;
  resize: vertical;
  line-height: normal;
  width: 100%;
  display: inline-block;
  padding-bottom: 7px;
  padding-top: 8px;
}
.preferences label.control-label {
  margin-top: 6px;
  padding-top: 0px;
}
.preferences .control-label-checkbox {
  margin-top: 9px;
}
.preferences .form-group {
  margin-bottom: 12px;
  margin-left: 0;
  margin-right: 0;
}
.preferences .col-sm-5 {
  padding-left: 0;
}
.preferences hr {
  margin: 0px -10px 10px;
}
.preferences h3 {
  height: 30px;
  line-height: 30px;
  margin-right: 14px;
  margin-top: 23px;
  margin-bottom: 12px;
}
.preferences h4 {
  font-size: 14px;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 16px;
}
.preferences h5 {
  margin-top: 0;
}
.preferences .note {
  color: #ccc;
  width: 60%;
}
.preferences .zeroMargin {
  margin: 0;
}
.preferences .tooltip {
  position: fixed;
}
.preferences .tooltip .tooltip-inner {
  padding: 8px 12px;
}
.preferences .tooltip.in {
  opacity: 1;
  filter: alpha(opacity=100);
}
.preferences .accountform .tooltip {
  position: absolute;
}
.preferences .zeroInboxInput {
  position: relative;
}
.preferences .zeroInboxInput .tooltip-inner {
  position: relative;
  min-width: 250px;
  text-align: left;
}
.preferences .zeroInboxInput .infoContainer {
  padding-top: 0;
}
.preferences .zeroInboxInput .textInput {
  margin-bottom: 0;
}
.preferences .zeroInboxInput .input-field-align {
  margin-top: 7px;
}
.preferences .zeroInboxInput.soundOption .control-label {
  float: left;
}
.preferences .zeroInboxInput.soundOption span.checkbox-directive {
  margin-left: 15px;
}
.preferences .zeroInboxInput.soundOption .divider {
  height: 1px;
  background-color: #ccc;
  margin: 0 36px 0 16px;
  width: 100%;
}
.preferences .zeroInboxInput.soundOption .dropdown-options {
  display: flex;
  flex-wrap: wrap;
  overflow-y: visible;
}
.preferences .zeroInboxInput.soundOption .dropdown-options .dropdown-option {
  width: 100%;
}
.preferences
  .zeroInboxInput.soundOption
  .dropdown-options
  .dropdown-option.with-delete {
  width: calc(100% - 55px);
  padding: 5px;
}
.preferences
  .zeroInboxInput.soundOption
  .dropdown-options
  .dropdown-option.fa-times {
  width: 35px;
  padding: 8px 5px;
}
.preferences .zeroInboxInput .inlineDropdownContainer {
  min-height: 39px;
}
.preferences .zeroInboxInput .inlineDropdownContainer .checkbox-directive {
  margin-top: 20px;
}
.preferences .zeroInboxInput .inlineDropdownContainer .dropdown-container {
  vertical-align: middle;
  display: inline-block;
}
.preferences
  .zeroInboxInput
  .inlineDropdownContainer
  .dropdown-container
  .dropdown-select {
  display: inline-block;
  font-size: 14px;
  padding: 3px 8px;
  height: 28px;
}
.preferences .allCalendarLinks button {
  margin-top: 4px;
}
.preferences .tooltipContainer {
  position: relative;
}
.preferences .tooltipContainer .tooltip-inner {
  position: relative;
  min-width: 250px;
  text-align: left;
}
.preferences .tooltipContainer .tooltip ul {
  padding-left: 15px;
}
.preferences .tooltipContainer.answerLength .tooltip-inner {
  min-width: 100px;
  max-width: 180px;
}
.preferences .info-icon-container {
  position: relative;
  color: #fff;
  margin: 0;
}
.preferences .info-icon-container .tooltip-after {
  position: absolute;
  color: #3e3e3e;
  left: 6px;
  top: 3px;
}
.preferences a {
  cursor: pointer;
  color: #0e57ab;
}
.preferences #topAlert {
  display: none;
  z-index: 10;
  height: 40px;
  width: 100%;
  line-height: 40px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
}
.preferences #topAlert.successAlert {
  display: block;
  background: #d2fad5;
  border: 1px solid #82d989;
}
.preferences #topAlert.errorAlert {
  display: block;
  background: #fad5d2;
  border: 1px solid #d9cc82;
}
.preferences #topAlert.infoAlert {
  display: block;
  background: #faf4d2;
  border: 1px solid #d9cc82;
}
.preferences #topAlert.newAlert {
  display: block;
  background: #fad542;
  border: 1px solid #d98882;
}
.preferences .form-group .has-error {
  border-color: #ad1b00;
}
.preferences .has-error.relative {
  position: relative;
}
.preferences .has-error.relative:before {
  position: absolute;
  top: 4px;
}
.preferences .has-error:before {
  content: "!";
  color: #ad1b00;
  position: relative;
  right: 14px;
  top: 30px;
  float: right;
  font-size: 18px;
  font-weight: 700;
}
.preferences .has-error.no-label:before {
  top: 4px;
}
.preferences .has-error.no-label-textarea {
  position: relative;
  border: 1px solid #ad1b00;
  border-right: 3px solid #ad1b00;
  -moz-border-end-width: 4px;
}
.preferences .has-error.no-label-textarea:focus {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.preferences .has-error.no-label-textarea:before {
  top: 8px;
  right: 12px;
  position: absolute;
}
.preferences .has-error:after {
  clear: both;
}
.preferences .text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 26px);
}
.preferences .text-ellipsis.highlight-ellipsis {
  width: calc(100% - 90px);
}
.preferences .profilePicture label,
.preferences .profilePicture legend {
  margin-top: 32px;
}
.preferences .profilePicture #profilePicture {
  border: none;
  background: none;
  outline: none;
  width: 72px;
  height: 72px;
  padding: 0;
  cursor: pointer;
  margin-top: 5px;
  margin-bottom: 15px;
  color: #fff;
}
.preferences .profilePicture #profilePicture .defaultAvatar {
  width: 100%;
  height: 100%;
  background-color: #767676;
  color: #fff;
  position: relative;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.preferences .profilePicture #profilePicture .defaultAvatar:focus,
.preferences .profilePicture #profilePicture .defaultAvatar:hover {
  background-color: #555;
}
.preferences .profilePicture #profilePicture .defaultAvatar:focus {
  outline: none;
}
.preferences .profilePicture #profilePicture .defaultAvatar .icon-wm-contacts {
  font-size: 47px;
  position: absolute;
  top: 10px;
  left: 14px;
}
.preferences .profilePicture #profilePicture .defaultAvatar .fa-plus {
  font-size: 17px;
  position: absolute;
  top: 25px;
  left: 10px;
}
.preferences .profilePicture #profilePicture .userAvatar {
  position: relative;
  height: 100%;
}
.preferences .profilePicture #profilePicture .userAvatar .imageDiv {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.preferences .profilePicture #profilePicture .userAvatar:after {
  content: "\A";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  cursor: default;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.preferences .profilePicture #profilePicture .userAvatar.inputFocused:after,
.preferences .profilePicture #profilePicture .userAvatar:hover:after {
  opacity: 1;
}
.preferences .profilePicture #profilePicture .userAvatar .fa {
  position: absolute;
  top: -10000px;
  color: #fff;
  z-index: 2;
  cursor: pointer;
  font-size: 17px;
}
.preferences .profilePicture #profilePicture .userAvatar .fa.icon-wm-trash {
  right: 13px;
}
.preferences .profilePicture #profilePicture .userAvatar .fa.fa-refresh {
  left: 14px;
}
.preferences .profilePicture #profilePicture .userAvatar.inputFocused .fa,
.preferences .profilePicture #profilePicture .userAvatar:hover .fa {
  top: 27px;
}
.preferences a#clearCollectedAddresses {
  cursor: pointer;
  font-size: 14px;
}
.preferences .margin-top-6 {
  margin-top: 6px;
}
.preferences .modal-title {
  margin-top: 0;
  font-size: 16px;
}
.preferences select {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(../images/angle-down.png) no-repeat 100%;
}
.preferences select:focus {
  background: url(../images/angle-up.png) no-repeat 100%;
  background-repeat: no-repeat;
  border-color: gray;
  outline: 0;
}
.preferences select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.preferences select::-ms-expand {
  display: none;
}
.preferences .autoBccCheckbox {
  margin-top: 9px;
  margin-bottom: 11px;
}
.preferences .autoBccDropdown {
  width: calc(100% - 25px);
  float: right;
}
.preferences#preferences-advanced .has-error:before {
  position: absolute;
  right: 23px;
  top: 5px;
}
.preferences#preferences-advanced .threadOptions .checkbox-directive {
  float: left;
}
.preferences#preferences-advanced .threadOptions .threadRadios {
  float: left;
  margin-top: -3px;
  margin-left: 10px;
}
.preferences#preferences-keyboardshortcuts .instructionsButton {
  color: #0e57ab;
  font-weight: 700;
}
.preferences#preferences-keyboardshortcuts table.shortcutsTable {
  min-width: 400px;
}
.preferences#preferences-keyboardshortcuts table.shortcutsTable caption {
  padding-bottom: 0;
  padding-top: 3px;
  color: #3e3e3e;
  font-weight: 700;
}
.preferences#preferences-keyboardshortcuts table.shortcutsTable caption h4 {
  margin: 0;
  line-height: inherit;
}
.preferences#preferences-keyboardshortcuts table.shortcutsTable td,
.preferences#preferences-keyboardshortcuts table.shortcutsTable th {
  padding-top: 3px;
  vertical-align: top;
  min-width: 150px;
  font-weight: 700;
}
.preferences#preferences-keyboardshortcuts table.shortcutsTable th {
  min-width: 155px;
  padding-right: 5px;
  font-weight: 400;
}
.preferences#preferences-keyboardshortcuts
  table.shortcutsTable
  th
  span:first-child {
  display: block;
}
.preferences#preferences-keyboardshortcuts
  table.shortcutsTable
  th
  span:last-child {
  display: block;
  margin-top: -4px;
}
.preferences#preferences-keyboardshortcuts
  table.shortcutsTable
  th.additionalInfo {
  line-height: 12px;
  padding-bottom: 4px;
}
.preferences#preferences-keyboardshortcuts
  table.shortcutsTable
  tr:last-child
  td,
.preferences#preferences-keyboardshortcuts
  table.shortcutsTable
  tr:last-child
  th {
  padding-bottom: 30px;
}
.preferences#preferences-popimap .popimapContainer .popimapinfoGroup h4,
.preferences#preferences-popimap .popimapContainer .popimapinfoGroup p {
  margin: 0;
  height: 23px;
}
.preferences#preferences-popimap .popimapContainer .popimapinfoGroup h4 {
  padding-top: 5px;
}
.preferences#preferences-popimap .popimapContainer .popimapinfoGroup p {
  padding-top: 3px;
}
.preferences#preferences-popimap
  .popimapContainer
  .popimapinfoGroup
  p:last-child {
  margin-bottom: 20px;
}
.preferences#preferences-mobile-general {
  overflow-y: auto;
}
.preferences#preferences-mobile-general b {
  color: #3e3e3e;
}
.preferences#preferences-mobile-general .page_content {
  padding-bottom: 4em;
  overflow: auto;
}
.preferences#preferences-mobile-general .page_content .two_column {
  width: 50%;
  float: left;
}
@media (max-width: 1100px) {
  .preferences#preferences-mobile-general .page_content .two_column {
    width: 100%;
  }
}
.preferences#preferences-mobile-general .page_content .content_text {
  width: 90%;
  color: #595959;
  margin-bottom: 1em;
}
.preferences#preferences-mobile-general .page_content .content_text p {
  margin-bottom: 1.5em;
}
.preferences#preferences-mobile-general .page_content .content_text table {
  width: 100%;
}
.preferences#preferences-mobile-general .page_content .content_text table td,
.preferences#preferences-mobile-general .page_content .content_text table th {
  width: 50%;
}
.preferences#preferences-mobile-general .page_content .content_text table th {
  border-bottom: 1px solid silver;
}
.preferences#preferences-mobile-general .page_content .content_text table td {
  padding-top: 1em;
}
.preferences#preferences-mobile-general .page_content ol {
  margin: 0 0 1.5em;
  padding: 0;
  counter-reset: a;
}
.preferences#preferences-mobile-general .page_content ol > li {
  margin: 0;
  padding: 0 0 0 2em;
  text-indent: -1.5em;
  list-style-type: none;
  counter-increment: a;
  width: 80%;
  margin-bottom: 2em;
  color: #595959;
}
.preferences#preferences-mobile-general .page_content ol > li:before {
  display: inline-block;
  width: 1.5em;
  padding-right: 0.5em;
  font-weight: 700;
  text-align: right;
  content: counter(a) ".";
  color: #3e3e3e;
}
.preferences#preferences-mobile-general .page_content .note {
  margin-left: 50%;
  margin-top: 2em;
}
@media (max-width: 1100px) {
  .preferences#preferences-mobile-general .page_content .note {
    margin-left: 0;
  }
}
.preferences#preferences-mobile-general .noUrlsInfo {
  text-align: center;
  margin-top: 200px;
  color: #c4c4c4;
}
.preferences#preferences-mobile-general .noUrlsInfo h3,
.preferences#preferences-mobile-general .noUrlsInfo h4 {
  font-weight: 400;
  color: #c4c4c4;
}
.preferences#preferences-mobile-general .noUrlsInfo h3 {
  font-size: 23px;
  margin: 10px;
}
.preferences#preferences-mobile-general .noUrlsInfo h4 {
  font-size: 20px;
  margin: 0;
}
.preferences .soundUpload {
  margin-top: -12px;
}
.preferences .soundUpload a {
  cursor: pointer;
  color: #54acd2;
}
.preferences input#soundUpload {
  display: none;
}
.preferences #uploadedSound span {
  cursor: pointer;
  margin-left: 10px;
}
.preferences #newpassLabel {
  margin-top: 44px;
}
.preferences .passMeterBlock {
  margin-top: -40px;
}
.preferences .passStrength {
  margin-top: 10px;
  margin-bottom: -16px;
}
.preferences .passStrength h4 {
  color: #3e3e3e;
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
.preferences .passStrength span {
  color: #3e3e3e;
}
.preferences .passStrength ul#strength {
  display: flex;
  width: 100%;
  height: 4px;
  background: #d5d5d5;
  padding: 0;
}
.preferences .passStrength li {
  margin: 0 !important;
  padding: 0 !important;
}
.preferences .passStrength li.point:last {
  margin: 0 0 0 -1px !important;
}
.preferences .passStrength li.point {
  margin: 0;
  padding: 0;
  border: none;
  display: inline-block;
  height: 4px;
  width: 20%;
}
.preferences .changePassForm .form-group.has-error {
  margin-top: -25px;
}
.preferences
  .changePassForm
  .form-group[show-errors]:not(.has-error)
  #password-directive
  .error-message,
.preferences
  .changePassForm
  .form-group[show-errors]:not(.has-error)
  #password-directive
  .info-message {
  top: 2px;
}
.preferences .error-message {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  background-color: #fad5d2;
  padding: 6px 7px;
  position: relative;
  top: 1px;
}
.preferences .error-message:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid;
  border-color: transparent #fad5d2 transparent transparent;
  top: 9px;
  left: -12px;
}
.preferences .error-message h4 {
  margin-top: 3px;
  margin-left: 5px;
  margin-bottom: 4px;
  color: #000;
}
.preferences .error-message ul {
  padding-left: 20px;
  margin-bottom: 3px;
}
.preferences .info-message {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  background-color: #444;
  color: #fff;
  padding: 6px 7px;
  transition: all linear 0.5s;
  position: relative;
  top: 1px;
}
.preferences .info-message:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid;
  border-color: transparent #444 transparent transparent;
  top: 9px;
  left: -12px;
}
.preferences .info-message h4 {
  color: #fff;
  margin-top: 3px;
  margin-left: 5px;
  margin-bottom: 4px;
}
.preferences .autoReplyRule,
.preferences .autoreplyRules,
.preferences .choiceAccounts,
.preferences .configAccounts,
.preferences .highlightingRules,
.preferences .imageRulesList,
.preferences .messageFilterList,
.preferences .newHighlightingRule,
.preferences .newImageRule,
.preferences .newMessageFilter,
.preferences .signatureEdit,
.preferences .signatureList,
.preferences .spamListing {
  padding: 0;
}
.preferences .autoReplyRule .table-condensed span.custom-icon,
.preferences .autoreplyRules .table-condensed span.custom-icon,
.preferences .choiceAccounts .table-condensed span.custom-icon,
.preferences .configAccounts .table-condensed span.custom-icon,
.preferences .highlightingRules .table-condensed span.custom-icon,
.preferences .imageRulesList .table-condensed span.custom-icon,
.preferences .messageFilterList .table-condensed span.custom-icon,
.preferences .newHighlightingRule .table-condensed span.custom-icon,
.preferences .newImageRule .table-condensed span.custom-icon,
.preferences .newMessageFilter .table-condensed span.custom-icon,
.preferences .signatureEdit .table-condensed span.custom-icon,
.preferences .signatureList .table-condensed span.custom-icon,
.preferences .spamListing .table-condensed span.custom-icon {
  padding: 0;
  font-size: 16px;
  line-height: 2em;
  height: 2em;
}
.preferences .autoReplyRule h4,
.preferences .autoreplyRules h4,
.preferences .choiceAccounts h4,
.preferences .configAccounts h4,
.preferences .highlightingRules h4,
.preferences .imageRulesList h4,
.preferences .messageFilterList h4,
.preferences .newHighlightingRule h4,
.preferences .newImageRule h4,
.preferences .newMessageFilter h4,
.preferences .signatureEdit h4,
.preferences .signatureList h4,
.preferences .spamListing h4 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.preferences .autoReplyRule hr,
.preferences .autoreplyRules hr,
.preferences .choiceAccounts hr,
.preferences .configAccounts hr,
.preferences .highlightingRules hr,
.preferences .imageRulesList hr,
.preferences .messageFilterList hr,
.preferences .newHighlightingRule hr,
.preferences .newImageRule hr,
.preferences .newMessageFilter hr,
.preferences .signatureEdit hr,
.preferences .signatureList hr,
.preferences .spamListing hr {
  margin: 4px 0 0;
  padding: 0;
}
.preferences .autoReplyRule hr.mainHR,
.preferences .autoreplyRules hr.mainHR,
.preferences .choiceAccounts hr.mainHR,
.preferences .configAccounts hr.mainHR,
.preferences .highlightingRules hr.mainHR,
.preferences .imageRulesList hr.mainHR,
.preferences .messageFilterList hr.mainHR,
.preferences .newHighlightingRule hr.mainHR,
.preferences .newImageRule hr.mainHR,
.preferences .newMessageFilter hr.mainHR,
.preferences .signatureEdit hr.mainHR,
.preferences .signatureList hr.mainHR,
.preferences .spamListing hr.mainHR {
  border-top: 2px solid gray;
}
.preferences .autoReplyRule :not(.radio) > label,
.preferences .autoreplyRules :not(.radio) > label,
.preferences .choiceAccounts :not(.radio) > label,
.preferences .configAccounts :not(.radio) > label,
.preferences .highlightingRules :not(.radio) > label,
.preferences .imageRulesList :not(.radio) > label,
.preferences .messageFilterList :not(.radio) > label,
.preferences .newHighlightingRule :not(.radio) > label,
.preferences .newImageRule :not(.radio) > label,
.preferences .newMessageFilter :not(.radio) > label,
.preferences .signatureEdit :not(.radio) > label,
.preferences .signatureList :not(.radio) > label,
.preferences .spamListing :not(.radio) > label {
  font-weight: 700;
}
.preferences .autoReplyRule .extraLabel,
.preferences .autoreplyRules .extraLabel,
.preferences .choiceAccounts .extraLabel,
.preferences .configAccounts .extraLabel,
.preferences .highlightingRules .extraLabel,
.preferences .imageRulesList .extraLabel,
.preferences .messageFilterList .extraLabel,
.preferences .newHighlightingRule .extraLabel,
.preferences .newImageRule .extraLabel,
.preferences .newMessageFilter .extraLabel,
.preferences .signatureEdit .extraLabel,
.preferences .signatureList .extraLabel,
.preferences .spamListing .extraLabel {
  display: inline-flex;
}
.preferences .autoReplyRule .extraLabel label,
.preferences .autoreplyRules .extraLabel label,
.preferences .choiceAccounts .extraLabel label,
.preferences .configAccounts .extraLabel label,
.preferences .highlightingRules .extraLabel label,
.preferences .imageRulesList .extraLabel label,
.preferences .messageFilterList .extraLabel label,
.preferences .newHighlightingRule .extraLabel label,
.preferences .newImageRule .extraLabel label,
.preferences .newMessageFilter .extraLabel label,
.preferences .signatureEdit .extraLabel label,
.preferences .signatureList .extraLabel label,
.preferences .spamListing .extraLabel label {
  margin-right: 20px;
}
.preferences .autoReplyRule .extraLabel label.rightLabel,
.preferences .autoreplyRules .extraLabel label.rightLabel,
.preferences .choiceAccounts .extraLabel label.rightLabel,
.preferences .configAccounts .extraLabel label.rightLabel,
.preferences .highlightingRules .extraLabel label.rightLabel,
.preferences .imageRulesList .extraLabel label.rightLabel,
.preferences .messageFilterList .extraLabel label.rightLabel,
.preferences .newHighlightingRule .extraLabel label.rightLabel,
.preferences .newImageRule .extraLabel label.rightLabel,
.preferences .newMessageFilter .extraLabel label.rightLabel,
.preferences .signatureEdit .extraLabel label.rightLabel,
.preferences .signatureList .extraLabel label.rightLabel,
.preferences .spamListing .extraLabel label.rightLabel {
  margin-left: 20px;
}
.preferences .autoReplyRule span.conditions,
.preferences .autoreplyRules span.conditions,
.preferences .choiceAccounts span.conditions,
.preferences .configAccounts span.conditions,
.preferences .highlightingRules span.conditions,
.preferences .imageRulesList span.conditions,
.preferences .messageFilterList span.conditions,
.preferences .newHighlightingRule span.conditions,
.preferences .newImageRule span.conditions,
.preferences .newMessageFilter span.conditions,
.preferences .signatureEdit span.conditions,
.preferences .signatureList span.conditions,
.preferences .spamListing span.conditions {
  color: #54acd2;
  float: right;
  margin: 5px 10px;
}
.preferences .autoReplyRule span.conditions.disabled,
.preferences .autoreplyRules span.conditions.disabled,
.preferences .choiceAccounts span.conditions.disabled,
.preferences .configAccounts span.conditions.disabled,
.preferences .highlightingRules span.conditions.disabled,
.preferences .imageRulesList span.conditions.disabled,
.preferences .messageFilterList span.conditions.disabled,
.preferences .newHighlightingRule span.conditions.disabled,
.preferences .newImageRule span.conditions.disabled,
.preferences .newMessageFilter span.conditions.disabled,
.preferences .signatureEdit span.conditions.disabled,
.preferences .signatureList span.conditions.disabled,
.preferences .spamListing span.conditions.disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.6;
}
.preferences .autoReplyRule .greyIcon,
.preferences .autoreplyRules .greyIcon,
.preferences .choiceAccounts .greyIcon,
.preferences .configAccounts .greyIcon,
.preferences .highlightingRules .greyIcon,
.preferences .imageRulesList .greyIcon,
.preferences .messageFilterList .greyIcon,
.preferences .newHighlightingRule .greyIcon,
.preferences .newImageRule .greyIcon,
.preferences .newMessageFilter .greyIcon,
.preferences .signatureEdit .greyIcon,
.preferences .signatureList .greyIcon,
.preferences .spamListing .greyIcon {
  font-size: 16px;
  color: #dcdcdc;
  cursor: default;
  -webkit-transition: 1s;
  transition: 1s;
  transition-property: color;
}
.preferences .autoReplyRule .blueIcon,
.preferences .autoreplyRules .blueIcon,
.preferences .choiceAccounts .blueIcon,
.preferences .configAccounts .blueIcon,
.preferences .highlightingRules .blueIcon,
.preferences .imageRulesList .blueIcon,
.preferences .messageFilterList .blueIcon,
.preferences .newHighlightingRule .blueIcon,
.preferences .newImageRule .blueIcon,
.preferences .newMessageFilter .blueIcon,
.preferences .signatureEdit .blueIcon,
.preferences .signatureList .blueIcon,
.preferences .spamListing .blueIcon {
  font-size: 16px;
  color: #54acd2;
  cursor: pointer;
  -webkit-transition: 1s;
  transition: 1s;
  transition-property: color;
}
.preferences .autoReplyRule p.ruleNote,
.preferences .autoreplyRules p.ruleNote,
.preferences .choiceAccounts p.ruleNote,
.preferences .configAccounts p.ruleNote,
.preferences .highlightingRules p.ruleNote,
.preferences .imageRulesList p.ruleNote,
.preferences .messageFilterList p.ruleNote,
.preferences .newHighlightingRule p.ruleNote,
.preferences .newImageRule p.ruleNote,
.preferences .newMessageFilter p.ruleNote,
.preferences .signatureEdit p.ruleNote,
.preferences .signatureList p.ruleNote,
.preferences .spamListing p.ruleNote {
  float: right;
  margin-bottom: 0;
  font-weight: 700;
  margin-top: 10px;
  line-height: 1.1;
}
.preferences .autoReplyRule .errorTopOffset.has-error,
.preferences .autoreplyRules .errorTopOffset.has-error,
.preferences .choiceAccounts .errorTopOffset.has-error,
.preferences .configAccounts .errorTopOffset.has-error,
.preferences .highlightingRules .errorTopOffset.has-error,
.preferences .imageRulesList .errorTopOffset.has-error,
.preferences .messageFilterList .errorTopOffset.has-error,
.preferences .newHighlightingRule .errorTopOffset.has-error,
.preferences .newImageRule .errorTopOffset.has-error,
.preferences .newMessageFilter .errorTopOffset.has-error,
.preferences .signatureEdit .errorTopOffset.has-error,
.preferences .signatureList .errorTopOffset.has-error,
.preferences .spamListing .errorTopOffset.has-error {
  margin-top: -25px;
}
.preferences .autoReplyRule .errorTopOffset.has-error :before,
.preferences .autoreplyRules .errorTopOffset.has-error :before,
.preferences .choiceAccounts .errorTopOffset.has-error :before,
.preferences .configAccounts .errorTopOffset.has-error :before,
.preferences .highlightingRules .errorTopOffset.has-error :before,
.preferences .imageRulesList .errorTopOffset.has-error :before,
.preferences .messageFilterList .errorTopOffset.has-error :before,
.preferences .newHighlightingRule .errorTopOffset.has-error :before,
.preferences .newImageRule .errorTopOffset.has-error :before,
.preferences .newMessageFilter .errorTopOffset.has-error :before,
.preferences .signatureEdit .errorTopOffset.has-error :before,
.preferences .signatureList .errorTopOffset.has-error :before,
.preferences .spamListing .errorTopOffset.has-error :before {
  position: absolute;
}
.preferences .autoReplyRule .labelCompensation,
.preferences .autoreplyRules .labelCompensation,
.preferences .choiceAccounts .labelCompensation,
.preferences .configAccounts .labelCompensation,
.preferences .highlightingRules .labelCompensation,
.preferences .imageRulesList .labelCompensation,
.preferences .messageFilterList .labelCompensation,
.preferences .newHighlightingRule .labelCompensation,
.preferences .newImageRule .labelCompensation,
.preferences .newMessageFilter .labelCompensation,
.preferences .signatureEdit .labelCompensation,
.preferences .signatureList .labelCompensation,
.preferences .spamListing .labelCompensation {
  margin-top: 27px;
  line-height: 34px;
  position: relative;
}
.preferences .autoReplyRule #endDate,
.preferences .autoReplyRule #endTime,
.preferences .autoReplyRule #startDate,
.preferences .autoReplyRule #startTime,
.preferences .autoreplyRules #endDate,
.preferences .autoreplyRules #endTime,
.preferences .autoreplyRules #startDate,
.preferences .autoreplyRules #startTime,
.preferences .choiceAccounts #endDate,
.preferences .choiceAccounts #endTime,
.preferences .choiceAccounts #startDate,
.preferences .choiceAccounts #startTime,
.preferences .configAccounts #endDate,
.preferences .configAccounts #endTime,
.preferences .configAccounts #startDate,
.preferences .configAccounts #startTime,
.preferences .highlightingRules #endDate,
.preferences .highlightingRules #endTime,
.preferences .highlightingRules #startDate,
.preferences .highlightingRules #startTime,
.preferences .imageRulesList #endDate,
.preferences .imageRulesList #endTime,
.preferences .imageRulesList #startDate,
.preferences .imageRulesList #startTime,
.preferences .messageFilterList #endDate,
.preferences .messageFilterList #endTime,
.preferences .messageFilterList #startDate,
.preferences .messageFilterList #startTime,
.preferences .newHighlightingRule #endDate,
.preferences .newHighlightingRule #endTime,
.preferences .newHighlightingRule #startDate,
.preferences .newHighlightingRule #startTime,
.preferences .newImageRule #endDate,
.preferences .newImageRule #endTime,
.preferences .newImageRule #startDate,
.preferences .newImageRule #startTime,
.preferences .newMessageFilter #endDate,
.preferences .newMessageFilter #endTime,
.preferences .newMessageFilter #startDate,
.preferences .newMessageFilter #startTime,
.preferences .signatureEdit #endDate,
.preferences .signatureEdit #endTime,
.preferences .signatureEdit #startDate,
.preferences .signatureEdit #startTime,
.preferences .signatureList #endDate,
.preferences .signatureList #endTime,
.preferences .signatureList #startDate,
.preferences .signatureList #startTime,
.preferences .spamListing #endDate,
.preferences .spamListing #endTime,
.preferences .spamListing #startDate,
.preferences .spamListing #startTime {
  text-overflow: ellipsis;
  padding: 0 35px 0 10px;
}
.preferences .autoReplyRule .singleRule {
  width: 100%;
  float: left;
  padding: 5px 0;
}
.preferences .autoReplyRule .singleRule p a,
.preferences .autoReplyRule .singleRule p span {
  color: #0e57ab;
  float: left;
  line-height: 22px;
  font-size: 20px;
  margin: 0;
  cursor: pointer;
  margin-right: 3px;
}
.preferences .autoReplyRule .singleRule p button {
  line-height: 20px;
}
.preferences .autoReplyRule .singleRule .condition_dropdown {
  width: 180px;
  float: left;
}
.preferences .autoReplyRule .singleRule .leftClose {
  float: left;
  padding-left: 0;
  width: 30px;
  font-weight: 700;
}
.preferences .autoReplyRule .singleRule .conditionExtra {
  width: calc(100% - 220px);
  float: left;
  margin-left: 10px;
  margin-bottom: 0;
}
.preferences .autoReplyRule .singleRule p.form-control-static {
  display: inline-block;
  cursor: pointer;
  padding: 7px 7px 7px 0;
  color: #0e57ab;
}
.preferences .autoReplyRule .singleRule p.form-control-static.disabled,
.preferences .autoReplyRule .singleRule p.form-control-static.disabled a,
.preferences .autoReplyRule .singleRule p.form-control-static.disabled span {
  opacity: 0.6;
  pointer-events: none;
  cursor: default;
}
.preferences .autoReplyRule .dateTimeInput input[type="text"]::-ms-clear {
  display: none;
}
.preferences .autoReplyRule .auto-reply-message {
  white-space: pre-line;
}
.preferences .newHighlightingRule .dropdown-container {
  min-width: 100px;
}
.preferences .highlightingRules .highlightRule .circleColor {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: -3px 20px 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #fff;
  border: 2px solid #fff;
}
.preferences .highlightingRules .highlightRule i {
  color: #fff;
  cursor: pointer;
  margin: 7px 14px 4px 4px;
}
.preferences .highlightingRules .highlightRule i.disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.4;
}
.preferences .pageHead {
  margin-bottom: 20px;
}
.preferences .pageHead h3 {
  margin-bottom: 0px;
}
.preferences .preferencesListItem {
  line-height: 36px;
  height: 36px;
  padding: 0 15px 0 18px;
}
.preferences .preferencesListItem a {
  color: #fff;
}
.preferences .preferencesListItem .fa:not(.faicon) {
  display: none;
  margin: 12px 0 0 10px;
}
.preferences .preferencesListItem .fa:not(.faicon).checkbox-directive {
  display: block;
  width: 12px;
}
.preferences .preferencesListItem .fa.icon-wm-trash {
  position: relative;
  top: -1px;
}
.preferences .preferencesListItem .fr .fa {
  float: left;
}
.preferences .preferencesListItem.active,
.preferences .preferencesListItem.keynavActive,
.preferences .preferencesListItem:active,
.preferences .preferencesListItem:focus,
.preferences .preferencesListItem:hover {
  background-color: #595959;
  color: #fff;
}
.preferences .preferencesListItem.active .fa:not(.faicon),
.preferences .preferencesListItem.keynavActive .fa:not(.faicon),
.preferences .preferencesListItem:active .fa:not(.faicon),
.preferences .preferencesListItem:focus .fa:not(.faicon),
.preferences .preferencesListItem:hover .fa:not(.faicon) {
  display: block;
}
.preferences .preferencesListItem.active .text-ellipsis.autoreply-ellipsis,
.preferences
  .preferencesListItem.keynavActive
  .text-ellipsis.autoreply-ellipsis,
.preferences .preferencesListItem:active .text-ellipsis.autoreply-ellipsis,
.preferences .preferencesListItem:focus .text-ellipsis.autoreply-ellipsis,
.preferences .preferencesListItem:hover .text-ellipsis.autoreply-ellipsis {
  width: calc(100% - 46px);
}
.preferences .preferencesListItem.active .text-ellipsis.image-rule-ellipsis,
.preferences
  .preferencesListItem.keynavActive
  .text-ellipsis.image-rule-ellipsis,
.preferences .preferencesListItem:active .text-ellipsis.image-rule-ellipsis,
.preferences .preferencesListItem:focus .text-ellipsis.image-rule-ellipsis,
.preferences .preferencesListItem:hover .text-ellipsis.image-rule-ellipsis {
  width: calc(100% - 55px);
}
.preferences .preferencesListItem.active .text-ellipsis.signature-ellipsis,
.preferences
  .preferencesListItem.keynavActive
  .text-ellipsis.signature-ellipsis,
.preferences .preferencesListItem:active .text-ellipsis.signature-ellipsis,
.preferences .preferencesListItem:focus .text-ellipsis.signature-ellipsis,
.preferences .preferencesListItem:hover .text-ellipsis.signature-ellipsis {
  width: calc(100% - 50px);
}
.preferences .preferencesListItem.active .text-ellipsis.filter-ellipsis,
.preferences .preferencesListItem.keynavActive .text-ellipsis.filter-ellipsis,
.preferences .preferencesListItem:active .text-ellipsis.filter-ellipsis,
.preferences .preferencesListItem:focus .text-ellipsis.filter-ellipsis,
.preferences .preferencesListItem:hover .text-ellipsis.filter-ellipsis {
  width: calc(100% - 95px);
}
.preferences .preferencesListItem.active .text-ellipsis.highlight-ellipsis,
.preferences
  .preferencesListItem.keynavActive
  .text-ellipsis.highlight-ellipsis,
.preferences .preferencesListItem:active .text-ellipsis.highlight-ellipsis,
.preferences .preferencesListItem:focus .text-ellipsis.highlight-ellipsis,
.preferences .preferencesListItem:hover .text-ellipsis.highlight-ellipsis {
  width: calc(100% - 150px);
}
.preferences .preferencesListItem.signatureRule .fullStar {
  opacity: 1 !important;
  background: url(../images/star-filled-m.png) bottom no-repeat;
  height: 16px;
  width: 15px;
  margin-bottom: 0;
  display: block;
  position: relative;
  top: -2px;
}
.preferences .preferencesListItem.signatureRule .fa-star-o {
  font-size: 16px;
}
.preferences .preferencesListItem.highlightRule {
  padding-left: 0;
}
.preferences .configAccounts button.btn,
.preferences .imageRulesList button.btn,
.preferences .messageFilterList button.btn {
  margin: 10px 0;
}
.preferences .configAccounts .accountItem .accontInfo.icon,
.preferences .configAccounts .messageFilterRule .accontInfo.icon,
.preferences .configAccounts .singleImageRule .accontInfo.icon,
.preferences .imageRulesList .accountItem .accontInfo.icon,
.preferences .imageRulesList .messageFilterRule .accontInfo.icon,
.preferences .imageRulesList .singleImageRule .accontInfo.icon,
.preferences .messageFilterList .accountItem .accontInfo.icon,
.preferences .messageFilterList .messageFilterRule .accontInfo.icon,
.preferences .messageFilterList .singleImageRule .accontInfo.icon {
  padding: 0px 10px;
}
.preferences .configAccounts .accountItem .accontInfo.icon .fa,
.preferences .configAccounts .messageFilterRule .accontInfo.icon .fa,
.preferences .configAccounts .singleImageRule .accontInfo.icon .fa,
.preferences .imageRulesList .accountItem .accontInfo.icon .fa,
.preferences .imageRulesList .messageFilterRule .accontInfo.icon .fa,
.preferences .imageRulesList .singleImageRule .accontInfo.icon .fa,
.preferences .messageFilterList .accountItem .accontInfo.icon .fa,
.preferences .messageFilterList .messageFilterRule .accontInfo.icon .fa,
.preferences .messageFilterList .singleImageRule .accontInfo.icon .fa {
  width: 15px;
}
.preferences .newMessageFilter hr {
  margin: 10px 0 12px;
}
.preferences .newMessageFilter .leftClose {
  float: left;
  padding-left: 0;
  font-weight: 700;
}
.preferences .newMessageFilter .leftClose .langIf {
  margin-right: 10px;
}
.preferences .newMessageFilter .rightClose {
  font-weight: 700;
  float: left;
  margin-left: 5px;
}
.preferences .newMessageFilter .icon-wm-trash {
  padding: 5px 7px;
  color: #595959;
}
.preferences .newMessageFilter .addCondition {
  margin-bottom: -5px;
  color: #0e57ab;
}
.preferences .newMessageFilter .addCondition p {
  float: left;
}
.preferences .newMessageFilter a.conditions,
.preferences .newMessageFilter span.conditions {
  color: #0e57ab;
  float: left;
  line-height: 22px;
  font-size: 20px;
  margin: 0 5px 0 0;
  cursor: pointer;
}
.preferences .newMessageFilter a.conditions.disabled,
.preferences .newMessageFilter span.conditions.disabled {
  opacity: 0.6;
}
.preferences .newMessageFilter #filterAction {
  width: auto;
  padding-right: 50px;
}
.preferences .newMessageFilter .dropdownOption i {
  float: none;
}
.preferences .gmailInstruction {
  color: #595959;
}
.preferences .gmailInstruction h4 {
  color: #3e3e3e;
}
.preferences#preferences-spam .has-error:before {
  top: 26px !important;
}
.preferences#preferences-spam .inboundOptions .checkbox-directive {
  width: 15px;
}
.preferences#preferences-spam .inboundOptions label {
  display: inline;
}
.preferences .generalSpamSettings {
  margin-bottom: 40px;
}
.preferences .spamListing span {
  color: #3e3e3e;
  float: left;
  margin: 0 10px;
  font-size: 14px;
}
.preferences .spamListing span.tooltip-after-block {
  top: 0px;
  vertical-align: top;
  float: right;
  margin-left: 3px;
}
.preferences .spamListing .tooltip-inner {
  max-width: 500px;
}
.preferences .spamListing .spamFilterRule span {
  color: #fff;
  cursor: pointer;
  margin: 7px 7px 4px 4px;
}
.preferences .spamListing .spamFilterRule span.defaultRule {
  color: #ffc923;
  font-size: 16px;
}
.preferences .spamListing a {
  cursor: default;
}
.preferences .spamListing a.fa-plus-square {
  margin-top: 15px;
  font-size: 20px;
  color: #0e57ab;
  opacity: 0.6;
}
.preferences .spamListing a.fa-plus-square.enabled {
  opacity: 1;
  cursor: pointer;
}
.preferences .allowlistItem input,
.preferences .blocklistItem input {
  margin: 8px 0 8px 0px;
  padding-right: 24px;
}
.preferences .allowlistItem .has-error,
.preferences .blocklistItem .has-error {
  line-height: 0px !important;
}
.preferences .allowlistItem :not(.has-error) input,
.preferences .blocklistItem :not(.has-error) input {
  border: none;
}
.preferences#preferences-image .form-group .has-error {
  position: relative;
}
.preferences#preferences-image .has-error:before {
  position: absolute;
  top: initial;
  bottom: 3px;
}
.preferences#preferences-image .preferenceInfo {
  clear: none;
}
.preferences#preferences-image .checkboxContainer {
  width: auto;
}
.preferences#preferences-image .dropdown-container {
  width: 100%;
}
.preferences .newImageRule hr {
  margin: 0;
}
.preferences .newImageRule label {
  font-weight: 700;
}
.preferences .newImageRule p.ruleNoteR {
  float: left;
  font-weight: 700;
  color: #3e3e3e;
}
.preferences .newImageRule p.ruleNote {
  float: right;
  margin-bottom: 0;
}
.preferences .newImageRule .extraLabel {
  display: inline-flex;
}
.preferences .newImageRule .extraLabel label {
  margin-right: 20px;
}
.preferences .newImageRule hr.bottomMatch {
  clear: both;
}
.preferences .newImageRule .btn {
  color: #595959;
}
.preferences .newImageRule .btn.btn-primary {
  color: #fff;
}
.preferences .newImageRule .btn.icon-wm-trash {
  font-size: 14px;
  line-height: 20px;
}
.preferences .configAccounts,
.preferences .imageRulesList {
  padding: 0;
}
.preferences .configAccounts button.btn,
.preferences .imageRulesList button.btn {
  margin: 0px 0 5px;
}
.preferences .configAccounts p.ruleNote,
.preferences .imageRulesList p.ruleNote {
  float: right;
  margin-bottom: 0;
  font-weight: 700;
}
.preferences .configAccounts p.ruleNoteR,
.preferences .imageRulesList p.ruleNoteR {
  float: left;
  font-weight: 700;
}
.preferences#preferences-usage .progress {
  height: 4px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  margin-top: 2px;
  background-color: #d5d5d5;
}
.preferences#preferences-usage .progress .progress-bar {
  background-color: #1ed200;
}
.preferences#preferences-usage .progress .progress-bar.warning {
  background-color: #e3b600;
}
.preferences#preferences-usage .progress .progress-bar.danger {
  background-color: #d20000;
}
.preferences#preferences-usage .spaceLeft {
  color: #595959;
}
.preferences#preferences-usage .dataBreakdown .byFolder {
  margin: 10px 0 0px 0px;
}
.preferences#preferences-usage .dataBreakdown .byFolder .folderName {
  text-decoration: none;
  color: #3e3e3e;
  padding: 0 6px;
}
.preferences#preferences-usage .dataBreakdown .byFolder .folderName .fa {
  width: 10px;
}
.preferences#preferences-usage
  .dataBreakdown
  .byFolder
  .folderName.toggleClick {
  margin-left: -18px;
  cursor: pointer;
}
.preferences#preferences-usage .dataBreakdown .byFolderNLevel {
  margin: 0px 0px 0px 30px;
  padding: 1px 0;
}
.preferences#preferences-usage .dataBreakdown .byFolderSubLevel > .byFolder {
  margin-left: 36px;
  padding-top: 8px;
  margin-top: 0;
}
.preferences#preferences-usage .expunge-dropdown button.dropdown-select {
  width: 100%;
  text-align: left;
}
.preferences#preferences-usage .expunge-dropdown .dropdown-options-container {
  width: 100%;
}
.preferences#preferences-usage button.expunge {
  height: 34px;
}
.preferences#preferences-pgp .pgpPreferences {
  padding-left: 0;
}
.preferences#preferences-pgp .pgpPreferences .emptyPgpListInfo {
  font-size: 1.6em;
  padding-top: 20px;
}
.preferences#preferences-pgp .pgpPreferences .emptyPgpListInfo p {
  text-align: center;
  color: #595959;
}
.preferences#preferences-pgp .pgpPreferences .emptyPgpListInfo p .fa {
  font-size: 3em;
  color: #595959;
}
.preferences#preferences-pgp .pgpPreferences .emptyPgpListInfo p .fa .fa-lock {
  padding-top: 20px;
}
.preferences#preferences-pgp .pgpPreferences .emptyPgpListInfo p .infoText {
  display: block;
  color: #595959;
  font-size: 0.8em;
}
.preferences#preferences-pgp .pgpPreferences table.pgpList,
.preferences#preferences-pgp .pgpPreferences table.pgpList th {
  text-align: center;
}
.preferences#preferences-pgp .pgpPreferences .tableTitle {
  margin-top: 16px;
  margin-bottom: 16px;
}
.preferences#preferences-pgp .generateKeyForm .error-message-sidebar {
  color: #ad1b00;
}
.preferences#preferences-pgp .generateKeyForm .has-error:before {
  z-index: 3;
  position: absolute;
  top: 10px;
  right: 10px;
}
.preferences#preferences-pgp .keyTextarea {
  height: 400px;
  font-size: 12px;
  line-height: 15px;
  white-space: pre;
}
.preferences #cke_newAutoReplyMessage,
.preferences #cke_signature {
  border: 1px solid #949494;
}
.preferences #cke_newAutoReplyMessage .cke_reset_all .cke_button_icon,
.preferences #cke_newAutoReplyMessage .cke_reset_all .cke_combo_text,
.preferences #cke_signature .cke_reset_all .cke_button_icon,
.preferences #cke_signature .cke_reset_all .cke_combo_text {
  color: #3e3e3e;
}
.preferences .createLinks {
  margin-bottom: 20px;
  margin-top: -8px;
}
.preferences .createLinks label {
  color: #ccc;
}
.preferences .showMapLink {
  position: absolute;
  right: 20px;
  top: -25px;
  text-decoration: none;
}
.preferences .slide-animation {
  opacity: 1;
}
.preferences .slide-animation.ng-hide {
  opacity: 0;
}
.preferences .password-rule {
  padding-left: 5px;
}
.preferences .password-rule:last-of-type {
  margin-bottom: 3px;
}
.preferences .password-rule span {
  margin-right: 5px;
}
.preferences ::-webkit-input-placeholder {
  color: #595959;
}
.preferences :-moz-placeholder,
.preferences ::-moz-placeholder {
  color: #595959;
  opacity: 1;
}
.preferences :-ms-input-placeholder {
  color: #595959;
}
#publiclinks p.note {
  color: #595959;
}
#publiclinks textarea {
  width: 100%;
  padding: 5px;
  overflow: hidden;
  resize: none;
  height: 200px;
  cursor: pointer;
  color: #0e57ab;
  background-color: #fff;
  font-weight: 700;
  white-space: normal;
}
.form-group-themes .theme-thumb {
  max-width: 149px;
  max-height: 97px;
}
#themes .theme-notes {
  padding: 8px 16px;
}
#themes .theme-notes .theme-description {
  font-weight: 700;
  margin-bottom: 4px;
}
#themes .theme-notes .theme-wcag-note {
  margin: 0;
  min-height: 40px;
}
#themes .theme-notes .theme-wcag-note .theme-wcag-note-text {
  color: #767676;
  font-size: 12px;
}
#themes .sidebarcontent {
  padding: 0;
  height: calc(100% - 195px);
}
#themes .sidebarcontent .collapse-section {
  background-color: #595959;
  color: #fff;
  padding: 4px 8px;
  cursor: pointer;
}
#themes .sidebarcontent .collapse-section h4 {
  display: inline-block;
  margin: 0px;
  font-size: 14px;
}
#themes .sidebarcontent .collapse-section h4:before {
  display: inline-block;
  font-family: FontAwesome;
  content: "\f0d7";
  font-size: 14px;
  line-height: 14px;
  width: 10px;
}
#themes .sidebarcontent .collapse-section.collapsed h4:before {
  content: "\f0da";
}
#themes .sidebarcontent .collapse,
#themes .sidebarcontent .collapsing {
  padding: 8px 16px;
}
#themes .sidebarcontent .collapse .selectable-thumb,
#themes .sidebarcontent .collapsing .selectable-thumb {
  position: relative;
  display: inline-block;
  width: 49%;
  padding: 4px;
  cursor: pointer;
  text-align: center;
}
#themes .sidebarcontent .collapse .selectable-thumb .thumb-caption,
#themes .sidebarcontent .collapsing .selectable-thumb .thumb-caption {
  margin-bottom: 2px;
  width: 100%;
  text-align: left;
}
#themes .sidebarcontent .collapse .selectable-thumb .thumb-image,
#themes .sidebarcontent .collapsing .selectable-thumb .thumb-image {
  position: relative;
}
#themes
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox,
#themes
  .sidebarcontent
  .collapsing
  .selectable-thumb
  .thumb-image
  .selectable-checkbox {
  position: absolute;
  left: 4px;
  top: 2px;
}
#themes
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa,
#themes
  .sidebarcontent
  .collapsing
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa {
  color: #fff;
  font-size: 20px;
}
#themes
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image
  .delete-checkbox,
#themes
  .sidebarcontent
  .collapsing
  .selectable-thumb
  .thumb-image
  .delete-checkbox {
  display: none;
}
#themes .sidebarcontent .collapse .selectable-thumb .thumb-image img,
#themes .sidebarcontent .collapsing .selectable-thumb .thumb-image img {
  max-width: 100%;
  max-height: 86px;
}
#themes
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image
  .checked-overlay,
#themes
  .sidebarcontent
  .collapsing
  .selectable-thumb
  .thumb-image
  .checked-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(89, 89, 89, 0.5);
  visibility: hidden;
}
#themes .sidebarcontent .collapse .selectable-thumb .thumb-image.checked,
#themes .sidebarcontent .collapse .selectable-thumb .thumb-image:hover,
#themes .sidebarcontent .collapsing .selectable-thumb .thumb-image.checked,
#themes .sidebarcontent .collapsing .selectable-thumb .thumb-image:hover {
  border: 2px solid #0e57ab;
  border-radius: 2px;
  margin: -2px;
}
#themes
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image.checked
  .checked-overlay,
#themes
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image:hover
  .checked-overlay,
#themes
  .sidebarcontent
  .collapsing
  .selectable-thumb
  .thumb-image.checked
  .checked-overlay,
#themes
  .sidebarcontent
  .collapsing
  .selectable-thumb
  .thumb-image:hover
  .checked-overlay {
  visibility: visible;
}
#themes
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image:hover
  .delete-checkbox,
#themes
  .sidebarcontent
  .collapsing
  .selectable-thumb
  .thumb-image:hover
  .delete-checkbox {
  display: inline-block;
  position: absolute;
  right: 4px;
  top: 2px;
}
#themes
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image:hover
  .delete-checkbox
  .fa,
#themes
  .sidebarcontent
  .collapsing
  .selectable-thumb
  .thumb-image:hover
  .delete-checkbox
  .fa {
  color: #fff;
  font-size: 20px;
}
#themes .sidebarcontent .collapse .upload-container,
#themes .sidebarcontent .collapsing .upload-container {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 5px;
}
#themes .sidebarcontent .collapse .upload-container .upload-button,
#themes .sidebarcontent .collapsing .upload-container .upload-button {
  color: #0e57ab;
  font-size: 14px;
  margin-bottom: 4px;
  cursor: pointer;
}
#themes .sidebarcontent .collapse .upload-container .upload-limitations p,
#themes .sidebarcontent .collapsing .upload-container .upload-limitations p {
  font-size: 12px;
  color: #767676;
  margin-bottom: 0;
}
#themes .sidebarcontent .collapse .contrast-container .contrast-option,
#themes .sidebarcontent .collapsing .contrast-container .contrast-option {
  margin-left: 16px;
  font-weight: 400;
}
#themes .sidebarcontent .collapse .contrast-container .contrast-option .fa,
#themes
  .sidebarcontent
  .collapse
  .contrast-container
  .contrast-option
  .fa:before,
#themes .sidebarcontent .collapsing .contrast-container .contrast-option .fa,
#themes
  .sidebarcontent
  .collapsing
  .contrast-container
  .contrast-option
  .fa:before {
  color: #0e57ab;
}
#themes .form-horizontal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0px -1px 2px 0px #d9d9d9;
}
#themes .form-horizontal .form-group {
  margin-top: 7px;
  margin-bottom: 7px;
  padding-right: 7px;
}
.cke_button__link,
.cke_editor_signature_dialog
  > table.cke_dialog:first-child
  td:first-child
  > div.cke_dialog_ui_vbox.cke_dialog_page_contents:first-child
  > table:first-child
  > tbody
  > tr:first-child {
  display: none;
}
#preferences-accounts {
  overflow: auto;
}
#preferences-accounts div.input {
  padding: 5px 0px;
}
#preferences-accounts .gmail,
#preferences-accounts .outlook,
#preferences-accounts .yahoo {
  color: #3e3e3e;
}
#preferences-accounts .earthlink img,
#preferences-accounts .gmail img,
#preferences-accounts .outlook img,
#preferences-accounts .yahoo img {
  width: 20px;
}
#preferences-accounts .accountItem img {
  width: 15px;
}
#preferences-accounts .delAccount {
  cursor: pointer;
}
#preferences-accounts .radio label {
  display: block;
}
#preferences-accounts .h5bolded {
  font-weight: 700;
}
#preferences-accounts .error-message {
  margin-top: 10px;
  position: absolute;
  right: -272px;
  width: 280px;
  top: 31px;
}
#preferences-accounts .error-message:after {
  border-color: transparent #fad5d2 transparent transparent;
  top: 10px;
  left: -12px;
}
#preferences-accounts div.radio label > span[id] {
  margin-left: -20px;
  position: absolute;
  top: 3px;
}
#preferences-accounts .radiobutton-directive {
  margin-left: -18px;
  margin-right: 5px;
}
#preferences-accounts .fa-edit {
  font-weight: 700;
  font-size: 1.1em;
}
#preferences-social {
  position: relative;
}
#preferences-social h3 {
  margin-bottom: 0;
  padding-bottom: 0;
}
#preferences-social h5 {
  display: inline-block;
  color: #7e7e7e;
  margin: 0;
  padding: 0px 5px 5px 0px;
}
#preferences-social h6 {
  font-size: 16px;
  margin: 0px 0px 5px;
  font-weight: 700;
  text-transform: uppercase;
}
#preferences-social .social-list {
  padding: 10px 0 0;
}
#preferences-social .social-list ul > li {
  padding: 20px 0;
}
#preferences-social .social-list ul > li b,
#preferences-social .social-list ul > li i {
  vertical-align: middle;
}
#preferences-social .social-list ul > li b {
  line-height: 24px;
  font-weight: 600;
  padding: 0 4px;
}
#preferences-social .social-list ul > li button {
  background: none;
  border: 2px solid #55acee;
  color: #55acee;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  padding: 4px 10px;
  font-weight: 600;
  cursor: pointer;
}
#preferences-social .social-list ul > li:first-child {
  padding-top: 10px;
}
#preferences-social .social-list i.fa {
  font-size: 24px;
  padding: 6px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}
#preferences-social .social-list i.fa-facebook {
  color: #fff;
  background: #3b5998;
  padding-bottom: 0;
  padding-left: 11px;
}
#preferences-social .social-list i.fa-linkedin {
  color: #fff;
  background: #0077b5;
  padding: 4px 5px;
}
#preferences-social .social-list i.fa-twitter {
  color: #fff;
  background: #55acee;
  padding: 4px 5px;
}
.loading-screen {
  position: fixed;
  z-index: 9;
  background: rgba(0, 0, 0, 0.6);
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}
.social-merge-direction {
  width: 100%;
  max-width: 100%;
  padding: 20px 15px;
}
.social-merge-direction > li {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  max-width: 30%;
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
}
.social-merge-direction > li:first-child {
  color: #0e57ab;
  text-transform: none;
}
.social-merge-direction > li:first-child + li {
  max-width: 40px;
  color: #ccc;
  font-weight: 700;
  font-size: 24px;
  margin: 0 10px;
}
.found-contacts-notice {
  font-size: 14px;
  padding: 0 15px;
  color: gray;
}
.found-contacts-notice > div {
  border-bottom: 1px solid #ccc;
  padding: 0 0 15px;
}
.import-progress {
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: hsla(0, 0%, 7%, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}
.import-progress .import-progress-network {
  display: block;
  position: absolute;
  top: 35%;
  left: 50%;
  text-align: center;
  font-size: 120px;
  margin-left: -60px;
}
.import-progress .import-sync-text,
.import-progress .import-wait-text {
  width: 100%;
  max-width: 100%;
  text-align: center;
  color: #ccc;
  font-size: 18px;
  line-height: 24px;
  position: relative;
  top: 60%;
}
.import-progress .import-wait-text {
  font-size: 14px;
}
.import-progress .import-sync-progress {
  display: block;
  width: 40%;
  margin: 10px auto;
  padding: 0;
  position: relative;
  top: 60%;
  background: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border: 0;
}
.import-progress .import-sync-progress .import-progress-bar {
  background: #55acee;
  height: 14px;
  width: 1px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border: 0;
}
.import-progress.active {
  display: block;
}
.imported-contacts-scolling {
  overflow-y: auto;
  max-height: 400px;
}
.custom-merge-manage {
  margin-top: 5px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}
li.merge-contact-listing {
  display: inline-block;
  padding: 15px;
  width: 30%;
  color: #444;
}
li.merge-contact-listing > span {
  display: inline-block;
  vertical-align: middle;
  padding-right: 5px;
}
li.merge-contact-listing > span img {
  width: 42px;
  height: 42px;
}
.import-duplicate {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}
.import-duplicate > div {
  color: #444;
}
.import-duplicate > div > input,
.import-duplicate > div > span {
  vertical-align: middle;
  margin-right: 10px;
}
.merge-contacts {
  width: 100%;
  max-width: 100%;
}
.merge-contacts > div {
  width: 100%;
  max-width: 48%;
  padding: 5px 0;
}
.merge-contacts > div,
.merge-contacts > div > div {
  display: inline-block;
  vertical-align: middle;
}
.merge-contacts > div > div:first-child {
  max-width: 24px;
}
.merge-contacts > div > div:first-child + div {
  max-width: 64px;
}
.merge-bottom {
  padding-top: 15px;
}
.merge-conacts-listing {
  overflow: auto;
  max-height: 600px;
}
#preferences-social .side-sidebar > div h3 {
  font-size: 14px;
  line-height: 18px;
  padding: 5px 0;
  margin: 0;
  font-weight: 600;
}
#preferences-social .side-sidebar > div h3 > span {
  font-weight: 100;
  color: #ccc;
}
#preferences-social .side-sidebar > div hr {
  border-color: #eee;
}
#preferences-social .side-sidebar .col-xs-12 > div {
  width: 100%;
  max-width: 100%;
  padding: 4px 0;
}
#preferences-social .side-sidebar .col-xs-12 > div > img,
#preferences-social .side-sidebar .col-xs-12 > div > input[type="radio"],
#preferences-social .side-sidebar .col-xs-12 > div > span {
  display: inline-block;
  vertical-align: middle;
}
#preferences-social .side-sidebar .col-xs-12 .main {
  color: #0e57ab;
}
#preferences-social .side-sidebar img {
  max-width: 48px;
  max-height: 48px;
  width: 100%;
  height: 100%;
}
.fwd {
  width: 100%;
}
.bolded {
  font-weight: 700;
}
input.borderless {
  border: none;
  width: 90%;
}
.newTask {
  padding: 5px 20px;
  cursor: pointer;
}
.newTask .quickTask {
  padding: 2px 5px;
  min-width: 265px;
}
.newTask .fa.enabled {
  color: #3e3e3e;
}
.newTask .fa-plus-square {
  opacity: 0.6;
  color: #0e57ab;
}
.newTask .fa-plus-square.enabled {
  opacity: 1;
  color: #0e57ab;
}
.newSubTask {
  padding: 5px 20px 5px 10px;
}
.newSubTask .subtask-input {
  width: 90%;
  padding: 5px;
  color: #3e3e3e;
}
.newSubTask .subtask-input:focus {
  outline: 0;
}
.newSubTask .fa-plus-square {
  opacity: 1;
  color: #0e57ab;
}
.newSubTask .disabled .fa-plus-square {
  opacity: 0.6;
  color: #0e57ab;
}
.new-collaborator {
  padding: 5px 20px 5px 10px;
}
.new-collaborator input {
  width: 90%;
  padding: 5px;
}
.new-collaborator input:focus {
  outline: 0;
}
.new-collaborator .contact-listing-item {
  color: #595959;
  white-space: nowrap;
}
.new-collaborator .contact-listing-item .contact-name {
  color: #3e3e3e;
  font-weight: 700;
}
.new-collaborator .fa-plus-square {
  opacity: 1;
  color: #0e57ab;
}
.new-collaborator .disabled .fa-plus-square {
  opacity: 0.6;
  color: #0e57ab;
}
.tasktags-list .tagList {
  padding: 0px 13px 0 20px;
}
.tasklist {
  position: relative;
  width: 336px;
  overflow-x: visible;
  word-break: break-all;
  background: #fff;
  float: left;
}
.tasklist .listloading {
  padding-top: 80px;
  height: 200px;
}
.tasklist [keyarrownav-directive] {
  padding: 2px;
}
.tasklist [keyarrownav-directive]:focus {
  border: 2px solid #4087c9 !important;
  padding: 0px;
}
.tasklist > .tasklistcontrols {
  box-shadow: none;
}
.tasklist .sortbar {
  height: 29px;
  line-height: 29px;
  padding-left: 25px;
  padding-right: 18px;
  color: #dcdcdc;
  background: #283a50;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #283a50),
    color-stop(100%, #283a50)
  );
  background: -webkit-linear-gradient(top, #283a50, #283a50);
  background: linear-gradient(180deg, #283a50 0%, #283a50);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@wcag-zambezi',endColorstr='@wcag-zambezi',GradientType=0);
}
.tasklist .sortbar.sortbartask {
  position: absolute;
  right: 0px;
}
.tasklist .sortbar.sortbartask .dropdown-container {
  height: 28px;
  min-width: 200px;
  position: absolute;
  right: 0px;
}
.tasklist .sortbar.sortbartask .dropdown-container .dropdown-select {
  background-color: #283a50;
  color: #fff;
  height: 100%;
  border: none;
}
.tasklist .sortbar.sortbartask .dropdown-container .dropdown-select div {
  right: 5px;
  position: absolute;
  float: right;
  text-align: right;
  top: -1px;
  margin-top: 0px;
  line-height: 29px;
}
.tasklist
  .sortbar.sortbartask
  .dropdown-container
  .dropdown-select
  .fa-angle-down {
  display: none;
}
.tasklist
  .sortbar.sortbartask
  .dropdown-container
  .dropdown-options-container
  .dropdown-option {
  line-height: 20px;
}
.tasklist .sortbar button {
  border: 0px;
  background-color: transparent;
  padding: 0px;
  margin: 0px;
  color: #fff;
}
.task-list-head {
  font-size: 24px;
}
.taskscnt .iconbar button.zeroinbox {
  width: 50px;
  height: 30px;
}
.taskscnt .iconbar .newtaskbtn {
  position: relative;
  z-index: 1;
}
.taskscnt .paginationFixed {
  position: absolute;
  bottom: 0px;
  width: 336px;
  padding: 0px 12px 10px;
  height: 62px;
  background: #fff;
  overflow: hidden;
  box-shadow: -2px -1px 2px #eee;
  border-right: 1px inset #eee;
  z-index: 500;
}
.taskCellList {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.taskCellList .titlebar {
  box-sizing: border-box;
  display: block;
  float: none;
  max-width: 100%;
  overflow-y: auto;
  vertical-align: top;
  width: 100%;
  margin: 0;
  height: 29px;
  line-height: 29px;
  padding-left: 25px;
  padding-right: 18px;
  color: #595959;
  background: #283a50;
  color: #fff;
}
.taskCellList .newTask {
  padding: 15px 20px;
  border-bottom: 1px solid #767676;
  color: #bbb;
}
.taskCell {
  box-sizing: border-box;
  width: 319px;
  height: 62px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #eee;
  border-left: 1px solid transparent;
  cursor: pointer;
  padding: 2px 1px;
  font-size: 14px;
  color: #000;
}
.taskCell .taskMainBlock {
  padding: 5px 0px;
}
.taskCell .icon-wm-trash {
  color: #0e57ab;
}
.taskCell .duedate,
.taskCell .taskcheck,
.taskCell .taskicons {
  color: #595959;
}
.taskCell.active {
  background-color: #d9e1ea;
}
.taskCell.active .duedate,
.taskCell.active .taskcheck,
.taskCell.active .taskicons {
  color: #444;
}
.taskCell.active.completed .taskInfo .taskName {
  color: #444;
  text-decoration: line-through;
}
.taskCell.completed .taskInfo .taskName {
  color: #595959;
  text-decoration: line-through;
}
.taskCell .taskName {
  color: #000;
}
.taskCell .taskInfo {
  color: #444;
}
.taskCell .bolded {
  font-weight: 700;
}
.taskCell:hover {
  border: 1px solid #767676;
  background: #eff2f6;
}
.subTaskCell {
  border-bottom: 1px solid #eee;
  cursor: pointer;
  color: #595959;
}
.subTaskCell.keynavActive .taskSideIconBar .fa,
.subTaskCell:focus .taskSideIconBar .fa,
.subTaskCell:hover .taskSideIconBar .fa .taskCell:focus .taskSideIconBar .fa,
.taskCell.keynavActive .taskSideIconBar .fa,
.taskCell:hover .taskSideIconBar .fa,
.taskMainBlock:hover .fa {
  opacity: 1;
  transition: opacity 0.4s ease-out;
  -moz-transition: opacity 0.4s ease-out;
  -webkit-transition: opacity 0.4s ease-out;
  -o-transition: opacity 0.4s ease-out;
}
.taskUnread {
  font-weight: bolder;
  color: #000;
}
.addsubtask {
  cursor: pointer;
  line-height: 30px;
}
.addsubtask.disabled {
  color: #ccc;
}
.taskUnread .taskSubject {
  color: #0070bb;
}
.taskDate {
  float: right;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 70px;
}
.taskTopStatusBar {
  width: 315px;
  height: 15px;
}
.priorityIcon {
  position: relative;
  width: 100%;
  text-align: right;
  color: #ff4c2e;
}
.taskSideIconBar {
  float: left;
  width: 25px;
  height: 50px;
  padding-left: 6px;
  padding-top: 15px;
}
.taskSideIconBar .fa {
  margin-bottom: 10px;
  opacity: 0;
}
.flagShow {
  background: url(../images/star-filled-s.png) bottom no-repeat;
  height: 14px;
}
.checkboxShow,
.flagShow {
  opacity: 1 !important;
}
.taskListCheckbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.taskFrom {
  float: left;
  max-width: 210px;
}
.taskFrom,
.taskSubject {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.taskSubject {
  font-weight: bolder;
  clear: both;
}
.taskPreview {
  padding-right: 10px;
}
.taskBottomStatusBar {
  width: 315px;
  height: 18px;
}
.taskBottomStatusBar I {
  margin-left: 5px;
}
.taskSmallStatus {
  float: right;
}
span.alarmiconspan {
  position: relative;
  top: 2px;
}
.taskInfo {
  float: left;
  width: 290px;
  height: 50px;
  padding-top: 5px;
  padding-right: 10px;
}
.taskInfo .duedate {
  font-size: 11px;
}
.taskInfo .taskcheck {
  padding-top: 9px;
  padding-left: 5px;
  max-width: 15px;
}
.taskInfo .taskicons {
  padding-top: 8px;
  max-width: 60px;
}
.taskInfo .taskicons .fa1 {
  font-size: 13px;
  line-height: 14px;
}
.taskInfo .taskicons .icon-wm-alert {
  font-size: 16px;
}
.taskInfo .taskName {
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.taskInfo .taskName.redoverdue .bolded {
  color: #e00;
}
.taskInfo .taskName.redoverdue .duedate {
  color: #ad1b00;
}
.taskInfo .taskName .title {
  text-overflow: ellipsis;
  overflow: hidden;
}
.subTaskCell {
  color: #3e3e3e;
}
.subTaskCell .taskSideIconBar {
  position: relative;
  z-index: 10;
}
.subTaskCell .subtaskchb {
  position: absolute;
  right: 20px;
}
.subTaskCell .taskInfo {
  width: auto;
  float: none;
  position: relative;
  padding-right: 20px;
  padding-top: 15px;
}
.subTaskCell .subtaskName {
  width: 80%;
  padding-bottom: 4px;
}
.subTaskCell.completed {
  color: #3e3e3e;
}
.subTaskCell.completed .subtaskName {
  text-decoration: line-through;
}
.taskview {
  word-wrap: break-word;
  width: 100%;
  overflow: auto;
  z-index: 201;
}
.taskview.center,
.taskview .center {
  text-align: center;
}
.taskview.notaskselected {
  margin-top: 200px;
}
.taskview.notaskselected .title {
  font-size: 24px;
}
.taskview.notaskselected .notasksub {
  font-size: 16px;
}
.taskview .nomsg {
  margin-top: 218px;
}
.taskview .taskmsglink {
  padding: 5px 15px;
  background-color: #f6f6f6;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.taskview .taskContainer {
  margin: 0px;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
}
.taskview .taskContainer .taskTopControls {
  min-width: 300px;
}
.taskview .taskContainer .tasknotes {
  color: #3e3e3e;
  min-height: 250px;
}
.taskview .taskContainer .contentView {
  overflow-y: scroll;
  overflow-x: auto;
  min-width: 300px;
}
.taskview .taskContainer .contentView hr.smallmargin {
  margin: 1px;
}
.taskview .taskContainer .contentView .taskContent {
  padding: 0px 24px 10px 12px;
}
.taskview .taskContainer .contentView .taskContent .taskBlock {
  padding-left: 12px;
}
.taskview .taskContainer .contentView .editfiled {
  width: 100%;
  padding: 5px 0px 5px 10px;
}
.taskview .taskContainer .contentView .editfiled .subtitle {
  padding: 5px 0px;
  font-weight: 700;
}
.taskview .taskContainer .contentView .editfiled .repeatchek {
  display: inline-block;
  padding: 0px 5px;
  cursor: pointer;
}
.taskview .taskContainer .contentView .editfiled .repeatlabel {
  display: inline-block;
  padding: 0px 10px;
  cursor: pointer;
}
.taskview .taskContainer .contentView .editfiled .repeatext {
  margin-left: 180px;
  right: 70px;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.taskview .taskContainer .contentView .editfiled .repeatlink {
  position: relative;
  margin-top: -20px;
  right: 10px;
  float: right;
}
.taskview .taskContainer .contentView .editfiled.alerts,
.taskview .taskContainer .contentView .editfiled.repeats {
  padding-left: 25px;
}
.taskview .taskContainer .contentView .editfiled .alertslabel {
  font-weight: 700;
  padding: 5px 5px 5px 20px;
  width: 95px;
  z-index: 1;
  position: relative;
}
.taskview .taskContainer .contentView .editfiled .alerts-drop {
  position: relative;
  padding: 0px 0px 0px 5px;
}
.taskview .taskContainer .contentView .editfiled .alerts-drop .dropdown-menu {
  margin-left: 0px;
  right: 0px;
  left: 95px;
}
.taskview
  .taskContainer
  .contentView
  .editfiled
  .alerts-drop
  .dropdown-menu
  li
  a {
  padding: 2px 10px;
  outline: none;
}
.taskview .taskContainer .contentView .editfiled .dropdownbox {
  color: #3e3e3e;
  border: 1px solid #dcdcdc;
  margin-left: 90px;
  padding: 5px 10px;
}
.taskview .taskContainer .contentView .editfiled .dropdownbox .caret1.fa {
  color: #3e3e3e;
  font-size: 19px;
}
.taskview .taskContainer .contentView textarea {
  resize: vertical;
}
.taskview
  .taskContainer
  .contentView
  .datetimecnt
  .datepicker0
  span.icon-wm-calendar {
  display: inline-block;
  right: 5px;
  top: 0px;
  color: #0e57ab;
  position: absolute;
  bottom: 0;
  padding: 8px;
  font-size: 18px;
  cursor: pointer;
}
.taskview div.taskcollabs input {
  color: #3e3e3e;
}
.taskview div.taskcollabs .collaborator {
  margin-bottom: 10px;
  margin-left: 15px;
}
.taskview div.taskcollabs .collaborator .collaborator-details .collabname {
  float: left;
  padding-left: 10px;
  padding-top: 2px;
}
.taskview div.taskcollabs .collaborator .collaborator-details .image {
  width: 50px;
  height: 50px;
}
.taskview div.taskcollabs .collaborator .collaborator-details .image .noimage {
  background-color: #767676;
  width: 45px;
  height: 45px;
  border-radius: 25px;
  padding-top: 12px;
  padding-left: 12px;
  color: #fff;
}
.taskview div.taskcollabs .collaborator .collaborator-details .image img {
  width: 45px;
  height: 45px;
  border-radius: 25px;
}
.taskview div.taskcollabs .addbutton {
  cursor: pointer;
  line-height: 30px;
}
.taskview div.taskcollabs .addbutton.disabled {
  color: #595959;
}
.taskview div.taskcollabs .collaborator-suggestions ul {
  box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.75);
}
.taskview div.taskcollabs .collaborator-suggestions ul li.active {
  background-color: #0e57ab;
}
.taskview div.taskcollabs .collaborator-item {
  height: 60px;
}
.taskview div.taskcollabs .collaborator-item .removelink {
  display: block;
  font-weight: 700;
}
.taskview div.taskcollabs .collaborator-item .removelink:hover {
  text-decoration: none;
}
.taskview div.taskcollabs .collaborator-item .contact-listing-item {
  padding: 0px 3px;
  overflow-x: hidden;
  overflow-y: visible;
  float: left;
}
.taskview div.taskcollabs .collaborator-item .contact-list-image {
  padding: 0px 3px;
  min-width: 50px;
  float: left;
}
.taskview div.taskcollabs .collaborator-item .noimage {
  background-color: #767676;
  width: 45px;
  height: 45px;
  border-radius: 25px;
  padding-top: 12px;
  padding-left: 12px;
  color: #fff;
}
.taskview div.taskcollabs .collaborator-item img {
  width: 45px;
  height: 45px;
  border-radius: 25px;
}
.taskview .form-control.outline:focus {
  outline: 1px solid #4087c9;
}
.taskview .weeklyrepeatdays {
  width: 50px;
  height: 25px;
}
.taskview .weeklyrepeatdays .checkbox-directive {
  width: 14px;
}
.taskContent a {
  color: #0e57ab;
}
.taskContent .collaborator.owner {
  padding-left: 10px;
}
.taskContent .collaborator-details .collabname {
  float: left;
  padding-left: 10px;
  padding-top: 2px;
}
.taskContent .collaborator-details .image {
  width: 50px;
  height: 50px;
}
.taskContent .collaborator-details .image .noimage {
  background-color: #767676;
  width: 45px;
  height: 45px;
  border-radius: 25px;
  padding-top: 12px;
  padding-left: 12px;
  color: #fff;
}
.taskContent .collaborator-details .image img {
  width: 45px;
  height: 45px;
  border-radius: 25px;
}
.taskContent textarea.tasknotes {
  white-space: pre-line;
}
.side-sidebar label.sidebarlabel {
  font-weight: 700;
  white-space: nowrap;
}
.side-sidebar .repet-occurance {
  display: inline-block;
  width: 60px;
  margin-left: 20px;
}
.datepicker1-cnt {
  width: 155px;
  display: inline-block;
}
.datepicker1-cnt input.datepicker1 {
  width: 165px;
}
.datepicker1-cnt:after {
  content: "\f073";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: 400;
  text-decoration: inherit;
  position: absolute;
  font-size: 18px;
  line-height: 34px;
  color: #cacaca;
  right: 0px;
  top: 0px;
  z-index: 3;
}
.datepicker0 {
  position: relative;
  width: 50%;
  padding-right: 5px;
  min-width: 100px;
}
.datepicker0 .datepicker0-cnt input {
  width: 100%;
}
.datepicker0 .datepicker0-cnt:after {
  content: "\e612";
  font-family: icon-wm;
  font-style: normal;
  font-weight: 400;
  text-decoration: inherit;
  position: absolute;
  font-size: 18px;
  line-height: 34px;
  color: #0e57ab;
  right: 15px;
  top: 0px;
  z-index: 3;
}
.timepicker0 {
  position: relative;
  width: 50%;
  min-width: 100px;
  padding-left: 5px;
}
.timepicker0 .dropdown-menu {
  left: 5px;
}
.timepicker0.off .bootstrap-datetimepicker-widget {
  visibility: hidden;
}
.datepicker0 input[type="text"]::-ms-clear,
.timepicker0 input[type="text"]::-ms-clear {
  display: none;
}
.duetimechb {
  padding-top: 6px;
  width: 25px;
}
.datetimecnt {
  margin-left: 25px;
}
.datetimecnt .timedrop {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 34px;
  height: 34px;
  border: none;
  color: #0e57ab;
  padding: 8px;
  cursor: pointer;
}
.datetimecnt .timedrop span.fa {
  font-size: 18px;
}
.datetimecnt .dropdown {
  left: 5px;
}
@media (min-width: 768px) {
  .taskview .taskContainer .taskTopControls {
    left: 608px;
    min-width: 300px;
  }
  .taskview .taskContainer .taskBottomControls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
.tasktags-list .tags,
.zeroinbox-tags .tags {
  max-width: 100%;
  color: #fff;
  background-color: #0e57ab;
  padding: 2px 8px;
  border-radius: 2px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 0px;
  cursor: pointer;
}
.tasktags-list .tags .tagnamesin,
.zeroinbox-tags .tags .tagnamesin {
  max-width: calc(100% - 15px);
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tasktags-list .tags .deletetag,
.zeroinbox-tags .tags .deletetag {
  padding-top: 4px;
  margin-left: 4px;
  width: 11px;
}
.tasktags-list .tags.grayed,
.zeroinbox-tags .tags.grayed {
  background-color: #bbc5d1;
}
.tasktags-list .anytags .tags.grayed,
.zeroinbox-tags .anytags .tags.grayed {
  background-color: #bbc5d1;
  color: #2b2b2b;
}
.zeroinbox-tags {
  padding-right: 10px;
}
.iztagdropdown {
  margin-left: -100px;
  z-index: 1000;
}
.addusertags a .tooltip-arrow {
  left: 25% !important;
}
.addusertags .tooltip-inner {
  text-align: left;
}
.addusertags .tooltip-inner div.TTO1,
.addusertags .tooltip-inner div.TTO2,
.addusertags .tooltip-inner div.TTO3 {
  padding: 5px 0px 5px 25px;
}
.addusertags .tooltip-inner div span:after {
  content: "Â ";
  border: none;
  border-radius: 10px;
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #fff;
  margin-left: -25px;
  margin-right: 10px;
}
.addusertags .tooltip-inner div.TTO1 span:after {
  background-color: #7bb7f5;
}
.addusertags .tooltip-inner div.TTO2 span:after {
  background-color: #3c8ce3;
}
.addusertags .tooltip-inner div.TTO3 span:after {
  background-color: #bbb;
}
#summaryText {
  display: inline-block;
  max-width: 225px;
}
.taskBottomControls .eventBottomControls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.taskscnt ::-webkit-input-placeholder {
  color: #595959;
}
.taskscnt :-moz-placeholder {
  color: #595959;
  opacity: 1;
}
.taskscnt ::-moz-placeholder {
  colo: #595959;
  opacity: 1;
}
.taskscnt :-ms-input-placeholder {
  color: #595959;
}
.taskscnt input,
.taskscnt textarea {
  color: #3e3e3e;
  -webkit-input-placeholder: #595959;
}
.minicalendar .minical .month-cnt {
  padding: 8px 14px;
}
.minicalendar .header {
  background-color: #828181;
  padding: 4px 14px;
  color: #fff;
}
.minicalendar .header button {
  border: none;
  background: none;
}
.minicalendar .day-date.selectday {
  background-color: #fff;
}
.minicalendar .day-date.selectday.selectedMinicalendarDayRoundTopLeft {
  border-top-left-radius: 4px;
}
.minicalendar .day-date.selectday.selectedMinicalendarDayRoundTopRight {
  border-top-right-radius: 4px;
}
.minicalendar .day-date.selectday.selectedMinicalendarDayRoundBottomLeft {
  border-bottom-left-radius: 4px;
}
.minicalendar .day-date.selectday.selectedMinicalendarDayRoundBottomRight {
  border-bottom-right-radius: 4px;
}
h5.calendar-title {
  margin: 0px;
  padding: 5px 15px;
  width: 100%;
  height: 29px;
}
h5.calendar-title a {
  text-decoration: none;
}
h5.calendar-title a:hover {
  color: #fff;
  text-decoration: none;
}
h5.calendar-title a.collapse {
  display: inline-block;
  visibility: visible;
}
h5.calendar-title a.addbtn {
  color: #fff;
  float: right;
}
h5.calendar-title div.title {
  text-transform: none;
  font-weight: 700;
}
h5.calendar-title a.collapsebtn {
  color: #fff;
}
.calendar-top {
  height: 29px;
  color: #fff;
  padding: 0px;
  color: #595959;
  background: #283a50;
}
.calendar-top .left-icon {
  float: left;
  width: 50px;
}
.calendar-top .fc-week {
  float: left;
  padding: 5px 10px;
  border: none;
}
.calendar-top .agendaDay,
.calendar-top .agendaWeek {
  padding-left: 51px;
  padding-right: 14px;
}
.calendar-top .agendaDay .fc-week,
.calendar-top .agendaWeek .fc-week,
.calendar-top .month .fc-week {
  width: 14.2857%;
}
.dateheader {
  width: 316px;
  color: gray;
  text-align: center;
}
.dateheader div.date {
  display: inline-block;
  font-size: 24px;
  color: #344c50;
}
.dateheader a {
  color: gray;
  font-size: 16px;
  line-height: 24px;
}
.dateheader .dateprevbtn {
  float: left;
}
.dateheader .datenextbtn {
  float: right;
}
.dateheaderSide {
  padding: 19px 0;
  color: gray;
}
.dateheaderSide div.date {
  display: inline-block;
  font-size: 24px;
  color: #344c50;
}
.activeBtn {
  color: #d3d3d3 !important;
  pointer-events: none;
}
.agendaContainer .agendalist {
  position: relative;
  width: 336px;
  overflow-x: visible;
  word-break: break-all;
  z-index: 300;
  background: #fcfcfc;
  float: left;
}
.agendaContainer .agendalist .pagination-container {
  height: 71px;
  width: 100%;
  float: left;
}
.agendaContainer .agendalist .pagination-container pagination-directive {
  top: 0;
  position: relative;
  display: inline-block;
  margin-top: 5px;
}
.agendaContainer .agendaview {
  margin-left: 336px;
  word-wrap: break-word;
  position: absolute;
  top: 50px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  min-width: 300px;
}
.agendaContainer .msgview .nomsg {
  width: auto;
}
.agendaContainer .image {
  width: 50px;
  height: 50px;
}
.agendaContainer .image .noimage {
  background-color: gray;
  padding-top: 12px;
  padding-left: 12px;
  color: #fff;
}
.agendaContainer .image .noimage,
.agendaContainer .image img {
  width: 45px;
  height: 45px;
  border-radius: 25px;
}
.eventlist {
  overflow-y: scroll;
  overflow-x: hidden;
}
#personalcalendars ul,
#sharedcalendars ul {
  width: 100% !important;
}
@media (min-width: 768px) {
  .agendaview {
    margin-left: 608px;
  }
}
.listevents {
  color: #7e7e7e;
  box-sizing: border-box;
  display: block;
  float: left;
  max-width: 100%;
  overflow-y: auto;
  vertical-align: top;
  width: 100%;
  height: 100%;
  margin: 0;
}
.listevents,
.listevents .calendarmap-list {
  position: relative;
  word-break: break-all;
  z-index: 300;
}
.listevents .calendarmap-list {
  overflow-x: visible;
  background: #fcfcfc;
  border: 1px solid #eaeaea;
  cursor: pointer;
}
.listevents .calendarmap-list .colorfield {
  width: 6px;
  height: 70px;
}
.listevents .calendarmap-list .gr-hostopia {
  background: #e1493b;
}
.listevents .calendarmap-list .gr-personal {
  background: #54acd2;
}
.listevents .calendarmap-list .colorfield,
.listevents .calendarmap-list .time {
  display: inline-block;
  vertical-align: middle;
}
.listevents .calendarmap-list .calendarmap-box {
  width: 55%;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  padding: 10px 0;
}
.listevents .calendarmap-list .calendarmap-box > b {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 200px;
  display: block;
  color: #000;
}
.listevents .calendarmap-list .calendarmap-box > span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: 400;
  display: block;
  color: #595959;
}
.listevents .calendarmap-list .calendarmap-box > span .fa-circle {
  font-size: 5px;
  vertical-align: middle;
  margin-right: 2px;
}
.listevents .calendarmap-list .time {
  width: 100px;
  text-align: center;
  font-weight: 700;
  color: #3e3e3e;
}
.listevents .calendarmap-list .overlap {
  display: inline-block;
  float: right;
  margin-top: 8px;
  margin-right: 5px;
  font-size: 22px;
  color: #ad1b00;
}
.listevents .calendarmap-list .agendaEventAttachment {
  position: absolute;
  right: 10px;
  top: 51px;
  color: #595959;
}
.listevents .calendarmap-list:hover {
  background: #eff2f6;
}
.listevents .calendarmap-list.active {
  background: #d9e1ea;
}
.listevents .calendarmap-list.active .agendaEventAttachment,
.listevents .calendarmap-list.active .time {
  color: #444;
}
.attendee li {
  display: inline;
}
.attendee li:last-child {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: gray;
  display: table;
  height: 48px;
  width: 48px;
}
.attendee li:last-child a {
  color: #fff;
  display: table-cell;
  vertical-align: middle;
  padding: 0;
}
.attendee li:last-child a .fa {
  display: table;
  margin: 0 auto;
}
.attendee img {
  height: 48px;
  width: 48px;
}
.attendee .slideDown.ng-hide {
  height: 0;
  transition: height 0.35s ease;
  overflow: hidden;
  position: relative;
  display: none;
}
.calendar-section {
  line-height: normal;
  color: #3e3e3e;
}
.calendar-section .section-label,
.calendar-section label,
.calendar-section strong {
  color: #3e3e3e;
}
.calendar-section .btn-link,
.calendar-section a,
.calendar-section a:focus,
.calendar-section a:hover {
  color: #0e57ab;
  text-decoration: none;
}
.calendar-section h3 {
  color: #595959;
}
.part-one {
  overflow-y: scroll;
}
.part-two {
  padding: 0 10px;
  color: #595959;
}
.part-two hr {
  clear: both;
  margin: 0px;
}
.part-two .eventbody {
  overflow: auto;
}
.part-two .cal-title h2 {
  font-size: 22px;
}
.part-two .nav-tabs {
  border-bottom: none;
}
.part-two .nav li a {
  padding: 0 5px;
}
.part-two .nav li a:hover {
  background: none;
  border-color: #fff;
}
.part-two .nav li a:focus {
  background: none;
}
.part-two .nav li a img:hover {
  cursor: pointer;
}
.part-two .section {
  padding: 10px 5px;
}
.part-two .section .acceptance-bar {
  box-sizing: border-box;
  display: block;
  float: left;
  max-width: 100%;
  vertical-align: top;
  width: 100%;
  margin: 0px 0 10px;
  height: 29px;
  line-height: 29px;
  padding-left: 25px;
  padding-right: 18px;
  background-color: #d3d3d3;
}
.part-two .section .acceptance-bar b,
.part-two .section .acceptance-bar p {
  float: left;
}
.part-two .section .addbtn {
  float: right;
}
.part-two .section .addbtn .fa {
  color: gray;
}
.part-two .section .inforow {
  margin: 30px 0px;
}
.part-two .section .inforow a {
  padding-left: 15px;
  cursor: pointer;
}
.part-two .section .inforow-acc {
  margin-bottom: 15px;
}
.part-two .section .inforow-acc a {
  display: table;
  float: left;
  color: #344c50;
  font-weight: 600;
  cursor: default;
}
.part-two .section .inforow-acc a:hover {
  text-decoration: none;
  cursor: pointer;
}
.part-two .section .inforow-acc a img {
  width: 48px;
  display: table-cell;
  float: left;
  margin-right: 5px;
  cursor: default;
}
.part-two .section .inforow-acc a span {
  display: table-cell;
  vertical-align: middle;
  margin-left: 5px;
  cursor: default;
}
.part-two .section .inforow-time {
  display: table;
  margin-bottom: 10px;
}
.part-two .section .inforow-time span {
  vertical-align: middle;
  display: table-cell;
}
.part-two .section .inforow-time span .left-empty-space {
  padding: 0 0 0 20px;
}
.part-two .section .inforow-time span span {
  display: block;
  margin-bottom: 5px;
}
.part-two .section .inforow-time .arrow {
  color: #3e3e3e;
  padding: 0 15px;
  vertical-align: middle;
  font-size: 35px;
  display: table-cell;
}
.part-two .section button {
  margin-right: 5px;
}
.part-two .section button .icon-wm-trash {
  font-size: 17px;
}
.part-two .selected-title {
  color: #3e3e3e;
  display: inline-block;
  font-size: 24px;
  margin: 10px;
  float: left;
}
.part-two .notes {
  padding: 19px;
}
.part-two .notes .titlenote {
  margin: 0 0 15px;
  color: #444;
  font-weight: 600;
}
.part-two .notes ul {
  list-style: none;
  margin: 15px 0;
  padding: 0;
}
.part-two .notes li:before {
  content: "â€“ ";
}
.part-two .notes span {
  display: block;
  clear: both;
}
.part-two .attendee p,
.part-two .cal-title p {
  white-space: pre-line;
}
.part-two .cal-title {
  border-bottom: 1px solid #ddd;
}
.part-two .attachment-doc {
  padding: 20px 5px;
}
.part-two .attachment-doc ul > li {
  margin-bottom: 10px;
}
.part-two .attachment-doc ul > li .btn-hold {
  float: right;
}
.part-two .attachment-doc ul > li .btn-hold a {
  text-decoration: underline;
  color: gray;
  margin-left: 10px;
}
.part-two .attachment-doc ul > li .btn-hold a:hover {
  color: #54acd2;
}
.listdateheader {
  position: relative;
  overflow-x: visible;
  word-break: break-all;
  z-index: 300;
  background: #fcfcfc;
  padding: 19px 0 19px 19px;
  height: 62px;
  width: 100%;
  text-align: center;
}
.listdateheader div.date {
  display: inline-block;
  font-size: 24px;
  color: #344c50;
  margin: 0px 10px;
  float: left;
}
.listdateheader a {
  color: gray;
  font-size: 16px;
  line-height: 24px;
}
.listdateheader .listnextdate,
.listdateheader .listprevdate {
  float: left;
}
.listdateheader .btn-list-today {
  margin-top: 5px;
  float: right;
}
.titlebar {
  box-sizing: border-box;
  display: block;
  float: left;
  max-width: 100%;
  overflow-y: auto;
  vertical-align: top;
  width: 100%;
  margin: 0;
  height: 29px;
  line-height: 29px;
  padding-left: 25px;
  padding-right: 18px;
  color: #595959;
  background: #283a50;
}
.calendar-item {
  width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  font-weight: 400;
}
.calendar-item i {
  margin-right: 5px;
}
.calendar-item:hover {
  text-decoration: underline;
}
.sub-calendar-item {
  width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
  font-weight: 400;
}
.sub-calendar-item i {
  margin-right: 5px;
}
.share-ico {
  position: absolute;
  right: 20px;
}
#editeventsidebar .leftDatePicker,
#moreevents .leftDatePicker,
#neweventsidebar .leftDatePicker {
  float: left;
  max-width: 49%;
}
#editeventsidebar .rightDatePicker,
#moreevents .rightDatePicker,
#neweventsidebar .rightDatePicker {
  float: right;
  max-width: 49%;
}
#editeventsidebar form > div > div,
#moreevents form > div > div,
#neweventsidebar form > div > div {
  padding-top: 5px;
}
#editeventsidebar .mapnewcalendar,
#moreevents .mapnewcalendar,
#neweventsidebar .mapnewcalendar {
  padding-top: 10px;
}
#editeventsidebar .neweventsavebar,
#moreevents .neweventsavebar,
#neweventsidebar .neweventsavebar {
  padding: 10px 0px;
}
#editeventsidebar textarea,
#moreevents textarea,
#neweventsidebar textarea {
  min-height: 100px;
  white-space: pre-line;
  resize: vertical;
}
#editeventsidebar textarea::placeholder,
#moreevents textarea::placeholder,
#neweventsidebar textarea::placeholder {
  color: #595959;
}
#editeventsidebar .sidebarshowmap,
#moreevents .sidebarshowmap,
#neweventsidebar .sidebarshowmap {
  float: right;
}
#editeventsidebar .editDatePicker .fa,
#moreevents .editDatePicker .fa,
#neweventsidebar .editDatePicker .fa {
  color: #0e57ab;
  position: absolute;
  right: 15px;
  bottom: 0;
  padding: 8px 8px 8px 0;
  font-size: 18px;
}
#editeventsidebar .editDatePicker .disabled,
#moreevents .editDatePicker .disabled,
#neweventsidebar .editDatePicker .disabled {
  background-color: #eee;
}
#editeventsidebar .datepicker0 input[type="text"]::-ms-clear,
#editeventsidebar .editDatePicker input[type="text"]::-ms-clear,
#moreevents .datepicker0 input[type="text"]::-ms-clear,
#moreevents .editDatePicker input[type="text"]::-ms-clear,
#neweventsidebar .datepicker0 input[type="text"]::-ms-clear,
#neweventsidebar .editDatePicker input[type="text"]::-ms-clear {
  display: none;
}
.calendar-col-md-3 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.collaborators-calendar {
  position: relative;
}
.collaborators-calendar .colab-row {
  height: 34px;
}
.collaborators-calendar .info-holder {
  margin: 6px;
  width: auto;
}
.collaborators-calendar .info-holder > span {
  color: #3e3e3e;
}
.collaborators-calendar .noname-holder {
  margin: 14px;
  width: auto;
}
.collaborators-calendar .addbtn-holder {
  margin-left: 6px;
  margin-top: 22px;
  width: auto;
}
.collaborators-calendar .addbtn-holder button {
  height: 34px;
}
.collaborators-calendar .collaborator-item {
  height: 45px;
  margin-top: 10px;
}
.collaborators-calendar .collaborator-item .image {
  width: 50px;
  height: 50px;
}
.collaborators-calendar .collaborator-item .image .noimage {
  background-color: gray;
  width: 45px;
  height: 45px;
  border-radius: 25px;
  padding-top: 12px;
  padding-left: 12px;
  color: #fff;
}
.collaborators-calendar .collaborator-item .image img {
  width: 45px;
  height: 45px;
  border-radius: 25px;
}
.collaborators-calendar .collaborator-item .nameemailcnt {
  min-width: 200px;
  overflow-x: hidden;
  height: 50px;
}
.collaborators-calendar .collaborator-item .nameemailcnt .name {
  color: #00a1bc;
  font-size: 14px;
}
.collaborators-calendar .email-input-cnt.addbuttonactive {
  margin-right: 50px;
}
.collaborators-calendar .email-input-cnt .addbutton {
  position: absolute;
  top: 0px;
  right: 18px;
}
.collaborators-calendar .attendees-suggestions {
  width: 100%;
  position: absolute;
  z-index: 2000;
  background-color: #fff;
  border: 1px solid #dcdcdc;
}
.collaborators-calendar .attendees-suggestions ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
.collaborators-calendar .attendees-suggestions li {
  padding: 5px 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.collaborators-calendar .attendees-suggestions li.active {
  background: #4a9bea;
  color: #fff;
  cursor: pointer;
}
.collaborators-calendar .collaborator-list {
  clear: both;
  padding: 15px 0px 0px;
  margin: 15px 0px 0px;
  color: #595959;
}
.collaborators-calendar .collaborator-list .dropdown-container {
  margin-top: 6px;
}
.collaborators-calendar .collaborator-list .selected-contact {
  position: relative;
  float: left;
}
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator {
  min-width: 200px;
  max-width: 200px;
  background-color: #fff;
  z-index: 1;
  float: left;
  width: auto;
  height: auto;
  display: block;
  padding: 10px;
  display: none;
  position: absolute;
  border: none;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
}
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator
  hr {
  margin: 0 !important;
}
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator
  .clearfix {
  clear: both;
}
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator
  .action {
  color: inherit;
  cursor: pointer;
  display: block;
  margin: 5px 0px;
}
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator
  .action
  i {
  margin: 0px 5px 0px 0px;
}
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator
  .action:hover {
  color: #000;
  text-decoration: none;
}
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator:after,
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator:before {
  bottom: 100%;
  left: 22px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator:after {
  border-color: hsla(0, 0%, 100%, 0);
  border-bottom-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}
.collaborators-calendar
  .collaborator-list
  .selected-contact
  .edit-collaborator:before {
  border-color: hsla(0, 0%, 45%, 0);
  border-bottom-color: rgba(0, 0, 0, 0.22);
  border-width: 11px;
  margin-left: -11px;
}
.collaborators-calendar
  .collaborator-list
  .selected-contact:hover
  .edit-collaborator {
  background-color: #fff;
  position: absolute;
  z-index: 1;
  float: left;
  width: auto;
  height: auto;
  display: block;
  padding: 10px;
  transition: opacity 0.4s ease-out;
  -moz-transition: opacity 0.4s ease-out;
  -webkit-transition: opacity 0.4s ease-out;
  -o-transition: opacity 0.4s ease-out;
  border: none;
}
.collaborators-calendar
  .collaborator-list
  .selected-contact:hover
  .edit-collaborator
  hr {
  margin: 0 !important;
}
.collaborators-calendar
  .collaborator-list
  .selected-contact:hover
  .edit-collaborator
  .clearfix {
  clear: both;
}
.collaborators-calendar .collaborator-list .message-attendess {
  color: #337ab7;
  padding-top: 10px;
}
.collaborators-calendar .form-group.has-error:before {
  content: "!";
  color: #ad1b00;
  position: relative;
  right: 14px;
  top: 28px;
  float: right;
  font-size: 18px;
  font-weight: 700;
  z-index: 1;
}
.calendars {
  padding: 0px 14px;
}
.date-indent {
  margin-left: 29px;
}
.dropdown-menu a:hover {
  color: #fff !important;
}
.preWrap {
  white-space: pre-wrap;
}
.new-calendar-head {
  margin: 0px 20px;
  border-bottom: 1px solid #eee;
}
.new-calendar-head h3 {
  color: #3e3e3e;
}
.new-calendar-panel {
  overflow-y: auto;
  padding: 0px;
  height: 100%;
}
.new-calendar-panel .colors {
  margin: 17px 0px 0px;
}
.new-calendar-panel .row {
  margin: 20px 0px 30px;
}
.new-calendar-panel .row .section-label {
  display: block;
  font-weight: 700;
}
.new-calendar-panel .row .nopadding {
  padding: 0px !important;
}
.new-calendar-panel hr {
  margin: 0px 0px 0px 15px !important;
}
.new-calendar-panel .actions .btn-default {
  margin: 0px 10px 0px 0px;
}
.new-calendar-panel label {
  cursor: pointer;
  font-weight: 400;
}
.new-calendar-panel label input[type="radio"] {
  margin-right: 5px;
}
.new-calendar-panel label span {
  color: #b8b8b8;
}
.new-calendar-panel .error-message {
  border-radius: 3px;
  background-color: #fad5d2;
  padding: 3px 5px;
  margin-top: 27px;
}
.new-personal-calendar h3 {
  margin-top: 25px;
  margin-bottom: 0;
}
.new-personal-calendar h6 {
  color: #888;
}
.new-personal-calendar .initial-button-state > button {
  margin: 0 10px;
  min-width: 95px;
}
.sections-calendar-new-event {
  margin: 0;
  color: #3e3e3e;
}
.sections-calendar-new-event hr {
  margin: 0;
}
.sections-calendar-new-event .eventActionBar {
  box-shadow: 0px 0px 4px 0px rgba(50, 50, 50, 0.75);
  padding: 5px;
}
.sections-calendar-new-event .newEventOption {
  max-width: 49%;
}
.sections-calendar-new-event .newEventOption p.newDate {
  width: 200px;
}
.sections-calendar-new-event .newEventOption input,
.sections-calendar-new-event .newEventOption input:focus {
  border: none;
  border-bottom: 1px solid #ccc;
  margin: 0 20px 0 10px;
  padding: 2px 10px;
}
.sections-calendar-new-event .newEventOption button {
  margin: 10px 5px;
}
.delete-calendar-modal .modal-body label {
  margin: 5px 0;
  color: #3e3e3e;
  font-weight: 400;
}
.delete-calendar-modal .modal-body label > span {
  margin-right: 5px;
}
.delete-calendar-modal .modal-body > div {
  margin: 0 20px;
}
.editRepeatDatePicker {
  position: relative;
}
.newEventDropdownPick {
  position: relative;
  color: #3e3e3e;
}
.newEventDropdownPick.form-control {
  padding: 6px 24px 6px 12px;
}
.newEventDropdownPick div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  float: left;
}
.newEventDropdownPick a {
  color: gray;
  float: none !important;
  display: block;
}
.newEventDropdownPick .dropdown-menu {
  height: auto !important;
  max-height: 250px;
  overflow-y: auto;
  width: 100%;
}
.newEventDropdownPick .dropdown-menu a {
  color: gray;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newEventDropdownPick .dropdown-menu .active a {
  background-color: #3a8de3 !important;
  color: #fff;
}
.newEventDropdownPick .dropdown-menu a:hover {
  background-color: #3a8de3 !important;
}
.newEventDropdownPick span {
  font-size: 20px;
  position: absolute;
  right: 10px;
  top: 5px;
  pointer-events: none;
}
.clear {
  clear: both;
}
.inline {
  display: inline;
}
.eventMessage {
  min-height: 100px;
  white-space: pre-wrap;
}
.newEventRepeat .repeatPanel .endsOptions {
  margin-left: 15px;
  font-weight: 400;
}
.newEventRepeat .repeatPanel .endsOptions label {
  font-weight: 400;
}
.newEventRepeat .repeatPanel .endsOptions .endsOption {
  position: relative;
  margin: 0px 0px 5px;
}
.newEventRepeat .repeatPanel .endsOptions .occurences {
  width: 40px;
  height: 34px;
  margin: 0px 5px;
  box-shadow: none;
  border: 1px solid #dcdcdc;
  transition: none;
  color: gray;
  border-radius: 2px;
  padding: 0 10px;
}
.newEventRepeat .repeatPanel .endsOptions .date {
  position: relative;
  width: 135px;
  display: inline-block;
  margin-left: 5px;
  padding: 0 10px;
  background: url(../images/icon_calendar.png) 100% 0 no-repeat;
}
.newEventRepeat .repeatPanel .endsOptions .date:focus {
  background-position: right -35px;
}
.newEventRepeat .repeatPanel .endsOptions .date a {
  float: right;
  text-decoration: none;
}
.newEventRepeat .repeatPanel .endsOptions br {
  margin-bottom: 5px;
  display: block;
}
.newEventRepeat .repeatPanel .btn-cancel,
.newEventRepeat .repeatPanel .btn-save {
  float: right;
}
.newEventRepeat .repeatPanel .btn-cancel {
  margin: 0px 10px 0px 0px;
}
.newEventRepeat hr {
  margin: 10px 0px;
}
.newEventAlerts .repeatPanel .addedAlerts ul {
  padding: 0px;
}
.newEventAlerts .repeatPanel .addedAlerts li {
  list-style: none;
  height: 30px;
  background-color: #b2b2b2;
  color: #fff;
  border-radius: 3px;
  margin-top: 10px !important;
  padding: 6px 15px 0px !important;
}
.newEventAlerts .repeatPanel .addedAlerts .removeAlert,
.newEventAlerts .repeatPanel .addedAlerts .spanAlert {
  color: #fff;
  font-weight: 700;
  font-family: Lato, Helvetica Neue, Helvetica, Arial, sans-serif;
}
.newEventAlerts .repeatPanel .addedAlerts .valueAlert {
  color: #d0d0d0;
}
.newEventAlerts .repeatPanel .addedAlerts .removeAlert {
  float: right;
}
.newEventAlerts .repeatPanel .addedAlerts a:hover {
  text-decoration: none;
}
.eventForm {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.eventContainer {
  flex: 1;
  overflow-y: auto;
  margin: 0px;
}
.eventContainer .splitFormContent {
  max-width: 760px;
  width: 100%;
  float: left;
  padding: 0 80px 0 0;
}
.eventContainer .contentView .eventContent {
  padding: 0px 24px 12px 12px;
}
.eventContainer .contentView .leftDatePicker,
.eventContainer .contentView .rightDatePicker {
  display: inline-block;
  min-width: 178px;
  width: 47%;
}
.eventContainer .contentView .leftDatePicker {
  padding: 5px 0 0 10px;
}
.eventContainer .contentView .rightDatePicker {
  padding: 5px 10px 0;
}
.eventContainer .contentView .savebarholder {
  margin-top: 10px;
  height: 50px;
}
.eventContainer .contentView .editfiled {
  padding: 5px 10px;
  margin-top: 10px;
}
.eventContainer .contentView .editfiled a {
  text-decoration: none;
}
.eventContainer .contentView .editfiled a.showMapLink {
  float: right;
}
.eventContainer .contentView .editDatePicker {
  position: relative;
  padding: 5px 0 0;
  margin-top: 10px;
}
.eventContainer .contentView .editDatePicker input[type="date"],
.eventContainer .contentView .editDatePicker input[type="text"] {
  width: auto;
}
.eventContainer .contentView .editDatePicker a {
  text-decoration: none;
}
.eventContainer .contentView .editDatePicker .fa {
  color: #0e57ab;
  position: absolute;
  left: 142px;
  bottom: 0;
  padding: 8px;
  font-size: 18px;
}
.eventContainer .contentView .editCheckbox {
  padding: 5px 10px;
  margin-top: 10px;
  color: #595959;
}
.eventContainer .contentView .editCheckbox label,
.eventContainer .contentView .editCheckbox span {
  cursor: pointer;
}
.eventContainer .contentView .editCheckbox span .fa-check-square,
.eventContainer .contentView .editCheckbox span .fa-square-o {
  color: #3e3e3e;
}
.eventContainer .contentView .editCheckbox a {
  cursor: pointer;
}
.eventContainer .expand-collapse-content {
  padding: 20px;
}
.eventContainer textarea {
  resize: vertical;
}
.eventContainer .uneditableEventPropertyValue {
  word-break: break-all;
}
.eventContainer .inforow-time {
  display: table;
  margin-bottom: 10px;
}
.eventContainer .inforow-time span {
  vertical-align: middle;
  display: table-cell;
  color: gray;
}
.eventContainer .inforow-time span .left-empty-space {
  padding: 0 0 0 20px;
}
.eventContainer .inforow-time span span {
  display: block;
  margin-bottom: 5px;
}
.eventContainer .inforow-time .arrow {
  padding: 0 15px;
  vertical-align: middle;
  font-size: 35px;
  display: table-cell;
  color: gray;
}
.eventContainer .inviteActions {
  color: #444;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  background-color: #eee;
  padding: 15px 15px 10px;
  margin-bottom: 15px;
}
.eventContainer .inviteActions .inviteStatus,
.eventContainer .inviteActions .inviteSummary {
  min-height: 30px;
}
.eventContainer .inviteActions .inviteStatus p,
.eventContainer .inviteActions .inviteSummary p {
  margin: 0px;
}
.eventContainer .inviteActions .inviteStatus strong,
.eventContainer .inviteActions .inviteSummary strong {
  color: #000;
}
.eventContainer .inviteActions .inviteStatus ul,
.eventContainer .inviteActions .inviteSummary ul {
  list-style-type: none;
  margin: 0px;
  padding-left: 5px;
}
.eventContainer .inviteActions .inviteStatus ul li:before,
.eventContainer .inviteActions .inviteSummary ul li:before {
  content: "- ";
}
.eventContainer .inviteActions .inviteSummary {
  margin-bottom: 15px;
  line-height: 20px;
}
.eventContainer .inviteActions .inviteStatus {
  margin-bottom: 5px;
  line-height: 30px;
}
.eventContainer .inviteActions .changeStatusForm {
  line-height: normal;
}
.eventContainer .inviteActions .changeStatusForm #changeStatusFormStatusLabel {
  display: block;
}
.eventContainer .inviteActions .changeStatusForm textarea {
  margin-bottom: 9px;
}
.eventContainer .inviteActions .changeStatusForm .dropdown-container {
  width: 166px;
  display: inline-block;
}
.eventContainer .inviteActions .inviteActionButtons {
  padding-left: 15px;
}
.eventContainer .inviteActions .inviteActionButtons .btn {
  margin-bottom: 5px;
}
.eventContainer
  .inviteActions
  .inviteActionButtons
  .row
  .col-md-12
  .btn-group:last-of-type {
  margin-right: 10px;
}
.eventContainer .inviteActions .inviteActionButtons .btn-link {
  padding-left: 0px;
  padding-right: 0px;
}
.eventContainer .inviteActions .inviteActionDetails {
  overflow: hidden;
  max-height: 0px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.eventContainer .inviteActions .inviteActionDetails .form-group:last-child {
  margin-bottom: 5px;
}
.eventContainer .inviteActions .slideopen {
  max-height: 175px;
  -webkit-transition: 0.75s;
  transition: 0.75s;
}
.eventContainer .inviteActions .suggestedTime span {
  color: #000;
}
.eventContainer .inviteActions .suggestedTime a {
  margin-left: 10px;
}
.eventContainer .changeStatusForm {
  max-width: 680px;
}
.events-sidebar .repet-occurance {
  display: inline-block;
  width: 60px;
}
.events-sidebar hr {
  margin: 15px 0;
}
.events-sidebar > a {
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: right;
  color: #444;
  font-size: 18px;
  line-height: 36px;
  position: absolute;
  top: 50px;
  right: 0;
  padding: 0 15px;
}
.events-sidebar h2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #444;
}
.events-sidebar > div {
  padding: 5px 0;
  color: #444;
}
.calendarTopButtons {
  position: relative;
  z-index: 300;
  width: 100%;
  vertical-align: top;
}
.calendarTopButtons .pull-left .deleteButton {
  padding-top: 4px;
  font-size: 17px;
}
.subline {
  border-bottom: 1px solid #eee;
}
.newColaborator {
  padding: 10px 0px;
}
.newColaborator .addcolab {
  min-width: 200px;
}
.weeklyrepeatdays {
  width: 50px;
  float: left;
}
.leftspace {
  vertical-align: top;
  width: 50px;
}
.leftspace,
.rightspace {
  display: inline-block;
}
.rightspacenextline {
  width: 200px;
}
.weeklyrepeatdays-newline {
  width: 40px;
  margin-right: 1px;
}
.leftspace-newline {
  display: inline-block;
  width: 80px;
  margin-right: 3px;
}
.radiorow {
  margin: 5px 0px;
}
.editEventTabs {
  margin-top: 20px;
  margin-left: 9px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dcdcdc;
  font-weight: 700;
  font-size: 0;
}
.editEventTabs > div {
  font-size: 14px;
  position: relative;
  display: inline-block;
  width: 100px;
  height: 36px;
  text-align: center;
  padding-top: 10px;
  margin-right: 5px;
  background-color: #eee;
  cursor: pointer;
}
.editEventTabs > div.selected {
  background-color: #0e57ab;
  color: #fff;
}
.editEventTabs > div.selected:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border-top: 6px solid #0e57ab;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  margin-left: -6px;
}
.detailsTab {
  margin-top: 10px;
}
.detailsTab .alerts > div:last-child {
  margin-top: 20px;
  color: #0e57ab;
}
.detailsTab .alerts > div {
  margin-bottom: 10px;
}
.detailsTab .alerts > div span.fa-close,
.detailsTab .alerts > div span.fa-plus {
  font-size: 22px;
  margin-right: 8px;
  cursor: pointer;
}
.detailsTab .alerts > div span {
  cursor: pointer;
}
.detailsTab .alerts > div span span {
  padding-right: 5px;
}
.detailsTab .alerts > div .dropdown-container {
  width: 45%;
  height: 30px;
  display: inline-block;
  margin-right: 6px;
}
.detailsTab .alerts > div .fa-close {
  vertical-align: super;
  color: #0e57ab;
}
.detailsTab .alerts > div .fa-plus {
  vertical-align: middle;
}
.attendeesTab {
  margin-left: 9px;
}
.attendeesTab > div {
  margin-top: 25px;
}
.attendeesTab > div.freebusy {
  margin-top: 0;
}
.attendeesTab .addattendeesresources {
  width: 337px;
}
.attendeesTab .attendee {
  margin-top: 28px;
  min-width: 258px;
  display: inline-block;
  margin-right: 20px;
}
.attendeesTab .attendee > div,
.attendeesTab .attendee > span {
  display: inline-block;
}
.attendeesTab .attendee > span {
  position: relative;
}
.attendeesTab .attendee > span > span {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  pointer-events: none;
}
.attendeesTab .attendee > span > span.icon-wm-organizer {
  color: #54acd2;
}
.attendeesTab .attendee > span > span.fa-check-circle-o {
  color: #41a85f;
}
.attendeesTab .attendee > span > span.icon-wm-tentative {
  color: #f4a932;
}
.attendeesTab .attendee > span > span.icon-wm-declined {
  color: #ad1b00;
}
.attendeesTab .attendee > div {
  color: gray;
  margin-left: 10px;
  vertical-align: middle;
  width: 224px;
}
.attendeesTab .attendee > div .attendeeEmail,
.attendeesTab .attendee > div .attendeeName,
.attendeesTab .attendee > div .attendeeRemove {
  text-overflow: ellipsis;
  overflow: hidden;
}
.attendeesTab .attendee > div .attendeeName {
  font-weight: 700;
}
.attendeesTab .attendee > div .attendeeRemove {
  height: auto;
  font-size: 14px;
  padding: 0 4px;
  margin: 0px -4px;
  border: 0;
  cursor: pointer;
  color: #0e57ab;
}
.attendeesTab .attendee > div .attendeeRemove:focus {
  outline: 2px solid #4087c9;
  -moz-outline-radius: 3px;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.dragdrop_overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  font-size: 25px;
  padding-top: 150px;
}
.dragdrop_overlay .moreInfo {
  font-size: 15px;
  display: block;
  max-width: 400px;
  margin: 0 auto;
}
.dragdrop_overlay .moreInfo.fileTooBig {
  max-width: 320px;
}
@media (max-width: 768px) {
  .dragdrop_overlay {
    left: 0;
    width: 100%;
  }
}
#editeventrepeatsidebar .radiorow {
  display: table;
  margin: 10px 0;
  width: 100%;
}
#editeventrepeatsidebar .radiorow .leftspace {
  display: table-cell;
  vertical-align: middle;
  width: 50px;
  padding-right: 5px;
}
#editeventrepeatsidebar .radiorow .repet-occurance {
  margin-left: 20px;
}
#editeventrepeatsidebar .radiorow .datepicker-until {
  display: inline-block;
  float: right;
  width: 185px;
}
#editeventrepeatsidebar .radiorow .datepicker-until .fa {
  color: #0e57ab;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 8px 8px 0;
  font-size: 18px;
  z-index: 2;
}
.fc {
  direction: ltr;
  text-align: left;
}
.fc-rtl {
  text-align: right;
}
body .fc {
  font-size: 1em;
}
.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-row,
.fc-unthemed tbody,
.fc-unthemed td,
.fc-unthemed th,
.fc-unthemed thead {
  border-color: #ccc;
}
.fc-unthemed .fc-popover {
  background-color: #fff;
}
.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header {
  background: #eee;
}
.fc-unthemed .fc-popover .fc-header .fc-close {
  color: #666;
}
.fc-highlight {
  background: #bce8f1;
}
.fc-bgevent,
.fc-highlight {
  opacity: 0.3;
  filter: alpha(opacity=30);
}
.fc-bgevent {
  background: #8fdf82;
}
.fc-nonbusiness {
  background: #d7d7d7;
}
.fc-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1em;
  font-size: 1em;
  text-align: center;
  overflow: hidden;
  font-family: Courier New, Courier, monospace;
}
.fc-icon:after {
  position: relative;
  margin: 0 -1em;
}
.fc-icon-left-single-arrow:after {
  content: "\02039";
  font-weight: 700;
  font-size: 200%;
  top: -7%;
  left: 3%;
}
.fc-icon-right-single-arrow:after {
  content: "\0203A";
  font-weight: 700;
  font-size: 200%;
  top: -7%;
  left: -3%;
}
.fc-icon-left-double-arrow:after {
  content: "\000AB";
  font-size: 160%;
  top: -7%;
}
.fc-icon-right-double-arrow:after {
  content: "\000BB";
  font-size: 160%;
  top: -7%;
}
.fc-icon-left-triangle:after {
  content: "\25C4";
  font-size: 125%;
  top: 3%;
  left: -2%;
}
.fc-icon-right-triangle:after {
  content: "\25BA";
  font-size: 125%;
  top: 3%;
  left: 2%;
}
.fc-icon-down-triangle:after {
  content: "\25BC";
  font-size: 125%;
  top: 2%;
}
.fc-icon-x:after {
  content: "\000D7";
  font-size: 200%;
  top: 6%;
}
.fc button {
  box-sizing: border-box;
  margin: 0;
  height: 2.1em;
  padding: 0 0.6em;
  font-size: 1em;
  white-space: nowrap;
  cursor: pointer;
}
.fc button::-moz-focus-inner {
  margin: 0;
  padding: 0;
}
.fc-state-default {
  border: 1px solid;
}
.fc-state-default.fc-corner-left {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.fc-state-default.fc-corner-right {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.fc button .fc-icon {
  position: relative;
  top: -0.05em;
  margin: 0 0.2em;
  vertical-align: middle;
}
.fc-state-default {
  background-color: #f5f5f5;
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#fff),
    to(#e6e6e6)
  );
  background-image: -webkit-linear-gradient(top, #fff, #e6e6e6);
  background-image: linear-gradient(180deg, #fff, #e6e6e6);
  background-repeat: repeat-x;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #333;
  text-shadow: 0 1px 1px hsla(0, 0%, 100%, 0.75);
  box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.05);
}
.fc-state-active,
.fc-state-disabled,
.fc-state-down,
.fc-state-hover {
  color: #3e3e3e;
  background-color: #e6e6e6;
}
.fc-state-hover {
  color: #3e3e3e;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}
.fc-state-active,
.fc-state-down {
  background-color: #ccc;
  background-image: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.fc-state-disabled {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}
.fc-button-group {
  display: inline-block;
}
.fc .fc-button-group > * {
  float: left;
  margin: 0 0 0 -1px;
}
.fc .fc-button-group > :first-child {
  margin-left: 0;
}
.fc-popover {
  position: absolute;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.fc-popover .fc-header {
  padding: 2px 4px;
}
.fc-popover .fc-header .fc-title {
  margin: 0 2px;
}
.fc-popover .fc-header .fc-close {
  cursor: pointer;
}
.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
  float: left;
}
.fc-ltr .fc-popover .fc-header .fc-close,
.fc-rtl .fc-popover .fc-header .fc-title {
  float: right;
}
.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid;
}
.fc-unthemed .fc-popover .fc-header .fc-close {
  font-size: 0.9em;
  margin-top: 2px;
}
.fc-popover > .ui-widget-header + .ui-widget-content {
  border-top: 0;
}
.fc-divider {
  border-style: solid;
  border-width: 1px;
}
hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  border-width: 1px 0;
}
.fc-clear {
  clear: both;
}
.fc-bg,
.fc-bgevent-skeleton,
.fc-helper-skeleton,
.fc-highlight-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.fc-bg {
  bottom: 0;
}
.fc-bg table {
  height: 100%;
}
.fc table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
}
.fc th {
  text-align: center;
}
.fc td,
.fc th {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top;
}
.fc td.fc-today {
  border-style: double;
}
.fc .fc-row {
  border-style: solid;
  border-width: 0;
}
.fc-row table {
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  border-bottom: 0 hidden transparent;
}
.fc-row:first-child table {
  border-top: 0 hidden transparent;
}
.fc-row {
  position: relative;
}
.fc-row .fc-bg {
  z-index: 1;
}
.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
  bottom: 0;
}
.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%;
}
.fc-row .fc-bgevent-skeleton td,
.fc-row .fc-highlight-skeleton td {
  border-color: transparent;
}
.fc-row .fc-bgevent-skeleton {
  z-index: 2;
}
.fc-row .fc-highlight-skeleton {
  z-index: 3;
}
.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
}
.fc-row .fc-helper-skeleton {
  z-index: 5;
}
.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
  background: none;
  border-color: transparent;
  border-bottom: 0;
}
.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-helper-skeleton tbody td {
  border-top: 0;
}
.fc-scroller {
  overflow-y: scroll;
  overflow-x: hidden;
}
.fc-scroller > * {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.fc-event {
  position: relative;
  display: block;
  font-size: 0.85em;
  line-height: 1.3;
  border: 1px solid #3a87ad;
  background-color: #3a87ad;
  font-weight: 400;
  border-left-width: 5px;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
}
.fc-event,
.fc-event:hover,
.ui-widget .fc-event {
  color: #fff;
  text-decoration: none;
}
.fc-event.fc-draggable,
.fc-event[href] {
  cursor: pointer;
}
.fc-not-allowed,
.fc-not-allowed .fc-event {
  cursor: not-allowed;
}
.fc-event .fc-bg {
  z-index: 1;
  background: #fff;
  opacity: 0.25;
  filter: alpha(opacity=25);
}
.fc-event .fc-content {
  position: relative;
  z-index: 2;
}
.fc-event .fc-resizer {
  position: absolute;
  z-index: 3;
}
.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.fc-h-event .fc-resizer {
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  width: 5px;
}
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-ltr .fc-h-event .fc-start-resizer:after,
.fc-ltr .fc-h-event .fc-start-resizer:before,
.fc-rtl .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-end-resizer:after,
.fc-rtl .fc-h-event .fc-end-resizer:before {
  right: auto;
  cursor: w-resize;
}
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-ltr .fc-h-event .fc-end-resizer:after,
.fc-ltr .fc-h-event .fc-end-resizer:before,
.fc-rtl .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-start-resizer:after,
.fc-rtl .fc-h-event .fc-start-resizer:before {
  left: auto;
  cursor: e-resize;
}
.fc-day-grid-event {
  margin: 0 6px 6px;
  padding: 0 1px;
}
.fc-day-grid-event .fc-content {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fc-day-grid-event .fc-time {
  font-weight: 700;
}
.fc-day-grid-event .fc-resizer {
  left: -3px;
  right: -3px;
  width: 7px;
}
a.fc-more {
  margin: 1px 3px;
  font-size: 0.85em;
  cursor: pointer;
  text-decoration: none;
  color: #003e87;
}
a.fc-more:hover {
  text-decoration: underline;
}
.fc-limited {
  display: none;
}
.fc-day-grid .fc-row {
  z-index: 1;
}
.fc-more-popover {
  z-index: 2;
  width: 220px;
}
.fc-more-popover .fc-event-container {
  padding: 10px;
}
.fc-toolbar {
  text-align: center;
  margin-bottom: 1em;
}
.fc-toolbar .fc-left {
  float: left;
}
.fc-toolbar .fc-right {
  float: right;
}
.fc-toolbar .fc-center {
  display: inline-block;
}
.fc .fc-toolbar > * > * {
  float: left;
}
.fc .fc-toolbar > * > :first-child {
  margin-left: 0;
}
.fc-toolbar h2 {
  margin: 0;
}
.fc-toolbar button {
  position: relative;
}
.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
  z-index: 2;
}
.fc-toolbar .fc-state-down {
  z-index: 3;
}
.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
  z-index: 4;
}
.fc-toolbar button:focus {
  z-index: 5;
}
.fc-view-container *,
.fc-view-container :after,
.fc-view-container :before {
  box-sizing: content-box;
}
.fc-view,
.fc-view > table {
  position: relative;
  z-index: 1;
}
.fc-basicDay-view .fc-content-skeleton,
.fc-basicWeek-view .fc-content-skeleton {
  padding-top: 1px;
  padding-bottom: 1em;
}
.fc-basic-view .fc-body .fc-row {
  min-height: 4em;
}
.fc-row.fc-rigid {
  overflow: hidden;
}
.fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.fc-basic-view .fc-day-number,
.fc-basic-view .fc-week-number {
  padding: 0 2px;
}
.fc-basic-view td.fc-day-number,
.fc-basic-view td.fc-week-number span {
  padding-top: 2px;
  padding-bottom: 2px;
}
.fc-basic-view .fc-week-number {
  text-align: center;
}
.fc-basic-view .fc-week-number span {
  display: inline-block;
  min-width: 1.25em;
}
.fc-ltr .fc-basic-view .fc-day-number {
  text-align: right;
}
.fc-rtl .fc-basic-view .fc-day-number {
  text-align: left;
}
.fc-day-number.fc-other-month {
  opacity: 0.3;
  filter: alpha(opacity=30);
}
.fc-agenda-view .fc-day-grid {
  position: relative;
  z-index: 2;
}
.fc-agenda-view .fc-day-grid .fc-row {
  min-height: 3em;
}
.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
  padding-top: 1px;
  padding-bottom: 1em;
}
.fc .fc-axis {
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap;
}
.fc-ltr .fc-axis {
  text-align: right;
}
.fc-rtl .fc-axis {
  text-align: left;
}
.ui-widget td.fc-axis {
  font-weight: 400;
}
.fc-time-grid,
.fc-time-grid-container {
  position: relative;
  z-index: 1;
}
.fc-time-grid {
  min-height: 100%;
}
.fc-time-grid table {
  border: 0 hidden transparent;
}
.fc-time-grid > .fc-bg {
  z-index: 1;
}
.fc-time-grid .fc-slats,
.fc-time-grid > hr {
  position: relative;
  z-index: 2;
}
.fc-time-grid .fc-bgevent-skeleton,
.fc-time-grid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.fc-time-grid .fc-bgevent-skeleton {
  z-index: 3;
}
.fc-time-grid .fc-highlight-skeleton {
  z-index: 4;
}
.fc-time-grid .fc-content-skeleton {
  z-index: 5;
}
.fc-time-grid .fc-helper-skeleton {
  z-index: 6;
}
.fc-time-grid .fc-slats td {
  height: 1.5em;
  border-bottom: 0;
}
.fc-time-grid .fc-slats .fc-minor td {
  border-top-style: dotted;
}
.fc-time-grid .fc-slats .ui-widget-content {
  background: none;
}
.fc-time-grid .fc-highlight-container {
  position: relative;
}
.fc-time-grid .fc-highlight {
  position: absolute;
  left: 0;
  right: 0;
}
.fc-time-grid .fc-bgevent-container,
.fc-time-grid .fc-event-container {
  position: relative;
}
.fc-ltr .fc-time-grid .fc-event-container,
.fc-rtl .fc-time-grid .fc-event-container {
  margin: 0;
}
.fc-time-grid .fc-bgevent,
.fc-time-grid .fc-event {
  position: absolute;
  z-index: 1;
}
.fc-time-grid .fc-bgevent {
  left: 0;
  right: 0;
}
.fc-v-event.fc-not-start {
  border-top-width: 0;
  padding-top: 1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.fc-v-event.fc-not-end {
  border-bottom-width: 0;
  padding-bottom: 1px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.fc-time-grid-event {
  overflow: hidden;
  margin: 0 6px 6px 0;
  padding-bottom: 8px;
  min-height: 16px;
}
.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
  padding: 0 1px;
}
.fc-time-grid-event .fc-time {
  font-size: 0.85em;
  white-space: nowrap;
}
.fc-time-grid-event.fc-short .fc-content {
  white-space: nowrap;
  display: inline-block;
  text-overflow: ellipsis;
  max-width: 100%;
}
.fc-time-grid-event .fc-content {
  height: 100%;
  overflow: hidden;
}
.fc-time-grid-event.fc-short .fc-content > div:not(.block-content) {
  display: inline;
}
.fc-time-grid-event:not(.fc-short) .fc-content > div {
  word-wrap: break-word;
}
.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
  display: inline-block;
  vertical-align: top;
}
.fc-time-grid-event.fc-short .fc-time span {
  display: none;
}
.fc-time-grid-event.fc-short .fc-time:before {
  content: attr(data-start);
}
.fc-time-grid-event.fc-short .fc-time:after {
  content: "\000A0-\000A0";
}
.fc-time-grid-event.fc-short .fc-title {
  font-size: 0.85em;
  padding: 0;
}
.fc-time-grid .fc-content-col {
  position: relative;
}
.fc-now-indicator {
  position: absolute;
  border: 0 solid #ad1b00;
}
.fc-time-grid .fc-now-indicator-line {
  border-top-width: 1px;
  left: 0;
  right: 0;
}
.fc-time-grid .fc-now-indicator-arrow {
  margin-top: -4px;
}
.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #ad1b00;
  border-radius: 4px;
}
.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
  right: 0;
  border-width: 5px 6px 5px 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
.fc-time-grid-event .fc-resizer {
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  overflow: hidden;
  line-height: 8px;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  cursor: s-resize;
}
.fc-time-grid-event .fc-resizer:after {
  content: "=";
}
.calendar-header,
.calendarcnt {
  color: #3e3e3e;
}
.calendar-header .fc-toolbar,
.calendarcnt .fc-toolbar {
  padding: 10px 12px;
  margin-bottom: 0px;
  height: 50px;
}
.calendar-header .fc-toolbar .fc-state-hover,
.calendarcnt .fc-toolbar .fc-state-hover {
  background: #dbdbdb;
}
.calendar-header .fc-toolbar .fc-left h2,
.calendarcnt .fc-toolbar .fc-left h2 {
  margin-top: 4px;
  font-size: 20px;
  display: inline-block;
  font-weight: lighter;
  margin-left: 8px;
}
.calendar-header .fc-toolbar .fc-left .fc-next-button,
.calendar-header .fc-toolbar .fc-left .fc-prev-button,
.calendarcnt .fc-toolbar .fc-left .fc-next-button,
.calendarcnt .fc-toolbar .fc-left .fc-prev-button {
  padding: 0;
  margin-left: 0;
  height: 30px;
  width: 33px;
}
.calendar-header .fc-toolbar .fc-left .fc-next-button .fc-icon,
.calendar-header .fc-toolbar .fc-left .fc-prev-button .fc-icon,
.calendarcnt .fc-toolbar .fc-left .fc-next-button .fc-icon,
.calendarcnt .fc-toolbar .fc-left .fc-prev-button .fc-icon {
  font-size: 16px;
  -webkit-transform: scaleX(0.5);
  transform: scaleX(0.5);
}
.calendar-header .fc-toolbar .fc-left .fc-next-button,
.calendarcnt .fc-toolbar .fc-left .fc-next-button {
  margin-left: 5px;
}
.calendar-header .fc-toolbar .fc-right .fc-state-active,
.calendar-header .fc-toolbar .fc-right .fc-state-disabled,
.calendarcnt .fc-toolbar .fc-right .fc-state-active,
.calendarcnt .fc-toolbar .fc-right .fc-state-disabled {
  box-shadow: none;
}
.calendar-header .fc-toolbar .fc-right .fc-state-disabled,
.calendarcnt .fc-toolbar .fc-right .fc-state-disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.65;
}
.calendar-header .fc-toolbar .fc-right .fc-today-button,
.calendarcnt .fc-toolbar .fc-right .fc-today-button {
  height: 30px;
  font-size: 13px;
}
.calendar-header .fc-toolbar .fc-right .fc-agendaButton-button,
.calendar-header .fc-toolbar .fc-right .fc-agendaDay-button,
.calendar-header .fc-toolbar .fc-right .fc-agendaWeek-button,
.calendar-header .fc-toolbar .fc-right .fc-month-button,
.calendarcnt .fc-toolbar .fc-right .fc-agendaButton-button,
.calendarcnt .fc-toolbar .fc-right .fc-agendaDay-button,
.calendarcnt .fc-toolbar .fc-right .fc-agendaWeek-button,
.calendarcnt .fc-toolbar .fc-right .fc-month-button {
  font-family: icon-wm;
  padding: 0 4px;
  line-height: 1;
  height: 30px;
  margin-left: 7px;
}
.calendar-header .fc-toolbar .fc-right .fc-agendaButton-button.fc-state-active,
.calendar-header .fc-toolbar .fc-right .fc-agendaDay-button.fc-state-active,
.calendar-header .fc-toolbar .fc-right .fc-agendaWeek-button.fc-state-active,
.calendar-header .fc-toolbar .fc-right .fc-month-button.fc-state-active,
.calendarcnt .fc-toolbar .fc-right .fc-agendaButton-button.fc-state-active,
.calendarcnt .fc-toolbar .fc-right .fc-agendaDay-button.fc-state-active,
.calendarcnt .fc-toolbar .fc-right .fc-agendaWeek-button.fc-state-active,
.calendarcnt .fc-toolbar .fc-right .fc-month-button.fc-state-active {
  background: #c1c1c1;
}
.calendar-header .fc-toolbar .fc-right .fc-agendaDay-button,
.calendar-header .fc-toolbar .fc-right .fc-agendaWeek-button,
.calendar-header .fc-toolbar .fc-right .fc-month-button,
.calendarcnt .fc-toolbar .fc-right .fc-agendaDay-button,
.calendarcnt .fc-toolbar .fc-right .fc-agendaWeek-button,
.calendarcnt .fc-toolbar .fc-right .fc-month-button {
  font-size: 24px;
}
.calendar-header .fc-toolbar .fc-right .fc-agendaButton-button,
.calendarcnt .fc-toolbar .fc-right .fc-agendaButton-button {
  font-size: 21px;
}
.calendar-header .fc-toolbar .fc-right .fc-agendaButton-button:before,
.calendarcnt .fc-toolbar .fc-right .fc-agendaButton-button:before {
  content: "\e623";
}
.calendar-header .fc-toolbar .fc-right .fc-agendaDay-button:before,
.calendarcnt .fc-toolbar .fc-right .fc-agendaDay-button:before {
  content: "\e61d";
}
.calendar-header .fc-toolbar .fc-right .fc-agendaWeek-button:before,
.calendarcnt .fc-toolbar .fc-right .fc-agendaWeek-button:before {
  content: "\e61e";
}
.calendar-header .fc-toolbar .fc-right .fc-month-button:before,
.calendarcnt .fc-toolbar .fc-right .fc-month-button:before {
  content: "\e61f";
}
.calendarcnt .fc-view td.fc-widget-header {
  background: #283a50;
}
.calendarcnt .fc-view td.fc-widget-header th {
  height: 28px;
  color: #fff;
  vertical-align: middle;
  font-weight: 400;
  border: none;
  font-size: 13px;
}
.calendarcnt .fc-view td.fc-widget-header th.fc-widget-header {
  text-align: left;
  padding-left: 12px;
}
.calendarcnt
  .fc-view.fc-agendaWeek-view
  td.fc-widget-header
  th.fc-widget-header {
  text-align: center;
  padding-left: 0;
}
.calendarcnt .fc-view.fc-agendaDay-view td.fc-widget-header th.fc-axis,
.calendarcnt .fc-view.fc-agendaWeek-view td.fc-widget-header th.fc-axis {
  text-align: center;
  padding-left: 3px;
  padding-right: 5px;
}
.calendarcnt .fc-view .fc-day-number {
  text-align: left;
  padding-left: 12px;
  padding-top: 8px;
  padding-bottom: 6px;
  font-size: 13px;
}
.calendarcnt .fc-view .fc-event {
  cursor: pointer;
}
.calendarcnt .fc-view .fc-event .fc-time,
.calendarcnt .fc-view .fc-event .fc-title {
  text-overflow: ellipsis;
  overflow: hidden;
}
.calendarcnt .fc-view .fc-event .fa-circle {
  font-size: 5px;
  vertical-align: middle;
  margin: 0 2px;
}
.calendarcnt .fc-view .fc-event.fc-day-grid-event .attendee-status-container {
  display: block;
}
.calendarcnt .fc-view .fc-event.fc-short .attendee-status-container {
  white-space: nowrap;
  display: inline-block;
}
.calendarcnt .fc-view .fc-event.fc-short .attendee-status-container .fa-circle {
  vertical-align: top;
  margin-top: 5px;
}
.calendarcnt
  .fc-view
  .fc-event.fc-short
  .attendee-status-container
  .attendee-status {
  font-size: 0.85em;
  vertical-align: top;
}
.calendarcnt
  .fc-view
  .fc-event.two-rows-time-grid-event-with-status
  .fc-content {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.calendarcnt
  .fc-view
  .fc-event.two-rows-time-grid-event-with-status
  .fc-content
  .fc-time {
  display: inline-block;
  max-width: 100%;
}
.calendarcnt
  .fc-view
  .fc-event.two-rows-time-grid-event-with-status
  .fc-content
  .fc-title {
  display: inline;
}
.calendarcnt
  .fc-view
  .fc-event.two-rows-time-grid-event-with-status
  .fc-content
  .attendee-status-container {
  display: block;
}
.calendarcnt .fc-view .fc-event.two-rows-time-grid-event-with-status .fc-title {
  display: inline-block;
}
.calendarcnt
  .fc-view
  .fc-event.two-rows-time-grid-event-with-status
  .attendee-status-container
  .fa-circle {
  vertical-align: top;
  margin-top: 7px;
}
.calendarcnt
  .fc-view
  .fc-event.two-rows-time-grid-event-with-status
  .attendee-status-container
  .attendee-status {
  vertical-align: top;
}
.calendarcnt .fc-view .attachmentsExist.fc-day-grid-event {
  padding-bottom: 13px;
}
.calendarcnt .fc-view .attachmentsExist .fa-paperclip {
  position: absolute;
  padding-right: 3px;
  padding-bottom: 1px;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.calendarcnt .fc-view .fc-day.fc-sat,
.calendarcnt .fc-view .fc-day.fc-sun {
  background-color: #f5f5f5;
}
.calendarcnt .fc-view .fc-day.fc-sat.fc-today,
.calendarcnt .fc-view .fc-day.fc-sun.fc-today {
  background: #ecf4fc;
}
.calendarcnt .fc-view.fc-agendaWeek-view .fc-day.fc-today,
.calendarcnt .fc-view.fc-month-view .fc-day.fc-today {
  position: relative;
}
.calendarcnt .fc-view.fc-agendaWeek-view .fc-day.fc-today:before,
.calendarcnt .fc-view.fc-month-view .fc-day.fc-today:before {
  content: "\00a0";
  border: 1px solid #0e57ab;
  height: calc(100% + 2px);
  width: calc(100% + 2px);
  display: table;
  box-sizing: border-box;
  margin: -1px;
}
.calendarcnt .fc-view.fc-agendaWeek-view .fc-day-number.fc-today,
.calendarcnt .fc-view.fc-month-view .fc-day-number.fc-today {
  font-weight: 700;
  color: #0e57ab;
}
.calendarcnt .fc-view.fc-agendaWeek-view .today-row,
.calendarcnt .fc-view.fc-month-view .today-row {
  z-index: 2;
}
.calendarcnt .fc-view.fc-agendaWeek-view .today-row table,
.calendarcnt .fc-view.fc-month-view .today-row table {
  border-bottom-style: solid;
}
.calendarcnt .fc-view.fc-agendaWeek-view .fc-day.fc-today:nth-child(2):before,
.calendarcnt .fc-view.fc-month-view .fc-day.fc-today:first-child:before {
  margin-left: 0;
  width: calc(100% + 1px);
  height: calc(100% + 2px);
}
.agendaContainer .attendee {
  margin-top: 10px;
}
.agendaContainer .attendee > span {
  position: relative;
  display: inline-block;
}
.agendaContainer .attendee > span > span {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  pointer-events: none;
}
.agendaContainer .attendee > span > span.icon-wm-organizer {
  color: #54acd2;
}
.agendaContainer .attendee > span > span.fa-check-circle-o {
  color: #41a85f;
}
.agendaContainer .attendee > span > span.icon-wm-tentative {
  color: #f4a932;
}
.agendaContainer .attendee > span > span.icon-wm-declined {
  color: #ad1b00;
}
.agendaContainer .attendee .sidebarlabel {
  display: block;
}
.agendaContainer .attendee > div {
  display: inline-block;
  color: #595959;
  margin-left: 10px;
  vertical-align: middle;
  width: 224px;
}
.agendaContainer .attendee > div .attendeeEmail,
.agendaContainer .attendee > div .attendeeName,
.agendaContainer .attendee > div .attendeeRemove {
  text-overflow: ellipsis;
  overflow: hidden;
}
.agendaContainer .attendee > div .attendeeName {
  font-weight: 700;
  color: #3e3e3e;
}
.agendaContainer .attendee > div .attendeeRemove {
  cursor: pointer;
  color: #003e87;
}
.agendaContainer .showHideAllAttendees {
  color: #003e87;
  text-align: center;
  cursor: pointer;
}
.agendaContainer .showHideAllAttendees i {
  font-size: 18px;
  vertical-align: middle;
}
.agendaContainer .inviteActions {
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  background-color: #eee;
  padding: 15px 15px 10px;
  margin-bottom: 15px;
}
.agendaContainer .inviteActions strong {
  color: #3e3e3e;
}
.agendaContainer .inviteActions .inviteStatus,
.agendaContainer .inviteActions .inviteSummary {
  min-height: 30px;
}
.agendaContainer .inviteActions .inviteStatus p,
.agendaContainer .inviteActions .inviteSummary p {
  margin: 0px;
}
.agendaContainer .inviteActions .inviteStatus ul,
.agendaContainer .inviteActions .inviteSummary ul {
  list-style-type: none;
  margin: 0px;
  padding-left: 5px;
}
.agendaContainer .inviteActions .inviteStatus ul li:before,
.agendaContainer .inviteActions .inviteSummary ul li:before {
  content: "- ";
}
.agendaContainer .inviteActions .inviteSummary {
  margin-bottom: 15px;
  line-height: 20px;
}
.agendaContainer .inviteActions .inviteStatus {
  margin-bottom: 5px;
  line-height: 30px;
}
.agendaContainer .inviteActions .inviteActionButtons .btn {
  margin-bottom: 5px;
}
.agendaContainer
  .inviteActions
  .inviteActionButtons
  .row
  .col-md-12
  .btn-group:last-of-type {
  margin-right: 10px;
}
.agendaContainer .inviteActions .inviteActionButtons .btn-link {
  padding-left: 0px;
  padding-right: 0px;
}
.agendaContainer .inviteActions .inviteActionDetails {
  overflow: hidden;
  max-height: 0px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.agendaContainer .inviteActions .inviteActionDetails .form-group:last-child {
  margin-bottom: 5px;
}
.agendaContainer .inviteActions .slideopen {
  max-height: 175px;
  -webkit-transition: 0.75s;
  transition: 0.75s;
}
.agendaContainer .inviteActions .suggestedTime span {
  color: #000;
}
.agendaContainer .inviteActions .suggestedTime a {
  margin-left: 10px;
}
.tooltip.agendaOverlapTooltip {
  filter: alpha(opacity=100);
  opacity: 1;
}
.tooltip.agendaOverlapTooltip .tooltip-arrow {
  display: none;
}
.tooltip.agendaOverlapTooltip .tooltip-inner {
  margin-left: 50%;
  margin-right: -50%;
  text-align: left;
  background-color: inherit;
  color: #3e3e3e;
  z-index: 9;
  border-radius: 0;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.176);
  padding: 13px;
  background: #fff;
  word-break: break-all;
}
.tooltip.agendaOverlapTooltip .tooltip-inner .overlapTitle {
  font-weight: 700;
  padding-bottom: 10px;
}
.tooltip.agendaOverlapTooltip .tooltip-inner .overlapEvent {
  padding-bottom: 17px;
}
.tooltip.agendaOverlapTooltip .tooltip-inner .overlapEvent:last-child {
  padding-bottom: 0;
}
.tooltip.agendaOverlapTooltip .tooltip-inner .overlapEvent i {
  padding-right: 7px;
}
#editeventsidebar label,
.editeventsidebar label {
  color: #3e3e3e;
  font-weight: 700;
}
#editeventsidebar .editDatePicker label,
.editeventsidebar .editDatePicker label {
  white-space: nowrap;
}
#editeventsidebar .uneditableEventPropertyValue,
.editeventsidebar .uneditableEventPropertyValue {
  word-break: break-all;
}
#editeventsidebar .inforow-time,
.editeventsidebar .inforow-time {
  display: table;
  margin-bottom: 10px;
}
#editeventsidebar .inforow-time span,
.editeventsidebar .inforow-time span {
  display: table-cell;
}
#editeventsidebar .inforow-time span .left-empty-space,
.editeventsidebar .inforow-time span .left-empty-space {
  padding: 0 0 0 20px;
}
#editeventsidebar .inforow-time span span,
.editeventsidebar .inforow-time span span {
  display: block;
  margin-bottom: 5px;
}
#editeventsidebar .inforow-time .arrow,
.editeventsidebar .inforow-time .arrow {
  padding: 0 15px;
  vertical-align: middle;
  font-size: 35px;
  display: table-cell;
  color: #3e3e3e;
}
#editeventsidebar .form-control[disabled],
.editeventsidebar .form-control[disabled] {
  cursor: auto;
}
#editeventsidebar .attendee,
.editeventsidebar .attendee {
  margin-top: 10px;
}
#editeventsidebar .attendee > span,
.editeventsidebar .attendee > span {
  position: relative;
  display: inline-block;
}
#editeventsidebar .attendee > span > span,
.editeventsidebar .attendee > span > span {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  pointer-events: none;
}
#editeventsidebar .attendee > span > span.icon-wm-organizer,
.editeventsidebar .attendee > span > span.icon-wm-organizer {
  color: #54acd2;
}
#editeventsidebar .attendee > span > span.fa-check-circle-o,
.editeventsidebar .attendee > span > span.fa-check-circle-o {
  color: #41a85f;
}
#editeventsidebar .attendee > span > span.icon-wm-tentative,
.editeventsidebar .attendee > span > span.icon-wm-tentative {
  color: #f4a932;
}
#editeventsidebar .attendee > span > span.icon-wm-declined,
.editeventsidebar .attendee > span > span.icon-wm-declined {
  color: #ad1b00;
}
#editeventsidebar .attendee .sidebarlabel,
.editeventsidebar .attendee .sidebarlabel {
  display: block;
}
#editeventsidebar .attendee > div,
.editeventsidebar .attendee > div {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  width: 224px;
}
#editeventsidebar .attendee > div .attendeeEmail,
#editeventsidebar .attendee > div .attendeeName,
#editeventsidebar .attendee > div .attendeeRemove,
.editeventsidebar .attendee > div .attendeeEmail,
.editeventsidebar .attendee > div .attendeeName,
.editeventsidebar .attendee > div .attendeeRemove {
  text-overflow: ellipsis;
  overflow: hidden;
}
#editeventsidebar .attendee > div .attendeeName,
.editeventsidebar .attendee > div .attendeeName {
  color: #3e3e3e;
  font-weight: 700;
}
#editeventsidebar .attendee > div .attendeeRemove,
.editeventsidebar .attendee > div .attendeeRemove {
  cursor: pointer;
  color: #0e57ab;
}
#editeventsidebar .showHideAllAttendees,
.editeventsidebar .showHideAllAttendees {
  color: #0e57ab;
  text-align: center;
  cursor: pointer;
}
#editeventsidebar .showHideAllAttendees i,
.editeventsidebar .showHideAllAttendees i {
  font-size: 18px;
  vertical-align: middle;
}
#editeventsidebar .fullEditButton,
.editeventsidebar .fullEditButton {
  max-width: 155px;
}
#editeventsidebar .addMoreDetailsButton,
.editeventsidebar .addMoreDetailsButton {
  max-width: 190px;
}
#editeventsidebar .deleteButton,
.editeventsidebar .deleteButton {
  font-size: 17px;
}
#editeventsidebar .inviteActions,
.editeventsidebar .inviteActions {
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  background-color: #eee;
  padding: 15px 15px 10px;
  margin-bottom: 15px;
}
#editeventsidebar .inviteActions .inviteStatus,
#editeventsidebar .inviteActions .inviteSummary,
.editeventsidebar .inviteActions .inviteStatus,
.editeventsidebar .inviteActions .inviteSummary {
  min-height: 30px;
}
#editeventsidebar .inviteActions .inviteStatus p,
#editeventsidebar .inviteActions .inviteSummary p,
.editeventsidebar .inviteActions .inviteStatus p,
.editeventsidebar .inviteActions .inviteSummary p {
  margin: 0px;
}
#editeventsidebar .inviteActions .inviteStatus ul,
#editeventsidebar .inviteActions .inviteSummary ul,
.editeventsidebar .inviteActions .inviteStatus ul,
.editeventsidebar .inviteActions .inviteSummary ul {
  list-style-type: none;
  margin: 0px;
  padding-left: 5px;
}
#editeventsidebar .inviteActions .inviteStatus ul li:before,
#editeventsidebar .inviteActions .inviteSummary ul li:before,
.editeventsidebar .inviteActions .inviteStatus ul li:before,
.editeventsidebar .inviteActions .inviteSummary ul li:before {
  content: "- ";
}
#editeventsidebar .inviteActions .inviteStatus button,
#editeventsidebar .inviteActions .inviteSummary button,
.editeventsidebar .inviteActions .inviteStatus button,
.editeventsidebar .inviteActions .inviteSummary button {
  padding: 0;
}
#editeventsidebar .inviteActions .inviteSummary,
.editeventsidebar .inviteActions .inviteSummary {
  margin-bottom: 15px;
  line-height: 20px;
}
#editeventsidebar .inviteActions .inviteStatus,
.editeventsidebar .inviteActions .inviteStatus {
  margin-bottom: 5px;
  line-height: 30px;
}
#editeventsidebar .inviteActions .inviteActionButtons .btn,
.editeventsidebar .inviteActions .inviteActionButtons .btn {
  margin-bottom: 5px;
}
#editeventsidebar
  .inviteActions
  .inviteActionButtons
  .row
  .col-md-12
  .btn-group:last-of-type,
.editeventsidebar
  .inviteActions
  .inviteActionButtons
  .row
  .col-md-12
  .btn-group:last-of-type {
  margin-right: 10px;
}
#editeventsidebar .inviteActions .inviteActionButtons .btn-link,
.editeventsidebar .inviteActions .inviteActionButtons .btn-link {
  padding-left: 0px;
  padding-right: 0px;
}
#editeventsidebar .inviteActions .inviteActionDetails,
.editeventsidebar .inviteActions .inviteActionDetails {
  overflow: hidden;
  max-height: 0px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#editeventsidebar .inviteActions .inviteActionDetails .form-group:last-child,
.editeventsidebar .inviteActions .inviteActionDetails .form-group:last-child {
  margin-bottom: 5px;
}
#editeventsidebar .inviteActions .slideopen,
.editeventsidebar .inviteActions .slideopen {
  max-height: 175px;
  -webkit-transition: 0.75s;
  transition: 0.75s;
}
#editeventsidebar .inviteActions .suggestedTime span,
.editeventsidebar .inviteActions .suggestedTime span {
  color: #000;
}
#editeventsidebar .inviteActions .suggestedTime a,
.editeventsidebar .inviteActions .suggestedTime a {
  margin-left: 10px;
}
#editeventsidebar .sidebarButtons,
.editeventsidebar .sidebarButtons {
  height: 40px;
}
#moreeventssidebar .sidebarheader {
  font-size: 24px;
  color: #3e3e3e;
}
#moreeventssidebar .fc-head {
  display: none;
}
.sections-calendar-importcalendar .splitFormContent {
  max-width: 760px;
  width: 75%;
  float: left;
  padding: 0 80px 0 0 !important;
  margin-left: 20px;
}
.sections-calendar-importcalendar .splitFormContent input {
  margin-top: 0;
  vertical-align: middle;
  line-height: 14px;
}
.sections-calendar-importcalendar .splitFormContent input::-ms-clear {
  display: none;
}
.sections-calendar-importcalendar .splitFormContent .radio input,
.sections-calendar-importcalendar .splitFormContent .radio label,
.sections-calendar-importcalendar .splitFormContent .radio span {
  color: #3e3e3e;
}
.sections-calendar-importcalendar .splitFormContent .radio label {
  padding-left: 14px;
}
.sections-calendar-importcalendar .splitFormContent .nowrap {
  white-space: nowrap;
}
.sections-calendar-importcalendar .splitFormContent .margin-bottom-8 {
  margin-bottom: 8px;
}
.sections-calendar-importcalendar .splitFormContent .margin-bottom-14 {
  margin-bottom: 14px;
}
.sections-calendar-importcalendar .splitFormContent .margin-bottom-22 {
  margin-bottom: 22px;
}
.sections-calendar-importcalendar .splitFormContent .margin-bottom-35 {
  margin-bottom: 35px;
}
.sections-calendar-importcalendar .splitFormContent .display-inline-block {
  display: inline-block;
  margin-left: 5px;
}
.sections-calendar-importcalendar .splitFormContent .importByFile,
.sections-calendar-importcalendar .splitFormContent .importByURL {
  height: 30px;
}
.sections-calendar-importcalendar .splitFormContent .importByURL {
  display: block;
}
.sections-calendar-importcalendar .splitFormContent .importByFile {
  display: inline-block;
  background-color: #fff;
  cursor: default;
}
.sections-calendar-importcalendar .splitFormContent .importByFile.disabled {
  background-color: #eee;
  cursor: default;
}
.sections-calendar-importcalendar .splitFormContent .uploadButton {
  display: inline-block;
  height: 30px;
  margin-left: 5px;
}
.sections-calendar-importcalendar .splitFormContent .uploadButton.disabled {
  background: linear-gradient(180deg, #fafafa 0%, #e5e5e5);
}
.sections-calendar-importcalendar
  .splitFormContent
  .uploadButton
  input[type="file"][disabled] {
  cursor: default;
}
.sections-calendar-importcalendar .existingCalendarId {
  max-width: 446px;
}
.calendar-subscribe,
.contacts-subscribe {
  padding: 0px 15px;
}
.calendar-subscribe .subscribe-top,
.contacts-subscribe .subscribe-top {
  border-bottom: 1px solid #ececec;
  padding-bottom: 20px;
  margin-left: 20px;
}
.calendar-subscribe .subscribe-top .search-row .searchbar,
.contacts-subscribe .subscribe-top .search-row .searchbar {
  width: 80%;
  max-width: 425px;
  float: left;
  position: relative;
}
.calendar-subscribe .subscribe-top .search-row .searchbar .align,
.contacts-subscribe .subscribe-top .search-row .searchbar .align {
  vertical-align: top;
}
.calendar-subscribe
  .subscribe-top
  .search-row
  .searchbar
  .searchclear-btn-subscribe,
.contacts-subscribe
  .subscribe-top
  .search-row
  .searchbar
  .searchclear-btn-subscribe {
  position: absolute;
  top: 2px;
  right: 40px;
  margin: 0px;
  width: 15px;
  height: 30px;
  z-index: 2;
  border: 0px;
  color: #595959;
  background: transparent;
  font-size: 14px;
  padding: 0px;
  vertical-align: middle;
  box-shadow: none;
}
.calendar-subscribe .subscribe-top .search-row .searchbar .fa-search,
.contacts-subscribe .subscribe-top .search-row .searchbar .fa-search {
  top: 0;
  right: 0;
  padding: 10px;
  position: absolute;
}
.calendar-subscribe .subscribe-top .search-row .buttonholder,
.contacts-subscribe .subscribe-top .search-row .buttonholder {
  width: 50%;
  float: right;
  text-align: right;
}
.calendar-subscribe .subscribe-top .search-row .buttonholder .btn,
.contacts-subscribe .subscribe-top .search-row .buttonholder .btn {
  padding: 0;
  height: 30px;
  line-height: 30px;
  width: 80px;
  border: 1px solid #dcdcdc;
  color: #444;
  background: #fafafa;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #fafafa),
    color-stop(100%, #e5e5e5)
  );
  background: -webkit-linear-gradient(top, #fafafa, #e5e5e5);
  background: linear-gradient(180deg, #fafafa 0%, #e5e5e5);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa',endColorstr='#e5e5e5',GradientType=0);
}
.calendar-subscribe .subscribe-top .search-row .buttonholder .btn-add,
.contacts-subscribe .subscribe-top .search-row .buttonholder .btn-add {
  margin-left: 24px;
  border: 1px solid #1e75d9;
  background: #3c86cf;
  color: #fff;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #3c86cf),
    color-stop(100%, #216ec3)
  );
  background: -webkit-linear-gradient(top, #3c86cf, #216ec3);
  background: linear-gradient(180deg, #3c86cf 0%, #216ec3);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3c86cf',endColorstr='#216ec3',GradientType=0);
}
.calendar-subscribe .calendar-subscribe-content,
.contacts-subscribe .calendar-subscribe-content {
  overflow-y: auto;
  overflow-x: hidden;
}
.calendar-subscribe .calendar-subscribe-content .contentCell,
.contacts-subscribe .calendar-subscribe-content .contentCell {
  display: inline-block;
  margin: 15px 0 0 15px;
  width: 47%;
  min-width: 240px;
  vertical-align: top;
}
.calendar-subscribe .calendar-subscribe-content .contentCell .details,
.calendar-subscribe .calendar-subscribe-content .contentCell .ownerAvatar,
.contacts-subscribe .calendar-subscribe-content .contentCell .details,
.contacts-subscribe .calendar-subscribe-content .contentCell .ownerAvatar {
  float: left;
}
.calendar-subscribe .calendar-subscribe-content .contentCell .ownerAvatar img,
.contacts-subscribe .calendar-subscribe-content .contentCell .ownerAvatar img {
  width: 45px;
  height: 45px;
  border-radius: 25px;
}
.calendar-subscribe .calendar-subscribe-content .contentCell .details,
.contacts-subscribe .calendar-subscribe-content .contentCell .details {
  width: calc(100% - 45px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.calendar-subscribe
  .calendar-subscribe-content
  .contentCell
  .details
  .contactName,
.contacts-subscribe
  .calendar-subscribe-content
  .contentCell
  .details
  .contactName {
  color: #3e3e3e;
  padding-left: 26px;
  font-weight: 700;
}
.calendar-subscribe
  .calendar-subscribe-content
  .contentCell
  .details
  .checkbox-cal,
.contacts-subscribe
  .calendar-subscribe-content
  .contentCell
  .details
  .checkbox-cal {
  margin: 0;
  padding: 0;
}
.calendar-subscribe
  .calendar-subscribe-content
  .contentCell
  .details
  .calendarName,
.contacts-subscribe
  .calendar-subscribe-content
  .contentCell
  .details
  .calendarName {
  font-size: 12px;
  display: block;
  cursor: pointer;
  margin-left: 5px;
  padding: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.calendar-subscribe
  .calendar-subscribe-content
  .contentCell
  .details
  .calendarName
  .space-hold,
.contacts-subscribe
  .calendar-subscribe-content
  .contentCell
  .details
  .calendarName
  .space-hold {
  width: 16px;
  display: inline-block;
  margin-left: 4px;
  margin-top: 3.2px;
}
.calendar-subscribe
  .calendar-subscribe-content
  .contentCell
  .details
  .calendarName
  .space-hold
  span
  .fa-check-square,
.calendar-subscribe
  .calendar-subscribe-content
  .contentCell
  .details
  .calendarName
  .space-hold
  span
  .fa-square-o,
.contacts-subscribe
  .calendar-subscribe-content
  .contentCell
  .details
  .calendarName
  .space-hold
  span
  .fa-check-square,
.contacts-subscribe
  .calendar-subscribe-content
  .contentCell
  .details
  .calendarName
  .space-hold
  span
  .fa-square-o {
  font-size: 14px;
}
.calendar-subscribe
  .calendar-subscribe-content
  .contentCell
  .details
  .calendarName
  .title,
.contacts-subscribe
  .calendar-subscribe-content
  .contentCell
  .details
  .calendarName
  .title {
  top: -2px;
  position: relative;
  vertical-align: middle;
  color: #3e3e3e;
}
.calendar-subscribe
  .calendar-subscribe-content
  .contentCell
  .details
  .calendarName
  .space-hold
  input[type="checkbox"],
.contacts-subscribe
  .calendar-subscribe-content
  .contentCell
  .details
  .calendarName
  .space-hold
  input[type="checkbox"] {
  display: inline-block;
  padding: 0;
  vertical-align: middle;
  margin-top: 0;
}
.calendar-subscribe
  .calendar-subscribe-content
  .contentCell
  .details
  .calendarName:hover,
.contacts-subscribe
  .calendar-subscribe-content
  .contentCell
  .details
  .calendarName:hover {
  text-decoration: none;
  border: 1px solid #595959;
  padding: 1px;
}
#mini-calendar-parent {
  border: none;
  display: block;
  padding: 16px 23px 20px;
  width: 100%;
}
#mini-calendar-parent a {
  color: #3e3e3e;
}
#mini-calendar-parent > tbody > tr td,
#mini-calendar-parent > tbody > tr th,
#mini-calendar-parent > thead > tr td,
#mini-calendar-parent > thead > tr th {
  width: 100px;
  text-align: center;
  font-size: 12px;
  line-height: 27px;
}
#mini-calendar-parent > tbody > tr.mini-calendar-days-row th,
#mini-calendar-parent > thead > tr.mini-calendar-days-row th {
  font-weight: 700;
  color: #3e3e3e;
}
#mini-calendar-parent table {
  border: none;
  width: 100%;
}
#mini-calendar-parent .calendar-title {
  text-align: left;
}
#mini-calendar-parent td {
  font-weight: 600;
}
#mini-calendar-parent td a {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  height: 27px;
  line-height: 27px;
}
#mini-calendar-parent td.other-month {
  font-weight: 400;
}
#mini-calendar-parent td.mark-today a {
  background: #0e57ab;
  color: #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
#mini-calendar-parent .selectday {
  background: #fff;
}
.minicalendar.panel .panel-heading .panel-title {
  padding: 5px 10px;
}
.minicalendar.panel .panel-heading .panel-title .fa {
  width: 13px;
  background: none;
  cursor: pointer;
  border: none;
  padding: 0;
}
.minicalendar.panel .panel-heading .panel-title .text {
  padding-left: 8px;
  font-weight: 700;
}
[draggable] {
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -khtml-user-drag: element;
  -webkit-user-drag: element;
}
.contacts-start {
  font-size: 122px;
  line-height: 122px;
  padding-top: 22%;
}
.contacts-start h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  margin: 0;
  padding: 10px 0;
}
.contacts-start p {
  font-size: 14px;
  line-height: 14px;
}
.check-group {
  position: absolute;
  top: 8px;
  right: 0px;
}
.contacts-navbar .current-letter-container {
  font-size: 24px;
  line-height: 30px;
  width: 50px;
}
.contacts-navbar .current-letter-container > span {
  display: inline-block;
  vertical-align: middle;
}
.contacts-navbar .current-letter-container > span.fa {
  font-size: 14px;
  vertical-align: text-bottom;
}
.contacts-navbar #current-letter {
  color: #3e3e3e;
}
.contacts-section {
  color: #444;
}
.contacts-section ::-webkit-input-placeholder {
  color: #595959;
}
.contacts-section :-moz-placeholder,
.contacts-section ::-moz-placeholder {
  color: #595959;
  opacity: 1;
}
.contacts-section :-ms-input-placeholder {
  color: #595959;
}
.contacts-section ul.dropdown-menu .mini-submenu i {
  position: absolute;
  right: 5px;
  line-height: 20px;
  font-size: 12px;
}
.contacts-section .contacts-lists {
  background: #fff;
  overflow-x: visible;
  position: absolute;
  width: 336px;
  word-break: break-all;
  z-index: 300;
}
.contacts-section .contacts-lists .sortbar {
  height: 29px;
  line-height: 29px;
  background: #283a50;
  color: #fff;
  padding-left: 15px;
  padding-right: 15px;
}
.contacts-section .contacts-lists .sortbar .sortby {
  padding-right: 6px;
  padding-left: 6px;
}
.contacts-section .contacts-lists .sortbar button {
  border: 0px;
  background-color: transparent;
  padding: 0px;
  margin: 0px;
  color: #fff;
}
.contacts-section .contacts-lists .sortbar button:hover {
  color: #eee;
}
.contacts-section .contacts-lists .sortbar .sortdir {
  margin-left: 6px;
}
.contacts-section .contacts-lists ul {
  float: none !important;
}
.contacts-section .contacts-lists .contacts-long-list {
  position: relative;
  background: #fff;
}
.contacts-section .contacts-lists .contacts-letters-div {
  display: block;
  vertical-align: top;
  width: 100%;
  max-width: 35px;
  color: #3e3e3e;
  position: absolute;
  top: 25px;
  right: 43px;
  z-index: 2;
}
.contacts-section .contacts-lists .contacts-letters-div > ul {
  display: block;
  float: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}
.contacts-section .contacts-lists .contacts-letters-div > ul > li {
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: center;
  float: none;
  margin-bottom: 15px;
  font-size: 12px;
}
.contacts-section .contacts-lists .contacts-letters-div > ul > li a {
  line-height: 14px;
}
.contacts-section .contacts-lists .contacts-letters-div a {
  background: none;
  color: inherit;
  text-decoration: none;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  max-width: 100%;
}
.contacts-section .contacts-lists .contacts-nav {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-boz-sizing: border-box;
  display: block;
  vertical-align: top;
  width: 100%;
  max-width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.contacts-section .contacts-lists .contacts-nav ul > li {
  width: 100%;
  max-width: 100%;
}
.contacts-section .contacts-lists .contacts-nav ul > li.list-group-item.active {
  background-color: #fff;
  border-color: #ddd;
  color: #444;
  z-index: 0;
}
.contacts-section .contacts-lists .contacts-nav ul > li > div {
  font-size: 18px;
  margin: 0;
  padding: 18px 0px;
  color: #595959;
}
.contacts-section .contacts-lists .contacts-nav ul > li > .contacts-childrens {
  max-width: 100%;
  width: 100%;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > span {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  padding: 5px 10px 5px 45px;
  font-style: normal;
  font-size: 18px;
  line-height: 18px;
  color: #3e3e3e;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li {
  width: 100%;
  max-width: 98%;
  position: relative;
  border-bottom: 1px solid #ccc;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  > div {
  display: inline-block;
  vertical-align: top;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  > div.contacts-color-container,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  div.contacts-color-container-sidebar {
  top: 0;
  left: 0;
  max-width: 2%;
  width: 100%;
  position: absolute;
  height: 100%;
  padding: 0;
  margin: 0;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  > div.contacts-color-container
  .more-groups,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  div.contacts-color-container-sidebar
  .more-groups {
  background-color: inherit;
  position: absolute;
  top: 0;
  left: 0;
  height: 23px;
  font-size: 12px;
  width: 22px;
  color: #fff;
  border-radius: 0px 0px 18px 0px;
  padding-left: 2px;
  cursor: pointer;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  > div.contacts-color-container
  .more-groups
  .more-groups-list,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  div.contacts-color-container-sidebar
  .more-groups
  .more-groups-list {
  color: #3e3e3e;
  z-index: 9;
  left: 20px;
  top: 20px;
  display: none;
  width: 155px;
  font-size: 13px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.176);
  padding: 5px;
  position: absolute;
  background: #fff;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  > div.contacts-color-container
  .more-groups
  .more-groups-list
  ul,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  div.contacts-color-container-sidebar
  .more-groups
  .more-groups-list
  ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  > div.contacts-color-container
  .more-groups
  .more-groups-list
  ul
  li
  i,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  div.contacts-color-container-sidebar
  .more-groups
  .more-groups-list
  ul
  li
  i {
  margin-right: 3px;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  > div.contacts-color-container
  .more-groups:hover
  .more-groups-list,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  div.contacts-color-container-sidebar
  .more-groups:hover
  .more-groups-list {
  display: inline-block;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  > div.contacts-contact,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  div.contacts-contact-sidebar {
  max-width: 97.69%;
  width: 100%;
  margin-left: 2%;
  padding: 15px 0;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  > div.contacts-contact
  > div,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  div.contacts-contact-sidebar
  > div {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 50px;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  > div.contacts-contact
  .contact-actions,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  div.contacts-contact-sidebar
  .contact-actions {
  width: 22px;
  margin-left: 5px;
  max-width: 30px;
  color: #0e57ab;
  font-size: 14px;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  > div.contacts-contact
  .contact-actions
  > div:first-child,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  div.contacts-contact-sidebar
  .contact-actions
  > div:first-child {
  margin-bottom: 5px;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  > div.contacts-contact
  .contact-actions
  > div,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  > div.contacts-contact
  .contact-actions
  button,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  div.contacts-contact-sidebar
  .contact-actions
  > div,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  div.contacts-contact-sidebar
  .contact-actions
  button {
  display: none;
  text-align: center;
  width: 100%;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  > div.contacts-contact
  .contact-actions
  > div.active,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  div.contacts-contact-sidebar
  .contact-actions
  > div.active {
  display: block;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  > div.contacts-contact
  > .contact-short-data,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  div.contacts-contact-sidebar
  > .contact-short-data {
  max-width: 170px;
  padding: 0 0 0 20px;
  font-size: 14px;
  line-height: 18px;
  color: #595959;
  overflow: hidden;
  height: auto;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  > div.contacts-contact
  > .contact-short-data
  > span,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  div.contacts-contact-sidebar
  > .contact-short-data
  > span {
  display: block;
  font-weight: 100;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  > div.contacts-contact
  > .contact-short-data
  > span
  i,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  div.contacts-contact-sidebar
  > .contact-short-data
  > span
  i {
  text-decoration: none;
  font-style: normal;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  > div.contacts-contact
  > .contact-short-data
  > span:first-child,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li
  div.contacts-contact-sidebar
  > .contact-short-data
  > span:first-child {
  color: #000;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li.keynavActive,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li:focus,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li:hover {
  cursor: pointer;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li.keynavActive
  > div.contacts-contact
  .contact-actions
  > div,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li.keynavActive
  > div.contacts-contact
  .contact-actions
  button,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li:focus
  > div.contacts-contact
  .contact-actions
  > div,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li:focus
  > div.contacts-contact
  .contact-actions
  button,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li:hover
  > div.contacts-contact
  .contact-actions
  > div,
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li:hover
  > div.contacts-contact
  .contact-actions
  button {
  display: block;
}
.contacts-section
  .contacts-lists
  .contacts-nav
  ul
  > li
  > .contacts-childrens
  > li:hover {
  background: #eff2f6;
}
.contacts-section .contacts-lists .contacts-nav .letter {
  padding: 10px 0 10px 38px;
  color: #3e3e3e;
  font-size: 24px;
}
.contacts-section .contacts-editor {
  top: 50px;
  width: calc(100% - 336px);
  padding: 0;
  color: #595959;
  margin-left: 335px;
  position: static;
  float: left;
}
.contacts-section .contacts-editor > div,
.contacts-section .contacts-editor form {
  padding-left: 10px;
}
.contacts-section .contacts-editor > h2 {
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin: 150px auto;
  font-size: 30px;
}
.contacts-section .contacts-editor > h2 > i {
  font-size: 3em;
}
.contacts-section .details-keeper {
  overflow-y: auto;
}
.contacts-section .details-keeper .details-navigation {
  padding: 2px 10px;
  float: right;
  height: 34px;
}
.contacts-section .details-keeper .details-navigation .dropdown-menu li {
  clear: both;
}
.contacts-section .details-keeper .details-navigation .dropdown-menu li > span {
  padding: 3px 10px;
  float: left;
}
.contacts-section
  .details-keeper
  .details-navigation
  .dropdown-menu
  li
  .checkbox-btn {
  float: right !important;
}
.contacts-section .details-keeper .details-navigation button {
  margin-left: 5px;
  color: inherit;
}
.contacts-section .details-keeper .details-navigation h3 {
  border-bottom: 1px solid #eee;
  margin: 0;
  padding: 15px 0;
  color: #444;
}
.contacts-section .details-keeper .details-heading > div {
  padding: 20px 30px;
}
.contacts-section .details-keeper .details-heading > div img {
  max-width: 74px;
  max-height: 74px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: block;
  margin: 0 auto;
  padding: 0;
}
.contacts-section .details-keeper .details-heading > div > div {
  display: block;
  text-align: center;
  padding-top: 10px;
}
.contacts-section .details-keeper .details-heading > div > div > span {
  display: block;
  width: 100%;
  max-width: 100%;
  font-weight: 700;
}
.contacts-section
  .details-keeper
  .details-heading
  > div
  > div
  > span:first-child {
  font-weight: 300;
  font-size: 24px;
}
.contacts-section .details-keeper .details-heading > div:first-child {
  text-align: center;
  padding: 35px 0 15px;
}
.contacts-section .details-keeper .contacts-tabs {
  padding-top: 25px;
  padding-left: 15px;
  padding-right: 15px;
}
.contacts-section .details-keeper .contacts-tabs > .nav-pills {
  border-bottom: 1px solid #eee;
  margin-bottom: 25px;
}
.contacts-section .details-keeper .contacts-tabs > .nav-pills > li > a {
  padding: 5px 15px;
}
.contacts-section .details-keeper .contacts-tabs textarea {
  margin-top: 20px;
  white-space: pre;
  box-shadow: none;
}
.contacts-section .details-keeper .contacts-tabs h5 {
  font-weight: 600;
  margin: 0;
  margin-top: 20px;
}
.contacts-section .details-keeper div.initial-state {
  font-size: 300;
  line-height: 24px;
  font-size: 16px;
  border-bottom: 1px solid #eee !important;
  padding: 5px;
}
.contacts-section .details-keeper div.initial-state > div {
  display: inline-block;
  vertical-align: middle;
  color: inherit;
  padding-right: 15px;
  font-size: 14px;
}
.contacts-section .details-keeper div.initial-state > div a {
  color: inherit;
}
.contacts-section .details-keeper div.initial-state > div button {
  background: none;
  min-width: 100px;
  text-align: left;
}
.contacts-section .details-keeper div.initial-state div:first-child {
  width: 32px;
  height: 24px;
  text-align: center;
}
.contacts-section .details-keeper div.initial-state div:last-child {
  padding-right: 0;
  padding-top: 4px;
}
.contacts-section .details-keeper div.initial-social a {
  color: inherit;
  display: inline-block;
  vertical-align: middle;
  padding: 5px;
  font-size: 16px;
  color: #767676;
}
.contacts-section .details-keeper div.initial-social a:last-child {
  color: #3b5998;
  text-decoration: underline;
  padding-left: 15px;
}
.contacts-section .details-keeper div.initial-social .manage_social_button {
  display: none;
}
.contacts-section .details-keeper div.initial-button-state {
  border-top: 1px solid #eee;
  padding-top: 10px;
  margin-top: 20px;
}
.contacts-section .details-keeper div.initial-button-state > button {
  margin-left: 10px;
  width: 82px;
}
.contacts-section textarea.form-control {
  white-space: pre-line;
  color: #595959;
}
.contacts-sidebar hr {
  margin: 15px 0;
}
.contacts-sidebar > a {
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: right;
  color: #3e3e3e;
  font-size: 18px;
  line-height: 36px;
  position: absolute;
  top: 50px;
  right: 0;
  padding: 0 15px;
}
.contacts-sidebar p {
  color: #595959;
}
.contacts-sidebar h2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #3e3e3e;
}
.contacts-sidebar > div {
  padding: 5px 0;
  color: #3e3e3e;
}
.import_contacts .file_input {
  margin: 25px 0;
}
.import_contacts .file_input .file_name_container {
  position: relative;
  margin: 10px 0;
}
.import_contacts .file_input .file_name_container input[type="text"].active {
  background-color: #fff;
}
.import_contacts .file_input .file_name_container span {
  position: absolute;
  top: 9px;
  right: 9px;
  cursor: pointer;
}
.buttons-holder {
  margin-top: 15px;
}
.buttons-holder .dropdown-menu {
  padding: 0;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.176);
}
.buttons-holder .dropdown-menu li {
  clear: both;
  width: 188px;
  float: left;
  color: #3e3e3e;
  border: 1px solid transparent;
  height: 30px;
  line-height: 30px;
}
.buttons-holder .dropdown-menu li .nav1listing {
  width: auto;
  float: left;
  margin-left: 0;
  padding: 0 5px;
  border: none;
  border-radius: 0;
  height: 30px;
  line-height: 30px;
}
.buttons-holder .dropdown-menu li .nav1listing .fa-circle {
  display: block;
  float: left;
  font-size: 10px;
  margin-right: 5px;
  width: 10px;
  line-height: 30px;
}
.buttons-holder .dropdown-menu li .nav1listing:hover {
  color: #fff !important;
}
.buttons-holder .dropdown-menu li > span {
  padding: 0px 10px;
  float: left;
}
.buttons-holder .dropdown-menu li .checkbox-btn .checkbox-btn {
  float: right !important;
}
.buttons-holder .dropdown-menu > li:focus,
.buttons-holder .dropdown-menu > li:hover {
  color: #fff !important;
  background-color: #0e57ab;
  cursor: pointer;
  border: 1px solid #0e57ab;
}
.contacts-childrens li.active {
  background: #d9e1ea;
}
.contacts-childrens
  li.active
  > div.contacts-contact
  > div.contact-actions
  > div:first-child,
.contacts-childrens
  li.active
  div.contacts-contact-sidebar
  > div.contact-actions
  > div:first-child {
  display: block;
}
.contacts-childrens
  li.active
  > div.contacts-contact
  > .contact-short-data
  > span,
.contacts-childrens
  li.active
  div.contacts-contact-sidebar
  > .contact-short-data
  > span {
  color: #444;
}
.contacts-childrens
  li.active
  > div.contacts-contact
  > .contact-short-data
  > span:first-child,
.contacts-childrens
  li.active
  div.contacts-contact-sidebar
  > .contact-short-data
  > span:first-child {
  color: #000;
}
.contacts-subscribe h3 {
  color: #3e3e3e;
}
.contacts-subscribe .active {
  display: block;
}
.contacts-subscribe .hidden {
  display: none;
}
.contacts-subscribe #loading-subscribed-addressbooks {
  height: 350px;
  position: relative;
  margin-top: -120px;
}
.contacts-subscribe
  #loading-subscribed-addressbooks
  .loading-subscribed-addressbooks-span-container {
  vertical-align: bottom;
  position: absolute;
  width: 100%;
  margin: 0px;
  bottom: 0px;
}
.contacts-subscribe
  #loading-subscribed-addressbooks
  .loading-subscribed-addressbooks-span-container
  span {
  width: 100%;
  text-align: center;
  display: block;
  position: relative;
  margin: 0px;
}
.contacts-subscribe
  #loading-subscribed-addressbooks
  .loading-subscribed-addressbooks-span-container
  span.fa-cog {
  float: left;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 75px;
  position: initial;
}
.contacts-subscribe
  #loading-subscribed-addressbooks
  .loading-subscribed-addressbooks-span-container
  span.loading {
  font-size: 18px;
  padding-top: 90px;
  font-weight: 700;
  line-height: 18px;
}
.contacts-subscribe
  #loading-subscribed-addressbooks
  .loading-subscribed-addressbooks-span-container
  span.loading-description {
  font-size: 16px;
  margin-top: 10px;
  line-height: 16px;
}
.fa-empty {
  width: 14px;
}
.collaborators {
  position: relative;
}
.collaborators .collaborator-item {
  height: 60px;
  padding-top: 10px;
}
.collaborators .collaborator-item div .noimage {
  background-color: gray;
  width: 45px;
  height: 45px;
  border-radius: 25px;
  padding-top: 12px;
  padding-left: 12px;
  color: #fff;
}
.collaborators .collaborator-item div img {
  width: 45px;
  height: 45px;
  border-radius: 25px;
}
.collaborators .collaborator-item .image {
  width: 50px;
  height: 50px;
}
.collaborators .collaborator-item .image .noimage {
  background-color: gray;
  width: 45px;
  height: 45px;
  border-radius: 25px;
  padding-top: 12px;
  padding-left: 12px;
  color: #fff;
}
.collaborators .collaborator-item .image img {
  width: 45px;
  height: 45px;
  border-radius: 25px;
}
.collaborators .collaborator-item:hover .delete {
  opacity: 1;
  transition: opacity 0.4s ease-out;
  -moz-transition: opacity 0.4s ease-out;
  -webkit-transition: opacity 0.4s ease-out;
  -o-transition: opacity 0.4s ease-out;
}
.collaborators .collaborator-item .delete {
  width: 15px;
  height: 50px;
  padding-top: 12px;
  opacity: 0;
  cursor: pointer;
}
.collaborators .collaborator-item .nameemailcnt {
  min-width: 200px;
  overflow-x: hidden;
  height: 50px;
}
.collaborators .collaborator-item .nameemailcnt .name {
  color: #54acd2;
  font-size: 14px;
}
.collaborators .email-input-cnt.addbuttonactive {
  margin-right: 50px;
}
.collaborators .email-input-cnt .addbutton {
  position: absolute;
  top: 0px;
  right: 18px;
}
.collaborators .collaborator-suggestions {
  position: absolute;
  z-index: 2000;
  background-color: #fff;
}
.collaborators .collaborator-suggestions ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
.collaborators .collaborator-suggestions li {
  padding: 5px 15px;
  border-bottom: 1px solid #d5d5d5;
  min-width: 265px;
  max-width: 400px;
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.collaborators .collaborator-suggestions li.active {
  background: #0e57ab;
  color: #fff;
  cursor: pointer;
  border-bottom: 1px solid #0c4b93;
}
.collaborators input.form-control {
  font-size: 14px;
}
.collaborators input.form-control:focus {
  outline: 0;
  border: none;
}
.addressbooks-main > .contactsTopButtons,
.groups-main > .contactsTopButtons {
  width: 100%;
  max-width: 100%;
}
.addressbooks-main .avatar,
.groups-main .avatar {
  width: 64px;
  height: 64px;
  max-width: 64px;
  max-height: 64px;
  display: block;
}
.addressbooks-main .avatar > img,
.groups-main .avatar > img {
  width: 100%;
  height: 100%;
}
.addressBookSubscribe {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-y: auto;
}
.addressBookSubscribe .addressBookUserCell {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  max-width: 49%;
  padding: 10px 20px;
}
.addressBookSubscribe .addressBookUserCell > div {
  display: inline-block;
  vertical-align: top;
}
.addressBookSubscribe .addressBookUserCell > div > a {
  display: block;
  width: 54px;
  height: 54px;
}
.addressBookSubscribe .addressBookUserCell .addressBookOwnerDetails {
  max-width: 70%;
  width: 100%;
  padding-left: 5px;
}
.addressBookSubscribe
  .addressBookUserCell
  .addressBookOwnerDetails
  > .contactName {
  font-weight: 600;
  padding: 0 15px;
  color: #3e3e3e;
}
.addressBookSubscribe .addressBookUserCell .addressBookOwnerDetails ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.addressBookSubscribe .addressBookUserCell .addressBookOwnerDetails ul > li {
  border: 1px solid transparent;
  padding: 0 5px;
}
.addressBookSubscribe
  .addressBookUserCell
  .addressBookOwnerDetails
  ul
  > li
  > span {
  float: left;
  color: #3e3e3e;
}
.addressBookSubscribe
  .addressBookUserCell
  .addressBookOwnerDetails
  ul
  > li:hover {
  border: 1px solid #ccc;
}
#contactgroups > ul > li {
  border: 2px solid transparent;
}
#contactgroups > ul > li.hover {
  border: 2px dashed #767676;
}
.avatar,
.contact-avatar {
  max-width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto;
}
.avatar > img,
.contact-avatar > img {
  width: 48px;
  height: 48px;
}
.avatar > div,
.avatar > img,
.contact-avatar > div,
.contact-avatar > img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #767676;
}
.avatar > div,
.contact-avatar > div {
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  font-size: 36px;
  padding-top: 4px;
}
.contact-avatar {
  max-width: 64px;
  height: 64px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.contact-avatar:focus {
  text-decoration: none;
}
.contact-avatar > div {
  font-size: 48px;
}
.contact-avatar > img {
  width: 64px;
  height: 64px;
}
#virtualInput {
  position: absolute;
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}
.ul-inline-padding {
  padding: 12px 6px;
}
form#updateContact input.ng-invalid {
  border-color: #871500;
}
.letters-ribbon-w10 {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: 18px;
}
.letters-ribbon-w10.open > button,
.letters-ribbon-w10.open > button:focus,
.letters-ribbon-w10.open > button:hover {
  color: #3e3e3e;
}
.letters-ribbon-w10 > button {
  background: none;
  color: #0e57ab;
  text-decoration: none;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: 18px;
}
.letters-ribbon-w10 > button:focus,
.letters-ribbon-w10 > button:hover {
  text-decoration: none;
  color: #094992;
}
.letters-ribbon-w10 > ul.dropdown-menu {
  position: absolute;
  width: 288px;
  height: auto;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(50, 50, 50, 0.75);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  padding: 0px;
}
.letters-ribbon-w10 > ul.dropdown-menu > li {
  position: relative;
  z-index: 1000;
  float: left;
  display: inline-block;
  font-size: 18px;
  line-height: 32px;
  padding: 0px;
  color: #3e3e3e;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  border-right: 1px solid #dcdcdc;
  text-align: center;
  cursor: pointer;
  min-width: 0px;
  min-height: 0px;
}
.letters-ribbon-w10 > ul.dropdown-menu > li a {
  margin: 0px;
  height: 100%;
  width: 100%;
  line-height: 31px;
}
.letters-ribbon-w10 > ul.dropdown-menu > li a:focus {
  color: #fff;
  background: #0e57ab;
}
.letters-ribbon-w10 > ul.dropdown-menu > li:nth-child(9n) {
  border-right: 0;
}
.letters-ribbon-w10 > ul.dropdown-menu > li:nth-child(1n + 10) {
  border-top: 1px solid #dcdcdc;
}
#createEventError .modal-body {
  white-space: pre-line;
}
.addressbooks-pane {
  padding: 0 36px;
}
.addressbooks-pane h3 {
  border-bottom: 1px solid #eee;
  line-height: 38px;
  color: #3e3e3e;
}
.addressbooks-pane > div {
  padding-top: 25px;
}
.addressbooks-pane > div > form > div.form-group {
  margin: 0;
}
.addressbooks-pane > div > form > div.form-group label {
  font-weight: 700;
}
.addressbooks-pane > div > form > div.form-group.has-error:before {
  content: "!";
  color: #ad1b00;
  position: relative;
  right: 14px;
  top: 30px;
  float: right;
  font-size: 18px;
  font-weight: 700;
}
.addressbooks-pane > div > form > div.form-group.has-error .error-message {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  background-color: #fad5d2;
  padding: 6px 7px;
  position: absolute;
  top: 66px;
  width: calc(100% - 30px);
}
.addressbooks-pane
  > div
  > form
  > div.form-group.has-error
  .error-message:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fad5d2;
  top: -6px;
  right: 12px;
}
.addressbooks-pane > div > form > div > button {
  max-width: 100px;
  min-width: 85px;
  height: 34px;
  width: 100%;
}
.addressbooks-pane > div > form > div > label {
  display: block;
  color: #3e3e3e;
}
.addressbooks-pane > div > form > div > input,
.addressbooks-pane > div > form > div > select {
  max-width: 100%;
  width: 100%;
  padding: 4px 6px;
}
.addressbooks-pane > div.divider {
  border-top: 1px solid #eee;
}
.addressbooks-pane > div.divider > div {
  display: block;
  clear: both;
  width: 100%;
  max-width: 100%;
  padding-top: 20px;
}
.addressbooks-pane > div.divider > div > div {
  display: inline-block;
  vertical-align: middle;
}
.addressbooks-pane .addressbook-collaborator > div {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: calc(74%);
}
.addressbooks-pane .addressbook-collaborator > div img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  max-width: 48px;
  width: 48px;
  max-height: 48px;
  hegiht: 48px;
}
.addressbooks-pane .addressbook-collaborator > div div {
  text-overflow: ellipsis;
  max-width: 100%;
  overflow: hidden;
  color: #595959;
}
.addressbooks-pane .addressbook-collaborator > div div:first-child {
  font-weight: 700;
  color: #3e3e3e;
}
.addressbooks-pane .addressbook-collaborator > div:first-child {
  max-width: 72px;
  text-align: center;
}
.addressbooks-pane .suggestions-list {
  position: relative;
  max-width: 92%;
}
.addressbooks-pane .suggestions-list ul {
  position: absolute;
  z-index: 1;
  width: 100%;
  max-width: 100%;
}
.addressbooks-pane ul.list-group > li.list-group-item {
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
}
.addressbooks-pane ul.list-group > li.list-group-item.highlighted {
  background-color: #0e57ab;
  color: #fff;
}
.addressbooks-pane ul.list-group > li.list-group-item.highlighted i {
  color: #fff;
}
.dropdownContainer .dropdown-toggle span.fa {
  font-size: 20px;
  position: absolute;
  right: 10px;
  top: 5px;
  pointer-events: none;
}
.create-new-group {
  padding: 0 36px;
}
.create-new-group label {
  color: #3e3e3e;
}
.create-new-group label.font-lighter {
  color: gray;
  font-weight: 100;
}
.create-new-group > div h3 {
  padding: 20px 0 10px 15px;
  margin: 0;
  border-bottom: 1px solid #ececec;
  font-size: 24px;
  line-height: 30px;
  color: #3e3e3e;
}
.create-new-group > div div.row {
  margin: 0;
}
.create-new-group > div div.row > div button {
  display: block;
  padding: 6px 50px;
}
.create-new-group > div div.row .options {
  vertical-align: middle;
}
.create-new-group > div div.row .options > * {
  margin-right: 5px;
}
.create-new-group > div div.row .options > * > i {
  margin-left: 5px;
}
.create-new-group > div hr {
  margin: 10px 0;
}
.create-new-group > div .row {
  padding-bottom: 10px;
}
.create-new-lists .default-check {
  line-height: 35px;
}
.create-new-lists .inner-text {
  color: #d5d5d5;
}
.action-block {
  padding: 10px 20px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}
.action-block button {
  margin-left: 10px;
  min-width: 80px;
  text-align: center;
  font-size: 14px !important;
}
.action-block .btn-primary {
  color: #fff;
}
.action-block .btn-default {
  color: #3e3e3e;
}
.action-block button:first-child {
  margin-left: 0;
}
.autofill-suggestion-contacts {
  position: relative;
  left: 0;
  padding: 0;
}
.nav-buttons {
  float: right;
}
.nav-buttons button {
  color: #868686;
  font-size: 16px;
  margin-left: 10px;
  padding: 4px 8px;
}
.img-hold > div {
  float: left;
}
.edit-group-con .found-suggestions {
  max-width: 100%;
}
.edit-group-con .found-suggestions ul .img-hold {
  padding-top: 15px;
}
.edit-group-con .found-suggestions ul .img-hold .col-xs-8 {
  margin-right: 10px;
  padding: 0;
  max-width: 60%;
}
.edit-group-con .found-suggestions ul .img-hold .col-xs-8 .ng-binding {
  display: none;
  margin-left: 5px;
  float: left;
}
.addressbook-contacts .selected-contact {
  min-width: 226px;
}
.addressbook-contacts .fields-container {
  overflow-y: auto;
  overflow-x: hidden;
}
.contact-listing-item {
  overflow: hidden;
  color: #595959;
}
.contact-listing-item b {
  white-space: nowrap;
  color: #3e3e3e;
}
.contact-listing-item a {
  cursor: pointer;
  color: #0e57ab;
}
.noimage {
  border-radius: 35px;
}
.add-collaborator-button {
  margin-top: 25px;
  margin-left: -20px;
  height: 33px;
  padding-top: 7px;
}
.create-new-contact-modal-in-groups .dropdownValue.newEventDropdownPick {
  display: inline-block;
}
.create-new-contact-modal-in-groups .modal-header button.close {
  padding: 5px;
}
.create-new-contact-modal-in-groups .modal-body .row .col-xs-12 {
  padding-left: 0px;
  padding-right: 0px;
}
.create-new-contact-modal-in-groups
  .modal-body
  .row
  .col-xs-12
  span.asterisk-before {
  color: #595959;
}
.create-new-contact-modal-in-groups .modal-footer button.btn {
  display: inline-block;
  padding: 5px 10px;
}
.contacts-single-contact {
  display: block;
  max-width: 100%;
}
.contacts-single-contact .contacts-single-container {
  max-width: 100%;
}
.contacts-single-contact
  .contacts-single-container
  .details-navigation
  .btn-primary {
  color: #fff;
}
.contacts-single-contact .contacts-single-container .contact-read-only {
  display: block;
  margin-top: -3px;
  margin-bottom: 10px;
}
.contacts-single-contact .darkertext {
  color: #3e3e3e;
}
.contacts-single-contact input,
.contacts-single-contact input.long-field,
.contacts-single-contact select,
.contacts-single-contact select.long-field {
  padding-left: 15px;
}
.contacts-single-contact .dropdown-container,
.contacts-single-contact input,
.contacts-single-contact input.long-field,
.contacts-single-contact select,
.contacts-single-contact select.long-field {
  width: calc(100% - 20px);
}
.contacts-single-contact .input-field input {
  display: inline;
}
.contacts-single-contact .input-field .remove-field {
  cursor: pointer;
}
.contacts-single-contact .input-field .remove-field.fa-stack {
  position: absolute;
  right: -5px;
  color: #0e57ab;
  padding: 0px;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
  font-size: 1.33333333em;
}
.contacts-single-contact .input-field .remove-field.fa-stack .fa-square {
  font-size: 1.1em;
}
.contacts-single-contact .input-field .remove-field.fa-stack .fa-close {
  color: #fff;
  position: relative;
  top: -2px;
  font-size: 0.75em;
}
.contacts-single-contact .buttons-holder {
  margin: 0;
}
.contacts-single-contact button {
  font-size: 14px;
  color: #868686;
  padding: 6px 12px;
  margin-left: 10px;
}
.contacts-single-contact label {
  color: #3e3e3e;
}
.contacts-single-contact .dropdown {
  display: inline-block;
  width: auto;
  max-width: auto;
}
.contacts-single-contact h3 {
  margin: 0;
  padding: 15px 0 14px 10px;
  color: #3e3e3e;
  border-bottom: 1px solid #ededed;
}
.contacts-single-contact a:hover {
  color: inherit;
  text-decoration: none;
}
.contacts-single-contact .mini-social-part ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contacts-single-contact .mini-social-part ul li {
  display: inline-block;
}
.contacts-single-contact .mini-social-part ul li span.fa {
  max-height: 22px;
  font-size: 18px !important;
  line-height: 22px !important;
  background: none !important;
  color: #595959;
}
.contacts-single-contact .mini-social-part ul li span.read-only {
  padding: 0 5px !important;
}
.contacts-single-contact .mini-social-part ul li > a {
  display: inline-block !important;
  width: auto;
  padding: 0 5px !important;
  outline: 0;
}
.contacts-single-contact .mini-social-part ul li > a.active > span.fa {
  color: #0e57ab;
}
.contacts-single-contact .mini-social-part ul li > a:focus {
  outline: 2px solid #4087c9;
  -moz-outline-radius: 3px;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.contacts-single-contact .mini-social-part > a:last-child {
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: center;
  color: #0e57ab;
}
.contacts-single-contact .mini-social-part a.active > i.fa-twitter {
  color: #00aced;
}
.contacts-single-contact .mini-social-part a.active > i.fa-facebook {
  color: #3b5998;
}
.contacts-single-contact .mini-social-part a.active > i.fa-linkedin {
  color: #007bb5;
}
.contacts-single-contact .contact-personal {
  margin-top: 10px;
}
.contacts-single-contact .long-div,
.contacts-single-contact .long-field {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 3px;
  margin: 0;
  margin-bottom: 14px;
  font-size: 16px;
  background: #fff;
  text-align: left;
}
.contacts-single-contact .long-div button.form-panel,
.contacts-single-contact .long-field button.form-panel {
  font-size: 14px;
  line-height: 22px;
  height: 22px;
  vertical-align: initial;
  color: #3e3e3e;
  border: 0;
  padding: 0;
  padding-right: 5px;
  padding-left: 5px;
  margin: 0;
  margin-left: -5px;
}
.contacts-single-contact .long-div button.form-panel:active,
.contacts-single-contact .long-div button.form-panel:focus,
.contacts-single-contact .long-div button.form-panel:hover,
.contacts-single-contact .long-field button.form-panel:active,
.contacts-single-contact .long-field button.form-panel:focus,
.contacts-single-contact .long-field button.form-panel:hover {
  text-decoration: none;
  color: #3e3e3e;
}
.contacts-single-contact .long-div button.form-panel .carot-label,
.contacts-single-contact .long-field button.form-panel .carot-label {
  font-size: 16px;
  margin-left: 1px;
  line-height: 22px;
  font-weight: 700;
}
.contacts-single-contact .long-div.birthday,
.contacts-single-contact .long-field.birthday {
  background: url(../images/icon_calendar.png) 100% 0 no-repeat;
}
.contacts-single-contact .long-div {
  font-weight: 700;
  margin-bottom: 8px !important;
}
.contacts-single-contact hr {
  margin: 0;
}
.contacts-single-contact textarea {
  white-space: normal;
  margin: 4px 0 12px;
  resize: vertical;
}
.contacts-single-contact .long-field + ul {
  margin: 0 10px;
  padding: 5px;
  width: 100%;
  max-width: 90%;
}
.contacts-single-contact .long-field + ul > li {
  width: 100%;
  max-width: 100%;
}
.contacts-single-contact .long-div.combined span {
  font-size: 14px;
  line-height: 18px;
  width: 120px;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
}
.contacts-single-contact .long-div.combined input {
  width: 100%;
  max-width: 75%;
  display: inline-block;
  vertical-align: middle;
  border: 0;
  font-weight: 400;
}
.contacts-single-contact a.maplink {
  float: right;
  color: #0e57ab;
}
.contacts-single-contact a.maplink:hover {
  text-decoration: underline;
}
.contacts-single-contact .addresses .bolded {
  font-size: 16px;
  padding: 10px 0;
}
.contacts-single-contact .addresses .bolded i {
  cursor: pointer;
}
.contacts-single-contact .addresses .col-xs-6:first-child {
  padding-left: 0;
}
.contacts-single-contact .addresses .col-xs-6:last-child {
  padding-right: 0;
}
.contacts-single-contact .plus-button {
  float: right;
  position: absolute;
  top: -2px;
  right: 17px;
}
.contacts-single-contact .plus-button span {
  font-size: 1.25em;
  color: #0e57ab;
}
.contacts-single-contact .plus-button button {
  font-size: 1.25em;
  color: #0e57ab;
  padding: 0px;
  margin: 0px;
  line-height: unset;
}
.contacts-single-contact .plus-button span.fa {
  font-size: inherit;
}
.contacts-single-contact .tags-fields.sections-mail-compose {
  border: none;
  margin-top: 0;
  padding-bottom: 9px;
  padding-top: 5px;
}
.contacts-single-contact .tags-fields.sections-mail-compose .col-xs-12 {
  position: initial;
}
.contacts-single-contact
  .tags-fields.sections-mail-compose
  .col-xs-12
  .addgroup {
  border: 2px dashed #0e57ab;
  color: #0e57ab;
  border-radius: 3px;
  padding: 1px 10px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 5px;
  background-color: inherit;
}
.contacts-single-contact
  .tags-fields.sections-mail-compose
  .col-xs-12
  .addgroup
  .fa {
  padding-right: 10px;
}
.contacts-single-contact .tags-fields.sections-mail-compose .col-xs-12 .tags {
  display: inline;
}
.contacts-single-contact
  .tags-fields.sections-mail-compose
  .col-xs-12
  .tags
  .selected-tags {
  cursor: default;
  margin-bottom: 5px;
  color: #000;
  background: none;
  padding: 0;
  border: 0;
}
.contacts-single-contact
  .tags-fields.sections-mail-compose
  .col-xs-12
  .tags
  .selected-tags
  .vertical-tick {
  width: 5px;
  margin-right: 8px;
  display: inline-block;
  padding: 3px 0;
}
.contacts-single-contact
  .tags-fields.sections-mail-compose
  .col-xs-12
  .tags
  .selected-tags
  > a,
.contacts-single-contact
  .tags-fields.sections-mail-compose
  .col-xs-12
  .tags
  .selected-tags
  > span {
  padding: 0 5px;
}
.contacts-single-contact
  .tags-fields.sections-mail-compose
  .col-xs-12
  .tags
  .selected-tags
  > a {
  color: #3e3e3e;
  padding: 0 5px;
}
.contacts-single-contact #noGroupsCreated .modal-header button.close {
  padding: 0;
  font-size: 21px;
  margin-left: 0;
}
.contacts-single-contact .editDatePicker {
  position: relative;
  padding: 5px 0 0;
  margin-top: 10px;
}
.contacts-single-contact .editDatePicker input[type="date"],
.contacts-single-contact .editDatePicker input[type="text"] {
  width: auto;
}
.contacts-single-contact .editDatePicker a {
  text-decoration: none;
}
.contacts-single-contact .editDatePicker .fa {
  color: #0e57ab;
  position: absolute;
  left: 142px;
  bottom: 0;
  padding: 8px;
  font-size: 18px;
}
.duplicates-container {
  padding: 10px 0 0 20px;
  position: relative;
  width: 100%;
  max-width: 100%;
}
.duplicates-container h3 {
  color: #3e3e3e;
}
.duplicates-container pagination-directive {
  bottom: 0;
  background: #fcfcfc;
  top: inherit;
  margin-left: -20px;
  box-shadow: -2px 0 2px #e6e6e6;
}
.duplicates-container pagination-directive .pagination {
  padding-right: 20px;
}
.duplicates-container .duplicate-container {
  padding-right: 20px;
  margin-right: 15px;
  border-top: 1px solid #ccc;
}
.duplicates-container .duplicate-container:first-child {
  border: none;
}
.duplicate-avatar {
  max-width: 48px;
  height: 48px;
}
.duplicate-avatar > img {
  max-width: 100%;
  max-height: 100%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #767676;
}
.duplicate-title {
  margin-left: 15px;
  font-weight: 700;
  color: #3e3e3e;
}
.duplicates-count {
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  margin-right: 15px;
  color: #595959;
}
.duplicate-data {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 20px 0;
}
.duplicate-data .duplicate-contact {
  width: 33%;
  max-width: 49%;
  padding: 10px 20px;
}
.duplicate-data .duplicate-contact,
.duplicate-data .duplicate-contact > div {
  display: inline-block;
  vertical-align: middle;
}
.duplicate-data .duplicate-contact > div > a {
  display: block;
  width: 54px;
  height: 54px;
}
.duplicate-data .duplicate-contact .duplicate-contact-details {
  max-width: 70%;
  width: 100%;
  padding-left: 5px;
  color: #595959;
}
.duplicate-data .duplicate-contact .duplicate-contact-details > .contactName {
  font-weight: 600;
  color: #3e3e3e;
}
.duplicate-data input {
  width: 16px;
  padding: 0;
  margin: 0;
}
.duplicate-data span {
  color: #595959;
}
.duplicate-data a,
.duplicate-data a > span {
  color: #0e57ab;
}
.duplicate-sidebar .limit,
.duplicate-sidebar .text {
  color: #595959;
}
.duplicate-sidebar .contactMergeSection {
  padding-top: 8px;
}
.duplicate-sidebar li {
  list-style-type: none;
}
.duplicate-sidebar .fa.fa-circle {
  color: #fff;
  padding: 8px 3px;
}
.duplicate-sidebar input + span {
  color: #595959;
}
.import-contacts-container h3,
.import-contacts-container label {
  color: #3e3e3e;
}
.import-contacts-container .topButtons .pull-right > button {
  margin-right: 10px;
}
.import-contacts-container .horizontalrule-line {
  padding: 10px 0 10px 20px;
}
.import-contacts-container .duplicates-count {
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  margin-right: 15px;
  color: #595959;
}
.import-contacts-container .import-contacts-init {
  padding-left: 20px;
}
.import-contacts-container .import-contacts-init .col-xs-4 {
  margin: 10px 0;
}
.import-contacts-container .import-contacts-init .hiddenelement {
  display: none;
}
.import-contacts-container .import-contacts-init .attachFilestyle .fa {
  position: absolute;
  top: 0;
  right: 10px;
  width: 34px;
  height: 34px;
  border: none;
  padding: 8px;
  font-size: 18px;
  cursor: pointer;
  color: #595959;
}
.import-contacts-container .import-contacts-init .btnholder {
  margin: 10px 0 0;
  padding-left: 15px;
}
.import-contacts-container .import-contacts-init .btnholder .btn {
  font-size: 14px;
}
.import-contacts-preview {
  padding-left: 20px;
}
.import-contacts-preview .col-xs-4 {
  margin: 10px 0;
}
.import-contacts-preview textarea {
  width: 100%;
  height: 200px;
  white-space: pre-wrap;
}
.import-contacts-preview div[translate="LANG_CON_IMPORT_PARAMS_TAB_DELIMITER"] {
  color: #595959;
}
.import-contacts-matching {
  padding: 0 20px;
}
.import-contacts-matching > label {
  font-weight: 400;
  color: #595959;
}
.import-contacts-matching > input {
  margin: 0 10px 25px 20px;
}
.import-contacts-matching .fields-container {
  overflow-y: auto;
  overflow-x: hidden;
  border-color: #eee;
  border-style: solid;
  border-width: 0 1px 1px;
}
.import-contacts-matching .fields-container-top {
  background: #eee;
  padding: 10px 5px;
  font-weight: 700;
  margin: 0;
  color: #3e3e3e;
}
.import-contacts-matching .fields-container-row-info {
  border-color: #eee;
  border-style: solid;
  border-width: 0 0 1px;
  padding: 10px;
}
.import-contacts-matching .fields-container-row-info input {
  margin-left: 20px;
  margin-top: 12px;
}
.import-contacts-matching .fields-container-row-info .row-title-info {
  margin-top: 6px;
  color: #3e3e3e;
}
.import-contacts-matching .fields-container-row-info:last-child {
  border-style: none;
}
.cloud-container #workspace2,
.cloud-container #workspace2 > div {
  width: inherit;
}
.cloud-container .helpdiv {
  text-align: right;
  font-size: 1.5em;
  padding-top: 10px;
  padding-right: 40px;
}
.cloud-container .disabled {
  z-index: 1000;
  opacity: 0.6;
  pointer-events: none;
}
.cloud-container .row {
  margin-right: 0px;
  margin-left: 0px;
}
.cloud-container .row.nomsg {
  margin-left: auto;
  margin-right: auto;
}
.cloud-container .nofile-title {
  font-size: 1.6em;
  text-align: center;
  padding: 18px;
}
.cloud-container .nofile-title i {
  font-size: 3em;
  padding-top: 80px;
  padding: 20px;
}
.cloud-container .nofile-title a {
  font-size: 14px;
}
.cloud-container .breadcrumb {
  padding-top: 15px;
  margin-bottom: 0px;
  list-style: none;
  background-color: transparent;
  border-radius: 0px;
  font-size: 1.8em;
  color: #767676;
  padding-bottom: 0px;
}
.cloud-container .breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cloud-container .breadcrumb li {
  display: inline;
  padding: 0;
  margin: 0;
}
.cloud-container .breadcrumb li:hover {
  color: #3e3e3e;
}
.cloud-container .breadcrumb li:before {
  content: " > ";
}
.cloud-container .breadcrumb li:first-child:before {
  content: "";
}
.cloud-container .breadcrumb li:last-child {
  color: #3e3e3e;
}
.cloud-container .cursor-pointer {
  cursor: pointer;
}
.cloud-container .paddingl16 {
  padding-left: 16px;
}
.cloud-container .paddingl18 {
  padding-left: 18px;
}
.cloud-container .paddingl20 {
  padding-left: 20px;
}
.cloud-container .hideit {
  visibility: hidden;
}
.cloud-container .showit {
  visibility: visible;
}
.cloud-container .greyish {
  color: #767676;
}
.cloud-container .floatright {
  float: right;
}
.cloud-container .floatleft {
  float: left;
}
.cloud-container .cloud-command-pane .spacer-title {
  margin-left: 30px;
}
.cloud-container .cloud-command-pane .spacer-iconbar {
  margin-top: 12px;
  margin-bottom: 11px;
  margin-right: 20px;
}
.cloud-container .cloud-datagrid-pane .divhead {
  color: #595959;
  background: #283a50;
}
.cloud-container .cloud-datagrid-pane .list-view {
  width: inherit;
}
.cloud-container .cloud-datagrid-pane .list-view.disabled {
  opacity: 1;
}
.cloud-container .cloud-datagrid-pane .list-view .divth {
  color: #fff;
  font-size: 0.9em;
  padding: 6px;
  padding-left: 0px;
  text-align: left;
}
.cloud-container .cloud-datagrid-pane .list-view .divtd {
  text-align: left;
  padding-left: 0px;
}
.cloud-container .cloud-datagrid-pane .list-view div.divtr {
  padding-top: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid #767676;
}
.cloud-container .cloud-datagrid-pane .list-view div.divtr:hover {
  padding-top: 4px;
  padding-bottom: 5px;
  border-top: 2px solid #767676;
  border-bottom: 2px solid #767676;
}
.cloud-container .cloud-datagrid-pane .list-view .fcol-spacer {
  padding-left: 24px;
}
.cloud-container .cloud-datagrid-pane .list-view .action-icons {
  float: right;
}
.cloud-container .cloud-datagrid-pane .list-view .action-icons span {
  position: relative;
  opacity: 1;
  padding-right: 10px;
  vertical-align: middle;
}
.cloud-container .cloud-datagrid-pane .list-view .bgricon {
  font-size: 1.2em;
}
.cloud-container .cloud-datagrid-pane .grid-view .topbar-grid {
  color: #595959;
  background: #283a50;
  font-size: 0.9em;
  padding: 6px;
}
.cloud-container .cloud-datagrid-pane .grid-view .thumbscntr {
  padding: 20px;
}
.cloud-container .cloud-datagrid-pane .grid-view .thumbbox {
  position: relative;
}
.cloud-container .cloud-datagrid-pane .grid-view .thumbbox .thumbnail {
  padding: 0px;
  border-radius: 2px;
  box-shadow: -1px 0px 5px #acacac;
}
.cloud-container
  .cloud-datagrid-pane
  .grid-view
  .thumbbox
  .thumbnail
  .thumbimg {
  min-height: 130px;
  text-align: center;
  color: #ccc;
  background-size: cover;
  background-position-x: center;
  background-repeat: no-repeat;
}
.cloud-container .cloud-datagrid-pane .grid-view .thumbbox .thumbnail .bigthu {
  margin-top: 35px;
  position: absolute;
  font-size: 5em;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  color: #767676;
}
.cloud-container
  .cloud-datagrid-pane
  .grid-view
  .thumbbox
  .thumbnail
  .action-icons {
  min-height: 130px;
  text-align: right;
  padding: 15px;
}
.cloud-container
  .cloud-datagrid-pane
  .grid-view
  .thumbbox
  .thumbnail
  .action-icons
  i {
  color: #3e3e3e;
  font-size: 1.1em;
  padding: 3px;
  color: #fff;
  font-weight: 400;
  z-index: 5;
}
.cloud-container
  .cloud-datagrid-pane
  .grid-view
  .thumbbox
  .thumbnail
  .action-icons
  .downloadicondiv {
  padding-top: 15px;
  text-align: center;
}
.cloud-container
  .cloud-datagrid-pane
  .grid-view
  .thumbbox
  .thumbnail
  .action-icons
  .downloadicondiv
  span.fa {
  font-size: 3em;
  color: #fff;
  z-index: 10;
}
.cloud-container
  .cloud-datagrid-pane
  .grid-view
  .thumbbox
  .thumbnail
  .thumb-overlay
  .action-icons {
  display: none;
}
.cloud-container .cloud-datagrid-pane .grid-view .thumbbox .active {
  background-color: #3e3e3e;
  color: #fff;
}
.cloud-container .cloud-datagrid-pane .grid-view .thumbbox .caption {
  background-color: #767676;
  color: #fff;
  font-size: 0.9em;
  text-align: center;
}
.cloud-container
  .cloud-datagrid-pane
  .grid-view
  .thumbbox.keynavActive
  .thumb-overlay,
.cloud-container
  .cloud-datagrid-pane
  .grid-view
  .thumbbox.thumb-overlay-selected
  .thumb-overlay,
.cloud-container .cloud-datagrid-pane .grid-view .thumbbox:focus .thumb-overlay,
.cloud-container
  .cloud-datagrid-pane
  .grid-view
  .thumbbox:hover
  .thumb-overlay {
  opacity: 0.6;
  background-color: #3e3e3e;
}
.cloud-container
  .cloud-datagrid-pane
  .grid-view
  .thumbbox.keynavActive
  .thumb-overlay
  .action-icons,
.cloud-container
  .cloud-datagrid-pane
  .grid-view
  .thumbbox.thumb-overlay-selected
  .thumb-overlay
  .action-icons,
.cloud-container
  .cloud-datagrid-pane
  .grid-view
  .thumbbox:focus
  .thumb-overlay
  .action-icons,
.cloud-container
  .cloud-datagrid-pane
  .grid-view
  .thumbbox:hover
  .thumb-overlay
  .action-icons {
  display: block;
}
.cloud-container .cloud-datagrid-pane .paginationHoriz {
  padding: 10px;
  width: 330px;
}
.cloud-container .cloud-side-bar {
  width: 30%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  right: 0;
  z-index: 10;
  padding: 20px;
  overflow: auto;
  box-shadow: -1px 0px 5px #acacac;
}
.cloud-container .cloud-side-bar .file-detail-pane .filename {
  text-align: center;
  padding-bottom: 7px;
  color: #595959;
  font-weight: 700;
}
.cloud-container .cloud-side-bar .detailicons {
  text-align: center;
  padding-top: 8px;
}
.cloud-container .cloud-side-bar .detailicons i {
  font-size: 1.1em;
  padding: 5px;
  color: #595959;
}
.cloud-container .cloud-side-bar .close-button {
  font-size: 15px;
  float: right;
  padding-top: 0px;
}
.cloud-container .cloud-side-bar .thumbimg {
  padding: 4px;
  text-align: center;
  font-size: 13em;
  color: #ccc;
  height: 33%;
  background-size: contain;
  background-position-x: center;
  background-repeat: no-repeat;
}
.cloud-container .cloud-side-bar h4 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.cloud-container .cloud-side-bar .noborder td,
.cloud-container .cloud-side-bar .noborder th,
.cloud-container .cloud-side-bar .noborder tr {
  border: none;
  padding: 4px;
}
.cloud-container .cloud-side-bar .file-share-pane input,
.cloud-container .cloud-side-bar .file-share-pane textarea {
  margin-bottom: 15px;
}
.cloud-container .cloud-side-bar .file-share-pane .email-input {
  border: none;
  background: none;
  margin-bottom: 0px;
}
.cloud-container .cloud-side-bar .file-share-pane .dummy {
  display: none;
}
.cloud-container .cloud-side-bar .file-share-pane ul {
  color: gray;
}
.cloud-container .cloud-side-bar .file-share-pane textarea {
  height: 250px;
}
.cloud-container .bluebackground {
  color: #fff;
  background-color: #0e57ab;
}
.cloud-container .helpcontent {
  padding-left: 50px;
  padding-right: 50px;
}
.cloud-container .helpcontent .title {
  font-size: 2em;
  font-weight: 700;
}
.cloud-container .helpcontent .intro {
  font-size: 1.3em;
  color: #87d9ff;
  padding-top: 5px;
  padding-bottom: 10px;
}
.cloud-container .helpcontent .buttoncontainer {
  padding-top: 20px;
  padding-bottom: 30px;
}
.cloud-container .helpcontent .buttoncloud {
  background-color: #87d9ff;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  color: #fff;
  border-radius: 20px;
}
.cloud-container .helpcontent .title2 {
  padding-top: 20px;
  padding-bottom: 20px;
  color: #767676;
  font-size: 1.5em;
}
.cloud-container .helpcontent .csteps {
  text-align: center;
  padding-top: 20px;
  color: #0e57ab;
  font-size: 1.3em;
}
.cloud-container .helpcontent .csteps .bigpicto {
  text-align: center;
}
.cloud-container .helpcontent .csteps i {
  font-size: 6em;
  padding-bottom: 25px;
}
.cloud-container .helpcontent .rightsepline {
  border-right: 1px solid #c4c4c4;
}
.cloud-container .helpcontent .maincontent {
  padding-top: 25px;
  color: #767676;
  text-align: justify;
  line-height: 150%;
}
.cloud-container .showbar {
  visibility: visible;
}
.cloud-container .hidebar {
  visibility: hidden;
  display: none;
}
.cloud-container .dragdrop_overlay {
  position: fixed;
  height: 100%;
  width: inherit;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.5);
  top: 50px;
  right: 0;
  color: #fff;
  text-align: center;
  font-size: 25px;
  padding-top: 150px;
}
.cloud-container .dragdrop_overlay .moreInfo {
  font-size: 15px;
  display: block;
  max-width: 400px;
  margin: 0 auto;
}
.cloud-container .dragdrop_overlay .moreInfo.fileTooBig {
  max-width: 320px;
}
@media (max-width: 768px) {
  .cloud-container .dragdrop_overlay {
    left: 0;
    width: 100%;
  }
}
.cloud-container .treeview {
  margin: 0;
  padding: 0;
  border: 0;
}
.cloud-container .treeview .inputfield {
  border: none;
  padding-right: 17px;
  float: left;
  width: 100%;
  margin-bottom: 0;
  height: 34px;
}
.cloud-container .treeview .txtlimiter {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cloud-container .treeview .nopleft {
  padding-left: 0px;
}
.cloud-container .treeview .leftspacer-0 {
  padding-left: 5px;
}
.cloud-container .treeview .leftspacer-1 {
  padding-left: 15px;
}
.cloud-container .treeview .leftspacer-2 {
  padding-left: 30px;
}
.cloud-container .treeview .leftspacer-3 {
  padding-left: 45px;
}
.cloud-container .treeview .leftspacer-4 {
  padding-left: 60px;
}
.cloud-container .treeview .leftspacer-5 {
  padding-left: 75px;
}
.cloud-container .treeview .leftspacer-6 {
  padding-left: 90px;
}
.cloud-container .treeview ul {
  width: auto;
  border: none;
  border-radius: 0;
  float: none;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0;
}
.cloud-container .treeview li {
  width: 100%;
  float: left;
  outline: none;
  cursor: pointer;
  position: relative;
  display: block;
}
.cloud-container .treeview li .active {
  color: #fff !important;
  background-color: #595959 !important;
}
.cloud-container .treeview li div.row.hov {
  height: 29px;
  line-height: normal;
  margin-left: 14px;
  margin-right: 14px;
  margin-bottom: 3px;
  border: 3px solid transparent;
  padding: 3px 15px;
  border-radius: 2px;
}
.cloud-container .treeview li div.row.hov i {
  float: right;
  margin-top: 2px;
  margin-right: -20px;
  color: #767676;
}
.cloud-container .treeview li div.row.hov i.leftalign {
  float: left;
  color: #000;
  margin-left: -15px;
}
.cloud-container .treeview li div.row.hov i.fa-plus-square {
  color: #000;
}
.cloud-container .treeview li div.row.hov i.fa-plus-square.active {
  color: #fff;
}
.cloud-container .treeview li div.row.hov:hover {
  border: 3px solid #767676;
}
.cloud-container .treeview li .context-menu {
  top: 24px;
  left: -145px;
  width: 187px;
}
.cloud-container .treeview li .context-menu div.context-menu-item {
  padding: 3px 10px 3px 14px;
  line-height: 20px;
}
.cloud-container .treeview li .context-menu div.context-menu-item:hover {
  background-color: #0e57ab;
}
.pgpPreferences {
  padding-left: 10px;
}
.pgpPreferences p {
  color: gray;
}
.pgpPreferences h5 {
  font-weight: 700;
}
.pgpPreferences .tableTitle {
  height: 30px;
  line-height: 30px;
}
.pgpPreferences .tableTitle button {
  margin-left: 5px;
}
.pgpPreferences table {
  width: 100%;
  margin-bottom: 20px;
}
.pgpPreferences table tbody tr,
.pgpPreferences table thead tr {
  height: 40px;
  line-height: 40px;
  border: 1px solid #dcdcdc;
}
.pgpPreferences table tbody tr td,
.pgpPreferences table tbody tr th,
.pgpPreferences table thead tr td,
.pgpPreferences table thead tr th {
  padding-left: 15px;
  padding-right: 15px;
}
.pgpPreferences table tbody tr .col2,
.pgpPreferences table thead tr .col2 {
  text-align: center;
  width: 180px;
}
.pgpPreferences table tbody tr .col2 .fa,
.pgpPreferences table thead tr .col2 .fa {
  color: #767676;
  margin-left: 5px;
}
.pgpPreferences table tbody tr .col2 .fa.fa-lock,
.pgpPreferences table thead tr .col2 .fa.fa-lock {
  color: #3e3e3e;
}
.pgpPreferences table tbody tr .col3,
.pgpPreferences table thead tr .col3 {
  text-align: center;
  width: 160px;
}
.pgpPreferences table tbody tr .col3 a .fa,
.pgpPreferences table thead tr .col3 a .fa {
  color: #0e57ab;
}
.pgpPreferences table tbody tr .col3 a:hover .fa,
.pgpPreferences table thead tr .col3 a:hover .fa {
  color: #0d4f9c;
}
.pgpPreferences table thead tr {
  background-color: #eee;
}
.pgpPreferences table tbody tr:hover {
  background-color: #e8f2fc;
}
.pgpPreferences .switchbutton {
  width: 58px;
  border: 2px solid #3c8ce3;
  height: 24px;
  border-radius: 12px;
}
.pgpPreferences .switchbutton .switchbutton-handle,
.pgpPreferences .switchbutton .switchbutton-handleoff,
.pgpPreferences .switchbutton .switchbutton-handleon {
  width: 16px;
  height: 16px;
  line-height: 12px;
}
.pgpPreferences .switchbutton.switchbutton-off {
  background-color: #fff;
  border-color: #b4b4b4;
}
.pgpPreferences .switchbutton.switchbutton-off .switchbutton-container {
  margin-left: -30px;
}
.pgpPreferences .switchbutton.switchbutton-off .switchbutton-handle {
  background-color: #b4b4b4;
}
.pgpPreferences .switchbutton .switchbutton-handleon {
  width: 30px;
}
.pgpPreferences .switchbutton .switchbutton-handleoff {
  width: 30px;
  color: #b4b4b4;
  font-weight: 700;
}
.pgpPreferences .shareURL {
  color: #0e57ab;
}
#addAccounts textarea {
  white-space: pre-wrap;
}
#onlinestorage .level1 .folder-tree button:not(.btn),
#onlinestorage .main .folders button,
#onlinestorage .main .list-view button,
#onlinestorage .main .path button,
#onlinestorage .main .thumbnail-view button {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: none;
  border: 0;
}
#onlinestorage .tooltip-inner {
  word-break: break-all;
}
#onlinestorage .level1 .usage {
  margin: 0 15px;
  font-size: 12px;
}
#onlinestorage .level1 .usage > div {
  position: relative;
  margin-top: 2px;
  height: 2px;
  background: #767676;
}
#onlinestorage .level1 .usage > div > div {
  position: absolute;
  height: 2px;
  background-color: #1ed200;
}
#onlinestorage .level1 .usage > div > div.warning {
  background-color: #e3b600;
}
#onlinestorage .level1 .usage > div > div.danger {
  background-color: #d20000;
}
#onlinestorage .level1 .folder-tree {
  margin: 3px 16px;
}
#onlinestorage .level1 .folder-tree .folder {
  position: relative;
  border-radius: 2px;
  width: 100%;
  text-align: left;
  height: 29px;
  padding: 3px 13px;
  border: 3px solid transparent;
  line-height: normal;
  margin-bottom: 3px;
}
#onlinestorage .level1 .folder-tree .folder.current {
  background: #283a50;
  color: #fff;
}
#onlinestorage .level1 .folder-tree .folder.current .dropdown-container button {
  color: #fff;
}
#onlinestorage .level1 .folder-tree .folder .caret-placeholder,
#onlinestorage .level1 .folder-tree .folder .fa-caret-down,
#onlinestorage .level1 .folder-tree .folder .fa-caret-right {
  padding: 3px 1px;
  width: 10px;
  vertical-align: top;
}
#onlinestorage .level1 .folder-tree .folder .fa-plus-square {
  float: right;
  margin-top: 3px;
}
#onlinestorage .level1 .folder-tree .folder .folder-name {
  display: inline-block;
  max-width: calc(100% - 22px);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
#onlinestorage .level1 .folder-tree .folder .dropdown-container {
  float: right;
  margin-right: 12px;
  position: absolute;
  top: 2px;
  right: 0;
}
#onlinestorage .level1 .folder-tree .folder .dropdown-container button {
  display: none;
  height: 20px;
  line-height: 20px;
  padding: 0 2px;
  vertical-align: top;
}
#onlinestorage
  .level1
  .folder-tree
  .folder
  .dropdown-container
  .dropdown-options-container {
  right: -20px;
}
#onlinestorage .level1 .folder-tree .folder .dropdown-container button:focus,
#onlinestorage
  .level1
  .folder-tree
  .folder
  .dropdown-container
  button[aria-expanded="true"],
#onlinestorage .level1 .folder-tree .folder:focus .dropdown-container button,
#onlinestorage .level1 .folder-tree .folder:hover .dropdown-container button {
  display: inline-block;
}
#onlinestorage .level1 .folder-tree .folder:focus:not(.current),
#onlinestorage .level1 .folder-tree .folder:hover:not(.current) {
  background-color: #838383;
  color: #fff;
  outline: none;
}
#onlinestorage .level1 .folder-tree .folder.dragover {
  border: 2px dashed #595959;
}
#onlinestorage .level1 .folder-tree .folder.dragover.current {
  border-color: #fff;
}
#onlinestorage .level1 .folder-tree .folder .controls {
  float: left;
  width: 16px;
  height: 18px;
  line-height: normal;
}
#onlinestorage .level1 .folder-tree .folder .controls-spacer-1 {
  margin-left: 0px;
}
#onlinestorage .level1 .folder-tree .folder .controls-spacer-2 {
  margin-left: 16px;
}
#onlinestorage .level1 .folder-tree .folder .controls-spacer-3 {
  margin-left: 32px;
}
#onlinestorage .level1 .folder-tree .folder .controls-spacer-4 {
  margin-left: 48px;
}
#onlinestorage .level1 .folder-tree .folder .controls-spacer-5 {
  margin-left: 64px;
}
#onlinestorage .level1 .folder-tree .folder .controls-spacer-6 {
  margin-left: 80px;
}
#onlinestorage .level1 .folder-tree .folder .controls-spacer-7 {
  margin-left: 96px;
}
#onlinestorage .level1 .folder-tree .folder .controls-spacer-8 {
  margin-left: 112px;
}
#onlinestorage .level1 .folder-tree .folder .controls-spacer-9 {
  margin-left: 128px;
}
#onlinestorage .level1 .folder-tree .folder .controls-spacer-10 {
  margin-left: 144px;
}
#onlinestorage .level1 .folder-tree .folder .controls-spacer-11 {
  margin-left: 160px;
}
#onlinestorage .level1 .folder-tree .folder .controls-spacer-12 {
  margin-left: 176px;
}
#onlinestorage .level1 .folder-tree .folder .text-spacer-1 {
  width: calc(100% - 16px);
  float: left;
}
#onlinestorage .level1 .folder-tree .folder .text-spacer-2 {
  width: calc(100% - 32px);
  float: left;
}
#onlinestorage .level1 .folder-tree .folder .text-spacer-3 {
  width: calc(100% - 48px);
  float: left;
}
#onlinestorage .level1 .folder-tree .folder .text-spacer-4 {
  width: calc(100% - 64px);
  float: left;
}
#onlinestorage .level1 .folder-tree .folder .text-spacer-5 {
  width: calc(100% - 80px);
  float: left;
}
#onlinestorage .level1 .folder-tree .folder .text-spacer-6 {
  width: calc(100% - 96px);
  float: left;
}
#onlinestorage .level1 .folder-tree .folder .text-spacer-7 {
  width: calc(100% - 112px);
  float: left;
}
#onlinestorage .level1 .folder-tree .folder .text-spacer-8 {
  width: calc(100% - 128px);
  float: left;
}
#onlinestorage .level1 .folder-tree .folder .text-spacer-9 {
  width: calc(100% - 144px);
  float: left;
}
#onlinestorage .level1 .folder-tree .folder .text-spacer-10 {
  width: calc(100% - 160px);
  float: left;
}
#onlinestorage .level1 .folder-tree .folder .text-spacer-11 {
  width: calc(100% - 176px);
  float: left;
}
#onlinestorage .level1 .folder-tree .folder .text-spacer-12 {
  width: calc(100% - 192px);
  float: left;
}
#onlinestorage .level1 .folder-tree .folder .text-spacer-13 {
  width: calc(100% - 208px);
  float: left;
}
#onlinestorage .level1 .folder-tree .subfolders input[type="text"] {
  padding-left: 15px;
}
#onlinestorage .level1 .folder-tree .btn {
  margin-top: 5px;
  width: calc(50% - 4px);
}
#onlinestorage .level1 .folder-tree .btn-default {
  margin-right: 5px;
}
#onlinestorage .main {
  float: left;
}
#onlinestorage .main .path-container {
  padding: 10px 0 0 20px;
}
#onlinestorage .main .path-container .path {
  display: inline-block;
  font-size: 20px;
  margin-right: 5px;
}
#onlinestorage .main .path-container .path:before {
  content: ">";
}
#onlinestorage .main .path-container .path:first-child:before {
  content: "";
}
#onlinestorage .main .path-container .path:first-child {
  font-size: 24px;
}
#onlinestorage .main .path-container .path button {
  color: #0e57ab;
}
#onlinestorage .main .path-container .path:last-child button {
  color: inherit;
}
#onlinestorage .main .toolbar {
  padding: 7px 16px 12px;
}
#onlinestorage .main .toolbar .dropdown-container {
  display: inline-block;
}
#onlinestorage .main .toolbar button {
  font-size: 14px;
  margin-right: 2px;
  padding: 5px 9px;
}
#onlinestorage .main .toolbar button .fa-cloud-upload,
#onlinestorage .main .toolbar button .fa-download,
#onlinestorage .main .toolbar button .fa-folder-open,
#onlinestorage .main .toolbar button .fa-refresh,
#onlinestorage .main .toolbar button .fa-share-alt,
#onlinestorage .main .toolbar button .fa-sort-amount-asc,
#onlinestorage .main .toolbar button .fa-sort-amount-desc,
#onlinestorage .main .toolbar button .icon-wm-trash {
  font-size: 16px;
}
#onlinestorage .main .toolbar button .fa-cloud-upload {
  padding-right: 7px;
}
#onlinestorage .main .toolbar button .fa-caret-down {
  padding-left: 3px;
}
#onlinestorage .main .toolbar button.sortdirectionbutton {
  padding: 5px;
}
#onlinestorage .main .toolbar button.deletebutton {
  padding: 5px 7px;
}
#onlinestorage .main .toolbar input[type="file"] {
  height: 0;
  width: 0;
  position: absolute;
  visibility: hidden;
}
#onlinestorage .main .list-view {
  width: 100%;
}
#onlinestorage .main .list-view .list-view-header {
  display: flex;
  align-items: center;
  height: 29px;
  color: #fff;
  background: #283a50;
  padding: 0 3px;
  font-weight: 400;
  font-size: 12px;
}
#onlinestorage
  .main
  .list-view
  .list-view-header
  .checkbox-column
  .checkbox-directive {
  margin-top: 3px;
  font-size: 14px;
}
#onlinestorage .main .list-view .loading {
  text-align: center;
  padding-top: 55px;
  font-size: 19px;
}
#onlinestorage .main .list-view .loading .fa-cog {
  font-size: 80px;
  margin-bottom: 3px;
}
#onlinestorage .main .list-view .list-view-content {
  height: 100%;
  overflow: auto;
  border-bottom: 1px solid #dcdcdc;
}
#onlinestorage .main .list-view .list-view-content.dragover {
  background-color: #eee;
  border: 3px solid #767676;
  padding: 0;
}
#onlinestorage .main .list-view .list-view-content.dragover .file,
#onlinestorage .main .list-view .list-view-content.dragover .folder {
  padding-left: 0;
  padding-right: 0;
}
#onlinestorage .main .list-view .list-view-content.dragover .file:first-child,
#onlinestorage
  .main
  .list-view
  .list-view-content.dragover
  .folder:first-child {
  padding-top: 1px;
  height: 36px;
}
#onlinestorage .main .list-view .list-view-content .empty {
  text-align: center;
  padding-top: 80px;
  font-size: 19px;
}
#onlinestorage .main .list-view .list-view-content .empty .fa-briefcase,
#onlinestorage .main .list-view .list-view-content .empty .fa-search {
  font-size: 50px;
  height: 58px;
}
#onlinestorage .main .list-view .list-view-content .file,
#onlinestorage .main .list-view .list-view-content .folder {
  display: flex;
  align-items: center;
  height: 39px;
  border-bottom: 1px solid #dcdcdc;
  padding: 4px 3px 3px;
}
#onlinestorage
  .main
  .list-view
  .list-view-content
  .file
  .checkbox-column
  .checkbox-directive,
#onlinestorage
  .main
  .list-view
  .list-view-content
  .folder
  .checkbox-column
  .checkbox-directive {
  margin-top: 3px;
  font-size: 16px;
  display: none;
  color: #0e57ab;
}
#onlinestorage
  .main
  .list-view
  .list-view-content
  .file
  .type-column
  .fa.fa-folder-open,
#onlinestorage
  .main
  .list-view
  .list-view-content
  .folder
  .type-column
  .fa.fa-folder-open {
  height: 20px;
  font-size: 14px;
  padding: 3px;
}
#onlinestorage .main .list-view .list-view-content .file .type-column img,
#onlinestorage .main .list-view .list-view-content .folder .type-column img {
  height: 24px;
  width: 20px;
  margin-right: 3px;
}
#onlinestorage .main .list-view .list-view-content .file .name-column,
#onlinestorage .main .list-view .list-view-content .folder .name-column {
  color: #0e57ab;
  min-width: 0;
}
#onlinestorage .main .list-view .list-view-content .file .name-column button,
#onlinestorage .main .list-view .list-view-content .folder .name-column button {
  width: calc(100% - 8px);
  height: 100%;
  text-align: left;
}
#onlinestorage .main .list-view .list-view-content .file .icons-column,
#onlinestorage .main .list-view .list-view-content .folder .icons-column {
  text-align: right;
}
#onlinestorage .main .list-view .list-view-content .file .icons-column button,
#onlinestorage
  .main
  .list-view
  .list-view-content
  .folder
  .icons-column
  button {
  display: none;
  margin-left: 12px;
  color: #0e57ab;
}
#onlinestorage
  .main
  .list-view
  .list-view-content
  .file
  .icons-column
  button:first-child,
#onlinestorage
  .main
  .list-view
  .list-view-content
  .folder
  .icons-column
  button:first-child {
  margin-left: 0;
}
#onlinestorage
  .main
  .list-view
  .list-view-content
  .file
  .icons-column
  button
  .fa-download,
#onlinestorage
  .main
  .list-view
  .list-view-content
  .folder
  .icons-column
  button
  .fa-download {
  font-size: 16px;
}
#onlinestorage .main .list-view .list-view-content .file:hover,
#onlinestorage .main .list-view .list-view-content .folder:hover {
  background: #eff2f6;
}
#onlinestorage
  .main
  .list-view
  .list-view-content
  .file:hover
  .icons-column
  button,
#onlinestorage
  .main
  .list-view
  .list-view-content
  .folder:hover
  .icons-column
  button {
  display: inline-block;
}
#onlinestorage .main .list-view .list-view-content .file.checked,
#onlinestorage .main .list-view .list-view-content .folder.checked {
  background-color: #d9e1ea;
}
#onlinestorage
  .main
  .list-view
  .list-view-content
  .file.checked
  .checkbox-column
  .checkbox-directive,
#onlinestorage
  .main
  .list-view
  .list-view-content
  .file:hover
  .checkbox-column
  .checkbox-directive,
#onlinestorage
  .main
  .list-view
  .list-view-content
  .folder.checked
  .checkbox-column
  .checkbox-directive,
#onlinestorage
  .main
  .list-view
  .list-view-content
  .folder:hover
  .checkbox-column
  .checkbox-directive {
  display: inline-block;
}
#onlinestorage .main .list-view .list-view-content .folder.dragover {
  border: 3px solid #767676;
  padding: 1px 0;
}
#onlinestorage .main .list-view .checkbox-column {
  text-align: center;
  width: 34px;
}
#onlinestorage .main .list-view .type-column {
  width: 73px;
}
#onlinestorage .main .list-view .name-column {
  flex: 1 50px;
}
#onlinestorage .main .list-view .icons-column {
  width: 116px;
  padding-right: 44px;
}
#onlinestorage .main .list-view .owner-column {
  flex: 1 50px;
  max-width: 216px;
  padding-right: 5px;
}
#onlinestorage .main .list-view .size-column {
  width: 74px;
}
#onlinestorage .main .list-view .date-modified-column {
  text-align: right;
  width: 120px;
  padding-right: 21px;
  white-space: nowrap;
}
#onlinestorage .main .thumbnail-view .thumbnail-view-heading {
  height: 29px;
  background: #283a50;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-heading
  .checkbox-directive {
  color: #fff;
  margin-top: 8px;
  margin-left: 14px;
  font-size: 14px;
}
#onlinestorage .main .thumbnail-view .loading {
  text-align: center;
  padding-top: 55px;
  font-size: 19px;
}
#onlinestorage .main .thumbnail-view .loading .fa-cog {
  font-size: 80px;
  margin-bottom: 3px;
}
#onlinestorage .main .thumbnail-view .thumbnail-view-content {
  overflow: auto;
  padding: 3px;
}
#onlinestorage .main .thumbnail-view .thumbnail-view-content.dragover {
  background-color: #eee;
  border: 3px solid #767676;
  padding: 0;
}
#onlinestorage .main .thumbnail-view .thumbnail-view-content .empty {
  text-align: center;
  padding-top: 80px;
  font-size: 19px;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .empty
  .fa-briefcase,
#onlinestorage .main .thumbnail-view .thumbnail-view-content .empty .fa-search {
  font-size: 50px;
  height: 58px;
}
#onlinestorage .main .thumbnail-view .thumbnail-view-content .thumbnail-file,
#onlinestorage .main .thumbnail-view .thumbnail-view-content .thumbnail-folder {
  box-sizing: content-box;
  display: inline-block;
  position: relative;
  width: 172px;
  height: 172px;
  margin: 26px 11px 6px 27px;
  border-radius: 2px;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  vertical-align: top;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .checkbox-directive,
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder
  .checkbox-directive {
  display: none;
  position: absolute;
  z-index: 2;
  top: 6px;
  left: 8px;
  font-size: 17px;
  color: #fff;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .hover-icons-right,
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder
  .hover-icons-right {
  display: none;
  position: absolute;
  z-index: 2;
  top: 6px;
  right: 8px;
  font-size: 15px;
  color: #fff;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .hover-icons-right
  button,
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder
  .hover-icons-right
  button {
  margin-left: 12px;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .thumbnail-overlay,
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder
  .thumbnail-overlay {
  background: none;
  height: 126px;
  z-index: 1;
  position: relative;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file:hover
  .hover-icons-right,
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder:hover
  .hover-icons-right {
  display: inline-block;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file.checked,
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file:hover,
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder.checked,
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder:hover {
  border: 3px solid #0e57ab;
  margin: 23px 8px 3px 24px;
  border-radius: 4px;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file.checked
  .checkbox-directive,
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file:hover
  .checkbox-directive,
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder.checked
  .checkbox-directive,
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder:hover
  .checkbox-directive {
  display: block;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file.checked
  .thumbnail-overlay,
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file:hover
  .thumbnail-overlay,
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder.checked
  .thumbnail-overlay,
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder:hover
  .thumbnail-overlay {
  background: #283a50;
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .thumbnail-footer,
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder
  .thumbnail-footer {
  height: 46px;
  color: #fff;
  background: #283a50;
  text-align: center;
  padding-top: 5px;
}
#onlinestorage .main .thumbnail-view .thumbnail-view-content .thumbnail-folder {
  cursor: pointer;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder
  .fa-folder-open {
  position: absolute;
  font-size: 78px;
  top: 33px;
  left: 50px;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder
  .thumbnail-footer
  .folder-name {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder.dragover {
  border: 3px solid #595959;
  margin: 23px 8px 3px 24px;
  border-radius: 4px;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder.dragover
  .thumbnail-overlay {
  background: rgba(0, 0, 0, 0.4);
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .file-icon {
  position: absolute;
  color: #fff;
  text-align: center;
  top: 46px;
  width: 100%;
  font-size: 30px;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .file-icon.fa {
  top: 40px;
  font-size: 50px;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .thumbnail-footer
  .file-name-container {
  font-size: 0;
  white-space: nowrap;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .thumbnail-footer
  .file-name-container
  .file-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 110px;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .thumbnail-footer
  .file-name-container
  .file-extention,
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .thumbnail-footer
  .file-name-container
  .file-name {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
}
#onlinestorage .main .thumbnail-view .thumbnail-view-content .owner-group {
  padding-top: 22px;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .owner-group:first-child {
  padding-top: 7px;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .owner-group
  .owner-group-header {
  padding-left: 25px;
  margin-bottom: -20px;
}
#onlinestorage
  .main
  .thumbnail-view
  .thumbnail-view-content
  .owner-group
  .owner-group-header
  .icon-wm-organizer {
  color: #0e57ab;
  font-size: 15px;
  margin-right: 5px;
}
#onlinestorage .onlinestorage-homepage {
  float: left;
  width: 100%;
  height: calc(100vh - 50px);
  overflow: auto;
}
#onlinestorage .onlinestorage-homepage .homepage-header {
  background-image: url(../images/onlinestorage/hero-banner-online-storage.png);
  background-size: cover;
  background-position: 100%;
  padding: 65px 0 0 78px;
  width: 100%;
  height: calc(100vh - 50px);
}
#onlinestorage .onlinestorage-homepage .homepage-header h1 {
  margin-top: 0;
  margin-bottom: 3px;
  font-size: 30px;
  font-weight: 300;
}
#onlinestorage .onlinestorage-homepage .homepage-header p {
  max-width: 410px;
  font-size: 20px;
  line-height: 25px;
  font-weight: 300;
}
#onlinestorage .onlinestorage-homepage .homepage-header button {
  margin-top: 20px;
  width: 150px;
  height: 38px;
  font-size: 15px;
}
#onlinestorage .onlinestorage-homepage .homepage-content {
  padding: 54px 50px 200px;
}
#onlinestorage .onlinestorage-homepage .homepage-content h1 {
  font-size: 30px;
  text-align: center;
  font-weight: 300;
}
#onlinestorage .onlinestorage-homepage .homepage-content > div {
  display: flex;
  padding-top: 72px;
}
#onlinestorage
  .onlinestorage-homepage
  .homepage-content
  > div
  .homepage-content-image,
#onlinestorage
  .onlinestorage-homepage
  .homepage-content
  > div
  .homepage-content-text {
  flex: 1;
}
#onlinestorage
  .onlinestorage-homepage
  .homepage-content
  > div
  .homepage-content-image {
  padding-right: 26px;
  display: flex;
  align-items: center;
}
#onlinestorage
  .onlinestorage-homepage
  .homepage-content
  > div
  .homepage-content-image
  img {
  margin: auto;
}
#onlinestorage
  .onlinestorage-homepage
  .homepage-content
  > div
  .homepage-content-text {
  padding-left: 26px;
}
#onlinestorage
  .onlinestorage-homepage
  .homepage-content
  > div
  .homepage-content-text
  h2 {
  margin-top: 75px;
  margin-bottom: 3px;
  font-size: 25px;
  font-weight: 300;
}
#onlinestorage
  .onlinestorage-homepage
  .homepage-content
  > div
  .homepage-content-text
  h2:first-child {
  margin-top: 0;
}
#onlinestorage .onlinestorage-homepage .homepage-footer {
  background-image: url(../images/onlinestorage/footer-online-storage.png);
  background-size: cover;
  background-position: bottom;
  text-align: center;
  padding-top: 83px;
}
#onlinestorage .onlinestorage-homepage .homepage-footer h1 {
  font-size: 30px;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 17px;
}
#onlinestorage .onlinestorage-homepage .homepage-footer button {
  width: 150px;
  height: 38px;
  font-size: 15px;
  margin-bottom: 105px;
}
#onlinestorage .onlinestorage-homepage .homepage-footer label {
  font-weight: 400;
}
#onlinestorage .onlinestorage-homepage .homepage-footer .checkbox-directive {
  margin-right: 10px;
  font-size: 16px;
  vertical-align: middle;
}
#shareitemssidebar .sidebarcontent .addanote button,
#shareitemssidebar .sidebarcontent .managepermissions button,
#shareitemssidebar .sidebarcontent .user .remove,
#shareitemssidebar .sidebarheader .close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: none;
  border: 0;
}
#shareitemssidebar .close {
  margin: 7px 13px;
  font-size: 14px;
}
#shareitemssidebar hr {
  margin: 0;
  border-color: #dcdcdc;
  width: 100%;
}
#shareitemssidebar .sidebarheader {
  padding: 17px 16px 0;
}
#shareitemssidebar .sidebarheader h2 {
  margin: 0;
}
#shareitemssidebar .sidebarheader hr {
  margin-top: 6px;
}
#shareitemssidebar .sidebarcontent {
  padding: 8px 16px;
}
#shareitemssidebar .sidebarcontent label {
  display: block;
}
#shareitemssidebar .sidebarcontent .radio-label {
  cursor: pointer;
  margin-bottom: 6px;
}
#shareitemssidebar .sidebarcontent .radio-label .radiobutton-directive {
  font-size: 16px;
}
#shareitemssidebar .sidebarcontent .file,
#shareitemssidebar .sidebarcontent .folder {
  padding-top: 2px;
  padding-bottom: 7px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
#shareitemssidebar .sidebarcontent .folder .fa-folder-open {
  font-weight: 400;
  margin-right: 1px;
}
#shareitemssidebar .sidebarcontent .file img {
  margin-top: -2px;
  width: 20px;
  height: 24px;
  margin-right: 5px;
}
#shareitemssidebar .sidebarcontent .managepermissions {
  text-align: right;
  font-weight: 700;
  color: #0e57ab;
  margin-top: -13px;
  height: 20px;
}
#shareitemssidebar .sidebarcontent #shareItemsOptionLabel {
  margin-top: 18px;
  margin-bottom: 3px;
}
#shareitemssidebar .sidebarcontent .share-by-email #addressesToShareWithLabel {
  margin-top: 18px;
  margin-bottom: 1px;
}
#shareitemssidebar .sidebarcontent .share-by-email #queryText {
  height: 30px;
}
#shareitemssidebar
  .sidebarcontent
  .share-by-email
  .newEmailAddressesToShareWith,
#shareitemssidebar
  .sidebarcontent
  .share-by-email
  .newEmailAddressesToShareWith
  hr {
  margin-bottom: 15px;
}
#shareitemssidebar
  .sidebarcontent
  .share-by-email
  .newEmailAddressesToShareWith
  .user {
  margin-bottom: 12px;
}
#shareitemssidebar
  .sidebarcontent
  .share-by-email
  .newEmailAddressesToShareWith
  .user
  > div {
  display: inline-block;
  margin-left: 14px;
  vertical-align: middle;
  width: 220px;
}
#shareitemssidebar
  .sidebarcontent
  .share-by-email
  .newEmailAddressesToShareWith
  .user
  > div
  .email,
#shareitemssidebar
  .sidebarcontent
  .share-by-email
  .newEmailAddressesToShareWith
  .user
  > div
  .name,
#shareitemssidebar
  .sidebarcontent
  .share-by-email
  .newEmailAddressesToShareWith
  .user
  > div
  .remove {
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 16px;
}
#shareitemssidebar
  .sidebarcontent
  .share-by-email
  .newEmailAddressesToShareWith
  .user
  > div
  .name {
  color: #3e3e3e;
  font-weight: 700;
}
#shareitemssidebar
  .sidebarcontent
  .share-by-email
  .newEmailAddressesToShareWith
  .user
  > div
  .remove {
  color: #0e57ab;
  display: inline-block;
}
#shareitemssidebar .sidebarcontent .share-by-email .addanote {
  font-weight: 700;
  color: #0e57ab;
  margin-top: 5px;
  margin-bottom: 10px;
}
#shareitemssidebar .sidebarcontent .share-by-email textarea {
  margin-top: 10px;
  margin-bottom: 10px;
  height: 108px;
}
#shareitemssidebar .sidebarcontent .share-by-link #expiresLabel {
  margin-top: 22px;
  margin-bottom: 0;
}
#shareitemssidebar .sidebarcontent .share-by-link .dropdown-select {
  height: 30px;
  padding: 5px 12px 5px 7px;
}
#shareitemssidebar .sidebarcontent .share-by-link .generate,
#shareitemssidebar .sidebarcontent .share-by-link .link {
  margin-top: 12px;
  margin-bottom: 10px;
}
#shareitemssidebar .sidebarcontent .share-by-link .generate button,
#shareitemssidebar .sidebarcontent .share-by-link .link button {
  font-size: 14px;
  height: 28px;
}
#shareitemssidebar .sidebarcontent .share-by-link .generate {
  text-align: right;
}
#shareitemssidebar .sidebarcontent .share-by-link .generate button {
  padding-top: 0;
  padding-bottom: 0;
}
#shareitemssidebar .sidebarcontent .share-by-link .link div.form-control {
  vertical-align: top;
  display: inline-block;
  height: 28px;
  width: calc(100% - 75px);
  background-color: #fff;
  padding: 3px 8px;
  overflow: hidden;
  white-space: nowrap;
}
#shareitemssidebar
  .sidebarcontent
  .share-by-link
  .link
  div.form-control
  .fa-cog {
  margin-right: 3px;
}
#shareitemssidebar .sidebarcontent .share-by-link .link button {
  vertical-align: top;
  min-width: 70px;
  margin-left: 2px;
  padding: 0;
}
#shareitemssidebar .sidebarcontent .footer {
  text-align: right;
  padding: 11px 2px;
}
#shareitemssidebar .sidebarcontent .footer button {
  height: 28px;
  min-width: 69px;
  margin-left: 4px;
  font-size: 14px;
  padding: 0 5px;
}
#managepermissionssidebar .sidebarcontent .addcontacts,
#managepermissionssidebar .sidebarcontent .link .remove,
#managepermissionssidebar .sidebarcontent .user .remove,
#managepermissionssidebar .sidebarheader .close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: none;
  border: 0;
}
#managepermissionssidebar .close {
  margin: 7px 13px;
  font-size: 14px;
}
#managepermissionssidebar hr {
  margin: 0;
  border-color: #dcdcdc;
  width: 100%;
}
#managepermissionssidebar .sidebarheader {
  padding: 17px 16px 0;
}
#managepermissionssidebar .sidebarheader h2 {
  margin: 0;
}
#managepermissionssidebar .sidebarheader hr {
  margin-top: 6px;
}
#managepermissionssidebar .sidebarcontent {
  padding: 8px 16px;
}
#managepermissionssidebar .sidebarcontent label {
  display: block;
}
#managepermissionssidebar .sidebarcontent .fileOrFolder {
  padding-top: 2px;
  padding-bottom: 18px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
#managepermissionssidebar .sidebarcontent .fileOrFolder .fa-folder-open {
  font-weight: 400;
  margin-right: 1px;
}
#managepermissionssidebar .sidebarcontent .fileOrFolder img {
  margin-top: -2px;
  width: 20px;
  height: 24px;
  margin-right: 5px;
}
#managepermissionssidebar .sidebarcontent .emailAddressesAndLinks {
  margin-bottom: 12px;
}
#managepermissionssidebar .sidebarcontent .emailAddressesAndLinks > label {
  display: inline-block;
  margin-bottom: 0;
}
#managepermissionssidebar .sidebarcontent .emailAddressesAndLinks .addcontacts {
  color: #0e57ab;
  float: right;
}
#managepermissionssidebar .sidebarcontent .emailAddressesAndLinks hr {
  margin-bottom: 15px;
}
#managepermissionssidebar .sidebarcontent .emailAddressesAndLinks .link,
#managepermissionssidebar .sidebarcontent .emailAddressesAndLinks .user {
  margin-bottom: 10px;
}
#managepermissionssidebar .sidebarcontent .emailAddressesAndLinks .link > div,
#managepermissionssidebar .sidebarcontent .emailAddressesAndLinks .user > div {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  width: 220px;
}
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  > div
  .email,
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  > div
  .linkCreated,
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  > div
  .linkTextfield,
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  > div
  .name,
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  > div
  .remove,
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .user
  > div
  .email,
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .user
  > div
  .linkCreated,
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .user
  > div
  .linkTextfield,
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .user
  > div
  .name,
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .user
  > div
  .remove {
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 16px;
}
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  > div
  .name,
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .user
  > div
  .name {
  color: #3e3e3e;
  font-weight: 700;
}
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  > div
  .remove,
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .user
  > div
  .remove {
  color: #0e57ab;
  display: inline-block;
}
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  > div
  .linkCreated,
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .user
  > div
  .linkCreated {
  font-size: 13px;
}
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  > div
  .linkTextfield,
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .user
  > div
  .linkTextfield {
  white-space: nowrap;
}
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  > div
  .linkTextfield
  div.form-control,
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .user
  > div
  .linkTextfield
  div.form-control {
  width: calc(100% - 73px);
  display: inline-block;
  height: 30px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 5px 3px;
}
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  > div
  .linkTextfield
  button,
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .user
  > div
  .linkTextfield
  button {
  width: 70px;
  height: 30px;
  font-size: 14px;
  vertical-align: top;
}
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  .circled-borders-radius {
  vertical-align: middle;
  display: inline-block;
  height: 48px;
  width: 48px;
  background-color: #767676;
}
#managepermissionssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  .circled-borders-radius
  .fa-link {
  font-size: 25px;
  margin-top: 13px;
  margin-left: 13px;
  color: #fff;
}
#managepermissionssidebar .sidebarcontent .emailAddressesAndLinks .link > div {
  vertical-align: middle;
}
#managepermissionssidebar .sidebarcontent .footer {
  text-align: right;
  padding: 11px 2px;
}
#managepermissionssidebar .sidebarcontent .footer button {
  height: 28px;
  min-width: 69px;
  margin-left: 4px;
  font-size: 14px;
  padding: 0 5px;
}
#filedetailssidebar .sidebarcontent .addcontacts,
#filedetailssidebar .sidebarcontent .addoreditnote,
#filedetailssidebar .sidebarcontent .expandablelabel,
#filedetailssidebar .sidebarcontent .file button,
#filedetailssidebar .sidebarcontent .link .remove,
#filedetailssidebar .sidebarcontent .user .remove,
#filedetailssidebar .sidebarheader .close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: none;
  border: 0;
}
#filedetailssidebar .close {
  margin: 7px 13px;
  font-size: 14px;
}
#filedetailssidebar hr {
  margin: 0;
  border-color: #dcdcdc;
  width: 100%;
}
#filedetailssidebar .sidebarheader {
  padding: 17px 16px 0;
}
#filedetailssidebar .sidebarheader h2 {
  margin: 0;
}
#filedetailssidebar .sidebarheader hr {
  margin-top: 6px;
}
#filedetailssidebar .sidebarcontent {
  padding: 8px 16px;
}
#filedetailssidebar .sidebarcontent .expandablelabel {
  margin-bottom: 2px;
  font-weight: 700;
}
#filedetailssidebar .sidebarcontent .expandablelabel .fa {
  margin-right: 5px;
  width: 8px;
}
#filedetailssidebar .sidebarcontent .file {
  text-align: center;
  padding-top: 8px;
  word-break: break-all;
}
#filedetailssidebar .sidebarcontent .file .thumbnail-file {
  position: relative;
  height: 186px;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 2px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
#filedetailssidebar .sidebarcontent .file .thumbnail-file .file-icon {
  position: absolute;
  color: #fff;
  text-align: center;
  left: 0;
  top: 54px;
  width: 100%;
  font-size: 30px;
}
#filedetailssidebar .sidebarcontent .file .thumbnail-file .file-icon.fa {
  top: 58px;
  font-size: 70px;
}
#filedetailssidebar .sidebarcontent .file button {
  color: #0e57ab;
  margin-top: 8px;
}
#filedetailssidebar .sidebarcontent #notesLabel {
  margin-top: 9px;
}
#filedetailssidebar .sidebarcontent .addoreditnote {
  margin-top: 9px;
  color: #0e57ab;
  float: right;
}
#filedetailssidebar .sidebarcontent .note {
  white-space: pre-wrap;
}
#filedetailssidebar .sidebarcontent .note-warning {
  color: #767676;
  font-size: 12px;
}
#filedetailssidebar .sidebarcontent form textarea {
  height: 89px;
}
#filedetailssidebar .sidebarcontent form button {
  height: 28px;
  min-width: 69px;
  margin-top: 4px;
  margin-right: 4px;
  font-size: 14px;
  padding: 0 5px;
}
#filedetailssidebar .sidebarcontent .information {
  padding-top: 18px;
  padding-bottom: 21px;
}
#filedetailssidebar .sidebarcontent .information hr {
  margin-bottom: 15px;
}
#filedetailssidebar .sidebarcontent .information .property,
#filedetailssidebar .sidebarcontent .information .value {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 2px;
}
#filedetailssidebar .sidebarcontent .information .property {
  min-width: 70px;
}
#filedetailssidebar .sidebarcontent .information .value {
  word-break: break-all;
}
#filedetailssidebar
  .sidebarcontent
  .information
  .ownerValue
  > div:nth-child(1) {
  margin-bottom: -6px;
}
#filedetailssidebar
  .sidebarcontent
  .information
  .ownerValue
  > div:nth-child(2) {
  padding-bottom: 6px;
}
#filedetailssidebar .sidebarcontent .emailAddressesAndLinks {
  margin-bottom: 12px;
}
#filedetailssidebar .sidebarcontent .emailAddressesAndLinks > label {
  margin-bottom: 0;
}
#filedetailssidebar .sidebarcontent .emailAddressesAndLinks .addcontacts {
  color: #0e57ab;
  float: right;
}
#filedetailssidebar .sidebarcontent .emailAddressesAndLinks .link,
#filedetailssidebar .sidebarcontent .emailAddressesAndLinks .user,
#filedetailssidebar .sidebarcontent .emailAddressesAndLinks hr {
  margin-bottom: 10px;
}
#filedetailssidebar .sidebarcontent .emailAddressesAndLinks .link > div,
#filedetailssidebar .sidebarcontent .emailAddressesAndLinks .user > div {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  width: 220px;
}
#filedetailssidebar .sidebarcontent .emailAddressesAndLinks .link > div .email,
#filedetailssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  > div
  .linkCreated,
#filedetailssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  > div
  .linkTextfield,
#filedetailssidebar .sidebarcontent .emailAddressesAndLinks .link > div .name,
#filedetailssidebar .sidebarcontent .emailAddressesAndLinks .link > div .remove,
#filedetailssidebar .sidebarcontent .emailAddressesAndLinks .user > div .email,
#filedetailssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .user
  > div
  .linkCreated,
#filedetailssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .user
  > div
  .linkTextfield,
#filedetailssidebar .sidebarcontent .emailAddressesAndLinks .user > div .name,
#filedetailssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .user
  > div
  .remove {
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 16px;
}
#filedetailssidebar .sidebarcontent .emailAddressesAndLinks .link > div .name,
#filedetailssidebar .sidebarcontent .emailAddressesAndLinks .user > div .name {
  color: #3e3e3e;
  font-weight: 700;
}
#filedetailssidebar .sidebarcontent .emailAddressesAndLinks .link > div .remove,
#filedetailssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .user
  > div
  .remove {
  color: #0e57ab;
  display: inline-block;
}
#filedetailssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  > div
  .linkCreated,
#filedetailssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .user
  > div
  .linkCreated {
  font-size: 13px;
}
#filedetailssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  > div
  .linkTextfield,
#filedetailssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .user
  > div
  .linkTextfield {
  white-space: nowrap;
}
#filedetailssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  > div
  .linkTextfield
  div.form-control,
#filedetailssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .user
  > div
  .linkTextfield
  div.form-control {
  width: calc(100% - 73px);
  display: inline-block;
  height: 30px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 5px 3px;
}
#filedetailssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  > div
  .linkTextfield
  button,
#filedetailssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .user
  > div
  .linkTextfield
  button {
  width: 70px;
  height: 30px;
  font-size: 14px;
  vertical-align: top;
}
#filedetailssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  .circled-borders-radius {
  vertical-align: middle;
  display: inline-block;
  height: 48px;
  width: 48px;
  background-color: #767676;
}
#filedetailssidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  .circled-borders-radius
  .fa-link {
  font-size: 25px;
  margin-top: 13px;
  margin-left: 13px;
  color: #fff;
}
#filedetailssidebar .sidebarcontent .emailAddressesAndLinks .link > div {
  vertical-align: middle;
}
#filedetailssidebar .sidebarcontent .footer {
  text-align: right;
  padding: 11px 2px;
}
#filedetailssidebar .sidebarcontent .footer button {
  height: 28px;
  min-width: 69px;
  margin-left: 4px;
  font-size: 14px;
  padding: 0 5px;
}
.contentRequest h5 {
  margin: 0px;
  border-bottom: 1px solid #ccc;
  padding: 0px 0px 5px;
  color: #3e3e3e;
}
.contentRequest .col-md-4 .col-xs-12 {
  padding: 0;
}
.contentRequest .col-md-4 .col-xs-12 label {
  margin: 5px 0px 2px;
}
.contentRequest .col-md-4 .col-xs-12 .birthday {
  background: url(../images/icon_calendar.png) 100% 0 no-repeat;
}
.contentRequest .col-md-4 .col-md-12 {
  padding: 0;
}
.contentRequest .col-md-4 .col-md-12 h3 {
  margin: 30px 0px 3px;
}
.contentRequest .row hr {
  border-top: 1px solid #ccc;
}
.contentRequest .controls {
  padding-bottom: 5px;
}
.contentRequest .controls .btn {
  margin-left: 10px;
}
.publicAvailability {
  margin-top: 20px;
  position: relative;
}
.publicAvailability #timezone {
  background-color: #767676;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#767676),
    to(#595959)
  );
  background: -webkit-linear-gradient(top, #767676, #595959);
  background: -o-linear-gradient(top, #767676, #595959);
  position: absolute;
  top: 73px;
  color: gray;
  z-index: 2;
  margin-left: 10px;
}
.publicAvailability #timezone .dropdown-button {
  padding: 3px 0;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.publicAvailability #timezone .dropdown-button .icon-wm-timezone {
  padding-left: 3px;
}
.publicAvailability #timezone .dropdown-button .fa-caret-down {
  padding-left: 5px;
  padding-right: 5px;
}
.publicAvailability .publicAvailabilityPreferences {
  float: right;
  margin-right: 24px;
  padding-left: 0;
}
.publicAvailability .publicAvailabilityPreferences label {
  padding-top: 7px;
  padding-right: 7px;
  font-weight: 400;
}
.publicAvailability .publicAvailabilityPreferences > .pull-right {
  margin-bottom: 0;
}
.publicAvailability .publicAvailabilityPreferences .dropdown-container {
  width: 175px;
}
.publicAvailability .title {
  font-size: 18px;
  font-weight: lighter;
  color: gray;
  margin-left: 62px;
}
.publicAvailability .fc-toolbar {
  margin-bottom: 12px;
}
.publicAvailability .fc-toolbar .fc-left {
  margin-left: 47px;
}
.publicAvailability .fc-toolbar .fc-left h2 {
  font-size: 24px;
  display: inline-block;
  min-width: 200px;
  font-weight: lighter;
}
.publicAvailability .fc-toolbar .fc-left .fc-next-button,
.publicAvailability .fc-toolbar .fc-left .fc-prev-button {
  border: none;
  background: none;
  outline: 0;
  box-shadow: none;
  color: gray;
}
.publicAvailability .fc-toolbar .fc-left .fc-next-button .fc-icon,
.publicAvailability .fc-toolbar .fc-left .fc-prev-button .fc-icon {
  vertical-align: baseline;
  -webkit-transform: scaleX(0.5);
  transform: scaleX(0.5);
}
.publicAvailability .fc-toolbar .fc-center {
  color: #3e3e3e;
}
.publicAvailability .fc-toolbar .fc-center .fc-state-active,
.publicAvailability .fc-toolbar .fc-center .fc-state-disabled {
  color: #d3d3d3;
  background-color: #fff;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fff),
    to(#eee)
  );
  background: -webkit-linear-gradient(top, #fff, #eee);
  background: -o-linear-gradient(top, #fff, #eee);
  box-shadow: none;
}
.publicAvailability .fc-toolbar .fc-center .fc-today-button {
  height: 30px;
  font-size: 13px;
}
.publicAvailability .fc-toolbar .fc-center .fc-agendaDay-button,
.publicAvailability .fc-toolbar .fc-center .fc-agendaWeek-button,
.publicAvailability .fc-toolbar .fc-center .fc-month-button {
  font-family: icon-wm;
  font-size: 24px;
  padding: 2px 6px;
  line-height: 1;
  height: 30px;
  margin-left: 5px;
}
.publicAvailability .fc-toolbar .fc-center .fc-agendaDay-button:before {
  content: "\e61d";
}
.publicAvailability .fc-toolbar .fc-center .fc-agendaWeek-button:before {
  content: "\e61e";
}
.publicAvailability .fc-toolbar .fc-center .fc-month-button:before {
  content: "\e61f";
}
.publicAvailability .fc-view td.fc-widget-header {
  background-color: #767676;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#767676),
    to(#595959)
  );
  background: -webkit-linear-gradient(top, #767676, #595959);
  background: -o-linear-gradient(top, #767676, #595959);
  border: 1px solid #444;
}
.publicAvailability .fc-view td.fc-widget-header th {
  height: 28px;
  color: #fff;
  vertical-align: middle;
  font-weight: 400;
  border: none;
  font-size: 13px;
}
.publicAvailability .fc-view td.fc-widget-header th.fc-widget-header {
  text-align: left;
  padding-left: 12px;
}
.publicAvailability
  .fc-view.fc-month-view
  td.fc-widget-header
  th.fc-widget-header {
  text-align: center;
  padding-left: 0;
}
.publicAvailability .fc-view .fc-day-number {
  text-align: left;
  padding-left: 12px;
  padding-top: 8px;
  padding-bottom: 6px;
  font-size: 13px;
}
.publicAvailability .fc-view .fc-day.fc-today {
  background-color: #f1f1f1;
}
.publicAvailability .fc-view .fc-event {
  background-color: #fad4d1;
  border: none;
  color: gray;
  font-size: 11px;
}
.publicAvailability
  .fc-view
  .fc-event.fc-time-grid-event.lessThanHour
  .fc-content {
  padding-top: 0;
}
.publicAvailability .fc-view .fc-event.fc-time-grid-event .fc-time {
  font-size: 11px;
}
.publicAvailability
  .fc-view
  .fc-event.fc-time-grid-event.fc-short
  .fc-time:after,
.publicAvailability
  .fc-view
  .fc-event.fc-time-grid-event.fc-short
  .fc-time:before {
  content: "";
}
.publicAvailability .fc-view .fc-event.fc-time-grid-event.fc-short span {
  display: inline-block;
}
.publicAvailability .fc-view .fc-content {
  padding: 6px;
}
.publicAvailability .fc-view .fc-content .busy {
  font-weight: 700;
  padding-right: 4px;
}
.publicAvailability .fc-view .fc-content .fc-time {
  font-weight: 400;
}
.public-task {
  overflow-y: auto;
  height: 100%;
  color: #7e7e7e;
}
.public-task .strike {
  border-color: #eee;
  position: relative;
  color: #eee !important;
}
.public-task .strike:after {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 50%;
  height: 1px;
  background: #eee;
  content: "";
  display: block;
}
.public-task .public-task-header {
  padding-top: 10px;
  padding-left: 50px;
  padding-right: 50px;
  border-bottom: 1px solid;
  display: block;
}
.public-task .public-task-header h1 {
  margin-top: 10px;
  text-transform: capitalize;
}
.public-task .public-task-header .choose-language {
  padding: 20px 0px;
}
.public-task .public-task-header .choose-language .control-label {
  line-height: 34px;
  text-align: right;
}
.public-task .public-task-body {
  padding-top: 10px;
  padding-left: 50px;
  padding-right: 50px;
}
.public-task .public-task-body .public-task-body-block {
  min-width: 400px;
  width: 60%;
}
.public-task .public-task-body .public-task-body-block .subtask-counter-box {
  display: block;
  overflow: overlay;
  position: relative;
  height: 22px;
  top: 0px;
}
.public-task
  .public-task-body
  .public-task-body-block
  .subtask-counter-box
  .subtask-counter-label {
  display: inline-block;
  float: left;
}
.public-task
  .public-task-body
  .public-task-body-block
  .subtask-counter-box
  .subtask-counter-percentage {
  display: inline-block;
  float: right;
}
.public-task
  .public-task-body
  .public-task-body-block
  .subtask-counter-progress {
  display: block;
  position: relative;
}
.public-task
  .public-task-body
  .public-task-body-block
  .subtask-counter-progress
  .subtask-counter-progress-background {
  position: absolute;
  top: 0px;
  height: 5px;
  width: 100%;
  border: 1px solid;
}
.public-task
  .public-task-body
  .public-task-body-block
  .subtask-counter-progress
  .subtask-counter-progress-color {
  position: absolute;
  top: 0px;
  height: 5px;
  background-color: #1e75d9;
  border: 1px solid;
}
.public-task .public-task-body .public-task-body-block .subtask-items-box {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 5px 0px;
  display: block;
}
.public-task
  .public-task-body
  .public-task-body-block
  .subtask-items-box
  .subtask-items-item {
  border-bottom: 1px solid #eee;
  display: table;
  width: 100%;
  padding: 10px 20px;
  overflow: hidden;
  height: 100%;
}
.public-task
  .public-task-body
  .public-task-body-block
  .subtask-items-box
  .subtask-items-item:first-of-type {
  border-top: 1px solid #eee;
}
.public-task
  .public-task-body
  .public-task-body-block
  .subtask-items-box
  .subtask-items-item
  .subtask-items-item-name {
  display: table-cell;
  vertical-align: middle;
  width: 80%;
}
.public-task
  .public-task-body
  .public-task-body-block
  .subtask-items-box
  .subtask-items-item
  .subtask-items-item-checkbox {
  display: table-cell;
  width: 20%;
  text-align: right;
  vertical-align: middle;
}
.public-task
  .public-task-body
  .public-task-body-block
  .subtask-items-box
  .subtask-items-update
  p {
  margin: 5px 0px;
}
#sharedfiles .folders button,
#sharedfiles .path button,
#sharedfiles .thumbnail-view button,
#sharedfiles td button,
#sharedfiles th button {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: none;
  border: 0;
}
#sharedfiles .tooltip-inner {
  word-break: break-all;
}
#sharedfiles .toolbar {
  padding: 21px 25px 12px 22px;
}
#sharedfiles .toolbar .path-container {
  display: inline-block;
}
#sharedfiles .toolbar .path-container .path {
  display: inline-block;
  font-size: 20px;
  margin-right: 5px;
}
#sharedfiles .toolbar .path-container .path:before {
  content: ">";
}
#sharedfiles .toolbar .path-container .path:first-child:before {
  content: "";
}
#sharedfiles .toolbar .path-container .path:first-child {
  font-size: 24px;
}
#sharedfiles .toolbar .path-container .path button {
  color: #0e57ab;
}
#sharedfiles .toolbar .path-container .path:last-child button {
  color: inherit;
}
#sharedfiles .toolbar button.downloadbutton {
  font-size: 14px;
  vertical-align: top;
  margin-top: 2px;
  margin-left: 15px;
}
#sharedfiles .toolbar button.downloadbutton .fa-download {
  font-size: 16px;
}
#sharedfiles .toolbar .pull-right {
  padding-top: 5px;
}
#sharedfiles .toolbar .pull-right .dropdown-container {
  display: inline-block;
}
#sharedfiles .toolbar .pull-right button {
  font-size: 14px;
  margin-right: 2px;
  padding: 5px 9px;
}
#sharedfiles .toolbar .pull-right button .fa-cloud-upload,
#sharedfiles .toolbar .pull-right button .fa-sort-amount-asc,
#sharedfiles .toolbar .pull-right button .fa-sort-amount-desc {
  font-size: 16px;
}
#sharedfiles .toolbar .pull-right button .fa-cloud-upload {
  padding-right: 7px;
}
#sharedfiles .toolbar .pull-right button .fa-caret-down {
  padding-left: 3px;
}
#sharedfiles .toolbar .pull-right button.sortdirectionbutton {
  padding: 5px;
}
#sharedfiles table {
  width: 100%;
}
#sharedfiles table thead tr {
  display: flex;
  align-items: center;
  height: 29px;
  color: #fff;
  background: #283a50;
  padding: 0 3px;
}
#sharedfiles table thead tr th {
  font-weight: 400;
  font-size: 12px;
}
#sharedfiles table thead tr .checkbox-column .checkbox-directive {
  margin-top: 3px;
  font-size: 14px;
}
#sharedfiles table tbody.loading td {
  text-align: center;
  padding-top: 50px;
}
#sharedfiles table tbody.loading td .fa-cog {
  font-size: 28px;
  color: #c4c4c4;
}
#sharedfiles table tbody.list-view-content {
  height: 100%;
  overflow: auto;
  display: block;
  border-bottom: 1px solid #dcdcdc;
}
#sharedfiles table tbody.list-view-content tr.empty {
  display: block;
  color: #595959;
}
#sharedfiles table tbody.list-view-content tr.empty td {
  display: block;
  text-align: center;
  padding-top: 50px;
}
#sharedfiles table tbody.list-view-content tr.empty td .fa-briefcase {
  font-size: 50px;
}
#sharedfiles table tbody.list-view-content tr.file,
#sharedfiles table tbody.list-view-content tr.folder {
  display: flex;
  align-items: center;
  height: 39px;
  border-bottom: 1px solid #dcdcdc;
  padding: 4px 3px 3px;
}
#sharedfiles
  table
  tbody.list-view-content
  tr.file
  .checkbox-column
  .checkbox-directive,
#sharedfiles
  table
  tbody.list-view-content
  tr.folder
  .checkbox-column
  .checkbox-directive {
  display: none;
}
#sharedfiles
  table
  tbody.list-view-content
  tr.file
  .type-column
  .fa.fa-folder-open,
#sharedfiles
  table
  tbody.list-view-content
  tr.folder
  .type-column
  .fa.fa-folder-open {
  height: 20px;
  font-size: 14px;
  padding: 3px;
}
#sharedfiles table tbody.list-view-content tr.file .type-column img,
#sharedfiles table tbody.list-view-content tr.folder .type-column img {
  height: 24px;
  width: 20px;
  margin-right: 3px;
}
#sharedfiles table tbody.list-view-content tr.file .name-column,
#sharedfiles table tbody.list-view-content tr.folder .name-column {
  color: #0e57ab;
}
#sharedfiles table tbody.list-view-content tr.file .name-column button,
#sharedfiles table tbody.list-view-content tr.folder .name-column button {
  width: calc(100% - 10px);
  text-align: left;
  height: 32px;
}
#sharedfiles
  table
  tbody.list-view-content
  tr.file
  .download-column
  .fa-download,
#sharedfiles
  table
  tbody.list-view-content
  tr.folder
  .download-column
  .fa-download {
  font-size: 20px;
  color: #0e57ab;
}
#sharedfiles table tbody.list-view-content tr.file.checked,
#sharedfiles table tbody.list-view-content tr.file:hover,
#sharedfiles table tbody.list-view-content tr.folder.checked,
#sharedfiles table tbody.list-view-content tr.folder:hover {
  background-color: #e8f2fc;
}
#sharedfiles
  table
  tbody.list-view-content
  tr.file.checked
  .checkbox-column
  .checkbox-directive,
#sharedfiles
  table
  tbody.list-view-content
  tr.file:hover
  .checkbox-column
  .checkbox-directive,
#sharedfiles
  table
  tbody.list-view-content
  tr.folder.checked
  .checkbox-column
  .checkbox-directive,
#sharedfiles
  table
  tbody.list-view-content
  tr.folder:hover
  .checkbox-column
  .checkbox-directive {
  display: inline-block;
  color: #0e57ab;
}
#sharedfiles table .checkbox-column {
  width: 58px;
  padding-left: 19px;
}
#sharedfiles table .type-column {
  width: 80px;
}
#sharedfiles table .name-column {
  flex: 1;
  display: block;
  width: 50px;
  word-break: break-all;
}
#sharedfiles table .download-column {
  width: 50px;
}
#sharedfiles table .owner-column {
  width: 350px;
  padding-right: 10px;
  word-wrap: break-word;
}
#sharedfiles table .size-column {
  width: 94px;
}
#sharedfiles table .date-modified-column {
  text-align: right;
  width: 120px;
  padding-right: 21px;
}
#sharedfiles .thumbnail-view .thumbnail-view-heading {
  height: 29px;
  background: #595959;
}
#sharedfiles .thumbnail-view .thumbnail-view-heading .checkbox-directive {
  color: #fff;
  margin-top: 8px;
  margin-left: 22px;
  font-size: 14px;
}
#sharedfiles .thumbnail-view .loading {
  text-align: center;
  padding-top: 50px;
}
#sharedfiles .thumbnail-view .loading .fa-cog {
  font-size: 28px;
  color: #c4c4c4;
}
#sharedfiles .thumbnail-view .thumbnail-view-content {
  overflow: auto;
}
#sharedfiles .thumbnail-view .thumbnail-view-content .empty {
  color: #595959;
  text-align: center;
  padding-top: 50px;
}
#sharedfiles .thumbnail-view .thumbnail-view-content .empty .fa-briefcase {
  font-size: 50px;
}
#sharedfiles .thumbnail-view .thumbnail-view-content .thumbnail-file,
#sharedfiles .thumbnail-view .thumbnail-view-content .thumbnail-folder {
  box-sizing: content-box;
  display: inline-block;
  position: relative;
  width: 172px;
  height: 172px;
  margin: 29px 8px 3px 30px;
  border-radius: 2px;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  vertical-align: top;
}
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .checkbox-directive,
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder
  .checkbox-directive {
  display: none;
  position: absolute;
  z-index: 2;
  top: 6px;
  left: 8px;
  font-size: 17px;
  color: #fff;
}
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .hover-icons-right,
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder
  .hover-icons-right {
  display: none;
  position: absolute;
  z-index: 2;
  top: 6px;
  right: 8px;
  font-size: 15px;
  color: #fff;
}
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .hover-icons-right
  button,
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder
  .hover-icons-right
  button {
  margin-left: 12px;
}
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .thumbnail-overlay,
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder
  .thumbnail-overlay {
  background: none;
  height: 126px;
  z-index: 1;
  position: relative;
}
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file:hover
  .hover-icons-right,
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder:hover
  .hover-icons-right {
  display: inline-block;
}
#sharedfiles .thumbnail-view .thumbnail-view-content .thumbnail-file.checked,
#sharedfiles .thumbnail-view .thumbnail-view-content .thumbnail-file:hover,
#sharedfiles .thumbnail-view .thumbnail-view-content .thumbnail-folder.checked,
#sharedfiles .thumbnail-view .thumbnail-view-content .thumbnail-folder:hover {
  border: 3px solid #595959;
  margin: 26px 5px 0 27px;
  border-radius: 4px;
}
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file.checked
  .checkbox-directive,
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file:hover
  .checkbox-directive,
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder.checked
  .checkbox-directive,
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder:hover
  .checkbox-directive {
  display: block;
}
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file.checked
  .thumbnail-overlay,
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file:hover
  .thumbnail-overlay,
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder.checked
  .thumbnail-overlay,
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder:hover
  .thumbnail-overlay {
  background: rgba(0, 0, 0, 0.4);
}
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .thumbnail-footer,
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder
  .thumbnail-footer {
  height: 46px;
  color: #fff;
  background: #767676;
  text-align: center;
  padding-top: 5px;
}
#sharedfiles .thumbnail-view .thumbnail-view-content .thumbnail-folder {
  cursor: pointer;
}
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder
  .fa-folder-open {
  position: absolute;
  font-size: 78px;
  top: 33px;
  left: 50px;
}
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-folder
  .thumbnail-footer
  .folder-name {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
}
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .file-icon {
  position: absolute;
  color: #fff;
  text-align: center;
  top: 46px;
  width: 100%;
  font-size: 30px;
}
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .file-icon.fa {
  top: 40px;
  font-size: 50px;
}
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .thumbnail-footer
  .file-name-container {
  font-size: 0;
  white-space: nowrap;
}
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .thumbnail-footer
  .file-name-container
  .file-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 110px;
}
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .thumbnail-footer
  .file-name-container
  .file-extention,
#sharedfiles
  .thumbnail-view
  .thumbnail-view-content
  .thumbnail-file
  .thumbnail-footer
  .file-name-container
  .file-name {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
}
#sharedfiles .permissionsError {
  text-align: center;
}
#sharedfiles .permissionsError > div {
  padding-top: 50px;
  font-size: 50px;
}
#sharedfiles .permissionsError h3 {
  margin-top: 2px;
  margin-bottom: 5px;
  font-size: 23px;
}
.forgot-password {
  min-width: 970px;
}
.forgot-password .error-message {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  background-color: #fad5d2;
  padding: 6px 7px;
  position: absolute;
  top: 25px;
  right: -210px;
  width: 200px;
}
.forgot-password .error-message:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid;
  border-color: transparent #fad5d2 transparent transparent;
  top: 9px;
  left: -11px;
}
.forgot-password .has-error:before {
  content: "!";
  color: #ad1b00;
  position: relative;
  right: 14px;
  top: 16px;
  float: right;
  font-size: 18px;
  font-weight: 700;
}
.forgot-password .has-error.no-label:before {
  top: 4px;
}
.forgot-password .has-error:after {
  clear: both;
}
.forgot-password .has-error {
  padding-top: 0px;
  line-height: 0px;
}
.forgot-password .forgot h3 {
  font-size: 21px;
  font-weight: 300;
  color: #3e3e3e;
  float: left;
}
.forgot-password .forgot-captcha {
  height: 78px;
  padding: 10px 0 0;
  border: 1px solid #dcdcdc;
}
.forgot-password .form-group.relative {
  position: relative;
}
.forgot-password .form-group .inline-block {
  display: inline-block;
}
.expired-password .tooltip-inner {
  max-width: 400px;
}
.expired-password .form-group.relative {
  position: relative;
}
.expired-password .form-group .inline-block {
  display: inline-block;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .scrollHeight {
    overflow-x: auto;
  }
  .level1 .searchbar .form-control,
  .side-sidebar .searchbar .form-control {
    -webkit-appearance: none;
  }
  .level1 .searchbar .input-group-btn .dropdown-menu,
  .side-sidebar .searchbar .input-group-btn .dropdown-menu {
    min-width: 186px;
    position: absolute;
    right: 1px;
  }
  .level1 .searchbar .input-group-btn .dropdown-menu.dropdown-menu-right,
  .side-sidebar .searchbar .input-group-btn .dropdown-menu.dropdown-menu-right {
    width: initial;
  }
  .level1 .searchbar .input-group-btn .dropdown-menu.dropdown-menu-right li,
  .side-sidebar
    .searchbar
    .input-group-btn
    .dropdown-menu.dropdown-menu-right
    li {
    display: block;
  }
  .level1 .searchbar .input-group-btn .dropdown-menu.dropdown-menu-right li a,
  .side-sidebar
    .searchbar
    .input-group-btn
    .dropdown-menu.dropdown-menu-right
    li
    a {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    display: block;
    padding-right: 30px;
    box-sizing: border-box;
  }
  .level1 .panel.subfoldersOpen-1 {
    width: 266px;
  }
  .level1 .panel.subfoldersOpen-2 {
    width: 282px;
  }
  .level1 .panel.subfoldersOpen-3 {
    width: 298px;
  }
  .level1 .panel.subfoldersOpen-4 {
    width: 314px;
  }
  .level1 .panel.subfoldersOpen-5 {
    width: 330px;
  }
  .level1 .panel.subfoldersOpen-6 {
    width: 346px;
  }
  .level1 .panel.subfoldersOpen-7 {
    width: 362px;
  }
  .level1 .panel.subfoldersOpen-8 {
    width: 378px;
  }
  .level1 .panel.subfoldersOpen-9 {
    width: 394px;
  }
  .level1 .panel.subfoldersOpen-10 {
    width: 410px;
  }
  .level1 .panel.subfoldersOpen-11 {
    width: 426px;
  }
  .level1 .panel.subfoldersOpen-12 {
    width: 442px;
  }
  .level1 .panel.subfoldersOpen-13 {
    width: 458px;
  }
  .top-nav li a .user-caret span {
    font-size: 16px;
  }
  .msglist .msglistcontrols {
    padding-top: 0;
    height: auto;
  }
  .msglist .msglistcontrols .iconbar {
    height: 30px;
    margin-top: 23px;
  }
  .msglist.msglistvertical .messageList .messageRow {
    width: auto;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .calendar-subscribe .subscribe-top .btn-holder {
    display: none;
  }
  .sections-calendar-availability .eventContent .datePickers .col-xs-3,
  .sections-calendar-availability .eventContent .datePickers .col-xs-6 {
    width: auto;
  }
  .eventContainer .splitFormContent {
    width: 75%;
    padding: 0;
  }
  input.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  .eventContainer .contentView .splitAvailability {
    width: 75%;
    padding: 0 10px 0 0;
  }
  .collaborators-calendar .collaborator-list {
    margin: 0;
  }
  .part-two .section .inforow {
    margin: 25px 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .contacts-section
    .contacts-lists
    .contacts-nav
    ul
    > li
    > .contacts-childrens
    > li {
    max-width: 100%;
  }
  .contacts-section
    .contacts-lists
    .contacts-nav
    ul
    > li
    > .contacts-childrens
    > li
    > div.contacts-contact
    .contact-actions {
    display: inline-block;
  }
  .contacts-section
    .contacts-lists
    .contacts-nav
    ul
    > li
    > .contacts-childrens
    > li
    > div.contacts-contact
    .contact-actions
    input[type="checkbox"],
  .contacts-section
    .contacts-lists
    .contacts-nav
    ul
    > li
    > .contacts-childrens
    > li
    > div.contacts-contact
    .contact-actions
    input[type="radio"] {
    margin-left: 0;
  }
  .contacts-section
    .contacts-lists
    .contacts-nav
    ul
    > li
    > .contacts-childrens
    > li
    > div.contacts-contact
    .contact-actions
    > div {
    display: block;
  }
  .contacts-section
    .contacts-lists
    .contacts-nav
    ul
    > li
    > .contacts-childrens
    > li
    > div.contacts-contact
    .contact-actions
    > div
    span.fa {
    font-size: 14px;
    text-align: center;
    display: block;
  }
  .contacts-section
    .contacts-lists
    .contacts-nav
    ul
    > li
    > .contacts-childrens
    > li
    > div.contacts-contact
    .contact-actions
    > div:first-child {
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }
  .contacts-section .import-contacts-container .import-contacts-init .col-xs-4 {
    width: 55%;
  }
  .contacts-section .addressBookSubscribe .addressBookUserCell > div > a {
    background: #595959;
  }
  .contacts-section
    .contacts-editor
    .contacts-single-contact
    .contacts-single-container
    .contacts-details-scroller
    .col-xs-3 {
    padding: 0;
  }
  .contacts-section
    .contacts-editor
    .contacts-single-contact
    .contacts-single-container
    .contacts-details-scroller
    .contact-personal
    .form-control,
  .contacts-section
    .contacts-editor
    .contacts-single-contact
    .contacts-single-container
    .contacts-details-scroller
    .contact-personal
    .form-control
    option {
    width: 100%;
  }
  .contacts-section
    .contacts-editor
    .contacts-single-contact
    .mini-social-part
    > a:last-child {
    font-size: 13px;
  }
  .contacts-section .addressbook-contacts .selected-contact,
  .contacts-section .addressbook-contacts .selected-contact .col-xs-4,
  .groups-main
    .create-new-group
    .form-table
    .collaborators-calendar
    .col-xs-12 {
    padding-left: 0;
  }
  .groups-main
    .create-new-group
    .form-table
    .collaborators-calendar
    .selected-contact {
    padding-left: 0;
    height: 90px;
  }
  .groups-main
    .create-new-group
    .form-table
    .collaborators-calendar
    .selected-contact
    .col-xs-4 {
    padding-left: 0;
  }
  .groups-main .create-new-group .form-table .row .col-xs-4 {
    width: 33%;
  }
  .groups-main .create-new-group .form-table .row .colors-block {
    margin: 10px 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .taskCell .taskMainBlock .taskSideIconBar .fa {
    opacity: 1;
    color: #444;
  }
  .taskCell .taskMainBlock .taskInfo {
    padding-left: 5px;
  }
  .taskCell .taskMainBlock .taskInfo .taskicons .fa1 {
    margin-right: 5px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  #workspace1 .cke_toolbar {
    margin: 0;
  }
  .msglist
    .messageListContainerOuter
    .messageListContainerInner
    .messageList
    .messageRow
    .messageQuickAction
    .fa {
    opacity: 1;
  }
  .attachmentview-container .hideit,
  .attachmentview-container span.tablet-view-show {
    visibility: visible;
  }
  .attachmentview-container .attachmentview-command-pane .col-md-6 {
    width: auto;
  }
  .attachmentview-container
    .attachmentview-command-pane
    .col-md-6:nth-child(2) {
    float: right;
  }
  .attachmentview-container
    .attachmentview-datagrid-pane
    .list-view
    .divtd.sender,
  .attachmentview-container
    .attachmentview-datagrid-pane
    .list-view
    .divth.sender {
    width: 120px;
  }
  .attachmentview-container
    .attachmentview-datagrid-pane
    .list-view
    .divtd.subject,
  .attachmentview-container
    .attachmentview-datagrid-pane
    .list-view
    .divth.subject {
    width: calc(50% - 270px);
  }
  .attachmentview-container
    .attachmentview-datagrid-pane
    .list-view
    div.divtr
    .sender {
    margin-left: 0px;
  }
  .messageruleBlock .showcontent {
    display: block;
    float: none;
  }
  .msgview
    .messageContainer
    .contentView
    .messageContent
    .messageBlock
    .messageViewFrom {
    width: auto;
  }
  .subjectEntityHolder,
  .topfixtitle {
    background: #fff;
    z-index: 301;
  }
  .topfixtitle {
    width: 100%;
  }
  hr {
    margin: 10px 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .cloud-container .paddingl20 {
    padding-left: 0;
  }
  .cloud-container .hideit {
    visibility: visible;
  }
  .cloud-container .cloud-datagrid-pane .list-view .divth,
  .cloud-container .cloud-datagrid-pane .list-view .fcol-spacer {
    padding-left: 10px;
  }
  .cloud-datagrid-pane .grid-view .thumbscntr .thumbbox {
    width: 33%;
  }
}
@media (min-width: 320px) and (max-width: 768px) {
  .cloud-command-pane .spacer-iconbar .btn-group {
    margin-bottom: 5px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .preferences .tooltip-inner {
    position: relative;
    left: 80px;
    min-width: 250px;
    text-align: left;
  }
  .preferences .messageFilterList .messageFilterRule .show-all-tab {
    display: block;
  }
  .preferences .messageFilterList .messageFilterRule .show-all-tab i {
    color: #c4c4c4;
    margin-top: 10px;
  }
  .preferences .accountItem,
  .preferences .singleImageRule {
    padding: 0 15px 0 18px;
  }
  .preferences .accountItem .show-all-tab,
  .preferences .singleImageRule .show-all-tab {
    display: block;
  }
  .preferences .accountItem .show-all-tab i,
  .preferences .singleImageRule .show-all-tab i {
    color: #c4c4c4;
  }
  .preferences .highlightingRules .show-all-tab {
    display: block;
  }
  .preferences .highlightingRules .show-all-tab .fa {
    color: gray;
  }
  .preferences .highlightingRules .highlightRule span {
    margin: -3px 5px 0;
  }
  .preferences .autoreplyRules .autoreplyRule .show-all-tab {
    display: block;
  }
  .preferences .autoreplyRules .autoreplyRule .show-all-tab i {
    color: gray;
  }
  .preferences .form-horizontal .col-sm-8 {
    width: 97%;
  }
  .preferences .form-horizontal #iftitle .col-sm-5 {
    width: 100%;
    padding-right: 0;
  }
  .preferences .form-horizontal .form-group .rightClose .form-control-static {
    margin-left: -15px;
  }
  .preferences .form-horizontal .form-group .col-sm-5 {
    width: 97%;
  }
  .preferences .form-horizontal .form-group .col-sm-4,
  .preferences .form-horizontal .form-group .col-sm-6 {
    width: 50%;
    padding-left: 0px;
  }
  .preferences .form-horizontal .form-group .col-sm-3 {
    width: 45%;
  }
  .preferences .form-horizontal .form-group .margin-top-10 {
    margin-top: 10px;
  }
  .preferences .newHighlightingRule #fontColor label {
    margin-right: 1px;
  }
  .preferences .social-list li .col-xs-2 {
    padding-right: 0;
  }
  .preferences .soundUpload a {
    margin-top: -22px;
    margin-left: 20px;
  }
  .preferences .newImageRule .extraLabel {
    margin-bottom: 10px;
  }
  .preferences .soundOption {
    display: none;
  }
}
.invalidWindow h1 {
  margin-top: 50px;
}
#winspace1 .sections-mail-compose {
  width: 100%;
}
#winspace1 .sections-mail-compose .mainCompose {
  max-height: 100%;
}
#winspace1 .sections-mail-compose .dragdrop_overlay {
  top: 0;
}
#winspace1 .msgview .topButtons {
  padding-left: 30px;
  padding-right: 30px;
}
#winspace1 .msgview .topButtons .replyBlock {
  margin-right: 40px;
}
#winspace1 .msgview .topButtons .spamDeleteBlock {
  position: absolute;
  left: 135px;
}
#winspace1 .msgview .topButtons .tooltip {
  position: fixed;
}
.onlinefax-section {
  overflow-y: auto;
  width: 100%;
  height: 100%;
}
.onlinefax-section .onlinefax-container {
  width: 100%;
  margin: 0;
  padding: 0;
}
.onlinefax-section .onlinefax-container .onlinefax-row {
  overflow: hidden;
  padding: 0;
  height: 436px;
  color: #fff;
  background-color: #444;
}
.onlinefax-section .onlinefax-container .onlinefax-row.banner-image {
  background: url(../images/onlinefax/banner-image.jpg);
  min-height: 436px;
  max-height: 700px;
  height: 40vw;
}
.onlinefax-section .onlinefax-container .onlinefax-row.footer-image {
  background: url(../images/onlinefax/footer-image.jpg);
  height: 254px;
  background-size: cover;
}
.onlinefax-section .onlinefax-container .onlinefax-row.banner-image,
.onlinefax-section .onlinefax-container .onlinefax-row.footer-image {
  color: #444;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 0;
  background-position-y: 80%;
}
.onlinefax-section .onlinefax-container .onlinefax-row.highlights-row {
  height: auto;
}
.onlinefax-section .onlinefax-container .onlinefax-row .onlinefax-btn {
  font-size: 16px;
  line-height: 16px;
  padding: 11px;
  height: 38px;
}
.onlinefax-section
  .onlinefax-container
  .onlinefax-row
  .onlinefax-static-already-have {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 400;
}
.onlinefax-section
  .onlinefax-container
  .onlinefax-row
  .onlinefax-static-already-have
  a {
  display: block;
  color: #0e57ab;
  font-weight: 600;
}
.onlinefax-section .onlinefax-container .onlinefax-row .onlinefax-fixed-col {
  width: 400px;
  margin-left: 5vw;
  margin-top: 90px;
}
.onlinefax-section .onlinefax-container .onlinefax-row .onlinefax-fixed-col h1 {
  margin-bottom: 0;
  font-weight: 300;
}
.onlinefax-section
  .onlinefax-container
  .onlinefax-row
  .onlinefax-fixed-col
  h1
  .onlinefax-static-h1-bold {
  font-weight: 500;
}
.onlinefax-section
  .onlinefax-container
  .onlinefax-row
  .onlinefax-fixed-col
  .onlinefax-static-tagline {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 20px;
}
.onlinefax-section .onlinefax-container .onlinefax-row .onlinefax-col-1-4 {
  float: left;
  width: 25%;
  margin: 0;
  text-align: center;
  padding: 90px 40px;
}
.onlinefax-section
  .onlinefax-container
  .onlinefax-row
  .onlinefax-col-1-4
  .onlinefax-col-icon
  .fa {
  font-size: 60px;
}
.onlinefax-section
  .onlinefax-container
  .onlinefax-row
  .onlinefax-col-1-4
  .onlinefax-col-content
  .onlinefax-col-content-heading {
  font-size: 22px;
}
.onlinefax-section
  .onlinefax-container
  .onlinefax-row
  .onlinefax-col-1-4
  .onlinefax-col-content
  .onlinefax-col-content-text {
  font-size: 14px;
}
.onlinefax-section
  .onlinefax-container
  .onlinefax-row
  .onlinefax-center-content {
  width: 100%;
  text-align: center;
  padding-top: 75px;
}
#preferences-faxaccount table {
  width: 50%;
}
.btn-default,
.btn-default[aria-expanded="true"],
.open > .dropdown-toggle.btn-default {
  color: #3e3e3e;
  background-color: #eee;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#eee),
    to(#eee)
  );
  background: -webkit-linear-gradient(top, #eee, #eee);
  background: -o-linear-gradient(top, #eee, #eee);
  border-color: #cdcdcd;
}
.btn-default:focus,
.btn-default:hover {
  background-color: #dbdbdb;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#dbdbdb),
    to(#dbdbdb)
  );
  background: -webkit-linear-gradient(top, #dbdbdb, #dbdbdb);
  background: -o-linear-gradient(top, #dbdbdb, #dbdbdb);
  border-color: #ccc;
}
.btn-default:active {
  color: #3e3e3e;
  background-color: #c1c1c1;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#c1c1c1),
    to(#c1c1c1)
  );
  background: -webkit-linear-gradient(top, #c1c1c1, #c1c1c1);
  background: -o-linear-gradient(top, #c1c1c1, #c1c1c1);
  border-color: #c1c1c1;
}
.btn-primary,
.btn-primary[aria-expanded="true"],
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #0e57ab;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#0e57ab),
    to(#0e57ab)
  );
  background: -webkit-linear-gradient(top, #0e57ab, #0e57ab);
  background: -o-linear-gradient(top, #0e57ab, #0e57ab);
  border-color: #08468d;
}
.btn-primary:focus,
.btn-primary:hover {
  background-color: #094992;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#094992),
    to(#094992)
  );
  background: -webkit-linear-gradient(top, #094992, #094992);
  background: -o-linear-gradient(top, #094992, #094992);
}
.btn-primary:active {
  background-color: #053975;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#053975),
    to(#053975)
  );
  background: -webkit-linear-gradient(top, #053975, #053975);
  background: -o-linear-gradient(top, #053975, #053975);
  border-color: #053975;
}
.dropdown-menu > li,
.dropdown-menu > li > a,
input.form-control,
input.form-control:focus,
select.form-control,
select.form-control:focus {
  color: #3e3e3e;
}
.dropdown-menu > li:hover:not(.divider):not(.timeIntervalItem) {
  background: #0e57ab;
}
.dropdown-menu > li > a,
.dropdown-menu > li > a:active,
.dropdown-menu > li > a:hover {
  background: inherit;
}
.fc-button {
  border-color: #dcdcdc;
  color: #444;
  background: #fafafa;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #fafafa),
    color-stop(100%, #e5e5e5)
  );
  background: -webkit-linear-gradient(top, #fafafa, #e5e5e5);
  background: linear-gradient(180deg, #fafafa 0%, #e5e5e5);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA',endColorstr='#E5E5E5',GradientType=0);
  color: #3e3e3e;
  background-color: #eee;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#eee),
    to(#eee)
  );
  background: -webkit-linear-gradient(top, #eee, #eee);
  background: -o-linear-gradient(top, #eee, #eee);
  border-color: #cdcdcd;
}
.dropdown-toggle:focus {
  outline: 2px solid #4087c9;
  -moz-outline-radius: 3px;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.theme-dark #theme-container {
  background-attachment: fixed;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.theme-dark #theme-container .level0 {
  background: rgba(0, 0, 0, 0.5);
}
.theme-dark #theme-container .level0 .side-nav0 > li > a {
  color: #fff;
}
.theme-dark #theme-container .level0 .side-nav0 > li.active > a,
.theme-dark #theme-container .level0 .side-nav0 > li > a:focus,
.theme-dark #theme-container .level0 .side-nav0 > li > a:hover {
  background: hsla(0, 0%, 100%, 0.25);
  color: #fff;
}
.theme-dark #theme-container #onlinestorage .level1,
.theme-dark #theme-container .level1 {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
}
.theme-dark #theme-container #onlinestorage .level1 b,
.theme-dark #theme-container #onlinestorage .level1 div,
.theme-dark #theme-container #onlinestorage .level1 i,
.theme-dark #theme-container #onlinestorage .level1 label,
.theme-dark #theme-container #onlinestorage .level1 legend,
.theme-dark #theme-container #onlinestorage .level1 p,
.theme-dark #theme-container #onlinestorage .level1 span,
.theme-dark #theme-container .level1 b,
.theme-dark #theme-container .level1 div,
.theme-dark #theme-container .level1 i,
.theme-dark #theme-container .level1 label,
.theme-dark #theme-container .level1 legend,
.theme-dark #theme-container .level1 p,
.theme-dark #theme-container .level1 span {
  color: #fff;
}
.theme-dark #theme-container #onlinestorage .level1 input,
.theme-dark #theme-container #onlinestorage .level1 textarea,
.theme-dark #theme-container .level1 input,
.theme-dark #theme-container .level1 textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container #onlinestorage .level1 .fa,
.theme-dark
  #theme-container
  #onlinestorage
  .level1
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark #theme-container #onlinestorage .level1 .searchbar,
.theme-dark #theme-container #onlinestorage .level1 .searchbar b,
.theme-dark #theme-container #onlinestorage .level1 .searchbar div,
.theme-dark #theme-container #onlinestorage .level1 .searchbar i,
.theme-dark #theme-container #onlinestorage .level1 .searchbar label,
.theme-dark #theme-container #onlinestorage .level1 .searchbar legend,
.theme-dark #theme-container #onlinestorage .level1 .searchbar p,
.theme-dark #theme-container #onlinestorage .level1 .searchbar span,
.theme-dark #theme-container #onlinestorage .level1 [class*="icon-wm-"],
.theme-dark
  #theme-container
  #onlinestorage
  .level1
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .level1 .fa,
.theme-dark #theme-container .level1 .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container .level1 .searchbar,
.theme-dark #theme-container .level1 .searchbar b,
.theme-dark #theme-container .level1 .searchbar div,
.theme-dark #theme-container .level1 .searchbar i,
.theme-dark #theme-container .level1 .searchbar label,
.theme-dark #theme-container .level1 .searchbar legend,
.theme-dark #theme-container .level1 .searchbar p,
.theme-dark #theme-container .level1 .searchbar span,
.theme-dark #theme-container .level1 [class*="icon-wm-"],
.theme-dark
  #theme-container
  .level1
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container #onlinestorage .level1 .searchbar .fa,
.theme-dark
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  [class*="icon-wm-"],
.theme-dark #theme-container #onlinestorage .level1 .searchbar input,
.theme-dark #theme-container #onlinestorage .level1 .searchbar textarea,
.theme-dark #theme-container .level1 .searchbar .fa,
.theme-dark #theme-container .level1 .searchbar [class*="icon-wm-"],
.theme-dark #theme-container .level1 .searchbar input,
.theme-dark #theme-container .level1 .searchbar textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .level1 .searchbar .fa.fa-square + .fa-stack-1x,
.theme-dark
  #theme-container
  .level1
  .searchbar
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container #onlinestorage .level1 .side-nav1-action-links > a,
.theme-dark
  #theme-container
  #onlinestorage
  .level1
  .side-nav1-action-links
  span,
.theme-dark #theme-container .level1 .side-nav1-action-links > a,
.theme-dark #theme-container .level1 .side-nav1-action-links span {
  color: #67b1ff;
}
.theme-dark #theme-container #onlinestorage .level1 .panel-heading,
.theme-dark #theme-container #onlinestorage .level1 .panel-heading b,
.theme-dark #theme-container #onlinestorage .level1 .panel-heading div,
.theme-dark #theme-container #onlinestorage .level1 .panel-heading i,
.theme-dark #theme-container #onlinestorage .level1 .panel-heading label,
.theme-dark #theme-container #onlinestorage .level1 .panel-heading legend,
.theme-dark #theme-container #onlinestorage .level1 .panel-heading p,
.theme-dark #theme-container #onlinestorage .level1 .panel-heading span,
.theme-dark #theme-container .level1 .panel-heading,
.theme-dark #theme-container .level1 .panel-heading b,
.theme-dark #theme-container .level1 .panel-heading div,
.theme-dark #theme-container .level1 .panel-heading i,
.theme-dark #theme-container .level1 .panel-heading label,
.theme-dark #theme-container .level1 .panel-heading legend,
.theme-dark #theme-container .level1 .panel-heading p,
.theme-dark #theme-container .level1 .panel-heading span {
  color: #fff;
}
.theme-dark #theme-container #onlinestorage .level1 .panel-heading input,
.theme-dark #theme-container #onlinestorage .level1 .panel-heading textarea,
.theme-dark #theme-container .level1 .panel-heading input,
.theme-dark #theme-container .level1 .panel-heading textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container #onlinestorage .level1 .panel-heading .fa,
.theme-dark
  #theme-container
  #onlinestorage
  .level1
  .panel-heading
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  #onlinestorage
  .level1
  .panel-heading
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  #onlinestorage
  .level1
  .panel-heading
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .level1 .panel-heading .fa,
.theme-dark
  #theme-container
  .level1
  .panel-heading
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .level1 .panel-heading [class*="icon-wm-"],
.theme-dark
  #theme-container
  .level1
  .panel-heading
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container #onlinestorage .level1 .nav1listing:focus,
.theme-dark #theme-container #onlinestorage .level1 .nav1listing:hover,
.theme-dark #theme-container .level1 .nav1listing:focus,
.theme-dark #theme-container .level1 .nav1listing:hover {
  background-color: hsla(0, 0%, 100%, 0.15);
  border: 3px solid transparent;
}
.theme-dark
  #theme-container
  #onlinestorage
  .level1
  li.active
  .nav1listing:focus,
.theme-dark
  #theme-container
  #onlinestorage
  .level1
  li.active
  .nav1listing:hover,
.theme-dark #theme-container #onlinestorage .level1 li.active > .nav1listing,
.theme-dark #theme-container .level1 li.active .nav1listing:focus,
.theme-dark #theme-container .level1 li.active .nav1listing:hover,
.theme-dark #theme-container .level1 li.active > .nav1listing {
  color: #fff;
  background-color: hsla(0, 0%, 100%, 0.35);
}
.theme-dark #theme-container #onlinestorage .level1 ul.side-nav1 li .context,
.theme-dark #theme-container .level1 ul.side-nav1 li .context {
  background-color: transparent;
}
.theme-dark #theme-container #onlinestorage .level1 .folder:hover,
.theme-dark #theme-container .level1 .folder:hover {
  color: #fff;
  background-color: hsla(0, 0%, 100%, 0.15);
  border: 3px solid transparent;
}
.theme-dark #theme-container #onlinestorage .level1 .folder.current,
.theme-dark #theme-container .level1 .folder.current {
  color: #fff;
  background-color: hsla(0, 0%, 100%, 0.35);
}
.theme-dark #theme-container .fc-toolbar,
.theme-dark #theme-container .topButtons {
  color: #fff;
  background: rgba(0, 0, 0, 0.65);
  box-shadow: none;
}
.theme-dark #theme-container .fc-toolbar b,
.theme-dark #theme-container .fc-toolbar div,
.theme-dark #theme-container .fc-toolbar i,
.theme-dark #theme-container .fc-toolbar label,
.theme-dark #theme-container .fc-toolbar legend,
.theme-dark #theme-container .fc-toolbar p,
.theme-dark #theme-container .fc-toolbar span,
.theme-dark #theme-container .topButtons b,
.theme-dark #theme-container .topButtons div,
.theme-dark #theme-container .topButtons i,
.theme-dark #theme-container .topButtons label,
.theme-dark #theme-container .topButtons legend,
.theme-dark #theme-container .topButtons p,
.theme-dark #theme-container .topButtons span {
  color: #fff;
}
.theme-dark #theme-container .fc-toolbar input,
.theme-dark #theme-container .fc-toolbar textarea,
.theme-dark #theme-container .topButtons input,
.theme-dark #theme-container .topButtons textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .fc-toolbar .fa,
.theme-dark #theme-container .fc-toolbar .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container .fc-toolbar [class*="icon-wm-"],
.theme-dark
  #theme-container
  .fc-toolbar
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .topButtons .fa,
.theme-dark #theme-container .topButtons .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container .topButtons [class*="icon-wm-"],
.theme-dark
  #theme-container
  .topButtons
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container .content {
  background-color: transparent;
}
.theme-dark #theme-container .msglist,
.theme-dark #theme-container .msglist b,
.theme-dark #theme-container .msglist div,
.theme-dark #theme-container .msglist i,
.theme-dark #theme-container .msglist label,
.theme-dark #theme-container .msglist legend,
.theme-dark #theme-container .msglist p,
.theme-dark #theme-container .msglist span {
  color: #fff;
}
.theme-dark #theme-container .msglist input,
.theme-dark #theme-container .msglist textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .msglist .fa,
.theme-dark #theme-container .msglist .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container .msglist [class*="icon-wm-"],
.theme-dark
  #theme-container
  .msglist
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container .msglist .msglistContainer {
  background: rgba(0, 0, 0, 0.5);
}
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.35);
}
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell.messageActionBar
  .fa {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell:first-child {
  border-left: 1px solid hsla(0, 0%, 100%, 0.35);
}
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell:last-child {
  border-right: 1px solid hsla(0, 0%, 100%, 0.35);
}
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked,
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected,
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active,
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover {
  background: hsla(0, 0%, 100%, 0.15);
}
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell:first-child,
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell:first-child,
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell:first-child,
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:first-child {
  border-left: 1px solid transparent;
  border-right: none;
  border-top: 1px solid transparent;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.35);
}
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell:last-child,
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell:last-child,
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell:last-child,
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:last-child {
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.35);
}
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell,
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell,
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell,
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.35);
}
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected {
  background: hsla(0, 0%, 100%, 0.35);
}
.theme-dark
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageUnread
  .messageSubject {
  color: #67b1ff;
}
.theme-dark #theme-container .msglist .paginationFooter {
  background: rgba(0, 0, 0, 0.15);
}
.theme-dark #theme-container #invitesuggestedtimesidebar #showScheduleToggle * {
  color: #0e57ab;
}
.theme-dark #theme-container .msgview {
  background: transparent;
}
.theme-dark #theme-container .msgview .nomsg,
.theme-dark #theme-container .msgview .nomsg b,
.theme-dark #theme-container .msgview .nomsg div,
.theme-dark #theme-container .msgview .nomsg i,
.theme-dark #theme-container .msgview .nomsg label,
.theme-dark #theme-container .msgview .nomsg legend,
.theme-dark #theme-container .msgview .nomsg p,
.theme-dark #theme-container .msgview .nomsgReadingPane,
.theme-dark #theme-container .msgview .nomsgReadingPane b,
.theme-dark #theme-container .msgview .nomsgReadingPane div,
.theme-dark #theme-container .msgview .nomsgReadingPane i,
.theme-dark #theme-container .msgview .nomsgReadingPane label,
.theme-dark #theme-container .msgview .nomsgReadingPane legend,
.theme-dark #theme-container .msgview .nomsgReadingPane p,
.theme-dark #theme-container .msgview .nomsgReadingPane span,
.theme-dark #theme-container .msgview .nomsg span {
  color: #fff;
}
.theme-dark #theme-container .msgview .nomsg input,
.theme-dark #theme-container .msgview .nomsgReadingPane input,
.theme-dark #theme-container .msgview .nomsgReadingPane textarea,
.theme-dark #theme-container .msgview .nomsg textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .msgview .nomsg .fa,
.theme-dark #theme-container .msgview .nomsg .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container .msgview .nomsg [class*="icon-wm-"],
.theme-dark
  #theme-container
  .msgview
  .nomsg
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .msgview .nomsgReadingPane .fa,
.theme-dark
  #theme-container
  .msgview
  .nomsgReadingPane
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .msgview .nomsgReadingPane [class*="icon-wm-"],
.theme-dark
  #theme-container
  .msgview
  .nomsgReadingPane
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container .msgview .messageContainer {
  background: #fff;
}
.theme-dark #theme-container .attachmentview-container {
  background-color: rgba(0, 0, 0, 0.5);
}
.theme-dark #theme-container .attachmentview-container .divtr:hover {
  background: hsla(0, 0%, 100%, 0.35);
}
.theme-dark #theme-container .attachmentview-container .divtr .divtd.date,
.theme-dark #theme-container .attachmentview-container .divtr .divtd.date span,
.theme-dark #theme-container .attachmentview-container .divtr .divtd.sender,
.theme-dark
  #theme-container
  .attachmentview-container
  .divtr
  .divtd.sender
  span,
.theme-dark #theme-container .attachmentview-container .divtr .divtd.size,
.theme-dark #theme-container .attachmentview-container .divtr .divtd.size span,
.theme-dark #theme-container .attachmentview-container .divtr .divtd.subject,
.theme-dark
  #theme-container
  .attachmentview-container
  .divtr
  .divtd.subject
  span,
.theme-dark #theme-container .attachmentview-container .divtr .divtd.themedtd,
.theme-dark
  #theme-container
  .attachmentview-container
  .divtr
  .divtd.themedtd
  span,
.theme-dark #theme-container .attachmentview-container .divtr .divtd.type,
.theme-dark #theme-container .attachmentview-container .divtr .divtd.type span {
  color: #fff;
}
.theme-dark #theme-container .attachmentview-container .divtr .divtd.name,
.theme-dark #theme-container .attachmentview-container .divtr .divtd.name *,
.theme-dark
  #theme-container
  .attachmentview-container
  .divtr
  .divtd.themedtd
  .fa {
  color: #67b1ff;
}
.theme-dark #theme-container .sections-mail-compose:not(.contact-groups) {
  background: rgba(0, 0, 0, 0.75);
}
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  b,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  div,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  i,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  label,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  legend,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  p,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  span,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  h3 {
  color: #fff;
}
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  input,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .fa,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  [class*="icon-wm-"] {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .fromfield,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .fromfield
  b,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .fromfield
  div,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .fromfield
  i,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .fromfield
  label,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .fromfield
  legend,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .fromfield
  p,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .fromfield
  span,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .fromfield
  input,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .fromfield
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .fromfield
  .fa,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .fromfield
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .fromfield
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .fromfield
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .selected-contact,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .selected-contact
  .fa,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .selected-contact
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .selected-contact
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .selected-contact
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .selected-contact
  b,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .selected-contact
  div,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .selected-contact
  i,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .selected-contact
  input,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .selected-contact
  label,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .selected-contact
  legend,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .selected-contact
  p,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .selected-contact
  span,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .selected-contact
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .high-priority,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .high-priority
  b,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .high-priority
  div,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .high-priority
  i,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .high-priority
  label,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .high-priority
  legend,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .high-priority
  p,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .high-priority
  span {
  color: #ff4c2e;
}
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .high-priority
  input,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .high-priority
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .high-priority
  .fa,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .high-priority
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .high-priority
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose
  .composeheaders
  .high-priority
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #ff4c2e;
}
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  #msginbcc,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  #msgincc,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  #msginto,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  #msgsubject {
  background: transparent;
  color: #fff;
}
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_inner,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_inner
  .fa,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_inner
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_inner
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_inner
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_inner
  b,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_inner
  div,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_inner
  i,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_inner
  input,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_inner
  label,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_inner
  legend,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_inner
  p,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_inner
  span,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_inner
  textarea,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_top,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_top
  .fa,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_top
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_top
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_top
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_top
  b,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_top
  div,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_top
  i,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_top
  input,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_top
  label,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_top
  legend,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_top
  p,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_top
  span,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_top
  textarea,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_wysiwyg_frame,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_wysiwyg_frame
  .fa,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_wysiwyg_frame
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_wysiwyg_frame
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_wysiwyg_frame
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_wysiwyg_frame
  b,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_wysiwyg_frame
  div,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_wysiwyg_frame
  i,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_wysiwyg_frame
  input,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_wysiwyg_frame
  label,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_wysiwyg_frame
  legend,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_wysiwyg_frame
  p,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_wysiwyg_frame
  span,
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .cke_wysiwyg_frame
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .bottomControls {
  background: transparent;
}
.theme-dark #theme-container .calendar-section h3,
.theme-dark #theme-container .calendar-section h3 b,
.theme-dark #theme-container .calendar-section h3 div,
.theme-dark #theme-container .calendar-section h3 i,
.theme-dark #theme-container .calendar-section h3 label,
.theme-dark #theme-container .calendar-section h3 legend,
.theme-dark #theme-container .calendar-section h3 p,
.theme-dark #theme-container .calendar-section h3 span {
  color: #fff;
}
.theme-dark #theme-container .calendar-section h3 input,
.theme-dark #theme-container .calendar-section h3 textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .calendar-section h3 .fa,
.theme-dark #theme-container .calendar-section h3 [class*="icon-wm-"] {
  color: #67b1ff;
}
.theme-dark #theme-container .calendar-section h3 .fa.fa-square + .fa-stack-1x,
.theme-dark
  #theme-container
  .calendar-section
  h3
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container .calendar-section a {
  color: #67b1ff;
}
.theme-dark #theme-container #mini-calendar-parent .mini-calendar-days-row th,
.theme-dark #theme-container #mini-calendar-parent .mini-calendar-days-row th b,
.theme-dark
  #theme-container
  #mini-calendar-parent
  .mini-calendar-days-row
  th
  div,
.theme-dark #theme-container #mini-calendar-parent .mini-calendar-days-row th i,
.theme-dark
  #theme-container
  #mini-calendar-parent
  .mini-calendar-days-row
  th
  label,
.theme-dark
  #theme-container
  #mini-calendar-parent
  .mini-calendar-days-row
  th
  legend,
.theme-dark #theme-container #mini-calendar-parent .mini-calendar-days-row th p,
.theme-dark
  #theme-container
  #mini-calendar-parent
  .mini-calendar-days-row
  th
  span {
  color: #fff;
}
.theme-dark
  #theme-container
  #mini-calendar-parent
  .mini-calendar-days-row
  th
  input,
.theme-dark
  #theme-container
  #mini-calendar-parent
  .mini-calendar-days-row
  th
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  #mini-calendar-parent
  .mini-calendar-days-row
  th
  .fa,
.theme-dark
  #theme-container
  #mini-calendar-parent
  .mini-calendar-days-row
  th
  [class*="icon-wm-"] {
  color: #67b1ff;
}
.theme-dark #theme-container #mini-calendar-parent .keyitem a,
.theme-dark #theme-container #mini-calendar-parent .keyitem a b,
.theme-dark #theme-container #mini-calendar-parent .keyitem a div,
.theme-dark #theme-container #mini-calendar-parent .keyitem a i,
.theme-dark #theme-container #mini-calendar-parent .keyitem a label,
.theme-dark #theme-container #mini-calendar-parent .keyitem a legend,
.theme-dark #theme-container #mini-calendar-parent .keyitem a p,
.theme-dark #theme-container #mini-calendar-parent .keyitem a span,
.theme-dark
  #theme-container
  #mini-calendar-parent
  .mini-calendar-days-row
  th
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  #mini-calendar-parent
  .mini-calendar-days-row
  th
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container #mini-calendar-parent .keyitem a input,
.theme-dark #theme-container #mini-calendar-parent .keyitem a textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container #mini-calendar-parent .keyitem a .fa,
.theme-dark
  #theme-container
  #mini-calendar-parent
  .keyitem
  a
  [class*="icon-wm-"] {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  #mini-calendar-parent
  .keyitem
  a
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  #mini-calendar-parent
  .keyitem
  a
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container #mini-calendar-parent .keyitem .selectday,
.theme-dark #theme-container #mini-calendar-parent .keyitem .selectday b,
.theme-dark #theme-container #mini-calendar-parent .keyitem .selectday div,
.theme-dark #theme-container #mini-calendar-parent .keyitem .selectday i,
.theme-dark #theme-container #mini-calendar-parent .keyitem .selectday input,
.theme-dark #theme-container #mini-calendar-parent .keyitem .selectday label,
.theme-dark #theme-container #mini-calendar-parent .keyitem .selectday legend,
.theme-dark #theme-container #mini-calendar-parent .keyitem .selectday p,
.theme-dark #theme-container #mini-calendar-parent .keyitem .selectday span,
.theme-dark
  #theme-container
  #mini-calendar-parent
  .keyitem
  .selectday
  textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container #mini-calendar-parent .keyitem .selectday .fa,
.theme-dark
  #theme-container
  #mini-calendar-parent
  .keyitem
  .selectday
  [class*="icon-wm-"] {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  #mini-calendar-parent
  .keyitem
  .selectday
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  #mini-calendar-parent
  .keyitem
  .selectday
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #3e3e3e;
}
.theme-dark #theme-container #mini-calendar-parent td.keyitem.mark-today a,
.theme-dark #theme-container #mini-calendar-parent td.keyitem.mark-today a b,
.theme-dark #theme-container #mini-calendar-parent td.keyitem.mark-today a div,
.theme-dark #theme-container #mini-calendar-parent td.keyitem.mark-today a i,
.theme-dark
  #theme-container
  #mini-calendar-parent
  td.keyitem.mark-today
  a
  label,
.theme-dark
  #theme-container
  #mini-calendar-parent
  td.keyitem.mark-today
  a
  legend,
.theme-dark #theme-container #mini-calendar-parent td.keyitem.mark-today a p,
.theme-dark
  #theme-container
  #mini-calendar-parent
  td.keyitem.mark-today
  a
  span {
  color: #fff;
}
.theme-dark
  #theme-container
  #mini-calendar-parent
  td.keyitem.mark-today
  a
  input,
.theme-dark
  #theme-container
  #mini-calendar-parent
  td.keyitem.mark-today
  a
  textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container #mini-calendar-parent td.keyitem.mark-today a .fa,
.theme-dark
  #theme-container
  #mini-calendar-parent
  td.keyitem.mark-today
  a
  [class*="icon-wm-"] {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  #mini-calendar-parent
  td.keyitem.mark-today
  a
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  #mini-calendar-parent
  td.keyitem.mark-today
  a
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container .agendaContainer .agendalist {
  background: rgba(0, 0, 0, 0.5);
}
.theme-dark #theme-container .agendaContainer .agendalist .listevents {
  background: transparent;
}
.theme-dark
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list {
  color: #fff;
  background: transparent;
}
.theme-dark
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list
  b,
.theme-dark
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list
  div,
.theme-dark
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list
  i,
.theme-dark
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list
  label,
.theme-dark
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list
  legend,
.theme-dark
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list
  p,
.theme-dark
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list
  span {
  color: #fff;
}
.theme-dark
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list
  input,
.theme-dark
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list
  .fa,
.theme-dark
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list
  [class*="icon-wm-"] {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list.active {
  background: hsla(0, 0%, 100%, 0.45);
}
.theme-dark
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list:hover {
  background: hsla(0, 0%, 100%, 0.2);
}
.theme-dark #theme-container .agendaContainer .agendalist pagination-directive {
  background: transparent;
  border: none;
  box-shadow: none;
}
.theme-dark #theme-container .calendarcnt .fc-view .fc-day {
  background: rgba(0, 0, 0, 0.3);
}
.theme-dark #theme-container .calendarcnt .fc-view .fc-day.fc-sat,
.theme-dark #theme-container .calendarcnt .fc-view .fc-day.fc-sun {
  background: rgba(0, 0, 0, 0.5);
}
.theme-dark #theme-container .calendarcnt .fc-view .fc-day.fc-today:before {
  border-color: #fff;
  border-width: 2px;
}
.theme-dark #theme-container .calendarcnt .fc-view .fc-day-number,
.theme-dark #theme-container .calendarcnt .fc-view .fc-day-number b,
.theme-dark #theme-container .calendarcnt .fc-view .fc-day-number div,
.theme-dark #theme-container .calendarcnt .fc-view .fc-day-number i,
.theme-dark #theme-container .calendarcnt .fc-view .fc-day-number label,
.theme-dark #theme-container .calendarcnt .fc-view .fc-day-number legend,
.theme-dark #theme-container .calendarcnt .fc-view .fc-day-number p,
.theme-dark #theme-container .calendarcnt .fc-view .fc-day-number span {
  color: #fff;
}
.theme-dark #theme-container .calendarcnt .fc-view .fc-day-number input,
.theme-dark #theme-container .calendarcnt .fc-view .fc-day-number textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .calendarcnt .fc-view .fc-day-number .fa,
.theme-dark
  #theme-container
  .calendarcnt
  .fc-view
  .fc-day-number
  [class*="icon-wm-"] {
  color: #67b1ff;
}
.theme-dark #theme-container .calendarcnt .fc-view .fc-axis,
.theme-dark #theme-container .calendarcnt .fc-view .fc-axis b,
.theme-dark #theme-container .calendarcnt .fc-view .fc-axis div,
.theme-dark #theme-container .calendarcnt .fc-view .fc-axis i,
.theme-dark #theme-container .calendarcnt .fc-view .fc-axis label,
.theme-dark #theme-container .calendarcnt .fc-view .fc-axis legend,
.theme-dark #theme-container .calendarcnt .fc-view .fc-axis p,
.theme-dark #theme-container .calendarcnt .fc-view .fc-axis span,
.theme-dark
  #theme-container
  .calendarcnt
  .fc-view
  .fc-day-number
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .calendarcnt
  .fc-view
  .fc-day-number
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container .calendarcnt .fc-view .fc-axis input,
.theme-dark #theme-container .calendarcnt .fc-view .fc-axis textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .calendarcnt .fc-view .fc-axis .fa,
.theme-dark
  #theme-container
  .calendarcnt
  .fc-view
  .fc-axis
  [class*="icon-wm-"] {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  .calendarcnt
  .fc-view
  .fc-axis
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .calendarcnt
  .fc-view
  .fc-axis
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container .calendarcnt .fc-view .fc-head .fc-head-container {
  border-top: none;
  border-left: none;
  border-right: none;
}
.theme-dark
  #theme-container
  .calendarcnt
  .fc-view
  .fc-head
  .fc-head-container
  .fc-widget-header {
  border-right: none;
}
.theme-dark #theme-container .calendarcnt .fc-today:not(.fc-day-number) {
  background-color: #ecf4fc;
  color: #3e3e3e;
}
.theme-dark #theme-container .calendarcnt .fc-today .fc-day-number {
  color: #3e3e3e;
}
.theme-dark #theme-container .calendar-header .fc-left h2,
.theme-dark #theme-container .calendar-header .fc-left h2 b,
.theme-dark #theme-container .calendar-header .fc-left h2 div,
.theme-dark #theme-container .calendar-header .fc-left h2 i,
.theme-dark #theme-container .calendar-header .fc-left h2 label,
.theme-dark #theme-container .calendar-header .fc-left h2 legend,
.theme-dark #theme-container .calendar-header .fc-left h2 p,
.theme-dark #theme-container .calendar-header .fc-left h2 span,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-left h2,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-left h2 b,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-left h2 div,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-left h2 i,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-left h2 label,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-left h2 legend,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-left h2 p,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-left h2 span {
  color: #fff;
}
.theme-dark #theme-container .calendar-header .fc-left h2 input,
.theme-dark #theme-container .calendar-header .fc-left h2 textarea,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-left h2 input,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-left h2 textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .calendar-header .fc-left h2 .fa,
.theme-dark #theme-container .calendar-header .fc-left h2 [class*="icon-wm-"],
.theme-dark #theme-container .calendarview .fc-toolbar .fc-left h2 .fa,
.theme-dark
  #theme-container
  .calendarview
  .fc-toolbar
  .fc-left
  h2
  [class*="icon-wm-"] {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  .calendar-header
  .fc-left
  h2
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .calendar-header
  .fc-left
  h2
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .calendarview
  .fc-toolbar
  .fc-left
  h2
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .calendarview
  .fc-toolbar
  .fc-left
  h2
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container .calendar-header .fc-button,
.theme-dark #theme-container .calendar-header .fc-button .fa,
.theme-dark
  #theme-container
  .calendar-header
  .fc-button
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .calendar-header .fc-button [class*="icon-wm-"],
.theme-dark
  #theme-container
  .calendar-header
  .fc-button
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .calendar-header .fc-button b,
.theme-dark #theme-container .calendar-header .fc-button div,
.theme-dark #theme-container .calendar-header .fc-button i,
.theme-dark #theme-container .calendar-header .fc-button input,
.theme-dark #theme-container .calendar-header .fc-button label,
.theme-dark #theme-container .calendar-header .fc-button legend,
.theme-dark #theme-container .calendar-header .fc-button p,
.theme-dark #theme-container .calendar-header .fc-button span,
.theme-dark #theme-container .calendar-header .fc-button textarea,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-button,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-button .fa,
.theme-dark
  #theme-container
  .calendarview
  .fc-toolbar
  .fc-button
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .calendarview
  .fc-toolbar
  .fc-button
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .calendarview
  .fc-toolbar
  .fc-button
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-button b,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-button div,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-button i,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-button input,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-button label,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-button legend,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-button p,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-button span,
.theme-dark #theme-container .calendarview .fc-toolbar .fc-button textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .calendar-subscribe {
  background: rgba(0, 0, 0, 0.5);
}
.theme-dark #theme-container .calendar-subscribe .calendar-subscribe-content,
.theme-dark #theme-container .calendar-subscribe .calendar-subscribe-content b,
.theme-dark
  #theme-container
  .calendar-subscribe
  .calendar-subscribe-content
  div,
.theme-dark #theme-container .calendar-subscribe .calendar-subscribe-content i,
.theme-dark
  #theme-container
  .calendar-subscribe
  .calendar-subscribe-content
  label,
.theme-dark
  #theme-container
  .calendar-subscribe
  .calendar-subscribe-content
  legend,
.theme-dark #theme-container .calendar-subscribe .calendar-subscribe-content p,
.theme-dark
  #theme-container
  .calendar-subscribe
  .calendar-subscribe-content
  span {
  color: #fff;
}
.theme-dark
  #theme-container
  .calendar-subscribe
  .calendar-subscribe-content
  input,
.theme-dark
  #theme-container
  .calendar-subscribe
  .calendar-subscribe-content
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .calendar-subscribe
  .calendar-subscribe-content
  .fa,
.theme-dark
  #theme-container
  .calendar-subscribe
  .calendar-subscribe-content
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .calendar-subscribe
  .calendar-subscribe-content
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .calendar-subscribe
  .calendar-subscribe-content
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container .eventContainer,
.theme-dark #theme-container .msgview .part-two {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.theme-dark #theme-container .eventContainer b,
.theme-dark #theme-container .eventContainer div,
.theme-dark #theme-container .eventContainer i,
.theme-dark #theme-container .eventContainer label,
.theme-dark #theme-container .eventContainer legend,
.theme-dark #theme-container .eventContainer p,
.theme-dark #theme-container .eventContainer span,
.theme-dark #theme-container .msgview .part-two b,
.theme-dark #theme-container .msgview .part-two div,
.theme-dark #theme-container .msgview .part-two i,
.theme-dark #theme-container .msgview .part-two label,
.theme-dark #theme-container .msgview .part-two legend,
.theme-dark #theme-container .msgview .part-two p,
.theme-dark #theme-container .msgview .part-two span {
  color: #fff;
}
.theme-dark #theme-container .eventContainer input,
.theme-dark #theme-container .eventContainer textarea,
.theme-dark #theme-container .msgview .part-two input,
.theme-dark #theme-container .msgview .part-two textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .eventContainer .fa,
.theme-dark #theme-container .eventContainer .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container .eventContainer [class*="icon-wm-"],
.theme-dark
  #theme-container
  .eventContainer
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .msgview .part-two .fa,
.theme-dark #theme-container .msgview .part-two .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container .msgview .part-two [class*="icon-wm-"],
.theme-dark
  #theme-container
  .msgview
  .part-two
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container .eventContainer .btn-default,
.theme-dark #theme-container .eventContainer .btn-default .fa,
.theme-dark
  #theme-container
  .eventContainer
  .btn-default
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .eventContainer .btn-default [class*="icon-wm-"],
.theme-dark
  #theme-container
  .eventContainer
  .btn-default
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .eventContainer .btn-default b,
.theme-dark #theme-container .eventContainer .btn-default div,
.theme-dark #theme-container .eventContainer .btn-default i,
.theme-dark #theme-container .eventContainer .btn-default input,
.theme-dark #theme-container .eventContainer .btn-default label,
.theme-dark #theme-container .eventContainer .btn-default legend,
.theme-dark #theme-container .eventContainer .btn-default p,
.theme-dark #theme-container .eventContainer .btn-default span,
.theme-dark #theme-container .eventContainer .btn-default textarea,
.theme-dark #theme-container .msgview .part-two .btn-default,
.theme-dark #theme-container .msgview .part-two .btn-default .fa,
.theme-dark
  #theme-container
  .msgview
  .part-two
  .btn-default
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .msgview
  .part-two
  .btn-default
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .msgview
  .part-two
  .btn-default
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .msgview .part-two .btn-default b,
.theme-dark #theme-container .msgview .part-two .btn-default div,
.theme-dark #theme-container .msgview .part-two .btn-default i,
.theme-dark #theme-container .msgview .part-two .btn-default input,
.theme-dark #theme-container .msgview .part-two .btn-default label,
.theme-dark #theme-container .msgview .part-two .btn-default legend,
.theme-dark #theme-container .msgview .part-two .btn-default p,
.theme-dark #theme-container .msgview .part-two .btn-default span,
.theme-dark #theme-container .msgview .part-two .btn-default textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .eventContent,
.theme-dark #theme-container .eventContent b,
.theme-dark #theme-container .eventContent div,
.theme-dark #theme-container .eventContent i,
.theme-dark #theme-container .eventContent label,
.theme-dark #theme-container .eventContent legend,
.theme-dark #theme-container .eventContent p,
.theme-dark #theme-container .eventContent span {
  color: #fff;
}
.theme-dark #theme-container .eventContent input,
.theme-dark #theme-container .eventContent textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .eventContent .fa,
.theme-dark #theme-container .eventContent [class*="icon-wm-"] {
  color: #67b1ff;
}
.theme-dark #theme-container .eventContent .fa.fa-square + .fa-stack-1x,
.theme-dark
  #theme-container
  .eventContent
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container .eventContent #attendeesTab:not(.selected),
.theme-dark #theme-container .eventContent #detailsTab:not(.selected) {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .suggestions
  .suggestion:not(:hover):not(.highlighted) {
  color: #3e3e3e !important;
}
.theme-dark #theme-container .suggestions .suggestion.highlighted,
.theme-dark #theme-container .suggestions .suggestion:hover {
  color: #fff !important;
}
.theme-dark #theme-container .tasklist {
  background-color: transparent;
}
.theme-dark #theme-container .tasklist .taskCellList {
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
}
.theme-dark #theme-container .tasklist .taskCellList b,
.theme-dark #theme-container .tasklist .taskCellList div,
.theme-dark #theme-container .tasklist .taskCellList i,
.theme-dark #theme-container .tasklist .taskCellList label,
.theme-dark #theme-container .tasklist .taskCellList legend,
.theme-dark #theme-container .tasklist .taskCellList p,
.theme-dark #theme-container .tasklist .taskCellList span {
  color: #fff;
}
.theme-dark #theme-container .tasklist .taskCellList input,
.theme-dark #theme-container .tasklist .taskCellList textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .tasklist .taskCellList .fa,
.theme-dark
  #theme-container
  .tasklist
  .taskCellList
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .tasklist .taskCellList .newTask,
.theme-dark #theme-container .tasklist .taskCellList .newTask b,
.theme-dark #theme-container .tasklist .taskCellList .newTask div,
.theme-dark #theme-container .tasklist .taskCellList .newTask i,
.theme-dark #theme-container .tasklist .taskCellList .newTask label,
.theme-dark #theme-container .tasklist .taskCellList .newTask legend,
.theme-dark #theme-container .tasklist .taskCellList .newTask p,
.theme-dark #theme-container .tasklist .taskCellList .newTask span,
.theme-dark #theme-container .tasklist .taskCellList [class*="icon-wm-"],
.theme-dark
  #theme-container
  .tasklist
  .taskCellList
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container .tasklist .taskCellList .newTask input,
.theme-dark #theme-container .tasklist .taskCellList .newTask textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .tasklist .taskCellList .newTask .fa,
.theme-dark
  #theme-container
  .tasklist
  .taskCellList
  .newTask
  [class*="icon-wm-"] {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  .tasklist
  .taskCellList
  .newTask
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .tasklist
  .taskCellList
  .newTask
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container .tasklist .taskCellList .taskCell,
.theme-dark #theme-container .tasklist .taskCellList .taskCell.active {
  border: 1px solid transparent;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.35);
}
.theme-dark #theme-container .tasklist .taskCellList .taskCell.active {
  background: hsla(0, 0%, 100%, 0.45);
}
.theme-dark #theme-container .tasklist .taskCellList .taskCell:hover {
  border: 1px solid transparent;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.35);
  background: hsla(0, 0%, 100%, 0.2);
}
.theme-dark
  #theme-container
  .tasklist
  .taskCellList
  .taskCell
  .taskMainBlock
  .taskSideIconBar
  button.fa {
  color: #0e57ab;
}
.theme-dark
  #theme-container
  .tasklist
  .titlebar
  .sortbar
  .btn-group.pull-left
  .dropdown-selected-option-container
  * {
  color: #fff !important;
}
.theme-dark #theme-container .tagList .tags,
.theme-dark #theme-container .tagList .tags b,
.theme-dark #theme-container .tagList .tags div,
.theme-dark #theme-container .tagList .tags i,
.theme-dark #theme-container .tagList .tags label,
.theme-dark #theme-container .tagList .tags legend,
.theme-dark #theme-container .tagList .tags p,
.theme-dark #theme-container .tagList .tags span {
  color: #fff;
}
.theme-dark #theme-container .tagList .tags input,
.theme-dark #theme-container .tagList .tags textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .tagList .tags .fa,
.theme-dark #theme-container .tagList .tags .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container .tagList .tags [class*="icon-wm-"],
.theme-dark
  #theme-container
  .tagList
  .tags
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container .tagList .tags.grayed,
.theme-dark #theme-container .tagList .tags.grayed b,
.theme-dark #theme-container .tagList .tags.grayed div,
.theme-dark #theme-container .tagList .tags.grayed i,
.theme-dark #theme-container .tagList .tags.grayed label,
.theme-dark #theme-container .tagList .tags.grayed legend,
.theme-dark #theme-container .tagList .tags.grayed p,
.theme-dark #theme-container .tagList .tags.grayed span {
  color: #2b2b2b;
}
.theme-dark #theme-container .tagList .tags.grayed input,
.theme-dark #theme-container .tagList .tags.grayed textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .tagList .tags.grayed .fa,
.theme-dark #theme-container .tagList .tags.grayed .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container .tagList .tags.grayed [class*="icon-wm-"],
.theme-dark
  #theme-container
  .tagList
  .tags.grayed
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #2b2b2b;
}
.theme-dark #theme-container .paginationFooter {
  color: #fff;
  border: none;
  box-shadow: none;
}
.theme-dark #theme-container .paginationFooter b,
.theme-dark #theme-container .paginationFooter div,
.theme-dark #theme-container .paginationFooter i,
.theme-dark #theme-container .paginationFooter label,
.theme-dark #theme-container .paginationFooter legend,
.theme-dark #theme-container .paginationFooter p,
.theme-dark #theme-container .paginationFooter span {
  color: #fff;
}
.theme-dark #theme-container .paginationFooter input,
.theme-dark #theme-container .paginationFooter textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .paginationFooter .fa,
.theme-dark #theme-container .paginationFooter [class*="icon-wm-"] {
  color: #67b1ff;
}
.theme-dark #theme-container .paginationFooter .fa.fa-square + .fa-stack-1x,
.theme-dark
  #theme-container
  .paginationFooter
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .taskview,
.theme-dark #theme-container .taskview b,
.theme-dark #theme-container .taskview div,
.theme-dark #theme-container .taskview i,
.theme-dark #theme-container .taskview label,
.theme-dark #theme-container .taskview legend,
.theme-dark #theme-container .taskview p,
.theme-dark #theme-container .taskview span {
  color: #fff;
}
.theme-dark #theme-container .taskview input,
.theme-dark #theme-container .taskview textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .taskview .fa,
.theme-dark #theme-container .taskview .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container .taskview [class*="icon-wm-"],
.theme-dark
  #theme-container
  .taskview
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container .taskContainer .contentView .taskContent {
  background: rgba(0, 0, 0, 0.5);
  min-height: 100%;
  padding-top: 20px;
}
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskBlock {
  margin-top: 0;
}
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskmsglink {
  background: transparent;
}
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  b,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  div,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  i,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  label,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  legend,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  p,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  span,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  b,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  div,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  i,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  label,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  legend,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  p,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  span,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive],
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  b,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  div,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  i,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  label,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  legend,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  p,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  span {
  color: #fff;
}
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  input,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  textarea,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  input,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  textarea,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  input,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  .fa,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  .fa,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  .fa,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  [class*="icon-wm-"] {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  input,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  input,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  input {
  background: transparent;
  color: #fff;
}
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  input::placeholder,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  input::placeholder,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  input::placeholder {
  color: hsla(0, 0%, 100%, 0.5);
}
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  .selected-tags,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  .selected-tags
  b,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  .selected-tags
  div,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  .selected-tags
  i,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  .selected-tags
  label,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  .selected-tags
  legend,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  .selected-tags
  p,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  .selected-tags
  span,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  .selected-tags,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  .selected-tags
  b,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  .selected-tags
  div,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  .selected-tags
  i,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  .selected-tags
  label,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  .selected-tags
  legend,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  .selected-tags
  p,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  .selected-tags
  span,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  .selected-tags,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  .selected-tags
  b,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  .selected-tags
  div,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  .selected-tags
  i,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  .selected-tags
  label,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  .selected-tags
  legend,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  .selected-tags
  p,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  .selected-tags
  span {
  color: #fff;
}
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  .selected-tags
  input,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  .selected-tags
  textarea,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  .selected-tags
  input,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  .selected-tags
  textarea,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  .selected-tags
  input,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  .selected-tags
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  .selected-tags
  .fa,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  .selected-tags
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  .selected-tags
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .newSubTask
  .selected-tags
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  .selected-tags
  .fa,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  .selected-tags
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  .selected-tags
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskcollabs
  .selected-tags
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  .selected-tags
  .fa,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  .selected-tags
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  .selected-tags
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  div[tags-directive]
  .selected-tags
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .subTaskCell
  .taskMainBlock
  .taskSideIconBar
  span.fa {
  color: #0e57ab;
}
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .icon-wm-contacts {
  color: #fff !important;
}
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .datetimecnt
  .fa {
  color: #67b1ff;
}
.theme-dark #theme-container .taskContainer .contentView .bottomControls {
  background: rgba(0, 0, 0, 0.85);
}
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .bottomControls
  .attachmentPanel
  .attachmentBlock
  .attachments_title,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .bottomControls
  .attachmentPanel
  .attachmentBlock
  .attachments_title
  .fa,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .bottomControls
  .attachmentPanel
  .attachmentBlock
  .attachments_title
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .bottomControls
  .attachmentPanel
  .attachmentBlock
  .attachments_title
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .bottomControls
  .attachmentPanel
  .attachmentBlock
  .attachments_title
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .bottomControls
  .attachmentPanel
  .attachmentBlock
  .attachments_title
  b,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .bottomControls
  .attachmentPanel
  .attachmentBlock
  .attachments_title
  div,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .bottomControls
  .attachmentPanel
  .attachmentBlock
  .attachments_title
  i,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .bottomControls
  .attachmentPanel
  .attachmentBlock
  .attachments_title
  input,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .bottomControls
  .attachmentPanel
  .attachmentBlock
  .attachments_title
  label,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .bottomControls
  .attachmentPanel
  .attachmentBlock
  .attachments_title
  legend,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .bottomControls
  .attachmentPanel
  .attachmentBlock
  .attachments_title
  p,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .bottomControls
  .attachmentPanel
  .attachmentBlock
  .attachments_title
  span,
.theme-dark
  #theme-container
  .taskContainer
  .contentView
  .bottomControls
  .attachmentPanel
  .attachmentBlock
  .attachments_title
  textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .paginationFixed {
  background: rgba(0, 0, 0, 0.85);
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists {
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  b,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  div,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  i,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  label,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  legend,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  p,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  span {
  color: #fff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  input,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .fa,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  [class*="icon-wm-"] {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .contacts-letters-div,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .contacts-letters-div
  b,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .contacts-letters-div
  div,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .contacts-letters-div
  i,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .contacts-letters-div
  label,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .contacts-letters-div
  legend,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .contacts-letters-div
  p,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .contacts-letters-div
  span,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .contacts-letters-div
  input,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .contacts-letters-div
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .contacts-letters-div
  .fa,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .contacts-letters-div
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .contacts-letters-div
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .contacts-letters-div
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  pagination-directive {
  background: rgba(0, 0, 0, 0.85);
  border: none;
  box-shadow: none;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  pagination-directive
  .btn-default
  * {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .contacts-long-list {
  background: transparent;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.active,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.keynavActive,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li:hover {
  box-shadow: none;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li:hover {
  background: hsla(0, 0%, 100%, 0.2);
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.active {
  background: hsla(0, 0%, 100%, 0.35);
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor {
  color: #fff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  > :not(.nomsg) {
  background: rgba(0, 0, 0, 0.5);
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  b,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  div,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  i,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  label,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  legend,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  p,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  span {
  color: #fff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  input,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .fa,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  [class*="icon-wm-"] {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div {
  background: transparent;
  color: #fff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  b,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  div,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  i,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  label,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  legend,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  p,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  span {
  color: #fff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  input,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  .fa,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  .plus-button,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  .plus-button
  b,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  .plus-button
  div,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  .plus-button
  i,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  .plus-button
  label,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  .plus-button
  legend,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  .plus-button
  p,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  .plus-button
  span,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  .plus-button
  input,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  .plus-button
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  .plus-button
  .fa,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  .plus-button
  [class*="icon-wm-"] {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  .plus-button
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .long-div
  .plus-button
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .nomsg,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .nomsg
  b,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .nomsg
  div,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .nomsg
  i,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .nomsg
  label,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .nomsg
  legend,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .nomsg
  p,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .nomsg
  span {
  color: #fff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .nomsg
  input,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .nomsg
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .contacts-single-contact
  h3,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .nomsg
  .fa,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .nomsg
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .nomsg
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .nomsg
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .contacts-single-contact
  .mini-social-part
  .fa {
  color: #595959;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .contacts-single-contact
  .mini-social-part
  .fa.active {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .sections-mail-compose {
  background-color: transparent;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .sections-mail-compose
  button.addgroup {
  border-color: #67b1ff;
  color: #67b1ff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .sections-mail-compose
  button.addgroup
  b,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .sections-mail-compose
  button.addgroup
  div,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .sections-mail-compose
  button.addgroup
  i,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .sections-mail-compose
  button.addgroup
  label,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .sections-mail-compose
  button.addgroup
  legend,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .sections-mail-compose
  button.addgroup
  p,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .sections-mail-compose
  button.addgroup
  span {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .sections-mail-compose
  button.addgroup
  input,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .sections-mail-compose
  button.addgroup
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .sections-mail-compose
  button.addgroup
  .fa,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .sections-mail-compose
  button.addgroup
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .sections-mail-compose
  button.addgroup
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .sections-mail-compose
  button.addgroup
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .selected-tags,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .selected-tags
  .fa.fa-close,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .selected-tags
  span {
  color: #000;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-editor
  .fa-angle-down {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-subscribe,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-group,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-lists,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container {
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-subscribe
  b,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-subscribe
  div,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-subscribe
  i,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-subscribe
  label,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-subscribe
  legend,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-subscribe
  p,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-subscribe
  span,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-group
  b,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-group
  div,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-group
  i,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-group
  label,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-group
  legend,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-group
  p,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-group
  span,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-lists
  b,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-lists
  div,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-lists
  i,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-lists
  label,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-lists
  legend,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-lists
  p,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-lists
  span,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  b,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  div,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  i,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  label,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  legend,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  p,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  span {
  color: #fff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-subscribe
  input,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-subscribe
  textarea,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-group
  input,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-group
  textarea,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-lists
  input,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-lists
  textarea,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  input,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-subscribe
  .fa,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-subscribe
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-subscribe
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-subscribe
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-subscribe
  h3,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-group
  .fa,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-group
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-group
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-group
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-group
  h3,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-lists
  .fa,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-lists
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-lists
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-lists
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-lists
  h3,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  .fa,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  h3 {
  color: #fff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-subscribe
  .fa-angle-down,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .contacts-subscribe
  .suggestions-list
  .list-group
  li:not(:hover):not(.highlighted)
  span,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-group
  .fa-angle-down,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-group
  .suggestions-list
  .list-group
  li:not(:hover):not(.highlighted)
  span,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-lists
  .fa-angle-down,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .create-new-lists
  .suggestions-list
  .list-group
  li:not(:hover):not(.highlighted)
  span,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  .fa-angle-down,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  .fields-container-top
  div,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  .suggestions-list
  .list-group
  li:not(:hover):not(.highlighted)
  span {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  .fields-container {
  color: #3e3e3e;
  background: #fff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  .fields-container
  b,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  .fields-container
  div,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  .fields-container
  i,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  .fields-container
  input,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  .fields-container
  label,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  .fields-container
  legend,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  .fields-container
  p,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  .fields-container
  span,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  .fields-container
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  .fields-container
  .fa,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  .fields-container
  [class*="icon-wm-"] {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  .fields-container
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  .fields-container
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .import-contacts-container
  .fields-container.light-transparent {
  background: transparent;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .duplicates-container {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .duplicates-container
  b,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .duplicates-container
  div,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .duplicates-container
  h3,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .duplicates-container
  i,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .duplicates-container
  label,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .duplicates-container
  legend,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .duplicates-container
  p,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .duplicates-container
  span {
  color: #fff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .duplicates-container
  input,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .duplicates-container
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .duplicates-container
  .fa,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .duplicates-container
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .duplicates-container
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .duplicates-container
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .duplicates-container
  a,
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .duplicates-container
  a
  * {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .duplicates-container
  pagination-directive {
  background: rgba(0, 0, 0, 0.6);
  box-shadow: none;
  border: none;
}
.theme-dark
  #theme-container
  .contacts-section:not(.sidebarcontent)
  .more-groups-list
  ul
  > li {
  color: #3e3e3e;
}
.theme-dark #theme-container #onlinestorage .path-container,
.theme-dark #theme-container #onlinestorage .toolbar {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.theme-dark #theme-container #onlinestorage .list-view-content,
.theme-dark #theme-container #onlinestorage .list-view-content b,
.theme-dark #theme-container #onlinestorage .list-view-content div,
.theme-dark #theme-container #onlinestorage .list-view-content i,
.theme-dark #theme-container #onlinestorage .list-view-content label,
.theme-dark #theme-container #onlinestorage .list-view-content legend,
.theme-dark #theme-container #onlinestorage .list-view-content p,
.theme-dark #theme-container #onlinestorage .list-view-content span,
.theme-dark #theme-container #onlinestorage .loading {
  color: #fff;
}
.theme-dark #theme-container #onlinestorage .list-view-content input,
.theme-dark #theme-container #onlinestorage .list-view-content textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container #onlinestorage .list-view-content .fa,
.theme-dark
  #theme-container
  #onlinestorage
  .list-view-content
  [class*="icon-wm-"] {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  #onlinestorage
  .list-view-content
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  #onlinestorage
  .list-view-content
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container #onlinestorage .list-view-content .file,
.theme-dark #theme-container #onlinestorage .list-view-content .folder {
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.35);
}
.theme-dark
  #theme-container
  #onlinestorage
  .list-view-content
  .file
  .type-column
  .fa,
.theme-dark
  #theme-container
  #onlinestorage
  .list-view-content
  .folder
  .type-column
  .fa {
  color: #fff;
}
.theme-dark
  #theme-container
  #onlinestorage
  .list-view-content
  .file
  .name-column,
.theme-dark
  #theme-container
  #onlinestorage
  .list-view-content
  .folder
  .name-column {
  color: #67b1ff;
}
.theme-dark #theme-container #onlinestorage .list-view-content .file:hover,
.theme-dark #theme-container #onlinestorage .list-view-content .folder:hover {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.35);
  background: hsla(0, 0%, 100%, 0.35);
}
.theme-dark #theme-container #onlinestorage .list-view-content .file.checked,
.theme-dark #theme-container #onlinestorage .list-view-content .folder.checked {
  background: hsla(0, 0%, 100%, 0.15);
}
.theme-dark #theme-container #onlinestorage .list-view-content .file.dragover,
.theme-dark
  #theme-container
  #onlinestorage
  .list-view-content
  .folder.dragover {
  border: 3px solid #767676;
}
.theme-dark
  #theme-container
  #onlinestorage
  .list-view-content
  tr.folder.dragover {
  border: 3px solid #767676;
  padding: 1px 0;
}
.theme-dark #theme-container #onlinestorage .thumbnail-view .thumbnail-folder {
  background: #fff;
}
.theme-dark
  #theme-container
  #onlinestorage
  .side-sidebar
  button:not(.btn):not(.expandablelabel) {
  color: #0e57ab;
}
.theme-dark
  #theme-container
  #onlinestorage
  .side-sidebar
  button:not(.btn):not(.expandablelabel)
  .fa {
  color: #0e57ab !important;
}
.theme-dark
  #theme-container
  #onlinestorage
  .side-sidebar
  .sidebarcontent
  .emailAddressesAndLinks
  .link
  .circled-borders-radius
  .fa-link,
.theme-dark
  #theme-container
  #onlinestorage
  .side-sidebar
  .sidebarcontent
  .file
  .thumbnail-file
  .file-icon {
  color: #fff !important;
}
.theme-dark
  #theme-container
  #onlinestorage
  .side-sidebar
  .onlinestorage-homepage
  .homepage-content {
  background: #fff;
}
.theme-dark #theme-container .preferences {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.theme-dark #theme-container .preferences b,
.theme-dark #theme-container .preferences div,
.theme-dark #theme-container .preferences i,
.theme-dark #theme-container .preferences label,
.theme-dark #theme-container .preferences legend,
.theme-dark #theme-container .preferences p,
.theme-dark #theme-container .preferences span {
  color: #fff;
}
.theme-dark #theme-container .preferences input,
.theme-dark #theme-container .preferences textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .preferences .fa,
.theme-dark #theme-container .preferences .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container .preferences [class*="icon-wm-"],
.theme-dark
  #theme-container
  .preferences
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container .preferences a {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  .preferences#preferences-mobile-general
  .content_text,
.theme-dark #theme-container .preferences#preferences-mobile-general ol > li {
  color: #fff;
}
.theme-dark #theme-container .preferences .pgpPreferences table thead tr {
  background-color: #eee;
}
.theme-dark #theme-container .preferences .pgpPreferences table thead tr th {
  color: #3e3e3e;
}
.theme-dark #theme-container .preferences .pgpPreferences tbody tr {
  background-color: #fff;
}
.theme-dark #theme-container .preferences .pgpPreferences tbody tr:hover {
  background-color: #e8f2fc;
}
.theme-dark #theme-container .preferences .pgpPreferences tbody tr td,
.theme-dark
  #theme-container
  .preferences
  .pgpPreferences
  tbody
  tr
  td:first-child
  .fa {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .preferences
  .pgpPreferences
  tbody
  tr
  td:last-child
  .fa {
  color: #0e57ab;
}
.theme-dark #theme-container .preferences .pgpPreferences .emptyPgpListInfo,
.theme-dark #theme-container .preferences .pgpPreferences .emptyPgpListInfo b,
.theme-dark #theme-container .preferences .pgpPreferences .emptyPgpListInfo div,
.theme-dark #theme-container .preferences .pgpPreferences .emptyPgpListInfo i,
.theme-dark
  #theme-container
  .preferences
  .pgpPreferences
  .emptyPgpListInfo
  label,
.theme-dark
  #theme-container
  .preferences
  .pgpPreferences
  .emptyPgpListInfo
  legend,
.theme-dark #theme-container .preferences .pgpPreferences .emptyPgpListInfo p,
.theme-dark
  #theme-container
  .preferences
  .pgpPreferences
  .emptyPgpListInfo
  span {
  color: #fff;
}
.theme-dark
  #theme-container
  .preferences
  .pgpPreferences
  .emptyPgpListInfo
  input,
.theme-dark
  #theme-container
  .preferences
  .pgpPreferences
  .emptyPgpListInfo
  textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .preferences .gmailInstruction h4,
.theme-dark #theme-container .preferences .passStrength h4,
.theme-dark #theme-container .preferences .pgpPreferences .emptyPgpListInfo .fa,
.theme-dark
  #theme-container
  .preferences
  .pgpPreferences
  .emptyPgpListInfo
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .preferences
  .pgpPreferences
  .emptyPgpListInfo
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .preferences
  .pgpPreferences
  .emptyPgpListInfo
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container .preferences .error-message,
.theme-dark #theme-container .preferences .error-message p,
.theme-dark #theme-container .preferences .error-message span {
  color: #000;
}
.theme-dark #theme-container .preferences .autoReplyRule .singleRule p span,
.theme-dark #theme-container .preferences .fa-volume-up,
.theme-dark #theme-container .preferences .newMessageFilter .conditions {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  .preferences#preferences-keyboardshortcuts
  table.shortcutsTable
  caption
  h4 {
  color: #fff;
}
.theme-dark #theme-container .preferences .allowlistItem .fa-plus-square,
.theme-dark #theme-container .preferences .blocklistItem .fa-plus-square {
  color: #67b1ff;
}
.theme-dark
  #theme-container
  .preferences#preferences-usage
  .dataBreakdown
  .byFolder
  .folderName {
  color: #fff;
}
.theme-dark #theme-container #htmlLink {
  color: #0e57ab !important;
}
.theme-dark
  #theme-container
  div[keyarrownav-directive]
  .keyitem:not(.selected-contact):not(.tags).active,
.theme-dark
  #theme-container
  div[keyarrownav-directive]
  .keyitem:not(.selected-contact):not(.tags).keynavActive,
.theme-dark
  #theme-container
  div[keyarrownav-directive]
  .keyitem:not(.selected-contact):not(.tags):active,
.theme-dark
  #theme-container
  div[keyarrownav-directive]
  .keyitem:not(.selected-contact):not(.tags):focus,
.theme-dark
  #theme-container
  div[keyarrownav-directive]
  .keyitem:not(.selected-contact):not(.tags):hover {
  background: hsla(0, 0%, 100%, 0.5);
  color: #fff;
}
.theme-dark
  #theme-container
  div[keyarrownav-directive]
  .keyitem:not(.selected-contact):not(.tags).active
  a,
.theme-dark
  #theme-container
  div[keyarrownav-directive]
  .keyitem:not(.selected-contact):not(.tags).keynavActive
  a,
.theme-dark
  #theme-container
  div[keyarrownav-directive]
  .keyitem:not(.selected-contact):not(.tags):active
  a,
.theme-dark
  #theme-container
  div[keyarrownav-directive]
  .keyitem:not(.selected-contact):not(.tags):focus
  a,
.theme-dark
  #theme-container
  div[keyarrownav-directive]
  .keyitem:not(.selected-contact):not(.tags):hover
  a {
  color: #fff;
}
.theme-dark #theme-container .btn-default,
.theme-dark #theme-container .btn-default .fa,
.theme-dark #theme-container .btn-default .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container .btn-default [class*="icon-wm-"],
.theme-dark
  #theme-container
  .btn-default
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .btn-default b,
.theme-dark #theme-container .btn-default div,
.theme-dark #theme-container .btn-default i,
.theme-dark #theme-container .btn-default input,
.theme-dark #theme-container .btn-default label,
.theme-dark #theme-container .btn-default legend,
.theme-dark #theme-container .btn-default p,
.theme-dark #theme-container .btn-default span,
.theme-dark #theme-container .btn-default textarea,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget),
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  .fa,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  b,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  div,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  i,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  input,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  label,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  legend,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  p,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  span,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem) {
  color: #fff;
}
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem):not(:hover):not(:focus):not(:active),
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem):not(:hover):not(:focus):not(:active)
  .fa,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem):not(:hover):not(:focus):not(:active)
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem):not(:hover):not(:focus):not(:active)
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem):not(:hover):not(:focus):not(:active)
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem):not(:hover):not(:focus):not(:active)
  b,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem):not(:hover):not(:focus):not(:active)
  div,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem):not(:hover):not(:focus):not(:active)
  i,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem):not(:hover):not(:focus):not(:active)
  input,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem):not(:hover):not(:focus):not(:active)
  label,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem):not(:hover):not(:focus):not(:active)
  legend,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem):not(:hover):not(:focus):not(:active)
  p,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem):not(:hover):not(:focus):not(:active)
  span,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem):not(:hover):not(:focus):not(:active)
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem):not(:hover):not(:focus):not(:active)
  .groupTag {
  color: #757575;
}
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  b,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  div,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  i,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  label,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  legend,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  p,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  span {
  color: #fff;
}
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  input,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  textarea {
  color: #3e3e3e;
}
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  .fa,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:active,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:active
  b,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:active
  div,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:active
  i,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:active
  label,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:active
  legend,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:active
  p,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:active
  span,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  b,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  div,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  i,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  label,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  legend,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  p,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  span,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  b,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  div,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  i,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  label,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  legend,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  p,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  span {
  color: #fff !important;
}
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:active
  input,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:active
  textarea,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  input,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  textarea,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  input,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  textarea {
  color: #3e3e3e !important;
}
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:active
  .fa,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:active
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:active
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:active
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  .fa,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  .fa,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff !important;
}
.theme-dark #theme-container .autofill-list-container,
.theme-dark #theme-container .autofill-list-container .fa,
.theme-dark
  #theme-container
  .autofill-list-container
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .autofill-list-container [class*="icon-wm-"],
.theme-dark
  #theme-container
  .autofill-list-container
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .autofill-list-container b,
.theme-dark #theme-container .autofill-list-container div,
.theme-dark #theme-container .autofill-list-container i,
.theme-dark #theme-container .autofill-list-container input,
.theme-dark #theme-container .autofill-list-container label,
.theme-dark #theme-container .autofill-list-container legend,
.theme-dark #theme-container .autofill-list-container p,
.theme-dark #theme-container .autofill-list-container span,
.theme-dark #theme-container .autofill-list-container textarea,
.theme-dark #theme-container .collaborator-suggestions,
.theme-dark #theme-container .collaborator-suggestions .fa,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .collaborator-suggestions [class*="icon-wm-"],
.theme-dark
  #theme-container
  .collaborator-suggestions
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .collaborator-suggestions b,
.theme-dark #theme-container .collaborator-suggestions div,
.theme-dark #theme-container .collaborator-suggestions i,
.theme-dark #theme-container .collaborator-suggestions input,
.theme-dark #theme-container .collaborator-suggestions label,
.theme-dark #theme-container .collaborator-suggestions legend,
.theme-dark #theme-container .collaborator-suggestions p,
.theme-dark #theme-container .collaborator-suggestions span,
.theme-dark #theme-container .collaborator-suggestions textarea,
.theme-dark #theme-container .dropdown-options-container,
.theme-dark #theme-container .dropdown-options-container .fa,
.theme-dark
  #theme-container
  .dropdown-options-container
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .dropdown-options-container [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-options-container
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .dropdown-options-container b,
.theme-dark #theme-container .dropdown-options-container div,
.theme-dark #theme-container .dropdown-options-container i,
.theme-dark #theme-container .dropdown-options-container input,
.theme-dark #theme-container .dropdown-options-container label,
.theme-dark #theme-container .dropdown-options-container legend,
.theme-dark #theme-container .dropdown-options-container p,
.theme-dark #theme-container .dropdown-options-container span,
.theme-dark #theme-container .dropdown-options-container textarea,
.theme-dark #theme-container .dropdown-select,
.theme-dark #theme-container .dropdown-select .fa,
.theme-dark #theme-container .dropdown-select .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container .dropdown-select [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-select
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .dropdown-select b,
.theme-dark #theme-container .dropdown-select div,
.theme-dark #theme-container .dropdown-select i,
.theme-dark #theme-container .dropdown-select input,
.theme-dark #theme-container .dropdown-select label,
.theme-dark #theme-container .dropdown-select legend,
.theme-dark #theme-container .dropdown-select p,
.theme-dark #theme-container .dropdown-select span,
.theme-dark #theme-container .dropdown-select textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .autofill-list-container .dropdown-option,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container,
.theme-dark #theme-container .autofill-list-container li,
.theme-dark #theme-container .collaborator-suggestions .dropdown-option,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container,
.theme-dark #theme-container .collaborator-suggestions li,
.theme-dark #theme-container .dropdown-options-container .dropdown-option,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container,
.theme-dark #theme-container .dropdown-options-container li,
.theme-dark #theme-container .dropdown-select .dropdown-option,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container,
.theme-dark #theme-container .dropdown-select li {
  color: #fff !important;
}
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover),
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  .fa,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  b,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  div,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  i,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  input,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  label,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  legend,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  p,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  span,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  textarea,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(
    :hover
  ),
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  .fa,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  b,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  div,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  i,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  input,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  label,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  legend,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  p,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  span,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  textarea,
.theme-dark
  #theme-container
  .autofill-list-container
  li:not(.highlighted):not(.active):not(:hover),
.theme-dark
  #theme-container
  .autofill-list-container
  li:not(.highlighted):not(.active):not(:hover)
  .fa,
.theme-dark
  #theme-container
  .autofill-list-container
  li:not(.highlighted):not(.active):not(:hover)
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .autofill-list-container
  li:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .autofill-list-container
  li:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .autofill-list-container
  li:not(.highlighted):not(.active):not(:hover)
  b,
.theme-dark
  #theme-container
  .autofill-list-container
  li:not(.highlighted):not(.active):not(:hover)
  div,
.theme-dark
  #theme-container
  .autofill-list-container
  li:not(.highlighted):not(.active):not(:hover)
  i,
.theme-dark
  #theme-container
  .autofill-list-container
  li:not(.highlighted):not(.active):not(:hover)
  input,
.theme-dark
  #theme-container
  .autofill-list-container
  li:not(.highlighted):not(.active):not(:hover)
  label,
.theme-dark
  #theme-container
  .autofill-list-container
  li:not(.highlighted):not(.active):not(:hover)
  legend,
.theme-dark
  #theme-container
  .autofill-list-container
  li:not(.highlighted):not(.active):not(:hover)
  p,
.theme-dark
  #theme-container
  .autofill-list-container
  li:not(.highlighted):not(.active):not(:hover)
  span,
.theme-dark
  #theme-container
  .autofill-list-container
  li:not(.highlighted):not(.active):not(:hover)
  textarea,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-option:not(.highlighted):not(.active):not(:hover),
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  .fa,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  b,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  div,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  i,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  input,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  label,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  legend,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  p,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  span,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  textarea,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(
    :hover
  ),
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  .fa,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  b,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  div,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  i,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  input,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  label,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  legend,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  p,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  span,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  textarea,
.theme-dark
  #theme-container
  .collaborator-suggestions
  li:not(.highlighted):not(.active):not(:hover),
.theme-dark
  #theme-container
  .collaborator-suggestions
  li:not(.highlighted):not(.active):not(:hover)
  .fa,
.theme-dark
  #theme-container
  .collaborator-suggestions
  li:not(.highlighted):not(.active):not(:hover)
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .collaborator-suggestions
  li:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .collaborator-suggestions
  li:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .collaborator-suggestions
  li:not(.highlighted):not(.active):not(:hover)
  b,
.theme-dark
  #theme-container
  .collaborator-suggestions
  li:not(.highlighted):not(.active):not(:hover)
  div,
.theme-dark
  #theme-container
  .collaborator-suggestions
  li:not(.highlighted):not(.active):not(:hover)
  i,
.theme-dark
  #theme-container
  .collaborator-suggestions
  li:not(.highlighted):not(.active):not(:hover)
  input,
.theme-dark
  #theme-container
  .collaborator-suggestions
  li:not(.highlighted):not(.active):not(:hover)
  label,
.theme-dark
  #theme-container
  .collaborator-suggestions
  li:not(.highlighted):not(.active):not(:hover)
  legend,
.theme-dark
  #theme-container
  .collaborator-suggestions
  li:not(.highlighted):not(.active):not(:hover)
  p,
.theme-dark
  #theme-container
  .collaborator-suggestions
  li:not(.highlighted):not(.active):not(:hover)
  span,
.theme-dark
  #theme-container
  .collaborator-suggestions
  li:not(.highlighted):not(.active):not(:hover)
  textarea,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover),
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  .fa,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  b,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  div,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  i,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  input,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  label,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  legend,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  p,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  span,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  textarea,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(
    :hover
  ),
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  .fa,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  b,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  div,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  i,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  input,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  label,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  legend,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  p,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  span,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  textarea,
.theme-dark
  #theme-container
  .dropdown-options-container
  li:not(.highlighted):not(.active):not(:hover),
.theme-dark
  #theme-container
  .dropdown-options-container
  li:not(.highlighted):not(.active):not(:hover)
  .fa,
.theme-dark
  #theme-container
  .dropdown-options-container
  li:not(.highlighted):not(.active):not(:hover)
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-options-container
  li:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-options-container
  li:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-options-container
  li:not(.highlighted):not(.active):not(:hover)
  b,
.theme-dark
  #theme-container
  .dropdown-options-container
  li:not(.highlighted):not(.active):not(:hover)
  div,
.theme-dark
  #theme-container
  .dropdown-options-container
  li:not(.highlighted):not(.active):not(:hover)
  i,
.theme-dark
  #theme-container
  .dropdown-options-container
  li:not(.highlighted):not(.active):not(:hover)
  input,
.theme-dark
  #theme-container
  .dropdown-options-container
  li:not(.highlighted):not(.active):not(:hover)
  label,
.theme-dark
  #theme-container
  .dropdown-options-container
  li:not(.highlighted):not(.active):not(:hover)
  legend,
.theme-dark
  #theme-container
  .dropdown-options-container
  li:not(.highlighted):not(.active):not(:hover)
  p,
.theme-dark
  #theme-container
  .dropdown-options-container
  li:not(.highlighted):not(.active):not(:hover)
  span,
.theme-dark
  #theme-container
  .dropdown-options-container
  li:not(.highlighted):not(.active):not(:hover)
  textarea,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-option:not(.highlighted):not(.active):not(:hover),
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  .fa,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  b,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  div,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  i,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  input,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  label,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  legend,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  p,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  span,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  textarea,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(
    :hover
  ),
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  .fa,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  b,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  div,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  i,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  input,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  label,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  legend,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  p,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  span,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  textarea,
.theme-dark
  #theme-container
  .dropdown-select
  li:not(.highlighted):not(.active):not(:hover),
.theme-dark
  #theme-container
  .dropdown-select
  li:not(.highlighted):not(.active):not(:hover)
  .fa,
.theme-dark
  #theme-container
  .dropdown-select
  li:not(.highlighted):not(.active):not(:hover)
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-select
  li:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-select
  li:not(.highlighted):not(.active):not(:hover)
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-select
  li:not(.highlighted):not(.active):not(:hover)
  b,
.theme-dark
  #theme-container
  .dropdown-select
  li:not(.highlighted):not(.active):not(:hover)
  div,
.theme-dark
  #theme-container
  .dropdown-select
  li:not(.highlighted):not(.active):not(:hover)
  i,
.theme-dark
  #theme-container
  .dropdown-select
  li:not(.highlighted):not(.active):not(:hover)
  input,
.theme-dark
  #theme-container
  .dropdown-select
  li:not(.highlighted):not(.active):not(:hover)
  label,
.theme-dark
  #theme-container
  .dropdown-select
  li:not(.highlighted):not(.active):not(:hover)
  legend,
.theme-dark
  #theme-container
  .dropdown-select
  li:not(.highlighted):not(.active):not(:hover)
  p,
.theme-dark
  #theme-container
  .dropdown-select
  li:not(.highlighted):not(.active):not(:hover)
  span,
.theme-dark
  #theme-container
  .dropdown-select
  li:not(.highlighted):not(.active):not(:hover)
  textarea {
  color: #3e3e3e !important;
}
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  .groupTag,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  .groupTag,
.theme-dark
  #theme-container
  .autofill-list-container
  li:not(.highlighted):not(.active):not(:hover)
  .groupTag,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  .groupTag,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  .groupTag,
.theme-dark
  #theme-container
  .collaborator-suggestions
  li:not(.highlighted):not(.active):not(:hover)
  .groupTag,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  .groupTag,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  .groupTag,
.theme-dark
  #theme-container
  .dropdown-options-container
  li:not(.highlighted):not(.active):not(:hover)
  .groupTag,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-option:not(.highlighted):not(.active):not(:hover)
  .groupTag,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:not(.highlighted):not(.active):not(:hover)
  .groupTag,
.theme-dark
  #theme-container
  .dropdown-select
  li:not(.highlighted):not(.active):not(:hover)
  .groupTag {
  color: #757575 !important;
}
.theme-dark #theme-container .autofill-list-container .dropdown-option b,
.theme-dark #theme-container .autofill-list-container .dropdown-option div,
.theme-dark #theme-container .autofill-list-container .dropdown-option i,
.theme-dark #theme-container .autofill-list-container .dropdown-option label,
.theme-dark #theme-container .autofill-list-container .dropdown-option legend,
.theme-dark #theme-container .autofill-list-container .dropdown-option p,
.theme-dark #theme-container .autofill-list-container .dropdown-option span,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container
  b,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container
  div,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container
  i,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container
  label,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container
  legend,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container
  p,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container
  span,
.theme-dark #theme-container .autofill-list-container li b,
.theme-dark #theme-container .autofill-list-container li div,
.theme-dark #theme-container .autofill-list-container li i,
.theme-dark #theme-container .autofill-list-container li label,
.theme-dark #theme-container .autofill-list-container li legend,
.theme-dark #theme-container .autofill-list-container li p,
.theme-dark #theme-container .autofill-list-container li span,
.theme-dark #theme-container .collaborator-suggestions .dropdown-option b,
.theme-dark #theme-container .collaborator-suggestions .dropdown-option div,
.theme-dark #theme-container .collaborator-suggestions .dropdown-option i,
.theme-dark #theme-container .collaborator-suggestions .dropdown-option label,
.theme-dark #theme-container .collaborator-suggestions .dropdown-option legend,
.theme-dark #theme-container .collaborator-suggestions .dropdown-option p,
.theme-dark #theme-container .collaborator-suggestions .dropdown-option span,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container
  b,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container
  div,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container
  i,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container
  label,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container
  legend,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container
  p,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container
  span,
.theme-dark #theme-container .collaborator-suggestions li b,
.theme-dark #theme-container .collaborator-suggestions li div,
.theme-dark #theme-container .collaborator-suggestions li i,
.theme-dark #theme-container .collaborator-suggestions li label,
.theme-dark #theme-container .collaborator-suggestions li legend,
.theme-dark #theme-container .collaborator-suggestions li p,
.theme-dark #theme-container .collaborator-suggestions li span,
.theme-dark #theme-container .dropdown-options-container .dropdown-option b,
.theme-dark #theme-container .dropdown-options-container .dropdown-option div,
.theme-dark #theme-container .dropdown-options-container .dropdown-option i,
.theme-dark #theme-container .dropdown-options-container .dropdown-option label,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-option
  legend,
.theme-dark #theme-container .dropdown-options-container .dropdown-option p,
.theme-dark #theme-container .dropdown-options-container .dropdown-option span,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container
  b,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container
  div,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container
  i,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container
  label,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container
  legend,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container
  p,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container
  span,
.theme-dark #theme-container .dropdown-options-container li b,
.theme-dark #theme-container .dropdown-options-container li div,
.theme-dark #theme-container .dropdown-options-container li i,
.theme-dark #theme-container .dropdown-options-container li label,
.theme-dark #theme-container .dropdown-options-container li legend,
.theme-dark #theme-container .dropdown-options-container li p,
.theme-dark #theme-container .dropdown-options-container li span,
.theme-dark #theme-container .dropdown-select .dropdown-option b,
.theme-dark #theme-container .dropdown-select .dropdown-option div,
.theme-dark #theme-container .dropdown-select .dropdown-option i,
.theme-dark #theme-container .dropdown-select .dropdown-option label,
.theme-dark #theme-container .dropdown-select .dropdown-option legend,
.theme-dark #theme-container .dropdown-select .dropdown-option p,
.theme-dark #theme-container .dropdown-select .dropdown-option span,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container
  b,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container
  div,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container
  i,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container
  label,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container
  legend,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container
  p,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container
  span,
.theme-dark #theme-container .dropdown-select li b,
.theme-dark #theme-container .dropdown-select li div,
.theme-dark #theme-container .dropdown-select li i,
.theme-dark #theme-container .dropdown-select li label,
.theme-dark #theme-container .dropdown-select li legend,
.theme-dark #theme-container .dropdown-select li p,
.theme-dark #theme-container .dropdown-select li span {
  color: #fff !important;
}
.theme-dark #theme-container .autofill-list-container .dropdown-option input,
.theme-dark #theme-container .autofill-list-container .dropdown-option textarea,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container
  input,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container
  textarea,
.theme-dark #theme-container .autofill-list-container li input,
.theme-dark #theme-container .autofill-list-container li textarea,
.theme-dark #theme-container .collaborator-suggestions .dropdown-option input,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-option
  textarea,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container
  input,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container
  textarea,
.theme-dark #theme-container .collaborator-suggestions li input,
.theme-dark #theme-container .collaborator-suggestions li textarea,
.theme-dark #theme-container .dropdown-options-container .dropdown-option input,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-option
  textarea,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container
  input,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container
  textarea,
.theme-dark #theme-container .dropdown-options-container li input,
.theme-dark #theme-container .dropdown-options-container li textarea,
.theme-dark #theme-container .dropdown-select .dropdown-option input,
.theme-dark #theme-container .dropdown-select .dropdown-option textarea,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container
  input,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container
  textarea,
.theme-dark #theme-container .dropdown-select li input,
.theme-dark #theme-container .dropdown-select li textarea {
  color: #3e3e3e !important;
}
.theme-dark #theme-container .autofill-list-container .dropdown-option .fa,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-option
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-option
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-option
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container
  .fa,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .autofill-list-container li .fa,
.theme-dark
  #theme-container
  .autofill-list-container
  li
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .autofill-list-container li [class*="icon-wm-"],
.theme-dark
  #theme-container
  .autofill-list-container
  li
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .collaborator-suggestions .dropdown-option .fa,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-option
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-option
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-option
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container
  .fa,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .collaborator-suggestions li .fa,
.theme-dark
  #theme-container
  .collaborator-suggestions
  li
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .collaborator-suggestions li [class*="icon-wm-"],
.theme-dark
  #theme-container
  .collaborator-suggestions
  li
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .dropdown-options-container .dropdown-option .fa,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-option
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-option
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-option
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container
  .fa,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .dropdown-options-container li .fa,
.theme-dark
  #theme-container
  .dropdown-options-container
  li
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .dropdown-options-container li [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-options-container
  li
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .dropdown-select .dropdown-option .fa,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-option
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-option
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-option
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container
  .fa,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .dropdown-select li .fa,
.theme-dark #theme-container .dropdown-select li .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container .dropdown-select li [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-select
  li
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff !important;
}
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:hover,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:hover
  .fa,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:hover
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:hover
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:hover
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:hover
  b,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:hover
  div,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:hover
  i,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:hover
  input,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:hover
  label,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:hover
  legend,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:hover
  p,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:hover
  span,
.theme-dark
  #theme-container
  .autofill-list-container
  .dropdown-selected-option-container:hover
  textarea,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:hover,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:hover
  .fa,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:hover
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:hover
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:hover
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:hover
  b,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:hover
  div,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:hover
  i,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:hover
  input,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:hover
  label,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:hover
  legend,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:hover
  p,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:hover
  span,
.theme-dark
  #theme-container
  .collaborator-suggestions
  .dropdown-selected-option-container:hover
  textarea,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:hover,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:hover
  .fa,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:hover
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:hover
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:hover
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:hover
  b,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:hover
  div,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:hover
  i,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:hover
  input,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:hover
  label,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:hover
  legend,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:hover
  p,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:hover
  span,
.theme-dark
  #theme-container
  .dropdown-options-container
  .dropdown-selected-option-container:hover
  textarea,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:hover,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:hover
  .fa,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:hover
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:hover
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:hover
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:hover
  b,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:hover
  div,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:hover
  i,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:hover
  input,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:hover
  label,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:hover
  legend,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:hover
  p,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:hover
  span,
.theme-dark
  #theme-container
  .dropdown-select
  .dropdown-selected-option-container:hover
  textarea {
  color: #3e3e3e !important;
}
.theme-dark #theme-container .btn-primary,
.theme-dark #theme-container .btn-primary b,
.theme-dark #theme-container .btn-primary div,
.theme-dark #theme-container .btn-primary i,
.theme-dark #theme-container .btn-primary label,
.theme-dark #theme-container .btn-primary legend,
.theme-dark #theme-container .btn-primary p,
.theme-dark #theme-container .btn-primary span {
  color: #fff;
}
.theme-dark #theme-container .btn-primary input,
.theme-dark #theme-container .btn-primary textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .btn-primary .fa,
.theme-dark #theme-container .btn-primary .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container .btn-primary [class*="icon-wm-"],
.theme-dark
  #theme-container
  .btn-primary
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container .sidebarcontent,
.theme-dark #theme-container [sidebar-directive] {
  color: #3e3e3e !important;
  background: #fff;
}
.theme-dark #theme-container .sidebarcontent .fa,
.theme-dark #theme-container .sidebarcontent .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container .sidebarcontent [class*="icon-wm-"],
.theme-dark
  #theme-container
  .sidebarcontent
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .sidebarcontent b,
.theme-dark #theme-container .sidebarcontent div,
.theme-dark #theme-container .sidebarcontent i,
.theme-dark #theme-container .sidebarcontent input,
.theme-dark #theme-container .sidebarcontent label,
.theme-dark #theme-container .sidebarcontent legend,
.theme-dark #theme-container .sidebarcontent p,
.theme-dark #theme-container .sidebarcontent span,
.theme-dark #theme-container .sidebarcontent textarea,
.theme-dark #theme-container [sidebar-directive] .fa,
.theme-dark #theme-container [sidebar-directive] .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container [sidebar-directive] [class*="icon-wm-"],
.theme-dark
  #theme-container
  [sidebar-directive]
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container [sidebar-directive] b,
.theme-dark #theme-container [sidebar-directive] div,
.theme-dark #theme-container [sidebar-directive] i,
.theme-dark #theme-container [sidebar-directive] input,
.theme-dark #theme-container [sidebar-directive] label,
.theme-dark #theme-container [sidebar-directive] legend,
.theme-dark #theme-container [sidebar-directive] p,
.theme-dark #theme-container [sidebar-directive] span,
.theme-dark #theme-container [sidebar-directive] textarea {
  color: #3e3e3e !important;
}
.theme-dark #theme-container .sidebarcontent .level1,
.theme-dark #theme-container [sidebar-directive] .level1 {
  background: #fff;
}
.theme-dark #theme-container .sidebarcontent .collapse-section,
.theme-dark #theme-container .sidebarcontent .collapse-section b,
.theme-dark #theme-container .sidebarcontent .collapse-section div,
.theme-dark #theme-container .sidebarcontent .collapse-section i,
.theme-dark #theme-container .sidebarcontent .collapse-section label,
.theme-dark #theme-container .sidebarcontent .collapse-section legend,
.theme-dark #theme-container .sidebarcontent .collapse-section p,
.theme-dark #theme-container .sidebarcontent .collapse-section span,
.theme-dark #theme-container [sidebar-directive] .collapse-section,
.theme-dark #theme-container [sidebar-directive] .collapse-section b,
.theme-dark #theme-container [sidebar-directive] .collapse-section div,
.theme-dark #theme-container [sidebar-directive] .collapse-section i,
.theme-dark #theme-container [sidebar-directive] .collapse-section label,
.theme-dark #theme-container [sidebar-directive] .collapse-section legend,
.theme-dark #theme-container [sidebar-directive] .collapse-section p,
.theme-dark #theme-container [sidebar-directive] .collapse-section span {
  color: #fff !important;
}
.theme-dark #theme-container .sidebarcontent .collapse-section input,
.theme-dark #theme-container .sidebarcontent .collapse-section textarea,
.theme-dark #theme-container [sidebar-directive] .collapse-section input,
.theme-dark #theme-container [sidebar-directive] .collapse-section textarea {
  color: #3e3e3e !important;
}
.theme-dark #theme-container .sidebarcontent .collapse-section .fa,
.theme-dark
  #theme-container
  .sidebarcontent
  .collapse-section
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .sidebarcontent
  .collapse-section
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .sidebarcontent
  .collapse-section
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa,
.theme-dark
  #theme-container
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  b,
.theme-dark
  #theme-container
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  div,
.theme-dark
  #theme-container
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  i,
.theme-dark
  #theme-container
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  label,
.theme-dark
  #theme-container
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  legend,
.theme-dark
  #theme-container
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  p,
.theme-dark
  #theme-container
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  span,
.theme-dark #theme-container [sidebar-directive] .collapse-section .fa,
.theme-dark
  #theme-container
  [sidebar-directive]
  .collapse-section
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  [sidebar-directive]
  .collapse-section
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  [sidebar-directive]
  .collapse-section
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  [sidebar-directive]
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa,
.theme-dark
  #theme-container
  [sidebar-directive]
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  b,
.theme-dark
  #theme-container
  [sidebar-directive]
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  div,
.theme-dark
  #theme-container
  [sidebar-directive]
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  i,
.theme-dark
  #theme-container
  [sidebar-directive]
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  label,
.theme-dark
  #theme-container
  [sidebar-directive]
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  legend,
.theme-dark
  #theme-container
  [sidebar-directive]
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  p,
.theme-dark
  #theme-container
  [sidebar-directive]
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  span {
  color: #fff !important;
}
.theme-dark
  #theme-container
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  input,
.theme-dark
  #theme-container
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  textarea,
.theme-dark
  #theme-container
  [sidebar-directive]
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  input,
.theme-dark
  #theme-container
  [sidebar-directive]
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  textarea {
  color: #3e3e3e !important;
}
.theme-dark
  #theme-container
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  .fa,
.theme-dark
  #theme-container
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .sidebarcontent
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  [sidebar-directive]
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  .fa,
.theme-dark
  #theme-container
  [sidebar-directive]
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  [sidebar-directive]
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  [sidebar-directive]
  .collapse
  .selectable-thumb
  .thumb-image
  .selectable-checkbox
  .fa
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff !important;
}
.theme-dark #theme-container .sidebarcontent .upload-container .upload-button,
.theme-dark #theme-container .sidebarcontent .upload-container .upload-button b,
.theme-dark
  #theme-container
  .sidebarcontent
  .upload-container
  .upload-button
  div,
.theme-dark #theme-container .sidebarcontent .upload-container .upload-button i,
.theme-dark
  #theme-container
  .sidebarcontent
  .upload-container
  .upload-button
  label,
.theme-dark
  #theme-container
  .sidebarcontent
  .upload-container
  .upload-button
  legend,
.theme-dark #theme-container .sidebarcontent .upload-container .upload-button p,
.theme-dark
  #theme-container
  .sidebarcontent
  .upload-container
  .upload-button
  span,
.theme-dark
  #theme-container
  [sidebar-directive]
  .upload-container
  .upload-button,
.theme-dark
  #theme-container
  [sidebar-directive]
  .upload-container
  .upload-button
  b,
.theme-dark
  #theme-container
  [sidebar-directive]
  .upload-container
  .upload-button
  div,
.theme-dark
  #theme-container
  [sidebar-directive]
  .upload-container
  .upload-button
  i,
.theme-dark
  #theme-container
  [sidebar-directive]
  .upload-container
  .upload-button
  label,
.theme-dark
  #theme-container
  [sidebar-directive]
  .upload-container
  .upload-button
  legend,
.theme-dark
  #theme-container
  [sidebar-directive]
  .upload-container
  .upload-button
  p,
.theme-dark
  #theme-container
  [sidebar-directive]
  .upload-container
  .upload-button
  span {
  color: #0e57ab;
}
.theme-dark
  #theme-container
  .sidebarcontent
  .upload-container
  .upload-button
  input,
.theme-dark
  #theme-container
  .sidebarcontent
  .upload-container
  .upload-button
  textarea,
.theme-dark
  #theme-container
  [sidebar-directive]
  .upload-container
  .upload-button
  input,
.theme-dark
  #theme-container
  [sidebar-directive]
  .upload-container
  .upload-button
  textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .sidebarcontent .attendeeRemove,
.theme-dark
  #theme-container
  .sidebarcontent
  .upload-container
  .upload-button
  .fa,
.theme-dark
  #theme-container
  .sidebarcontent
  .upload-container
  .upload-button
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .sidebarcontent
  .upload-container
  .upload-button
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .sidebarcontent
  .upload-container
  .upload-button
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container [sidebar-directive] .attendeeRemove,
.theme-dark
  #theme-container
  [sidebar-directive]
  .upload-container
  .upload-button
  .fa,
.theme-dark
  #theme-container
  [sidebar-directive]
  .upload-container
  .upload-button
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  [sidebar-directive]
  .upload-container
  .upload-button
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  [sidebar-directive]
  .upload-container
  .upload-button
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #0e57ab;
}
.theme-dark #theme-container .icon-wm-organizer,
.theme-dark #theme-container .icon-wm-organizer b,
.theme-dark #theme-container .icon-wm-organizer div,
.theme-dark #theme-container .icon-wm-organizer i,
.theme-dark #theme-container .icon-wm-organizer label,
.theme-dark #theme-container .icon-wm-organizer legend,
.theme-dark #theme-container .icon-wm-organizer p,
.theme-dark #theme-container .icon-wm-organizer span {
  color: #54acd2 !important;
}
.theme-dark #theme-container .icon-wm-organizer input,
.theme-dark #theme-container .icon-wm-organizer textarea {
  color: #3e3e3e !important;
}
.theme-dark #theme-container .icon-wm-organizer .fa,
.theme-dark #theme-container .icon-wm-organizer .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container .icon-wm-organizer [class*="icon-wm-"],
.theme-dark
  #theme-container
  .icon-wm-organizer
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #54acd2 !important;
}
.theme-dark #theme-container .bootstrap-datetimepicker-widget,
.theme-dark #theme-container .bootstrap-datetimepicker-widget .fa,
.theme-dark
  #theme-container
  .bootstrap-datetimepicker-widget
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .bootstrap-datetimepicker-widget
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .bootstrap-datetimepicker-widget
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .bootstrap-datetimepicker-widget b,
.theme-dark #theme-container .bootstrap-datetimepicker-widget div,
.theme-dark #theme-container .bootstrap-datetimepicker-widget i,
.theme-dark #theme-container .bootstrap-datetimepicker-widget input,
.theme-dark #theme-container .bootstrap-datetimepicker-widget label,
.theme-dark #theme-container .bootstrap-datetimepicker-widget legend,
.theme-dark #theme-container .bootstrap-datetimepicker-widget p,
.theme-dark #theme-container .bootstrap-datetimepicker-widget span,
.theme-dark #theme-container .bootstrap-datetimepicker-widget textarea {
  color: #3e3e3e !important;
}
.theme-dark
  #theme-container
  .bootstrap-datetimepicker-widget
  .picker-switch.accordion-toggle,
.theme-dark
  #theme-container
  .bootstrap-datetimepicker-widget
  .picker-switch.accordion-toggle
  b,
.theme-dark
  #theme-container
  .bootstrap-datetimepicker-widget
  .picker-switch.accordion-toggle
  div,
.theme-dark
  #theme-container
  .bootstrap-datetimepicker-widget
  .picker-switch.accordion-toggle
  i,
.theme-dark
  #theme-container
  .bootstrap-datetimepicker-widget
  .picker-switch.accordion-toggle
  label,
.theme-dark
  #theme-container
  .bootstrap-datetimepicker-widget
  .picker-switch.accordion-toggle
  legend,
.theme-dark
  #theme-container
  .bootstrap-datetimepicker-widget
  .picker-switch.accordion-toggle
  p,
.theme-dark
  #theme-container
  .bootstrap-datetimepicker-widget
  .picker-switch.accordion-toggle
  span {
  color: #67b1ff !important;
}
.theme-dark
  #theme-container
  .bootstrap-datetimepicker-widget
  .picker-switch.accordion-toggle
  input,
.theme-dark
  #theme-container
  .bootstrap-datetimepicker-widget
  .picker-switch.accordion-toggle
  textarea {
  color: #3e3e3e !important;
}
.theme-dark
  #theme-container
  .bootstrap-datetimepicker-widget
  .picker-switch.accordion-toggle
  .fa,
.theme-dark
  #theme-container
  .bootstrap-datetimepicker-widget
  .picker-switch.accordion-toggle
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .bootstrap-datetimepicker-widget
  .picker-switch.accordion-toggle
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .bootstrap-datetimepicker-widget
  .picker-switch.accordion-toggle
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container [datetimepicker-directive] > div > span.fa {
  color: #67b1ff !important;
}
.theme-dark #theme-container .freebusy {
  color: #3e3e3e;
}
.theme-dark #theme-container .freebusy .aboveHeader {
  background: transparent;
}
.theme-dark #theme-container .freebusy .aboveHeader .eventTime,
.theme-dark #theme-container .freebusy .aboveHeader .eventTime > *,
.theme-dark #theme-container .freebusy .aboveHeader .nextAvailableTimeSlot,
.theme-dark #theme-container .freebusy .aboveHeader .nextAvailableTimeSlot > * {
  color: #fff;
}
.theme-dark #theme-container .freebusy .fa,
.theme-dark #theme-container .freebusy .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container .freebusy [class*="icon-wm-"],
.theme-dark
  #theme-container
  .freebusy
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .freebusy b,
.theme-dark #theme-container .freebusy div,
.theme-dark #theme-container .freebusy i,
.theme-dark #theme-container .freebusy input,
.theme-dark #theme-container .freebusy label,
.theme-dark #theme-container .freebusy legend,
.theme-dark #theme-container .freebusy p,
.theme-dark #theme-container .freebusy span,
.theme-dark #theme-container .freebusy textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .freebusy .users .user .fa.fa-remove {
  color: #67b1ff;
}
.theme-dark #theme-container .freebusy .users .user .infodata,
.theme-dark #theme-container .freebusy .users .user .infodata .fa,
.theme-dark
  #theme-container
  .freebusy
  .users
  .user
  .infodata
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .freebusy
  .users
  .user
  .infodata
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .freebusy
  .users
  .user
  .infodata
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .freebusy .users .user .infodata b,
.theme-dark #theme-container .freebusy .users .user .infodata div,
.theme-dark #theme-container .freebusy .users .user .infodata i,
.theme-dark #theme-container .freebusy .users .user .infodata input,
.theme-dark #theme-container .freebusy .users .user .infodata label,
.theme-dark #theme-container .freebusy .users .user .infodata legend,
.theme-dark #theme-container .freebusy .users .user .infodata p,
.theme-dark #theme-container .freebusy .users .user .infodata span,
.theme-dark #theme-container .freebusy .users .user .infodata textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .freebusy .users .sorted-attendee,
.theme-dark #theme-container .freebusy .users .sorted-attendee > :first-child,
.theme-dark #theme-container .freebusy .users .timeline,
.theme-dark #theme-container .freebusy .users .timeline > :first-child,
.theme-dark #theme-container .freebusy .users .user,
.theme-dark #theme-container .freebusy .users .user > :first-child {
  background: #fff;
}
.theme-dark
  #theme-container
  .freebusy
  .footer
  .suggestions
  .suggestion.highlighted,
.theme-dark #theme-container .freebusy .footer .suggestions .suggestion:hover,
.theme-dark #theme-container .freebusy .showCustomHours,
.theme-dark #theme-container .freebusy .showCustomHours b,
.theme-dark #theme-container .freebusy .showCustomHours div,
.theme-dark #theme-container .freebusy .showCustomHours i,
.theme-dark #theme-container .freebusy .showCustomHours label,
.theme-dark #theme-container .freebusy .showCustomHours legend,
.theme-dark #theme-container .freebusy .showCustomHours p,
.theme-dark #theme-container .freebusy .showCustomHours span {
  color: #fff;
}
.theme-dark #theme-container .freebusy .showCustomHours input,
.theme-dark #theme-container .freebusy .showCustomHours textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .freebusy .showCustomHours .fa,
.theme-dark
  #theme-container
  .freebusy
  .showCustomHours
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .freebusy .showCustomHours [class*="icon-wm-"],
.theme-dark
  #theme-container
  .freebusy
  .showCustomHours
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container .freebusy .showCustomHours a {
  color: #67b1ff;
}
.theme-dark #theme-container .freebusy .conflicts,
.theme-dark #theme-container .freebusy .conflicts b,
.theme-dark #theme-container .freebusy .conflicts div,
.theme-dark #theme-container .freebusy .conflicts i,
.theme-dark #theme-container .freebusy .conflicts label,
.theme-dark #theme-container .freebusy .conflicts legend,
.theme-dark #theme-container .freebusy .conflicts p,
.theme-dark #theme-container .freebusy .conflicts span {
  color: #fff;
}
.theme-dark #theme-container .freebusy .conflicts input,
.theme-dark #theme-container .freebusy .conflicts textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container .freebusy .conflicts .fa,
.theme-dark #theme-container .freebusy .conflicts [class*="icon-wm-"] {
  color: #ad1b00;
}
.theme-dark #theme-container .freebusy .conflicts .fa.fa-square + .fa-stack-1x,
.theme-dark
  #theme-container
  .freebusy
  .conflicts
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff;
}
.theme-dark #theme-container .freebusy .conflicts a {
  color: #67b1ff;
}
.theme-dark #theme-container #colorPicker {
  background-color: #fff;
}
.theme-dark #theme-container #colorPicker .fa-angle-down {
  color: #3e3e3e;
}
.theme-dark #theme-container .modal-body > b *,
.theme-dark #theme-container .modal-body > div *,
.theme-dark #theme-container .modal-body > i *,
.theme-dark #theme-container .modal-body > label *,
.theme-dark #theme-container .modal-body > legend *,
.theme-dark #theme-container .modal-body > p *,
.theme-dark #theme-container .modal-body > span *,
.theme-dark #theme-container .modal-content > b *,
.theme-dark #theme-container .modal-content > div *,
.theme-dark #theme-container .modal-content > i *,
.theme-dark #theme-container .modal-content > label *,
.theme-dark #theme-container .modal-content > legend *,
.theme-dark #theme-container .modal-content > p *,
.theme-dark #theme-container .modal-content > span *,
.theme-dark #theme-container .modal-dialog > b *,
.theme-dark #theme-container .modal-dialog > div *,
.theme-dark #theme-container .modal-dialog > i *,
.theme-dark #theme-container .modal-dialog > label *,
.theme-dark #theme-container .modal-dialog > legend *,
.theme-dark #theme-container .modal-dialog > p *,
.theme-dark #theme-container .modal-dialog > span *,
.theme-dark #theme-container .modal-footer > b *,
.theme-dark #theme-container .modal-footer > div *,
.theme-dark #theme-container .modal-footer > i *,
.theme-dark #theme-container .modal-footer > label *,
.theme-dark #theme-container .modal-footer > legend *,
.theme-dark #theme-container .modal-footer > p *,
.theme-dark #theme-container .modal-footer > span *,
.theme-dark #theme-container .modal-header > b *,
.theme-dark #theme-container .modal-header > div *,
.theme-dark #theme-container .modal-header > i *,
.theme-dark #theme-container .modal-header > label *,
.theme-dark #theme-container .modal-header > legend *,
.theme-dark #theme-container .modal-header > p *,
.theme-dark #theme-container .modal-header > span * {
  color: #3e3e3e !important;
}
.theme-dark #theme-container .modal-footer button.btn.btn-default,
.theme-dark #theme-container .modal-footer button.btn.btn-default b,
.theme-dark #theme-container .modal-footer button.btn.btn-default div,
.theme-dark #theme-container .modal-footer button.btn.btn-default i,
.theme-dark #theme-container .modal-footer button.btn.btn-default label,
.theme-dark #theme-container .modal-footer button.btn.btn-default legend,
.theme-dark #theme-container .modal-footer button.btn.btn-default p,
.theme-dark #theme-container .modal-footer button.btn.btn-default span {
  color: #0e57ab !important;
}
.theme-dark #theme-container .modal-footer button.btn.btn-default input,
.theme-dark #theme-container .modal-footer button.btn.btn-default textarea {
  color: #3e3e3e !important;
}
.theme-dark #theme-container .modal-footer button.btn.btn-default .fa,
.theme-dark
  #theme-container
  .modal-footer
  button.btn.btn-default
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .modal-footer
  button.btn.btn-default
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  .modal-footer
  button.btn.btn-default
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #0e57ab !important;
}
.theme-dark #theme-container .modal-footer button.btn.btn-primary,
.theme-dark #theme-container .modal-footer button.btn.btn-primary b,
.theme-dark #theme-container .modal-footer button.btn.btn-primary div,
.theme-dark #theme-container .modal-footer button.btn.btn-primary i,
.theme-dark #theme-container .modal-footer button.btn.btn-primary label,
.theme-dark #theme-container .modal-footer button.btn.btn-primary legend,
.theme-dark #theme-container .modal-footer button.btn.btn-primary p,
.theme-dark #theme-container .modal-footer button.btn.btn-primary span {
  color: #fff !important;
}
.theme-dark #theme-container .modal-footer button.btn.btn-primary input,
.theme-dark #theme-container .modal-footer button.btn.btn-primary textarea {
  color: #3e3e3e !important;
}
.theme-dark #theme-container .modal-footer button.btn.btn-primary .fa,
.theme-dark
  #theme-container
  .modal-footer
  button.btn.btn-primary
  [class*="icon-wm-"] {
  color: #0e57ab !important;
}
.theme-dark
  #theme-container
  .modal-footer
  button.btn.btn-primary
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .modal-footer
  button.btn.btn-primary
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff !important;
}
.theme-dark #theme-container #featurespotlight-sidebar .fa-close,
.theme-dark #theme-container #featurespotlight-sidebar .sidebarheader * {
  color: #3e3e3e;
}
.theme-dark #theme-container #featurespotlight-sidebar button.link-button,
.theme-dark #theme-container #featurespotlight-sidebar button.link-button b,
.theme-dark #theme-container #featurespotlight-sidebar button.link-button div,
.theme-dark #theme-container #featurespotlight-sidebar button.link-button i,
.theme-dark #theme-container #featurespotlight-sidebar button.link-button label,
.theme-dark
  #theme-container
  #featurespotlight-sidebar
  button.link-button
  legend,
.theme-dark #theme-container #featurespotlight-sidebar button.link-button p,
.theme-dark #theme-container #featurespotlight-sidebar button.link-button span {
  color: #0e57ab;
}
.theme-dark #theme-container #featurespotlight-sidebar button.link-button input,
.theme-dark
  #theme-container
  #featurespotlight-sidebar
  button.link-button
  textarea {
  color: #3e3e3e;
}
.theme-dark #theme-container #featurespotlight-sidebar button.link-button .fa,
.theme-dark
  #theme-container
  #featurespotlight-sidebar
  button.link-button
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  #featurespotlight-sidebar
  button.link-button
  [class*="icon-wm-"],
.theme-dark
  #theme-container
  #featurespotlight-sidebar
  button.link-button
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #0e57ab;
}
.theme-dark #theme-container #featurespotlight-sidebar .subtitle {
  color: gray;
}
.theme-dark #theme-container .attachFilestyle,
.theme-dark #theme-container .attachFilestyle .fa,
.theme-dark #theme-container .attachFilestyle .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container .attachFilestyle [class*="icon-wm-"],
.theme-dark
  #theme-container
  .attachFilestyle
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x,
.theme-dark #theme-container .attachFilestyle b,
.theme-dark #theme-container .attachFilestyle div,
.theme-dark #theme-container .attachFilestyle i,
.theme-dark #theme-container .attachFilestyle input,
.theme-dark #theme-container .attachFilestyle label,
.theme-dark #theme-container .attachFilestyle legend,
.theme-dark #theme-container .attachFilestyle p,
.theme-dark #theme-container .attachFilestyle span,
.theme-dark #theme-container .attachFilestyle textarea {
  color: #3e3e3e !important;
}
.theme-dark #theme-container .dropdownbox {
  background-color: #fff;
}
.theme-dark #theme-container .dropdownbox > span {
  color: #3e3e3e;
}
.theme-dark #theme-container .icon-wm-contacts,
.theme-dark #theme-container .tooltip,
.theme-dark #theme-container .tooltip b,
.theme-dark #theme-container .tooltip div,
.theme-dark #theme-container .tooltip i,
.theme-dark #theme-container .tooltip label,
.theme-dark #theme-container .tooltip legend,
.theme-dark #theme-container .tooltip p,
.theme-dark #theme-container .tooltip span {
  color: #fff !important;
}
.theme-dark #theme-container .tooltip input,
.theme-dark #theme-container .tooltip textarea {
  color: #3e3e3e !important;
}
.theme-dark #theme-container .tooltip .fa,
.theme-dark #theme-container .tooltip .fa.fa-square + .fa-stack-1x,
.theme-dark #theme-container .tooltip [class*="icon-wm-"],
.theme-dark
  #theme-container
  .tooltip
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #fff !important;
}
.theme-dark #theme-container .instructionsButton + .tooltip,
.theme-dark #theme-container .instructionsButton + .tooltip b,
.theme-dark #theme-container .instructionsButton + .tooltip div,
.theme-dark #theme-container .instructionsButton + .tooltip i,
.theme-dark #theme-container .instructionsButton + .tooltip input,
.theme-dark #theme-container .instructionsButton + .tooltip label,
.theme-dark #theme-container .instructionsButton + .tooltip legend,
.theme-dark #theme-container .instructionsButton + .tooltip p,
.theme-dark #theme-container .instructionsButton + .tooltip span,
.theme-dark #theme-container .instructionsButton + .tooltip textarea {
  color: #3e3e3e !important;
}
.theme-dark #theme-container .instructionsButton + .tooltip .fa,
.theme-dark
  #theme-container
  .instructionsButton
  + .tooltip
  [class*="icon-wm-"] {
  color: #fff !important;
}
.theme-dark
  #theme-container
  .instructionsButton
  + .tooltip
  .fa.fa-square
  + .fa-stack-1x,
.theme-dark
  #theme-container
  .instructionsButton
  + .tooltip
  [class*="icon-wm-"].fa-square
  + .fa-stack-1x {
  color: #3e3e3e !important;
}
.theme-dark #theme-container #topModalContainer .animated-block .btn-start,
.theme-dark #theme-container #topModalContainer .fa,
.theme-dark #theme-container #topModalContainer .tour-email-modal-header * {
  color: #fff !important;
}
.theme-dark #theme-container .nomsg a {
  color: #fff;
  text-decoration: underline;
}
.theme-light #theme-container {
  background-attachment: fixed;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.theme-light #theme-container .level0 {
  background: hsla(0, 0%, 100%, 0.75);
}
.theme-light #theme-container .level0 .side-nav0 > li > a {
  color: #333;
}
.theme-light #theme-container .level0 .side-nav0 > li.active > a,
.theme-light #theme-container .level0 .side-nav0 > li > a:focus,
.theme-light #theme-container .level0 .side-nav0 > li > a:hover {
  background: hsla(0, 0%, 46%, 0.75);
  color: #333;
}
.theme-light #theme-container #onlinestorage .level1,
.theme-light #theme-container .level1 {
  background: hsla(0, 0%, 100%, 0.4);
}
.theme-light
  #theme-container
  #onlinestorage
  .level1
  .nav1listing.personalFolder.open,
.theme-light
  #theme-container
  #onlinestorage
  .level1
  .nav1listing.remoteFolderContainer.open,
.theme-light #theme-container #onlinestorage .level1 .nav1listing:focus,
.theme-light #theme-container #onlinestorage .level1 .nav1listing:hover,
.theme-light #theme-container .level1 .nav1listing.personalFolder.open,
.theme-light #theme-container .level1 .nav1listing.remoteFolderContainer.open,
.theme-light #theme-container .level1 .nav1listing:focus,
.theme-light #theme-container .level1 .nav1listing:hover {
  background-color: hsla(0, 0%, 46%, 0.2);
  border: 3px solid transparent;
  color: #333;
}
.theme-light
  #theme-container
  #onlinestorage
  .level1
  .nav1listing.personalFolder.open
  .context
  button
  .fa,
.theme-light
  #theme-container
  #onlinestorage
  .level1
  .nav1listing.personalFolder.open
  button.collapsebtn,
.theme-light
  #theme-container
  #onlinestorage
  .level1
  .nav1listing.personalFolder.open
  button.menu,
.theme-light
  #theme-container
  #onlinestorage
  .level1
  .nav1listing.remoteFolderContainer.open
  .context
  button
  .fa,
.theme-light
  #theme-container
  #onlinestorage
  .level1
  .nav1listing.remoteFolderContainer.open
  button.collapsebtn,
.theme-light
  #theme-container
  #onlinestorage
  .level1
  .nav1listing.remoteFolderContainer.open
  button.menu,
.theme-light
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:focus
  .context
  button
  .fa,
.theme-light
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:focus
  button.collapsebtn,
.theme-light
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:focus
  button.menu,
.theme-light
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:hover
  .context
  button
  .fa,
.theme-light
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:hover
  button.collapsebtn,
.theme-light
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:hover
  button.menu,
.theme-light
  #theme-container
  .level1
  .nav1listing.personalFolder.open
  .context
  button
  .fa,
.theme-light
  #theme-container
  .level1
  .nav1listing.personalFolder.open
  button.collapsebtn,
.theme-light
  #theme-container
  .level1
  .nav1listing.personalFolder.open
  button.menu,
.theme-light
  #theme-container
  .level1
  .nav1listing.remoteFolderContainer.open
  .context
  button
  .fa,
.theme-light
  #theme-container
  .level1
  .nav1listing.remoteFolderContainer.open
  button.collapsebtn,
.theme-light
  #theme-container
  .level1
  .nav1listing.remoteFolderContainer.open
  button.menu,
.theme-light #theme-container .level1 .nav1listing:focus .context button .fa,
.theme-light #theme-container .level1 .nav1listing:focus button.collapsebtn,
.theme-light #theme-container .level1 .nav1listing:focus button.menu,
.theme-light #theme-container .level1 .nav1listing:hover .context button .fa,
.theme-light #theme-container .level1 .nav1listing:hover button.collapsebtn,
.theme-light #theme-container .level1 .nav1listing:hover button.menu {
  color: #333;
}
.theme-light #theme-container #onlinestorage .level1 li.active .nav1listing,
.theme-light
  #theme-container
  #onlinestorage
  .level1
  li.active
  .nav1listing:focus,
.theme-light
  #theme-container
  #onlinestorage
  .level1
  li.active
  .nav1listing:hover,
.theme-light #theme-container .level1 li.active .nav1listing,
.theme-light #theme-container .level1 li.active .nav1listing:focus,
.theme-light #theme-container .level1 li.active .nav1listing:hover {
  color: #333;
  background-color: hsla(0, 0%, 46%, 0.45);
}
.theme-light
  #theme-container
  #onlinestorage
  .level1
  li.active
  .nav1listing:focus
  button.menu,
.theme-light
  #theme-container
  #onlinestorage
  .level1
  li.active
  .nav1listing:hover
  button.menu,
.theme-light
  #theme-container
  #onlinestorage
  .level1
  li.active
  .nav1listing
  button.menu,
.theme-light #theme-container .level1 li.active .nav1listing:focus button.menu,
.theme-light #theme-container .level1 li.active .nav1listing:hover button.menu,
.theme-light #theme-container .level1 li.active .nav1listing button.menu {
  color: #3e3e3e;
}
.theme-light #theme-container #onlinestorage .level1 ul.side-nav1 li .context,
.theme-light #theme-container .level1 ul.side-nav1 li .context {
  background-color: transparent;
}
.theme-light #theme-container #onlinestorage .level1 .folder:hover,
.theme-light #theme-container .level1 .folder:hover {
  color: #333;
  background-color: hsla(0, 0%, 46%, 0.15);
  border: 3px solid transparent;
}
.theme-light #theme-container #onlinestorage .level1 .folder.current,
.theme-light #theme-container .level1 .folder.current {
  color: #333;
  background-color: hsla(0, 0%, 46%, 0.35);
}
.theme-light #theme-container .fc-toolbar,
.theme-light #theme-container .topButtons {
  background: hsla(0, 0%, 100%, 0.85);
}
.theme-light #theme-container .content {
  background-color: transparent;
}
.theme-light #theme-container .msglist .msglistContainer {
  background: hsla(0, 0%, 100%, 0.75);
}
.theme-light
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid hsla(0, 0%, 46%, 0.45);
}
.theme-light
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked,
.theme-light
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected,
.theme-light
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active,
.theme-light
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover {
  background: hsla(0, 0%, 46%, 0.2);
}
.theme-light
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell:first-child,
.theme-light
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell:first-child,
.theme-light
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell:first-child,
.theme-light
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:first-child {
  border-left: 1px solid transparent;
  border-right: none;
  border-top: 1px solid transparent;
  border-bottom: 1px solid hsla(0, 0%, 46%, 0.45);
}
.theme-light
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell:last-child,
.theme-light
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell:last-child,
.theme-light
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell:last-child,
.theme-light
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:last-child {
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  border-bottom: 1px solid hsla(0, 0%, 46%, 0.45);
}
.theme-light
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell,
.theme-light
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell,
.theme-light
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell,
.theme-light
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid hsla(0, 0%, 46%, 0.45);
}
.theme-light
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected {
  background: hsla(0, 0%, 46%, 0.45);
}
.theme-light #theme-container .msglist .paginationFooter {
  background: hsla(0, 0%, 100%, 0.15);
}
.theme-light #theme-container .msgview,
.theme-light #theme-container .msgview .inviteBlock .inviteActions {
  background: transparent;
}
.theme-light #theme-container .msgview .messagebody .part-two {
  background: hsla(0, 0%, 100%, 0.75);
}
.theme-light #theme-container .messageContainer .contentView,
.theme-light #theme-container .readingPane.horiz .attachmentPanel {
  background: #fff;
}
.theme-light #theme-container .attachmentPanel {
  box-shadow: 0 -3px 6px -6px #333;
  background: #fff;
}
.theme-light #theme-container .attachmentPanel .attachmentBlock {
  background: transparent;
}
.theme-light #theme-container .sections-mail-compose:not(.contact-groups) {
  background: hsla(0, 0%, 100%, 0.75);
}
.theme-light
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  #msginbcc,
.theme-light
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  #msgincc,
.theme-light
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  #msginto,
.theme-light
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  #msgsubject,
.theme-light
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .bottomControls,
.theme-light
  #theme-container
  .sections-mail-compose:not(.contact-groups)
  .mainCompose {
  background: transparent;
}
.theme-light #theme-container .agendaContainer .agendalist {
  background: hsla(0, 0%, 100%, 0.75);
}
.theme-light #theme-container .agendaContainer .agendalist .listevents,
.theme-light
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list {
  background: transparent;
}
.theme-light
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list.active {
  background: hsla(0, 0%, 46%, 0.45);
}
.theme-light
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list:hover {
  background: hsla(0, 0%, 46%, 0.2);
}
.theme-light
  #theme-container
  .agendaContainer
  .agendalist
  pagination-directive {
  background: transparent;
}
.theme-light #theme-container .calendarcnt .fc-view .fc-day {
  background: hsla(0, 0%, 100%, 0.5);
}
.theme-light #theme-container .calendarcnt .fc-view .fc-day.fc-sat,
.theme-light #theme-container .calendarcnt .fc-view .fc-day.fc-sun {
  background: hsla(0, 0%, 93%, 0.5);
}
.theme-light #theme-container .calendarcnt .fc-view .fc-day.fc-today {
  background-color: #ecf4fc;
}
.theme-light #theme-container .calendarcnt .fc-view .fc-day-header.fc-today {
  color: #333;
}
.theme-light #theme-container .calendarcnt .fc-today:not(.fc-day-top) {
  background-color: #ecf4fc;
}
.theme-light #theme-container .calendar-subscribe,
.theme-light #theme-container .new-calendar-panel,
.theme-light #theme-container .sections-calendar-new-event {
  background: hsla(0, 0%, 100%, 0.75);
}
.theme-light #theme-container .freebusy .aboveHeader,
.theme-light #theme-container .new-calendar-panel .calendar-subscribe,
.theme-light #theme-container .new-calendar-panel .sections-calendar-new-event {
  background: transparent;
}
.theme-light #theme-container .freebusy .aboveHeader .eventTime,
.theme-light #theme-container .freebusy .aboveHeader .eventTime > *,
.theme-light #theme-container .freebusy .aboveHeader .nextAvailableTimeSlot,
.theme-light
  #theme-container
  .freebusy
  .aboveHeader
  .nextAvailableTimeSlot
  > * {
  color: #333;
}
.theme-light #theme-container .freebusy .users .sorted-attendee,
.theme-light #theme-container .freebusy .users .sorted-attendee > :first-child,
.theme-light #theme-container .freebusy .users .timeline,
.theme-light #theme-container .freebusy .users .timeline > :first-child,
.theme-light #theme-container .freebusy .users .user,
.theme-light #theme-container .freebusy .users .user > :first-child {
  background: #fff;
}
.theme-light
  #theme-container
  .freebusy
  .footer
  .suggestions
  .suggestion.highlighted,
.theme-light #theme-container .freebusy .footer .suggestions .suggestion:hover,
.theme-light #theme-container .tagList .tags {
  color: #fff;
}
.theme-light #theme-container .tagList .tags.grayed {
  color: #2b2b2b;
}
.theme-light #theme-container .tasklist {
  background-color: transparent;
}
.theme-light #theme-container .tasklist .taskCellList {
  background-color: hsla(0, 0%, 100%, 0.75);
}
.theme-light #theme-container .tasklist .taskCellList .taskCell.active {
  background: hsla(0, 0%, 46%, 0.45);
}
.theme-light #theme-container .tasklist .taskCellList .taskCell:hover {
  background: hsla(0, 0%, 46%, 0.2);
}
.theme-light #theme-container .taskContainer .contentView .taskContent {
  background: hsla(0, 0%, 100%, 0.75);
  min-height: 100%;
  padding-top: 20px;
}
.theme-light
  #theme-container
  .taskContainer
  .contentView
  .taskContent
  .taskBlock {
  margin-top: 0;
}
.theme-light #theme-container .taskContainer .contentView .bottomControls {
  background: hsla(0, 0%, 100%, 0.85);
}
.theme-light #theme-container .taskContainer .contentView .dropdownbox,
.theme-light #theme-container .taskContainer .contentView .tags-fields {
  background: #fff;
}
.theme-light #theme-container .paginationFixed {
  background: hsla(0, 0%, 100%, 0.85);
}
.theme-light #theme-container .contacts-section .contacts-lists {
  background: hsla(0, 0%, 100%, 0.75);
}
.theme-light
  #theme-container
  .contacts-section
  .contacts-lists
  pagination-directive {
  background: hsla(0, 0%, 100%, 0.85);
}
.theme-light
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list {
  background: transparent;
}
.theme-light
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.active,
.theme-light
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.keynavActive,
.theme-light
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li:hover {
  box-shadow: none;
}
.theme-light
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li:hover {
  background: hsla(0, 0%, 46%, 0.2);
}
.theme-light
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.active {
  background: hsla(0, 0%, 46%, 0.45);
}
.theme-light
  #theme-container
  .contacts-section
  .contacts-editor
  #updateContact {
  background: hsla(0, 0%, 100%, 0.75);
}
.theme-light #theme-container .contacts-section .contacts-editor .long-div {
  background: transparent;
}
.theme-light #theme-container .contacts-section .contacts-subscribe,
.theme-light #theme-container .contacts-section .create-new-group,
.theme-light #theme-container .contacts-section .create-new-lists,
.theme-light #theme-container .contacts-section .import-contacts-container {
  background: hsla(0, 0%, 100%, 0.75);
}
.theme-light
  #theme-container
  .contacts-section
  .contacts-subscribe
  .fields-container,
.theme-light
  #theme-container
  .contacts-section
  .create-new-group
  .fields-container,
.theme-light
  #theme-container
  .contacts-section
  .create-new-lists
  .fields-container,
.theme-light
  #theme-container
  .contacts-section
  .import-contacts-container
  .fields-container {
  background: #fff;
}
.theme-light
  #theme-container
  .contacts-section
  .contacts-subscribe
  .fields-container.light-transparent,
.theme-light
  #theme-container
  .contacts-section
  .create-new-group
  .fields-container.light-transparent,
.theme-light
  #theme-container
  .contacts-section
  .create-new-lists
  .fields-container.light-transparent,
.theme-light
  #theme-container
  .contacts-section
  .import-contacts-container
  .fields-container.light-transparent {
  background: transparent;
}
.theme-light #theme-container .contacts-section .addressbooks-main {
  background: hsla(0, 0%, 100%, 0.85);
}
.theme-light #theme-container .contacts-section .duplicates-container {
  background: hsla(0, 0%, 100%, 0.75);
}
.theme-light #theme-container #onlinestorage .path-container,
.theme-light #theme-container #onlinestorage .toolbar {
  background: hsla(0, 0%, 100%, 0.85);
}
.theme-light #theme-container #onlinestorage .list-view-content .file,
.theme-light #theme-container #onlinestorage .list-view-content .folder {
  background: hsla(0, 0%, 100%, 0.75);
}
.theme-light #theme-container #onlinestorage .list-view-content .file.checked,
.theme-light #theme-container #onlinestorage .list-view-content .file:hover,
.theme-light #theme-container #onlinestorage .list-view-content .folder.checked,
.theme-light #theme-container #onlinestorage .list-view-content .folder:hover {
  background: hsla(0, 0%, 46%, 0.2);
}
.theme-light
  #theme-container
  #onlinestorage
  .onlinestorage-homepage
  .homepage-content,
.theme-light #theme-container #onlinestorage .thumbnail-view .thumbnail-folder {
  background: #fff;
}
.theme-light #theme-container .preferences {
  background: hsla(0, 0%, 100%, 0.75);
}
.theme-light #theme-container .preferences .pgpPreferences tbody tr {
  background-color: #fff;
}
.theme-light #theme-container .preferences .spamListing .spamFilterRule span {
  color: #333;
}
.theme-light
  #theme-container
  div[keyarrownav-directive]:not(.selected-group-contacts)
  .keyitem:not(.tags).active,
.theme-light
  #theme-container
  div[keyarrownav-directive]:not(.selected-group-contacts)
  .keyitem:not(.tags).keynavActive,
.theme-light
  #theme-container
  div[keyarrownav-directive]:not(.selected-group-contacts)
  .keyitem:not(.tags):active,
.theme-light
  #theme-container
  div[keyarrownav-directive]:not(.selected-group-contacts)
  .keyitem:not(.tags):focus,
.theme-light
  #theme-container
  div[keyarrownav-directive]:not(.selected-group-contacts)
  .keyitem:not(.tags):hover {
  background: hsla(0, 0%, 46%, 0.45);
  color: #333;
}
.theme-light
  #theme-container
  div[keyarrownav-directive]:not(.selected-group-contacts)
  .keyitem:not(.tags).active
  a,
.theme-light
  #theme-container
  div[keyarrownav-directive]:not(.selected-group-contacts)
  .keyitem:not(.tags).keynavActive
  a,
.theme-light
  #theme-container
  div[keyarrownav-directive]:not(.selected-group-contacts)
  .keyitem:not(.tags):active
  a,
.theme-light
  #theme-container
  div[keyarrownav-directive]:not(.selected-group-contacts)
  .keyitem:not(.tags):focus
  a,
.theme-light
  #theme-container
  div[keyarrownav-directive]:not(.selected-group-contacts)
  .keyitem:not(.tags):hover
  a {
  color: #333;
}
.theme-light #theme-container #colorPicker {
  background-color: #fff;
}
.theme-light #theme-container #colorPicker .fa-angle-down {
  color: #3e3e3e;
}
.theme-green
  #theme-container
  .top-nav
  .dropdown-container
  .dropdown-options-container {
  border-top: 5px solid #3e842e;
}
.theme-green #theme-container .sidebar.level0 .nav.side-nav0 {
  background-color: #27631a;
}
.theme-green #theme-container .sidebar.level0 .nav.side-nav0 li.active a,
.theme-green #theme-container .sidebar.level0 .nav.side-nav0 li:hover a {
  background-color: #c1e2b9;
  color: #3e842e;
}
.theme-green #theme-container #onlinestorage .level1,
.theme-green #theme-container .level1 {
  background-color: #e9e9e9;
}
.theme-green #theme-container #onlinestorage .level1 .nav1listing:focus,
.theme-green #theme-container #onlinestorage .level1 .nav1listing:hover,
.theme-green #theme-container .level1 .nav1listing:focus,
.theme-green #theme-container .level1 .nav1listing:hover {
  background-color: #27631a;
  border: 3px solid transparent;
  color: #fff;
}
.theme-green
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:focus
  .context
  button
  .fa,
.theme-green
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:hover
  .context
  button
  .fa,
.theme-green #theme-container .level1 .nav1listing:focus .context button .fa,
.theme-green #theme-container .level1 .nav1listing:hover .context button .fa {
  color: #fff;
}
.theme-green #theme-container #onlinestorage .level1 li.active > .nav1listing,
.theme-green #theme-container .level1 li.active > .nav1listing {
  background-color: #3e842e;
  color: #fff;
}
.theme-green
  #theme-container
  #onlinestorage
  .level1
  li.active
  > .nav1listing
  .context
  button
  .fa,
.theme-green
  #theme-container
  #onlinestorage
  .level1
  li.active
  > .nav1listing
  .menutext,
.theme-green
  #theme-container
  .level1
  li.active
  > .nav1listing
  .context
  button
  .fa,
.theme-green #theme-container .level1 li.active > .nav1listing .menutext {
  color: #fff;
}
.theme-green #theme-container #onlinestorage .level1 ul.side-nav1 li .context,
.theme-green #theme-container .level1 ul.side-nav1 li .context {
  background-color: transparent;
}
.theme-green #theme-container #onlinestorage .level1 .folder.current:hover,
.theme-green #theme-container .level1 .folder.current:hover {
  color: #fff;
}
.theme-green
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-green
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-green
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover,
.theme-green
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-green
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-green
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover,
.theme-green #theme-container .msglist .sortbar,
.theme-green
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-green
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-green
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover {
  background-color: #3e842e;
}
.theme-green
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-green
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell.messageActionBar {
  border-left: none;
}
.theme-green
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell:first-child,
.theme-green
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell:first-child,
.theme-green
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell:first-child,
.theme-green
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:first-child {
  border-left: 1px solid transparent;
  border-right: none;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-green
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell:last-child,
.theme-green
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell:last-child,
.theme-green
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell:last-child,
.theme-green
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:last-child {
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-green
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell,
.theme-green
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell,
.theme-green
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell,
.theme-green
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-green
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover {
  background-color: #eee;
}
.theme-green
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected {
  background-color: #e6fae1;
}
.theme-green
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked {
  background-color: #eee;
}
.theme-green #theme-container .fc-head tr td {
  background-color: #3e842e;
}
.theme-green
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list.active {
  background: #e6fae1;
}
.theme-green
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list:hover {
  background: #eee !important;
}
.theme-green #theme-container .tasklist .titlebar {
  background-color: #3e842e;
}
.theme-green #theme-container .tasklist .titlebar .sortbar.sortbartask {
  background: #3e842e;
}
.theme-green
  #theme-container
  .tasklist
  .titlebar
  .sortbar.sortbartask
  .dropdown-container
  .dropdown-select {
  background-color: #3e842e;
}
.theme-green #theme-container .tasklist .taskCellList .taskCell {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-green #theme-container .tasklist .taskCellList .taskCell:hover {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
  background-color: #eee;
}
.theme-green #theme-container .tasklist .taskCellList .taskCell.active {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
  background-color: #e6fae1;
}
.theme-green #theme-container .collaborator-suggestions ul li.active {
  background-color: #3e842e;
}
.theme-green
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li:hover {
  background-color: #eee;
}
.theme-green
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.active {
  background-color: #e6fae1;
}
.theme-green
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.activeChecked {
  background-color: #eee;
}
.theme-green #theme-container .contacts-section .contacts-lists .sortbar {
  background: #3e842e;
}
.theme-green #theme-container #onlinestorage .folder-tree .folder.current {
  background-color: #3e842e;
}
.theme-green
  #theme-container
  #onlinestorage
  .folder-tree
  .folder:focus:not(.current),
.theme-green
  #theme-container
  #onlinestorage
  .folder-tree
  .folder:hover:not(.current) {
  background-color: #27631a;
}
.theme-green #theme-container #onlinestorage .list-view-header,
.theme-green #theme-container #onlinestorage .thumbnail-view-heading,
.theme-green #theme-container #onlinestorage thead tr {
  background-color: #3e842e;
}
.theme-green #theme-container #onlinestorage .list-view-content .file:hover,
.theme-green #theme-container #onlinestorage .list-view-content .folder:hover {
  background-color: #e6fae1;
}
.theme-green #theme-container #onlinestorage .list-view-content .file.checked,
.theme-green
  #theme-container
  #onlinestorage
  .list-view-content
  .folder.checked {
  background-color: #eee;
}
.theme-green #theme-container .pgpTableRow:hover {
  background-color: #c1e2b9;
}
.theme-green #theme-container .btn-primary {
  background: #3e842e;
  border-color: #27631a;
}
.theme-green #theme-container .btn-primary:hover {
  background: #27631a;
}
.theme-green #theme-container .btn-primary:active {
  background: #1c4c12;
  border-color: #1c4c12;
}
.theme-green
  #theme-container
  .addattendeesresources
  .suggestions
  .suggestion.highlighted,
.theme-green
  #theme-container
  .addressbooks-pane
  ul.list-group
  > li.list-group-item.highlighted,
.theme-green #theme-container .dropdown-hover > ul > li.active,
.theme-green #theme-container .dropdown-hover > ul > li:active,
.theme-green #theme-container .dropdown-hover > ul > li:focus,
.theme-green #theme-container .dropdown-hover > ul > li:hover,
.theme-green #theme-container .dropdown-menu > div > li > a:hover,
.theme-green
  #theme-container
  .dropdown-menu
  > li:hover:not(.divider):not(.timeIntervalItem):not(.dropdownActions):not(
    .zimenu
  ),
.theme-green #theme-container .dropdown-option.highlighted {
  color: #fff;
  background-color: #3e842e;
  cursor: pointer;
}
.theme-green
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).active,
.theme-green
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).keynavActive,
.theme-green
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):active,
.theme-green
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):focus,
.theme-green
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):hover,
.theme-green
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).active,
.theme-green
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).keynavActive,
.theme-green
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):active,
.theme-green
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):focus,
.theme-green
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):hover {
  background-color: #3e842e;
}
.theme-green
  .attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  div.divtr:hover {
  background-color: #eee;
}
.theme-green .onlinestoragepopup thead > tr {
  background-color: #3e842e;
}
.theme-green .tags-fields .autofill-list-container li.active {
  background: #3e842e;
}
.theme-blue
  #theme-container
  .top-nav
  .dropdown-container
  .dropdown-options-container {
  border-top: 5px solid #406ad4;
}
.theme-blue #theme-container .sidebar.level0 .nav.side-nav0 {
  background-color: #2651be;
}
.theme-blue #theme-container .sidebar.level0 .nav.side-nav0 li.active a,
.theme-blue #theme-container .sidebar.level0 .nav.side-nav0 li:hover a {
  background-color: #c3d3f3;
  color: #406ad4;
}
.theme-blue #theme-container #onlinestorage .level1,
.theme-blue #theme-container .level1 {
  background-color: #e9e9e9;
}
.theme-blue #theme-container #onlinestorage .level1 .nav1listing:focus,
.theme-blue #theme-container #onlinestorage .level1 .nav1listing:hover,
.theme-blue #theme-container .level1 .nav1listing:focus,
.theme-blue #theme-container .level1 .nav1listing:hover {
  background-color: #2651be;
  border: 3px solid transparent;
  color: #fff;
}
.theme-blue
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:focus
  .context
  button
  .fa,
.theme-blue
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:hover
  .context
  button
  .fa,
.theme-blue #theme-container .level1 .nav1listing:focus .context button .fa,
.theme-blue #theme-container .level1 .nav1listing:hover .context button .fa {
  color: #fff;
}
.theme-blue #theme-container #onlinestorage .level1 li.active > .nav1listing,
.theme-blue #theme-container .level1 li.active > .nav1listing {
  background-color: #406ad4;
  color: #fff;
}
.theme-blue
  #theme-container
  #onlinestorage
  .level1
  li.active
  > .nav1listing
  .context
  button
  .fa,
.theme-blue
  #theme-container
  #onlinestorage
  .level1
  li.active
  > .nav1listing
  .menutext,
.theme-blue
  #theme-container
  .level1
  li.active
  > .nav1listing
  .context
  button
  .fa,
.theme-blue #theme-container .level1 li.active > .nav1listing .menutext {
  color: #fff;
}
.theme-blue #theme-container #onlinestorage .level1 ul.side-nav1 li .context,
.theme-blue #theme-container .level1 ul.side-nav1 li .context {
  background-color: transparent;
}
.theme-blue #theme-container #onlinestorage .level1 .folder.current:hover,
.theme-blue #theme-container .level1 .folder.current:hover {
  color: #fff;
}
.theme-blue
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-blue
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-blue
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover,
.theme-blue
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-blue
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-blue
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover,
.theme-blue #theme-container .msglist .sortbar,
.theme-blue
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-blue
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-blue
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover {
  background-color: #406ad4;
}
.theme-blue
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-blue
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell.messageActionBar {
  border-left: none;
}
.theme-blue
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell:first-child,
.theme-blue
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell:first-child,
.theme-blue
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell:first-child,
.theme-blue
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:first-child {
  border-left: 1px solid transparent;
  border-right: none;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-blue
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell:last-child,
.theme-blue
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell:last-child,
.theme-blue
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell:last-child,
.theme-blue
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:last-child {
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-blue
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell,
.theme-blue
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell,
.theme-blue
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell,
.theme-blue
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-blue
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover {
  background-color: #eee;
}
.theme-blue
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected {
  background-color: #dfe8fc;
}
.theme-blue
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked {
  background-color: #eee;
}
.theme-blue #theme-container .fc-head tr td {
  background-color: #406ad4;
}
.theme-blue
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list.active {
  background: #dfe8fc;
}
.theme-blue
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list:hover {
  background: #eee !important;
}
.theme-blue #theme-container .tasklist .titlebar {
  background-color: #406ad4;
}
.theme-blue #theme-container .tasklist .titlebar .sortbar.sortbartask {
  background: #406ad4;
}
.theme-blue
  #theme-container
  .tasklist
  .titlebar
  .sortbar.sortbartask
  .dropdown-container
  .dropdown-select {
  background-color: #406ad4;
}
.theme-blue #theme-container .tasklist .taskCellList .taskCell {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-blue #theme-container .tasklist .taskCellList .taskCell:hover {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
  background-color: #eee;
}
.theme-blue #theme-container .tasklist .taskCellList .taskCell.active {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
  background-color: #dfe8fc;
}
.theme-blue #theme-container .collaborator-suggestions ul li.active {
  background-color: #406ad4;
}
.theme-blue
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li:hover {
  background-color: #eee;
}
.theme-blue
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.active {
  background-color: #dfe8fc;
}
.theme-blue
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.activeChecked {
  background-color: #eee;
}
.theme-blue #theme-container .contacts-section .contacts-lists .sortbar {
  background: #406ad4;
}
.theme-blue #theme-container #onlinestorage .folder-tree .folder.current {
  background-color: #406ad4;
}
.theme-blue
  #theme-container
  #onlinestorage
  .folder-tree
  .folder:focus:not(.current),
.theme-blue
  #theme-container
  #onlinestorage
  .folder-tree
  .folder:hover:not(.current) {
  background-color: #2651be;
}
.theme-blue #theme-container #onlinestorage .list-view-header,
.theme-blue #theme-container #onlinestorage .thumbnail-view-heading,
.theme-blue #theme-container #onlinestorage thead tr {
  background-color: #406ad4;
}
.theme-blue #theme-container #onlinestorage .list-view-content .file:hover,
.theme-blue #theme-container #onlinestorage .list-view-content .folder:hover {
  background-color: #dfe8fc;
}
.theme-blue #theme-container #onlinestorage .list-view-content .file.checked,
.theme-blue #theme-container #onlinestorage .list-view-content .folder.checked {
  background-color: #eee;
}
.theme-blue #theme-container .pgpTableRow:hover {
  background-color: #c3d3f3;
}
.theme-blue #theme-container .btn-primary {
  background: #406ad4;
  border-color: #2651be;
}
.theme-blue #theme-container .btn-primary:hover {
  background: #2651be;
}
.theme-blue #theme-container .btn-primary:active {
  background: #1a3b91;
  border-color: #1a3b91;
}
.theme-blue
  #theme-container
  .addattendeesresources
  .suggestions
  .suggestion.highlighted,
.theme-blue
  #theme-container
  .addressbooks-pane
  ul.list-group
  > li.list-group-item.highlighted,
.theme-blue #theme-container .dropdown-hover > ul > li.active,
.theme-blue #theme-container .dropdown-hover > ul > li:active,
.theme-blue #theme-container .dropdown-hover > ul > li:focus,
.theme-blue #theme-container .dropdown-hover > ul > li:hover,
.theme-blue #theme-container .dropdown-menu > div > li > a:hover,
.theme-blue
  #theme-container
  .dropdown-menu
  > li:hover:not(.divider):not(.timeIntervalItem):not(.dropdownActions):not(
    .zimenu
  ),
.theme-blue #theme-container .dropdown-option.highlighted {
  color: #fff;
  background-color: #406ad4;
  cursor: pointer;
}
.theme-blue
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).active,
.theme-blue
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).keynavActive,
.theme-blue
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):active,
.theme-blue
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):focus,
.theme-blue
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):hover,
.theme-blue
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).active,
.theme-blue
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).keynavActive,
.theme-blue
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):active,
.theme-blue
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):focus,
.theme-blue
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):hover {
  background-color: #406ad4;
}
.theme-blue
  .attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  div.divtr:hover {
  background-color: #eee;
}
.theme-blue .onlinestoragepopup thead > tr {
  background-color: #406ad4;
}
.theme-blue .tags-fields .autofill-list-container li.active {
  background: #406ad4;
}
.theme-navy
  #theme-container
  .top-nav
  .dropdown-container
  .dropdown-options-container {
  border-top: 5px solid #4a508d;
}
.theme-navy #theme-container .sidebar.level0 .nav.side-nav0 {
  background-color: #373e7e;
}
.theme-navy #theme-container .sidebar.level0 .nav.side-nav0 li.active a,
.theme-navy #theme-container .sidebar.level0 .nav.side-nav0 li:hover a {
  background-color: #d0d3f2;
  color: #4a508d;
}
.theme-navy #theme-container #onlinestorage .level1,
.theme-navy #theme-container .level1 {
  background-color: #e9e9e9;
}
.theme-navy #theme-container #onlinestorage .level1 .nav1listing:focus,
.theme-navy #theme-container #onlinestorage .level1 .nav1listing:hover,
.theme-navy #theme-container .level1 .nav1listing:focus,
.theme-navy #theme-container .level1 .nav1listing:hover {
  background-color: #373e7e;
  border: 3px solid transparent;
  color: #fff;
}
.theme-navy
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:focus
  .context
  button
  .fa,
.theme-navy
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:hover
  .context
  button
  .fa,
.theme-navy #theme-container .level1 .nav1listing:focus .context button .fa,
.theme-navy #theme-container .level1 .nav1listing:hover .context button .fa {
  color: #fff;
}
.theme-navy #theme-container #onlinestorage .level1 li.active > .nav1listing,
.theme-navy #theme-container .level1 li.active > .nav1listing {
  background-color: #4a508d;
  color: #fff;
}
.theme-navy
  #theme-container
  #onlinestorage
  .level1
  li.active
  > .nav1listing
  .context
  button
  .fa,
.theme-navy
  #theme-container
  #onlinestorage
  .level1
  li.active
  > .nav1listing
  .menutext,
.theme-navy
  #theme-container
  .level1
  li.active
  > .nav1listing
  .context
  button
  .fa,
.theme-navy #theme-container .level1 li.active > .nav1listing .menutext {
  color: #fff;
}
.theme-navy #theme-container #onlinestorage .level1 ul.side-nav1 li .context,
.theme-navy #theme-container .level1 ul.side-nav1 li .context {
  background-color: transparent;
}
.theme-navy #theme-container #onlinestorage .level1 .folder.current:hover,
.theme-navy #theme-container .level1 .folder.current:hover {
  color: #fff;
}
.theme-navy
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-navy
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-navy
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover,
.theme-navy
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-navy
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-navy
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover,
.theme-navy #theme-container .msglist .sortbar,
.theme-navy
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-navy
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-navy
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover {
  background-color: #4a508d;
}
.theme-navy
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-navy
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell.messageActionBar {
  border-left: none;
}
.theme-navy
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell:first-child,
.theme-navy
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell:first-child,
.theme-navy
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell:first-child,
.theme-navy
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:first-child {
  border-left: 1px solid transparent;
  border-right: none;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-navy
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell:last-child,
.theme-navy
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell:last-child,
.theme-navy
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell:last-child,
.theme-navy
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:last-child {
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-navy
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell,
.theme-navy
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell,
.theme-navy
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell,
.theme-navy
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-navy
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover {
  background-color: #eee;
}
.theme-navy
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected {
  background-color: #e1e3f9;
}
.theme-navy
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked {
  background-color: #eee;
}
.theme-navy #theme-container .fc-head tr td {
  background-color: #4a508d;
}
.theme-navy
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list.active {
  background: #e1e3f9;
}
.theme-navy
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list:hover {
  background: #eee !important;
}
.theme-navy #theme-container .tasklist .titlebar {
  background-color: #4a508d;
}
.theme-navy #theme-container .tasklist .titlebar .sortbar.sortbartask {
  background: #4a508d;
}
.theme-navy
  #theme-container
  .tasklist
  .titlebar
  .sortbar.sortbartask
  .dropdown-container
  .dropdown-select {
  background-color: #4a508d;
}
.theme-navy #theme-container .tasklist .taskCellList .taskCell {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-navy #theme-container .tasklist .taskCellList .taskCell:hover {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
  background-color: #eee;
}
.theme-navy #theme-container .tasklist .taskCellList .taskCell.active {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
  background-color: #e1e3f9;
}
.theme-navy #theme-container .collaborator-suggestions ul li.active {
  background-color: #4a508d;
}
.theme-navy
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li:hover {
  background-color: #eee;
}
.theme-navy
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.active {
  background-color: #e1e3f9;
}
.theme-navy
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.activeChecked {
  background-color: #eee;
}
.theme-navy #theme-container .contacts-section .contacts-lists .sortbar {
  background: #4a508d;
}
.theme-navy #theme-container #onlinestorage .folder-tree .folder.current {
  background-color: #4a508d;
}
.theme-navy
  #theme-container
  #onlinestorage
  .folder-tree
  .folder:focus:not(.current),
.theme-navy
  #theme-container
  #onlinestorage
  .folder-tree
  .folder:hover:not(.current) {
  background-color: #373e7e;
}
.theme-navy #theme-container #onlinestorage .list-view-header,
.theme-navy #theme-container #onlinestorage .thumbnail-view-heading,
.theme-navy #theme-container #onlinestorage thead tr {
  background-color: #4a508d;
}
.theme-navy #theme-container #onlinestorage .list-view-content .file:hover,
.theme-navy #theme-container #onlinestorage .list-view-content .folder:hover {
  background-color: #e1e3f9;
}
.theme-navy #theme-container #onlinestorage .list-view-content .file.checked,
.theme-navy #theme-container #onlinestorage .list-view-content .folder.checked {
  background-color: #eee;
}
.theme-navy #theme-container .pgpTableRow:hover {
  background-color: #d0d3f2;
}
.theme-navy #theme-container .btn-primary {
  background: #4a508d;
  border-color: #373e7e;
}
.theme-navy #theme-container .btn-primary:hover {
  background: #373e7e;
}
.theme-navy #theme-container .btn-primary:active {
  background: #1f2666;
  border-color: #1f2666;
}
.theme-navy
  #theme-container
  .addattendeesresources
  .suggestions
  .suggestion.highlighted,
.theme-navy
  #theme-container
  .addressbooks-pane
  ul.list-group
  > li.list-group-item.highlighted,
.theme-navy #theme-container .dropdown-hover > ul > li.active,
.theme-navy #theme-container .dropdown-hover > ul > li:active,
.theme-navy #theme-container .dropdown-hover > ul > li:focus,
.theme-navy #theme-container .dropdown-hover > ul > li:hover,
.theme-navy #theme-container .dropdown-menu > div > li > a:hover,
.theme-navy
  #theme-container
  .dropdown-menu
  > li:hover:not(.divider):not(.timeIntervalItem):not(.dropdownActions):not(
    .zimenu
  ),
.theme-navy #theme-container .dropdown-option.highlighted {
  color: #fff;
  background-color: #4a508d;
  cursor: pointer;
}
.theme-navy
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).active,
.theme-navy
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).keynavActive,
.theme-navy
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):active,
.theme-navy
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):focus,
.theme-navy
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):hover,
.theme-navy
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).active,
.theme-navy
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).keynavActive,
.theme-navy
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):active,
.theme-navy
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):focus,
.theme-navy
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):hover {
  background-color: #4a508d;
}
.theme-navy
  .attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  div.divtr:hover {
  background-color: #eee;
}
.theme-navy .onlinestoragepopup thead > tr {
  background-color: #4a508d;
}
.theme-navy .tags-fields .autofill-list-container li.active {
  background: #4a508d;
}
.theme-orange
  #theme-container
  .top-nav
  .dropdown-container
  .dropdown-options-container {
  border-top: 5px solid #c35118;
}
.theme-orange #theme-container .sidebar.level0 .nav.side-nav0 {
  background-color: #a7420f;
}
.theme-orange #theme-container .sidebar.level0 .nav.side-nav0 li.active a,
.theme-orange #theme-container .sidebar.level0 .nav.side-nav0 li:hover a {
  background-color: #f2d2c3;
  color: #c35118;
}
.theme-orange #theme-container #onlinestorage .level1,
.theme-orange #theme-container .level1 {
  background-color: #e9e9e9;
}
.theme-orange #theme-container #onlinestorage .level1 .nav1listing:focus,
.theme-orange #theme-container #onlinestorage .level1 .nav1listing:hover,
.theme-orange #theme-container .level1 .nav1listing:focus,
.theme-orange #theme-container .level1 .nav1listing:hover {
  background-color: #a7420f;
  border: 3px solid transparent;
  color: #fff;
}
.theme-orange
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:focus
  .context
  button
  .fa,
.theme-orange
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:hover
  .context
  button
  .fa,
.theme-orange #theme-container .level1 .nav1listing:focus .context button .fa,
.theme-orange #theme-container .level1 .nav1listing:hover .context button .fa {
  color: #fff;
}
.theme-orange #theme-container #onlinestorage .level1 li.active > .nav1listing,
.theme-orange #theme-container .level1 li.active > .nav1listing {
  background-color: #c35118;
  color: #fff;
}
.theme-orange
  #theme-container
  #onlinestorage
  .level1
  li.active
  > .nav1listing
  .context
  button
  .fa,
.theme-orange
  #theme-container
  #onlinestorage
  .level1
  li.active
  > .nav1listing
  .menutext,
.theme-orange
  #theme-container
  .level1
  li.active
  > .nav1listing
  .context
  button
  .fa,
.theme-orange #theme-container .level1 li.active > .nav1listing .menutext {
  color: #fff;
}
.theme-orange #theme-container #onlinestorage .level1 ul.side-nav1 li .context,
.theme-orange #theme-container .level1 ul.side-nav1 li .context {
  background-color: transparent;
}
.theme-orange #theme-container #onlinestorage .level1 .folder.current:hover,
.theme-orange #theme-container .level1 .folder.current:hover {
  color: #fff;
}
.theme-orange
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-orange
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-orange
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover,
.theme-orange
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-orange
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-orange
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover,
.theme-orange #theme-container .msglist .sortbar,
.theme-orange
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-orange
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-orange
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover {
  background-color: #c35118;
}
.theme-orange
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-orange
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell.messageActionBar {
  border-left: none;
}
.theme-orange
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell:first-child,
.theme-orange
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell:first-child,
.theme-orange
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell:first-child,
.theme-orange
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:first-child {
  border-left: 1px solid transparent;
  border-right: none;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-orange
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell:last-child,
.theme-orange
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell:last-child,
.theme-orange
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell:last-child,
.theme-orange
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:last-child {
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-orange
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell,
.theme-orange
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell,
.theme-orange
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell,
.theme-orange
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-orange
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover {
  background-color: #eee;
}
.theme-orange
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected {
  background-color: #fbe9e0;
}
.theme-orange
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked {
  background-color: #eee;
}
.theme-orange #theme-container .fc-head tr td {
  background-color: #c35118;
}
.theme-orange
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list.active {
  background: #fbe9e0;
}
.theme-orange
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list:hover {
  background: #eee !important;
}
.theme-orange #theme-container .tasklist .titlebar {
  background-color: #c35118;
}
.theme-orange #theme-container .tasklist .titlebar .sortbar.sortbartask {
  background: #c35118;
}
.theme-orange
  #theme-container
  .tasklist
  .titlebar
  .sortbar.sortbartask
  .dropdown-container
  .dropdown-select {
  background-color: #c35118;
}
.theme-orange #theme-container .tasklist .taskCellList .taskCell {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-orange #theme-container .tasklist .taskCellList .taskCell:hover {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
  background-color: #eee;
}
.theme-orange #theme-container .tasklist .taskCellList .taskCell.active {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
  background-color: #fbe9e0;
}
.theme-orange #theme-container .collaborator-suggestions ul li.active {
  background-color: #c35118;
}
.theme-orange
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li:hover {
  background-color: #eee;
}
.theme-orange
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.active {
  background-color: #fbe9e0;
}
.theme-orange
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.activeChecked {
  background-color: #eee;
}
.theme-orange #theme-container .contacts-section .contacts-lists .sortbar {
  background: #c35118;
}
.theme-orange #theme-container #onlinestorage .folder-tree .folder.current {
  background-color: #c35118;
}
.theme-orange
  #theme-container
  #onlinestorage
  .folder-tree
  .folder:focus:not(.current),
.theme-orange
  #theme-container
  #onlinestorage
  .folder-tree
  .folder:hover:not(.current) {
  background-color: #a7420f;
}
.theme-orange #theme-container #onlinestorage .list-view-header,
.theme-orange #theme-container #onlinestorage .thumbnail-view-heading,
.theme-orange #theme-container #onlinestorage thead tr {
  background-color: #c35118;
}
.theme-orange #theme-container #onlinestorage .list-view-content .file:hover,
.theme-orange #theme-container #onlinestorage .list-view-content .folder:hover {
  background-color: #fbe9e0;
}
.theme-orange #theme-container #onlinestorage .list-view-content .file.checked,
.theme-orange
  #theme-container
  #onlinestorage
  .list-view-content
  .folder.checked {
  background-color: #eee;
}
.theme-orange #theme-container .pgpTableRow:hover {
  background-color: #f2d2c3;
}
.theme-orange #theme-container .btn-primary {
  background: #c35118;
  border-color: #a7420f;
}
.theme-orange #theme-container .btn-primary:hover {
  background: #a7420f;
}
.theme-orange #theme-container .btn-primary:active {
  background: #8d380e;
  border-color: #8d380e;
}
.theme-orange
  #theme-container
  .addattendeesresources
  .suggestions
  .suggestion.highlighted,
.theme-orange
  #theme-container
  .addressbooks-pane
  ul.list-group
  > li.list-group-item.highlighted,
.theme-orange #theme-container .dropdown-hover > ul > li.active,
.theme-orange #theme-container .dropdown-hover > ul > li:active,
.theme-orange #theme-container .dropdown-hover > ul > li:focus,
.theme-orange #theme-container .dropdown-hover > ul > li:hover,
.theme-orange #theme-container .dropdown-menu > div > li > a:hover,
.theme-orange
  #theme-container
  .dropdown-menu
  > li:hover:not(.divider):not(.timeIntervalItem):not(.dropdownActions):not(
    .zimenu
  ),
.theme-orange #theme-container .dropdown-option.highlighted {
  color: #fff;
  background-color: #c35118;
  cursor: pointer;
}
.theme-orange
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).active,
.theme-orange
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).keynavActive,
.theme-orange
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):active,
.theme-orange
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):focus,
.theme-orange
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):hover,
.theme-orange
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).active,
.theme-orange
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).keynavActive,
.theme-orange
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):active,
.theme-orange
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):focus,
.theme-orange
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):hover {
  background-color: #c35118;
}
.theme-orange
  .attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  div.divtr:hover {
  background-color: #eee;
}
.theme-orange .onlinestoragepopup thead > tr {
  background-color: #c35118;
}
.theme-orange .tags-fields .autofill-list-container li.active {
  background: #c35118;
}
.theme-red
  #theme-container
  .top-nav
  .dropdown-container
  .dropdown-options-container {
  border-top: 5px solid #d53a32;
}
.theme-red #theme-container .sidebar.level0 .nav.side-nav0 {
  background-color: #b52e27;
}
.theme-red #theme-container .sidebar.level0 .nav.side-nav0 li.active a,
.theme-red #theme-container .sidebar.level0 .nav.side-nav0 li:hover a {
  background-color: #f8c8c4;
  color: #d53a32;
}
.theme-red #theme-container #onlinestorage .level1,
.theme-red #theme-container .level1 {
  background-color: #e9e9e9;
}
.theme-red #theme-container #onlinestorage .level1 .nav1listing:focus,
.theme-red #theme-container #onlinestorage .level1 .nav1listing:hover,
.theme-red #theme-container .level1 .nav1listing:focus,
.theme-red #theme-container .level1 .nav1listing:hover {
  background-color: #b52e27;
  border: 3px solid transparent;
  color: #fff;
}
.theme-red
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:focus
  .context
  button
  .fa,
.theme-red
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:hover
  .context
  button
  .fa,
.theme-red #theme-container .level1 .nav1listing:focus .context button .fa,
.theme-red #theme-container .level1 .nav1listing:hover .context button .fa {
  color: #fff;
}
.theme-red #theme-container #onlinestorage .level1 li.active > .nav1listing,
.theme-red #theme-container .level1 li.active > .nav1listing {
  background-color: #d53a32;
  color: #fff;
}
.theme-red
  #theme-container
  #onlinestorage
  .level1
  li.active
  > .nav1listing
  .context
  button
  .fa,
.theme-red
  #theme-container
  #onlinestorage
  .level1
  li.active
  > .nav1listing
  .menutext,
.theme-red
  #theme-container
  .level1
  li.active
  > .nav1listing
  .context
  button
  .fa,
.theme-red #theme-container .level1 li.active > .nav1listing .menutext {
  color: #fff;
}
.theme-red #theme-container #onlinestorage .level1 ul.side-nav1 li .context,
.theme-red #theme-container .level1 ul.side-nav1 li .context {
  background-color: transparent;
}
.theme-red #theme-container #onlinestorage .level1 .folder.current:hover,
.theme-red #theme-container .level1 .folder.current:hover {
  color: #fff;
}
.theme-red
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-red
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-red
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover,
.theme-red
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-red
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-red
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover,
.theme-red #theme-container .msglist .sortbar,
.theme-red
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-red
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-red
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover {
  background-color: #d53a32;
}
.theme-red
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-red
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell.messageActionBar {
  border-left: none;
}
.theme-red
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell:first-child,
.theme-red
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell:first-child,
.theme-red
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell:first-child,
.theme-red
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:first-child {
  border-left: 1px solid transparent;
  border-right: none;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-red
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell:last-child,
.theme-red
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell:last-child,
.theme-red
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell:last-child,
.theme-red
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:last-child {
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-red
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell,
.theme-red
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell,
.theme-red
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell,
.theme-red
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-red
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover {
  background-color: #eee;
}
.theme-red
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected {
  background-color: #fde8e8;
}
.theme-red
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked {
  background-color: #eee;
}
.theme-red #theme-container .fc-head tr td {
  background-color: #d53a32;
}
.theme-red
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list.active {
  background: #fde8e8;
}
.theme-red
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list:hover {
  background: #eee !important;
}
.theme-red #theme-container .tasklist .titlebar {
  background-color: #d53a32;
}
.theme-red #theme-container .tasklist .titlebar .sortbar.sortbartask {
  background: #d53a32;
}
.theme-red
  #theme-container
  .tasklist
  .titlebar
  .sortbar.sortbartask
  .dropdown-container
  .dropdown-select {
  background-color: #d53a32;
}
.theme-red #theme-container .tasklist .taskCellList .taskCell {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-red #theme-container .tasklist .taskCellList .taskCell:hover {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
  background-color: #eee;
}
.theme-red #theme-container .tasklist .taskCellList .taskCell.active {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
  background-color: #fde8e8;
}
.theme-red #theme-container .collaborator-suggestions ul li.active {
  background-color: #d53a32;
}
.theme-red
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li:hover {
  background-color: #eee;
}
.theme-red
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.active {
  background-color: #fde8e8;
}
.theme-red
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.activeChecked {
  background-color: #eee;
}
.theme-red #theme-container .contacts-section .contacts-lists .sortbar {
  background: #d53a32;
}
.theme-red #theme-container #onlinestorage .folder-tree .folder.current {
  background-color: #d53a32;
}
.theme-red
  #theme-container
  #onlinestorage
  .folder-tree
  .folder:focus:not(.current),
.theme-red
  #theme-container
  #onlinestorage
  .folder-tree
  .folder:hover:not(.current) {
  background-color: #b52e27;
}
.theme-red #theme-container #onlinestorage .list-view-header,
.theme-red #theme-container #onlinestorage .thumbnail-view-heading,
.theme-red #theme-container #onlinestorage thead tr {
  background-color: #d53a32;
}
.theme-red #theme-container #onlinestorage .list-view-content .file:hover,
.theme-red #theme-container #onlinestorage .list-view-content .folder:hover {
  background-color: #fde8e8;
}
.theme-red #theme-container #onlinestorage .list-view-content .file.checked,
.theme-red #theme-container #onlinestorage .list-view-content .folder.checked {
  background-color: #eee;
}
.theme-red #theme-container .pgpTableRow:hover {
  background-color: #f8c8c4;
}
.theme-red #theme-container .btn-primary {
  background: #d53a32;
  border-color: #b52e27;
}
.theme-red #theme-container .btn-primary:hover {
  background: #b52e27;
}
.theme-red #theme-container .btn-primary:active {
  background: #8d1d17;
  border-color: #8d1d17;
}
.theme-red
  #theme-container
  .addattendeesresources
  .suggestions
  .suggestion.highlighted,
.theme-red
  #theme-container
  .addressbooks-pane
  ul.list-group
  > li.list-group-item.highlighted,
.theme-red #theme-container .dropdown-hover > ul > li.active,
.theme-red #theme-container .dropdown-hover > ul > li:active,
.theme-red #theme-container .dropdown-hover > ul > li:focus,
.theme-red #theme-container .dropdown-hover > ul > li:hover,
.theme-red #theme-container .dropdown-menu > div > li > a:hover,
.theme-red
  #theme-container
  .dropdown-menu
  > li:hover:not(.divider):not(.timeIntervalItem):not(.dropdownActions):not(
    .zimenu
  ),
.theme-red #theme-container .dropdown-option.highlighted {
  color: #fff;
  background-color: #d53a32;
  cursor: pointer;
}
.theme-red
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).active,
.theme-red
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).keynavActive,
.theme-red
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):active,
.theme-red
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):focus,
.theme-red
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):hover,
.theme-red
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).active,
.theme-red
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).keynavActive,
.theme-red
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):active,
.theme-red
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):focus,
.theme-red
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):hover {
  background-color: #d53a32;
}
.theme-red
  .attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  div.divtr:hover {
  background-color: #eee;
}
.theme-red .onlinestoragepopup thead > tr {
  background-color: #d53a32;
}
.theme-red .tags-fields .autofill-list-container li.active {
  background: #d53a32;
}
.theme-teal
  #theme-container
  .top-nav
  .dropdown-container
  .dropdown-options-container {
  border-top: 5px solid #277c7c;
}
.theme-teal #theme-container .sidebar.level0 .nav.side-nav0 {
  background-color: #186666;
}
.theme-teal #theme-container .sidebar.level0 .nav.side-nav0 li.active a,
.theme-teal #theme-container .sidebar.level0 .nav.side-nav0 li:hover a {
  background-color: #c2e3e3;
  color: #277c7c;
}
.theme-teal #theme-container #onlinestorage .level1,
.theme-teal #theme-container .level1 {
  background-color: #e9e9e9;
}
.theme-teal #theme-container #onlinestorage .level1 .nav1listing:focus,
.theme-teal #theme-container #onlinestorage .level1 .nav1listing:hover,
.theme-teal #theme-container .level1 .nav1listing:focus,
.theme-teal #theme-container .level1 .nav1listing:hover {
  background-color: #186666;
  border: 3px solid transparent;
  color: #fff;
}
.theme-teal
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:focus
  .context
  button
  .fa,
.theme-teal
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:hover
  .context
  button
  .fa,
.theme-teal #theme-container .level1 .nav1listing:focus .context button .fa,
.theme-teal #theme-container .level1 .nav1listing:hover .context button .fa {
  color: #fff;
}
.theme-teal #theme-container #onlinestorage .level1 li.active > .nav1listing,
.theme-teal #theme-container .level1 li.active > .nav1listing {
  background-color: #277c7c;
  color: #fff;
}
.theme-teal
  #theme-container
  #onlinestorage
  .level1
  li.active
  > .nav1listing
  .context
  button
  .fa,
.theme-teal
  #theme-container
  #onlinestorage
  .level1
  li.active
  > .nav1listing
  .menutext,
.theme-teal
  #theme-container
  .level1
  li.active
  > .nav1listing
  .context
  button
  .fa,
.theme-teal #theme-container .level1 li.active > .nav1listing .menutext {
  color: #fff;
}
.theme-teal #theme-container #onlinestorage .level1 ul.side-nav1 li .context,
.theme-teal #theme-container .level1 ul.side-nav1 li .context {
  background-color: transparent;
}
.theme-teal #theme-container #onlinestorage .level1 .folder.current:hover,
.theme-teal #theme-container .level1 .folder.current:hover {
  color: #fff;
}
.theme-teal
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-teal
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-teal
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover,
.theme-teal
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-teal
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-teal
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover,
.theme-teal #theme-container .msglist .sortbar,
.theme-teal
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-teal
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-teal
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover {
  background-color: #277c7c;
}
.theme-teal
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-teal
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell.messageActionBar {
  border-left: none;
}
.theme-teal
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell:first-child,
.theme-teal
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell:first-child,
.theme-teal
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell:first-child,
.theme-teal
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:first-child {
  border-left: 1px solid transparent;
  border-right: none;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-teal
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell:last-child,
.theme-teal
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell:last-child,
.theme-teal
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell:last-child,
.theme-teal
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:last-child {
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-teal
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell,
.theme-teal
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell,
.theme-teal
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell,
.theme-teal
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-teal
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover {
  background-color: #eee;
}
.theme-teal
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected {
  background-color: #e5f6f6;
}
.theme-teal
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked {
  background-color: #eee;
}
.theme-teal #theme-container .fc-head tr td {
  background-color: #277c7c;
}
.theme-teal
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list.active {
  background: #e5f6f6;
}
.theme-teal
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list:hover {
  background: #eee !important;
}
.theme-teal #theme-container .tasklist .titlebar {
  background-color: #277c7c;
}
.theme-teal #theme-container .tasklist .titlebar .sortbar.sortbartask {
  background: #277c7c;
}
.theme-teal
  #theme-container
  .tasklist
  .titlebar
  .sortbar.sortbartask
  .dropdown-container
  .dropdown-select {
  background-color: #277c7c;
}
.theme-teal #theme-container .tasklist .taskCellList .taskCell {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-teal #theme-container .tasklist .taskCellList .taskCell:hover {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
  background-color: #eee;
}
.theme-teal #theme-container .tasklist .taskCellList .taskCell.active {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
  background-color: #e5f6f6;
}
.theme-teal #theme-container .collaborator-suggestions ul li.active {
  background-color: #277c7c;
}
.theme-teal
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li:hover {
  background-color: #eee;
}
.theme-teal
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.active {
  background-color: #e5f6f6;
}
.theme-teal
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.activeChecked {
  background-color: #eee;
}
.theme-teal #theme-container .contacts-section .contacts-lists .sortbar {
  background: #277c7c;
}
.theme-teal #theme-container #onlinestorage .folder-tree .folder.current {
  background-color: #277c7c;
}
.theme-teal
  #theme-container
  #onlinestorage
  .folder-tree
  .folder:focus:not(.current),
.theme-teal
  #theme-container
  #onlinestorage
  .folder-tree
  .folder:hover:not(.current) {
  background-color: #186666;
}
.theme-teal #theme-container #onlinestorage .list-view-header,
.theme-teal #theme-container #onlinestorage .thumbnail-view-heading,
.theme-teal #theme-container #onlinestorage thead tr {
  background-color: #277c7c;
}
.theme-teal #theme-container #onlinestorage .list-view-content .file:hover,
.theme-teal #theme-container #onlinestorage .list-view-content .folder:hover {
  background-color: #e5f6f6;
}
.theme-teal #theme-container #onlinestorage .list-view-content .file.checked,
.theme-teal #theme-container #onlinestorage .list-view-content .folder.checked {
  background-color: #eee;
}
.theme-teal #theme-container .pgpTableRow:hover {
  background-color: #c2e3e3;
}
.theme-teal #theme-container .btn-primary {
  background: #277c7c;
  border-color: #186666;
}
.theme-teal #theme-container .btn-primary:hover {
  background: #186666;
}
.theme-teal #theme-container .btn-primary:active {
  background: #0f4b4b;
  border-color: #0f4b4b;
}
.theme-teal
  #theme-container
  .addattendeesresources
  .suggestions
  .suggestion.highlighted,
.theme-teal
  #theme-container
  .addressbooks-pane
  ul.list-group
  > li.list-group-item.highlighted,
.theme-teal #theme-container .dropdown-hover > ul > li.active,
.theme-teal #theme-container .dropdown-hover > ul > li:active,
.theme-teal #theme-container .dropdown-hover > ul > li:focus,
.theme-teal #theme-container .dropdown-hover > ul > li:hover,
.theme-teal #theme-container .dropdown-menu > div > li > a:hover,
.theme-teal
  #theme-container
  .dropdown-menu
  > li:hover:not(.divider):not(.timeIntervalItem):not(.dropdownActions):not(
    .zimenu
  ),
.theme-teal #theme-container .dropdown-option.highlighted {
  color: #fff;
  background-color: #277c7c;
  cursor: pointer;
}
.theme-teal
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).active,
.theme-teal
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).keynavActive,
.theme-teal
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):active,
.theme-teal
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):focus,
.theme-teal
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):hover,
.theme-teal
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).active,
.theme-teal
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).keynavActive,
.theme-teal
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):active,
.theme-teal
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):focus,
.theme-teal
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):hover {
  background-color: #277c7c;
}
.theme-teal
  .attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  div.divtr:hover {
  background-color: #eee;
}
.theme-teal .onlinestoragepopup thead > tr {
  background-color: #277c7c;
}
.theme-teal .tags-fields .autofill-list-container li.active {
  background: #277c7c;
}
.theme-violet
  #theme-container
  .top-nav
  .dropdown-container
  .dropdown-options-container {
  border-top: 5px solid #9d4dcb;
}
.theme-violet #theme-container .sidebar.level0 .nav.side-nav0 {
  background-color: #8339ae;
}
.theme-violet #theme-container .sidebar.level0 .nav.side-nav0 li.active a,
.theme-violet #theme-container .sidebar.level0 .nav.side-nav0 li:hover a {
  background-color: #e0cbec;
  color: #9d4dcb;
}
.theme-violet #theme-container #onlinestorage .level1,
.theme-violet #theme-container .level1 {
  background-color: #e9e9e9;
}
.theme-violet #theme-container #onlinestorage .level1 .nav1listing:focus,
.theme-violet #theme-container #onlinestorage .level1 .nav1listing:hover,
.theme-violet #theme-container .level1 .nav1listing:focus,
.theme-violet #theme-container .level1 .nav1listing:hover {
  background-color: #8339ae;
  border: 3px solid transparent;
  color: #fff;
}
.theme-violet
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:focus
  .context
  button
  .fa,
.theme-violet
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:hover
  .context
  button
  .fa,
.theme-violet #theme-container .level1 .nav1listing:focus .context button .fa,
.theme-violet #theme-container .level1 .nav1listing:hover .context button .fa {
  color: #fff;
}
.theme-violet #theme-container #onlinestorage .level1 li.active > .nav1listing,
.theme-violet #theme-container .level1 li.active > .nav1listing {
  background-color: #9d4dcb;
  color: #fff;
}
.theme-violet
  #theme-container
  #onlinestorage
  .level1
  li.active
  > .nav1listing
  .context
  button
  .fa,
.theme-violet
  #theme-container
  #onlinestorage
  .level1
  li.active
  > .nav1listing
  .menutext,
.theme-violet
  #theme-container
  .level1
  li.active
  > .nav1listing
  .context
  button
  .fa,
.theme-violet #theme-container .level1 li.active > .nav1listing .menutext {
  color: #fff;
}
.theme-violet #theme-container #onlinestorage .level1 ul.side-nav1 li .context,
.theme-violet #theme-container .level1 ul.side-nav1 li .context {
  background-color: transparent;
}
.theme-violet #theme-container #onlinestorage .level1 .folder.current:hover,
.theme-violet #theme-container .level1 .folder.current:hover {
  color: #fff;
}
.theme-violet
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-violet
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-violet
  #theme-container
  #onlinestorage
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover,
.theme-violet
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-violet
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-violet
  #theme-container
  .level1
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover,
.theme-violet #theme-container .msglist .sortbar,
.theme-violet
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:active,
.theme-violet
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:focus,
.theme-violet
  #theme-container
  .side-sidebar
  .searchbar
  .searchtypeContainer
  .dropdown-menu
  li
  a:hover {
  background-color: #9d4dcb;
}
.theme-violet
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-violet
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell.messageActionBar {
  border-left: none;
}
.theme-violet
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell:first-child,
.theme-violet
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell:first-child,
.theme-violet
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell:first-child,
.theme-violet
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:first-child {
  border-left: 1px solid transparent;
  border-right: none;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-violet
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell:last-child,
.theme-violet
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell:last-child,
.theme-violet
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell:last-child,
.theme-violet
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:last-child {
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-violet
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell,
.theme-violet
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell,
.theme-violet
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell,
.theme-violet
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-violet
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover {
  background-color: #eee;
}
.theme-violet
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected {
  background-color: #f5edf9;
}
.theme-violet
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked {
  background-color: #eee;
}
.theme-violet #theme-container .fc-head tr td {
  background-color: #9d4dcb;
}
.theme-violet
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list.active {
  background: #f5edf9;
}
.theme-violet
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list:hover {
  background: #eee !important;
}
.theme-violet #theme-container .tasklist .titlebar {
  background-color: #9d4dcb;
}
.theme-violet #theme-container .tasklist .titlebar .sortbar.sortbartask {
  background: #9d4dcb;
}
.theme-violet
  #theme-container
  .tasklist
  .titlebar
  .sortbar.sortbartask
  .dropdown-container
  .dropdown-select {
  background-color: #9d4dcb;
}
.theme-violet #theme-container .tasklist .taskCellList .taskCell {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-violet #theme-container .tasklist .taskCellList .taskCell:hover {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
  background-color: #eee;
}
.theme-violet #theme-container .tasklist .taskCellList .taskCell.active {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
  background-color: #f5edf9;
}
.theme-violet #theme-container .collaborator-suggestions ul li.active {
  background-color: #9d4dcb;
}
.theme-violet
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li:hover {
  background-color: #eee;
}
.theme-violet
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.active {
  background-color: #f5edf9;
}
.theme-violet
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.activeChecked {
  background-color: #eee;
}
.theme-violet #theme-container .contacts-section .contacts-lists .sortbar {
  background: #9d4dcb;
}
.theme-violet #theme-container #onlinestorage .folder-tree .folder.current {
  background-color: #9d4dcb;
}
.theme-violet
  #theme-container
  #onlinestorage
  .folder-tree
  .folder:focus:not(.current),
.theme-violet
  #theme-container
  #onlinestorage
  .folder-tree
  .folder:hover:not(.current) {
  background-color: #8339ae;
}
.theme-violet #theme-container #onlinestorage .list-view-header,
.theme-violet #theme-container #onlinestorage .thumbnail-view-heading,
.theme-violet #theme-container #onlinestorage thead tr {
  background-color: #9d4dcb;
}
.theme-violet #theme-container #onlinestorage .list-view-content .file:hover,
.theme-violet #theme-container #onlinestorage .list-view-content .folder:hover {
  background-color: #f5edf9;
}
.theme-violet #theme-container #onlinestorage .list-view-content .file.checked,
.theme-violet
  #theme-container
  #onlinestorage
  .list-view-content
  .folder.checked {
  background-color: #eee;
}
.theme-violet #theme-container .pgpTableRow:hover {
  background-color: #e0cbec;
}
.theme-violet #theme-container .btn-primary {
  background: #9d4dcb;
  border-color: #8339ae;
}
.theme-violet #theme-container .btn-primary:hover {
  background: #8339ae;
}
.theme-violet #theme-container .btn-primary:active {
  background: #642787;
  border-color: #642787;
}
.theme-violet
  #theme-container
  .addattendeesresources
  .suggestions
  .suggestion.highlighted,
.theme-violet
  #theme-container
  .addressbooks-pane
  ul.list-group
  > li.list-group-item.highlighted,
.theme-violet #theme-container .dropdown-hover > ul > li.active,
.theme-violet #theme-container .dropdown-hover > ul > li:active,
.theme-violet #theme-container .dropdown-hover > ul > li:focus,
.theme-violet #theme-container .dropdown-hover > ul > li:hover,
.theme-violet #theme-container .dropdown-menu > div > li > a:hover,
.theme-violet
  #theme-container
  .dropdown-menu
  > li:hover:not(.divider):not(.timeIntervalItem):not(.dropdownActions):not(
    .zimenu
  ),
.theme-violet #theme-container .dropdown-option.highlighted {
  color: #fff;
  background-color: #9d4dcb;
  cursor: pointer;
}
.theme-violet
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).active,
.theme-violet
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).keynavActive,
.theme-violet
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):active,
.theme-violet
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):focus,
.theme-violet
  #theme-container
  [keyarrownav-directive]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):hover,
.theme-violet
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).active,
.theme-violet
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags).keynavActive,
.theme-violet
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):active,
.theme-violet
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):focus,
.theme-violet
  #theme-container
  [role="listbox"]:not(.dropdown-menu):not(.dropdown-options):not(
    .messageIcons
  ):not(table):not(.side-nav1):not(.agendalist):not(.contacts-childrens):not(
    .list-group
  ):not(.attachmentViewList)
  > :not(.messageRow):not(.dropdown-options):not(.selected-contact):not(
    .pgpTableRow
  ):not(.taskCell):not(.subTaskCell):not(.tags):hover {
  background-color: #9d4dcb;
}
.theme-violet
  .attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  div.divtr:hover {
  background-color: #eee;
}
.theme-violet .onlinestoragepopup thead > tr {
  background-color: #9d4dcb;
}
.theme-violet .tags-fields .autofill-list-container li.active {
  background: #9d4dcb;
}
.theme-alternate
  #theme-container
  .top-nav
  .dropdown-container
  .dropdown-options-container {
  border-top: 5px solid #444;
}
.theme-alternate #theme-container .sidebar.level0 .nav.side-nav0 {
  background-color: #555;
}
.theme-alternate #theme-container .sidebar.level0 .nav.side-nav0 li.active a,
.theme-alternate #theme-container .sidebar.level0 .nav.side-nav0 li:hover a {
  background-color: #b9b9b9;
  color: #444;
}
.theme-alternate #theme-container #onlinestorage .level1,
.theme-alternate #theme-container .level1 {
  background-color: #e9e9e9;
}
.theme-alternate #theme-container #onlinestorage .level1 .nav1listing:focus,
.theme-alternate #theme-container #onlinestorage .level1 .nav1listing:hover,
.theme-alternate #theme-container .level1 .nav1listing:focus,
.theme-alternate #theme-container .level1 .nav1listing:hover {
  background-color: #555;
  border: 3px solid transparent;
  color: #fff;
}
.theme-alternate
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:focus
  .context
  button
  .fa,
.theme-alternate
  #theme-container
  #onlinestorage
  .level1
  .nav1listing:hover
  .context
  button
  .fa,
.theme-alternate
  #theme-container
  .level1
  .nav1listing:focus
  .context
  button
  .fa,
.theme-alternate
  #theme-container
  .level1
  .nav1listing:hover
  .context
  button
  .fa {
  color: #fff;
}
.theme-alternate
  #theme-container
  #onlinestorage
  .level1
  li.active
  > .nav1listing,
.theme-alternate #theme-container .level1 li.active > .nav1listing {
  background-color: #444;
  color: #fff;
}
.theme-alternate
  #theme-container
  #onlinestorage
  .level1
  li.active
  > .nav1listing
  .context
  button
  .fa,
.theme-alternate
  #theme-container
  #onlinestorage
  .level1
  li.active
  > .nav1listing
  .menutext,
.theme-alternate
  #theme-container
  .level1
  li.active
  > .nav1listing
  .context
  button
  .fa,
.theme-alternate #theme-container .level1 li.active > .nav1listing .menutext {
  color: #fff;
}
.theme-alternate
  #theme-container
  #onlinestorage
  .level1
  ul.side-nav1
  li
  .context,
.theme-alternate #theme-container .level1 ul.side-nav1 li .context {
  background-color: transparent;
}
.theme-alternate
  #theme-container
  #onlinestorage
  .level1
  .panel
  .panel-heading-bar,
.theme-alternate #theme-container .level1 .panel .panel-heading-bar {
  background-color: #595959;
}
.theme-alternate #theme-container #onlinestorage .level1 .folder.current:hover,
.theme-alternate #theme-container .level1 .folder.current:hover {
  color: #fff;
}
.theme-alternate #theme-container .msglist .sortbar {
  background-color: #444;
}
.theme-alternate
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-alternate
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow
  > .messageCell.messageActionBar {
  border-left: none;
}
.theme-alternate
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell:first-child,
.theme-alternate
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell:first-child,
.theme-alternate
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell:first-child,
.theme-alternate
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:first-child {
  border-left: 1px solid transparent;
  border-right: none;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-alternate
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell:last-child,
.theme-alternate
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell:last-child,
.theme-alternate
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell:last-child,
.theme-alternate
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell:last-child {
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-alternate
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked
  > .messageCell,
.theme-alternate
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected
  > .messageCell,
.theme-alternate
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:active
  > .messageCell,
.theme-alternate
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover
  > .messageCell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-alternate
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow:hover {
  background-color: #eee;
}
.theme-alternate
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowSelected {
  background-color: #d5d5d5;
}
.theme-alternate
  #theme-container
  .msglist
  .messageListContainerInner
  .messageList
  .messageRow.messageRowChecked {
  background-color: #eee;
}
.theme-alternate #theme-container .fc-head tr td {
  background-color: #444;
}
.theme-alternate
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list.active {
  background: #d5d5d5;
}
.theme-alternate
  #theme-container
  .agendaContainer
  .agendalist
  .listevents
  .calendarmap-list:hover {
  background: #eee !important;
}
.theme-alternate #theme-container .tasklist .titlebar {
  background-color: #444;
}
.theme-alternate #theme-container .tasklist .titlebar .sortbar.sortbartask {
  background: #444;
}
.theme-alternate
  #theme-container
  .tasklist
  .titlebar
  .sortbar.sortbartask
  .dropdown-container
  .dropdown-select {
  background-color: #444;
}
.theme-alternate #theme-container .tasklist .taskCellList .taskCell {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
}
.theme-alternate #theme-container .tasklist .taskCellList .taskCell:hover {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
  background-color: #eee;
}
.theme-alternate #theme-container .tasklist .taskCellList .taskCell.active {
  border: 1px solid transparent;
  border-bottom: 1px solid #dcdcdc;
  background-color: #d5d5d5;
}
.theme-alternate #theme-container .collaborator-suggestions ul li.active {
  background-color: #444;
}
.theme-alternate
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li:hover {
  background-color: #eee;
}
.theme-alternate
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.active {
  background-color: #d5d5d5;
}
.theme-alternate
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list
  .contacts-childrens
  li.activeChecked {
  background-color: #eee;
}
.theme-alternate #theme-container .contacts-section .contacts-lists .sortbar {
  background: #595959;
}
.theme-alternate #theme-container #onlinestorage .folder-tree .folder.current {
  background-color: #595959;
}
.theme-alternate
  #theme-container
  #onlinestorage
  .folder-tree
  .folder:focus:not(.current),
.theme-alternate
  #theme-container
  #onlinestorage
  .folder-tree
  .folder:hover:not(.current) {
  background-color: #555;
}
.theme-alternate #theme-container #onlinestorage .list-view-header,
.theme-alternate #theme-container #onlinestorage .thumbnail-view-heading,
.theme-alternate #theme-container #onlinestorage thead tr {
  background-color: #444;
}
.theme-alternate #theme-container #onlinestorage .list-view-content .file:hover,
.theme-alternate
  #theme-container
  #onlinestorage
  .list-view-content
  .folder:hover {
  background-color: #d5d5d5;
}
.theme-alternate
  #theme-container
  #onlinestorage
  .list-view-content
  .file.checked,
.theme-alternate
  #theme-container
  #onlinestorage
  .list-view-content
  .folder.checked {
  background-color: #eee;
}
.theme-alternate #theme-container .pgpTableRow:hover {
  background-color: #b9b9b9;
}
.theme-alternate
  .attachmentview-container
  .attachmentview-datagrid-pane
  .list-view
  div.divtr:hover {
  background-color: #eee;
}
.theme-alternate .onlinestoragepopup thead > tr {
  background-color: #444;
}
.theme-alternate .tags-fields .autofill-list-container li.active {
  background: #444;
}
.theme-wm8 #theme-container {
  height: 100%;
}
.theme-wm8 #theme-container :focus:not(.tags-input) {
  outline: 0;
  box-shadow: 0 0 0 0.2rem
    rgba(
      var(--primary-color-r),
      var(--primary-color-g),
      var(--primary-color-b),
      0.25
    );
}
.theme-wm8 #theme-container .dropdown-menu li {
  background: none;
}
.theme-wm8 #theme-container .dropdown-menu li a:focus,
.theme-wm8 #theme-container .dropdown-menu li a:hover {
  color: var(--dropdown-link-hover-color) !important;
  background: var(--dropdown-link-hover-bg);
}
.theme-wm8 #theme-container .dropdown-menu li a:focus .fa,
.theme-wm8 #theme-container .dropdown-menu li a:hover .fa {
  color: var(--dropdown-link-hover-color);
}
.theme-wm8 #theme-container .dropdown-container {
  font-weight: 400;
}
.theme-wm8 #theme-container .dropdown-container .dropdown-select {
  border-radius: 3px;
}
.theme-wm8 #theme-container .dropdown-container .dropdown-options-container {
  border: 1px solid #dcdcdc;
  border-radius: 3px;
}
.theme-wm8
  #theme-container
  .dropdown-container
  .dropdown-options-container:focus {
  box-shadow: none;
}
.theme-wm8
  #theme-container
  .dropdown-container
  .dropdown-options-container
  .dropdown-options
  .dropdown-option {
  padding: 3.575px 25px 3.575px 5px;
  color: var(--dropdown-link-color) !important;
}
.theme-wm8
  #theme-container
  .dropdown-container
  .dropdown-options-container
  .dropdown-options
  .dropdown-option.highlighted {
  color: var(--dropdown-link-hover-color) !important;
  background: var(--dropdown-link-hover-bg);
}
.theme-wm8
  #theme-container
  .dropdown-container
  .dropdown-options-container
  .dropdown-options
  .dropdown-option.highlighted
  .fa,
.theme-wm8
  #theme-container
  .dropdown-container
  .dropdown-options-container
  .dropdown-options
  .dropdown-option.highlighted
  span {
  color: var(--dropdown-link-hover-color) !important;
}
.theme-wm8
  #theme-container
  .dropdown-container
  .dropdown-options-container
  .dropdown-options
  .dropdown-option[aria-selected="true"] {
  color: #fff !important;
  background: var(--primary-color);
}
.theme-wm8
  #theme-container
  .dropdown-container
  .dropdown-options-container
  .dropdown-options
  .dropdown-option[aria-selected="true"]
  .fa,
.theme-wm8
  #theme-container
  .dropdown-container
  .dropdown-options-container
  .dropdown-options
  .dropdown-option[aria-selected="true"]
  span {
  color: #fff !important;
}
.theme-wm8
  #theme-container
  .dropdown-container
  .dropdown-options-container
  .dropdown-options
  .dropdown-option
  .fa,
.theme-wm8
  #theme-container
  .dropdown-container
  .dropdown-options-container
  .dropdown-options
  .dropdown-option
  span {
  color: var(--dropdown-link-color) !important;
}
.theme-wm8
  #theme-container
  .dropdown-container
  .dropdown-options-container
  .dropdown-options-down-container,
.theme-wm8
  #theme-container
  .dropdown-container
  .dropdown-options-container
  .dropdown-options-up-container {
  display: block !important;
}
.theme-wm8
  #theme-container
  .dropdown-container
  .dropdown-options-container
  .dropdown-options-down-container.ng-hide,
.theme-wm8
  #theme-container
  .dropdown-container
  .dropdown-options-container
  .dropdown-options-up-container.ng-hide {
  height: 8px;
  background-color: inherit !important;
  border-color: inherit !important;
}
.theme-wm8
  #theme-container
  .dropdown-container
  .dropdown-options-container
  .dropdown-options-down-container.ng-hide
  > *,
.theme-wm8
  #theme-container
  .dropdown-container
  .dropdown-options-container
  .dropdown-options-up-container.ng-hide
  > * {
  display: none;
}
.theme-wm8
  #theme-container
  .dropdown-container
  .dropdown-options-container
  .dropdown-options-down-container
  > :hover,
.theme-wm8
  #theme-container
  .dropdown-container
  .dropdown-options-container
  .dropdown-options-up-container
  > :hover {
  color: rgba(
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      var(--primary-color-r) * 0.299 + var(--primary-color-g) *
                        0.587 + var(--primary-color-b) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 33 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          var(--primary-color-r) * 0.299 +
                            var(--primary-color-g) * 0.587 +
                            var(--primary-color-b) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      var(--primary-color-r) * 0.299 + var(--primary-color-g) *
                        0.587 + var(--primary-color-b) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 37 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          var(--primary-color-r) * 0.299 +
                            var(--primary-color-g) * 0.587 +
                            var(--primary-color-b) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      var(--primary-color-r) * 0.299 + var(--primary-color-g) *
                        0.587 + var(--primary-color-b) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 41 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          var(--primary-color-r) * 0.299 +
                            var(--primary-color-g) * 0.587 +
                            var(--primary-color-b) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    1
  );
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}
.theme-wm8 #theme-container .btn {
  font-size: var(--font-size);
}
.theme-wm8 #theme-container .btn.btn-primary {
  color: rgba(
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      var(--primary-color-r) * 0.299 + var(--primary-color-g) *
                        0.587 + var(--primary-color-b) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 33 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          var(--primary-color-r) * 0.299 +
                            var(--primary-color-g) * 0.587 +
                            var(--primary-color-b) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      var(--primary-color-r) * 0.299 + var(--primary-color-g) *
                        0.587 + var(--primary-color-b) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 37 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          var(--primary-color-r) * 0.299 +
                            var(--primary-color-g) * 0.587 +
                            var(--primary-color-b) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      var(--primary-color-r) * 0.299 + var(--primary-color-g) *
                        0.587 + var(--primary-color-b) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 41 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          var(--primary-color-r) * 0.299 +
                            var(--primary-color-g) * 0.587 +
                            var(--primary-color-b) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    1
  );
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.theme-wm8 #theme-container .btn.btn-primary:hover {
  color: rgba(
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      calc(0.925 * var(--primary-color-r)) * 0.299 +
                        calc(0.925 * var(--primary-color-g)) * 0.587 +
                        calc(0.925 * var(--primary-color-b)) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 33 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          calc(0.925 * var(--primary-color-r)) * 0.299 +
                            calc(0.925 * var(--primary-color-g)) * 0.587 +
                            calc(0.925 * var(--primary-color-b)) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      calc(0.925 * var(--primary-color-r)) * 0.299 +
                        calc(0.925 * var(--primary-color-g)) * 0.587 +
                        calc(0.925 * var(--primary-color-b)) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 37 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          calc(0.925 * var(--primary-color-r)) * 0.299 +
                            calc(0.925 * var(--primary-color-g)) * 0.587 +
                            calc(0.925 * var(--primary-color-b)) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      calc(0.925 * var(--primary-color-r)) * 0.299 +
                        calc(0.925 * var(--primary-color-g)) * 0.587 +
                        calc(0.925 * var(--primary-color-b)) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 41 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          calc(0.925 * var(--primary-color-r)) * 0.299 +
                            calc(0.925 * var(--primary-color-g)) * 0.587 +
                            calc(0.925 * var(--primary-color-b)) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    1
  );
  background: rgba(
    calc(0.925 * var(--primary-color-r)),
    calc(0.925 * var(--primary-color-g)),
    calc(0.925 * var(--primary-color-b)),
    1
  );
  border-color: rgba(
    calc(0.9 * var(--primary-color-r)),
    calc(0.9 * var(--primary-color-g)),
    calc(0.9 * var(--primary-color-b)),
    1
  );
}
.theme-wm8 #theme-container .btn.btn-primary:active {
  color: rgba(
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      calc(0.9 * var(--primary-color-r)) * 0.299 +
                        calc(0.9 * var(--primary-color-g)) * 0.587 +
                        calc(0.9 * var(--primary-color-b)) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 33 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          calc(0.9 * var(--primary-color-r)) * 0.299 +
                            calc(0.9 * var(--primary-color-g)) * 0.587 +
                            calc(0.9 * var(--primary-color-b)) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      calc(0.9 * var(--primary-color-r)) * 0.299 +
                        calc(0.9 * var(--primary-color-g)) * 0.587 +
                        calc(0.9 * var(--primary-color-b)) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 37 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          calc(0.9 * var(--primary-color-r)) * 0.299 +
                            calc(0.9 * var(--primary-color-g)) * 0.587 +
                            calc(0.9 * var(--primary-color-b)) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      calc(0.9 * var(--primary-color-r)) * 0.299 +
                        calc(0.9 * var(--primary-color-g)) * 0.587 +
                        calc(0.9 * var(--primary-color-b)) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 41 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          calc(0.9 * var(--primary-color-r)) * 0.299 +
                            calc(0.9 * var(--primary-color-g)) * 0.587 +
                            calc(0.9 * var(--primary-color-b)) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    1
  );
  background: rgba(
    calc(0.9 * var(--primary-color-r)),
    calc(0.9 * var(--primary-color-g)),
    calc(0.9 * var(--primary-color-b)),
    1
  );
  border-color: rgba(
    calc(0.875 * var(--primary-color-r)),
    calc(0.875 * var(--primary-color-g)),
    calc(0.875 * var(--primary-color-b)),
    1
  );
}
.theme-wm8 #theme-container .btn.btn-secondary {
  color: rgba(
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      var(--secondary-color-r) * 0.299 +
                        var(--secondary-color-g) * 0.587 +
                        var(--secondary-color-b) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 33 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          var(--secondary-color-r) * 0.299 +
                            var(--secondary-color-g) * 0.587 +
                            var(--secondary-color-b) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      var(--secondary-color-r) * 0.299 +
                        var(--secondary-color-g) * 0.587 +
                        var(--secondary-color-b) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 37 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          var(--secondary-color-r) * 0.299 +
                            var(--secondary-color-g) * 0.587 +
                            var(--secondary-color-b) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      var(--secondary-color-r) * 0.299 +
                        var(--secondary-color-g) * 0.587 +
                        var(--secondary-color-b) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 41 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          var(--secondary-color-r) * 0.299 +
                            var(--secondary-color-g) * 0.587 +
                            var(--secondary-color-b) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    1
  );
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}
.theme-wm8 #theme-container .btn.btn-secondary:hover {
  color: rgba(
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      calc(0.925 * var(--secondary-color-r)) * 0.299 +
                        calc(0.925 * var(--secondary-color-g)) * 0.587 +
                        calc(0.925 * var(--secondary-color-b)) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 33 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          calc(0.925 * var(--secondary-color-r)) * 0.299 +
                            calc(0.925 * var(--secondary-color-g)) * 0.587 +
                            calc(0.925 * var(--secondary-color-b)) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      calc(0.925 * var(--secondary-color-r)) * 0.299 +
                        calc(0.925 * var(--secondary-color-g)) * 0.587 +
                        calc(0.925 * var(--secondary-color-b)) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 37 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          calc(0.925 * var(--secondary-color-r)) * 0.299 +
                            calc(0.925 * var(--secondary-color-g)) * 0.587 +
                            calc(0.925 * var(--secondary-color-b)) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      calc(0.925 * var(--secondary-color-r)) * 0.299 +
                        calc(0.925 * var(--secondary-color-g)) * 0.587 +
                        calc(0.925 * var(--secondary-color-b)) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 41 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          calc(0.925 * var(--secondary-color-r)) * 0.299 +
                            calc(0.925 * var(--secondary-color-g)) * 0.587 +
                            calc(0.925 * var(--secondary-color-b)) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    1
  );
  background: rgba(
    calc(0.925 * var(--secondary-color-r)),
    calc(0.925 * var(--secondary-color-g)),
    calc(0.925 * var(--secondary-color-b)),
    1
  );
  border-color: rgba(
    calc(0.9 * var(--secondary-color-r)),
    calc(0.9 * var(--secondary-color-g)),
    calc(0.9 * var(--secondary-color-b)),
    1
  );
}
.theme-wm8 #theme-container .btn.btn-secondary:active {
  color: rgba(
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      calc(0.9 * var(--secondary-color-r)) * 0.299 +
                        calc(0.9 * var(--secondary-color-g)) * 0.587 +
                        calc(0.9 * var(--secondary-color-b)) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 33 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          calc(0.9 * var(--secondary-color-r)) * 0.299 +
                            calc(0.9 * var(--secondary-color-g)) * 0.587 +
                            calc(0.9 * var(--secondary-color-b)) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      calc(0.9 * var(--secondary-color-r)) * 0.299 +
                        calc(0.9 * var(--secondary-color-g)) * 0.587 +
                        calc(0.9 * var(--secondary-color-b)) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 37 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          calc(0.9 * var(--secondary-color-r)) * 0.299 +
                            calc(0.9 * var(--secondary-color-g)) * 0.587 +
                            calc(0.9 * var(--secondary-color-b)) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    calc(
      255 *
        max(
          0,
          min(
            calc(
              (
                  calc(
                      calc(0.9 * var(--secondary-color-r)) * 0.299 +
                        calc(0.9 * var(--secondary-color-g)) * 0.587 +
                        calc(0.9 * var(--secondary-color-b)) * 0.114
                    ) - 150
                ) * -1000
            ),
            1
          )
        ) + 41 *
        (
          1 -
            max(
              0,
              min(
                calc(
                  (
                      calc(
                          calc(0.9 * var(--secondary-color-r)) * 0.299 +
                            calc(0.9 * var(--secondary-color-g)) * 0.587 +
                            calc(0.9 * var(--secondary-color-b)) * 0.114
                        ) - 150
                    ) * -1000
                ),
                1
              )
            )
        )
    ),
    1
  );
  background: rgba(
    calc(0.9 * var(--secondary-color-r)),
    calc(0.9 * var(--secondary-color-g)),
    calc(0.9 * var(--secondary-color-b)),
    1
  );
  border-color: rgba(
    calc(0.875 * var(--secondary-color-r)),
    calc(0.875 * var(--secondary-color-g)),
    calc(0.875 * var(--secondary-color-b)),
    1
  );
}
.theme-wm8 #theme-container .level1 {
  background: #fff;
}
.theme-wm8 #theme-container .level1 .headerbar.withButton h1 {
  margin-left: 0;
}
.theme-wm8 #theme-container .level1 .panel .panel-heading-bar {
  background: var(--primary-color);
}
.theme-wm8 #theme-container .panel-heading-underline {
  border: none;
  padding: 2px 0;
  margin: 0 12px 0 3px;
}
.theme-wm8 #theme-container .panel-heading-underline .panel-title .fa {
  width: 12px;
}
.theme-wm8 #theme-container .collapse .nav.navbar-nav.side-nav1 .nav1listing {
  padding-left: 15px;
  color: inherit !important;
}
.theme-wm8 #theme-container .freebusy .users .customHoursContainer,
.theme-wm8 #theme-container .freebusy .users .user .info {
  background: #fff;
}
.theme-wm8 #theme-container .freebusy .users .customHoursContainer > div {
  background: var(--neutral-background-color);
}
.theme-wm8 #theme-container .nav.navbar-nav.side-nav1 li.active .nav1listing {
  font-weight: bolder;
}
.theme-wm8 #theme-container .nav.navbar-nav.side-nav1 li.active .nav1listing,
.theme-wm8 #theme-container .nav.navbar-nav.side-nav1 li:hover .nav1listing {
  background: var(--neutral-background-color);
  color: #3e3e3e !important;
  overflow: visible;
}
.theme-wm8
  #theme-container
  .nav.navbar-nav.side-nav1
  li.active
  .nav1listing:before,
.theme-wm8
  #theme-container
  .nav.navbar-nav.side-nav1
  li:hover
  .nav1listing:before {
  content: "";
  height: 100%;
  width: 4px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--primary-color);
}
.theme-wm8
  #theme-container
  .nav.navbar-nav.side-nav1
  li.active
  .nav1listing
  .menutext,
.theme-wm8
  #theme-container
  .nav.navbar-nav.side-nav1
  li:hover
  .nav1listing
  .menutext {
  color: #3e3e3e !important;
}
.theme-wm8 #theme-container .nav.navbar-nav.side-nav1 .nav1listing {
  background: #fff;
  position: relative;
  border-radius: 0;
  border: 0;
  margin: 1px 0;
  width: 100%;
  height: 22.5px;
  padding: 0 15px;
  color: #3e3e3e;
}
.theme-wm8 #theme-container .nav.navbar-nav.side-nav1 .nav1listing > div {
  margin-top: 2px;
}
.theme-wm8 #theme-container .nav.navbar-nav.side-nav1 .nav1listing .context {
  background: transparent;
}
.theme-wm8 #theme-container #workspace0 .folder-tree .btn,
.theme-wm8 #theme-container .folder-tree .btn {
  width: calc(50% - 5px);
}
.theme-wm8 #theme-container #workspace0 .folder-tree .folder,
.theme-wm8 #theme-container .folder-tree .folder {
  background: #fff !important;
  position: relative;
  color: #3e3e3e;
  border-radius: 0;
  border: 0;
  margin: 1px 0 1px -1.6px;
  width: calc(100% + 1.6px);
  height: 22.5px;
  padding: 0 15px;
  line-height: 17px;
}
.theme-wm8 #theme-container #workspace0 .folder-tree .folder .folder-name,
.theme-wm8 #theme-container .folder-tree .folder .folder-name {
  height: 20.4px;
  line-height: 20.4px;
}
.theme-wm8
  #theme-container
  #workspace0
  .folder-tree
  .folder
  > .dropdown-container
  button.dropdown-button,
.theme-wm8
  #theme-container
  .folder-tree
  .folder
  > .dropdown-container
  button.dropdown-button {
  color: #3e3e3e !important;
}
.theme-wm8
  #theme-container
  #workspace0
  .folder-tree
  .folder
  > .dropdown-container
  .dropdown-options-container,
.theme-wm8
  #theme-container
  .folder-tree
  .folder
  > .dropdown-container
  .dropdown-options-container {
  right: 0;
}
.theme-wm8 #theme-container #workspace0 .folder-tree .folder.current,
.theme-wm8 #theme-container .folder-tree .folder.current {
  font-weight: bolder;
}
.theme-wm8 #theme-container #workspace0 .folder-tree .folder.current,
.theme-wm8 #theme-container #workspace0 .folder-tree .folder:hover,
.theme-wm8 #theme-container .folder-tree .folder.current,
.theme-wm8 #theme-container .folder-tree .folder:hover {
  background: var(--neutral-background-color) !important;
  color: #3e3e3e !important;
  border: 0;
  overflow: visible;
}
.theme-wm8 #theme-container #workspace0 .folder-tree .folder.current:before,
.theme-wm8 #theme-container #workspace0 .folder-tree .folder:hover:before,
.theme-wm8 #theme-container .folder-tree .folder.current:before,
.theme-wm8 #theme-container .folder-tree .folder:hover:before {
  content: "";
  height: 100%;
  width: 4px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--primary-color);
}
.theme-wm8 #theme-container #workspace0,
.theme-wm8 #theme-container #workspace1,
.theme-wm8 #theme-container #workspace2,
.theme-wm8 #theme-container [ui-view="workspace1"],
.theme-wm8 #theme-container [ui-view="workspace2"] {
  background: var(--neutral-background-color);
}
.theme-wm8 #theme-container .sortbar,
.theme-wm8 #theme-container .titlebar {
  background: none;
}
.theme-wm8 #theme-container .sortbar *,
.theme-wm8 #theme-container .titlebar * {
  color: #000;
}
.theme-wm8 #theme-container .sortbar .tooltip *,
.theme-wm8 #theme-container .titlebar .tooltip * {
  color: #fff;
}
.theme-wm8 #theme-container .taskCellList .newTask {
  padding: 10px 8px;
}
.theme-wm8 #theme-container .tasklist {
  background: none;
}
.theme-wm8 #theme-container .tasklist .newTask {
  border: none;
}
.theme-wm8 #theme-container .tasklist .taskCellList .taskCell {
  border: none !important;
  width: calc(100% - 10px);
  height: 54px;
  background: #fff;
  border-radius: 3px;
  margin-left: 5px;
  margin-right: 5px;
  font-size: var(--font-size);
}
.theme-wm8 #theme-container .tasklist .taskCellList .taskCell .duedate {
  font-size: calc(var(--font-size) - 3px);
}
.theme-wm8
  #theme-container
  .tasklist
  .taskCellList
  .taskCell:not(:first-child) {
  margin-top: 5px;
}
.theme-wm8 #theme-container .tasklist .taskCellList .taskCell:not(:last-child) {
  margin-bottom: 5px;
}
.theme-wm8 #theme-container .tasklist .taskCellList .taskCell:hover {
  background-color: rgba(
    calc(var(--primary-color-r) * 0.3 + 255 * 0.7),
    calc(var(--primary-color-g) * 0.3 + 255 * 0.7),
    calc(var(--primary-color-b) * 0.3 + 255 * 0.7),
    1
  ) !important;
}
.theme-wm8 #theme-container .tasklist .taskCellList .taskCell:hover.active {
  background-color: rgba(
    calc(0.9 * var(--primary-color-r)),
    calc(0.9 * var(--primary-color-g)),
    calc(0.9 * var(--primary-color-b)),
    1
  ) !important;
}
.theme-wm8
  #theme-container
  .tasklist
  .taskCellList
  .taskCell:not(:hover).active {
  background-color: var(--primary-color);
}
.theme-wm8 #theme-container .tasklist .taskCellList .taskCell.active * {
  color: #fff !important;
}
.theme-wm8 #theme-container .tasklist .taskCellList .taskCell .taskMainBlock {
  padding: 0;
}
.theme-wm8
  #theme-container
  .tasklist
  .taskCellList
  .taskCell
  .taskMainBlock
  .taskInfo {
  width: calc(100% - 25px);
}
.theme-wm8 #theme-container .taskview:nth-child(1):before,
.theme-wm8 #theme-container .taskview:nth-child(2):before,
.theme-wm8 #theme-container .taskview:nth-child(3):before {
  content: "";
  height: 50px;
  display: block;
  background: #fff;
}
.theme-wm8 #theme-container .contacts-section .contacts-lists,
.theme-wm8
  #theme-container
  .contacts-section
  .contacts-lists
  .contacts-long-list {
  background: none;
}
.theme-wm8 #theme-container .contacts-section .contacts-lists li.keyitem {
  margin: 2px 5px;
  border: none;
  width: calc(100% - 10px);
  max-width: calc(100% - 10px);
  border-radius: 3px;
}
.theme-wm8
  #theme-container
  .contacts-section
  .contacts-lists
  li.keyitem:not(:hover) {
  background: #fff;
}
.theme-wm8
  #theme-container
  .contacts-section
  .contacts-lists
  li.keyitem:not(:hover).active {
  background-color: var(--primary-color);
}
.theme-wm8 #theme-container .contacts-section .contacts-lists li.keyitem:hover {
  background-color: rgba(
    calc(var(--primary-color-r) * 0.3 + 255 * 0.7),
    calc(var(--primary-color-g) * 0.3 + 255 * 0.7),
    calc(var(--primary-color-b) * 0.3 + 255 * 0.7),
    1
  ) !important;
}
.theme-wm8
  #theme-container
  .contacts-section
  .contacts-lists
  li.keyitem:hover.active {
  background-color: rgba(
    calc(0.9 * var(--primary-color-r)),
    calc(0.9 * var(--primary-color-g)),
    calc(0.9 * var(--primary-color-b)),
    1
  ) !important;
}
.theme-wm8
  #theme-container
  .contacts-section
  .contacts-lists
  li.keyitem.active
  * {
  color: #fff !important;
}
.theme-wm8
  #theme-container
  .contacts-section
  .contacts-lists
  li.keyitem
  .contacts-contact {
  padding-bottom: 5px;
  padding-top: 5px;
}
.theme-wm8
  #theme-container
  .contacts-section
  .contacts-lists
  li.keyitem
  .contacts-contact
  .contact-short-data {
  max-width: 210px;
  padding: 0 0 0 10px;
}
.theme-wm8
  #theme-container
  .contacts-section
  .contacts-lists
  li.keyitem
  .contacts-contact
  .contact-actions {
  padding-top: 5px;
  padding-left: 8px;
  margin-left: 8px;
}
.theme-wm8 #theme-container #onlinestorage .onlinestorage-homepage {
  height: calc(100vh);
}
.theme-wm8 #theme-container #onlinestorage.path-container {
  background: #fff;
}
.theme-wm8 #theme-container #onlinestorage .level1 .folder-tree {
  margin: 0;
}
.theme-wm8 #theme-container .list-view .icons-column {
  width: 123px;
}
.theme-wm8 #theme-container #editeventsidebar .attendee > div {
  width: 223px;
}
.theme-wm8 #theme-container #mini-calendar-parent .selectday,
.theme-wm8 #theme-container #mini-calendar-parent td.active .day-date {
  background: var(--dropdown-link-hover-bg);
}
.theme-wm8 #theme-container #mini-calendar-parent td.mark-today a {
  background: var(--primary-color);
}
.theme-wm8 #theme-container .modal-dialog {
  margin-top: 40px;
}
.theme-wm8
  #theme-container
  .preferences
  .preferencesListItem.active
  .text-ellipsis.autoreply-ellipsis,
.theme-wm8
  #theme-container
  .preferences
  .preferencesListItem.keynavActive
  .text-ellipsis.autoreply-ellipsis,
.theme-wm8
  #theme-container
  .preferences
  .preferencesListItem:active
  .text-ellipsis.autoreply-ellipsis,
.theme-wm8
  #theme-container
  .preferences
  .preferencesListItem:focus
  .text-ellipsis.autoreply-ellipsis,
.theme-wm8
  #theme-container
  .preferences
  .preferencesListItem:hover
  .text-ellipsis.autoreply-ellipsis {
  width: calc(100% - 50px);
}
.theme-wm8.theme-dark #theme-container #workspace0,
.theme-wm8.theme-dark #theme-container #workspace1,
.theme-wm8.theme-dark #theme-container #workspace2,
.theme-wm8.theme-dark #theme-container .level1,
.theme-wm8.theme-dark #theme-container [ui-view="workspace1"],
.theme-wm8.theme-dark #theme-container [ui-view="workspace2"],
.theme-wm8.theme-light #theme-container #workspace0,
.theme-wm8.theme-light #theme-container #workspace1,
.theme-wm8.theme-light #theme-container #workspace2,
.theme-wm8.theme-light #theme-container .level1,
.theme-wm8.theme-light #theme-container [ui-view="workspace1"],
.theme-wm8.theme-light #theme-container [ui-view="workspace2"] {
  background: none !important;
}
.theme-wm8.theme-dark #theme-container .taskview:nth-child(1):before,
.theme-wm8.theme-dark #theme-container .taskview:nth-child(2):before,
.theme-wm8.theme-dark #theme-container .taskview:nth-child(3):before,
.theme-wm8.theme-light #theme-container .taskview:nth-child(1):before,
.theme-wm8.theme-light #theme-container .taskview:nth-child(2):before,
.theme-wm8.theme-light #theme-container .taskview:nth-child(3):before {
  background: transparent !important;
}
.theme-wm8.theme-dark #theme-container .contacts-section li.keyitem:not(:hover),
.theme-wm8.theme-light
  #theme-container
  .contacts-section
  li.keyitem:not(:hover) {
  background-color: rgba(0, 0, 0, 0.15) !important;
}
.theme-wm8.theme-dark
  #theme-container
  .contacts-section
  li.keyitem:not(:hover).active,
.theme-wm8.theme-light
  #theme-container
  .contacts-section
  li.keyitem:not(:hover).active {
  background-color: hsla(0, 0%, 100%, 0.45) !important;
}
.theme-wm8.theme-dark #theme-container .contacts-section li.keyitem:hover,
.theme-wm8.theme-light #theme-container .contacts-section li.keyitem:hover {
  background-color: hsla(0, 0%, 100%, 0.15) !important;
}
.theme-wm8.theme-dark
  #theme-container
  .contacts-section
  li.keyitem:hover.active,
.theme-wm8.theme-light
  #theme-container
  .contacts-section
  li.keyitem:hover.active {
  background-color: hsla(0, 0%, 100%, 0.35) !important;
}
.theme-wm8.theme-dark #theme-container .contacts-section pagination-directive,
.theme-wm8.theme-light #theme-container .contacts-section pagination-directive {
  background-color: rgba(0, 0, 0, 0.5) !important;
}
.theme-wm8.theme-dark #theme-container .tasklist .taskCellList,
.theme-wm8.theme-light #theme-container .tasklist .taskCellList {
  background-color: rgba(0, 0, 0, 0.5);
}
.theme-wm8.theme-dark #theme-container .tasklist .taskCellList .taskCell,
.theme-wm8.theme-light #theme-container .tasklist .taskCellList .taskCell {
  background-color: rgba(0, 0, 0, 0.15) !important;
}
.theme-wm8.theme-dark #theme-container .tasklist .taskCellList .taskCell:hover,
.theme-wm8.theme-light
  #theme-container
  .tasklist
  .taskCellList
  .taskCell:hover {
  background-color: hsla(0, 0%, 100%, 0.15) !important;
}
.theme-wm8.theme-dark
  #theme-container
  .tasklist
  .taskCellList
  .taskCell:hover.active,
.theme-wm8.theme-light
  #theme-container
  .tasklist
  .taskCellList
  .taskCell:hover.active {
  background-color: hsla(0, 0%, 100%, 0.35) !important;
}
.theme-wm8.theme-dark
  #theme-container
  .tasklist
  .taskCellList
  .taskCell:not(:hover).active,
.theme-wm8.theme-light
  #theme-container
  .tasklist
  .taskCellList
  .taskCell:not(:hover).active {
  background-color: hsla(0, 0%, 100%, 0.45) !important;
}
.theme-wm8.theme-dark #theme-container #workspace0 .folder-tree .folder,
.theme-wm8.theme-dark #theme-container .folder-tree .folder,
.theme-wm8.theme-light #theme-container #workspace0 .folder-tree .folder,
.theme-wm8.theme-light #theme-container .folder-tree .folder {
  background: none !important;
  color: inherit !important;
}
.theme-wm8.theme-dark
  #theme-container
  #workspace0
  .folder-tree
  .folder
  > .dropdown-container
  button.dropdown-button,
.theme-wm8.theme-dark
  #theme-container
  .folder-tree
  .folder
  > .dropdown-container
  button.dropdown-button,
.theme-wm8.theme-light
  #theme-container
  #workspace0
  .folder-tree
  .folder
  > .dropdown-container
  button.dropdown-button,
.theme-wm8.theme-light
  #theme-container
  .folder-tree
  .folder
  > .dropdown-container
  button.dropdown-button {
  color: #3e3e3e !important;
}
.theme-wm8.theme-dark #theme-container #workspace0 .folder-tree .folder.current,
.theme-wm8.theme-dark #theme-container #workspace0 .folder-tree .folder:hover,
.theme-wm8.theme-dark #theme-container .folder-tree .folder.current,
.theme-wm8.theme-dark #theme-container .folder-tree .folder:hover,
.theme-wm8.theme-dark
  #theme-container
  .nav.navbar-nav.side-nav1
  li.active
  .nav1listing,
.theme-wm8.theme-dark
  #theme-container
  .nav.navbar-nav.side-nav1
  li:hover
  .nav1listing,
.theme-wm8.theme-light
  #theme-container
  #workspace0
  .folder-tree
  .folder.current,
.theme-wm8.theme-light #theme-container #workspace0 .folder-tree .folder:hover,
.theme-wm8.theme-light #theme-container .folder-tree .folder.current,
.theme-wm8.theme-light #theme-container .folder-tree .folder:hover,
.theme-wm8.theme-light
  #theme-container
  .nav.navbar-nav.side-nav1
  li.active
  .nav1listing,
.theme-wm8.theme-light
  #theme-container
  .nav.navbar-nav.side-nav1
  li:hover
  .nav1listing {
  background: rgba(
    var(--neutral-background-color-r),
    var(--neutral-background-color-g),
    var(--neutral-background-color-b),
    0.35
  ) !important;
  color: inherit !important;
}
.theme-wm8.theme-dark
  #theme-container
  .nav.navbar-nav.side-nav1
  li.active
  .nav1listing
  .menutext,
.theme-wm8.theme-dark
  #theme-container
  .nav.navbar-nav.side-nav1
  li:hover
  .nav1listing
  .menutext,
.theme-wm8.theme-light
  #theme-container
  .nav.navbar-nav.side-nav1
  li.active
  .nav1listing
  .menutext,
.theme-wm8.theme-light
  #theme-container
  .nav.navbar-nav.side-nav1
  li:hover
  .nav1listing
  .menutext {
  color: inherit !important;
}
.theme-wm8.theme-dark #theme-container .nav.navbar-nav.side-nav1 .nav1listing,
.theme-wm8.theme-light #theme-container .nav.navbar-nav.side-nav1 .nav1listing {
  background: none !important;
}
.theme-wm8.theme-light div#theme-container .contacts-letters-div *,
.theme-wm8.theme-light div#theme-container .sortbar *,
.theme-wm8.theme-light div#theme-container .titlebar * {
  color: #000 !important;
}
.theme-wm8.theme-light div#theme-container .contacts-section .contacts-lists {
  background: hsla(0, 0%, 100%, 0.65) !important;
}
.theme-wm8.theme-light
  div#theme-container
  .contacts-section
  li.keyitem:not(:hover) {
  background-color: hsla(0, 0%, 100%, 0.6) !important;
}
.theme-wm8.theme-light
  div#theme-container
  .contacts-section
  li.keyitem:not(:hover).active {
  background-color: hsla(0, 0%, 46%, 0.45) !important;
}
.theme-wm8.theme-light div#theme-container .contacts-section li.keyitem:hover {
  background-color: hsla(0, 0%, 46%, 0.2) !important;
}
.theme-wm8.theme-light
  div#theme-container
  .contacts-section
  li.keyitem:hover.active {
  background-color: hsla(0, 0%, 46%, 0.35) !important;
}
.theme-wm8.theme-light div#theme-container .contacts-section li.keyitem.active {
  color: #000 !important;
}
.theme-wm8.theme-light
  div#theme-container
  .contacts-section
  pagination-directive {
  background-color: hsla(0, 0%, 100%, 0.85) !important;
}
.theme-wm8.theme-light div#theme-container .level1 {
  background: hsla(0, 0%, 100%, 0.4) !important;
}
.theme-wm8.theme-light div#theme-container .titlebar * {
  color: #000 !important;
}
.theme-wm8.theme-light
  div#theme-container
  #workspace0
  .folder-tree
  .folder.current,
.theme-wm8.theme-light
  div#theme-container
  #workspace0
  .folder-tree
  .folder:hover,
.theme-wm8.theme-light div#theme-container .folder-tree .folder.current,
.theme-wm8.theme-light div#theme-container .folder-tree .folder:hover {
  background: rgba(
    var(--secondary-color-r),
    var(--secondary-color-g),
    var(--secondary-color-b),
    0.15
  ) !important;
}
.theme-wm8.theme-light div#theme-container .tasklist .taskCellList {
  background-color: hsla(0, 0%, 100%, 0.65);
}
.theme-wm8.theme-light div#theme-container .tasklist .taskCellList .taskCell {
  background-color: hsla(0, 0%, 100%, 0.6) !important;
}
.theme-wm8.theme-light
  div#theme-container
  .tasklist
  .taskCellList
  .taskCell.active
  * {
  color: inherit !important;
}
.theme-wm8.theme-light
  div#theme-container
  .tasklist
  .taskCellList
  .taskCell:hover {
  background-color: hsla(0, 0%, 46%, 0.2) !important;
}
.theme-wm8.theme-light
  div#theme-container
  .tasklist
  .taskCellList
  .taskCell:hover.active {
  background-color: hsla(0, 0%, 46%, 0.35) !important;
}
.theme-wm8.theme-light
  div#theme-container
  .tasklist
  .taskCellList
  .taskCell:not(:hover).active {
  background-color: hsla(0, 0%, 46%, 0.45) !important;
}
.theme-wm8.theme-light
  div#theme-container
  .nav.navbar-nav.side-nav1
  li.active
  .nav1listing,
.theme-wm8.theme-light
  div#theme-container
  .nav.navbar-nav.side-nav1
  li:hover
  .nav1listing {
  background: rgba(
    var(--secondary-color-r),
    var(--secondary-color-g),
    var(--secondary-color-b),
    0.15
  ) !important;
  color: inherit !important;
}
.theme-wm8.theme-light
  div#theme-container
  .nav.navbar-nav.side-nav1
  .nav1listing {
  background: none !important;
}
.theme-wm8.theme-alternate #theme-container .contacts-letters-div *,
.theme-wm8.theme-alternate #theme-container .sortbar *,
.theme-wm8.theme-alternate #theme-container .titlebar *,
.theme-wm8.theme-blue #theme-container .contacts-letters-div *,
.theme-wm8.theme-blue #theme-container .sortbar *,
.theme-wm8.theme-blue #theme-container .titlebar *,
.theme-wm8.theme-dark #theme-container .contacts-letters-div *,
.theme-wm8.theme-dark #theme-container .sortbar *,
.theme-wm8.theme-dark #theme-container .titlebar *,
.theme-wm8.theme-green #theme-container .contacts-letters-div *,
.theme-wm8.theme-green #theme-container .sortbar *,
.theme-wm8.theme-green #theme-container .titlebar *,
.theme-wm8.theme-light #theme-container .contacts-letters-div *,
.theme-wm8.theme-light #theme-container .sortbar *,
.theme-wm8.theme-light #theme-container .titlebar *,
.theme-wm8.theme-navy #theme-container .contacts-letters-div *,
.theme-wm8.theme-navy #theme-container .sortbar *,
.theme-wm8.theme-navy #theme-container .titlebar *,
.theme-wm8.theme-orange #theme-container .contacts-letters-div *,
.theme-wm8.theme-orange #theme-container .sortbar *,
.theme-wm8.theme-orange #theme-container .titlebar *,
.theme-wm8.theme-red #theme-container .contacts-letters-div *,
.theme-wm8.theme-red #theme-container .sortbar *,
.theme-wm8.theme-red #theme-container .titlebar *,
.theme-wm8.theme-teal #theme-container .contacts-letters-div *,
.theme-wm8.theme-teal #theme-container .sortbar *,
.theme-wm8.theme-teal #theme-container .titlebar *,
.theme-wm8.theme-violet #theme-container .contacts-letters-div *,
.theme-wm8.theme-violet #theme-container .sortbar *,
.theme-wm8.theme-violet #theme-container .titlebar * {
  color: #fff !important;
}
.theme-wm8.theme-alternate
  #theme-container
  .contacts-letters-div
  *
  .dropdown-menu
  *,
.theme-wm8.theme-alternate #theme-container .sortbar * .dropdown-menu *,
.theme-wm8.theme-alternate #theme-container .titlebar * .dropdown-menu *,
.theme-wm8.theme-blue #theme-container .contacts-letters-div * .dropdown-menu *,
.theme-wm8.theme-blue #theme-container .sortbar * .dropdown-menu *,
.theme-wm8.theme-blue #theme-container .titlebar * .dropdown-menu *,
.theme-wm8.theme-dark #theme-container .contacts-letters-div * .dropdown-menu *,
.theme-wm8.theme-dark #theme-container .sortbar * .dropdown-menu *,
.theme-wm8.theme-dark #theme-container .titlebar * .dropdown-menu *,
.theme-wm8.theme-green
  #theme-container
  .contacts-letters-div
  *
  .dropdown-menu
  *,
.theme-wm8.theme-green #theme-container .sortbar * .dropdown-menu *,
.theme-wm8.theme-green #theme-container .titlebar * .dropdown-menu *,
.theme-wm8.theme-light
  #theme-container
  .contacts-letters-div
  *
  .dropdown-menu
  *,
.theme-wm8.theme-light #theme-container .sortbar * .dropdown-menu *,
.theme-wm8.theme-light #theme-container .titlebar * .dropdown-menu *,
.theme-wm8.theme-navy #theme-container .contacts-letters-div * .dropdown-menu *,
.theme-wm8.theme-navy #theme-container .sortbar * .dropdown-menu *,
.theme-wm8.theme-navy #theme-container .titlebar * .dropdown-menu *,
.theme-wm8.theme-orange
  #theme-container
  .contacts-letters-div
  *
  .dropdown-menu
  *,
.theme-wm8.theme-orange #theme-container .sortbar * .dropdown-menu *,
.theme-wm8.theme-orange #theme-container .titlebar * .dropdown-menu *,
.theme-wm8.theme-red #theme-container .contacts-letters-div * .dropdown-menu *,
.theme-wm8.theme-red #theme-container .sortbar * .dropdown-menu *,
.theme-wm8.theme-red #theme-container .titlebar * .dropdown-menu *,
.theme-wm8.theme-teal #theme-container .contacts-letters-div * .dropdown-menu *,
.theme-wm8.theme-teal #theme-container .sortbar * .dropdown-menu *,
.theme-wm8.theme-teal #theme-container .titlebar * .dropdown-menu *,
.theme-wm8.theme-violet
  #theme-container
  .contacts-letters-div
  *
  .dropdown-menu
  *,
.theme-wm8.theme-violet #theme-container .sortbar * .dropdown-menu *,
.theme-wm8.theme-violet #theme-container .titlebar * .dropdown-menu * {
  color: #000;
}
.theme-wm8.theme-alternate #theme-container .contacts-letters-div * .tooltip *,
.theme-wm8.theme-alternate #theme-container .sortbar * .tooltip *,
.theme-wm8.theme-alternate #theme-container .titlebar * .tooltip *,
.theme-wm8.theme-blue #theme-container .contacts-letters-div * .tooltip *,
.theme-wm8.theme-blue #theme-container .sortbar * .tooltip *,
.theme-wm8.theme-blue #theme-container .titlebar * .tooltip *,
.theme-wm8.theme-dark #theme-container .contacts-letters-div * .tooltip *,
.theme-wm8.theme-dark #theme-container .sortbar * .tooltip *,
.theme-wm8.theme-dark #theme-container .titlebar * .tooltip *,
.theme-wm8.theme-green #theme-container .contacts-letters-div * .tooltip *,
.theme-wm8.theme-green #theme-container .sortbar * .tooltip *,
.theme-wm8.theme-green #theme-container .titlebar * .tooltip *,
.theme-wm8.theme-light #theme-container .contacts-letters-div * .tooltip *,
.theme-wm8.theme-light #theme-container .sortbar * .tooltip *,
.theme-wm8.theme-light #theme-container .titlebar * .tooltip *,
.theme-wm8.theme-navy #theme-container .contacts-letters-div * .tooltip *,
.theme-wm8.theme-navy #theme-container .sortbar * .tooltip *,
.theme-wm8.theme-navy #theme-container .titlebar * .tooltip *,
.theme-wm8.theme-orange #theme-container .contacts-letters-div * .tooltip *,
.theme-wm8.theme-orange #theme-container .sortbar * .tooltip *,
.theme-wm8.theme-orange #theme-container .titlebar * .tooltip *,
.theme-wm8.theme-red #theme-container .contacts-letters-div * .tooltip *,
.theme-wm8.theme-red #theme-container .sortbar * .tooltip *,
.theme-wm8.theme-red #theme-container .titlebar * .tooltip *,
.theme-wm8.theme-teal #theme-container .contacts-letters-div * .tooltip *,
.theme-wm8.theme-teal #theme-container .sortbar * .tooltip *,
.theme-wm8.theme-teal #theme-container .titlebar * .tooltip *,
.theme-wm8.theme-violet #theme-container .contacts-letters-div * .tooltip *,
.theme-wm8.theme-violet #theme-container .sortbar * .tooltip *,
.theme-wm8.theme-violet #theme-container .titlebar * .tooltip * {
  color: #fff !important;
}
.theme-wm8.theme-alternate #theme-container .dropdown-menu *,
.theme-wm8.theme-blue #theme-container .dropdown-menu *,
.theme-wm8.theme-dark #theme-container .dropdown-menu *,
.theme-wm8.theme-green #theme-container .dropdown-menu *,
.theme-wm8.theme-light #theme-container .dropdown-menu *,
.theme-wm8.theme-navy #theme-container .dropdown-menu *,
.theme-wm8.theme-orange #theme-container .dropdown-menu *,
.theme-wm8.theme-red #theme-container .dropdown-menu *,
.theme-wm8.theme-teal #theme-container .dropdown-menu *,
.theme-wm8.theme-violet #theme-container .dropdown-menu * {
  color: #000 !important;
}
.theme-wm8.theme-alternate
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus,
.theme-wm8.theme-alternate
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover,
.theme-wm8.theme-blue
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus,
.theme-wm8.theme-blue
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover,
.theme-wm8.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus,
.theme-wm8.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover,
.theme-wm8.theme-green
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus,
.theme-wm8.theme-green
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover,
.theme-wm8.theme-light
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus,
.theme-wm8.theme-light
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover,
.theme-wm8.theme-navy
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus,
.theme-wm8.theme-navy
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover,
.theme-wm8.theme-orange
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus,
.theme-wm8.theme-orange
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover,
.theme-wm8.theme-red
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus,
.theme-wm8.theme-red
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover,
.theme-wm8.theme-teal
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus,
.theme-wm8.theme-teal
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover,
.theme-wm8.theme-violet
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus,
.theme-wm8.theme-violet
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover {
  color: var(--dropdown-link-hover-color) !important;
  background-color: var(--dropdown-link-hover-bg) !important;
}
.theme-wm8.theme-alternate
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  .fa,
.theme-wm8.theme-alternate
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  .fa,
.theme-wm8.theme-blue
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  .fa,
.theme-wm8.theme-blue
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  .fa,
.theme-wm8.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  .fa,
.theme-wm8.theme-dark
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  .fa,
.theme-wm8.theme-green
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  .fa,
.theme-wm8.theme-green
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  .fa,
.theme-wm8.theme-light
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  .fa,
.theme-wm8.theme-light
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  .fa,
.theme-wm8.theme-navy
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  .fa,
.theme-wm8.theme-navy
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  .fa,
.theme-wm8.theme-orange
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  .fa,
.theme-wm8.theme-orange
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  .fa,
.theme-wm8.theme-red
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  .fa,
.theme-wm8.theme-red
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  .fa,
.theme-wm8.theme-teal
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  .fa,
.theme-wm8.theme-teal
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  .fa,
.theme-wm8.theme-violet
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:focus
  .fa,
.theme-wm8.theme-violet
  #theme-container
  .dropdown-menu:not(.bootstrap-datetimepicker-widget)
  li:not(.zimenu):not(.timeIntervalItem)
  a:hover
  .fa {
  color: var(--dropdown-link-hover-color) !important;
}
.theme-wm8.theme-alternate #theme-container .contacts-letters-div *,
.theme-wm8.theme-blue #theme-container .contacts-letters-div *,
.theme-wm8.theme-green #theme-container .contacts-letters-div *,
.theme-wm8.theme-navy #theme-container .contacts-letters-div *,
.theme-wm8.theme-orange #theme-container .contacts-letters-div *,
.theme-wm8.theme-red #theme-container .contacts-letters-div *,
.theme-wm8.theme-teal #theme-container .contacts-letters-div *,
.theme-wm8.theme-violet #theme-container .contacts-letters-div * {
  color: #000 !important;
}
