h1 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Futuralt, sans-serif;
  font-size: 25px;
  line-height: 35px;
  font-weight: 700;
}

h2 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
}

h3 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 21px;
  line-height: 30px;
  font-weight: 700;
}

h4 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
}

h5 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

p {
  margin-bottom: 10px;
}

a {
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  text-decoration: none;
  cursor: pointer;
}

.body {
  height: 100vh;
  background-image: url('../images/background-design.png');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: Futuralt, sans-serif;
  color: #000;
}

.top-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.logo-block {
  width: 9vw;
  height: 9vw;
  margin-top: 7vh;
  margin-left: 5vw;
  background-image: url('../images/vizient-logo.png');
  /* background-image: url('../images/volition-capital-logo.svg'); */
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.login-form-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.login-form-block {
  width: 50vw;
  max-width: 535.5px;
  margin-right: 7vw;
  padding: 5vw;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-color: #fff;
}

.text-input-field {
  height: 55px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(160, 131, 11, 0.3);
  background-color: #faf9f4;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  font-size: 16px;
}

.text-input-field:hover {
  border-color: #a0830b;
}

.text-input-field:active {
  border-color: #a0830b;
}

.text-input-field:focus {
  border-color: #a0830b;
}

.text-input-field::-webkit-input-placeholder {
  color: #000;
}

.text-input-field:-ms-input-placeholder {
  color: #000;
}

.text-input-field::-ms-input-placeholder {
  color: #000;
}

.text-input-field::placeholder {
  color: #000;
}

.text-input-field.custom {
  width: 60%;
  height: 40px;
  min-width: 360px;
  padding-left: 15px;
  border-color: rgba(160, 131, 11, 0.5);
}

.text-input-field.custom::-webkit-input-placeholder {
  font-size: 13px;
}

.text-input-field.custom:-ms-input-placeholder {
  font-size: 13px;
}

.text-input-field.custom::-ms-input-placeholder {
  font-size: 13px;
}

.text-input-field.custom::placeholder {
  font-size: 13px;
}

.text-input-field.portfolio-management {
  height: 50px;
}

.text-input-field.teaxt-area {
  width: 100%;
  height: 200px;
  max-width: 100%;
  min-width: 100%;
}

.text-input-field.teaxt-area:hover {
  border-color: #a0830b;
}

.text-input-field.teaxt-area:active {
  border-color: #a0830b;
}

.text-input-field.teaxt-area:focus {
  border-color: #a0830b;
}

.form-field-label {
  font-family: Futuralt, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.form-field-label.small {
  font-size: 13px;
}

.login-button {
  width: 100%;
  margin-top: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-style: solid;
  border-width: 1px;
  border-color: #a0830b;
  background-color: #a0830b;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  font-family: Futuralt, sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.login-button:hover {
  background-color: #fff;
  color: #a0830b;
}

.input-block {
  margin-bottom: 20px;
}

.login-cta {
  margin-bottom: 40px;
  color: #a0830b;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  text-align: center;
}

.dashboard-container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  background-color: #f5f3e7;
}

.logo-and-nav-block {
  z-index: 1000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4vh;
  margin-right: 5vw;
  margin-left: 3vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.nav-link-hover-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 65px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #a0830b;
  font-family: Futuralt, sans-serif;
  color: #fff;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-link-hover-block:hover {
  background-color: #644300;
}

.nav-link-hover-block.w--current {
  background-color: #644300;
}

.nav-link-hover-block.pools {
  position: absolute;
  left: 63px;
  z-index: 1;
  display: none;
  width: 197.703125px;
  height: 325px;
}

.nav-link-hover-block.pools:hover {
  background-color: #644300;
}

.nav-link-hover-block.pools.w--current {
  background-color: #644300;
}

.nav-link-hover-block.no-link {
  left: -2px;
  display: none;
  height: 8vh;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-link-hover-block.no-link:hover {
  background-color: #a0830b;
}
.nav-link-hover-block.no-link.heading {
  left: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: default;
}

.dashboard-link-hover-state {
  position: absolute;
  width: 7vh;
  height: 7vh;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-color: #a0830b;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/example-bg.png');
  background-position: 50% 50%;
  background-size: 30%;
  background-repeat: no-repeat;
}

.dashboard-link-hover-state.transaction-history {
  background-image: url('../images/icon-transaction-history-white.svg');
  background-size: 50%;
}
.dashboard-link-hover-state.referral-bonus {
  background-image: url('../images/referral-bonus-icon-white.svg');
  background-size: 50%;
}
.dashboard-link-hover-state.exchange-rate {
  background-image: url('../images/exchange-rate-icon-white.svg');
  background-size: 50%;
}
.dashboard-link-hover-state.spooling {
  background-image: url('../images/spooling-icon-white.svg');
  background-size: 50%;
}

.dashboard-link-hover-state.referrals {
  background-image: url('../images/icon-referrals-white.svg');
  background-size: 50%;
}

.dashboard-link-hover-state.portfolio-management {
  background-image: url('../images/icon-portfolio-management-light-brown.svg');
  background-size: 45%;
}

.dashboard-link-hover-state.messages {
  background-image: url('../images/icon-messages-light-brown.svg');
  background-size: 40%;
}
.dashboard-link-hover-state.community {
  background-image: url('../images/community-icon-white.svg');
  background-size: 40%;
}

.dashboard-link-hover-state.dashboard {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  background-image: url('../images/icon-dashboard-white.svg');
}

.dashboard-link-hover-state.contribution-pool {
  background-image: url('../images/icon-contribution-pool-white.svg');
  background-size: 40%;
}

.dashboard-link-hover-state.user {
  background-image: url('../images/icon-profile-white.svg');
}

.dashboard-link-hover-state.activity-log {
  background-image: url('../images/icon-activity-light-brown.svg');
}

.dashboard-link-hover-state.edit {
  background-image: url('../images/icon-edit-light-brown.svg');
}

.dashboard-link-hover-state.logout {
  background-color: transparent;
  background-image: url('../images/icon-logout-brown.svg');
  background-size: 50%;
}

.dashboard-logo {
  width: 10vh;
  height: 10vh;
  max-height: 63.09375px;
  max-width: 63.09375px;
  margin-bottom: 2vh;
  background-image: url('../images/vizient-logo.png');
  /* background-image: url('../images/volition-capital-logo.svg'); */
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.nav-block-wrapper {
  position: relative;
  z-index: 1000;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  box-shadow: none;
}

.dashboard-nav-link {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 8vh;
  height: 8vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  background-color: #fff;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/example-bg.png');
  background-position: 50% 50%;
  background-size: 30%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.dashboard-nav-link:hover {
  opacity: 0;
}

.dashboard-nav-link.w--current {
  z-index: -2;
  opacity: 0;
}

.dashboard-nav-link.transaction-history {
  background-image: url('../images/icon-transaction-history-black.svg');
  background-size: 50%;
}

.dashboard-nav-link.referral-bonus {
  background-image: url('../images/referral-bonus-icon.svg');
  background-size: 50%;
}
.dashboard-nav-link.exchange-rate {
  background-image: url('../images/exchange-rate-icon.svg');
  background-size: 50%;
}
.dashboard-nav-link.spooling {
  background-image: url('../images/spooling-icon.svg');
  background-size: 50%;
}

.dashboard-nav-link.transaction-history.w--current {
  opacity: 0;
}

.dashboard-nav-link.messages {
  background-image: url('../images/icon-messages-black.svg');
  background-size: 40%;
}
.dashboard-nav-link.community {
  background-image: url('../images/community-icon-black.svg');
  background-size: 40%;
}

.dashboard-nav-link.contribution-pool {
  background-image: url('../images/icon-contribution-pool-black.svg');
  background-size: 40%;
}

.dashboard-nav-link.contribution-pool.w--current {
  opacity: 0;
}

.dashboard-nav-link.portfolio-management {
  background-image: url('../images/icon-portfolio-management-black.svg');
  background-size: 45%;
}

.dashboard-nav-link.dashboard {
  background-image: url('../images/icon-dashboard-black.svg');
}

.dashboard-nav-link.dashboard.w--current {
  opacity: 0;
}

.dashboard-nav-link.referrals {
  background-image: url('../images/icon-referrals-black.svg');
  background-size: 50%;
}

.dashboard-nav-link.referrals.w--current {
  opacity: 0;
}

.dashboard-nav-link.user {
  background-image: url('../images/icon-profile-black.svg');
}

.dashboard-nav-link.activity-log {
  background-image: url('../images/icon-activity-black.svg');
}

.dashboard-nav-link.edit {
  background-image: url('../images/icon-edit-black.svg');
}

.dashboard-nav-link.logout {
  background-image: url('../images/icon-logout-brown.svg');
  background-size: 50%;
}

.nav-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 8vh;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 0 50px -30px rgba(0, 0, 0, 0.3);
}

.nav-block.logout {
  margin-top: 10px;
}

.mobile-logo-wrapper {
  display: none;
}

.nav-hover-block-inner {
  margin-right: 30px;
  margin-left: 30px;
}

.nav-hover-block-inner.pool {
  margin-right: 20px;
  margin-left: 20px;
}

.dashboard-inner-wrapper {
  overflow: auto;
  height: 92vh;
  margin-top: 4vh;
  margin-right: 5vw;
  margin-bottom: 4vh;
  padding: 3%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-style: solid;
  border-width: 10px;
  border-color: #e3dbbb;
  background-color: #fff;
}

.dashboard-inner-wrapper.grey {
  background-color: #f3f4f6;
}

.section-heading-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-heading-block.margin-bottom {
  margin-bottom: 20px;
}

.brown-text {
  color: #a0830b;
}

.extended-heading-line {
  height: 2px;
  margin-left: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: rgba(160, 131, 11, 0.2);
}

.extended-heading-line.custom-pools {
  margin-right: 10px;
}

.overview-card-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-right: -1.83%;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pool-amount {
  font-family: Futuralt, sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
}

.pool-amount.small {
  font-size: 21px;
}

.pool-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 48%;
  margin-bottom: 20px;
  padding-top: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-color: #fff;
  box-shadow: 20px 0 60px -30px rgba(0, 0, 0, 0.33);
  color: #000;
  text-decoration: none;
}

.pool-card.first {
  margin-right: 20px;
}

.pool-card.big {
  width: 44%;
}

.pool-card.small {
  width: 31.5%;
}

.pool-card.small.right {
  margin-right: 1.83%;
}

.pool-card.user-profile {
  width: 23.5%;
  min-width: 208.90626525878906px;
  margin-right: 1.5%;
}

.pool-card-upper {
  margin-right: 25px;
  margin-bottom: 20px;
  margin-left: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.pool-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 7px;
  padding-bottom: 10px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #f0f0f0;
  font-family: Futuralt, sans-serif;
  color: #a0830b;
  font-size: 15px;
  font-weight: 400;
}

.pool-title.greent-text {
  color: #39b54a;
}

.pool-title.black-text {
  color: #000;
}

.roi-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.roi-arrow-up {
  width: 8px;
  height: 8px;
  margin-left: 5px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-image: url('../images/up-arrow-icon-brown.svg');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.pool-roi-and-duration-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-family: Futuralt, sans-serif;
  font-size: 13px;
}

.pool-roi-and-duration-flex.vertical-flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.gray-text {
  color: #bcbec0;
}

.total-subscription-flex-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 25px;
  margin-bottom: 25px;
  margin-left: 25px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.total-contributions {
  font-size: 16px;
}

.contribution-number {
  font-size: 30px;
  line-height: 40px;
}

.view-all-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  padding-right: 25px;
  padding-left: 25px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
}

.view-all-button.brown {
  border-style: solid;
  border-width: 1px;
  border-color: #a0830b;
  background-color: #a0830b;
}

.view-all-button.brown:hover {
  background-color: #fff;
  color: #a0830b;
}

.view-all-button.small {
  height: 40px;
  padding-right: 15px;
  padding-left: 15px;
}

.view-all-button.small.green {
  border-style: solid;
  border-width: 1px;
  border-color: #39b54a;
  background-color: #39b54a;
}

.view-all-button.small.green:hover {
  background-color: #fff;
  color: #39b54a;
}

.view-all-button.small.black {
  border: 1px solid #000;
  background-color: #000;
}

.view-all-button.small.black:hover {
  background-color: #fff;
  color: #000;
}

.pool-section {
  margin-bottom: 30px;
}

.pool-section.margin-bottom {
  margin-bottom: 60px;
}

.green-text {
  color: #39b54a;
}

.no-active-pool {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 36px 13px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #bcbec0;
  font-size: 25px;
  line-height: 35px;
  font-weight: 700;
  text-align: center;
}

.hide {
  display: none;
}

.pool-section-inner-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.full-width {
  width: 100% !important;
}

.profile-value input.profile-input {
  border: none;
  outline: none;
  width: 100%;
  min-width: 100%;
  border: 1px solid red;
}

.pool-section-inner-flex.message {
  margin-top: 50px;
  margin-bottom: 50px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.dashboard-content-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 60vh;
  padding-right: 1.5vw;
  padding-bottom: 1.5vw;
  padding-left: 1.5vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-right: 1px solid #a0830b;
  border-bottom: 1px solid #a0830b;
  border-left: 1px solid #a0830b;
}

.dashboard-content-wrapper.recent-transaction {
  width: 48.5%;
  height: auto;
}

.dashboard-content-wrapper.messages {
  width: auto;
  height: auto;
}

.dashboard-content-wrapper.messages.bank-details {
  margin-top: 50px;
}

.dashboard-content-wrapper.messages.half {
  width: 48%;
}

.dashboard-content-wrapper.messages.create {
  width: 60%;
  margin-right: auto;
  margin-left: auto;
}

.smaller-border-line {
  width: 1.5vw;
  height: 1px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-color: #a0830b;
}

.dashboard-content-wrapper-inner {
  overflow: auto;
}

.dashboard-content-heading {
  margin-top: -1.75vw;
  margin-bottom: 2vh;
  padding: 5px 10px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  font-family: Futuralt, sans-serif;
  font-size: 23px;
  line-height: 3vw;
}

.dashboard-content-heading.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #a0830b;
  font-size: 19px;
  line-height: 30px;
  font-weight: 700;
}

.dashboard-content-heading.flex.profile {
  font-size: 17px;
  font-weight: 700;
}

.pool-title-widget {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 7px;
  padding-bottom: 10px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #f0f0f0;
  font-family: Futuralt, sans-serif;
  color: #000;
  font-size: 13px;
}

.pool-title-widget.no-border {
  border-bottom-style: none;
}

.extender-border {
  height: 1px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #a0830b;
}

.red-text {
  color: #ef4136;
}

.recent-transaction-card {
  margin-right: 10px;
  margin-bottom: 7px;
  margin-left: 10px;
  padding: 15px 25px 20px;
  background-color: #fff;
  box-shadow: 0 0 60px -35px rgba(0, 0, 0, 0.25);
  font-family: Futuralt, sans-serif;
  font-size: 13px;
}

.recent-transaction-card.edit-information {
  padding-top: 25px;
  padding-bottom: 25px;
}

.light-green-text {
  color: #8dc63f;
}

.dashboard-content-wrapper-top-border-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: -1.5vw;
  margin-left: -1.5vw;
}

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

.dummy-block {
  width: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.dummy-block.smaller {
  width: 10px;
}

.completed {
  width: 25%;
}

.completed.transaction-history {
  width: 23.333%;
}

.completed.mobile {
  display: none;
  width: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #bcbec0;
  text-transform: uppercase;
}

.completed.transaction-description {
  width: 30%;
  padding-right: 10px;
}

.investment-breakdown-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 1.5vw;
  margin-left: 1.5vw;
  padding-top: 2vw;
  padding-bottom: 2vw;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-family: Futuralt, sans-serif;
  font-size: 16px;
}

.investment-breakdown-content.current-investment {
  padding-right: 1.1vw;
  padding-left: 1.1vw;
}

.investment-breakdown-content.current-investment.transaction-history {
  position: relative;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.investment-breakdown-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 2vw 1.5vw;
  background-color: rgba(160, 131, 11, 0.05);
  font-family: Futuralt, sans-serif;
  color: #a0830b;
  font-size: 12px;
  text-transform: uppercase;
}

.investment-breakdown-header.completed-investment.transaction-history {
  background-color: #f0f0f0;
}

.investment-breakdown-header.all-messages {
  padding-right: 2.5vw;
  padding-left: 2.5vw;
}

.investment-breakdown-header.activity-log {
  padding-right: 2.5vw;
  padding-left: 2.5vw;
}

.investment-breakdown-block {
  padding-bottom: 2.7vw;
  background-color: #f2f2f2;
  box-shadow: 0 0 50px -30px rgba(0, 0, 0, 0.3);
}

.investment-progress-indicator {
  position: absolute;
  left: 0%;
  top: 2vw;
  right: auto;
  bottom: 0%;
  width: 20px;
  height: 20px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/example-bg.png');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.investment-progress-indicator.green {
  background-image: url('../images/icon-transaction-up-arrow-green.svg');
}

.investment-progress-indicator.gray {
  background-image: url('../images/icon-transaction-dash-grey.svg');
}

.investment-progress-indicator.red {
  background-image: url('../images/icon-transaction-up-arrow-red.svg');
}

.content-block {
  width: 12%;
  margin-right: 1.3%;
  font-weight: 700;
}

.content-block.mobile-header {
  display: none;
  width: auto;
  margin-right: 0%;
  margin-bottom: 7px;
  color: #a0830b;
  font-size: 12px;
  text-transform: uppercase;
}

.content-block.contribution-pool-open {
  width: 14%;
  margin-right: 2%;
}

.content-block.transaction-history {
  width: 16%;
  margin-right: 2.3%;
}

.content-block.transaction-history-decription {
  width: 23%;
  margin-right: 2.3%;
}

.content-block.referral-request-email {
  width: 23%;
  margin-right: 2%;
}

.content-block.referral-requests {
  width: 17%;
  margin-right: 1.75%;
}

.content-block.portfolio-managment {
  width: 13.7%;
}

.content-block.portfolio-management-pool {
  width: 18.7%;
}

.content-block.all-messages {
  width: 18.7%;
}

.content-block.all-message-name {
  width: 28.7%;
}

.content-block.action-block.no-margin {
  margin-right: 0%;
}

.c {
  width: 20%;
}

.c.auto {
  width: auto;
}

.table-info-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 1.5vw;
  margin-left: 1.5vw;
  padding-top: 1.2vw;
  padding-bottom: 1.2vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.table-info-flex.all-mesages {
  margin-right: 2.5vw;
  margin-left: 2.5vw;
}

.table-info-flex.activity-log {
  margin-right: 2.5vw;
  margin-left: 2.5vw;
}

.column-content {
  width: 12%;
  margin-right: 1.3%;
  font-size: 13px;
}

.column-content.amount {
  color: #a0830b;
}

.column-content.amount.contribution-pool-open {
  width: 14%;
  margin-right: 2%;
}

.column-content.amount.transaction-history {
  width: 16%;
  margin-right: 2.3%;
}

.column-content.amount.portfolio-managment {
  width: 13.7%;
}

.column-content.contibution-pool-open {
  width: 14%;
  margin-right: 2%;
}

.column-content.transction-history {
  width: 16%;
  margin-right: 2.3%;
}

.column-content.transaction-history-description {
  width: 23%;
  margin-right: 2.3%;
}

.column-content.referral-request-email {
  width: 23%;
  margin-right: 2%;
}

.column-content.referral-request {
  width: 17%;
  margin-right: 1.75%;
}

.column-content.portfolio-management {
  width: 13.7%;
}

.column-content.portfolio-managment-pool {
  width: 18.7%;
}

.column-content.all-messages {
  width: 18.7%;
}

.column-content.all-messages-name {
  width: 28.7%;
}

.column-content.activity-log {
  width: 40%;
}

.action-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 20%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.action-flex.auto {
  width: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.action-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 31.5%;
  height: 35px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: #a0830b;
  background-color: #f5f3e7;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  color: #a0830b;
  font-size: 80%;
  cursor: pointer;
}

.action-button:hover {
  background-color: #a0830b;
  color: #fff;
}

.action-button.delete {
  border-color: #ef4136;
  color: #ef4136;
}

.action-button.delete:hover {
  background-color: #ef4136;
  color: #fff;
}

.action-button.delete.transaction-history {
  width: 52%;
}

.action-button.delete.delete-alone {
  font-size: 100%;
}

.action-button.transaction-history {
  width: 43%;
}

.action-button.alone {
  width: 60%;
  font-size: 100%;
}

.action-button.archived-users {
  width: auto;
  padding-right: 10px;
  padding-left: 10px;
}

.pagination-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.pagination-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.pagination-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  height: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-color: rgba(100, 67, 0, 0.1);
  color: #644300;
  cursor: pointer;
}

.pagination-item.arrow {
  background-color: #a0830b;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/example-bg.png');
  background-position: 50% 50%;
  background-size: 40%;
  background-repeat: no-repeat;
}

.pagination-item.arrow.left {
  background-image: url('../images/icon-left-arrow-white.svg');
}

.pagination-item.arrow.right {
  background-image: url('../images/icon-right-arrow-white.svg');
}

.pagination-item.active {
  background-color: #644300;
  color: #fff;
}

.filter-button-flex-parent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.back-button-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2vw;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  font-family: Futuralt, sans-serif;
  color: #a0830b;
  font-size: 20px;
  line-height: 30px;
  text-decoration: none;
  cursor: pointer;
}

.back-button-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-image: url('../images/icon-left-arrow-brown.svg');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.custom-input-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  margin-bottom: 30px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.select-input {
  background-color: #a0830b;
  color: #fff;
}

.select-input:hover {
  border: 1px none #000;
}

.select-input:active {
  border-style: none;
}

.select-input:focus {
  border: 1px none #000;
}

.select-input.custom {
  padding: 10px 15px;
  font-size: 13px;
  text-transform: uppercase;
}

.download-csv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 25px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #39b54a;
  background-color: #39b54a;
  color: #fff;
  font-size: 12px;
}

.download-csv:hover {
  background-color: #fff;
  color: #39b54a;
}

.manage-referrals-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.send-referrals-block {
  width: 48.5%;
  padding: 3vw;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-color: #fff;
  box-shadow: 0 0 50px -28px rgba(0, 0, 0, 0.4);
}

.send-referral-code-heading {
  margin-bottom: 20px;
  padding-right: 5px;
  padding-bottom: 10px;
  padding-left: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #a0830b;
  font-size: 17px;
  line-height: 25px;
}

.send-button {
  background-color: #a0830b;
}

.referral-stats-wrapper-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 48.5%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.referral-stat-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 49%;
  min-height: 163px;
  padding: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #a0830b;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.referral-stat-divider-lone {
  width: 100%;
  height: 3px;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #fff;
}

.big-number-block {
  font-size: 30px;
  line-height: 40px;
}

.referral-history-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.referral-history-email-block {
  width: 67%;
  margin-right: 3%;
}

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

.bottom-margin._10 {
  margin-bottom: 10px;
}

.big-select {
  height: 46px;
  padding-right: 11px;
  border: 1px none #000;
  background-color: transparent;
  color: #a0830b;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
}

.big-select:hover {
  border-style: none;
}

.big-select:active {
  border-style: none;
}

.big-select:focus {
  border-style: none;
}

.portolio-management-form-block {
  margin-top: 30px;
  margin-bottom: 50px;
  padding: 4vw 3vw;
  background-color: #fff;
  box-shadow: 0 0 50px -30px rgba(0, 0, 0, 0.3);
}

.portolio-management-form-block.community {
  padding: 20px 0;
  background-color: #fff;
  box-shadow: none;
}

.portfolio-management-form-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.portfolio-management-form-flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.portfolio-management-form-flex.space-between,
.portfolio-management-form-flex-center.space-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.portfolio-management-form-flex.edit-information {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.portfolio-managment-input-block {
  width: 38%;
}

.portfolio-managment-input-block.first {
  margin-right: 2%;
}

.portfolio-managment-input-block.half {
  width: 49%;
}

.portfolio-managment-input-block.full {
  width: 100%;
}

.portfolio-managment-input-block.edit-information {
  width: 100%;
}

.porfolio-management-select-input {
  width: 100%;
  height: 50px;
  background-color: #a0830b;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
}

.porfolio-management-select-input:hover {
  border: 1px none #000;
}

.porfolio-management-select-input:active {
  border-style: none;
}

.porfolio-management-select-input:focus {
  border: 1px none #000;
}

.portfolio-management-submit-button {
  margin-bottom: 10px;
  padding: 14px 20px;
  border-style: solid;
  border-width: 1px;
  border-color: #a0830b;
  background-color: #a0830b;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.portfolio-management-submit-button:hover {
  background-color: #fff;
  color: #a0830b;
}

.text-input-field.custom {
  width: 100%;
  min-width: 100%;
}

.custom-text-input {
  width: 40%;
}

.submit-button-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.send-message-button {
  border-style: solid;
  border-width: 1px;
  border-color: #a0830b;
  background-color: #a0830b;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  font-size: 15px;
  line-height: 20px;
}

.send-message-button:hover {
  background-color: #fff;
  color: #a0830b;
}

.send-message-button:active {
  border-color: #a0830b;
}

.send-message-button:focus {
  border-color: #a0830b;
}

.send-message-button.update {
  font-size: 16px;
  line-height: 28px;
}

.message-widget-block {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.select-input.custom {
  height: 100%;
  margin-bottom: 0px;
}

.select-input.custom.no-caps {
  font-size: 14px;
  text-transform: capitalize;
}

.select-input.custom.no-caps.dark-brown {
  background-color: #644300;
}

.button {
  border-style: solid;
  border-width: 1px;
  border-color: #a0830b;
  background-color: #a0830b;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.button:hover {
  background-color: #fff;
  color: #a0830b;
}

.button:active {
  border-color: #a0830b;
}

.button:focus {
  border-color: #a0830b;
}

.button.dark-brown {
  border-color: #644300;
  background-color: #644300;
}

.button.dark-brown:hover {
  background-color: #fff;
  color: #644300;
}

.button.margin-bottom {
  margin-bottom: 10px;
}

.margin-left {
  margin-left: 15px;
}

.action-block {
  width: 20%;
}

.profile-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  padding-right: 20%;
  padding-bottom: 10px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #bcbec0;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.profile-title {
  color: #bcbec0;
  font-size: 13px;
}

.message-block {
  width: 48%;
}

.pools-flex-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  margin-right: -1.5%;
  margin-bottom: 60px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pool-card-upper-2 {
  margin-right: 25px;
  margin-bottom: 10px;
  margin-left: 25px;
}

.card-bottom-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 25px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: Futuralt, sans-serif;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
}

.card-bottom-flex.green-pool {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #39b54a;
}

.card-bottom-flex.black-pool {
  background-color: #000;
}

.card-bottom-flex.brown-pools {
  background-color: #a0830b;
}

.pool-title-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 7px;
  padding-bottom: 10px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #f0f0f0;
  font-family: Futuralt, sans-serif;
  color: #000;
  font-size: 13px;
}

.brown-text-2 {
  color: #a0830b;
}

.pool-type-block {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.pool-type-block.green-pool {
  background-color: #39b54a;
}

.pool-type-block.black-pool {
  background-color: #000;
}

.pool-type-block.brown-pools {
  background-color: #a0830b;
}

.pool-card-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 30px;
  margin-left: 30px;
  padding-bottom: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.total-subscription-block {
  color: #bcbec0;
  font-weight: 700;
}

.subscription-number {
  color: #bcbec0;
  font-size: 40px;
  line-height: 60px;
  font-weight: 700;
}

.subscription-number.green-text {
  color: #39b54a;
}

.margin-top {
  margin-top: 40px;
}

.search-input-tag {
  width: 40%;
}

.black-text {
  color: #000;
}

.back-button-parent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.overlay-prompt {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 10000;
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0.5))
  );
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  opacity: 0;
}

.delete-prompt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 75vw;
  max-width: 700px;
  padding: 3vw 5vw 5vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  text-align: center;
}

.delete-button-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3vw;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Styling for community */

.cmnt_content_wrapper {
  display: flex;
  position: relative;
  height: 100%;
}

.cmnt_content_options {
  width: 250px;
}

.cmnt_content_main {
  flex-basis: 1 1 0%;
  background: white;
  height: 100%;
  width: 100%;
  margin-left: 22px;
}

.cmnt_nav_link {
  display: flex !important;
  padding: 10px 16px;
  display: block;
  text-decoration: none !important;
  align-items: center;
  background: #fff;
  margin-bottom: 5px;
}

.cmnt_nav_link:last-child {
  margin-bottom: 0px;
}

.cmnt_nav_link.active {
  background: #a0830b;
}

.cmnt_nav_link_img {
  width: 20px;
}

.cmnt_nav_link_text {
  font-family: Futuralt, sans-serif;
  font-size: 15px;
  margin: 0px;
  margin-left: 9px;
  color: #1e1e1e;
}

.cmnt_nav_link_text.active {
  color: #fff;
}

.cmnt_broadcast_wrapper {
  padding: 25px 40px;
  height: 100%;
  overflow-y: hidden;
}
.cmnt_broadcast_flow {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}
.cmnt_broadcast_heading {
  font-size: 20px;
  font-weight: medium;
}

/* // community member */

.cmnt_member_filter_flex {
  display: grid;
  background: #ffffff;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 8px 16px;
}

.cmnt_member_filter_flex.suggested_deal {
  padding: 8px 0px;
  margin-top: 10px;
}

.cmnt_member_textStyle {
  font-family: Futuralt, sans-serif;
  margin: 0px;
  font-size: 14px;
  color: #282a2e;
}

.cmnt_member_textStyle.gray {
  color: #7a7e85;
}

.cmnt_member_textStyle.heading {
  color: #fff;
  font-size: 14px;
}
.cmnt_member_item_margin {
  margin-left: 8px;
}
.cmnt_member_item_margin:first-child {
  margin-left: 8px;
}
.cmnt_member_item_flex {
  display: flex;
  align-items: center;
}
.cmnt_member_item_image {
  width: 16px;
}

.cmnt_member_search {
  display: block;
  width: 100%;
  height: 32px;
  background: #fff;
  font-family: Futuralt, sans-serif;
  border: 1px solid #ced1d6;
  border-radius: 4px;
  color: #7a7e85;
  font-size: 13px;
  padding: 0 8px 0 20px;
  outline: none;
}

.cmnt_member_cell_padding {
  padding: 12px 16px;
}
.cmnt_member_cell_grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr)
    minmax(0, 1fr) 100px;
}

.cmnt_member_cell_grid.white {
  background: #fff;
}
.cmnt_member_cell_grid.white:nth-child(even) {
  background: #fafbfc;
}
.cmnt_member_cell_grid.gold {
  background: #a0830b;
}

.cmnt_member_wrapper {
  height: 100%;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
}

.cmnt_member_table_section {
  flex: 1 1 0%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: hidden;
}

.cmnt_member_table_loader {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 20vh;
}

.cmnt_member_table_scroll {
  height: 100%;
  overflow-y: auto;
}

.cmnt_member_table_scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.cmnt_member_table_scroll::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgb(180, 169, 169);
}

.cmnt_member_table_scroll::-webkit-scrollbar-thumb {
  background-color: #a0830b;
  border-radius: 8px;
}

.cmnt_member_cell_padding {
  padding: 12px 16px;
}
.cmnt_member_cell_grid {
  display: grid;
  align-items: center;
  border-bottom: 1px solid #ECEDEF;

  grid-template-columns:
    minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr)
    minmax(0, 1fr);
  /* grid-template-columns:
    minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr)
    minmax(0, 1fr) 100px; */
}
.cmnt_member_textStyle {
  font-family: Futuralt, sans-serif;
  margin: 0px;
  font-size: 14px;
  color: #282a2e;
}

.cmnt_member_mt_8 {
  margin-top: 8px;
}

.cmnt_member_action_container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cmnt_member_cell_grid.white {
  background: #fff;
}
.cmnt_member_cell_grid.white:nth-child(even) {
  background: #fafbfc;
}
.cmnt_member_cell_grid.gold {
  background: #a0830b;
}
.hide_on_desktop {
  display: none;
}

/* action styling */

.action-wrapper {
  position: relative;

  width: auto;
}
.action-icon {
  width: 4px;
  cursor: pointer;
  display: block;
}
.action-dropdown {
  min-width: 111px;
  position: absolute;
  right: 0;
  z-index: 500;
  top: 30px;
  border-radius: 5px;
  padding: 8px 16px;
  background-color: #fffcf1;
}

.action-dropdown.black {
  background-color: #000;
}

.action-item {
  color: #6b6b6b;
  font-family: Futuralt, sans-serif;
  font-size: 13px;
  white-space: nowrap;
  padding-block: 6px;
  cursor: pointer;
  list-style: none;
  border-bottom: 1px solid #cdcdcd;
}

.action-item.black {
  color: #fff;
}

.action-item:last-child {
  border: none;
}

/* suggested deals */

.cmnt_deal_room_inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: hidden;
}

.cmnt_deal_room_inner.padding {
  padding: 25px 40px;
}

.cmnt_deal_room_container_flow {
  height: 100%;
  padding-right: 5px;
  overflow-y: auto;
}

.cmnt_deal_room_container_flow::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.cmnt_deal_room_container_flow::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgb(180, 169, 169);
}

.cmnt_deal_room_container_flow::-webkit-scrollbar-thumb {
  background-color: #a0830b;
  border-radius: 8px;
}

.cmnt_deal_room_padding_20 {
  padding-top: 20px;
}
.cmnt_deal_room_margin_22 {
  margin-top: 22px;
}
.cmnt_deal_room_margin_14 {
  margin-top: 14px;
}

.cmnt_deal_room_flex {
  display: flex;
  padding: 24px 30px;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #dee0e3;
  margin-bottom: 27px;
  column-gap: 40px;
}

.cmnt_deal_room_flex:last-child {
  margin-bottom: 0px;
}

.cmnt_deal_room_flex_left {
  width: 60%;
}
.cmnt_deal_room_flex_right {
  width: 40%;
}

.cmnt_deal_room_text {
  color: #000;
  font-weight: normal;
  display: block;
  font-family: Futuralt, sans-serif;
  font-size: 14px;
  margin: 0px;
}

.cmnt_deal_room_text.description {
  color: #6c6c6c;
}
.cmnt_deal_room_text.button {
  color: #fff;
}
.cmnt_deal_room_text.title {
  font-size: 16px;
  margin-bottom: 6px;
  margin-top: 15px;
}
.cmnt_deal_room_text.heading {
  font-size: 20px;
  letter-spacing: 0px;
  text-transform: capitalize;
}

.cmnt_deal_room_button {
  position: relative;
  height: 35px;
  display: flex;
  cursor: pointer;
  outline: none;
  width: 100%;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  padding: 0px 16px;
  color: white;
  background: #7f7f7f;
}

.cmnt_deal_table_loader {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 20vh;
}

.cmnt_deal_room_button.gold {
  background: #a0830b;
}

.cmnt_deal_room_margin_12 {
  margin-top: 12px;
}

.cmnt_deal_room_flex_date {
  display: flex;
  justify-content: end;
}

.suggested_deal_card {
  display: flex;
  align-items: center;
  padding-block: 24px;
  border-bottom: 1px solid #dee0e3;
}

.suggested_deal_card:last-child {
  border: none;
}

.suggested_deal_card_deal {
  width: 40%;
  padding-right: 20px;
}
.suggested_deal_card_buttons {
  padding-top: 20px;
  width: 20%;
}
.suggested_deal_card_contact {
  width: 40%;
  padding-left: 20px;
  padding-right: 6px;
}

/* deal room styling */

.cmnt_suggest_container {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: hidden;
}

.cmnt_suggest_container_flow {
  height: 100%;
  padding-top: 35px;
  padding-inline: 54px;
  overflow-y: auto;
}

.cmnt_suggest_container_flow::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.cmnt_suggest_container_flow::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgb(180, 169, 169);
}

.cmnt_suggest_container_flow::-webkit-scrollbar-thumb {
  background-color: #a0830b;
  border-radius: 8px;
}

.cmnt_suggest_margin_22 {
  margin-top: 22px;
}
.cmnt_suggest_margin_14 {
  margin-top: 14px;
}

.cmnt_suggest_grid {
  display: grid;
  column-gap: 30px;
  row-gap: 15px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cmnt_suggest_inputLabel {
  color: #000;
  font-weight: normal;
  display: block;
  font-family: Futuralt, sans-serif;
  font-size: 14px;
  margin-bottom: 6px;
}

.cmnt_suggest_inputField {
  outline: none;
  height: 42px;
  padding: 0 16px;
  display: block;
  background: #f2f4f7;
  border-radius: 3px;
  border: none;
  width: 100%;
  color: #838383;
  /* color: #afadad; */
  font-family: Futuralt, sans-serif;
}

.cmnt_suggest_inputField.textarea {
  height: auto;
  min-height: 60px;
  padding-block: 16px;
}

.cmnt_suggest_upload {
  position: relative;
  height: 35px;
  display: flex;
  cursor: pointer;
  outline: none;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0px 16px;
  color: white;
  background: #7f7f7f;
}

.cmnt_suggest_upload_file {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.cmnt_suggest_upload_text {
  color: #fff;
  font-weight: normal;
  display: block;
  font-family: Futuralt, sans-serif;
  font-size: 14px;
  margin: 0;
}
.cmnt_suggest_disclaimer {
  color: #a0a2ab;
  font-weight: normal;
  display: block;
  font-family: Futuralt, sans-serif;
  font-size: 12px;
  margin: 0;
}
.cmnt_suggest_upload_icon {
  width: 17px;
}
.cmnt_suggest_submit_button {
  width: 100%;
  display: block;
  height: 42px;
  border-radius: 50px;
  margin-top: 42px;
  margin-bottom: 50px;
  background: #a0830b;
  color: #fff;
  outline: none;
}

.cmnt_suggest_submit_button:disabled {
  background: #a0830b80;
  pointer-events: none;
  cursor: not-allowed;
}

.cmnt_member_table_empty{
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Futuralt, sans-serif;
  font-size: 14px;
  color: #282a2e;
}

.cmnt_member_filter_block {
  display: grid;
  background: #f5f6f7;
  width: 100%;

  padding: 8px 16px;
}
.cmnt_member_filter_block.suggested_deal {
  padding: 8px 0px;
  margin-top: 10px;
  background: transparent;
}

.custom_loader {
  border: 2.5px solid #f2f3f3;
  border-radius: 50%;
  border-top: 2.5px solid var(--primary-color);
  width: 18px;
  height: 18px;
  -webkit-animation: spin 0.6s linear infinite;
  animation: spin 0.6s linear infinite;
  margin: 0 auto;
}

.PhoneInput {
  outline: none;
  height: 42px;
  padding: 0 16px;
  display: block;
  background: #f2f4f7;
  border-radius: 3px;
  border: none;
  width: 100%;
  color: #838383;
  /* color: #afadad; */
  font-family: Futuralt, sans-serif;
}

.PhoneInputInput{
  border: none;
  outline: none;
  background: transparent;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}






/* @media screen and (max-width: 479px) {
  .hide_on_mobile {
    display: none;
  }
  .cmnt_member_cell_grid {
    display: flex;
  }
  .cmnt_flex_1{
    flex: 1 1 0%;
  }
  .cmnt_member_filter_flex{
    display: block;
  }
  .cmnt_member_item_flex{
    margin-bottom: 6px;
  }
} */

@media screen and (max-width: 479px) {
  .cmnt_content_wrapper {
    display: block;
    position: relative;
    height: auto;
  }

  .cmnt_member_mobile_flex {
    display: flex;
  }
  .cmnt_member_mobile_left {
    width: 40%;
  }
  .cmnt_member_mobile_right {
    width: 60%;
  }

  .suggested_deal_card_deal{
    flex: 1 1 0%;
    width: 100%;
  }
  .suggested_deal_card_contact{
    width: 100%;
    padding-left: 0px;
    /* border-top: 1px dotted #dee0e3; */
    margin-top: 12px;
    padding-top: 10px;
  }

  .cmnt_deal_room_flex_date{
    justify-content: start;
  }

  .suggested_deal_card_buttons{
    width: auto;
  }

  .cmnt_content_options {
    width: auto;
    margin-bottom: 30px;
  }

  .cmnt_content_main {
    background: white;
    height: 80vh;
    width: auto;
    margin-left: 0;
  }

  .hide_on_mobile {
    display: none;
  }
  .cmnt_member_cell_grid {
    display: flex;
  }
  .cmnt_flex_1 {
    flex: 1 1 0%;
  }
  .cmnt_member_filter_flex {
    display: block;
  }
  .cmnt_member_item_flex {
    margin-bottom: 6px;
  }

  .hide_on_mobile {
    display: none;
  }
  .hide_on_desktop {
    display: block;
  }
  .cmnt_member_cell_grid {
    display: flex;
  }
  .cmnt_flex_1 {
    flex: 1 1 0%;
  }
  .cmnt_deal_room_inner.padding {
    padding: 20px;
  }
  .cmnt_deal_room_button {
    padding: 0 6px;
  }

  .cmnt_suggest_grid {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  .cmnt_suggest_container_flow {
    padding-top: 20px;
    padding-inline: 20px;
  }

  .cmnt_suggest_margin_22 {
    margin-top: 10px;
  }

  .cmnt_suggest_disclaimer{
    font-size: 14px;
  }

  .cmnt_content_options {
    width: auto;
    display: grid;
    column-gap: 5px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 30px;
  }

  /* .cmnt_content_main {
    background: white;
    height: auto;
    width: auto;
    margin-left: 0;
  } */

  .cmnt_nav_link {
    padding: 10px 5px;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0px;
  }

  .cmnt_nav_link_text {
    font-size: 12px;
    text-align: center;
    margin-left: 0px;
  }


}

@media screen and (max-width: 991px) {
  .overview-card-holder {
    margin-right: -2%;
  }
  .pool-amount.small {
    font-size: 17px;
  }
  .pool-card.big {
    min-width: 300px;
  }
  .pool-card.small {
    width: 31%;
    min-width: 216.14584350585938px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .total-subscription-flex-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .contribution-number {
    margin-bottom: 10px;
  }
  .dashboard-content-wrapper {
    height: 67vh;
  }
  .dashboard-content-heading.flex {
    margin-top: -24px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 18px;
    line-height: 25px;
  }
  .completed {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 200px;
    -ms-flex: 1 0 200px;
    flex: 1 0 200px;
  }
  .completed.mobile {
    display: block;
    padding-bottom: 10px;
  }
  .investment-breakdown-content.current-investment {
    padding-bottom: 20px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .investment-breakdown-content.current-investment.transaction-history {
    padding-top: 40px;
  }
  .investment-breakdown-header {
    display: none;
  }
  .investment-breakdown-header.completed-investment {
    display: none;
  }
  .investment-breakdown-header.completed-investment.transaction-history {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .investment-breakdown-header.completed-investment.transaction-history.tab-display-none {
    display: none;
  }
  .investment-breakdown-block.padding-mobile {
    padding-top: 12px;
  }
  .investment-progress-indicator {
    margin-bottom: 18px;
    margin-left: 15px;
  }
  .content-block.mobile-header {
    display: block;
  }
  .table-info-flex {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .column-content {
    width: 30%;
    margin-bottom: 15px;
  }
  .column-content.amount.contribution-pool-open {
    width: 30%;
  }
  .column-content.amount.transaction-history {
    width: 30%;
  }
  .column-content.amount.portfolio-managment {
    width: 30%;
  }
  .column-content.contibution-pool-open {
    width: 30%;
  }
  .column-content.transction-history {
    width: 30%;
  }
  .column-content.transaction-history-description {
    width: 30%;
  }
  .column-content.referral-request-email {
    width: 30%;
  }
  .column-content.referral-request {
    width: 30%;
  }
  .column-content.portfolio-management {
    width: 30%;
  }
  .column-content.portfolio-managment-pool {
    width: 30%;
  }
  .column-content.activity-log {
    width: 100%;
  }
  .action-flex.auto.left {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .referral-history-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .referral-history-email-block {
    margin-right: 0%;
    margin-bottom: 15px;
  }
  .action-block.users {
    width: 30%;
  }
  .profile-flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .body {
    height: auto;
  }
  .logo-block {
    width: 80px;
    height: 80px;
  }
  .login-form-block {
    width: 80vw;
    margin-top: 20px;
    padding-right: 7vw;
    padding-left: 7vw;
  }
  .dashboard-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .logo-and-nav-block {
    position: static;
    margin-top: 38px;
    margin-left: 5vw;
    padding-bottom: 30px;
  }
  .pool-nav-mobile-links-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    width: 306.796875px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .pool-mobile-nav-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 50%;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    background-color: #a0830b;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
  }
  .pool-mobile-nav-link.just-bottom {
    border-bottom-style: none;
  }
  .pool-mobile-nav-link.bottom {
    border-right-style: none;
    border-bottom-style: none;
  }
  .pool-mobile-nav-link.last {
    border-top: 1px solid #fff;
  }
  .pool-mobile-nav-link.no-right-border {
    border-right-style: none;
  }
  .mobile-nav-link {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 102.265625px;
    padding: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    background-color: #a0830b;
    color: #fff;
    font-size: 10px;
    line-height: 15px;
    text-align: center;
    text-transform: uppercase;
  }
  .mobile-nav-link-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .dashboard-logo {
    width: 80px;
    height: 80px;
    max-height: none;
    max-width: none;
    margin-bottom: 20px;
  }
  .mobile-nav-cover {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  .mobile-nav-cover.w--current {
    opacity: 0;
  }
  .nav-block-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .mobile-nav-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    padding-right: 0px;
    padding-bottom: 0px;
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/example-bg.png');
    background-position: 50% 50%;
    background-size: 90%;
    background-repeat: no-repeat;
  }
  .mobile-nav-icon.volition-blue-white {
    background-image: url('../images/icon-volition-blue-white.svg');
  }
  .mobile-nav-icon.transaction-white {
    background-image: url('../images/icon-transaction-history-white.svg');
  }
  .mobile-nav-icon.referrals {
    background-image: url('../images/icon-referrals-black.svg');
  }
  .mobile-nav-icon.profile {
    background-image: url('../images/icon-profile-black.svg');
    background-size: 80%;
  }
  .mobile-nav-icon.dashboard-white {
    background-image: url('../images/icon-dashboard-white.svg');
    background-size: 77%;
  }
  .mobile-nav-icon.transaction {
    background-image: url('../images/icon-transaction-history-black.svg');
  }
  .mobile-nav-icon.volition-blue {
    background-image: url('../images/icon-volition-blue-black.svg');
  }
  .mobile-nav-icon.dashboard {
    background-image: url('../images/icon-dashboard-black.svg');
    background-size: 77%;
  }
  .mobile-nav-icon.pools {
    background-image: url('../images/icon-contribution-pool-black.svg');
  }
  .mobile-nav-icon.profile-white {
    background-image: url('../images/icon-profile-white.svg');
    background-size: 80%;
  }
  .mobile-nav-icon.referrals-white {
    background-image: url('../images/icon-referrals-white.svg');
  }
  .mobile-nav-icon.pool-white {
    background-image: url('../images/icon-contribution-pool-white.svg');
  }
  .nav-block {
    margin-top: 5px;
  }
  .mobile-logo-wrapper {
    display: none;
    box-shadow: 0 0 50px -30px rgba(0, 0, 0, 0.4);
  }
  .dashboard-inner-wrapper {
    height: auto;
    margin-left: 5vw;
    padding: 32px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .pool-card.big {
    min-width: 320px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .pool-card.big.first {
    margin-right: 0px;
  }
  .pool-card.small {
    width: 47%;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .pool-card.user-profile {
    margin-bottom: 30px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .view-all-button.small {
    min-width: 110px;
  }
  .pool-section-inner-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .dashboard-content-wrapper {
    height: auto;
    margin-top: 20px;
  }
  .dashboard-content-wrapper.recent-transaction {
    width: auto;
    margin-bottom: 50px;
  }
  .dashboard-content-wrapper.recent-transaction.last {
    margin-bottom: 0px;
  }
  .dashboard-content-wrapper.messages.half {
    width: 100%;
    margin-bottom: 30px;
  }
  .dashboard-content-wrapper.messages.half.last {
    margin-bottom: 0px;
  }
  .dashboard-content-heading {
    margin-top: -20px;
    font-size: 28px;
    line-height: 30px;
  }
  .recent-transaction-card {
    margin-bottom: 10px;
  }
  .completed.transaction-description {
    padding-right: 20px;
  }
  .investment-breakdown-header.completed-investment.transaction-history {
    display: none;
  }
  .investment-progress-indicator {
    top: 20px;
  }
  .column-content.amount.transaction-history {
    width: 47%;
  }
  .column-content.transction-history {
    width: 47%;
  }
  .column-content.transaction-history-description {
    width: 47%;
  }
  .column-content.referral-request-email {
    width: 48%;
  }
  .column-content.referral-request {
    width: 48%;
  }
  .column-content.portfolio-management {
    width: 48%;
  }
  .column-content.portfolio-managment-pool {
    width: 48%;
  }
  .column-content.all-messages {
    width: 48%;
  }
  .column-content.all-messages-name {
    width: 48%;
  }
  .column-content.action-block {
    width: 40%;
  }
  .action-flex.auto {
    min-width: 180.31251525878906px;
  }
  .action-button {
    min-width: 56.7881965637207px;
  }
  .action-button.alone {
    width: 70px;
  }
  .filter-button-flex-parent {
    margin-top: 10px;
  }
  .custom-input-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .manage-referrals-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .send-referrals-block {
    width: 100%;
    margin-bottom: 30px;
  }
  .referral-stats-wrapper-flex {
    width: 100%;
  }
  .action-block.users {
    width: 47%;
  }
  .message-block {
    width: 100%;
    margin-bottom: 40px;
  }
  .message-block.last {
    margin-bottom: 0px;
  }
  .search-input-tag {
    width: 70%;
  }
}

@media screen and (max-width: 479px) {
  .custom-ml-27 {
    margin-left: 15px !important;
  }

  h1 {
    margin-bottom: 10px;
  }
  .login-form-wrapper {
    width: 100%;
    margin-top: 40px;
    padding-right: 10vw;
    padding-left: 10vw;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .login-form-block {
    width: 100%;
    max-width: none;
    margin-right: 0vw;
    padding-right: 7vw;
    padding-left: 7vw;
  }
  .login-button:hover {
    border-color: #a0830b;
  }
  .login-button:active {
    border-color: #a0830b;
  }
  .login-button:focus {
    border-color: #a0830b;
  }
  .logo-and-nav-block {
    margin-top: 30px;
    margin-right: 5vw;
  }
  .pool-nav-mobile-links-wrapper {
    width: auto;
  }
  .pool-mobile-nav-link.last {
    border-top: 1px solid #fff;
  }
  .mobile-nav-link {
    width: 33.33%;
    padding: 25px 10px;
    font-size: 11px;
  }
  .mobile-nav-link-flex {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }
  .dashboard-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }
  .mobile-nav-cover {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
  }
  .nav-block-wrapper {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .mobile-logo-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }
  .dashboard-inner-wrapper {
    padding: 5vw;
  }
  .section-heading-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .overview-card-holder {
    margin-right: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pool-amount {
    font-size: 20px;
  }
  .pool-amount.small {
    font-size: 15px;
  }
  .pool-card {
    width: auto;
  }
  .pool-card.big {
    width: 100%;
    min-width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .pool-card.small {
    width: 100%;
    min-width: auto;
  }
  .pool-card.small.right {
    margin-right: 0px;
  }
  .dashboard-content-wrapper.recent-transaction {
    margin-top: 0px;
  }
  .dashboard-content-wrapper-inner {
    overflow: hidden;
  }
  .dummy-block.none {
    width: 0px;
  }
  .completed {
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .completed.transaction-history {
    width: 100%;
  }
  .completed.transaction-description {
    width: auto;
  }
  .investment-breakdown-content.current-investment {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .investment-breakdown-block {
    padding-bottom: 20px;
  }
  .investment-progress-indicator {
    margin-left: 10px;
  }
  .table-info-flex {
    margin-right: 5vw;
    margin-left: 5vw;
  }
  .column-content {
    width: 100%;
  }
  .column-content.amount.transaction-history {
    width: 100%;
  }
  .column-content.amount.portfolio-managment {
    width: 100%;
  }
  .column-content.contibution-pool-open {
    width: 100%;
  }
  .column-content.transction-history {
    width: 100%;
  }
  .column-content.transaction-history-description {
    width: 100%;
  }
  .column-content.referral-request-email {
    width: 100%;
  }
  .column-content.referral-request {
    width: 100%;
  }
  .column-content.portfolio-management {
    width: 100%;
  }
  .column-content.portfolio-managment-pool {
    width: 100%;
  }
  .column-content.all-messages {
    width: 100%;
  }
  .column-content.all-messages-name {
    width: 100%;
  }
  .filter-button-flex-parent {
    margin-top: 15px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .custom-input-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .download-csv {
    font-size: 10px;
  }
  .send-button {
    width: 40%;
  }
  .referral-stats-wrapper-flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .referral-stat-block {
    width: 100%;
    min-width: 140px;
    margin-bottom: 10px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .portfolio-management-form-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .portfolio-managment-input-block {
    width: 100%;
  }
  .portfolio-managment-input-block.half {
    width: 100%;
  }
  .custom-text-input {
    width: 100%;
  }
  .margin-left.no-margin {
    margin-left: 0px;
  }
  .action-block.users {
    width: 100%;
  }
  .profile-title {
    font-size: 12px;
  }
  .profile-value {
    font-size: 14px;
  }
  .search-input-tag {
    width: 100%;
  }
  .margin-bottom {
    margin-bottom: 10px;
  }
}

.custom-checkbox {
  display: flex;
  align-items: center;
}

.checkbox-input-wrapper {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background-color: #f0f0f0;
  border: 1px solid #d7d6d6;
  border-radius: 2px;
  flex-shrink: 0;
}

.checkbox-input-wrapper.checked {
  border: 1px solid #a0830b;
}

.checkbox-input-custom {
  position: absolute;
  top: 0;
  bottom: 0;
  cursor: pointer;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 20;
}

.checkbox-icon {
  display: inline-block;
  width: 18px;
}

.checkbox-label {
  flex-shrink: 0;
  margin-left: 12px;
  margin-bottom: 0;
  color: #000;
  font-family: 'Futuralt';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.custom-ml-27 {
  margin-left: 27px;
}

.custom-shrink-0 {
  flex-shrink: 0;
}

@font-face {
  font-family: 'Futuralt';
  src: url('../fonts/FuturaLT.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Futuralt';
  src: url('../fonts/FuturaLT-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Futuralt';
  src: url('../fonts/FuturaLT-BookOblique.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Futuralt';
  src: url('../fonts/FuturaLT-LightOblique.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Futuralt';
  src: url('../fonts/FuturaLT-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Butler';
  src: url('../fonts/Butler_Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
