/*------------------------------------------------------------------
*  [Pages Stylesheet]
*
*  Project:	Estekit
*
*  Content:
*    - Component: Modal
*    - Position modifiers

-------------------------------------------------------------------*/

/* colorpicker */
.cp_estekit {
  padding: 8px 0;
  overflow: hidden;
}
.cp_estekit span {
  width: 24px;
  height: 24px;
  margin: 0 8px 8px 0;
  float: left;
  -webkit-transition: all 280ms ease-out;
  transition: all 280ms ease-out;
  cursor: pointer;
}
.cp_estekit span.active_color {
  border-radius: 50%;
  cursor: default;
}
/* utilities */
.ek-text-small {
  font-size: 12px;
}
.ek-text-muted {
  color: #757575 !important;
}
.ek-text-primary {
  color: #2196f3 !important;
}
.ek-text-danger {
  color: #e53935 !important;
}
.ek-text-success {
  color: #7cb342 !important;
}
.ek-text-warning {
  color: #ffa000 !important;
}
.ek-margin-bottom {
  margin-bottom: 16px !important;
}
.ek-margin-small-bottom {
  margin-bottom: 8px !important;
}
.ek-margin-medium-bottom {
  margin-bottom: 32px !important;
}
.ek-margin-large-bottom {
  margin-bottom: 48px !important;
}
.ek-margin-medium-top {
  margin-top: 32px !important;
}
.ek-margin-large-top {
  margin-top: 48px !important;
}
.ek-close {
  font-size: 18px;
  opacity: 1;
}
.ek-close:hover,
.ek-close:focus {
  opacity: 1;
}
.ek-close:after {
  opacity: 1 !important;
  color: #727272;
  content: '\e89c';
  font-family: "Material-Design-Icons";
}

/* ========================================================================
   Component: Modal
 ========================================================================== */
/*
 * This is the modal overlay and modal dialog container
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Allow scrolling for the modal dialog
 * 4. Mask the background page
 * 5. Fade-in transition
 * 6. Deactivate browser history navigation in IE11
 * 7. force hardware acceleration to prevent browser rendering hiccups
 */
.ek-modal {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  background: rgba(0, 0, 0, 0.6);
  /* 5 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  /* 6 */
  touch-action: cross-slide-y pinch-zoom double-tap-zoom;
  /* 7 */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
/*
 * Open state
 */
.ek-modal.ek-open {
  opacity: 1;
}
/*
 * Prevents duplicated scrollbar caused by 4.
 */
.ek-modal-page,
.ek-modal-page body {
  overflow: hidden;
}
/* Sub-object: `ek-modal-dialog`
 ========================================================================== */
/*
 * 1. Create position context for caption, spinner and close button
 * 2. Set box sizing
 * 3. Set style
 * 4. Slide-in transition
 */
.ek-modal-dialog {
  /* 1 */
  position: relative;
  /* 2 */
  box-sizing: border-box;
  margin: 50px auto;
  padding: 20px;
  width: 600px;
  max-width: 100%;
  max-width: calc(100% - 20px);
  /* 3 */
  background: #ffffff;
  /* 4 */
  opacity: 0;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: opacity 0.3s linear, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s linear, transform 0.3s ease-out;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  /*
     * Fit in small screen
     */
  .ek-modal-dialog {
    width: auto;
    margin: 10px auto;
  }
}
/*
 * Open state
 */
.ek-open .ek-modal-dialog {
  /* 4 */
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/*
 * Remove margin from the last-child
 */
.ek-modal-dialog > :not([class*='ek-modal-']):last-child {
  margin-bottom: 0;
}
/* Close in modal
 ========================================================================== */
.ek-modal-dialog > .ek-close:first-child {
  margin: -10px -10px 0 0;
  float: right;
}
/*
 * Remove margin from adjacent element
 */
.ek-modal-dialog > .ek-close:first-child + :not([class*='ek-modal-']) {
  margin-top: 0;
}
/* Modifier: `ek-modal-dialog-lightbox`
 ========================================================================== */
.ek-modal-dialog-lightbox {
  margin: 15px auto;
  padding: 0;
  max-width: 95%;
  max-width: calc(100% - 30px);
  border-radius: 0;
}
/*
 * Close button
 */
.ek-modal-dialog-lightbox > .ek-close:first-child {
  position: absolute;
  top: -12px;
  right: -12px;
  margin: 0;
  float: none;
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  .ek-modal-dialog-lightbox > .ek-close:first-child {
    top: -7px;
    right: -7px;
  }
}
/* Modifier: `ek-modal-dialog-large`
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .ek-modal-dialog-large {
    width: 930px;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .ek-modal-dialog-large {
    width: 1130px;
  }
}
/* Sub-Object: `ek-modal-header` and `ek-modal-footer`
 ========================================================================== */
.ek-modal-header {
  margin-bottom: 15px;
  margin: -20px -20px 15px -20px;
  padding: 20px;
  border-bottom: 1px solid #dddddd;
  border-radius: 4px 4px 0 0;
  background: #fafafa;
}
.ek-modal-footer {
  margin-top: 15px;
  margin: 15px -20px -20px -20px;
  padding: 20px;
  border-top: 1px solid #dddddd;
  border-radius: 0 0 4px 4px;
  background: #fafafa;
}
/*
 * Remove margin from the last-child
 */
.ek-modal-header > :last-child,
.ek-modal-footer > :last-child {
  margin-bottom: 0;
}
/* Sub-Object: `ek-modal-caption`
 ========================================================================== */
.ek-modal-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin-bottom: -10px;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* Sub-Object: `ek-modal-spinner`
 ========================================================================== */
.ek-modal-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 25px;
  color: #ddd;
}
.ek-modal-spinner:after {
  content: "\f110";
  font-family: FontAwesome;
  -webkit-animation: ek-rotate 2s infinite linear;
  animation: ek-rotate 2s infinite linear;
}
#left-side-email .btn-icon{
	height: 35px;
	border-radius: 0;
}
#left-side-email .m-t-sm{
	line-height: 32px;
}
#left-side-email .nav-pills > li.active > a{
	border-radius: 0;
}
#left-side-email .nav-pills > li> a{
	padding: 6px 16px;
}
#left-side-email .nav-pills > li> a:hover{
	background-color: #dddee0;
	border-radius: 0;
}
#left-side-email .input-sm {
	height: 35px;
	border: none;
}
.separateur{
	padding: 16px;
}
.separateur-tb{
	padding: 16px 0;
}
.separateur-rl{
	padding: 0 16px;
}
.separateur-t{
    padding: 16px 0 0 0;
}
/* cards */
.md-card {
  background: #fff;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border: none;
}
.md-card + .md-card,
.md-card + .ek-grid,
.ek-grid + .md-card {
  margin-top: 25px;
}
.md-card .full_width_in_card {
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.085);
}
.md-card .md-card-toolbar {
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
}
.md-card .md-card-toolbar:before,
.md-card .md-card-toolbar:after {
  content: " ";
  display: table;
}
.md-card .md-card-toolbar:after {
  clear: both;
}
.md-card .md-card-toolbar:before,
.md-card .md-card-toolbar:after {
  content: " ";
  display: table;
}
.md-card .md-card-toolbar:after {
  clear: both;
}
.md-card .md-card-toolbar-heading-text {
  font: 500 14px / 50px "Roboto", sans-serif;
  color: #212121;
  margin: 0;
  float: left;
  overflow: hidden;
  height: 48px;
}
.md-card .md-card-toolbar-heading-text.large {
  font-size: 18px;
  font-weight: 400;
}
.md-card .md-card-toolbar .md-toggle-group {
  float: left;
  margin: 8px 0 0 16px;
}
.md-card .md-card-toolbar .md-toggle-group.md-toggle-group-small {
  margin-top: 10px;
}
.md-card .md-card-toolbar .md-card-toolbar-actions {
  float: right;
  padding-top: 10px;
}
.md-card .md-card-toolbar .md-card-toolbar-actions .ek-open .md-card-toolbar-icon {
  background: rgba(0, 0, 0, 0.085);
  color: #212121;
}
.md-card .md-card-toolbar .md-card-toolbar-actions .md-card-dropdown {
  display: inline-block;
  position: relative;
}
.md-card .md-card-toolbar .md-card-toolbar-actions .selectize-control {
  min-width: 220px;
  margin-top: -3px;
}
.md-card .md-card-toolbar .md-card-toolbar-actions .selectize-control .selectize-input {
  min-height: 30px;
  padding: 4px 8px;
}
.md-card .md-card-toolbar .md-card-toolbar-actions .selectize-control .selectize-dropdown {
  margin-top: -34px;
}
.md-card .md-card-toolbar .md-icon + .md-card-dropdown {
  margin-left: 4px;
}
.md-card .md-card-toolbar .md-card-fullscreen-deactivate {
  margin: 9px 8px 0 0;
}
.md-card .md-card-toolbar-input {
  border: none;
  font: 400 18px / 24px "Roboto", sans-serif;
  height: auto;
  background: none !important;
  padding: 12px 0;
  width: 50%;
  box-sizing: border-box;
}
.md-card .md-card-toolbar .ek-tab {
  margin-top: -2px;
  border-bottom: none;
}
.md-card .md-card-toolbar .ek-tab li > a {
  padding: 10px 8px !important;
}
.md-card .md-card-head {
  height: 160px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.md-card .md-card-head-menu {
  position: absolute;
  right: 8px;
  top: 8px;
}
.md-card .md-card-head-avatar {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  margin-top: 16px;
  border: 2px solid #fff;
  display: inline-block;
}
.md-card .md-card-head-text {
  padding: 8px 16px 16px;
  font: 500 16px / 22px "Roboto", sans-serif;
  color: #212121;
  margin: 0;
}
.md-card .md-card-head-text span {
  display: block;
  font: 400 12px / 18px "Roboto", sans-serif;
  margin-top: -2px;
}
.md-card .md-card-head-text.text_dark {
  color: #212121 !important;
}
.md-card .md-card-head-text-over {
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}
.md-card .md-card-head-subtext {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  padding: 0 16px;
  text-align: right;
  color: #fff;
}
.md-card .md-card-head-subtext span {
  font-size: 26px;
}
.md-card .md-card-head-icon {
  font-size: 48px;
  color: #fff;
  vertical-align: middle;
}
.md-card .md-card-head.head_background {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-bottom-color: transparent;
}
.md-card .md-card-head.head_background .md-card-head-text {
  color: #fff;
}
.md-card .md-card-head.head_background_top {
  background-repeat: no-repeat;
  background-position: center top;
}
.md-card .md-card-head.head_background_bottom {
  background-repeat: no-repeat;
  background-position: center bottom;
}
.md-card .md-card-head .head_chart {
  height: 100px;
  width: 100%;
  position: absolute !important;
  left: 0;
  top: 40px;
}
.md-card .md-card-head .fitVid_player {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.md-card .md-card-head-img {
  height: 100%;
  width: auto;
}
.md-card .md-card-head iframe {
  height: 160px;
}
.md-card .md-card-content {
  padding: 16px;
}
.md-card .md-card-content.padding-reset {
  padding: 0;
}
.md-card .md-card-content.large-padding {
  padding: 24px 35px;
}
.md-card .md-card-content.small-padding {
  padding: 8px;
}
.md-card.md-card-fullscreen {
  position: fixed;
  z-index: 9999;
  overflow-x: hidden;
}
.md-card.md-card-fullscreen .md-card-fullscreen-activate {
  display: none;
}
.md-card .md-card-fullscreen-content {
  display: none;
  padding: 16px 0;
}
.md-card-fullscreen-content-hidden .md-card .md-card-fullscreen-content {
  display: block;
  visibility: hidden;
  padding: 0;
}
.md-card.md-card-overlay {
  overflow: hidden;
  padding-bottom: 54px;
}
.md-card.md-card-overlay .md-card-content {
  height: 142px;
  overflow: hidden;
  box-sizing: border-box;
}
.md-card.md-card-overlay .md-card-content.no_truncate {
  position: relative;
}
.md-card.md-card-overlay .md-card-content.no_truncate:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background-image: -webkit-linear-gradient(bottom, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(to top, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
  display: block;
  content: '';
  z-index: 10;
}
.md-card.md-card-overlay .md-card-content > pre {
  margin-top: 0;
  max-height: 110px;
}
.md-card.md-card-overlay .md-card-content > pre > code {
  overflow: hidden;
}
.md-card.md-card-overlay .md-card-overlay-content {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0 16px;
  margin-top: -54px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  text-align: left;
  bottom: 0;
  background: #fff;
  z-index: 10;
  -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.md-card.md-card-overlay .md-card-overlay-content p {
  margin: 0;
}
.md-card.md-card-overlay .md-card-overlay-content p + * {
  margin-top: 16px;
}
.md-card.md-card-overlay .md-card-overlay-content p + p {
  margin-top: 4px;
}
.md-card.md-card-overlay .md-card-overlay-header {
  padding: 12px 0;
}
.md-card.md-card-overlay .md-card-overlay-header:before,
.md-card.md-card-overlay .md-card-overlay-header:after {
  content: " ";
  display: table;
}
.md-card.md-card-overlay .md-card-overlay-header:after {
  clear: both;
}
.md-card.md-card-overlay .md-card-overlay-header:before,
.md-card.md-card-overlay .md-card-overlay-header:after {
  content: " ";
  display: table;
}
.md-card.md-card-overlay .md-card-overlay-header:after {
  clear: both;
}
.md-card.md-card-overlay .md-card-overlay-header h3,
.md-card.md-card-overlay .md-card-overlay-header h4 {
  margin: 0;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  padding-right: 32px;
  box-sizing: border-box;
}
.md-card.md-card-overlay .md-card-overlay-header h3 {
  font: 400 16px / 30px "Roboto", sans-serif;
}
.md-card.md-card-overlay .md-card-overlay-header h4 {
  font: 500 14px / 30px "Roboto", sans-serif;
}
.md-card.md-card-overlay .md-card-overlay-header .md-icon {
  position: absolute;
  right: 12px;
  top: 11px;
}
.md-card.md-card-overlay-active .md-card-overlay-content {
  top: -1px;
  margin-top: 0;
}
.md-card.md-card-hover {
  -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.md-card.md-card-hover:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.ek-sortable-dragged .md-card {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.ek-sortable-dragged .md-card canvas {
  margin: 0 auto;
  display: block;
}
.md-card .heading_list {
  padding: 0;
}
.md-card-primary,
.md-card-success,
.md-card-danger,
.md-card-warning {
  border-left: 4px solid transparent;
}
.md-card-primary {
  border-left-color: #2196f3;
}
.md-card-success {
  border-left-color: #7cb342;
}
.md-card-danger {
  border-left-color: #e53935;
}
.md-card-warning {
  border-left-color: #ffa000;
}
.md-expand,
.md-expand-group > * {
  opacity: 0;
}
.md-card-placeholder {
  min-width: 100%;
}
.md-card-list-wrapper,
.md-card-list-wrapper:before,
.md-card-list-wrapper:after,
.md-card-list-wrapper *,
.md-card-list-wrapper *:before,
.md-card-list-wrapper *:after {
  box-sizing: border-box;
}
.md-card-list-wrapper .md-card-list-header {
  position: absolute;
  top: -24px;
  left: 0;
}
.md-card-list-wrapper .md-card-list {
  margin: 48px 0 0 0;
  position: relative;
}
.md-card-list-wrapper .md-card-list:first-child {
  margin-top: 24px;
}
.md-card-list-wrapper .md-card-list > ul {
  margin: 0;
}
.md-card-list-wrapper .md-card-list > ul > li {
  margin: 0;
}
.md-card-list-wrapper .md-card-list > ul,
.md-card-list-wrapper .md-card-list > ul > li {
  list-style: none;
  padding: 0;
}
.md-card-list-wrapper .md-card-list > ul > li {
  min-height: 34px;
  padding: 8px 16px;
  font-size: 13px;
  -webkit-transition: background 150ms,padding 200ms;
  transition: background 150ms,padding 200ms;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  cursor: pointer;
}
.md-card-list-wrapper .md-card-list > ul > li:before,
.md-card-list-wrapper .md-card-list > ul > li:after {
  content: " ";
  display: table;
}
.md-card-list-wrapper .md-card-list > ul > li:after {
  clear: both;
}
.md-card-list-wrapper .md-card-list > ul > li:before,
.md-card-list-wrapper .md-card-list > ul > li:after {
  content: " ";
  display: table;
}
.md-card-list-wrapper .md-card-list > ul > li:after {
  clear: both;
}
.md-card-list-wrapper .md-card-list > ul > li.item-shown {
  background: #fff;
  padding: 8px 36px;
}
@media only screen and (max-width: 767px) {
  .md-card-list-wrapper .md-card-list > ul > li.item-shown .md-card-list-item-subject {
    clear: both;
    float: none;
    padding-top: 16px;
  }
  .md-card-list-wrapper .md-card-list > ul > li.item-shown .md-card-list-item-subject > span {
    white-space: normal;
  }
}
.md-card-list-wrapper .md-card-list > ul > li.item-shown .md-card-list-item-sender {
  width: auto;
  overflow: hidden;
}
.md-card-list-wrapper .md-card-list > ul > li.item-shown.md-card-list-item-selected {
  position: relative;
}
.md-card-list-wrapper .md-card-list > ul > li.item-shown.md-card-list-item-selected:before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: #bbdefb;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-select,
.md-card-list-wrapper .md-card-list .md-card-list-item-avatar-wrapper,
.md-card-list-wrapper .md-card-list .md-card-list-item-sender {
  float: left;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-select {
  padding: 6px 8px 0 0;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-avatar-wrapper,
.md-card-list-wrapper .md-card-list .md-card-list-item-sender,
.md-card-list-wrapper .md-card-list .md-card-list-item-subject,
.md-card-list-wrapper .md-card-list .md-card-list-item-date {
  padding: 0 8px;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-avatar-wrapper .md-card-list-item-avatar {
  background: #757575;
  color: #fff;
  width: 34px;
  border-radius: 50%;
  display: block;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-avatar-wrapper .md-card-list-item-avatar-large {
  width: 82px;
  border-radius: 50%;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-avatar-wrapper span.md-card-list-item-avatar {
  line-height: 34px;
  text-transform: uppercase;
  text-align: center;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-sender {
  width: 220px;
  line-height: 34px;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-sender > span {
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
@media only screen and (max-width: 1219px) {
  .md-card-list-wrapper .md-card-list .md-card-list-item-sender {
    display: none;
  }
}
.md-card-list-wrapper .md-card-list .md-card-list-item-subject {
  overflow: hidden;
  font-weight: 500;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-subject > span {
  line-height: 34px;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-subject .md-card-list-item-sender-small {
  display: none;
}
@media only screen and (max-width: 1219px) {
  .md-card-list-wrapper .md-card-list .md-card-list-item-subject .md-card-list-item-sender-small {
    display: block;
  }
  .md-card-list-wrapper .md-card-list .md-card-list-item-subject .md-card-list-item-sender-small + span {
    line-height: inherit;
  }
}
.md-card-list-wrapper .md-card-list .md-card-list-item-subject .md-card-list-item-sender-small > span {
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  font-size: 12px;
  color: #999;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-date {
  line-height: 34px;
  float: right;
  color: #999;
}
@media only screen and (max-width: 479px) {
  .md-card-list-wrapper .md-card-list .md-card-list-item-date {
    display: none;
  }
}
.md-card-list-wrapper .md-card-list .md-card-list-item-menu {
  float: right;
  margin: 0 0 0 8px;
  position: relative;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-menu .ek-dropdown .material-icons {
  margin-right: 8px;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-content-wrapper {
  display: none;
  clear: both;
  opacity: 0;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-content {
  padding: 16px 16px 0 0;
  max-height: 360px;
  overflow-x: hidden;
  margin: 0 0 40px;
  top: 20px;
  position: relative;
  font-size: 14px;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-content + .md-card-list-item-reply {
  padding-top: 10px;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-reply {
  padding: 16px 0;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-selected {
  background: #bbdefb;
}
.w-50{
	width: 50px;
}
#top_bar .md-top-bar .clearfix{
	margin-bottom: -12px;
}
#top_bar .md-top-bar{
	padding-bottom: 10px;
}
#top_bar .md-top-bar .md-top-bar-icons{
	margin-top: -3px;
}
#top_bar .md-top-bar .md-top-bar-icons i{
	font-size: 18px;
	margin-left: -1px;
}
.ek-dragover {
  box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
}
.ek-file-upload {
  width: 100%;
  padding: 32px 16px;
  box-sizing: border-box;
  background: #f5f5f5;
  text-align: center;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}
.ek-file-upload p {
  margin: 0;
}
.ek-file-upload.ek-dragover {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
div.ek-form-file {
  padding: 3px 2px;
}
.ek-form-file input[type="file"] {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  left: 0;
  font-size: 500px;
}
.ek-form-file input[type="file"]::-webkit-file-upload-button {
  cursor: pointer;
}
.ek-progress {
  box-sizing: border-box;
  height: 20px;
  margin-bottom: 15px;
  background: #f5f5f5;
  /* 1 */
  overflow: hidden;
  /* 2 */
  line-height: 20px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}
/*
 * Add margin if adjacent element
 */
* + .ek-progress {
  margin-top: 15px;
}

.ek-progress-bar {
  width: 0;
  height: 100%;
  background: #00a8e6;
  float: left;
  /* 1 */
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  /* 2 */
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.ek-progress-mini {
  height: 6px;
}
/* Small */
.ek-progress-small {
  height: 12px;
}

.ek-progress-success .ek-progress-bar {
  background-color: #8cc14c;
}
.ek-progress-warning .ek-progress-bar {
  background-color: #faa732;
}
.ek-progress-danger .ek-progress-bar {
  background-color: #da314b;
}

.ek-progress-striped .ek-progress-bar {
  background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 30px 30px;
}

.ek-progress-striped.ek-active .ek-progress-bar {
  -webkit-animation: ek-progress-bar-stripes 2s linear infinite;
  animation: ek-progress-bar-stripes 2s linear infinite;
}
@-webkit-keyframes ek-progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 0;
  }
}
@keyframes ek-progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 0;
  }
}

.ek-progress-mini,
.ek-progress-small {
  border-radius: 500px;
}
.ek-progress {
  box-shadow: none;
  border-radius: 0px;
}
.ek-progress-bar {
  background: #009688;
}
.ek-progress-success .ek-progress-bar {
  background-color: #7cb342;
}
.ek-progress-danger .ek-progress-bar {
  background-color: #e53935;
}
.ek-progress-warning .ek-progress-bar {
  background-color: #ffa000;
}
.ek-hidden {
    display: none !important;
    visibility: hidden !important;
}
/* dialog modals */
.ek-modal {
  z-index: 1304;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 250ms ease-out;
  transition: opacity 250ms ease-out;
  overflow: auto !important;
}
.ek-modal.ek-modal-no-backdrop {
  background: transparent;
}
.ek-modal-dialog {
  border-radius: 2px;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  padding: 24px;
  display: block !important;
  -webkit-animation: none !important;
  animation: none !important;
  -webkit-transition: -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 280ms ease-in;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 280ms ease-in;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.ek-open .ek-modal-dialog {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.ek-modal-dialog .ek-modal-header {
  background: none;
  border-bottom: none;
  margin: 0 -24px 24px;
  padding: 0 32px 0 24px;
  overflow: hidden;
}
.ek-modal-dialog .ek-modal-header .ek-modal-title {
  margin: 0;
  font: 500 18px / 28px "Roboto", sans-serif;
}
.ek-modal-dialog .ek-modal-header .ek-modal-title span {
  font-size: 16px;
  display: block;
  color: #727272;
}
.ek-modal-dialog .ek-modal-footer {
  margin: 16px -16px -16px;
  padding: 16px;
  background: #fff;
  border-top: none;
}
.ek-modal-dialog .ek-modal-footer:before,
.ek-modal-dialog .ek-modal-footer:after {
  content: " ";
  display: table;
}
.ek-modal-dialog .ek-modal-footer:after {
  clear: both;
}
.ek-modal-dialog .ek-modal-footer:before,
.ek-modal-dialog .ek-modal-footer:after {
  content: " ";
  display: table;
}
.ek-modal-dialog .ek-modal-footer:after {
  clear: both;
}
.ek-modal-dialog .ek-modal-footer .md-icon-btn {
  margin-top: 2px;
}
.ek-modal-dialog .ek-modal-caption {
  bottom: 16px;
  margin: 0 32px;
}
.ek-modal-dialog > .ek-close:first-child {
  top: 8px;
  right: 8px;
  position: absolute;
  float: none;
  margin: 0;
  border: none;
  background: 0 0;
}
.ek-modal-dialog-lightbox {
  padding: 0;
}
.ek-modal-dialog-lightbox > .ek-close:first-child {
  top: -11px;
  right: -11px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  border: none;
}
.ek-modal-dialog .ek-overflow-container {
  margin: 16px 0;
}
.ek-modal .ek-margin.ek-modal-content {
  margin-bottom: 0;
}
.ek-modal.ek-modal-dialog-replace .ek-modal-content {
  font-size: 18px;
}
#mailbox{
	padding: 0px 0 100px;
}
.md-input-wrapper{
	margin-bottom: 10px;
}
.ek-subnav-pill > .ek-active > * {
    background: #7cb342;
}
.ek-subnav > * {
    float: left;
}
.ek-subnav > * {
    -ms-flex: none;
    -webkit-flex: none;
    flex: none;
    padding-left: 10px;
    margin-top: 10px;
    position: relative;
}
.ek-notify {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1040;
  box-sizing: border-box;
  width: 350px;
}
/* Position modifiers
========================================================================== */
.ek-notify-top-right,
.ek-notify-bottom-right {
  left: auto;
  right: 10px;
}
.ek-notify-top-center,
.ek-notify-bottom-center {
  left: 50%;
  margin-left: -175px;
}
.ek-notify-bottom-left,
.ek-notify-bottom-right,
.ek-notify-bottom-center {
  top: auto;
  bottom: 10px;
}
/* Responsiveness
========================================================================== */
/* Phones portrait and smaller */
@media (max-width: 479px) {
  /*
     * Fit in small screen
     */
  .ek-notify {
    left: 10px;
    right: 10px;
    width: auto;
    margin: 0;
  }
}
/* Sub-object: `ek-notify-message`
========================================================================== */
.ek-notify-message {
  position: relative;
  margin-bottom: 10px;
  padding: 15px;
  background: #444444;
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
  border: 1px solid #444444;
  border-radius: 4px;
}
/* Close in notify
 ========================================================================== */
.ek-notify-message > .ek-close {
  visibility: hidden;
  float: right;
}
.ek-notify-message:hover > .ek-close {
  visibility: visible;
}
/* Modifier: `ek-alert-info`
 ========================================================================== */
.ek-notify-message-primary {
  background: #ebf7fd;
  color: #2d7091;
  border-color: rgba(45, 112, 145, 0.3);
}
/* Modifier: `ek-alert-success`
 ========================================================================== */
.ek-notify-message-success {
  background: #f2fae3;
  color: #659f13;
  border-color: rgba(101, 159, 19, 0.3);
}
/* Modifier: `ek-notify-message-warning`
 ========================================================================== */
.ek-notify-message-warning {
  background: #fffceb;
  color: #e28327;
  border-color: rgba(226, 131, 39, 0.3);
}
/* Modifier: `ek-notify-message-danger`
 ========================================================================== */
.ek-notify-message-danger {
  background: #fff1f0;
  color: #d85030;
  border-color: rgba(216, 80, 48, 0.3);
}
.ek-notify {
  z-index: 1114;
  width: 400px;
  top: 56px;
  max-width: 100%;
}
.ek-notify-top-center,
.ek-notify-bottom-center {
  margin-left: -200px;
}
.ek-notify-top-left {
  left: 24px;
}
.ek-notify-top-right {
  right: 24px;
}
.ek-notify-bottom-left {
  left: 24px;
}
.ek-notify-bottom-right {
  right: 24px;
}
.ek-notify-bottom-center,
.ek-notify-bottom-left,
.ek-notify-bottom-right {
  top: auto;
  bottom: 8px;
}
.ek-notify-message {
  background: #323232;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 18px;
  border: none;
}
.ek-notify .ek-close {
  display: none;
}
.ek-notify .notify-action {
  float: right;
  text-transform: uppercase;
  color: #8bc34a;
  margin-left: 16px;
  text-decoration:none !important;
}
.notify-action {
	text-decoration:none !important;
}
.ek-notify .notify-action:hover {
  color: #689f38;
}
.ek-notify .notify-content {
  overflow: hidden;
  text-decoration:none !important;
}
.ek-notify-message-info {
  background: #1976d2;
  color: #fff;
}
.ek-notify-message-success {
  background: #7cb342;
}
.ek-notify-message-warning {
  background: #ffa000;
}
.ek-notify-message-danger {
  background: #e53935;
}
.ek-notify-message-info,
.ek-notify-message-success,
.ek-notify-message-warning,
.ek-notify-message-danger {
  color: #fff;
}
.ek-notify-message-info .notify-action,
.ek-notify-message-success .notify-action,
.ek-notify-message-warning .notify-action,
.ek-notify-message-danger .notify-action {
  color: #fff;
}
.ek-notify-message-info .notify-action:hover,
.ek-notify-message-success .notify-action:hover,
.ek-notify-message-warning .notify-action:hover,
.ek-notify-message-danger .notify-action:hover {
  color: #fff;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .ek-notify-top-center,
  .ek-notify-top-left,
  .ek-notify-top-right,
  .ek-notify-bottom-center,
  .ek-notify-bottom-left,
  .ek-notify-bottom-right {
    width: 100%;
    margin: 0;
    left: 0;
    right: 0;
  }
  .ek-notify-top-center > .ek-notify-message,
  .ek-notify-top-left > .ek-notify-message,
  .ek-notify-top-right > .ek-notify-message,
  .ek-notify-bottom-center > .ek-notify-message,
  .ek-notify-bottom-left > .ek-notify-message,
  .ek-notify-bottom-right > .ek-notify-message {
    border-radius: 0;
    padding: 16px 32px;
  }
  .ek-notify-top-center,
  .ek-notify-top-left,
  .ek-notify-top-right {
    top: 0;
    bottom: auto;
  }
  .ek-notify-bottom-center,
  .ek-notify-bottom-left,
  .ek-notify-bottom-right {
    top: auto;
    bottom: -10px;
  }
}
@media only screen and (min-width: 960px) {
  .sidebar_main_active .ek-notify-top-left,
  .sidebar_main_open .ek-notify-top-left {
    left: 256px;
  }
  .sidebar_main_active .ek-notify-top-center,
  .sidebar_main_open .ek-notify-top-center {
    margin-left: -80px;
  }
  .sidebar_main_active .ek-notify-bottom-left,
  .sidebar_main_open .ek-notify-bottom-left {
    left: 256px;
  }
  .sidebar_main_active .ek-notify-bottom-center,
  .sidebar_main_open .ek-notify-bottom-center {
    margin-left: -80px;
  }
}
