html {
    --asideWidth: 310px;
    --headingsHeight: 60px;
    --buttonRadius: 5px;
    /* branding palette */
    --brand-colour-primary: #4C3D5A;
    --brand-colour-accent-1: #A199AC;
    --brand-colour-accent-2: #3b2e4c;
    --brand-colour-accent-3: #493D59;

    --brand-color-highlight: #9480A1;
    /* core palette */
    --text-colour-primary: rgb(0, 0, 0);
    --text-colour-secondary: #6C6270;
    --text-colour-tertiary: #393552;
    /*#999999;*/

    --text-color-navigation:#dcd2e3;
/*     
    --background-colour-primary: #424345;
    --background-colour-secondary: #292a2b;
    --background-colour-tertiary: #1c1d1e;
    --background-colour-quaternary: #353638; */

    --background-colour-primary: #ffffff;
    --background-colour-secondary: #ffffff;
    --background-colour-tertiary: #ffffff;
    --background-colour-quaternary: #ffffff;
    

    --button-colour-active: #0abab5; /*used by the investor feedback button and the comments button*/
    --button-colour-inactive: #D0B9E5;
    
    --button-primary-colour-active: #4C3D5A;
    --button-primary-colour-active-border: #4C3D5A;

    --button-primary-colour-inactive: #433550;
    --button-primary-colour-inactive-border: #B2ACBA;

    --button-primary-colour: rgb(7, 7, 6);
    --button-primary-colour-hover: #33302a;
    
    /* utility palette */ 
    --utility-colour-positive: #1bb934;
    --utility-colour-negative: #f14123;
    /* semantic element styles */
    --font-family-base: 'Open Sans', sans-serif;
    --text-size-heading-1: 3rem;
    --text-size-heading-2: 2rem;
    --text-size-heading-3: 1.5rem;
    --text-size-body: 1.4rem;
    

    --ease:cubic-bezier(.02,.61,.26,.96);

    /*new styles from Matt Falla*/
    --white-hover: #fdfcfd;
    --turquoise-hover: #0bafaa;
    --juniper-mid-hover: #b2aab7;
    --turquoise: #0abab5;
    --juniper: #462d52;
    --juniper-dark: #160f1a;
    --menu-header: #f4f2f5;
    --menu-background: #f9f8f9;
    --dividers: #e5dfe7;
    --juniper-light: #d3cbd7;
    --juniper-mid: #b5acba;
}


article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
html,
body,
input {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 300;
}

.col,
.row {
    position: absolute;
}

.col {
    top: 0;
    bottom: 0;
}

.row {
    left: 0;
    right: 0;
}

.scroll-x {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.scroll-y {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.vertical-center-parent {
    font-size: 0;
}

.vertical-center-parent:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

.vertical-center {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
}

.gradient {
    background: #FFFFFF;
    background: -moz-radial-gradient(center, ellipse cover, #FFFFFF 0%, #FFFFFF 100%);
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
    background: -webkit-radial-gradient(center, ellipse cover, #FFFFFF 0%, #FFFFFF 100%);
    background: -o-radial-gradient(center, ellipse cover, #FFFFFF 0%, #FFFFFF 100%);
    background: -ms-radial-gradient(center, ellipse cover, #FFFFFF 0%, #FFFFFF 100%);
    background: radial-gradient(ellipse at center, #FFFFFF 0%, #FFFFFF 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
br,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
lDin,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figure,
figcaption,
hgroup,
menu,
footer,
header,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    text-decoration: none;
    color: black;
}

article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video,
section.clients,
section.contact,
section.jobs {
    display: block;
}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (orientation:landscape) {
    html.ipad.ios7 {
        position: fixed;
        width: 100%;
        height: 100%;
    }
}

*:focus {
    outline: 0;
}

::-webkit-scrollbar {
    width: 5px;
    height:5px;
}

::-webkit-scrollbar-track {
    background: #ddd;
}

::-webkit-scrollbar-thumb {
    background: #3b2e4c;
}
#app {
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.app__header {
  grid-area: header;
}

.app__content {
  grid-area: content;
  overflow: auto;
}

.app__full {
  grid-area: header / header / content / content;
  overflow: auto;
}

.highlighted {
  background-color: yellow;
  color: inherit;
}

.notification{
    flex-flow: row nowrap;
}

.bp3-toast.bp3-intent-success {
  background-color: var(--turquoise);
}
.loading {
    text-align: center;
    color: #FFF;
}
.header-bar{
    
}

/*Header Component*/

.header-bar {
    position: relative;
    height: 60px;
    z-index: 1;
    display:flex;
    background-image: url(/header-bg.png);
    background-size: cover;
}

.header-bar__logo {
    position: relative;
    padding-top: 13px;
    padding-left: 20px;
}

.header-bar__button {
    width: 60px;
    height: 100%;
    cursor: pointer;
}

.header-bar__button:hover {
    opacity: 0.5;
}

.header-bar__button {
    border-left: 1px solid rgba(255, 255, 255, 0.30);
}

.header-bar__button--logout {
    padding: 18px;
    display: flex;
    cursor: pointer;
}

.header-bar__button--logout:hover {
    cursor: pointer;
}

.header-bar_buttons-container {
    display: flex;
    margin-left: 20px;
}

.header-bar__button--nav{
    
}

.header-bar__sub-menu{
    background-color: #52315C;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.header-bar__sub-menu ul {
    display: flex;
    gap: 16px;
}

.header-bar__sub-menu ul li a{
    color: #fff;
    cursor: pointer;
}

.header-bar__sub-menu ul li a:hover{
    text-decoration: underline;
}

.header-bar_buttons-container .nav-item {
    height: auto;
    margin: 0;
    padding-top: 9px;
}

.header-bar_buttons-container .nav-item__icon {
    height: 24px;
}

.header-bar_buttons-container .nav-item__icon.notification img {
    color: red;
}

.header-bar_buttons-container .nav-item__text {
    font-size: 13px;
}

.header-bar_buttons-container-main {
    justify-content: space-between;
    width: 100%;
}

.logout-container {
    display: flex;
    gap: 24px;
    align-items: center;
}

.logout-container .login-leads {
    cursor: pointer;
    background-color: #53B7B4;
    display: flex;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    border: 1px solid #53B7B4;
    border-radius: 6px;
    align-items: center;
    height: fit-content;
    padding: 5px 10px;
    font-family: "Titillium Web", sans-serif;
}

.logout-container .header-right-button-container {
    display: flex;
    align-items: center;
}

.logout-container .header-right-button-container a {
    position: relative;
}

.logout-container .header-right-button-container a:hover {
    opacity: 1;
}

.logout-container .header-right-button-container a img:hover {
    opacity: 0.5;
}

.logout-container .header-right-button-container div.notification {
    position: relative;
}

.logout-container .header-right-button-container div.notification span {
    width: 8px;
    height: 8px;
    background-color: red;
    position: absolute;
    right: 18px;
    border-radius: 10px;
    margin-top: 3px;
}

.notification-container {
    max-height: 450px;
    width: 400px;
    border:1px solid #A7A0B1;
    position: absolute;
    right: 59px;
    background-color: #fff;
    z-index: 99999;
    top: 60px;
    border-top: 0;
}

.notification-container .close-notification-button {
    all: unset;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
}

.notification-container h2 {
    font-size: 18px;
    padding: 20px;
}

.notification-container ul {
    overflow: auto;
    max-height: 386px;
}

.notification-container ul li {
    padding: 20px;
    border-bottom: 1px solid #A7A0B1;
    cursor: pointer;
}

.notification-container ul li:first-child {
    border-top: 1px solid #A7A0B1;
}

.notification-container ul li:last-child {
    border-bottom: 0;
}

.notification-container ul li span {
    display: inline;
    float: left;
    font-weight: bold;
    padding-right: 5px;
    color: var(--juniper);
}

.notification-container .no-new-notification {
    font-weight: bold;
    text-align: center;
    padding: 40px 0px;
}
.nav-item {
  display:flex;
  align-items: center;
  flex-flow:column nowrap;
  font-size: 12px;  
  font-style: normal; 
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  width:6rem;
  margin:0 0.5rem;
  height:2rem;  
  /* color:var(--text-color-navigation); */
  color:#dcd2e3;
  opacity:0.8;
  text-decoration: none;
}

.nav-item__text{
  background-color: transparent;
  border: none; 
  color:inherit;
  font-weight:inherit;
  cursor: inherit;
  
}

.nav-item:hover {
  color: #FFFFFF;
  font-weight: bold;  
  opacity:1;
  cursor: pointer;
  text-decoration: none; 
}

.nav-item:active {
  color: #FFFFFF;
  font-weight: bold;
  opacity:1;  
}

.nav-item--active{
  color: #FFFFFF;
  font-weight: bold;
  opacity:1;  
}

.nav-item__icon{
  object-fit: contain;
  opacity:inherit;
  height: 16px;
}

.nav-item:focus {
  outline: 0.1rem dotted var(--utility-colour-primary);
}

.nav-item:disabled {
  opacity: 0.6;
}

.toolbar__container--horizontal > .nav-item {
  height: 100%;
}

.toolbar__container--vertical > .nav-item {
  width: 100%;
}
.atom-button {    
    border-radius: 0.2rem;
    border:none;
    background-color: transparent;
    padding: 0.2rem 1rem;
    color: var(--text-colour-secondary);
    min-height:2rem;
    min-width:5rem;    
  }
  
  .atom-button:hover {   
    cursor: pointer;
  }

  .atom-button:hover * {   
    cursor: pointer;
  }

  .atom-button:disabled{
    cursor: not-allowed;  
    opacity: 0.5;
  }
  
  
  .atom-button--primary {
    background-color: var(--button-colour-active);
    border:none;
    color: var(--text-colour-primary);
  }
  
  .bp3-spinner.bp3-intent-primary .bp3-spinner-head {
    stroke:#ffffff;
  }


  .atom-button--success {
    background-color: var(--utility-colour-positive);
    border:none;
    color: var(--text-colour-primary);
  }

  .atom-button--danger {
    background-color: var(--utility-colour-negative);
    border:none;
    color: var(--text-colour-primary);
  }

  .atom-button-content{
    display:flex;
    flex-flow:row nowrap;
    justify-content: space-between;
  }


.jp-dialog {
  background: transparent !important;  
  border-radius: 0.2rem;
  padding: 0;
  overflow: hidden;
}

.jp-dialog .bp3-dialog-header {
  background: var(--background-colour-quaternary);
}

.jp-dialog .bp3-heading {
  color: var(--text-colour-primary);
  text-align: center;
}

.jp-dialog .bp3-dialog-footer {
  margin: 0px 2rem 2rem 2rem;
}

.investor-request-dialog-popover {}

.investor-request-dialog-drop-down-option-button {
  width: 250px;
  color: #fff;
  border-radius: 3px;
  background-color: #765595;
  display: flex;
  justify-content: center;
}

.investor-request-dialog-drop-down-option-button-content {
  flex-flow: row-reverse;
  width: 100%;
  justify-content: space-between;
}

.investor-request-dialog__positions {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.investor-request-dialog__positions-reason {
  width: 250px;
  margin-top: 1rem;
}

.investor-request-dialog-request-button {
  width: 200px;
  margin-top: 1rem;
  background-color: transparent;
  color: #765793;
  border: 1px solid #765793;
}

.investor-request-dialog-request-button--selected {
  background-color: #765793;
  color: #fff;
}

.investor-request-dialog__drop-down-option__item {
  cursor: pointer;
}

.investor-request-dialog-drop-down-option__list {
  width: 250px;
}

.investor-request-dialog__drop-down-option__item {
  padding: 0.25rem;
}

.investor-request-dialog__drop-down-option__item:hover {
  background-color: #cecece;
}

.investor-request-dialog__requests {
  display: flex;
  padding: 1rem;
  flex-flow: column nowrap;
  align-items: center;
}

.investor-request-dialog-title {
  margin-bottom: 30px;
  font-size: 20px;
}

.investor-request-dialog {
  background-color: #ffffff;
}

.investor-request-dialog-content {
  background-color: #ffffff;
  padding: 1rem;
  align-items: center;
  min-height: 400px;
  display: flex;
  flex-flow: column;
}

.investor-request-dialog__action-buttons {
  display: flex;
  flex: 1;
  align-items: flex-end;
  flex-flow: row nowrap;
  justify-content: flex-end;
  width: 100%;
}

.sidebar-nav-item {
    font-size: 14px;
    color: #765595;
    display: flex;
    flex-flow: row nowrap;
    margin-top: 1.5rem;
    opacity: 0.65;
    align-items: center;
    cursor: default;
}

.sidebar-nav-item:hover {
  color: #765595;
  text-decoration: none;
  cursor: default;
}

.sidebar-nav-item__text {
    background-color: transparent;
    border: none;
    color: inherit;
    font-weight: inherit;    
    text-decoration: none;
}

.sidebar-nav-item__coming-soon {
    margin-left:0.5rem;    
    padding: 0 0.5rem;
    border-radius: 12px;
    background-color: #dcd2e3;
    font-size: 10px;
    color: var(--text-colour-primary);
}

.sidebar-nav-item.enabled {
  opacity: 0.9;   
}

.sidebar-nav-item.enabled:hover {   
    font-weight: bold;
    opacity: 1;
    cursor: pointer;   
}

.sidebar-nav-item.enabled:active {
    color: inherit;
    font-weight: bold;
    opacity: 1;
}

.sidebar-nav-item--active {
    color: inherit;
    font-weight: bold;
    opacity: 1;
}

.sidebar-nav-item__icon-wrapper {
    width: 2rem;
    display: flex;
    justify-content: flex-end;
    margin-right: 0.5rem;
}

.sidebar-nav-item__icon {
    object-fit: contain;
    opacity: inherit;
}

.sidebar-nav-item.enabled:focus {
    outline: 0.1rem dotted var(--utility-colour-primary);
}

.sidebar-nav-item:disabled {
    opacity: 0.6;
}
.dap-navigation {
    display: flex;
    flex-flow: column nowrap;
    width: 21rem;
    height: 100%;
    background-color: #f8f5fa;
    padding: 1rem 1rem;
    justify-content: space-between
}

.dap-navigation__powered-by {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    color: #572c62;
    padding-left: 1rem;
}

.dap-navigation__powered-by-text {
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #572c62;
}

.fund-manager-document-item {
    margin: 2rem 4rem 0 0;
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    width:110px;
}

.fund-manager-document-item__label {
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #572c62;
  max-width:90%;
}

.fund-manager-document-item__selectable{
  width:100%;
  display:flex;
  flex-flow: column;
  align-items: center;
  text-decoration: none;
}

.fund-manager-document-item__selectable:hover{
  text-decoration: none;
}
.fund-manager-document-item__menu {
  cursor: pointer;
  opacity: 0.2;
}

.fund-manager-document-item__menu:hover {
  cursor: pointer;
  opacity: 1;
}

.bread-crumb__nav-item {
  display:flex;
  align-items: center;
  flex-flow:row;  
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #572c62;
  margin:0 0.5rem;
  height:2rem;  
  opacity:0.8;
  text-decoration: none;
}
.bread-crumb__crumb{
  display:flex;
  flex-flow:row;
  align-items: center;  
}

.bread-crumb__nav-item__text{
  background-color: transparent;
  border: none; 
  color:white;
  font-weight:inherit;
  cursor: inherit;
  
}

.bread-crumb__nav-item:hover {  
  font-weight: bold;  
  opacity:1;
  cursor: pointer;
  text-decoration: none; 
  color: #572c62;
}

.bread-crumb__nav-item:active {
  
  font-weight: bold;
  opacity:1;  
}

.bread-crumb__nav-item--active{ 
  font-weight: bold;
  opacity:1;  
}

.bread-crumb__nav-item__icon{
  object-fit: contain;
  opacity:inherit;
}

.bread-crumb__nav-item:focus {
  outline: 0.1rem dotted var(--utility-colour-primary);
}

.bread-crumb__nav-item:disabled {
  opacity: 0.6;
}

.toolbar__container--horizontal > .bread-crumb__nav-item {
  height: 100%;
}

.toolbar__container--vertical > .bread-crumb__nav-item {
  width: 100%;
}
.document-upload {
    display:flex;
    justify-content: center;
    align-items: center;
    width: 108px;
    height: 108px;
    margin: 2rem 4rem 0 0;
}
.document-upload__dropzone {
    width: 100%;
    height:100%;    
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    border: 1px dashed #765595;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 11px;
    text-align: center;
    font-size: 14px;
    color: #572c62;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.21;
    letter-spacing: normal;
    opacity: 0.8;
}

.document-upload__dropzone--isActive {
    opacity: 1;
    border: 3px dashed #765595;
}


.dap-content-viewer {
  display: flex;
  flex: 1;
  flex-flow: column nowrap;
  position: relative;
  overflow: hidden;
  -webkit-animation: fadein 2s;
  /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s;
  /* Firefox < 16 */
  -ms-animation: fadein 2s;
  /* Internet Explorer */
  -o-animation: fadein 2s;
  /* Opera < 12.1 */
  animation: fadein 2s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Firefox < 16 */

@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Safari, Chrome and Opera > 12.1 */

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Internet Explorer */

@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Opera < 12.1 */

@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.dap-content-viewer__header {
  height: 6rem;
  padding: 1.5rem 0 0 2.5rem;
}

.dap-content-viewer__back-button {
  padding: 0 0.5rem 0 0.5rem;
  height: 26px;
  border-color: #572c62;
  border-width: 1px;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
}

.dap-content-viewer__main {
  display: flex;
  flex: 1;
  flex-flow: row nowrap;
}

.dap-content-viewer__content {
  display: flex;
  flex: 1;
  flex-flow: column nowrap;
  padding-left: 2.5rem;
  overflow: auto;
}

.dap-content-viewer__title-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #572c62;
  min-height: 2rem;
  margin-bottom: 1rem;
}

.dap-content-viewer__title-bar--investor {
  border-bottom: none;
}

.dap-content-viewer__title {
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #572c62;
  display: flex;
  flex-flow: row;
  align-items: center;
}

.dap-content-viewer__content-list {
  display: flex;
  flex: 1;
  flex-flow: row wrap;
  overflow-y: auto;
  align-content: flex-start;
}

.dap-content-viewer__button-list {
  display: flex;
  flex-flow: column nowrap;
  width: 17rem;
  padding: 0 3rem;
}

.dap-content-viewer__button {
  height: 26px;
  border-color: #572c62;
  border-width: 1px;
  border-radius: 3px;
  background-color: #fff;
  margin-bottom: 27px;
  cursor: pointer;
  font-size: 12px;
}

.dap-content-viewer__button--investor {
  color: #fff;
  background-color: #765595;
}

.dap-content-viewer__button:disabled {
  cursor: not-allowed;
  border-color: lightgray;
}

.dap-content-viewer__sort {
  cursor: pointer;
  font-size: 16px;
  color: #572c62;
}

.dap-content-viewer__description {
  word-wrap: break-word;
}

.dap-content-viewer__description-editor {
  height: 5rem;
  resize: vertical;
}

.dap-content-viewer__edit-description-buttons {
  display: flex;
  justify-content: space-between;
}

.dap-content-viewer__edit-description-buttons>button {
  flex: 0.45;
}

.fund-manager-folder-item {
  margin: 2rem 4rem 0 0;
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  width: 110px
}

.fund-manager-folder-item__label {
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #572c62;
  max-width: 90%;
}

.fund-manager-folder-item__selectable {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.fund-manager-folder-item__selectable--inactive {
  opacity:0.3;
}

.fund-manager-folder-item__menu {
  cursor: pointer;
  opacity: 0.2;
}

.fund-manager-folder-item__menu:hover {
  cursor: pointer;
  opacity: 1;
}

.fund-manager-folder-item__request-access-button {
  margin-top:0.5rem;
  padding: 0.2rem 0.5rem 0.2rem 0.5rem;
  border: 1px solid #572c62;
  border-radius: 3px;
  min-height: 1.5rem; 
  background-color: #fff;
  cursor: pointer;
  font-size: 12px;
  min-width: 105px;
}
.fund-manager-list-item__container {
    width: 11rem;
    margin: 2rem 2rem 0 0;
}

.fund-manager-list-item__logo {
    height: 11rem;
    background: lightgrey;
}

.fund-manager-list-item__logo, .fund-manager-list-item__logo > img {
    width: 100%;
    border-radius: 0.25rem;
}

.fund-manager-list-item__label, .fund-manager-list-item__manager-label {
    color: #572c62;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.fund-manager-list-item__label {
    margin: 0.25rem 0;
    font-weight: 600;
    font-size: 1rem;
}

.fund-manager-list-item__manager-label {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.fund-manager-list-item__menu {
    cursor: pointer;
    opacity: 0.2;
    text-align: right;
}

.fund-manager-list-item__menu:hover {
    opacity: 1;
}

.fund-manager-list-item__selectable {
    cursor: pointer;
}

.fund-manager-list-item__selectable--inactive {
    opacity: 0.3;
}

.fund-manager-list-item__request-access-button {
    border: 1px solid #572c62;
    border-radius: 0.25rem;
    cursor: pointer;
    width: 100%;
    min-height: 1rem;
}

.fund-manager-item {
  margin: 2rem 4rem 0 0;
  position: relative;
  display: flex;
  flex-flow: column;
  width: 150px;

}

.fund-icon {
  height:150px;
  width:150px;
  border-radius: 4px;
  background-color: #dcd2e3;
  display:flex;
  justify-content: center;
  align-items: center;

}

.fund-icon__logo {
  height: 100%;
  width: 100%;
  border-radius: 4px;
}

.fund-manager-item__label {
  font-size:1.2vmin;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #572c62;
  max-width: 90%;

}

.fund-manager-item__selectable {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  cursor:pointer;
}

.fund-manager-item__selectable--inactive {
  opacity:0.5;
  cursor:default;
}

.fund-manager-item__request-access {
  margin-top:0.5rem;
  width: 100%;
  height: 26px;
  border-radius: 3px;
  border-color: #572c62;
  border-width: 1px;
  background-color: #fff;
  cursor: pointer;
  font-size: 12px;
}

  .fund-manager-item__request-access-button {
    margin-top:0.5rem;
    padding: 0.2rem 0.5rem 0.2rem 0.5rem;
    border: 1px solid #572c62;
    border-radius: 3px;
    min-height: 1.5rem;
    background-color: #fff;
    cursor: pointer;
    font-size: 12px;
    min-width: 100%;
  }

.fund-manager-item__description{
  font-size:0.8rem;
  white-space: pre-wrap;
  /* Since CSS 2.1 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
}
.fund-manager-item__description-button{
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #572c62;
  display:flex;
  align-items: center;
}


.bp3-popover.fund-manager-item__description-parent .bp3-popover-content {
  max-width:700px;
  max-height:500px;
  background-color: #f8f5fa;

  overflow-x: auto;
  overflow-y:auto;
  }

.investor-login__page {
    height: 100%;
    width: 100%;
    text-align: start !important;
}

.investor-login__container {
    width: 30rem;
    margin: auto;
    color: #fff;
    text-align: center;
}

.investor-login__container h3 {
    color: #cecece;
    font-weight: normal;
    margin: 2rem 0;
}

.investor-login__container .text-input__label {
    text-align: start;
}

.investor-login__email-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0);
    color: #fff;
    border-radius: 0.25rem;
}

.investor-login__submit-button {
    background: #85aa3f;
    padding: 0.7rem 1.2rem;
    color: #fff;
    border: 0;
    border-radius: 0.25rem;
    cursor: pointer;
    margin: 1rem;
}

.investor-login__submit-button:focus {
    outline: 0;
    border: 1px solid rgba(255, 255, 255, 1);
}

.investor-login__splash-subheading {
    font-size: 1.5rem;
    font-weight: 500;
    color: #0084B0;
    margin-top: -4.5rem;
    margin-left: 8rem;
    margin-bottom: 4rem;
}

.investor-login-fail__text1{
  margin-bottom:3rem;
  margin-left:-2rem;
}



.investor-login-fail__text2{
  color:#cecece;
  text-align: center;
}


.client-details__cell.user-buttons {
  justify-content: center;
  text-align: center;
}

.client-details__cell.user-buttons button {
  width: 30%;
  padding: 0.25rem 0;
}

.client-details__cell-content.scrollable {
  overflow: hidden;
}

.client-details__cell-content.scrollable:hover {
  overflow-x: auto;
}

.client-details__cell-content.scrollable:hover::-webkit-scrollbar {
  height: 0.5rem;
}

.client-details__cell-content.scrollable:hover::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
}

.client-details__cell-content.scrollable:hover::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 1rem;
}

.client-details__cell-content .bp4-control {
  margin-bottom: 0;
}

.client-details__cell-content select {
  border-color: #ede5e5;
  padding: 5px 5px;
}
.client-details {
  color: white;
}

.client-details__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.client-details__item {
  padding: 1rem;
}

.client-details__item h4 {
  padding-bottom: 10px;
}

.client-details__row {
  display: flex;
  width: 100%;
  border-bottom: 1px solid var(--menu-background);
}

.client-details__row.header {
  font-weight: bolder;
  background-color: var(--menu-background);
}

.client-details__row.user {
  color: rgba(255, 255, 255, 0.5);
}

.client-details__cell {
  display: inline-flex;
  min-width: 20%;
  max-width: 20%;
  height: 3rem;
  align-items: center;
}

.client-details__cell.narrow {
  min-width: 80px;
  max-width: 100px;
}

.center {
  text-align: center;
}

.client-details__cell-content {
  white-space: nowrap;
  margin: 0 1rem;
  width: 100%;
}

client-details-select__control{
  width: 200px;
}

.client-delete-dialog-content {
  display: flex;
  padding: 1rem;
  flex-flow: column nowrap;
  background-color: #ffffff;
}

.client-delete-form__buttons {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
}

.client-delete-question {
  font-family: Helvetica;
  font-size: 15px;
  font-weight: bold;
  color: var(--juniper);
  margin: 15px;
}

.client-details__items {
  display: flex;
}

.create-client-dialog-content{
  display:flex;
  flex-flow:column;
  background-color:#fff;
  padding:1rem;
}

.create-client-dialog-buttons{
  display:flex;
  flex-flow:row;
  justify-content:flex-end
}

.create-client-dialog-content__input{
  width:100%;
  padding:2rem;
}

.create-client-dialog-content__input-field{
  width:100%;
}
.create-user-dialog-content{
  display:flex;
  flex-flow:column;
  background-color:#fff;
  padding:1rem;
}

.create-user-dialog-buttons{
  display:flex;
  flex-flow:row;
  justify-content:flex-end
}

.create-user-dialog-content__input{
  width:100%;
  padding:2rem;
}

.create-user-dialog-content__input-name{
  width:100%;
}

.create-user-dialog-content__input-email{
  width:100%;
  margin-top:1rem;
}
/* line 88, /var/www/html/backend/sass/_global.sass */

.admin-page .client-list {
  position: absolute;
  width: 30%;
  height: calc(100% - 100px);
  left: 0;
  top: 100px;
}

/* line 95, /var/www/html/backend/sass/_global.sass */

.admin-page main {
  position: absolute;
  width: 70%;
  height: calc(100% - 100px);
  left: 30%;
  top: 100px !important;
}

/* line 1, /var/www/html/backend/sass/_form.sass */

.admin-page input {
  color: #000000;
  width: 100%;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  font-size: 14px;
  border: 0;
}

/* line 9, /var/www/html/backend/sass/_form.sass */

.admin-page input:focus {
  outline: 0;
  box-shadow: 0 0 3px 0 #fff;
}

/* line 12, /var/www/html/backend/sass/_form.sass */

.admin-page input.disabled:focus {
  box-shadow: none;
}

/* line 15, /var/www/html/backend/sass/_form.sass */

.admin-page button {
  border: 0;
  color: #fff;
  background: #5c5a6d;
  border-radius: 5px;
  font-size: 13px;
  padding: 3px 19px;
  cursor: pointer;
}

.admin-page button + button {
  margin-left: 6px;
}

/* line 25, /var/www/html/backend/sass/_form.sass */

.admin-page button.save-btn,
.admin-page button.add-user-btn {
  background: #85aa3f;
}

.admin-page button.add-user-btn:disabled,
.admin-page button.save-btn:disabled  {
  color: darkgray;
  background: #5c5a6d;
  cursor: not-allowed;
}

/* line 27, /var/www/html/backend/sass/_form.sass */

.admin-page button.delete-btn {
  background: #ff6666;
  color: #55003b;
}

/* line 29, /var/www/html/backend/sass/_form.sass */

.admin-page button.move-btn {
  background: #ff9e0b;
}

.admin-page button.reset-btn {
  background: #1b52ab;
}

/* line 1, /var/www/html/backend/sass/_client-list.sass */

.client-list {
  background: #FFFFFF;
}

/* line 7, /var/www/html/backend/sass/_client-list.sass */

.client-list h1,
.client-list ul,
.client-list footer {
  position: absolute;
  left: 0;
  right: 0;
}

/* line 12, /var/www/html/backend/sass/_client-list.sass */

.client-list h1,
.client-list footer {
  color: #000000;
  background: #FFFFFF;
  padding: 0 12px;
  height: 60px;
  line-height: 60px;
}

/* line 19, /var/www/html/backend/sass/_client-list.sass */

.client-list h1 {
  top: 0;
  border-bottom: 1px solid rgba(29, 29, 27, 0.3);
  border-right: 1px solid rgba(29, 29, 27, 0.3);
}

/* line 23, /var/www/html/backend/sass/_client-list.sass */

.client-list footer {
  text-align: center;
  bottom: 0px;
}

/* line 26, /var/www/html/backend/sass/_client-list.sass */

.client-list footer a {
  color: #fff;
  position: relative;
  padding-left: 25px;
}

/* line 30, /var/www/html/backend/sass/_client-list.sass */

.client-list footer a:before {
  content: "+";
  font-size: 22px;
  line-height: .8;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: var(--turquoise);
  left: 0;
  top: 2px;
}

.add-client-button {
  width: 130px;
  height: 30px;
  display: inline-block;
  border-radius: 6px;
  color: #FFFFFF;
  background-color: var(--turquoise);
  padding: 5px;
  margin-left:2px;
  cursor: pointer;
}

/* line 42, /var/www/html/backend/sass/_client-list.sass */

.client-list ul {
  top: 60px;
  bottom: 60px;
  overflow-y: scroll;
}

/* line 47, /var/www/html/backend/sass/_client-list.sass */

.client-list ul li div {
  border-bottom: 1px solid #494854;
  cursor: pointer;
}

/* line 50, /var/www/html/backend/sass/_client-list.sass */

.client-list ul li div.active {
  background: var(--turquoise);
}

/* line 54, /var/www/html/backend/sass/_client-list.sass */

.client-list ul li div:hover {
  border-bottom: 1px solid rgba(29, 29, 27, 0.5);
}

/* line 56, /var/www/html/backend/sass/_client-list.sass */

.client-list ul li div:hover a {
  background: #9480A1;
  color: #FFFFFF;
}

/* line 60, /var/www/html/backend/sass/_client-list.sass */

.client-list ul li div {
  display: block;
  padding: 20px 12px;
  color: #000000;
}

/* line 21, /var/www/html/backend/sass/_users.sass */

.admin-page main .hidden {
  display: none;
}

/* line 24, /var/www/html/backend/sass/_users.sass */

.admin-page main input.disabled {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  padding: 5px 0;
}

.admin-page .bp3-control-indicator {
  margin-left: -28px !important;
}

.admin-page .bp3-control {
  margin-bottom: 0px !important;
}

.tools-page {
  display: flex;
}

.tools-page section {
  width: 30%;
  border-right: 1px solid rgba(29, 29, 27, 0.3);
  height: calc(100vh - 60px);
}

.tools-page main {
  width: 70%;
  position: initial;
  height: calc(100vh - 60px);
}

.tools-section-button {
  text-align: center;
  bottom: 0;
  color: #000000;
  background-color: var(--turquoise);
  height: 40px;
  line-height: 40px;
  border-radius: 6px;
  margin: 20px;
  cursor: pointer;
}
.contactsContainer {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contactsFiltersContainer {
    margin: 10px 20px;
}

.contactsEmailDeliverabilityCodeSelectLabel {
    font-weight: bold;
}

.contactsEmailDeliverabilityCodeSelect {
    border: solid 1px var(--juniper-mid);
    border-radius: 10px;
    height: 30px;
    line-height: 30px;
    background-color: #ffffff;
    text-align: left;
    font-size: 13px;
    font-family: Helvetica;
    font-weight: 500;
    padding-left: 10px;
    padding-right: 80px;
    cursor: pointer !important;
    margin-left: 10px;
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
    background-image: url(/arrow-down.svg);
    background-repeat: no-repeat;
    background-position-x: 90%;
    background-position-y: 12px;
}

.contactsTableContainer {
    margin: 10px 20px;
    margin-right: 0px;
    display: flex;
    height: calc(100% - 50px);
    overflow-y: scroll;
}

.contactsTable {
    border-collapse: collapse;
    position: relative;
    height: fit-content;
    margin-right: 20px;
    width: 100%;
}

.contactsTableHeader {
    font-weight: bold;
    position: sticky;
    top: 0px;
    background-color: white;
}

.contactColumn {
    font-size: 13px;
    padding-bottom: 10px;
    padding-top: 10px;
    padding-right: 20px;
    color: var(--juniper-dark);
    font-family: Helvetica;
    border-bottom: 1px solid var(--dividers);
    user-select: all;
}

.contactsNoData {
    text-align: center;
    margin-top: 20px;
    width: 100%;
}

.contactCheckboxColumn {
    padding-left: 35px;
}

.contactsTableHeader > tr > td {
    user-select: none;
}

.contactsTableHeader > tr > td > span{
    font-weight: initial;
}

.contactsTableHeader > tr > td.active > span{
    color: var(--turquoise);
}

.clickable {
    cursor: pointer;
}

.contactsLoading {
    text-align: center;
    padding: 20px;
}
.admin-page .client-list {
  position: absolute;
  width: 30%;
  height: calc(100% - 100px);
  left: 0;
  top: 100px;
}

/* line 95, /var/www/html/backend/sass/_global.sass */

.admin-page main {
  position: absolute;
  width: 70%;
  height: calc(100% - 100px);
  left: 30%;
  top: 100px;
}

/* line 1, /var/www/html/backend/sass/_form.sass */

.admin-page input {
  color: #000000;
  width: 100%;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  font-size: 14px;
  border: 0;
}

/* line 9, /var/www/html/backend/sass/_form.sass */

.admin-page input:focus {
  outline: 0;
  box-shadow: 0 0 3px 0 #fff;
}

/* line 12, /var/www/html/backend/sass/_form.sass */

.admin-page input.disabled:focus {
  box-shadow: none;
}

/* line 15, /var/www/html/backend/sass/_form.sass */

.admin-page button {
  border: 0;
  color: #fff;
  background: #5c5a6d;
  border-radius: 5px;
  font-size: 13px;
  padding: 3px 19px;
  cursor: pointer;
}

.admin-page button + button {
  margin-left: 6px;
}

/* line 25, /var/www/html/backend/sass/_form.sass */

.admin-page button.save-btn,
.admin-page button.add-user-btn {
  background: #85aa3f;
}

.admin-page button.add-user-btn:disabled,
.admin-page button.save-btn:disabled  {
  color: darkgray;
  background: #5c5a6d;
  cursor: not-allowed;
}

/* line 27, /var/www/html/backend/sass/_form.sass */

.admin-page button.delete-btn {
  background: #ff6666;
  color: #55003b;
}

/* line 1, /var/www/html/backend/sass/_client-list.sass */

.client-list {
  background: #FFFFFF;
}

/* line 7, /var/www/html/backend/sass/_client-list.sass */

.client-list h1,
.client-list ul,
.client-list footer {
  position: absolute;
  left: 0;
  right: 0;
}

/* line 12, /var/www/html/backend/sass/_client-list.sass */

.client-list h1,
.client-list footer {
  color: #000000;
  background: #FFFFFF;
  padding: 0 12px;
  height: 60px;
  line-height: 60px;
}

/* line 19, /var/www/html/backend/sass/_client-list.sass */

.client-list h1 {
  top: 0;
  border-bottom: 1px solid rgba(29, 29, 27, 0.3);
  border-right: 1px solid rgba(29, 29, 27, 0.3);
}

/* line 23, /var/www/html/backend/sass/_client-list.sass */

.client-list footer {
  text-align: center;
  bottom: 0px;
}

/* line 26, /var/www/html/backend/sass/_client-list.sass */

.client-list footer a {
  color: #fff;
  position: relative;
  padding-left: 25px;
}

/* line 30, /var/www/html/backend/sass/_client-list.sass */

.client-list footer a:before {
  content: "+";
  font-size: 22px;
  line-height: .8;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: var(--turquoise);
  left: 0;
  top: 2px;
}

.add-client-button {
  width: 130px;
  height: 30px;
  display: inline-block;
  border-radius: 6px;
  color: #FFFFFF;
  background-color: var(--turquoise);
  padding: 5px;
  margin-left:2px;
  cursor: pointer;
}

/* line 42, /var/www/html/backend/sass/_client-list.sass */

.client-list ul {
  top: 60px;
  bottom: 60px;
  overflow-y: scroll;
}

/* line 47, /var/www/html/backend/sass/_client-list.sass */

.client-list ul li div {
  border-bottom: 1px solid #494854;
  cursor: pointer;
}

/* line 50, /var/www/html/backend/sass/_client-list.sass */

.client-list ul li div.active {
  background: var(--turquoise);
}

/* line 54, /var/www/html/backend/sass/_client-list.sass */

.client-list ul li div:hover {
  border-bottom: 1px solid rgba(29, 29, 27, 0.5);
}

/* line 56, /var/www/html/backend/sass/_client-list.sass */

.client-list ul li div:hover a {
  background: #9480A1;
  color: #FFFFFF;
}

/* line 60, /var/www/html/backend/sass/_client-list.sass */

.client-list ul li div {
  display: block;
  padding: 20px 12px;
  color: #000000;
}

/* line 21, /var/www/html/backend/sass/_users.sass */

.admin-page main .hidden {
  display: none;
}

/* line 24, /var/www/html/backend/sass/_users.sass */

.admin-page main input.disabled {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  padding: 5px 0;
}

.admin-page .bp3-control-indicator {
  margin-left: -28px !important;
}

.admin-page .bp3-control {
  margin-bottom: 0px !important;
}


.utility-page-button {
  width: 130px;
  height: 30px;
  display: inline-block;
  border-radius: 6px;
  border:none;
  color: #FFFFFF;
  background-color: var(--turquoise);
  padding: 5px;
  margin-left:2px;
  cursor: pointer;
  text-align: center;
  box-shadow: none;
  margin-bottom: 15px;
}

.analytics-wrapper {
  display: flex;
  justify-content: space-between;
}

.analytics-wrapper .filter {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.analytics-wrapper .filter label {
  font-weight: bold;
}

.analytics-wrapper .filter .date{
  align-items: center;
  display: flex;
  gap: 8px;
}

.analytics-wrapper .filter .text{
  align-items: center;
  display: flex;
  gap: 8px;
}

.analytics-wrapper .filter .utility-page-button {
  margin-bottom: 0;
  background-color: #765595;
}
.fund__comment-button {
    position: absolute;
    right: 1rem;
    bottom: 0.5rem;
    font-size: 10px;
}

.fund {
    width: 100%;
    margin-bottom: 1rem;
}

.fund-dialog-title{
    margin-bottom:15px;
    font-size:20px;
}

.fund_dialog-content {
    display: flex;
    padding: 1rem;
    flex-flow: column nowrap;
    background-color: #ffffff;
}

.fund-form__buttons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
}

.fund__name-field {
    margin-bottom: 1rem;
}

.fund__text-field {
    margin-bottom: 1rem;
}


.invite-dialog {
    width: 525px;
    border-radius: 6px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    background-color: #f8f5fa;
    display:flex;
    flex-flow: column nowrap;
    align-items: center;
    color: #572c62;
}

.invite-dialog__title {
    margin-bottom: 15px;
    font-size: 20px;
    width:80%;
    text-align: center;    
    justify-self: center;
}

.invite-dialog__content {
    display: flex;
    padding: 1rem;
    width: 100%;
    flex-flow: column nowrap;
    background-color: #ffffff;
    align-items: center;
}

.invite-dialog__form-buttons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;    
}

.invite-dialog__name-field {
    margin-bottom: 1rem;
}

.invite-dialog__text-field {
    margin-bottom: 1rem;
    width:100%;
}

.invite-dialog__fund-checkbox {
    width: 50%;
    padding: 1rem;
    display: flex;
}

.invite-dialog__fund-checkbox-label {
    display: flex;
    width: 80%;
}

.invite-dialog__funds {
    display: flex;
    flex-flow: row wrap;
    width:90%;
    max-height:500px;
    overflow: auto;
    margin:1rem 0 1rem 0;
}
.invite-dialog__funds-title{
  margin:1rem;
  font-size: 12px;
  width:80%;
  text-align: center;
}

.invite-dialog__form-cancel-button{
  border: 1px solid;
  border-radius: 3px;
  width:149px;
  margin:1rem;
}

.invite-dialog__form-submit-button{
  width:149px;
  margin:1rem;
}

.invite-dialog__invitee-details{
    width:80%;
}
.image-upload {
    display:flex;
    justify-content: center;
    align-items: center;
    width: 108px;
    height: 108px;
    margin: 2rem 4rem 0 0;
}

.image-upload__dropzone {
    width: 100%;
    height:100%;
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    border: 1px dashed #765595;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 11px;
    text-align: center;
    font-size: 14px;
    color: #572c62;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.21;
    letter-spacing: normal;
    opacity: 0.8;
}

.image-upload__dropzone--isActive {
    opacity: 1;
    border: 3px dashed #765595;
}


.fund-manager-logo__container {
    margin: 2rem 0 0 2rem;
}

.image-upload, .fund-icon, .fund-manager-logo__text {
    margin: 2rem;
}

.folder-permission-list{
  display:flex;
  align-items:center;
  max-width: 199px;
  min-width: 130px;
  height:100%;
}

.folder-permission-list .bp3-popover-wrapper{
  width:100%;
  max-width: 199px;
}

.folder-permission-list .bp3-popover-wrapper .bp3-popover-target{
  width:100%;
  max-width: 199px;
}

.folder-permission-list__item{
  display: flex;
  flex-flow:row nowrap;
  padding:0.25rem;
  color: #572c62;
}

.folder-permission-list__list {
  width: 199px;
  
  display: flex;
  flex-flow:column nowrap;
  border-radius: 3px;
  border: solid 1px #765595;
}

.folder-permission-list__button{
  width: 100%;
  height: 26px;
  color:#fff;
  border-radius: 3px;
  background-color: #765595;
  min-height:0;
  display:flex; 
}

.folder-permission-list__folder-checkbox-label{
  margin-left:0.5rem;
  width:80%;
}

.folder-permission-list__button-content{
  flex-flow: row-reverse;
  width:100%;
  justify-content: space-between; 
}
.investor-requests-list__wrapper{
  overflow-x:auto;
  overflow-y: hidden;
}

.investor-requests-list{
  display:flex;
  flex-flow:row nowrap;
  overflow:visible;
  line-height: 0px;
  height:25px;
}

.investor-requests-list__request{
  margin-right:0.5rem;
  display:flex;
  align-items: center;
  height:25px;
 
}

.investor-requests-list__request_details{
  padding:0.5rem;
}
.ReactTable {
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 25px; 
  letter-spacing: normal;
  color: #68696f;
  border:none;
}

.ReactTable .rt-thead {
  font-weight: normal;
}

.ReactTable .rt-thead.-headerGroups {
  border-bottom: 1px solid #979797;
}

.ReactTable .rt-thead.-filters {
  border-bottom: 1px solid #979797;
}

.ReactTable .rt-thead.-filters .rt-th {
  border-right: none;
}

.ReactTable .rt-thead.-header {
  box-shadow: none;
  border-bottom: 1px solid #979797;
}

.ReactTable .rt-thead .rt-tr {
  text-align: left;
}

.ReactTable .rt-thead .rt-th,
.ReactTable .rt-thead .rt-td {
  border-right: none;
}

.ReactTable .rt-thead .rt-th.-sort-asc,
.ReactTable .rt-thead .rt-td.-sort-asc {
  box-shadow: inset 0 3px 0 0 #765595;
}

.ReactTable .rt-thead .rt-th.-sort-desc,
.ReactTable .rt-thead .rt-td.-sort-desc {
  box-shadow: inset 0 -3px 0 0 #765595;
}

.ReactTable .rt-tbody .rt-tr-group {
  border-bottom: 1px solid #979797; 
  flex:none;
}

.ReactTable .rt-tbody .rt-tr-group:last-child {
  border-bottom: 0
}

.ReactTable .rt-tbody .rt-td {
  border-right: none;
}

.ReactTable .rt-tr-group {
  width: 100%;
}

.ReactTable .rt-tfoot .rt-td {
  border-right: none;
}

.ReactTable .rt-noData {
  color: #979797;
}

.ReactTable .-loading>div {
  color: #979797;
}
.investor-progress{
  width:100%;
  display:flex; 
  flex-flow: column nowrap;
  
  padding:2rem;
}

.investor-progress__title {
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #572c62;
  margin-bottom:4rem;
  display:flex;
  flex-flow:row;
  align-items: center;
}
.deal-room{
    display:flex;
    flex:1;
    background-color:#fff;
}
.breadcrumbs {
    height: 60px;
    text-align: center;
    line-height: 37px;
    padding: 10px 15px;
    background-color: #F9F8F9;
}

.firstRow {
    text-align: left;
    top: 0;
    padding-left: 20px;
    display: flex;
}

.secondRow {
    top: 100px;
}

.visualSelectorRow {
    top: 70px;
}

.visual-selector {
    padding: 0px 20px;
    display: flex;
}

.visual-selector label {
    font-weight: 400;
}

.visual-selector .bp4-control {
    margin-bottom: 0;
    padding-left: 45px !important;
}

.visual-selector .bp4-control .bp4-control-indicator {
    border: 2px solid #000;
    background: transparent !important;
}

.visual-selector .bp4-control .bp4-control-indicator::before {
    width: 8px;
    height: 8px;
    background: black;
}

.visual-selector .bp4-control input:focus {
    outline: none;
}

.visual-selector .bp4-control input:focus ~ .bp4-control-indicator {
    outline: none;
}

.visual-selector .bp4-control.bp4-switch input:checked ~ .bp4-control-indicator::before {
    left: calc(100% - 12px);
}

.breadcrumbs--left {
    text-align: left;
}

.breadcrumbs__regions {
    display: inline-block;
    border-radius: 6px;
    overflow: hidden;
    color: #A09CA7;
    font-weight: normal;
    line-height: normal;
    vertical-align: middle;
    font-size: 0;
}

.breadcrumbs__regions-item {
    font-size: 14px;
    display: inline-block;
    background: #FFFFFF;
    padding: 4px 16px;
    cursor: pointer;
}

.breadcrumbs__regions-iconItem {
    font-size: 14px;
    display: inline-block;
    background: #F9F8F9;
    padding: 4px 16px;
    cursor: pointer;
}


.breadcrumbs__regions-item:hover
{
  
    background: FFFFFF;
}

.breadcrumbs__regions-item--selected {
    color: #FFFFFF;
    background: var(--turquoise);
}

.breadcrumbs__regions-item--icon {
    padding: 4px 8px;
}

.breadcrumbs__items {
    display: inline-block;
    vertical-align: middle;
}

.breadcrumbs__item {
    float: right;
    color: #b0acb2;
    cursor: pointer;
    font-size:14px;
    font-weight: 500;
}

.breadcrumbs__item:first-child{
    color: var(--turquoise);
    font-size:14px;
    font-weight: 500;
    cursor: default;
}
.breadcrumbs__item:empty {
    color: #FFFFFF;
    cursor: default;
}

.breadcrumbs__item:before {
    content: "";
    width: 0;
    height: 0;
    display: inline-block;
    vertical-align: middle;
    margin: -4px 10px 0;
    border-style: solid;
    border-width: 3px 0 3px 3px;
    border-color: transparent transparent transparent #3E324D;
}

.breadcrumbs__item:empty {
    display: none;
}

.filtersButton {
    all: unset;
    cursor: pointer;
    display: flex;
    gap: 10px;
    align-items: center;
    border: solid 1px var(--turquoise);
    border-radius: 20px;
    padding: 10px;
    background-color: #FFFFFF;
    height: 10px;
    margin-right: 20px;
    font-size: 13px;

    img {
        height: 12px;
    }
}

.filtersButton.listing-show {
    position: absolute;
    left: 330px;
}

.filtersButton:hover {
    background-color: var(--juniper-light)
}

.filtersModal {
    background-color: #FFFFFF;
    width: 600px;
    height: 600px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 150px;
    border-radius: 20px;
    box-shadow: 1px 2px 3px 1px rgba(0,0,0,0.3);
    padding: 20px;
}

.modalHeader {
    display: flex;
    justify-content: space-between;
}

.closeModalButton {
    all: unset;
    cursor: pointer;
    font-weight: bold;
}

.ReactModal__Overlay {
    background-color: transparent !important;
    z-index: 2;
}


.filtersModalContent {
    margin-top: 32px;
    padding-bottom: 32px;
    max-height: 500px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.filters-levels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filters-level {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--dividers);
}

.filters-level > label {
    font-size: 16px;
    font-weight: bold;
}

.filters-level-nodes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filters-level-node {
    border: 1px solid var(--dividers);
    padding: 5px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.filters-level-node sub {
    font-weight: bold;
    font-size: 10px;
    cursor: pointer;
}

.filters-level-node label {
    cursor: pointer;
    text-transform: capitalize;
}

.filters-level-node.selected {
    background-color: var(--turquoise);
    color: #fff;
}

.filters-level-node.selected sub{
    color: #fff;
}

.breadcrumbs__regions__v2 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.breadcrumbs__regions__v2-item {
    border: 1px solid #D7D8F3;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    background: #FFFFFF;
    padding: 0px 13px 0px 13px;
    cursor: pointer;
    text-transform: uppercase;
    cursor: pointer;
    text-align: left;
    position: relative;
}

.breadcrumbs__regions__v2-item--selected {
    color: #FFFFFF;
    background: var(--turquoise);
}

.breadcrumbs__regions__v2-item--selected.hasCountries:not(.allSelected) {
    color: #FFFFFF;
    background: var(--juniper);
}

.breadcrumbs__regions__v2-item--selected.hasCountries:not(.allSelected) img {
    filter: invert(1);
}

.breadcrumbs__regions__v2-item--selected.hasCountries:not(.allSelected) .breadcrumbs__regions__v2-item-inner {
    color: #fff;
}

.breadcrumbs__regions__v2-item-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumbs__regions__v2-item-inner img {
    width: 10px;
    height: 10px;
}

.breadcrumbs__regions__v2-item-multiple-selection {
    overflow-x: hidden;
    overflow-y: scroll;
    max-height: 65vh;
    position: absolute;
    background-color: #fff;
    border: 1px solid #D7D8F3;
    margin-top: 5px;
    right: 0;
    width: 200px;
}

.breadcrumbs__regions__v2-item-multiple-selection ul li{
    align-items: center;
    border-bottom: 1px solid #D7D8F3;
    display: flex;
    padding: 0px 10px;
}

.breadcrumbs__regions__v2-item-multiple-selection-checkbox {
    width: 16px;
    height: 16px;
    margin: 0.1rem 0.5rem 0 0;
    border-radius: 2px;
    border: solid 1px var(--juniper-light);
    background-color: #ffffff;
}

.breadcrumbs__regions__v2-item-multiple-selection-checkbox.selected {
    background: 4px 5px #0abab5;
}

.breadcrumbs__regions.listing-show {
    position: absolute;
    left: 440px;
}

.breadcrumbs__items.listing-show {
    position: absolute;
    left: 480px;
}
.filters{
    float: left;
    width: 50%;
    height: 100%;
    position: relative;
}

.filters>ul {
    bottom: 60px;
    top: 0px;
    border-right: 1px solid var(--dividers);
}

.filters .accordion>.title {
    position: relative;
    border-bottom: 1px solid rgba(29, 29, 27, .3);
    cursor: pointer;
    transition: 0.4s all var(--ease);
}

.filters .accordion>ul {
    height: 0;
    overflow: hidden;
}
/* 
.filters .accordion>.title:after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    right: 20px;
    top: calc(50% - 6px);
    transition: 0.1s all var(--ease);
    opacity: 1;
    background: url(/icon-plus.svg) no-repeat;
} */
.plusIcon {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    right: 20px;
    top: calc(50% - 6px);
    transition: 0.1s all var(--ease);
    opacity: 1;
    background: url(/icon-plus.svg) no-repeat;
}

.filters .accordion.active > ul {
    height: auto;
    background-color: var(--menu-background);

}

.filters .accordion.active > .title {
    color: #000000;
    background-color: var(--menu-background);
}

/* .filters .accordion.active > .title:after {
    /* transform: rotate(90deg); */
/*background: url(/icon-minus.svg) no-repeat;
    opacity: 1;
} */

.minusIcon {
    /* transform: rotate(90deg); */
    background: url(/icon-minus.svg) no-repeat;
    opacity: 1;
}

.chevronIcon {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    right: 20px;
    top: calc(50% - 6px);
    transition: 0.1s all var(--ease);
    opacity: 1;
    background: url(/icon-right-arrow.svg) no-repeat;
}



.filters .filter {
    color: #FFFFFF
}

.filters .filter>.title {
    padding: 20px 47px 20px 15px
}

.filters .filter>ul {
    background: #FFFFFF
}

/*UP to here in Sass Refactor to CSS */

.filters .child-checked>.title,
.filters .child-checked.active>.title {
    color: var(--turquoise);
}

.filters .sub-filter>.title {
    padding: 8px 15px;
}

.filters .sub-filter.active>.title {
    background: #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
}

.filters .sub-filter.active>ul {
    border-bottom: 1px solid rgba(29, 29, 27, .3);
}

.filters .checkbox-item {
    padding: 8px 15px 8px 50px;
    position: relative;
    background: var(--menu-background);
}

.filters .checkbox-item:first-child {
    padding: 18px 15px 8px 50px;
}

.filters .checkbox-item:first-child .checkbox-skin {
    top: calc(50% - 3.5px);
}

.filters .checkbox-item:last-child {
    padding: 8px 15px 18px 50px;

}

.filters .checkbox-item:last-child .checkbox-skin {
    top: calc(50% - 13.5px);
}

.filters .label {
    cursor: pointer;
    display: block;
}

.filters .child-checked>.checkbox-skin .checkbox {
    background: 4px 5px var(--turquoise);
}

.filters .child-checked>.label {
    color: var(--turquoise);
}

.filters .checkbox-skin {
    position: absolute;
    left: 15px;
    top: calc(50% - 7.5px);
    width: 16px;
    height: 16px;
}

.filters .checkbox-skin input {
    margin: 0;
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}

.filters .checkbox-skin .checkbox {
    border-radius: 2px;
    border: solid 1px var(--juniper-light);
    background-color: #ffffff;
}

.filters .select-skin {
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    margin: 10px 0 4px;
    color: #3F5C70;
}

.filters .select-skin select {
    width: 100%;
    height: 100%;
    float: none;
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-appearance: menulist-button;
}

.filters .select-skin .select-skin-mask:before,
.filters .select-skin .select-skin-mask:after {
    content: "";
    position: absolute;
}

.filters .select-skin .select-skin-mask:after {
    right: 0;
    top: 0;
    width: 35px;
    height: 100%;
    background: #99B4C5;
}

.filters .select-skin .select-skin-mask:before {
    width: 0;
    height: 0;
    right: 12px;
    top: 15px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #FFFFFF;
    z-index: 2;
}

.filters .select-skin .select-skin-text {
    white-space: nowrap;
    font-size: 12px;
    padding: 8px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filters .select-skin .select-skin-text-clip {
    margin-right: 35px;
    overflow: hidden;
    background: #E0EEF3;
}

.filters .slider-container {
    margin: 10px 0 4px;
    position: relative;
    padding: 5px 78px 5px 0;
}

.filters .slider-container .value {
    width: 68px;
    font-size: 13px;
    position: absolute;
    right: 0;
    top: 0px;
    padding: 2px 10px;
    background: #E0EEF3;
    font-weight: 400;
    text-align: center;
    border-radius: 5px;
}

.filters-footer {
    background: #FFFFFF;
    background: -moz-linear-gradient(top, #FFFFFF 0%, #FFFFFF 100%);
    background: -webkit-linear-gradient(top, #FFFFFF 0%, #FFFFFF 100%);
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=0);
    border-top: 1px solid var(--dividers);
    border-bottom: 1px solid var(--dividers);
    border-right: 1px solid var(--dividers);
    height: 60px;
    bottom: 0;
    text-align: center;
    color: #000000;
}

.filters-footer__option {
    float: left;
    padding: 10px;
    transition: opacity .3s;
    cursor: pointer;
}

.filters-footer__option:not(:first-child) {
    margin-left: 35px;
}

.filters-footer__option--disabled {
    opacity: .3;
    cursor: default;
}

.filters-footer__icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    line-height: 21px;
    font-size: 0;
    border-radius: 10px
}

.filters-footer__icon--save {
    color: #85AA3F;
    background-image: url(/green-tick.svg);
    background-position: 4px 6px;
}

.filters-footer__icon--clear {
    color: #FE6666;
    background-image: url(/red-x.svg);
    background-position: 5px 5px;
}


/*new styles from Matt Falla*/

.filters-footer__options .clear-button {
    width: 130px;
    height: 30px;
    display: inline-block;
    border-radius: 6px;
    color: #FFFFFF;
    background-color: #444D5C;
    padding: 5px;
    margin-left:2px;
    cursor: pointer;
  }

.save-button {
    width: 130px;
    height: 30px;
    display: inline-block;
    border-radius: 6px;
    color: #FFFFFF;
    background-color: var(--turquoise);
    padding: 5px;
    margin-left:2px;
    margin-right: 5px;
    cursor: pointer;
}

.save-button.disabled {
    cursor: default;
    background-color: var(--juniper-mid);
}


.searchFolderModal {
    background-color: #FFFFFF;
    width: 500px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 150px;
    border-radius: 20px;
    box-shadow: 1px 2px 3px 1px rgba(0,0,0,0.3);
    padding: 20px;
}

.searchFolderModalHeader {
    display: flex;
    justify-content: space-between;
}

.searchFolderModalButton {
    all: unset;
    cursor: pointer;
    font-weight: bold;
}

.searchFolderModalContent {
    padding: 16px 0px;
}

.searchFolderModalContent-folders {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 20px;

    overflow-y: scroll;
    max-height: 185px;
    min-height: 185px;
    margin-top: 16px;
}

.searchFolderModalContent-folder-title {
    font-weight: bold;
    font-size: 12px;
}

.searchFolderModalContent-folder-items {
    padding-top: 8px;
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.searchFolderModalContent-folder-item label {
    font-size: 16px;
}

.searchFolderModalContent button {
    cursor: pointer;
    background-color: var(--juniper);
    border: none;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    border-radius: 6px;
    align-items: center;
    height: fit-content;
    padding: 10px;
    color: #fff;
    text-align: center;
    margin-top: 15px;
}

.searchFolderModalContent-actions {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.searchFolderModalContent-actions p{
    font-weight: bold;
    color: red;
}
.title{
    display:flex;
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    color: var(--juniper);
}

.filter-accordian-checkbox{
    width:16px;
    height:16px;
    margin:0.1rem 0.5rem 0 0;
    border-radius: 2px;
    border: solid 1px var(--juniper-light);
    background-color: #ffffff
}


.filter-accordian-checkbox.child-checked {
    background: 4px 5px #0abab5;

}




.report-download,
.report-icon {
  cursor: pointer;
}

.overview {
  margin-bottom: 75px;
}

.investor-summary {
  white-space: pre-line;
  margin-top: 40px;
  /* margin-left: 20px; */
  margin-right: 20px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--dividers);
}

.overview .overview-header {
  display: flex;
  justify-content: space-between;
}

.overview h1 ~ div {
  margin-bottom: 3px;
}

.keyContentInformation a {
  color: var(--juniper-turquoise);
}

.listing .address,
.listing .phone {
  color: #393552;
}

/*
.listing .web a {
    word-wrap: break-word;
    text-decoration: none;
    color: #A57ACE;
}

.listing .web a:visited {
    color: #A57ACE;
} */

@media (max-width: 1270px) {
  .overview {
    right: 50%;
  }
}

.investor__main__break {
  color: #d0b9e5;
  background-color: #d0b9e5;
  height: 1px;
  margin-top: 1rem;
}

.investor-summary h3 {
  margin-bottom: 15px;
}

.preferences-button {
  width: 130px;
  height: 30px;
  display: inline-block;
  border-radius: 0px;
  color: var(--turquoise);
  background-color: white;
  padding: 0px;
  /* margin-left:2px; */
  cursor: pointer;
}

/*css rom listings contacts*/
.contacts li {
  margin-top: 20px;
  padding-bottom: 20px;
  /* margin-left:20px; */
  margin-right: 20px;
  border-bottom: 1px solid var(--dividers);
}

.additional-content {
  display: flex;
  align-items: flex-end;
}

.linkedin {
  display: inline-block;
  padding: 6px 12px;
  background: var(--turquoise);
  color: #000000;
  margin-top: 23px;
  border-radius: 5px;
  font-size: 13px;
}

.vcard {
  /* display: inline-block; */
  padding: 6px 12px;
  background: var(--turquoise);
  color: #000000;
  margin-top: 23px;
  margin-left: 10px;
  border-radius: 5px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  flex-grow: 0;
  justify-content: space-between;
  cursor: pointer;
}

.vcard-icon {
  margin-right: 6px;
  cursor: pointer;
}

.vcard-text {
  cursor: pointer;
}

.contacts_invite-button {
  margin-left: 10px;
  min-height: 30px;
  margin-top: 23px;
  border-radius: 5px;
  background-color: var(--turquoise);
  font-size: 12px;
  color: #000000;
  text-align: center;
}

.investorOverviewTab {
  display: flex;
  min-height: 1200px;
  padding-top: 40px;
}

.investmentPortfolioTab {
  padding-top: 40px;
}
.contactsTab {
  padding-top: 40px;
}
.notesTab {
  padding-top: 40px;
}

.investorOverviewMainContent {
  flex-shrink: 0; /* shrinks to 0 to apply 70% width*/
  flex-basis: 70%; /* sets initial width to 70% */
  margin-top: 20px;
}

.investorOverviewSidePanel {
  flex-basis: 30%;
}

.contact-row {
  display: flex;
  min-height: 20px;
}

.contact-col1 {
  flex: 0 0 60px;
}

.keyContentInformation .div {
  margin: 10px 0px 10px 62px;
  width: 20px;
  height: 1px;
  background-color: var(--dividers);
}

.iconPhone {
  background-image: url("/icon-phone.svg");
  background-repeat: no-repeat;
}

.iconLocation {
  background-image: url("/icon-map.svg");
  background-repeat: no-repeat;
}

.iconWeb {
  background-image: url("/icon-website.svg");
  background-repeat: no-repeat;
}

.keyContentInformation {
  /* min-height: 400px; */
  width: 100%;
  background-color: var(--menu-background);
  padding: 30px;
  color: var(--juniper-dark);
}

.keyContentInformation-address,
.keyContentInformation-phone {
  font-size: 13px;
  font-weight: normal;
  font-family: Helvetica;
}

.keyContentInformation .web {
  font-size: 13px;
  font-weight: normal;
  font-family: Helvetica;
  color: var(--turquoise);
}

.column2Container {
  flex-direction: column;
}

.mapContent {
  height: 414px;
}

.overviewKeyInfoItem {
  width: 400px;
  height: 50px;
  border-bottom: 1px solid var(--dividers);
  font-size: 13px;
  /* margin-left: 20px; */
}

.left {
  color: var(--juniper);
  float: left;
}

.right {
  color: var(--juniper);
  float: right;
}
.clearFloat {
  clear: both;
}

.headerOptions {
  width: 600px;
  height: 0px;
}

.profilepage-header {
  height: 51px;
  /* padding: 15px; */
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=0);
  /* border-top: 1px solid #A7A0B1;s */
  border-bottom: 1px solid var(--dividers);
  /* border-right: 1px solid var(--dividers); */
  margin-top: 25px;
}

.profilepage-header__item {
  cursor: pointer !important;
  float: left;
  height: 50.5px;
  margin-right: 45px;
  /* padding: 4px; */
  padding-top: 10px;
  /* background: #FFFFFF; */
  font-family: Helvetica;
  font-size: 14px;
  font-weight: 500;
}
.profilepage-header__item--active {
  background: #ffffff;
  border-bottom: 4px solid var(--turquoise);
  cursor: default;
}

.investorOverviewFavorite {
  content: "";
  width: 26px;
  height: 26px;
  background: url("/favourites3.svg") no-repeat;
  position: relative;
  padding-right: 20px;
  margin-left: 10px;
  flex-wrap: wrap;
  top: 2px;
}

.lastUpdateDate {
  color: var(--turquoise);
  font-size: 11px;
  font-family: Helvetica;
}

.investorOverviewFavorite {
  cursor: pointer !important;
  background: url("/favourites3.svg") no-repeat;
}

.feedbackButtonsContainer h1 {
  margin-right: 10px;
}

a {
  cursor: default;
}
a:focus {
  cursor: default;
}
a:visited {
  cursor: default;
  color: var(--juniper);
}
a:hover {
  color: var(--juniper);
  text-decoration: none;
  cursor: default;
}

.feedbackButtons {
  width: 120px;
  height: 30px;
  line-height: 30px;
  border: solid 1px var(--juniper-mid);
  background-color: #ffffff;
  text-align: center;
  color: var(--juniper);
  font-size: 13px;
  font-family: Helvetica;
  font-weight: 500;
  display: inline-block;
  cursor: pointer;
}

.leftRounded {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.rightRounded {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.feedbackButtonsContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.headerInfoContainer {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.contactus-button {
  width: 130px;
  height: 30px;
  display: inline-block;
  border-radius: 6px;
  color: #ffffff;
  background-color: var(--turquoise);
  padding: 5px;
  margin-left: 2px;
  cursor: pointer;
  text-align: center;
  margin-top: 20px;
}

.preferenceTable {
  border-collapse: collapse;
}

.preferenceColumn {
  width: 271px;
  text-align: left;
  font-size: 13px;
  padding-bottom: 8px;
  padding-top: 8px;
  font-weight: normal;
  color: var(--juniper-dark);
  font-family: Helvetica;
  border-bottom: 1px solid var(--dividers);
}

.firmName {
  font-family: Helvetica;
  font-size: 24px;
  font-weight: 500;
  color: var(--juniper);
}

.preferenceColumnRight {
  width: 271px;
  text-align: left;
  font-size: 13px;
  font-weight: bold;
  padding-bottom: 8px;
  padding-top: 8px;
  color: var(--juniper);
  font-family: Helvetica;
  border-bottom: 1px solid var(--dividers);
}

.preferenceColumnRight.overview {
  padding-right: 10px;
  text-align: right;
}
.preferenceRow {
  margin-bottom: 10px;
}

.textSection {
  font-family: Georgia;
  color: var(--juniper);
  font-size: 17px;
}

.sectionHeader {
  font-family: Helvetica;
  font-size: 19px;
  font-weight: bold;
  color: var(--juniper);
  margin-bottom: 15px;
}

.campaignButton,
.downloadButton {
  width: unset !important;
  padding-left: 12px;
  padding-right: 12px;
}

.download-icon {
  height: 100%;
}

.disabled a {
  color: gray;
}

.feedbackButtons.disabled a {
  cursor: default;
}

.feedbackButtonsDropdown {
  margin-left: 20px;
  position: relative;
}

.feedbackButtonsDropdownBtn {
  border: solid 1px var(--juniper-mid);
  border-radius: 10px;
  width: 240px;
  height: 30px;
  line-height: 30px;
  background-color: #ffffff;
  text-align: left;
  font-size: 13px;
  font-family: Helvetica;
  font-weight: 500;
  padding-left: 15px;
  cursor: pointer !important;
}

.feedbackButtonsDropdownContent {
  position: absolute;
  border: solid 1px var(--juniper-mid);
  border-radius: 10px;
  width: 240px;
  z-index: 1;
  background-color: #ffffff;
}

.feedbackButtonsDropdownContent.hidden {
  visibility: hidden;
}

.feedbackContainer {
  display: flex;
}

.feedbackButtonsDropdownBtn:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 30px;
  height: 20px;
  background: url(/arrow-down.svg) 9px 13px no-repeat;
}

.feedbackButtonsDropdownOptionButton {
  width: 239px;
  height: 30px;
  line-height: 30px;
  color: var(--juniper);
  font-size: 13px;
  font-family: Helvetica;
  font-weight: 500;
  padding-left: 15px;
  position: relative;
}

.feedbackButtonsDropdownOptionButton.disabled:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 20px;
  height: 30px;
  background: url(/icon-locked.svg) 0px 8px no-repeat;
  background-size: 50%;
  margin-right: 5px;
}

.feedbackButtonsDropdownOptionButton.disabled > a {
  cursor: default;
}

.feedbackButtonsDropdownContent > div {
  border-bottom: solid 1px var(--juniper-mid);
}

.feedbackButtonsDropdownContent > div:last-child {
  border-bottom: none;
}

.feedbackButtonsDropdownBackground {
  position: fixed;
  width: 200vw;
  height: 200vh;
  top: -100vh;
  left: -100vw;
  z-index: 1;
}

.listingFavoritesModal {
  background-color: #ffffff;
  width: 768px;
  height: 580px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 10%;
  border-radius: 20px;
  box-shadow: 1px 2px 3px 1px rgba(0, 0, 0, 0.3);
  padding: 20px;
}

.listingFavoritesModalHeader {
  display: flex;
  justify-content: space-between;
}

.listingFavoritesModalButton {
  all: unset;
  cursor: pointer;
  font-weight: bold;
}

.listingFavoritesModalContent {
  padding: 16px 0px;
}

.listingFavoritesModalContent-folders {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 20px;

  overflow-y: scroll;
  max-height: 455px;
  min-height: 455px;
}

.listingFavoritesModalContent-folder-title {
  font-weight: bold;
  font-size: 12px;
}

.listingFavoritesModalContent-folder-items {
  padding-top: 8px;
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.listingFavoritesModalContent-folder-item {
  display: flex;
}

.listingFavoritesModalContent-folder-item label {
  font-size: 16px;
  cursor: pointer;
}

.listingFavoritesModalContent-folder-item .custom-checkbox {
  cursor: pointer;
  width: 16px;
  height: 16px;
  margin: 0.1rem 0.5rem 0 0;
  border-radius: 2px;
  border: solid 1px var(--juniper-light);
  background-color: #ffffff;
}

.listingFavoritesModalContent-folder-item .custom-checkbox.checked {
  background: 4px 5px #0abab5;
}

.listingFavoritesModalContent button {
  cursor: pointer;
  background-color: var(--juniper);
  border: none;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  border-radius: 6px;
  align-items: center;
  height: fit-content;
  padding: 10px;
  color: #fff;
  text-align: center;
  margin-top: 15px;
}

.listingFavoritesModalContent-folder-item-contacts {
  padding-left: 16px;
  padding-bottom: 10px;
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  row-gap: 22px;
}

.listingFavoritesModalContent-folder-item-contacts label {
  border: 1px solid var(--dividers);
  padding: 5px 10px;
  border-radius: 6px;
  text-transform: capitalize;
  font-size: 14px;
  cursor: pointer;
}

.listingFavoritesModalContent-folder-item-contact.checked label {
  background-color: var(--turquoise);
  color: #fff;
}

@media screen and (max-height: 800px) {
  .listingFavoritesModal {
    height: 500px;
  }

  .listingFavoritesModalContent-folders {
    max-height: 350px;
    min-height: 350px;
  }
}

@media screen and (max-height: 600px) {
  .listingFavoritesModal {
    top: 3%;
  }
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 320px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: 0px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext.wAuto {
  width: auto;
  font-weight: normal;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.contacts li {
  margin-bottom: 40px;
  padding-bottom: 40px;
  display: flex;
}

.contactListCol1 {
  flex: 0 0 200px;
  margin-right: 20px
}

.additional-content {
  padding-top: 20px;
  display: flex;
  align-items: end;
}

.contactName {
  font-size: 17px;
  font-weight: bold;
  font-family: Helvetica;
  color: var(--juniper);
}

.phone {
  margin-top: 20px;
  font-size: 13px;
  font-weight: normal;
  font-family: Helvetica;
  color: var(--juniper-dark);
}

.web {
  font-size: 13px;
  font-weight: normal;
  font-family: Helvetica;
  color: var(--turquoise);
}

.contactPosition {
  margin-top: 5px;
  font-size: 13px;
  font-weight: normal;
  font-family: Helvetica;
  color: var(--juniper-dark);
}

.textSection {
  font-family: Georgia;
  color: var(--juniper);
  font-size: 17px;
}

.in-depth .linkedin {
  display: inline-block;
  padding: 6px 12px;
  background: var(--turquoise);
  color: #000000;
  margin-top: 23px;
  border-radius: 5px;
  font-size: 13px;
}


.contactFeedbackButtons {
  width: 130px;
  height: 24px;
  border-radius: 4px;
  border: solid 1px var(--juniper-mid);
  margin-right: 20px;
  text-align: center;
  padding: 2px;
}

.contactFeedbackIcon {
  height: 24px;
}

.contactFeedbackIcon > img {
  cursor: pointer;
}

.in-depth .vcard {
  /* display: inline-block; */
  padding: 6px 12px;
  background: var(--turquoise);
  color: #000000;
  margin-top: 23px;
  margin-left: 10px;
  border-radius: 5px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  flex-grow: 0;
  justify-content: space-between;
  cursor: pointer;
}

.in-depth .vcard-icon {
  margin-right: 6px;
  cursor: pointer;
}

.in-depth .vcard-text {
  cursor: pointer;
}

.contacts_invite-button {
  margin-left: 10px;
  min-height: 30px;
  margin-top: 23px;
  border-radius: 5px;
  background-color: var(--turquoise);
  font-size: 12px;
  color: #000000;
  ;
  text-align: center;
}

.section {
  top: 90px;
  padding: 0 25px 25px;
}

.section h1 {
  font-size: 14px;
  font-weight: 600;
}

.contacts h3 {
  margin-bottom: 15px;
}

.section~div,
.section~a {
  margin-bottom: 3px;
}

.section li.section {
  border-bottom: 1px solid #000000;
  color: #4D2B5D;
}

.section li.section:last-child {
  border-bottom: none;
}

.section span,
.section .value {
  color: #000000;
}

.section .value {
  padding-left: 10px;
  position: relative;
  margin-top: 3px;
}

.section .value:before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  top: 0.5rem;
  left: 0px;
  background: #000000;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}

.favorite-folder-tags {
  display: flex;
  gap: 8px;
  align-items: center;
}

.favorite-folder-tag {
  background-color: var(--dividers);
  padding: 6px;
  font-size: 10px;
  border-radius: 6px;
  line-height: 8px;
}

.favorite-folder-tag.active {
  background-color: var(--turquoise);
}
.investor-notes {
    /* padding: 1.5rem 1rem 0 0; */
    flex-flow: column nowrap;
    overflow-y: auto;    
    min-height:300px;
    margin-top:20px;
    /* margin-right: 20px; */
    /* margin-left: 20px; */
    
}


.investor-note__content {
  font-size: 13px;
  font-weight: normal;
  font-family: Helvetica;
  color: var(--juniper-dark);
  margin-left: 10px;
  margin-right: 10px;
}

.note-content-wrap {
  overflow-wrap: break-word;
  word-wrap: break-word;

  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;

  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-x: hidden;
}

.investor-note {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--dividers);
    padding-bottom: 20px;
}

.investor-note *{
    -webkit-touch-callout: text;
    /* iOS Safari */
    -webkit-user-select: text;
    /* Safari */
    -khtml-user-select: text;
    /* Konqueror HTML */
    -moz-user-select: text;
    /* Firefox */
    -ms-user-select: text;
    /* Internet Explorer/Edge */
    user-select: text;
    /* Non-prefixed version, currently*/
}

.investor-note--left {
  flex: 0 0 200px; 
  display: flex; 
  flex-Direction: column;
}

.investor-note--right {
  flex: 0 0 100px;
}

.investor-note__user {
    font-size: 15px;
    font-weight: 500;
    font-family: Helvetica;
    color: var(--juniper);
}

.investor-note__added-comment {
    margin-left: 0.5rem;
}

.investor-note__time {
  font-size: 15px;
  font-weight: 500;
  font-family: Helvetica;
  color: var(--turquoise);
}

.investor-note__delete-button {
    background: none;
    color: #000;
    border: none;
    padding: 0;
    font: inherit;
    outline: inherit;
}

.investor-note__delete-button:hover {
    cursor: pointer;
}
.new-investor-note__comment-button {
    width: 7rem;
}

.feedback-button {
  border: 0;
  color: #fff;
  background: #5c5a6d;
  border-radius: 5px;
  font-size: 13px;
  padding: 3px 19px;
  float: left;
  margin-left: 6px;
  cursor: pointer;
  width: 60px;
  height: 24px;
}

.feedback-save-btn {
  background: var(--turquoise);
}

.feedback-close-btn {
  background: var(--juniper-mid);
}

.new-investor-note {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0 0.1rem;
}

.new-investor-note h4 {
  margin-bottom: 15px;
  font-family: Helvetica;
  font-size: 19px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.21;
  letter-spacing: normal;
  text-align: left;
  color: var(--juniper);
}

.new-investor-note-form textarea {
    -webkit-touch-callout: text !important;
    -webkit-user-select: text !important;
    -khtml-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
    cursor: text !important;
}

.new-investor-note-form__buttons{
    margin-top:1rem;
    display:flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
}

.textarea__input{
    width:100%;
    height:10rem!important;
    padding:0.5rem;
    resize:none;
}
.details li {
    margin-bottom: 12px;
    padding-bottom: 12px;
}

.strategies div {
  margin-top: 0.5rem;
}

.strategies ul {
  margin-bottom: 0.75rem;
}

.strategies ul li {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

li.strategies {
  padding-bottom: 0 !important;
}


.in-depth {
  background: #FFFFFF;
  width: 480px;
  right: 0;
}

.in-depth .buttons {
  padding: 0 25px;
  height: 90px;
}

.in-depth .buttons ul {
  width: 100%;
}

.in-depth .button {
  float: left;
  width: 50%;
  /* background: transparent; */
  background: #FFFFFF;
  color: #000000;
  cursor: pointer;
}

.in-depth .button.active {
  background: var(--turquoise);
  color: #FFF;
}

.in-depth .button:first-child {
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  -o-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}

.in-depth .button:last-child {
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  -o-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}



.section {
  top: 90px;
  padding: 0 25px 25px;
}

.section h1 {
  font-size: 14px;
  font-weight: 600;
}

.section ~ div,
.section ~ a {
  margin-bottom: 3px;
}

.li.section {
  border-bottom: 1px solid #000000;
  color: #4D2B5D;
}

.section li.section:last-child {
  border-bottom: none;
}

.section span,
.section .value {
  color: #000000;
}

.section .value {
  padding-left: 10px;
  position: relative;
  margin-top: 3px;
}

.section .value:before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  top: 0.5rem;
  left: 0px;
  background: #000000;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}

@media (max-width: 1270px) {
  .listing__in-depth {
      width: auto;
      left: 50%;
  }
}


.preferenceTable {
  border-collapse: collapse;
}

.preferenceColumn {
  width: 271px;
  text-align: left;
  font-size: 13px;
  padding-bottom: 8px;
  padding-top:8px;
  font-weight: normal;
  color:var(--juniper-dark);
  font-family:Helvetica;
  border-bottom: 1px solid var(--dividers);
}


.preferenceColumnRight {
  width: 271px;
  text-align: left;
  font-size: 13px;
  font-weight: bold;
  padding-bottom: 8px;
  padding-top:8px;
  color:var(--juniper);
  font-family:Helvetica;
  border-bottom: 1px solid var(--dividers);
}


.map {
    height: 416px;
    top: 0;
    left:70%;
    background-color: #E5E3DF;
}

.map .overlay {
    position: relative;
    z-index: 2;
}

.map .investor-nearby {
    width: 16px;
    height: 16px;
    border: 1px solid #FFF;
    background: #655976;
    position: absolute;

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;

    -webkit-box-shadow: 0px 2px 3px -1px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 2px 3px -1px rgba(0,0,0,0.6);
    box-shadow: 0px 2px 3px -1px rgba(0,0,0,0.6);

    cursor: pointer;

    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    -khtml-transition: 0.4s all;
    transition: 0.4s all;
}

.map .investor-nearby:hover {
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -khtml-transition: translateY(-3px);
    transform: translateY(-3px);

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 6px;
}

.map .dialog {
    position: absolute;
    left: 50%;
    top: 100px;
    padding: 10px;
    background: #FFF;
    font-family: 'Titillium Web', sans-serif;
    color: #2D1A37;
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0;
    overflow: visible;
    pointer-events: none;
    width: auto;
    z-index: 3;

    -webkit-transition: 0.4s opacity;
    -moz-transition: 0.4s opacity;
    -ms-transition: 0.4s opacity;
    -khtml-transition: 0.4s opacity;
    transition: 0.4s opacity;

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.map .dialog:before {
    content: "";
    width: 0;
    height: 0;
    top: 100%;
    left: 50%;
    position: absolute;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #FFF;
    margin-left: -10px;

}

.map .dialog.active {
    opacity: 1;
}

.investor-feedback__comment-button {
    position: absolute;
    right: 1rem;
    bottom: 0.5rem;
    font-size: 10px;
}

.investor-feedback {
    width: 100%;
    margin-bottom: 1rem;
}

.bp3-dialog.investor-feedback_dialog.jp-dialog {
    margin-top: auto;
    margin-left: auto;
    margin-right: 1rem;
    margin-bottom:3rem;
}

.investor-feedback_dialog-content {
    display: flex;
    padding: 1rem;
    flex-flow: column nowrap;
    background-color: #ffffff;
}

.investor-feedback-form__buttons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
}

.investor-feedback__name-field {
    margin-bottom: 1rem;
}

.investor-feedback__email-field {
    margin-bottom: 1rem;
}

.investor-feedback__content-field{
    margin-bottom:1rem;
}
.requestAccountUpgradeAccessButton {
    width: 229px;
    height: 30px;
    line-height: 30px;
    background-color: var(--turquoise);
    font-size:13px;
    font-family: Helvetica;
    font-weight: bold;
    margin: 5px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer !important;
    color: #FFFFFF;
}

.request-account-upgrade_dialog-content {
    display: flex;
    padding: 1rem;
    flex-flow: column nowrap;
    background-color: #ffffff;
}

.request-account-upgrade-form__buttons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
}

.request-account-upgrade-question {
    font-family: Helvetica;
    font-size: 15px;
    font-weight: bold;
    color: var(--juniper);
    margin: 15px;
}
.listing {
    display: block;
    opacity: 1;
    background: #FFFFFF;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    text-align: left;
    border-left: 1px solid #D8D3DB;
    font-size: 14px;
}

.listing * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

/* TODO: hide the listing although may not be necessary (_listing.sass) */

.listing a {
    cursor: pointer;
    
}

.listing .toggle-nearby {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 100000;
    background: rgba(0, 0, 0, .7);
    border: 0;
    border-radius: 5px;
    color: #fff;
    width: 76px;
    height: 30px;
    font-size: 13px;
    cursor: pointer;
}

.listing .toggle-nearby.disabled {
    display: none;
}

.listing .info {
    top: 230px;
}

.listing .overview h1~div {
    margin-bottom: 3px;
}

.listing .in-depth {
    background: #FFFFFF;
    width: 30%;
    right: 0;
}

.listing h1 {
    font-size: 20px;
    font-weight: 400;
    color: #2D1A37;
    margin-bottom: 12px;
}


.listing .address,
.listing .phone {
    color: #393552;
}

.listing p {
    margin-top: 25px;
    color: #393552;
}

/* .listing .web {
    color: #A57ACE;
}

.listing .web a {
    word-wrap: break-word;
    text-decoration: none;
    color: #A57ACE;
}

.listing .web a:visited {
    color: #A57ACE;
} */


.listing h1 {
    font-size: 20px;
    font-weight: 400;
    color: #2D1A37;
    margin-bottom: 3px;
}

.listing p {
    margin-top: 25px;
    

    font-family:Georgia;
    color:var(--juniper);
    font-size: 17px;
}

.listing__info {
    top: 0px;
    margin-top:20px;
}

.listing__tab {
    position:relative;
    height:auto;
}


.investor__main{
    /* padding:15px; */
    margin-left:40px;
    margin-right:40px;
    display:flex;
    flex-flow:column nowrap;
}

.listings {
    display: flex;
}

.listings .filter {
    top: 0;
    height: 60px;
    background: #6A4F7A;
    border-bottom: 1px solid #5B3E6D;
}

.listings .search {
    top: 0px;
    height: 40px;
    border-bottom: 1px solid var(--dividers);
    border-right: 1px solid var(--dividers);
    padding-left: 35px;
}

.listings .search:before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 12px;
    left: 8px;
    background: url('/search-icon.svg') no-repeat center;
}

.listings .search input {
    color: #6C6270;
    font-size: 14px;
    letter-spacing: 0.5px;
    width: 100%;
    height: 100%;
    border: none;
    color: #B8ACBF;
    background: transparent;
}

.listings .search ::-webkit-input-placeholder {
    color: #B8ACBF;
}

.listings .search ::-moz-placeholder {
    color: #B8ACBF;
}

.listings .search :-ms-input-placeholder {
    color: #B8ACBF;
}

.listings .search :-moz-placeholder {
    color: #B8ACBF;
}

.listings ul {
    bottom: 0;
}

.listings li {
    position: relative;
    padding: 0px 15px 0px 15px;
    border-bottom: 1px solid var(--dividers);
    cursor: pointer;
}

.listings li.active {
    background: #FFFFFF;
}

.listings li.favorite span:after {
    /* background-position: 0 0; */
    background-image: url('/favourites3.svg');
}

.listings li > div {
    text-wrap: balance;
    width: 90%;
}

.listings li span {
    width: 30px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.listings li span::after {
    content: "";
    position: absolute;
    top: 27px;
    width: 20px;
    height: 20px;
    background-image: url('/favourites3.svg');
    background-repeat: no-repeat;
    /* background-position: 0 -140px; */
    background-size: cover;
}

.listings li favoriteIconSelected {
    content: "";
    position: absolute;
    top: calc(50% - 8px);
    left: calc(50% - 6px);
    width: 13px;
    height: 13px;
    background-image: url('/icon-selected.svg');
    background-repeat: no-repeat;
    background-position: 0 -140px;
}

.listings li favoriteIconDeselected{
    content: "";
    position: absolute;
    top: calc(50% - 8px);
    left: calc(50% - 6px);
    width: 13px;
    height: 13px;
    background-image: url('/icon-deselected.svg');
    background-repeat: no-repeat;
    background-position: 0 -140px;
}

.excludeListExcludeIcon {
    position: absolute;
    top: calc(50% - 8px);
    right: 5px;
    width: 16.6px;
    height: 16.6px;
    background-image: url('/icon-included.svg');
    background-repeat: no-repeat;
}

.excludeListIncludeIcon {
    position: absolute;
    top: calc(50% - 8px);
    right: 5px;
    width: 16px;
    height: 16.6px;
    background-image: url('/icon-excluded.svg');
    background-repeat: no-repeat;
   
}

.listings h1,
.listings h2 {
    font-size: 14px;
    font-weight: 400;
}

.listings h1 {
    
    margin-bottom: 2px;

    font-family: Helvetica;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: normal;
  
  color: var(--juniper-dark);
}

.listings h2 {
    color: var(--turquoise);

    font-family: Helvetica;
    font-size: 11px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: normal;
    text-align: left;
    
}

.listings li,
.listings li:before {
    transition: background 0.3s;
}

.listings h1,
.listings h2 {
    transition: color 0.3s;
}

.list-item{
    display:flex;
    flex-flow: column;
    justify-content: center;
}
aside,
main {
  position: absolute;
  overflow: hidden;
  top: 60px !important;
}

main .toggle li {
  float: left;
  width: 50%;
}

main .toggle li:last-child {
  border-radius: 0 5px 5px 0;
  border-radius: 0 var(--buttonRadius) var(--buttonRadius) 0;
}

main .toggle li:first-child {
  border-radius: 0 5px 5px 0;
  border-radius: var(--buttonRadius) 0 0 var(--buttonRadius);
}

main .toggle .button {
  /* border: 1px solid #FFF; */
  /* color: #000000 */
}

/*THIS ONE IS NOT IN USE, THE ONE BELOW IS*/
main .toggle .button .active {
  color: #4d4b5c;
  background: var(--turquoise);
}

main .toggle .button {
  /* border: 1px solid #655976; */
  /* color: #000000; */
  transition: all 0.2s;
}

main .toggle .button.mandate {
  width: 200px;
  margin-left: 20px;
  display: inline-block;
  height: 29px;
}

main .toggle .button.active {
  color: #ffffff;
  background: var(--turquoise);
}

aside {
  width: 310px;
  width: var(--asideWidth);
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 18px;
  color: #ffffff;
}

aside section {
  top: 175px;
  bottom: 0;
  width: 200%;
  background: #ffffff;
}

aside > div {
  float: left;
  width: 50%;
  height: 100%;
  position: relative;
}

aside .spinner-container {
  position: absolute;
  z-index: 3;
  background: rgba(0, 0, 0, 0.4);
  display: none;
}

main {
  left: 310px;
  left: var(--asideWidth);
  right: 0;
}

main .logout,
.admin {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  padding: 7px 15px 7px 35px;
  border-radius: 10px;
  background: url(/logout.svg) no-repeat 12px 6px #ffffff;
  position: absolute;
  top: 15px;
  right: 10px;
  cursor: pointer;
  z-index: 10000;
}

main .admin {
  right: 110px;
  background: url(/admin-icon.svg) no-repeat 12px 6px #ffffff;
}

main .visualisation {
  top: 60px;
  padding-top: 20px;
  padding-bottom: 40px;
  text-align: center;
  background-color: #f9f8f9;
}

main .visualisation.hide {
  display: none;
}

main .visualisation canvas {
  max-width: 100%;
  max-height: 90%;
}

main .toggle {
  bottom: 20px;
  font-size: 14px;
  text-align: center;
}

main .toggle ul {
  display: inline-block;
  width: 500px;
}

main .toggle ul .disabled {
  opacity: 0.3;
  -webkit-filter: blur(2px);
}

/* main .toggle ul li {
    color: #C4BFC7;
    float: left;
} */

main .toggle ul li .value :before {
  content: "\2013";
  margin: 0 4px;
}

main .toggle .mandate {
  vertical-align: top;
}

.button {
  border-radius: 5px;
  border-radius: var(--buttonRadius);
  text-align: center;
  padding: 5px;
  overflow: hidden;
  cursor: pointer;
}

body:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0, 0.58, 0.26, 1.18);
  -moz-transition: opacity 0.3s cubic-bezier(0, 0.58, 0.26, 1.18);
  -o-transition: opacity 0.3s cubic-bezier(0, 0.58, 0.26, 1.18);
  transition: opacity 0.3s cubic-bezier(0, 0.58, 0.26, 1.18);
}

body .dialog-visible:after {
  z-index: 10;
  opacity: 1;
}

/* Firefox canvas size fix */

@-moz-document url-prefix() {
  main .visualisation canvas {
    max-height: 100%;
  }
}

.sidepanel-header {
  /* margin-right: 20px; */
  height: 175px;
  padding: 15px;
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=0);
  /* border-top: 1px solid #A7A0B1; */
  border-bottom: 1px solid var(--dividers);
  border-right: 1px solid var(--dividers);
}

.sidepanel-header__search {
  padding-bottom: 10px;
  div {
    position: initial;

    input {
      width: 100%;
      background-color: rgba(68, 77, 92, 0.11);
      border: 1px solid #572e5e;
      padding: 5px 5px 5px 30px;
    }
  }
}

.sidepanel-header__search div::after {
  content: " ";
  background-image: url("/search-v2.svg");
  width: 15px;
  height: 17px;
  position: absolute;
  top: 60px;
  left: 25px;
}

.sidepanel-header__search-title {
  padding-block-start: 15px;
  font-size: 13px;
  padding-block-end: 5px;
}

.sidepanel-header__items {
  overflow: hidden;
  text-align: center;
  border-radius: 0px;
  color: #ffffff;
  display: flex;
  justify-content: space-evenly;
  padding-block: 20px;
}

.sidepanel-header__item {
  cursor: pointer;
  float: left;
  height: 59px;
  margin-right: 20px;
  /* padding: 4px; */
  /* width: 25%; */
  /* padding: 4px; */
  font-size: 13px;
  text-transform: uppercase;
}

.sidepanel-header__item img {
  margin-top: 5px;
  width: 26px;
}

.sidepanel-header__item--active {
  background: #ffffff;
  border-bottom: 4px solid var(--turquoise);
  cursor: default;
}

.list-view-panel {
  left: 310px;
  z-index: 1;
  background: #ffffff;
  overflow: visible;
  transition: width 200ms ease-in-out;
  white-space: nowrap;
}

.list-view-panel-hidden {
  width: 0 !important;
}

.list-view-panel-content {
  overflow: hidden;
  width: 100%;

  .title {
    padding: 15px;
  }
}

.list-view-panel-toggle {
  all: unset;
  cursor: pointer;
  position: absolute;
  right: -22px;
  background: white;
  top: 50%;
  padding-block: 10px;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  -webkit-box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.6);
}

.list-view-panel-toggle img {
  width: 12px;
}

.ReactVirtualized__Grid__innerScrollContainer::before {
  content: "LIST VIEW";
  display: flex;
  font-size: 13px;
  text-align: left;
  padding: 15px;
}

.back-button {
    width: 130px;
    height: 30px;
    display: inline-block;
    border-radius: 6px;
    color: #FFFFFF;
    background-color: var(--turquoise);
    padding: 5px;
    margin-left: 2px;
    cursor: pointer;
   
}

.filtersHybrid{
    float: left;
    width: 50%;
    height: 100%;
    position: relative;
}

.filtersHybrid>ul {
    bottom: 60px;
    top: 60px;
    border-bottom: 1px solid var(--dividers);
    border-right: 1px solid var(--dividers);
}

.filtersHybrid .accordion>.title {
    position: relative;
    border-bottom: 1px solid rgba(29, 29, 27, .3);
    cursor: pointer;
    transition: 0.4s all var(--ease);
}

.filtersHybrid .accordion>ul {
    height: 0;
    overflow: hidden;
}

/* .filtersHybrid .accordion>.title:after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    right: 20px;
    top: calc(50% - 6px);
    transition: 0.4s all var(--ease);
    opacity: .5;
    background: url(/arrow-down-2.svg) no-repeat;
} */

.filtersHybrid .accordion.active > ul {
    height: auto;
    background-color: var(--menu-background);
}

.filtersHybrid .accordion.active > .title {
    color: #000000;
    background-color: var(--menu-background);
}

/* .filtersHybrid .accordion.active > .title:after {
    transform: rotate(90deg);
    opacity: 1;
} */

.filtersHybrid .filter {
    color: #FFFFFF
}

.filtersHybrid .filter>.title {
    padding: 20px 47px 20px 15px
}

.filtersHybrid .filter>ul {
    background: #FFFFFF
}

/*UP to here in Sass Refactor to CSS */

.filtersHybrid .child-checked>.title,
.filtersHybrid .child-checked.active>.title {
    color: var(--turquoise);
}

.filtersHybrid .sub-filter>.title {
    padding: 8px 15px;
}

.filtersHybrid .sub-filter.active>.title {
    background: #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
}

.filtersHybrid .sub-filter.active>ul {
    border-bottom: 1px solid rgba(29, 29, 27, .3);
}

.filtersHybrid .checkbox-item {
    padding: 8px 15px 8px 50px;
    position: relative;
    background: var(--menu-background);

}

.filtersHybrid .checkbox-item:first-child {
    padding: 18px 15px 8px 50px;
}

.filtersHybrid .checkbox-item:first-child .checkbox-skin {
    top: calc(50% - 3.5px);
}

.filtersHybrid .checkbox-item:last-child {
    padding: 8px 15px 18px 50px;
}

.filtersHybrid .checkbox-item:last-child .checkbox-skin {
    top: calc(50% - 13.5px);
}

.filtersHybrid .label {
    cursor: pointer;
    display: block;
    font-family: Helvetica;
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: normal;
    text-align: left;
    color: var(--juniper-dark);
}

.filtersHybrid .child-checked>.checkbox-skin .checkbox {
    background:  4px 5px var(--turquoise);
}

.filtersHybrid .child-checked>.label {
    color: var(--turquoise);
}

.filtersHybrid .checkbox-skin {
    position: absolute;
    left: 15px;
    top: calc(50% - 7.5px);
    width: 16px;
    height: 16px;
}

.filtersHybrid .checkbox-skin input {
    margin: 0;
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}

.filtersHybrid .checkbox-skin .checkbox {
    border-radius: 2px;
    border: solid 1px var(--juniper-light);
    background-color: #ffffff
}

.filtersHybrid .select-skin {
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    margin: 10px 0 4px;
    color: #3F5C70;
}

.filtersHybrid .select-skin select {
    width: 100%;
    height: 100%;
    float: none;
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-appearance: menulist-button;
}

.filtersHybrid .select-skin .select-skin-mask:before,
.filtersHybrid .select-skin .select-skin-mask:after {
    content: "";
    position: absolute;
}

.filtersHybrid .select-skin .select-skin-mask:after {
    right: 0;
    top: 0;
    width: 35px;
    height: 100%;
    background: #99B4C5;
}

.filtersHybrid .select-skin .select-skin-mask:before {
    width: 0;
    height: 0;
    right: 12px;
    top: 15px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #FFFFFF;
    z-index: 2;
}

.filtersHybrid .select-skin .select-skin-text {
    white-space: nowrap;
    font-size: 12px;
    padding: 8px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filtersHybrid .select-skin .select-skin-text-clip {
    margin-right: 35px;
    overflow: hidden;
    background: #E0EEF3;
}

.filtersHybrid .slider-container {
    margin: 10px 0 4px;
    position: relative;
    padding: 5px 78px 5px 0;
}

.filtersHybrid .slider-container .value {
    width: 68px;
    font-size: 13px;
    position: absolute;
    right: 0;
    top: 0px;
    padding: 2px 10px;
    background: #E0EEF3;
    font-weight: 400;
    text-align: center;
    border-radius: 5px;
}

.filtersHybrid-footer {
    background: #FFFFFF;
    background: -moz-linear-gradient(top, #FFFFFF 0%, #FFFFFF 100%);
    background: -webkit-linear-gradient(top, #FFFFFF 0%, #FFFFFF 100%);
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=0);
    border-top: 1px solid var(--dividers);
    border-bottom: 1px solid var(--dividers);
    border-right: 1px solid var(--dividers);
    height: 60px;
    bottom: 0;
    text-align: center;
    color: #000000;
}

.filtersHybrid-footer__option {
    float: left;
    padding: 10px;
    transition: opacity .3s;
    cursor: pointer;
}

.filtersHybrid-footer__option:not(:first-child) {
    margin-left: 35px;
}

.filtersHybrid-footer__option--disabled {
    opacity: .3;
    cursor: default;
}

.filtersHybrid-footer__icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    line-height: 21px;
    font-size: 0;
    border-radius: 10px
}

.filtersHybrid-footer__icon--save {
    color: #85AA3F;
    background-image: url(/green-tick.svg);
    background-position: 4px 6px;
}

.filtersHybrid-footer__icon--clear {
    color: #FE6666;
    background-image: url(/red-x.svg);
    background-position: 5px 5px;
}


/*new styles from Matt Falla*/

.clear-button {
    width: 130px;
    height: 30px;
    display: inline-block;
    border-radius: 6px;
    color: #FFFFFF;
    background-color: var(--juniper-mid);
    padding: 5px;
    margin-right: 5px;
    margin-left:2px;
    cursor: pointer;
  }

.save-button {
    width: 130px;
    height: 30px;
    display: inline-block;
    border-radius: 6px;
    color: #FFFFFF;
    background-color: var(--turquoise);
    padding: 5px;
    margin-left:2px;
    cursor: pointer;
}

.icon-back-arrow {
    width: 9px;
    height: 14px;
    object-fit: contain;
    cursor: pointer;
}

.icon-home {
    width: 16px;
    height: 16.1px;
    object-fit: contain;
    cursor: pointer;
}

.selectHybrid {
    height: 60px;
    padding: 15px;
    position: relative;
    border-right: 1px solid var(--dividers);
    border-bottom: 1px solid var(--dividers);
    background: var(--menu-background);
    z-index: 1;
    color: var(--juniper);
}

.selectHybridItemHome {
    position:absolute;
    padding: 5px;
    left:20px;
    vertical-align: center;
}
.selectHybridItemBack {
    position:absolute;
    padding: 5px;
    left:60px;
    font-size: 17px;
    color: var(--juniper);
    vertical-align: center;
}
 
.selectHybridItemLabel {
    position:absolute;
    padding: 5px;
    left:90px;
    color: var(--juniper);
    font-size: 17px;
    font-weight: 500;
    vertical-align: center;

}
.favorites-root {
  float: left;
  width: 50%;
  height: 100%;
  position: relative;
  border-right: 1px solid var(--dividers);
}

.favorites-folders {
  display: flex;
  flex-direction: column;
}

.favorites-folder.active {
  background-color: var(--menu-background);
}

.favorites-folder-inner {
  position: relative;
}

.favorites-folder-title {
  cursor: pointer;
  display: block;
  padding: 20px 47px 20px 15px;
  border-bottom: 1px solid rgba(29, 29, 27, 0.3);
  text-transform: capitalize;
}

.favorites-folder-title label {
  cursor: pointer;
  color: var(--juniper);
  font-weight: 500;
  font-size: 15px;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
}

.favorites-folder.active .favorites-folder-title label {
  color: black;
}

.favorites-folder-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  max-height: 300px;
  overflow-x: hidden;
  overflow-y: auto;
}

.favorites-folder-item-heading {
  align-items: center;
  cursor: pointer;
  display: flex;
  position: relative;
  justify-content: space-between;
}

.favorites-folder-item-heading-title {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 6px;
  width: 100%;
}

.favorites-folder-item-heading-title label {
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 180px;
  position: relative;
  top: 2px;
}

.favorites-folder-item-heading-title i {
  font-size: 10px;
}

.favorites-folder-item.active .favorites-folder-item-actions {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.favorites-folder-item-actions img {
  width: 20px;
}

.favorites-folder-item-action-edit img {
  position: relative;
  top: 2px;
}

.favorites-folder-item-action-download img {
  width: 18px;
}

.favorites-folder-item .favorites-folder-item-investors,
.favorites-folder-item .favorites-folder-item-actions {
  display: none;
}

.favorites-folder-item.active .favorites-folder-item-investors {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0px 8px 24px;
}

.favorites-folder-item-investor {
  align-items: start;
  display: flex;
  gap: 8px;
}

.favorites-folder-item-investor label {
  cursor: pointer;
}

.favorites-folder .favorites-folder-inner .favorites-folder-title::after {
  content: " ";
  background-image: url("/icon-plus.svg");
  width: 12px;
  height: 12px;
  position: absolute;
  background-size: cover;
  top: 23px;
  right: 20px;
}

.favorites-folder.active
  .favorites-folder-inner
  .favorites-folder-title::after {
  background-image: url("/icon-minus.svg");
  width: 12px;
  height: 2px;
  top: 29px;
}

.favorites-folder-item .favorites-folder-item-heading::after {
  content: " ";
  background-image: url("/down-arrow.svg");
  width: 10px;
  height: 10px;
  position: absolute;
  background-size: cover;
  top: 8px;
  left: 7px;
}

.favorites-folder-item .favorites-folder-item-heading.no-icon::after {
  display: none;
}

.favorites-folder-item.shared .favorites-folder-item-heading::after {
  filter: invert(69%) sepia(96%) saturate(1501%) hue-rotate(7deg)
    brightness(94%) contrast(90%);
}

.favorites-folder-item .favorites-folder-item-heading.no-after-icon::after {
  display: none;
}

.favorites-folder-item.active .favorites-folder-item-heading::after {
  background-image: url("/up-arrow.svg");
  top: 9px;
}

.favoritesModal {
  background-color: #ffffff;
  width: 400px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 10%;
  border-radius: 20px;
  box-shadow: 1px 2px 3px 1px rgba(0, 0, 0, 0.3);
  padding: 20px;
}

.favoritesModal.share {
  width: 768px;
}

.favoritesModalHeader {
  display: flex;
  justify-content: space-between;
}

.favoritesCloseModalButton {
  all: unset;
  cursor: pointer;
  font-weight: bold;
}

.favoritesModalContent {
  padding: 16px 0px;
}

.favoritesModalContent-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.favoritesModalContent-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.favoritesModalContent-field label {
  font-size: 16px;
  font-weight: bold;
}

.favoritesModalContent-field input {
  padding: 8px;
  max-width: 250px;
}

.favoritesModalContent-field input[type='checkbox'] {
    width: 13px;
  }

.favoritesModalContent-field select {
  padding: 8px;
}

.favoritesModalContent-field.multi-buttons {
  flex-direction: row;
  gap: 16px;
}

.favoritesModalContent-field button {
  cursor: pointer;
  background-color: var(--juniper);
  border: none;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  border-radius: 6px;
  align-items: center;
  height: fit-content;
  padding: 10px;
  color: #fff;
  text-align: center;
}

.favoritesModalContent-field button.cancel-button {
  background-color: #fff;
  border: 1px solid var(--juniper);
  color: var(--juniper);
}

.favoritesModal.share .favoritesModalContent-clients {
  overflow-x: hidden;
  overflow-y: scroll;
  height: 380px;
  padding-right: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.favoritesModalContent-client-header {
  color: var(--juniper);
  border: 1px solid var(--dividers);
  border-bottom: 1px solid var(--dividers);
  font-size: 14px;
  font-weight: bold;
  padding: 10px 10px;
  cursor: pointer;
  position: relative;
}

.favoritesModalContent-client-header::after {
  content: " ";
  background-image: url("/down-arrow.svg");
  width: 10px;
  height: 10px;
  position: absolute;
  background-size: cover;
  top: 15px;
  right: 15px;
}

.favoritesModalContent-client-header.active::after {
  background-image: url("/up-arrow.svg");
}

.favoritesModalContent-client:last-child .favoritesModalContent-client-header {
  border-bottom: 2px solid var(--dividers);
}

.favoritesModalContent-client-users {
  border-top: 1px solid var(--dividers);
  border-left: 1px solid var(--dividers);
  border-right: 1px solid var(--dividers);
}

.favoritesModalContent-client-users th,
.favoritesModalContent-client-users td {
  text-align: left;
  padding: 5px;
}

@media screen and (max-height: 800px) {
  .favoritesModal.share .favoritesModalContent-clients {
    height: 190px;
  }

  .favorites-folder-items {
    max-height: 190x;
  }
}

@media screen and (max-height: 600px) {
  .favoritesModal.share {
    top: 3%;
  }

  .favorites-folder-items {
    max-height: 100px;
  }
}

.favorites-root .filters-footer {
  border-right: 0;
}

.favorites-root .csv-upload-footer {
  position: absolute;
  bottom: 60px;
  width: 100%;
  border-top: 1px solid var(--dividers);
}

.favorites-root .csv-upload-footer .csv-upload-button {
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-weight: 500;
  font-size: 15px;
}

.search-root {
    float: left;
    width: 50%;
    height: 100%;
    position: relative;
    border-right: 1px solid var(--dividers);
}

.search-folders {
    display: flex;
    flex-direction: column;
}

.search-folder.active{
    background-color: var(--menu-background);
}

.search-folder-inner {
    position: relative;
}

.search-folder-title {
    cursor: pointer;
    display: block;
    padding: 20px 47px 20px 15px;    
    border-bottom: 1px solid rgba(29, 29, 27, 0.3);
    text-transform: capitalize;
}

.search-folder-title label {
    cursor: pointer;
    color: var(--juniper);
    font-weight: 500;
    font-size: 15px;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
}

.search-folder.active .search-folder-title label{
    color: black;
}

.search-folder-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    max-height: 300px;
    overflow-x: hidden;
    overflow-y: auto;
}

.search-folder-item-heading {
    align-items: center;
    cursor: pointer;
    display: flex;
    position: relative;
    justify-content: space-between;
}

.search-folder-item-heading-title {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 6px;
    width: 100%;
}

.search-folder-item-heading-title label {
    cursor: pointer;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 180px;
    position: relative;
    top: 2px
}

.search-folder-item-heading-title i {
    font-size: 10px;
}

.search-folder-item.active .search-folder-item-actions {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.search-folder-item-actions img {
    width: 20px;
}

.search-folder-item-action-edit img {
    position: relative;
    top: 2px;
}

.search-folder-item .search-folder-item-searches,
.search-folder-item .search-folder-item-actions {
    display: none;
}

.search-folder-item.active .search-folder-item-searches {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 0px 8px 24px;
}

.search-folder-item-search {
    align-items: start;
    display: flex;
    gap: 8px;
}

.search-folder-item-search label {
    cursor: pointer;
}

.search-folder .search-folder-inner .search-folder-title::after {    
    content: " ";
    background-image: url('/icon-plus.svg');
    width: 12px;
    height: 12px;
    position: absolute;
    background-size: cover;
    top: 23px;
    right: 20px;
}

.search-folder.active .search-folder-inner .search-folder-title::after {    
    background-image: url('/icon-minus.svg');
    width: 12px;
    height: 2px;
    top: 29px;
}

.search-folder-item .search-folder-item-heading.no-after-icon::after {
    display: none;
}

.search-folder-item.active .search-folder-item-heading label {
    font-weight: bold;
}

.searchModal {
    background-color: #FFFFFF;
    width: 400px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 150px;
    border-radius: 20px;
    box-shadow: 1px 2px 3px 1px rgba(0,0,0,0.3);
    padding: 20px;
}

.searchModal.share {
    width: 768px;
}

.searchModalHeader {
    display: flex;
    justify-content: space-between;
}

.searchCloseModalButton {
    all: unset;
    cursor: pointer;
    font-weight: bold;
}

.searchModalContent {
    padding: 16px 0px;
}

.searchModalContent-fields  {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.searchModalContent-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.searchModalContent-field label{
    font-size: 16px;
    font-weight: bold;
}

.searchModalContent-field input {
    padding: 8px;
    max-width: 250px;
}

.searchModalContent-field select {
    padding: 8px;
}

.searchModalContent-field.multi-buttons {
    flex-direction: row;
    gap: 16px;
}

.searchModalContent-field button {
    cursor: pointer;
    background-color: var(--juniper);
    border: none;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    border-radius: 6px;
    align-items: center;
    height: fit-content;
    padding: 10px;
    color: #fff;
    text-align: center;
}

.searchModalContent-field button.cancel-button {
    background-color: #fff;
    border: 1px solid var(--juniper);
    color: var(--juniper)
}

.searchModal.share .searchModalContent-clients {
    overflow-x: hidden;
    overflow-y: scroll;
    height: 380px;
    padding-right: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.searchModalContent-client-header{
    color: var(--juniper);
    border: 1px solid var(--dividers);
    border-bottom: 1px solid var(--dividers);
    font-size: 14px;
    font-weight: bold;
    padding: 10px 10px;
    cursor: pointer;
    position: relative;
}

.searchModalContent-client-header::after {    
    content: " ";
    background-image: url('/down-arrow.svg');
    width: 10px;
    height: 10px;
    position: absolute;
    background-size: cover;
    top: 15px;
    right: 15px;
}

.searchModalContent-client-header.active::after {    
    background-image: url('/up-arrow.svg');
}

.searchModalContent-client:last-child .searchModalContent-client-header{
    border-bottom: 2px solid var(--dividers);
}

.searchModalContent-client-users{
    border-top: 1px solid var(--dividers);
    border-left: 1px solid var(--dividers);
    border-right: 1px solid var(--dividers);
}

.searchModalContent-client-users th,
.searchModalContent-client-users td {
    text-align: left;
    padding: 5px;
}

.search-root .filters-footer{
    border-right:0;
}

@media screen and (max-height: 800px) {
    .search-folder-items {
        max-height: 190x;
    }

}

@media screen and (max-height: 600px) {
    .search-folder-items {
        max-height: 100px;
    }
}
.mapview {
  border-radius: 140px;
  overflow: hidden;
}

.mapview .gm-fullscreen-control {
  display: none;
}

.mapview .gm-bundled-control-on-bottom {
  bottom: 155px !important;
  right: 50px !important;
}

#map-view-v2 {
  height: 60vh;
  width: 50vw;
}

#map-view-v2 .gm-style-iw-chr {
  position: absolute;
  right: 0;
}

#map-view-v2 .gm-style-iw-d > div > div {
  text-align: left;
  padding: 28px 0px 12px 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#map-view-v2 .gm-style-iw-d h3 {
  max-width: 230px;
}
.login-form {
    width: 100%;
    max-width: 1024px;
    padding: 46px;
    margin: auto;
}

.login {
    background-image: url(/login-bg-v2.jpg);
    text-align: center;
    background-position: center;
    background-size: cover;
}

.login .logo {
    position: absolute;
    top: 40px;
    left: 40px;
}

.login .fields {
    width: 100%;
    max-width: 384px;
    margin: 130px auto;
    color: #FFF;
    text-align: left;
    background-color: #fff;
    padding: 40px 25px;
    border-radius: 8px;
    box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.25);
}

.login .fields h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.login .fields label{
    color: #000;
    font-weight: 700;
    font-size: 14px;
    padding-bottom: 10px;
    display: block;
}

.login .fields input {
    width: 100%;
    border: 1px solid #707073;
    font-size: 16px;
    color: #000;
    padding: 10px;
    margin: 0 0 15px;
    border-radius: 5px;
}

.login .fields input:focus {
    outline: 0;
    border: 1px solid rgba(120, 200, 238, 1);
}

.login .fields input .remember {
    width: 100%;
    float: left;
}

.login .fields input label {
    font-size: 12px;
    color: #9481a0;
    float: left;
    margin: 0px 0 0 10px;
    line-height: 1;
}

.login .fields input label:focus,
.login .fields input label:hover {
    outline: 0;
    color: #fff;
}

/* .login .fields input input {
    float: left;
    width: auto;
    padding: 0;
} */

.login .fields .button {
    background: #53B7B4;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    border: 0;
    border-radius: 5px;
    padding: 10px 20px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0);
    cursor: pointer;
    margin: 0;
    margin-top: 20px;
    font-family: "Titillium Web", sans-serif;
}

.login .fields .button:focus {
    outline: 0;
    border: 1px solid rgba(255, 255, 255, 1);
}

.login .fields .btn-link {
    color: #000000;
    font-size: 14px;
    margin: 10px auto 0px auto;
    line-height: 3.3;
    cursor: pointer;
    display: table;
}

.login .fields .btn-link:focus,
.login .fields .btn-link:hover {
    outline: 0;
    text-decoration: underline;
}

.login .login-leads {
    cursor: pointer;
    position: absolute;
    bottom: 40px;
    right: 40px;
    background-color: #7E68A8;
    display: flex;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #7E68A8;
    border-radius: 6px;
    padding: 10px 15px;
    align-items: center;
}

.login .login-leads span {
    color: #fff;
    font-family: "Titillium Web", sans-serif;
}

.login .login-leads:hover{
    border-color: #fff;
}

.login .fields .customPassword {
    display: flex;
}

.login .fields .customPassword input {
    width: 80%;
    margin-bottom: 0;
    border-right: none;
    border-top-right-radius: 0%;
    border-bottom-right-radius: 0%;
}

.login .fields .customPassword button{
    width: 20%;
    font-weight: 700;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid #707073;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
    font-family: "Titillium Web", sans-serif;
}
.login-form {
    width: 100%;
    max-width: 1024px;
    padding: 46px;
    margin: auto;
}

.reset-password {
    background-image: url(/login-bg-v2.jpg);
    text-align: center;
    background-position: center;
    background-size: cover;
}

.reset-password .logo {
    position: absolute;
    top: 40px;
    left: 40px;
}

.reset-password .fields {
    width: 100%;
    max-width: 384px;
    margin: 130px auto;
    color: #FFF;
    text-align: left;
    background-color: #fff;
    padding: 40px 25px;
    border-radius: 8px;
    box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.25);
}

.reset-password .fields h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.reset-password .fields label {
    color: #000;
    font-weight: 700;
    font-size: 14px;
    padding-bottom: 10px;
    display: block;
}

.reset-password .fields input {
    width: 100%;
    border: 1px solid #707073;
    font-size: 16px;
    color: #000;
    padding: 10px;
    margin: 0 0 15px;
    border-radius: 5px;
}

.reset-password .fields input:focus {
    outline: 0;
    border: 1px solid rgba(120, 200, 238, 1);
}

.reset-password .fields input .remember {
    width: 100%;
    float: left;
}

.reset-password .fields input label {
    font-size: 12px;
    color: #9481a0;
    float: left;
    margin: 0px 0 0 10px;
    line-height: 1;
}

.reset-password .fields input label:focus,
.reset-password .fields input label:hover {
    outline: 0;
    color: #fff;
}

/* .reset-password .fields input input {
    float: left;
    width: auto;
    padding: 0;
} */

.reset-password .fields .button {
    background: #53B7B4;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    border: 0;
    border-radius: 5px;
    padding: 10px 20px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0);
    cursor: pointer;
    margin: 0;
    margin-top: 20px;
    font-family: "Titillium Web", sans-serif;
}

.reset-password .fields .button:focus {
    outline: 0;
    border: 1px solid rgba(255, 255, 255, 1);
}

.reset-password .fields .btn-link:focus,
.reset-password .fields .btn-link:hover {
    text-decoration: underline;
}

.reset-password .fields .btn-link {
    color: #000000;
    font-size: 14px;
    margin: 10px auto 0px auto;
    line-height: 3.3;
    cursor: pointer;
    display: table;
}
.login-form {
    width: 100%;
    max-width: 1024px;
    padding: 46px;
    margin: auto;
}

.reset-password {
    background-image: url(/login-bg-v2.jpg);
    text-align: center;
    background-position: center;
    background-size: cover;
}

.reset-password .logo {
    position: absolute;
    top: 40px;
    left: 40px;
}

.reset-password .fields {
    width: 100%;
    max-width: 384px;
    margin: 130px auto;
    color: #FFF;
    text-align: left;
    background-color: #fff;
    padding: 40px 25px;
    border-radius: 8px;
    box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.25);
}

.reset-password .fields h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.reset-password .fields label {
    color: #000;
    font-weight: 700;
    font-size: 14px;
    padding-bottom: 10px;
    display: block;
}

.reset-password .fields input {
    width: 100%;
    border: 1px solid #707073;
    font-size: 16px;
    color: #000;
    padding: 10px;
    margin: 0 0 15px;
    border-radius: 5px;
}

.reset-password .fields input:focus {
    outline: 0;
    border: 1px solid rgba(120, 200, 238, 1);
}

.reset-password .fields input .remember {
    width: 100%;
    float: left;
}

.reset-password .fields input label {
    font-size: 12px;
    color: #9481a0;
    float: left;
    margin: 0px 0 0 10px;
    line-height: 1;
}

.reset-password .fields input label:focus,
.reset-password .fields input label:hover {
    outline: 0;
    color: #fff;
}

/* .reset-password .fields input input {
    float: left;
    width: auto;
    padding: 0;
} */


.reset-password .fields .button {
    background: #53B7B4;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    border: 0;
    border-radius: 5px;
    padding: 10px 20px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0);
    cursor: pointer;
    margin: 0;
    margin-top: 20px;
    font-family: "Titillium Web", sans-serif;
}

.reset-password .fields .button:focus {
    outline: 0;
    border: 1px solid rgba(255, 255, 255, 1);
}

.reset-password .customPassword {
    display: flex;
    margin-bottom: 20px;
}

.reset-password .customPassword input {
    width: 80%;
    margin-bottom: 0;
    border-right: none;
    border-top-right-radius: 0%;
    border-bottom-right-radius: 0%;
}

.reset-password .customPassword button{
    width: 20%;
    font-weight: 700;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid #707073;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
    font-family: "Titillium Web", sans-serif;
}
.limitation-page .content-wrapper{
  padding: 10px;
}

.limitation-page .tabs{
  display: flex;
  gap: 16px;
}

.limitation-page .tabs button{
  border: 1px solid #52315C;
  border-radius: 5px;
}

.limitation-page .tabs button.active{
  background: #52315C;
  color: #fff;
}

.limitation-page .container{
  padding-top: 16px;
}
.profile-limitation-component {
  height: calc(100vh - 100px);
  overflow: scroll;
  padding-bottom: 100px;
}

.profile-limitation-component .filter {
  display: flex;
  gap: 16px;
  padding: 0px 0px 10px 0px;
  align-items: center;
}

.profile-limitation-component .filter .filter-type {
  display: flex;
  gap: 8px;
}

.profile-limitation-component .filter input[type='date'],
.profile-limitation-component .filter input[type='month'] {
  width: 150px;
}

.profile-limitation-component .filter button {
  background-color: #52315C;
  color: #fff;
}

.profile-limitation-component .filter button:active{
  background-color: #a799ba;
}

.profile-limitation-component table {
  width: 100%;
  border-spacing: 0;
}

.profile-limitation-component table thead tr th {
  background-color: var(--menu-background);
  padding: 10px;
  text-align: left;
}

.profile-limitation-component table thead tr th.short-cell{
  width: 170px;
}

.profile-limitation-component table.sortable tr th:hover {
  cursor: pointer;
}

.profile-limitation-component table.sortable tr th img {
  width: 10px;
}

.profile-limitation-component table tbody tr td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid var(--menu-background);
}

.profile-limitation-component table tbody tr.reached td {
  background-color: #ef4949;
}

.profile-limitation-component table tbody tr.close td {
  background-color: #ef8e8e;
}

.profile-limitation-component table tbody tr td button.reset-limit {
  background-color: #52315C;
  color: #fff;
}
.limitation-config-component {
  display: flex;
  gap: 24px;
}

.limitation-config-component .config-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid #b7b6b7;
  width: 450px; 
  padding-right: 24px;
}

.limitation-config-component .config-group:last-child{
  border-right: none;
}

.limitation-config-component .config-group > label {
  font-weight: bold;
  font-size: 16px;
}

.limitation-config-component .config-group .config-items {
  display: flex;
  flex-direction: column;
  gap: 8px; 
}

.limitation-config-component .config-group .config-items .config-item {
  display: flex;
  flex-direction: column;
  gap: 8px; 
}

.config-action button {
  background-color: #52315C;
  color: #fff;
  margin-top: 24px;
}
.pdf-download-limitation-component {
  height: calc(100vh - 100px);
  overflow: scroll;
  padding-bottom: 100px;
}

.pdf-download-limitation-component .filter {
  display: flex;
  gap: 16px;
  padding: 0px 0px 10px 0px;
  align-items: center;
}

.pdf-download-limitation-component .filter .filter-type {
  display: flex;
  gap: 8px;
}

.pdf-download-limitation-component .filter input[type='date'],
.pdf-download-limitation-component .filter input[type='month'] {
  width: 150px;
}

.pdf-download-limitation-component .filter button {
  background-color: #52315C;
  color: #fff;
}

.pdf-download-limitation-component .filter button:active{
  background-color: #a799ba;
}

.pdf-download-limitation-component table {
  width: 100%;
  border-spacing: 0;
}

.pdf-download-limitation-component table thead tr th {
  background-color: var(--menu-background);
  padding: 10px;
  text-align: left;
}

.pdf-download-limitation-component table.sortable tr th:hover {
  cursor: pointer;
}

.pdf-download-limitation-component table.sortable tr th img {
  width: 10px;
}

.pdf-download-limitation-component table thead tr th.short-cell{
  width: 300px;
}

.pdf-download-limitation-component table tbody tr td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid var(--menu-background);
}

.pdf-download-limitation-component table tbody tr.reached td {
  background-color: #ef4949;
}

.pdf-download-limitation-component table tbody tr.close td {
  background-color: #ef8e8e;
}

.pdf-download-limitation-component table tbody tr td button.reset-limit {
  background-color: #52315C;
  color: #fff;
}
.shared-folders .content-wrapper {
  padding: 10px;
}

.shared-folders .tabs {
  display: flex;
  gap: 16px;
}

.shared-folders .tabs button {
  border: 1px solid #52315c;
  border-radius: 5px;
}

.shared-folders .tabs button.active {
  background: #52315c;
  color: #fff;
}

.shared-folders .container {
  padding-top: 16px;
}

.shared-folders .container .title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: center;
}

.shared-folders table {
  width: 100%;
  border-spacing: 0;
}

.shared-folders table thead tr th {
  background-color: var(--menu-background);
  padding: 10px;
  text-align: left;
}

.shared-folders table thead tr th.short-cell {
  width: 250px;
}

.shared-folders table tbody tr td.short-cell > div {
  display: flex;
  gap: 16px;
}

.shared-folders table.sortable tr th img {
  width: 10px;
}

.shared-folders table tbody tr td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid var(--menu-background);
}

.shared-folders table tbody tr.reached td {
  background-color: #ef4949;
}

.shared-folders table tbody tr.close td {
  background-color: #ef8e8e;
}

.shared-folders table tbody tr td button.reset-limit {
  background-color: #52315c;
  color: #fff;
}

.shared-folders button {
  background-color: #52315c;
  color: #fff;
}

.shared-folders button.delete {
  background-color: #cf3c3c;
}

.shared-folders button.add {
  background-color: #85aa3f;
}

.shared-folders button.update {
  background-color: #5c5a6d;
}

.shared-folders button.share {
  background-color: #ff9e0b;
}

.favoritesModalContent.jp-admin .favoritesModalContent-client-header  {
  cursor: default;
}

.favoritesModalContent.jp-admin .favoritesModalContent-client-header::after {
  display: none;
}

.favoritesModalContent.jp-admin .favoritesModalContent-client-header input {
  margin-right: 10px;
  position: relative;
  top: 2px;
}


