/* Font Import */
@font-face {
  font-family: 'gilroy-regular';
  src: url('../fonts/gilroy/regular/Gilroy-Regular.eot');
  src: url('../fonts/gilroy/regular/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/gilroy/regular/Gilroy-Regular.woff2') format('woff2'),
    url('../fonts/gilroy/regular/Gilroy-Regular.woff') format('woff'),
    url('../fonts/gilroy/regular/Gilroy-Regular.ttf') format('truetype'),
    url('../fonts/gilroy/regular/Gilroy-Regular.svg#Gilroy-Regular') format('svg');
}

@font-face {
  font-family: 'gilroy-medium';
  src: url('../fonts/gilroy/medium/Gilroy-Medium.eot');
  src: url('../fonts/gilroy/medium/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/gilroy/medium/Gilroy-Medium.woff2') format('woff2'),
    url('../fonts/gilroy/medium/Gilroy-Medium.woff') format('woff'),
    url('../fonts/gilroy/medium/Gilroy-Medium.ttf') format('truetype'),
    url('../fonts/gilroy/medium/Gilroy-Medium.svg#Gilroy-Medium') format('svg');
}

@font-face {
  font-family: 'gilroy-light';
  src: url('../fonts/gilroy/light/Gilroy-Light.eot');
  src: url('../fonts/gilroy/light/Gilroy-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/gilroy/light/Gilroy-Light.woff2') format('woff2'),
    url('../fonts/gilroy/light/Gilroy-Light.woff') format('woff'),
    url('../fonts/gilroy/light/Gilroy-Light.ttf') format('truetype'),
    url('../fonts/gilroy/light/Gilroy-Light.svg#Gilroy-Light') format('svg');
}

@font-face {
  font-family: 'gilroy-semibold';
  src: url('../fonts/gilroy/semibold/Gilroy-SemiBold.eot');
  src: url('../fonts/gilroy/semibold/Gilroy-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/gilroy/semibold/Gilroy-SemiBold.woff2') format('woff2'),
    url('../fonts/gilroy/semibold/Gilroy-SemiBold.woff') format('woff'),
    url('../fonts/gilroy/semibold/Gilroy-SemiBold.ttf') format('truetype'),
    url('../fonts/gilroy/semibold/Gilroy-SemiBold.svg#Gilroy-SemiBold') format('svg');
}
/* Variables */
* {
  --font-size-xs: 12px;
  --font-size-s: 14px;
  --font-size-m: 18px;
  --font-size-l: 20px;
  --font-size-xl: 28px;
  --font-size-xxl: 34px;

  --font-size-large-heading: 56px;
  --font-size-number: 100px;
  --font-size-column-heading: 14px;
  --font-size-column-link: 12px;
}
@media screen and (min-width: 720px) {
  * {
    --font-size-xs: 14px;
    --font-size-s: 16px;
    --font-size-m: 20px;
    --font-size-l: 20px;
    --font-size-xl: 32px;
    --font-size-xxl: 40px;

    --font-size-large-heading: 56px;
    --font-size-number: 120px;
    --font-size-column-heading: 16px;
    --font-size-column-link: 14px;
  }

}
@media screen and (min-width: 1024px) {
    * {

        --font-size-l: 24px;

        --font-size-large-heading: 64px;
        --font-size-number: 150px;
    }
}

* {
  --margin-s: 12px;
  --margin-m: 16px;
  --margin-l: 24px;
  --margin-xl: 36px;
  --margin-xxl: 42px;

  --padding-vs: 6px;
  --padding-s: 8px;
  --padding-m: 12px;
  --padding-l: 20px;
  --padding-xl: 30px;
  --padding-xxL: 48px;

  --border-radius-s: 6px;
  --border-radius-m: 12px;
  --border-radius-l: 16px;
}
@media screen and (min-width: 720px) {
  * {
    --margin-s: 12px;
    --margin-m: 18px;
    --margin-l: 24px;
    --margin-xl: 36px;
    --margin-xxl: 42px;

    --padding-vs: 8px;
    --padding-s: 12px;
    --padding-m: 16px;
    --padding-l: 24px;
    --padding-xl: 36px;
    --padding-xxL: 64px;

    --padding-12-24: 12px 16px 12px 24px;

    --border-radius-s: 8px;
    --border-radius-m: 16px;
    --border-radius-l: 24px;
  }

}
@media screen and (min-width: 1024px) {
}

* {
  --color-text: #000000;
  --color-background: #ffffff;
  --color-background-2: #F5F8FF;
  --color-cta-blue: #136FD6;
  --color-cta-text: #ffffff;
  --color-blue-op: #2D9CDB10;
  --color-blue: #2D9CDB;
  --color-blue-text:#3B82F6;
  --color-blue-number:#76A5E6;
  --color-darkblue: #165FA3;
  --color-orange-op: #F2994A10;
  --color-orange: #F2994A;
  --color-green-op: #21965310;
  --color-green: #219653;
  --color-purple-op: #9B51E010;
  --color-purple: #9B51E0;
  --color-red-op: #F6523C10;
  --color-red: #F6523C;

  --lg-darkblue: linear-gradient(90deg, #000C40 0%, #607D8B 100%);
  --lg-black: linear-gradient(90deg, #536976 0%, #292E49 100%);
  --lg-green: linear-gradient(98.55deg, #40BC75 46.92%, #1D643F 93.46%);
  --lg-orange: linear-gradient(90deg, #DE6262 0%, #FFB88C 100%);

  --tablet-size: 720px;
  --laptop-size: 1024px;

  --max-width: 1200px;
  --max-width-large: 1300px;

  --gutter: 24px;
}
@media screen and (min-width: var(--tablet-size)) {
  * {
    --gutter: 40px;
  }
}
@media screen and (min-width: var(--laptop-size)) {
  * {
    --gutter: 100px;
  }
}



/* Global styling */
body {
  font-family: 'gilroy-regular', sans-serif;
  color: #808080;
  background: #FAFAFA;
}
.pretty-element-wrapper {
  padding: 0;
  display: inline-block;
}
.pretty-element-wrapper label.control-label {
  padding: 0;
}
.small-tagline,
.big-tagline,
.small-tagline a,
.big-tagline a {
  color: rgb(0,0,0);
}
.big-tagline {
  font-size: 20px;
  font-family: 'gilroy-medium';
}
.block {
  padding-bottom: 20px;
}
.ui-widget-overlay {
  z-index: 0;
}

/* Main menu override */
.navbar-default .navbar-nav > li > a {
  color: #000;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #000;
  background-color: #e7e7e7;
}

@media (min-width: 768px) {
  .navbar-nav {
    float: right;
  }
}

/* Button Overide */
.btn-primary {
  background: #3B82F6;
}

.btn-grey {
  background: #EDF0F4;
}
.flag-bookmark a {
  color: #fff;
  background: #3B82F6;
  text-align: center;
  display: block;
  width: 100%;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.flag-bookmark p {
  display: none;
}
.cta-button {
  display: block !important;
  width: fit-content;
  box-sizing: border-box;
  background-color: var(--color-cta-blue) !important;
  padding: 12px 24px !important;
  border-radius: 50em;
  color: var(--color-cta-text) !important;
  font-family: 'Gilroy-SemiBold';
  font-size: var(--font-size-s);
}

/* Header */

/* Utility classes */
.rounded-corner {
  border-radius: 15px;
}
.m-r-10 {
  margin-right: 10px;
}
.m-l-10 {
  margin-left: 10px;
}
.m-b-20 {
  margin-bottom: 20px;
}
.small-txt {
  font-size: 20px;
  line-height: 150%;
}
.big-txt {
  font-size: 40px;
  line-height: 40px;
  font-family: 'gilroy-semibold';
}

/* Layout fixes */
.layout--twocol-section {
  gap: 1%;
}
.layout:first-child .block {
  margin-bottom: 0;
}
@media screen and (min-width: 40em) {
  .layout--twocol-section.layout--twocol-section--25-75 > .layout__region--first,
  .layout--twocol-section.layout--twocol-section--75-25 > .layout__region--second {
    flex: 0 1 30%;
  }

  .layout--twocol-section.layout--twocol-section--25-75 > .layout__region--second,
  .layout--twocol-section.layout--twocol-section--75-25 > .layout__region--first {
    flex: 0 1 69%;
  }
}

/* Entity Header View */
.entity-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.entity-header h1 {
  margin: 0;
}

.entity-header .img-thumb {
  width: 15%;
  margin-right: 36px;
}

.entity-header .entity-details {
  width: 88%;
}
/* Elements */
.block h2,
.block .field__label,
.label,
.views-label {
  color: #000;
  font-size: 20px;
  line-height: 20px;
  font-family: 'gilroy-medium';
  margin: 20px 0 10px 0;
}
.views-label {
  display: block;
}

.highlight-blue {
  color: #3B82F6;
  opacity: 1;
}

.grey-frame {
  font-size: 12px;
  background: #F2F4F5;
  padding: 5px;
  border-radius: 4px;
}

.highlighted-box {
  background: rgba(21, 128, 61, 0.1);
  border-radius: 5px;
  text-align: left;
  padding: 18px 24px 2px;
}

.highlighted-box .label {
  font-family: 'gilroy-regular';
  color: #000;
  margin: 0 0 22px 0;
  padding: 0;
}

.highlighted-box .box-content {
  margin-bottom: 24px;
}

.highlighted-box.box-green .label {
  color: #15803D;
}
.highlighted-box.box-green .big-txt {
  color: #15803D;
  margin-bottom: 15px;
}

.highlighted-box.box-red {
  background: rgba(239, 68, 68, 0.1);
}
.highlighted-box.box-red .label {
  color: #EF4444;
}
.highlighted-box.box-red .big-txt {
  color: #EF4444;
  margin-bottom: 15px;
}
.content-sections ul {
  margin: 0;
  padding: 0;
}
.content-sections ul li,
.tags {
  margin: 0;
  display: inline-block;
  background: rgb(29 78 216 / 10%);
  margin-right: 20px;
  padding: 6px 16px;
  border-radius: 53px;
  color: #1D4ED8;
  font-family: 'gilroy-medium';
}
.icon-wrap i {
  margin-right: 8px;
  font-size: 16px;
}
.row-border {
  border-bottom: 1px solid;
  margin-bottom: 30px;
  padding-bottom: 23px;
}

/* White box */
.white-box ul {
  width: 60%;
  background: #fff;
  padding: 23px;
  border-radius: 16px;
  border: 1px solid #EBEBEB;
  margin: 0;
}

.white-box ul li {
  background: #fff;
  display: list-item;
  color: #000;
  font-size: 24px;
  padding-left: 0;
  margin-left: 20px;
}
.layout__region--second .white-box ul {
  width: auto;
}

/*** Investor Dashboard starts here **/

.chain-row-wrapper {
  gap: 13px;
  flex-direction: row;
  align-items:center;
}

.chain-row-left {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  background: #FFFFFF;
  border-radius: 100%;
  padding: 10px;
  border: solid 1px rgba(0,0,0,0.4);
}

.chain-row-left img { width: 20px; height: 20px;}
.chain-row { margin-bottom: 10px;}











@media only screen and (max-width: 767px) {
  .white-box ul {
    width: auto;
  }
  /** Investor Dashboard Starts here **/
  .startup-content .view-content {
    flex-direction:column; 
  }

  .startup-content .views-row {
    width: 100%;
  }
  .startup-wrapper-bottom .flag-bookmark a {
    max-width: 100%; 
  }

  .node-investor-dashboard .layout__region--first {
    max-width: 100%;
    position:relative;
  }
  .node-investor-dashboard .layout__region--second,
  .node-investor-dashboard .layout--onecol {
    padding-left:0px;
  }
  .startup-content .view-content .views-row {
    border:none;
  }
  .row-node-investor-dashboard {
    margin: 0 7px;
  }
  .investor-dashboard .layout__region--first {
    border-radius: 11px;
    padding: 5px;
  }    
  
  
  /** Investor Dashboard Ends here **/

}

/* White tags */
.white-tags-wrapper {
  margin: 0 0 20px;
}
.white-tags-wrapper .views-row {
  display: inline-block;
  margin-right: 10px;
}
.white-tags {
  font-family: 'gilroy-semibold';
  background: #fff;
  display: inline-block;
  border-radius: 15px;
  padding: 20px 10px 10px;
  border: 1px solid #EBEBEB;
  color: #000;
  font-size: 20px;
  min-width: 90px;
}
.white-tags img {
  width: 22px;
  height: 22px;
  display: block;
  margin-bottom: 10px;
}

/* Flexbox */
.flex-box {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.flex-box > div {
  flex: 1 0 0;
}

/* Quicktabs */
.tabsbar ul.quicktabs-tabs {
  padding: 0;
  border: none;
  gap: 1em
}
.tabsbar .quicktabs-tabs > li > a {
  padding: 0 0.8rem;
  font-family: 'gilroy-semibold';
  color: #969696;
  font-size: 20px;
}
.tabsbar .quicktabs-tabs > li.active {
  border-bottom: 1px solid;
}
.tabsbar .quicktabs-tabs > li.active > a,
.tabsbar .quicktabs-tabs > li.active > a:hover,
.tabsbar .quicktabs-tabs > li.active > a:focus {
  border: none;
  background-color: transparent;
  text-decoration: none
}

/* Temp */
.js-form-type-vertical-tabs {
  display: none;
}

/* Comments */
.block-field-blocknodequestionsfield-comments article,
.modal-buttons button:nth-child(2) {
  display: none;
}
.block-field-blocknodequestionsfield-body {
  padding: 0;
}
.comment-thread .view-content,
.block-field-blocknodequestionsfield-body {
  display: flex;
  flex-direction: column;
}
.comment-thread .views-row,
.block-field-blocknodequestionsfield-body > div {
  width: 90%;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 25px;
}
.block-field-blocknodequestionsfield-body > div {
  font-family: 'gilroy-semibold';
  width: 100%;
  padding: 25px;
  font-size: 18px;
}
.comment-thread .from-me,
.block-field-blocknodequestionsfield-body > div {
  align-self: flex-start;
  background: #FEF2F2;
}
.comment-thread .from-them {
  align-self: flex-end;
  background: #EEEEEE;
}

.path-x header {
  visibility: hidden;
}

.path-x .region-content form {
  padding-bottom: 50px;
}

/* Dialog Styling */
.ui-widget-overlay {
  background: #000;
  opacity: 0.5;
}
.ui-dialog {
  font-family: 'gilroy-medium';
  border-radius: 6px;
  border: 1px solid #999;
  box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
}
@media only screen and (max-width: 767px) {
  .ui-dialog {
    width: 96% !important;
    margin: 0 2%;
  }
}

.ui-dialog-titlebar {
  background: none;
  border: none;
  font-size: 18px;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 0;
  padding: 15px !important;
}
.ui-button.ui-dialog-titlebar-close {
  background: none;
  border: none;
}
.ui-dialog-content {
  padding: 15px;
}

/* Stats */
#stats {
  display: flex;
}
#stats > div {
  background: #fffe9e;
  margin-right: 10px;
  font-family: 'gilroy-medium';
}

/* Datetime popup */
.dtp>.dtp-content>.dtp-date-view>header.dtp-header {
  background: #333;
}
.dtp div.dtp-date, .dtp div.dtp-time {
  background: #f5f5f5;
  color: #333;
}
.dtp div.dtp-actual-year,
.dtp .p10>a,
.year-picker-item.active,
.year-picker-item:hover {
  color: #333;
}
.dtp table.dtp-picker-days tr>td>a.selected {
  background: #333;
}
.year-picker-item {
  color: #7b7b7b;
}

