﻿.epf-container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: stretch;
}
.epf-container-sidebar {
  width: 25%;
}
.epf-container-body {
  width: 75%;
}
.epf-sectionheader {
  margin-bottom: 0px;
}
.epf-container-sidebar-menu {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: stretch;
}
.epf-container-sidebar-menu-item {
  font-size: 1.2em;
  padding: 1rem 1rem;
  cursor: pointer;
}
.epf-container-sidebar-menu-item .fa {
  margin-right: 1em;
  width: 10%;
}
.epf-container-sidebar-menu-item:hover {
  background: rgba(61, 102, 117, 0.1);
}
.epf-container-sidebar-menu-item:active {
  background: rgba(61, 102, 117, 0.3);
}
.epf-active .fa {
  color: #00678b;
}
.epf-container-sidebar-menu-item-header:not(:first-child) {
  border-top: 1px solid rgba(61, 102, 117, 0.3);
}
.epf-container-sidebar-menu-item-sub {
  padding: 0rem 2rem;
  font-size: 0.9em;
}
.epf-slide-enter-active,
.epf-slide-leave-active {
  transition: all 0.5s;
}
.epf-slide-enter,
.epf-slide-leave-to {
  transform: translateX(100%);
  opacity: 0;
}
.epf-slide-move {
  transition: transform 0.5s;
}
.epf-slide-delay-enter-active,
.epf-slide-delay-leave-active {
  transition: all 0.5s;
}
.epf-slide-delay-enter-active {
  transition-delay: 0.6s;
}
.epf-slide-delay-enter,
.epf-slide-delay-leave-to {
  transform: translateX(100%);
  opacity: 0;
}
.epf-crm-header {
  font-size: 1.2em;
  padding: 1rem 1rem;
  background: rgba(0, 103, 139, 0.2);
}
.epf-crm-header.epf-crm-header-highlight {
  background: rgba(240, 173, 78, 0.2);
}
.epf-crm-header .btn {
  display: none;
}
.epf-crm-header:hover .btn {
  display: block;
}
.epf-crm-contactspur:not(:first-child) {
  margin-top: 2em;
}
.epf-crm-contactspur-info {
  padding: 1rem 1rem;
}
.epf-crm-contactspur-note {
  padding: 0rem 1rem;
  font-style: italic;
}
.epf-crm-subheader {
  font-size: 1.1em;
  padding: 1rem 1rem;
  margin-top: 3rem;
  background: rgba(158, 211, 132, 0.2);
}
.epf-crm-split {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: stretch;
  padding: 1rem 1rem;
}
.epf-crm-dropdown {
  display: inline-block;
  color: #00678b;
  font-weight: bold;
}
.epf-crm-note {
  margin: 1rem 1rem;
  border-bottom: 1px solid rgba(61, 102, 117, 0.3);
}
.epf-crm-note .btn {
  display: none;
}
.epf-crm-note:hover .btn {
  display: block;
}
.epf-crm-note-subject {
  font-size: 1.05em;
  font-weight: bold;
  padding-bottom: 0.25em;
}
.epf-crm-note-modified {
  font-size: 0.75em;
}
.epf-crm-note-assigned {
  padding: 1rem 0rem;
}
.epf-crm-contact {
  padding: 1rem 1rem;
}
.epf-crm-header-inlineedit {
  display: inline-block;
  cursor: pointer;
  margin-right: 4em;
}
.epf-nickname:before {
  content: '"';
}
.epf-nickname:after {
  content: '"';
}
.epf-crm-header-inlineedit-empty {
  font-size: 0.8em;
  font-style: italic;
}
.epf-hint {
  font-size: 0.8em;
  font-style: italic;
  margin: 1rem;
}
.epf-crm-note-flagged {
  background: radial-gradient(circle, rgba(61, 102, 117, 0.3) 5%, transparent);
}
.epf-crm-note-flagged .epf-crm-note-subject:before {
  content: '>>> ';
}
.epf-crm-note-flagged .epf-crm-note-subject:after {
  content: ' <<<';
}
.epf-crm-note-archived {
  background: repeating-linear-gradient(45deg, rgba(61, 102, 117, 0.1), rgba(61, 102, 117, 0.1) 10px, #fff 10px, #fff 20px);
}
.epf-opacity-enter-active,
.epf-opacity-leave-active {
  transition: all 0.5s;
}
.epf-opacity-enter,
.epf-opacity-leave-to {
  opacity: 0;
}
.transitionAll {
  transition: all 0.5s;
}