/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(asset-layers.416d91365b44e4b4f477.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(asset-layers-2x.8f2c4d11474275fbc161.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(asset-marker-icon.2b3e1faf89f94a483539.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

.marker-cluster-small {
	background-color: rgba(181, 226, 140, 0.6);
	}
.marker-cluster-small div {
	background-color: rgba(110, 204, 57, 0.6);
	}

.marker-cluster-medium {
	background-color: rgba(241, 211, 87, 0.6);
	}
.marker-cluster-medium div {
	background-color: rgba(240, 194, 12, 0.6);
	}

.marker-cluster-large {
	background-color: rgba(253, 156, 115, 0.6);
	}
.marker-cluster-large div {
	background-color: rgba(241, 128, 23, 0.6);
	}

	/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
	background-color: rgb(181, 226, 140);
	}
.leaflet-oldie .marker-cluster-small div {
	background-color: rgb(110, 204, 57);
	}

.leaflet-oldie .marker-cluster-medium {
	background-color: rgb(241, 211, 87);
	}
.leaflet-oldie .marker-cluster-medium div {
	background-color: rgb(240, 194, 12);
	}

.leaflet-oldie .marker-cluster-large {
	background-color: rgb(253, 156, 115);
	}
.leaflet-oldie .marker-cluster-large div {
	background-color: rgb(241, 128, 23);
}

.marker-cluster {
	background-clip: padding-box;
	border-radius: 20px;
	}
.marker-cluster div {
	width: 30px;
	height: 30px;
	margin-left: 5px;
	margin-top: 5px;

	text-align: center;
	border-radius: 15px;
	font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
	}
.marker-cluster span {
	line-height: 30px;
	}
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font-weight:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote::before,blockquote::after{content:"";content:none}q::before,q::after{content:"";content:none}table{border-collapse:collapse;border-spacing:0}sup{vertical-align:super;padding:0 0 0 5px;color:#999;font-size:11px;text-transform:uppercase}button{cursor:pointer;font-family:inherit;font-size:100%;line-height:1.15;color:inherit;padding:0;margin:0;border:none;background:rgba(0,0,0,0);-webkit-appearance:button;-moz-appearance:button;appearance:button}button:focus{outline:none}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:400;src:url("https://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7lujVj9w.woff2") format("woff2");font-display:swap;unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Source Sans 3";font-style:italic;font-weight:200 900;font-display:swap;src:url(https://fonts.gstatic.com/s/sourcesans3/v15/nwpMtKy2OAdR1K-IwhWudF-R3woqauLYxnV18JRx.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Source Sans 3";font-style:italic;font-weight:200 900;font-display:swap;src:url(https://fonts.gstatic.com/s/sourcesans3/v15/nwpMtKy2OAdR1K-IwhWudF-R3woqY-LYxnV18JRx.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Source Sans 3";font-style:italic;font-weight:200 900;font-display:swap;src:url(https://fonts.gstatic.com/s/sourcesans3/v15/nwpMtKy2OAdR1K-IwhWudF-R3woqa-LYxnV18JRx.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:"Source Sans 3";font-style:italic;font-weight:200 900;font-display:swap;src:url(https://fonts.gstatic.com/s/sourcesans3/v15/nwpMtKy2OAdR1K-IwhWudF-R3woqZOLYxnV18JRx.woff2) format("woff2");unicode-range:U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF}@font-face{font-family:"Source Sans 3";font-style:italic;font-weight:200 900;font-display:swap;src:url(https://fonts.gstatic.com/s/sourcesans3/v15/nwpMtKy2OAdR1K-IwhWudF-R3woqaOLYxnV18JRx.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Source Sans 3";font-style:italic;font-weight:200 900;font-display:swap;src:url(https://fonts.gstatic.com/s/sourcesans3/v15/nwpMtKy2OAdR1K-IwhWudF-R3woqaeLYxnV18JRx.woff2) format("woff2");unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Source Sans 3";font-style:italic;font-weight:200 900;font-display:swap;src:url(https://fonts.gstatic.com/s/sourcesans3/v15/nwpMtKy2OAdR1K-IwhWudF-R3woqZ-LYxnV18A.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Source Sans 3";font-style:normal;font-weight:200 900;font-display:swap;src:url(https://fonts.gstatic.com/s/sourcesans3/v15/nwpStKy2OAdR1K-IwhWudF-R3wIaZejf5HdF8Q.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Source Sans 3";font-style:normal;font-weight:200 900;font-display:swap;src:url(https://fonts.gstatic.com/s/sourcesans3/v15/nwpStKy2OAdR1K-IwhWudF-R3wsaZejf5HdF8Q.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Source Sans 3";font-style:normal;font-weight:200 900;font-display:swap;src:url(https://fonts.gstatic.com/s/sourcesans3/v15/nwpStKy2OAdR1K-IwhWudF-R3wMaZejf5HdF8Q.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:"Source Sans 3";font-style:normal;font-weight:200 900;font-display:swap;src:url(https://fonts.gstatic.com/s/sourcesans3/v15/nwpStKy2OAdR1K-IwhWudF-R3wwaZejf5HdF8Q.woff2) format("woff2");unicode-range:U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF}@font-face{font-family:"Source Sans 3";font-style:normal;font-weight:200 900;font-display:swap;src:url(https://fonts.gstatic.com/s/sourcesans3/v15/nwpStKy2OAdR1K-IwhWudF-R3wAaZejf5HdF8Q.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Source Sans 3";font-style:normal;font-weight:200 900;font-display:swap;src:url(https://fonts.gstatic.com/s/sourcesans3/v15/nwpStKy2OAdR1K-IwhWudF-R3wEaZejf5HdF8Q.woff2) format("woff2");unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Source Sans 3";font-style:normal;font-weight:200 900;font-display:swap;src:url(https://fonts.gstatic.com/s/sourcesans3/v15/nwpStKy2OAdR1K-IwhWudF-R3w8aZejf5Hc.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}.drop-menu-button{position:relative}.drop-menu-button .drop-menu-button-content{display:none;position:absolute;top:100%;left:0;min-width:100%;background:#fff;border:1px solid #eaeaea;z-index:100}.drop-menu-button:hover .drop-menu-button-content{display:block}:root{--default-font-size: 16px;--old-default-font-size: 13px}html,body{padding:0;margin:0;font-family:"Source Sans 3","Helvetica","Arial",sans-serif;font-size:var(--default-font-size);min-height:100%;width:100%}body{position:absolute !important;top:0;bottom:0;left:0;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--foreground)}body[data-scroll-locked]{height:100vh}*{box-sizing:border-box;font-size:var(--old-default-font-size)}.drop-down-portal{font-size:var(--old-default-font-size)}h1{font-size:26px;line-height:1.2}a{text-decoration:none;color:var(--foreground);font-weight:500;transition:.1s color}a:hover{color:var(--foreground);text-decoration:underline}.black-link{text-decoration:none;color:var(--foreground)}.black-link:hover{color:var(--foreground);text-decoration:underline}strong,.strong{font-weight:600}.link{color:var(--foreground);cursor:pointer}.link:hover{color:var(--primary)}label,.label{color:var(--deprecated-foreground)}.text-align-left{text-align:left}.text-align-right{text-align:right}.text-align-center{text-align:center}.underline{text-decoration:underline}.pac-container{z-index:9999999 !important}.api-missing{font-size:12px;font-weight:600;color:red}#app{height:100%}.top-fixed-content{display:flex;flex-direction:column}.app-wrapper{display:flex;height:100%}.main-content-wrapper{position:relative;display:flex;flex-direction:row;flex:1}.main-content-wrapper main{min-height:100%;display:flex}@media screen and (max-width: 600px){.main-content-wrapper main{min-width:100%}}.main-content-wrapper .main-sidebar{margin-right:0}.main-content{flex:1;width:100%;min-height:100%;position:relative;display:flex;flex-direction:column;padding:16px;min-width:0}.featured-list-ribbon{width:0;height:0;border-top:30px solid var(--primary-accent);position:absolute}.featured-list-ribbon--left{border-right:25px solid rgba(0,0,0,0)}.featured-list-ribbon--right{border-left:25px solid rgba(0,0,0,0)}.featured-list-ribbon svg{position:absolute;top:-26px;left:-13px}.error-message{color:#f5001e}.sentry-error-embed-wrapper form button[type=submit]{opacity:1}.small-text{font-size:12px}.secondary-text{color:var(--neutral-400)}.error-text{color:var(--destructive);line-height:1.4}.muted-text{color:var(--neutral-400);font-weight:normal}.small-upper-text{font-size:11px;text-transform:uppercase}.horizontal-track,.vertical-track{scrollbar-width:none;-ms-overflow-style:none}.horizontal-track::-webkit-scrollbar,.vertical-track::-webkit-scrollbar{display:none}.box-settings{display:flex;justify-content:space-between;align-items:center;position:relative;padding:10px;border:1px solid #ccc;margin:5px}.box-settings-title{display:flex;align-items:center;flex:1;text-transform:uppercase;font-weight:600}.box-settings>.settings{display:flex;flex-direction:row;flex:2;align-items:flex-start;justify-content:space-between;flex-wrap:wrap}.box-settings>.settings .settings-section{display:flex;align-items:center}.box-settings>.settings .settings-section .control{width:inherit}.box-settings>.settings .settings-section .info{margin-left:5px}.box-settings>.settings>*{margin-bottom:5px;margin-right:10px}.search-box{border-bottom:1px solid var(--neutral-100);color:var(--neutral-400)}.search-box-input{-webkit-appearance:none;border:none;outline:none;box-shadow:none;padding:5px 10px;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;border-radius:0;font-size:12px}.search-box-input:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;outline:none;box-shadow:none}.search-box-input::-moz-placeholder{font-style:italic}.search-box-input::placeholder{font-style:italic}.hbox{display:flex;flex-direction:row}.hbox>div{margin-right:10px}.hbox>div:last-child{margin-right:0}.hbox.wrap{flex-wrap:wrap}.hbox.vertical-center{align-items:center}.hbox.horizontal-center{justify-content:center}.hbox.space-between{justify-content:space-between}.hbox.space-around{justify-content:space-around}.hbox.align-right{justify-content:flex-end}.vbox{display:flex;flex-direction:column}.vbox.vertical-center{align-items:center}.vbox.horizontal-center{justify-content:center}.vbox.space-between{justify-content:space-between}.vbox.padded{padding:10px 0}.vbox.reverse{flex-direction:column-reverse}.hbox .col-flex{flex:1;margin-right:20px}.hbox .col-flex:last-child{margin-right:0}.hbox .col-flex .col-flex{margin-right:0}.flex-1{flex:1}.flex-2{flex:2}.flex-3{flex:3}.name-column .info{width:100%;display:flex}.name-column .tagline{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;line-height:1.4}.or-sep{border-bottom:1px solid #ccc;margin:0 0 40px 0;text-align:center;display:flex;align-items:center;justify-content:center;padding:0 !important}.or-sep span{font-size:24px;background:#fff;font-weight:200;text-align:center;color:var(--neutral-400);position:absolute;padding:0 10px}.matching-score{position:relative;height:40px;width:40px;margin:0 auto;padding:2px}.matching-score svg{position:absolute;right:0;left:0;border:1px solid #eee;border-radius:50%;padding:2px}.matching-score__value{margin-left:4px}.dealroom-title{margin:25px 0;font-size:30px;font-weight:700;line-height:32px;margin-bottom:10px}.dealroom-subtitle{color:var(--neutral-400);font-size:16px;line-height:22px;margin-bottom:15px}.account-confirmation-page .timer-text-loader .title{font-size:16px}.fade-enter{opacity:.01}.fade-enter-active{opacity:1;transition:opacity 300ms ease-in}.fade-leave{opacity:1}.fade-leave-active{opacity:.01;transition:opacity 200ms ease-in}@media screen and (max-width: 600px){.main-content{min-width:100%;padding:15px 15px 0 15px}.company-positions{display:block}.companies-positions .separator{display:none}.reset-password-card{width:100%}}.accessible-hide{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}.neutral-color,.secondary{color:var(--neutral-400)}.green-color{color:var(--success)}.primary-color{color:var(--primary)}.dashboardMap-color{color:var(--dashboard-map-color)}.charts-1-color{color:hsl(217,97%,63%)}.charts-2-color{color:hsl(134,52%,72%)}.charts-3-color{color:hsl(0,100%,73%)}.border-color{color:var(--neutral-200)}.default-font-color{color:var(--foreground)}.branding-color{color:var(--topbar)}.secondary-branding-color{color:var(--topbar-foreground)}::-webkit-scrollbar{background:rgba(0,0,0,0);width:4px;height:4px}::-webkit-scrollbar-thumb{background:rgba(0,0,0,.2);border-radius:4px}*, ::before, ::after{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }:root{--background: hsl(0, 0%, 100%);--foreground: hsl(240, 6%, 10%);--muted: hsl(210, 40%, 98%);--muted-foreground: hsl(219, 14%, 47%);--border: hsl(215, 23%, 84%);--input: hsl(215, 23%, 84%);--dr-primary: hsl(225, 76%, 55%);--dr-primary-hover: hsl(221, 82%, 62%);--dr-primary-accent: hsl(228, 65%, 91%);--dr-primary-foreground: hsl(0, 0%, 100%);--dr-dealroom-midnight: hsla(218, 60%, 21%);--secondary: hsl(220, 33%, 96%);--secondary-foreground: hsl(240, 6%, 10%);--accent: hsl(220, 33%, 96%);--accent-foreground: hsl(240, 6%, 10%);--destructive: hsl(354, 49%, 51%);--destructive-hover: hsl(354, 60%, 58%);--destructive-foreground: hsl(0, 0%, 100%);--success: hsl(177, 64%, 44%);--success-hover: hsl(177, 64%, 38%);--success-foreground: hsl(0, 0%, 100%);--success-accent: hsl(175, 50%, 86%);--neutral-50: hsl(210, 40%, 98%);--neutral-100: hsl(220, 33%, 96%);--neutral-200: hsl(215, 27%, 91%);--neutral-300: hsl(215, 23%, 84%);--neutral-400: hsl(219, 14%, 47%);--signal-purple: hsl(265, 58%, 52%);--signal-purple-accent: hsl(271, 59%, 88%);--signal-blue: hsl(221, 82%, 62%);--signal-blue-accent: hsl(222, 96%, 91%);--signal-green: hsl(177, 64%, 44%);--signal-green-accent: hsl(175, 50%, 86%);--interactive-positive: hsl(228, 71%, 97%);--interactive-positive-foreground: var(--dr-primary);--interactive-negative: hsl(352, 75%, 94%);--interactive-negative-foreground: var(--destructive);--ring: hsl(215, 27%, 91%);--radius: 0.5rem;--deprecated-foreground: hsl(0, 0%, 36%);--red-badge: hsl(358, 100%, 68%)}*{border-color:var(--border)}body{background-color:var(--background);color:var(--foreground);font-feature-settings:"rlig" 1,"calt" 1}.tw-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border-width:0}.tw-pointer-events-none{pointer-events:none}.tw-pointer-events-auto{pointer-events:auto}.tw-invisible{visibility:hidden}.tw-fixed{position:fixed}.tw-absolute{position:absolute}.tw-relative{position:relative}.tw-inset-0{inset:0px}.tw-inset-x-0{left:0px;right:0px}.tw-inset-y-0{top:0px;bottom:0px}.tw-bottom-0{bottom:0px}.tw-left-0{left:0px}.tw-left-1{left:0.25rem}.tw-left-1\/2{left:50%}.tw-left-2{left:0.5rem}.tw-left-4{left:1rem}.tw-left-\[-100px\]{left:-100px}.tw-left-\[50\%\]{left:50%}.tw-right-0{right:0px}.tw-right-1{right:0.25rem}.tw-right-2{right:0.5rem}.tw-right-4{right:1rem}.tw-top-0{top:0px}.tw-top-1\/2{top:50%}.tw-top-2{top:0.5rem}.tw-top-2\.5{top:0.625rem}.tw-top-4{top:1rem}.tw-top-\[-100px\]{top:-100px}.tw-top-\[50\%\]{top:50%}.tw-top-full{top:100%}.tw-z-0{z-index:0}.tw-z-10{z-index:10}.tw-z-20{z-index:20}.tw-z-50{z-index:50}.tw-z-\[2\]{z-index:2}.tw-z-\[9999\]{z-index:9999}.tw-z-dialog{z-index:100001}.tw-z-dialog-overlay{z-index:100000}.tw-z-header{z-index:1000}.tw-z-popover{z-index:10001}.tw-z-toast{z-index:100002}.tw-z-tooltip{z-index:1000}.tw-z-top-level{z-index:2147483648}.tw-z-unified-search{z-index:1000}.\!tw-m-0{margin:0px !important}.tw-m-0{margin:0px}.tw-m-4{margin:1rem}.-tw-mx-1{margin-left:-0.25rem;margin-right:-0.25rem}.-tw-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.tw--mx-1{margin-left:-0.25rem;margin-right:-0.25rem}.tw-mx-1\.5{margin-left:0.375rem;margin-right:0.375rem}.tw-mx-2{margin-left:0.5rem;margin-right:0.5rem}.tw-mx-3{margin-left:0.75rem;margin-right:0.75rem}.tw-mx-auto{margin-left:auto;margin-right:auto}.tw-my-0\.5{margin-top:0.125rem;margin-bottom:0.125rem}.tw-my-1{margin-top:0.25rem;margin-bottom:0.25rem}.tw-my-2{margin-top:0.5rem;margin-bottom:0.5rem}.tw-my-2\.5{margin-top:0.625rem;margin-bottom:0.625rem}.tw-my-4{margin-top:1rem;margin-bottom:1rem}.tw-my-8{margin-top:2rem;margin-bottom:2rem}.\!tw-mb-2{margin-bottom:0.5rem !important}.-tw-mb-1{margin-bottom:-0.25rem}.-tw-ml-2{margin-left:-0.5rem}.-tw-ml-3{margin-left:-0.75rem}.-tw-ml-7{margin-left:-1.75rem}.-tw-mr-2{margin-right:-0.5rem}.-tw-mt-0\.5{margin-top:-0.125rem}.-tw-mt-1{margin-top:-0.25rem}.tw--mb-6{margin-bottom:-1.5rem}.tw-mb-0{margin-bottom:0px}.tw-mb-1{margin-bottom:0.25rem}.tw-mb-2{margin-bottom:0.5rem}.tw-mb-3{margin-bottom:0.75rem}.tw-mb-4{margin-bottom:1rem}.tw-mb-5{margin-bottom:1.25rem}.tw-mb-6{margin-bottom:1.5rem}.tw-mb-8{margin-bottom:2rem}.tw-ml-1{margin-left:0.25rem}.tw-ml-2{margin-left:0.5rem}.tw-ml-3{margin-left:0.75rem}.tw-ml-4{margin-left:1rem}.tw-ml-auto{margin-left:auto}.tw-mr-1{margin-right:0.25rem}.tw-mr-14{margin-right:3.5rem}.tw-mr-2{margin-right:0.5rem}.tw-mr-2\.5{margin-right:0.625rem}.tw-mr-3{margin-right:0.75rem}.tw-mr-4{margin-right:1rem}.tw-mr-6{margin-right:1.5rem}.tw-mr-\[10px\]{margin-right:10px}.tw-mr-\[7px\]{margin-right:7px}.tw-mr-auto{margin-right:auto}.tw-mt-0\.5{margin-top:0.125rem}.tw-mt-1{margin-top:0.25rem}.tw-mt-1\.5{margin-top:0.375rem}.tw-mt-2{margin-top:0.5rem}.tw-mt-2\.5{margin-top:0.625rem}.tw-mt-4{margin-top:1rem}.tw-mt-5{margin-top:1.25rem}.tw-mt-auto{margin-top:auto}.tw-line-clamp-1{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1}.tw-line-clamp-2{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.tw-line-clamp-3{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3}.tw-line-clamp-4{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:4}.tw-block{display:block}.tw-inline-block{display:inline-block}.tw-flex{display:flex}.tw-inline-flex{display:inline-flex}.tw-grid{display:grid}.tw-hidden{display:none}.tw-aspect-square{aspect-ratio:1 / 1}.tw-aspect-video{aspect-ratio:16 / 9}.tw-size-10{width:2.5rem;height:2.5rem}.tw-size-14{width:3.5rem;height:3.5rem}.tw-size-2{width:0.5rem;height:0.5rem}.tw-size-20{width:5rem;height:5rem}.tw-size-3{width:0.75rem;height:0.75rem}.tw-size-3\.5{width:0.875rem;height:0.875rem}.tw-size-4{width:1rem;height:1rem}.tw-size-6{width:1.5rem;height:1.5rem}.tw-size-8{width:2rem;height:2rem}.tw-size-9{width:2.25rem;height:2.25rem}.tw-size-\[18px\]{width:18px;height:18px}.tw-size-\[2\.375rem\]{width:2.375rem;height:2.375rem}.tw-size-full{width:100%;height:100%}.tw-size-min{width:-moz-min-content;width:min-content;height:-moz-min-content;height:min-content}.\!tw-h-\[800px\]{height:800px !important}.\!tw-h-full{height:100% !important}.tw-h-10{height:2.5rem}.tw-h-11{height:2.75rem}.tw-h-14{height:3.5rem}.tw-h-16{height:4rem}.tw-h-2{height:0.5rem}.tw-h-2\.5{height:0.625rem}.tw-h-24{height:6rem}.tw-h-3\.5{height:0.875rem}.tw-h-36{height:9rem}.tw-h-4{height:1rem}.tw-h-4\/5{height:80%}.tw-h-5{height:1.25rem}.tw-h-6{height:1.5rem}.tw-h-64{height:16rem}.tw-h-7{height:1.75rem}.tw-h-8{height:2rem}.tw-h-80{height:20rem}.tw-h-9{height:2.25rem}.tw-h-\[1\.375rem\]{height:1.375rem}.tw-h-\[100px\]{height:100px}.tw-h-\[126px\]{height:126px}.tw-h-\[144px\]{height:144px}.tw-h-\[196px\]{height:196px}.tw-h-\[213px\]{height:213px}.tw-h-\[227px\]{height:227px}.tw-h-\[36px\]{height:36px}.tw-h-\[380px\]{height:380px}.tw-h-\[40px\]{height:40px}.tw-h-\[480px\]{height:480px}.tw-h-\[50px\]{height:50px}.tw-h-\[60px\]{height:60px}.tw-h-\[64px\]{height:64px}.tw-h-\[84px\]{height:84px}.tw-h-\[calc\(100vh-92px\)\]{height:calc(100vh - 92px)}.tw-h-\[inherit\]{height:inherit}.tw-h-fit{height:-moz-fit-content;height:fit-content}.tw-h-full{height:100%}.tw-h-px{height:1px}.tw-h-screen{height:100vh}.\!tw-max-h-\[90\%\]{max-height:90% !important}.\!tw-max-h-full{max-height:100% !important}.tw-max-h-6{max-height:1.5rem}.tw-max-h-80{max-height:20rem}.tw-max-h-96{max-height:24rem}.tw-max-h-\[300px\]{max-height:300px}.tw-max-h-\[364px\]{max-height:364px}.tw-max-h-\[440px\]{max-height:440px}.tw-max-h-\[480px\]{max-height:480px}.tw-max-h-\[7\.75rem\]{max-height:7.75rem}.tw-max-h-\[70\%\]{max-height:70%}.tw-max-h-\[calc\(100vh-76px\)\]{max-height:calc(100vh - 76px)}.tw-max-h-screen{max-height:100vh}.tw-min-h-0{min-height:0px}.tw-min-h-36{min-height:9rem}.tw-min-h-8{min-height:2rem}.tw-min-h-\[600px\]{min-height:600px}.\!tw-w-6{width:1.5rem !important}.\!tw-w-\[calc\(100\%-2rem\)\]{width:calc(100% - 2rem) !important}.\!tw-w-carousel-card{width:20rem !important}.\!tw-w-full{width:100% !important}.tw-w-0{width:0px}.tw-w-1{width:0.25rem}.tw-w-1\/3{width:33.333333%}.tw-w-10{width:2.5rem}.tw-w-14{width:3.5rem}.tw-w-2\.5{width:0.625rem}.tw-w-2\/4{width:50%}.tw-w-28{width:7rem}.tw-w-3\/4{width:75%}.tw-w-32{width:8rem}.tw-w-36{width:9rem}.tw-w-4{width:1rem}.tw-w-40{width:10rem}.tw-w-5{width:1.25rem}.tw-w-6{width:1.5rem}.tw-w-60{width:15rem}.tw-w-64{width:16rem}.tw-w-7{width:1.75rem}.tw-w-72{width:18rem}.tw-w-8{width:2rem}.tw-w-80{width:20rem}.tw-w-9{width:2.25rem}.tw-w-\[130px\]{width:130px}.tw-w-\[140px\]{width:140px}.tw-w-\[200px\]{width:200px}.tw-w-\[255px\]{width:255px}.tw-w-\[270px\]{width:270px}.tw-w-\[280px\]{width:280px}.tw-w-\[300px\]{width:300px}.tw-w-\[50px\]{width:50px}.tw-w-\[94px\]{width:94px}.tw-w-auto{width:auto}.tw-w-carousel-card{width:20rem}.tw-w-carousel-card-big{width:26rem}.tw-w-full{width:100%}.tw-w-px{width:1px}.tw-min-w-0{min-width:0px}.tw-min-w-2{min-width:0.5rem}.tw-min-w-40{min-width:10rem}.tw-min-w-\[11rem\]{min-width:11rem}.tw-min-w-\[18\.75rem\]{min-width:18.75rem}.tw-min-w-\[185px\]{min-width:185px}.tw-min-w-\[300px\]{min-width:300px}.tw-min-w-\[311px\]{min-width:311px}.tw-min-w-\[640px\]{min-width:640px}.tw-min-w-\[8rem\]{min-width:8rem}.tw-min-w-max{min-width:-moz-max-content;min-width:max-content}.\!tw-max-w-2xl{max-width:42rem !important}.\!tw-max-w-3xl{max-width:48rem !important}.\!tw-max-w-full{max-width:100% !important}.\!tw-max-w-sm{max-width:24rem !important}.tw-max-w-20{max-width:5rem}.tw-max-w-3xl{max-width:48rem}.tw-max-w-6xl{max-width:72rem}.tw-max-w-\[100\%\]{max-width:100%}.tw-max-w-\[155px\]{max-width:155px}.tw-max-w-\[165px\]{max-width:165px}.tw-max-w-\[352px\]{max-width:352px}.tw-max-w-full{max-width:100%}.tw-max-w-lg{max-width:32rem}.tw-max-w-md{max-width:28rem}.tw-max-w-xs{max-width:20rem}.tw-flex-1{flex:1 1 0%}.tw-shrink{flex-shrink:1}.tw-shrink-0{flex-shrink:0}.tw-flex-grow-0{flex-grow:0}.tw-grow{flex-grow:1}.tw-grow-0{flex-grow:0}.tw-basis-0{flex-basis:0px}.tw-basis-1\/2{flex-basis:50%}.tw-basis-2\/5{flex-basis:40%}.tw-basis-3\/5{flex-basis:60%}.tw-basis-80{flex-basis:20rem}.tw-table-auto{table-layout:auto}.tw-table-fixed{table-layout:fixed}.tw-border-collapse{border-collapse:collapse}.-tw-translate-y-1\/2{--tw-translate-y:-50%;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.tw--translate-x-1\/2{--tw-translate-x:-50%;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.tw--translate-y-1\/2{--tw-translate-y:-50%;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.tw-translate-x-\[-50\%\]{--tw-translate-x:-50%;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.tw-translate-y-\[-50\%\]{--tw-translate-y:-50%;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.tw-transform{transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes tw-fade-in-out{0%, 100%{opacity:0;rotate:0deg}50%{opacity:1;rotate:180deg}}.tw-animate-rotate-fade-in-out{animation:tw-fade-in-out 2s ease-in-out infinite}@keyframes tw-spin{to{transform:rotate(360deg)}}.tw-animate-spin{animation:tw-spin 1s linear infinite}.tw-cursor-default{cursor:default}.tw-cursor-not-allowed{cursor:not-allowed}.tw-cursor-pointer{cursor:pointer}.tw-cursor-text{cursor:text}.tw-touch-none{touch-action:none}.tw-select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.tw-list-none{list-style-type:none}.tw-appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.tw-columns-2xs{-moz-columns:18rem;columns:18rem}.tw-grid-cols-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.tw-grid-cols-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.tw-grid-cols-\[repeat\(auto-fit\,minmax\(180px\,1fr\)\)\]{grid-template-columns:repeat(auto-fit,minmax(180px,1fr))}.tw-flex-row{flex-direction:row}.tw-flex-col{flex-direction:column}.tw-flex-col-reverse{flex-direction:column-reverse}.tw-flex-wrap{flex-wrap:wrap}.tw-flex-nowrap{flex-wrap:nowrap}.tw-content-center{align-content:center}.\!tw-items-start{align-items:flex-start !important}.tw-items-start{align-items:flex-start}.tw-items-end{align-items:flex-end}.tw-items-center{align-items:center}.tw-items-stretch{align-items:stretch}.\!tw-justify-start{justify-content:flex-start !important}.tw-justify-start{justify-content:flex-start}.tw-justify-end{justify-content:flex-end}.tw-justify-center{justify-content:center}.tw-justify-between{justify-content:space-between}.tw-justify-around{justify-content:space-around}.\!tw-gap-3{gap:0.75rem !important}.tw-gap-0{gap:0px}.tw-gap-0\.5{gap:0.125rem}.tw-gap-1{gap:0.25rem}.tw-gap-1\.5{gap:0.375rem}.tw-gap-2{gap:0.5rem}.tw-gap-3{gap:0.75rem}.tw-gap-4{gap:1rem}.tw-gap-5{gap:1.25rem}.tw-gap-6{gap:1.5rem}.tw-gap-8{gap:2rem}.tw-gap-x-1{-moz-column-gap:0.25rem;column-gap:0.25rem}.tw-gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.tw-gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.tw-gap-y-2{row-gap:0.5rem}.tw-space-x-1 > :not([hidden]) ~ :not([hidden]){--tw-space-x-reverse:0;margin-right:calc(0.25rem * var(--tw-space-x-reverse));margin-left:calc(0.25rem * calc(1 - var(--tw-space-x-reverse)))}.tw-space-x-2 > :not([hidden]) ~ :not([hidden]){--tw-space-x-reverse:0;margin-right:calc(0.5rem * var(--tw-space-x-reverse));margin-left:calc(0.5rem * calc(1 - var(--tw-space-x-reverse)))}.tw-space-x-3 > :not([hidden]) ~ :not([hidden]){--tw-space-x-reverse:0;margin-right:calc(0.75rem * var(--tw-space-x-reverse));margin-left:calc(0.75rem * calc(1 - var(--tw-space-x-reverse)))}.tw-space-x-4 > :not([hidden]) ~ :not([hidden]){--tw-space-x-reverse:0;margin-right:calc(1rem * var(--tw-space-x-reverse));margin-left:calc(1rem * calc(1 - var(--tw-space-x-reverse)))}.tw-space-y-1 > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse:0;margin-top:calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0.25rem * var(--tw-space-y-reverse))}.tw-space-y-1\.5 > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse:0;margin-top:calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0.375rem * var(--tw-space-y-reverse))}.tw-space-y-2 > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse:0;margin-top:calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0.5rem * var(--tw-space-y-reverse))}.tw-space-y-3 > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse:0;margin-top:calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0.75rem * var(--tw-space-y-reverse))}.tw-space-y-4 > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem * var(--tw-space-y-reverse))}.tw-space-y-6 > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.5rem * var(--tw-space-y-reverse))}.tw-self-start{align-self:flex-start}.tw-self-center{align-self:center}.tw-overflow-auto{overflow:auto}.tw-overflow-hidden{overflow:hidden}.tw-overflow-scroll{overflow:scroll}.tw-overflow-x-auto{overflow-x:auto}.tw-overflow-y-auto{overflow-y:auto}.tw-overflow-x-hidden{overflow-x:hidden}.tw-overflow-y-hidden{overflow-y:hidden}.tw-overflow-x-scroll{overflow-x:scroll}.tw-overflow-y-scroll{overflow-y:scroll}.tw-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tw-text-ellipsis{text-overflow:ellipsis}.tw-whitespace-nowrap{white-space:nowrap}.tw-whitespace-pre{white-space:pre}.tw-text-nowrap{text-wrap:nowrap}.tw-break-words{overflow-wrap:break-word}.tw-rounded{border-radius:0.25rem}.tw-rounded-\[inherit\]{border-radius:inherit}.tw-rounded-full{border-radius:9999px}.tw-rounded-lg{border-radius:0.5rem}.tw-rounded-md{border-radius:0.375rem}.tw-rounded-sm{border-radius:0.125rem}.tw-rounded-xl{border-radius:0.75rem}.tw-rounded-l-none{border-top-left-radius:0px;border-bottom-left-radius:0px}.tw-rounded-r-none{border-top-right-radius:0px;border-bottom-right-radius:0px}.tw-rounded-tr-lg{border-top-right-radius:0.5rem}.tw-border{border-width:1px}.tw-border-0{border-width:0px}.tw-border-2{border-width:2px}.tw-border-\[1\.5px\]{border-width:1.5px}.tw-border-b{border-bottom-width:1px}.tw-border-l{border-left-width:1px}.tw-border-r{border-right-width:1px}.tw-border-r-0{border-right-width:0px}.tw-border-t{border-top-width:1px}.tw-border-solid{border-style:solid}.tw-border-dashed{border-style:dashed}.tw-border-none{border-style:none}.\!tw-border-destructive{border-color:var(--destructive) !important}.tw-border-\[--color-border\]{border-color:var(--color-border)}.tw-border-background{border-color:var(--background)}.tw-border-border{border-color:var(--border)}.tw-border-destructive{border-color:var(--destructive)}.tw-border-input{border-color:var(--input)}.tw-border-neutral{border-color:var(--neutral-100)}.tw-border-neutral-200{border-color:var(--neutral-200)}.tw-border-neutral-300{border-color:var(--neutral-300)}.tw-border-primary{border-color:var(--primary)}.tw-border-signal-blue-accent{border-color:var(--signal-blue-accent)}.tw-border-transparent{border-color:transparent}.tw-border-l-transparent{border-left-color:transparent}.tw-border-t-transparent{border-top-color:transparent}.\!tw-bg-module-predictive-signals-background{--tw-bg-opacity:1 !important;background-color:rgb(235 239 243 / var(--tw-bg-opacity, 1)) !important}.\!tw-bg-neutral-300{background-color:var(--neutral-300) !important}.tw-bg-\[\#f4f8ff\]{--tw-bg-opacity:1;background-color:rgb(244 248 255 / var(--tw-bg-opacity, 1))}.tw-bg-\[\#fafafa\]{--tw-bg-opacity:1;background-color:rgb(250 250 250 / var(--tw-bg-opacity, 1))}.tw-bg-\[--color-background\]{background-color:var(--color-background)}.tw-bg-accent{background-color:var(--accent)}.tw-bg-background{background-color:var(--background)}.tw-bg-border{background-color:var(--border)}.tw-bg-destructive{background-color:var(--destructive)}.tw-bg-foreground{background-color:var(--foreground)}.tw-bg-module-notes-fundraising{--tw-bg-opacity:1;background-color:rgb(195 230 193 / var(--tw-bg-opacity, 1))}.tw-bg-module-notes-interviews{--tw-bg-opacity:1;background-color:rgb(250 231 214 / var(--tw-bg-opacity, 1))}.tw-bg-module-notes-pitch{--tw-bg-opacity:1;background-color:rgb(215 223 249 / var(--tw-bg-opacity, 1))}.tw-bg-module-notes-private{--tw-bg-opacity:1;background-color:rgb(247 238 197 / var(--tw-bg-opacity, 1))}.tw-bg-module-notes-recruiting{--tw-bg-opacity:1;background-color:rgb(216 208 241 / var(--tw-bg-opacity, 1))}.tw-bg-muted{background-color:var(--muted)}.tw-bg-neutral{background-color:var(--neutral-100)}.tw-bg-neutral-200{background-color:var(--neutral-200)}.tw-bg-neutral-300{background-color:var(--neutral-300)}.tw-bg-neutral-50{background-color:var(--neutral-50)}.tw-bg-primary{background-color:var(--primary)}.tw-bg-primary-accent{background-color:var(--primary-accent)}.tw-bg-red-badge{background-color:var(--red-badge)}.tw-bg-secondary{background-color:var(--secondary)}.tw-bg-success-accent{background-color:var(--success-accent)}.tw-bg-topbar{background-color:var(--topbar)}.tw-bg-topbar-signup{background-color:var(--topbar-signup-button)}.tw-bg-transparent{background-color:transparent}.tw-bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))}.tw-bg-gradient-to-b{background-image:linear-gradient(to bottom, var(--tw-gradient-stops))}.tw-bg-gradient-to-t{background-image:linear-gradient(to top, var(--tw-gradient-stops))}.tw-from-background{--tw-gradient-from:var(--background) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)}.tw-from-transparent{--tw-gradient-from:transparent var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)}.tw-to-transparent{--tw-gradient-to:transparent var(--tw-gradient-to-position)}.tw-to-white{--tw-gradient-to:#ffffff var(--tw-gradient-to-position)}.tw-bg-contain{background-size:contain}.tw-bg-left{background-position:left}.tw-bg-no-repeat{background-repeat:no-repeat}.tw-fill-background{fill:var(--background)}.tw-fill-current{fill:currentColor}.tw-fill-neutral-400{fill:var(--neutral-400)}.tw-object-cover{object-fit:cover}.\!tw-p-0{padding:0px !important}.tw-p-0{padding:0px}.tw-p-1{padding:0.25rem}.tw-p-16{padding:4rem}.tw-p-2{padding:0.5rem}.tw-p-3{padding:0.75rem}.tw-p-4{padding:1rem}.tw-p-5{padding:1.25rem}.tw-p-6{padding:1.5rem}.tw-p-8{padding:2rem}.tw-p-\[1px\]{padding:1px}.\!tw-py-0{padding-top:0px !important;padding-bottom:0px !important}.\!tw-py-4{padding-top:1rem !important;padding-bottom:1rem !important}.tw-px-1{padding-left:0.25rem;padding-right:0.25rem}.tw-px-2{padding-left:0.5rem;padding-right:0.5rem}.tw-px-2\.5{padding-left:0.625rem;padding-right:0.625rem}.tw-px-3{padding-left:0.75rem;padding-right:0.75rem}.tw-px-4{padding-left:1rem;padding-right:1rem}.tw-px-5{padding-left:1.25rem;padding-right:1.25rem}.tw-px-6{padding-left:1.5rem;padding-right:1.5rem}.tw-px-8{padding-left:2rem;padding-right:2rem}.tw-py-0{padding-top:0px;padding-bottom:0px}.tw-py-0\.5{padding-top:0.125rem;padding-bottom:0.125rem}.tw-py-1{padding-top:0.25rem;padding-bottom:0.25rem}.tw-py-1\.5{padding-top:0.375rem;padding-bottom:0.375rem}.tw-py-2{padding-top:0.5rem;padding-bottom:0.5rem}.tw-py-2\.5{padding-top:0.625rem;padding-bottom:0.625rem}.tw-py-3{padding-top:0.75rem;padding-bottom:0.75rem}.tw-py-4{padding-top:1rem;padding-bottom:1rem}.tw-py-6{padding-top:1.5rem;padding-bottom:1.5rem}.tw-py-8{padding-top:2rem;padding-bottom:2rem}.tw-py-\[0\.375rem\]{padding-top:0.375rem;padding-bottom:0.375rem}.tw-pb-0\.5{padding-bottom:0.125rem}.tw-pb-2{padding-bottom:0.5rem}.tw-pb-2\.5{padding-bottom:0.625rem}.tw-pb-3{padding-bottom:0.75rem}.tw-pb-4{padding-bottom:1rem}.tw-pb-5{padding-bottom:1.25rem}.tw-pb-6{padding-bottom:1.5rem}.tw-pl-2{padding-left:0.5rem}.tw-pl-2\.5{padding-left:0.625rem}.tw-pl-4{padding-left:1rem}.tw-pl-6{padding-left:1.5rem}.tw-pl-8{padding-left:2rem}.tw-pl-\[0\.625rem\]{padding-left:0.625rem}.tw-pl-\[2\.8125rem\]{padding-left:2.8125rem}.tw-pr-10{padding-right:2.5rem}.tw-pr-2{padding-right:0.5rem}.tw-pr-3{padding-right:0.75rem}.tw-pr-4{padding-right:1rem}.tw-pr-6{padding-right:1.5rem}.tw-pr-\[2\.8125rem\]{padding-right:2.8125rem}.tw-pt-0{padding-top:0px}.tw-pt-1{padding-top:0.25rem}.tw-pt-2{padding-top:0.5rem}.tw-pt-4{padding-top:1rem}.tw-pt-5{padding-top:1.25rem}.tw-pt-6{padding-top:1.5rem}.tw-text-left{text-align:left}.tw-text-center{text-align:center}.tw-text-right{text-align:right}.tw-align-top{vertical-align:top}.tw-font-mono{font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}.tw-text-2xl{font-size:24px;line-height:32px}.tw-text-3xl{font-size:30px;line-height:36px}.tw-text-\[0\.75rem\]{font-size:0.75rem}.tw-text-\[0\.8rem\]{font-size:0.8rem}.tw-text-\[11px\]{font-size:11px}.tw-text-\[13px\]{font-size:13px}.tw-text-\[14px\]{font-size:14px}.tw-text-\[16px\]{font-size:16px}.tw-text-\[18px\]{font-size:18px}.tw-text-base{font-size:16px;line-height:24px}.tw-text-lg{font-size:18px;line-height:28px}.tw-text-sm{font-size:14px;line-height:20px}.tw-text-xl{font-size:20px;line-height:28px}.tw-text-xs{font-size:12px;line-height:16px}.\!tw-font-semibold{font-weight:600 !important}.tw-font-bold{font-weight:700}.tw-font-medium{font-weight:500}.tw-font-normal{font-weight:400}.tw-font-semibold{font-weight:600}.tw-uppercase{text-transform:uppercase}.tw-capitalize{text-transform:capitalize}.tw-normal-case{text-transform:none}.tw-tabular-nums{--tw-numeric-spacing:tabular-nums;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)}.tw-leading-6{line-height:1.5rem}.tw-leading-\[1\.2\]{line-height:1.2}.tw-leading-\[13px\]{line-height:13px}.tw-leading-\[14px\]{line-height:14px}.tw-leading-\[18px\]{line-height:18px}.tw-leading-none{line-height:1}.tw-leading-normal{line-height:1.5}.tw-leading-relaxed{line-height:1.625}.tw-leading-tight{line-height:1.25}.-tw-tracking-\[0\.2px\]{letter-spacing:-0.2px}.tw-tracking-\[1px\]{letter-spacing:1px}.tw-tracking-normal{letter-spacing:0em}.tw-tracking-tight{letter-spacing:-0.025em}.tw-tracking-widest{letter-spacing:0.1em}.\!tw-text-destructive{color:var(--destructive) !important}.tw-text-\[\#004398\]{--tw-text-opacity:1;color:rgb(0 67 152 / var(--tw-text-opacity, 1))}.tw-text-\[\#70a3fc\]{--tw-text-opacity:1;color:rgb(112 163 252 / var(--tw-text-opacity, 1))}.tw-text-\[\#b3b3b3\]{--tw-text-opacity:1;color:rgb(179 179 179 / var(--tw-text-opacity, 1))}.tw-text-accent-foreground{color:var(--accent-foreground)}.tw-text-background{color:var(--background)}.tw-text-current{color:currentColor}.tw-text-destructive{color:var(--destructive)}.tw-text-destructive-foreground{color:var(--destructive-foreground)}.tw-text-foreground{color:var(--foreground)}.tw-text-muted-foreground{color:var(--muted-foreground)}.tw-text-neutral-300{color:var(--neutral-300)}.tw-text-neutral-400{color:var(--neutral-400)}.tw-text-primary{color:var(--primary)}.tw-text-primary-foreground{color:var(--primary-foreground)}.tw-text-primary-hover{color:var(--primary-hover)}.tw-text-red{--tw-text-opacity:1;color:rgb(255 0 0 / var(--tw-text-opacity, 1))}.tw-text-secondary-foreground{color:var(--secondary-foreground)}.tw-text-topbar-foreground{color:var(--topbar-foreground)}.tw-text-topbar-signup-foreground{color:var(--topbar-signup-button-foreground)}.tw-underline{text-decoration-line:underline}.tw-underline-offset-4{text-underline-offset:4px}.tw-opacity-0{opacity:0}.tw-opacity-30{opacity:0.3}.tw-opacity-40{opacity:0.4}.tw-opacity-50{opacity:0.5}.tw-opacity-60{opacity:0.6}.tw-opacity-70{opacity:0.7}.tw-opacity-80{opacity:0.8}.tw-opacity-85{opacity:0.85}.tw-opacity-90{opacity:0.9}.tw-shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.tw-shadow-\[0_1px_12px_rgba\(0\,_0\,_0\,_0\.13\)\]{--tw-shadow:0 1px 12px rgba(0, 0, 0, 0.13);--tw-shadow-colored:0 1px 12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.tw-shadow-\[0_1px_12px_rgba\(0\,_0\,_0\,_0\.2\)\]{--tw-shadow:0 1px 12px rgba(0, 0, 0, 0.2);--tw-shadow-colored:0 1px 12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.tw-shadow-lg{--tw-shadow:0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.tw-shadow-md{--tw-shadow:0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.tw-shadow-sm{--tw-shadow:0 1px 2px 0 rgb(0 0 0 / 0.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.tw-outline-none{outline:2px solid transparent;outline-offset:2px}.tw-ring-0{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)}.tw-ring-1{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)}.tw-ring-primary{--tw-ring-color:var(--primary)}.tw-ring-offset-4{--tw-ring-offset-width:4px}.tw-ring-offset-background{--tw-ring-offset-color:var(--background)}.tw-drop-shadow-md{--tw-drop-shadow:drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.tw-transition{transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.tw-transition-all{transition-property:all;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.tw-transition-colors{transition-property:color, background-color, border-color, text-decoration-color, fill, stroke;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.tw-transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.tw-transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.tw-duration-100{transition-duration:100ms}.tw-duration-200{transition-duration:200ms}.tw-duration-300{transition-duration:300ms}.tw-ease-in-out{transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1)}.tw-content-\[\'\'\]{--tw-content:'';content:var(--tw-content)}@keyframes enter{from{opacity:var(--tw-enter-opacity, 1);transform:translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0))}}@keyframes exit{to{opacity:var(--tw-exit-opacity, 1);transform:translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0))}}.tw-animate-in{animation-name:enter;animation-duration:150ms;--tw-enter-opacity:initial;--tw-enter-scale:initial;--tw-enter-rotate:initial;--tw-enter-translate-x:initial;--tw-enter-translate-y:initial}.tw-fade-in-0{--tw-enter-opacity:0}.tw-fade-in-80{--tw-enter-opacity:0.8}.tw-zoom-in-95{--tw-enter-scale:.95}.tw-duration-100{animation-duration:100ms}.tw-duration-200{animation-duration:200ms}.tw-duration-300{animation-duration:300ms}.tw-ease-in-out{animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1)}.recharts-stroke-opacity-transition path{transition:stroke-opacity .2s ease-in-out}body #hubspot-messages-iframe-container{z-index:100000}.alert{display:flex;align-items:center;justify-content:space-between;padding:10px;margin-bottom:20px;border:1px solid rgba(0,0,0,0);border-radius:4px;position:relative;line-height:1.4}.alert strong{font-weight:700;text-transform:uppercase}.alert .close-alert{cursor:pointer;font-size:16px;color:var(--neutral-400);margin-left:5px}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-warning{background-color:rgba(230,230,127,.22);border-color:#faebcc}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}form.vertical-form .alerts{margin-bottom:0}form.vertical-form .alerts .alert{padding:8px}input::-moz-placeholder, textarea::-moz-placeholder{color:var(--neutral-400)}input::placeholder,textarea::placeholder,.placeholder{color:var(--neutral-400)}.government-type-select .input-multi-select-buttons__button{margin-right:.5em}.organizer-events-form .add-new-event-container{margin-top:10px}form .field-affiliate-company .new-tab-link,.form .field-affiliate-company .new-tab-link{display:flex;align-items:center;margin-bottom:12px;font-size:17px}form .field-info,.form .field-info{font-size:12px;color:var(--neutral-400);padding:0 0 5px 0;font-style:italic}form.vertical-form,.form.vertical-form{display:flex;flex-direction:column}form.vertical-form .field-wrapper,.form.vertical-form .field-wrapper{margin:10px 0}form.vertical-form>div,.form.vertical-form>div{min-width:285px;padding-bottom:15px;margin-bottom:10px}form.vertical-form>div.form-fields,form.vertical-form>div:last-child(2),.form.vertical-form>div.form-fields,.form.vertical-form>div:last-child(2){padding-bottom:80px}form.vertical-form>div label,.form.vertical-form>div label{margin-bottom:4px;display:block}form.vertical-form>div input[type=text],form.vertical-form>div .form-control,.form.vertical-form>div input[type=text],.form.vertical-form>div .form-control{width:100%;border:2px solid rgba(96,126,154,.2);border-radius:7px;height:auto;padding:12px 16px}form.vertical-form>div input[type=text].year-input,form.vertical-form>div input[type=text].month-input,form.vertical-form>div .form-control.year-input,form.vertical-form>div .form-control.month-input,.form.vertical-form>div input[type=text].year-input,.form.vertical-form>div input[type=text].month-input,.form.vertical-form>div .form-control.year-input,.form.vertical-form>div .form-control.month-input{padding:9px 0}form.vertical-form>div input[class~=form-control][aria-invalid=true],.form.vertical-form>div input[class~=form-control][aria-invalid=true]{border:2px solid var(--destructive)}form.vertical-form>div .Select-control,.form.vertical-form>div .Select-control{border:2px solid rgba(96,126,154,.2);border-radius:7px;background:#fff;padding:4px 8px 0 0;cursor:pointer}form.vertical-form>div .Select-placeholder,form.vertical-form>div .Select-value,.form.vertical-form>div .Select-placeholder,.form.vertical-form>div .Select-value{background:rgba(0,0,0,0) !important;position:relative}form.vertical-form input,form.vertical-form textarea,form.vertical-form .Select,.form.vertical-form input,.form.vertical-form textarea,.form.vertical-form .Select{display:block;margin-bottom:10px;font-size:14px}form.vertical-form .actions,.form.vertical-form .actions{position:fixed;bottom:0;left:0;right:0;border-top:1px solid #eee;background:#fff;margin:0;display:flex;width:100%;padding:10px;flex-direction:row;justify-content:flex-end;align-items:center}form.vertical-form .actions.dirty .actions,.form.vertical-form .actions.dirty .actions{display:flex}form label,.form label{color:var(--deprecated-foreground)}form.horizontal-form,.form.horizontal-form{display:flex;padding:10px 0}form.horizontal-form .actions,.form.horizontal-form .actions{margin-left:auto}form.horizontal-form>div,.form.horizontal-form>div{margin-right:5px}form.edit-participant-form,form.add-participant-form,.form.edit-participant-form,.form.add-participant-form{padding:0}form.no-padding,.form.no-padding{padding:0}.gender-backgrounds-wrapper{display:flex;justify-content:space-between;margin-bottom:20px}.gender-backgrounds-wrapper>div{flex:1}.gender-backgrounds-wrapper .gender-wrapper{flex:.5}.growthStage-wrapper{width:155px}.companyStatus-wrapper{width:110px}.fields-group-wrapper{display:flex;flex-wrap:wrap;flex:1}@media screen and (max-width: 600px){.fields-group-wrapper{flex-wrap:wrap}}.fields-group-wrapper>div.field-wrapper{margin-right:25px}.fields-group-wrapper>div:last-child{margin-right:0}.fields-group-wrapper[class^=photo-]>.fields-group-wrapper:last-child{flex-direction:column}.fields-group-wrapper .verify-addToMap-wrapper{flex-direction:row;margin-bottom:10px}.valuations-edit-form .currency{max-width:85px}.valuations-edit-form .date{max-width:85px;min-width:85px}.valuations-edit-form .source{display:flex;justify-content:flex-end;align-items:center}.valuations-edit-form .actions{display:flex;justify-content:center}.valuations-edit-form .source-disabled-info{color:var(--neutral-400)}#participants-form-list{overflow-y:auto}.participants-form-wrapper .participants{position:relative}.participants-form-wrapper .participants .add-participant-form,.participants-form-wrapper .participants .edit-participant-form{width:100%}.participants-form-wrapper .participants .add-participant-form,.participants-form-wrapper .participants .add-item-row{width:100%;position:absolute;top:5px;z-index:9999}.participants-form-wrapper .virtual-list{padding-top:55px}.lp-investments-form .Select{margin-top:10px}.funds-form .new-fund-form .fundName-amount-currency-wrapper{display:flex}.funds-form .new-fund-form .fundName-amount-currency-wrapper div{flex:1;margin-right:5px}.funds-form .investor-fund-list-item{padding:10px 10px 10px 0}.funds-form .investor-fund-list-item .content{max-width:330px;flex:1}.funds-form .investor-fund-list-item .investor-fund-list-item-info{display:flex;flex-direction:row;justify-content:space-between}.funds-form .investor-fund-list-item .investor-fund-list-item-info .investor-fund-list-item-fundName-amount-currency{display:flex;align-items:center;font-size:14px;flex-wrap:wrap}.funds-form .investor-fund-list-item .investor-fund-list-item-info .investor-fund-list-item-fundName-amount-currency .fundName,.funds-form .investor-fund-list-item .investor-fund-list-item-info .investor-fund-list-item-fundName-amount-currency .fundType,.funds-form .investor-fund-list-item .investor-fund-list-item-info .investor-fund-list-item-fundName-amount-currency .amount{color:var(--deprecated-foreground);margin-right:5px}#company-edit .multi-items-form.user-companies .col.name-column,#company-edit .multi-items-form.user-companies .headers .company{min-width:150px;max-width:150px}#company-edit .multi-items-form.user-companies .col.titles,#company-edit .multi-items-form.user-companies .headers .titles{min-width:145px;max-width:145px}#company-edit .multi-items-form.user-companies .col.start-year,#company-edit .multi-items-form.user-companies .headers .start-year,#company-edit .multi-items-form.user-companies .col.end-year,#company-edit .multi-items-form.user-companies .headers .end-year{max-width:75px;min-width:75px}#company-edit .multi-items-form.user-companies .col.current-position,#company-edit .multi-items-form.user-companies .headers .current-position{max-width:70px;min-width:70px}.multi-items-form.education-form .item-form{height:auto}.multi-items-form.education-form .yearEnd,.multi-items-form.education-form .yearStart{max-width:50px;margin:0 20px}.multi-items-form.education-form .university{min-width:190px}.multi-items-form.education-form .university .person-image{max-width:42px;max-height:42px}.multi-items-form.education-form .major{margin:0 15px;min-width:155px}.multi-items-form.education-form .actions{display:flex;justify-content:center}.multi-items-form.user-companies .col.current-position .control{justify-content:center}.multi-items-form.user-companies .headers .end-year sup{color:inherit}.multi-items-form .headers{color:#222;font-size:12px;font-weight:600;text-transform:uppercase;border-bottom:1px solid #ccc;display:flex;flex-direction:row}.multi-items-form .headers>div{padding:10px 5px 10px 5px;flex:1;text-align:center}.multi-items-form .headers>div:first-child{text-align:left}.multi-items-form .headers .date{text-align:left}.multi-items-form .item-form{width:100%;display:flex;flex-direction:row;align-items:center;align-content:flex-start;border-bottom:1px solid var(--neutral-100);min-height:40px;color:var(--deprecated-foreground)}.multi-items-form .item-form>div{text-align:center;flex:1}.multi-items-form .item-form .currency{display:flex;justify-content:center}.multi-items-form .item-form .col{padding:10px 5px 10px 5px;flex:1;text-align:center}.multi-items-form .item-form .col:first-child{text-align:left}.multi-items-form .item-form .date{display:flex;flex-direction:row;align-items:center;text-align:center;min-width:87px}.add-item-row{border-bottom:1px solid var(--neutral-100);padding:10px 0}.add-item-row .add-item-label{font-size:12px;font-style:italic;color:var(--foreground);background:var(--background);cursor:pointer}.team-form-wrapper{max-height:100%}.team-form-wrapper .simple-table td .name-column{font-size:14px}.team-form-wrapper .simple-table td .name-column .pending-approval{font-size:11px;color:var(--neutral-400);padding:5px 0 0 0}.team-form-wrapper .simple-table td .name-column .name-wrapper{display:flex;flex-direction:row;flex-wrap:nowrap}.team-form-wrapper .simple-table td.name .info{line-height:15px}.team-form-wrapper .simple-table td.edit{width:100px}.team-form-wrapper .simple-table td.delete>*{margin:0 auto}.team-form-wrapper .simple-table .column-remove{display:none}.team-form-wrapper .simple-table .column-remove button{display:inline-block}.team-form-wrapper .simple-table tr:hover .column-remove{display:flex}.team-form-wrapper .actions{padding:20px 0}.team-form-wrapper .actions>button,.team-form-wrapper .actions>span{margin-right:10px}.team-form-wrapper .add-team-member-form label.disabled{opacity:.2}.team-form-wrapper .add-team-member-form .or-sep{margin-bottom:25px}.company-edit-section{margin-bottom:10px}.company-edit-section .company-edit-section-header{display:flex;align-items:center;justify-content:space-between;padding:10px 5px;text-transform:uppercase;border-bottom:1px solid #969696}.company-edit-section .company-edit-section-content{padding:5px}.claim-profile-wrapper{max-width:500px;padding:20px}.claim-profile-wrapper .title{font-size:24px;line-height:1.3;text-align:center;color:#444}.claim-profile-wrapper .claim-button-wrapper{text-align:center}.claim-profile-wrapper .claim-button-wrapper .button{align-self:center;margin-top:10px}.claim-profile-wrapper .or-sep{margin-top:30px}.claim-profile-wrapper .claim-suggestions-wrapper .title{font-size:16px}.claim-profile-wrapper .claim-suggestions-wrapper .suggestions-form .button{align-self:center}.claim-profile-wrapper form{padding:0;margin-top:12px;text-align:center}.claim-profile-wrapper form textarea{height:150px;font-size:12px}.hqAddresses-wrapper .hq-locations-form .add-item-row{border-bottom:none;padding:5px 0}.hqAddresses-wrapper .hq-locations-form .add-item-row .loading-label{color:var(--neutral-400);font-style:italic;font-size:12px}.hqAddresses-wrapper .hq-locations-form .company-address{margin-bottom:5px;flex-wrap:wrap}.hqAddresses-wrapper .hq-locations-form .company-address .description{color:var(--foreground);flex:1;min-width:100px}.count-towards-employee-container{margin:15px 0;display:flex;align-items:center}.count-towards-employee-container .control{width:unset;font-size:11px}.unknown-emloyees-form{margin:15px 0}.unknown-emloyees-form .unknown-emloyees-form-info{padding:10px 10px 5px 0;color:var(--deprecated-foreground)}.field-title{display:flex;padding:8px 0}.field-title .field-label{font-size:14px;font-weight:600;line-height:1.2}.field-title .field-description{font-size:12px;line-height:1.4;color:var(--neutral-400);margin-left:5px}.select-buttons-group{display:flex;flex-wrap:wrap;min-height:50px}.select-button{display:inline-block;height:32px;background-color:var(--background);border:1px solid var(--neutral-200);border-radius:6px;color:var(--foreground);font-size:12px;font-weight:500;line-height:16px;padding:8px;margin:2px;box-sizing:border-box;cursor:pointer;flex:10% 0 1;white-space:nowrap}.select-button.disabled{opacity:.6}.select-button.active{background-color:var(--primary);border-color:var(--primary);color:var(--primary-foreground)}@media screen and (max-width: 600px){form.vertical-form>div,.form.vertical-form>div{min-width:auto}}body.ReactModal__Body--open{overflow:hidden}.ReactModal__Overlay{background-color:rgba(0,0,0,.3) !important;z-index:10000 !important;display:flex;flex-direction:row;justify-content:center;align-items:center;padding:35px 0 !important}.ReactModal__Content{margin:10px;overflow:auto;-webkit-overflow-scrolling:touch;outline:none;padding:24px;border:1px solid #d4d8db !important;border-radius:2px;box-shadow:0 6px 15px 0 rgba(0,0,0,.1) !important;background:#fff !important;max-width:800px;transition:all .2s ease;flex-grow:0;flex-shrink:1;position:static !important;max-height:100%;transform:scale(0.9)}.ReactModal__Content:focus{outline:none}.ReactModal__Content .title .actions>*{margin-right:10px}.ReactModal__Content .modal-title{font-size:32px;font-weight:700;letter-spacing:-1px;line-height:38px;margin-bottom:10px}.ReactModal__Content .modal-description{color:var(--neutral-400);font-size:16px;line-height:22px;margin-bottom:15px}.ReactModal__Content .footer{display:flex;justify-content:flex-end;border-top:1px solid #ccc;align-items:center;padding-top:10px;margin-top:10px}.ReactModal__Content .category-list{width:100%}.ReactModal__Content .category{width:100%;text-align:left}.ReactModal__Content .category .caption{color:#848484}.ReactModal__Content .category .with-caption{padding-bottom:11px}.ReactModal__Content .category .category-columns{display:flex;flex-flow:row wrap;width:100%}.ReactModal__Content .category .category-header{border-bottom:1px solid #eee;margin-bottom:20px}.ReactModal__Content .category .category-header span{position:relative;font-size:14px;top:10px;background:#fff;padding:0 8px 0 4px;text-transform:uppercase}.ReactModal__Content .columns-list{display:flex;flex-flow:row wrap}.ReactModal__Content .columns-list .full-column-list-item{max-width:250px;min-width:250px}.ReactModal__Content .columns-list .full-column-list-item .checkbox__text{word-break:break-word;font-size:.73125rem;margin-left:8px}.ReactModal__Content .columns-list .category-columns{width:100%}.ReactModal__Content .columns-list li{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #f5f5f5}.ReactModal__Content .columns-list li .full-column-list-item{border-bottom:none}.notes-page-edit{min-width:660px !important}.notes-page-edit .standard-modal__content{padding-right:15px;padding-bottom:15px}.edit-table-modal{min-width:350px}.edit-table-modal .category-columns{padding:20px 0}.ReactModal__Content--after-open{transform:scale(1)}.share-list-link-modal .link{word-break:break-all}.export-modal-overlay{z-index:1500 !important;position:fixed;inset:0}.export-modal{min-width:525px;min-height:247px}.export-modal .progress-wrapper{position:relative;height:8px;margin:42px 0 20px;width:100%;background-color:rgba(var(--primary), 0.2)}.export-modal .progress-wrapper .progress-line{height:100%;background:var(--primary)}.export-modal .progress-wrapper .progress-line.future{position:absolute;top:0;background:rgba(var(--primary), 0.4)}.export-modal .footer{bottom:0;right:0;left:0;background:#fff;padding:10px 20px 10px 0}.export-modal .footer .footer-text{color:#5d5d5f;margin-right:20px}.export-modal .footer .type-selector{display:flex;margin-right:20px}.export-modal .footer .alert{margin-right:55px;margin-left:15px}.export-modal .button{display:inline-block}.edit-modal{flex:1;max-width:calc(100vw - 10%);height:calc(100vh - 30%);padding:0}@media screen and (max-width: 600px){.export-modal{min-width:inherit;width:90%}.export-modal .footer .type-selector{flex-direction:column;padding-left:100px}}.image-wrapper{text-align:center;border-radius:4px;box-shadow:rgba(0,0,0,.05) 0 1px 4px;overflow:hidden}.image-wrapper img{width:100%;height:100%}.image-wrapper-item-name{display:flex;width:100%;height:100%;align-items:center;font-size:9px;justify-content:center;background:#fafafa;font-weight:600}.image-wrapper.extra-small-image{width:24px;height:24px;min-width:24px;min-height:24px}.image-wrapper.small-image{width:32px;height:32px;min-width:32px;min-height:32px}.image-wrapper.ssmedium-image{width:40px;height:40px;min-width:40px;min-height:40px}.image-wrapper.smedium-image{width:54px;height:54px;min-width:54px;min-height:54px}.image-wrapper.medium-image{width:74px;height:74px;min-width:74px;min-height:74px}.image-wrapper.large-image{width:74px;height:74px;min-width:74px;min-height:74px}.image-wrapper.person-image{display:flex;align-content:center;border-radius:50%}.image-wrapper.person-image img{border-radius:50%}.image-wrapper.person-image-square{border:2px solid #f0f1f2;border-radius:0%}.image-wrapper.person-image-square img{border-radius:0%}.card .simple-table th{background:none;border-bottom:1px solid #ccc}.card .simple-table__footer{font-weight:700}.company-map-card .company-address{padding:20px 10px;color:#222;font-weight:600}.last-update-date{margin-bottom:10px}.company-info .simple-table{margin-top:10px}.card-tiles .card-tiles-row{flex:1;flex-wrap:wrap}.card-tiles .card-tiles-row>*{max-width:50%;flex:1;align-self:flex-start}.card-tiles .card-tiles-row>*:only-child{margin-right:10px}.entity-profile{position:relative;height:100%;margin-bottom:2em}.investor-overview .card,.user-overview .card{margin-bottom:0px}.company-overview,.investor-overview,.user-overview{flex-wrap:wrap}.company-overview .item-details-location-map,.investor-overview .item-details-location-map,.user-overview .item-details-location-map{height:300px;z-index:0}.company-overview .item-details-location-map .leaflet-control-attribution,.investor-overview .item-details-location-map .leaflet-control-attribution,.user-overview .item-details-location-map .leaflet-control-attribution{display:none}.company-overview .item-details-location-map .leaflet-popup,.investor-overview .item-details-location-map .leaflet-popup,.user-overview .item-details-location-map .leaflet-popup{margin-bottom:50px}.university-empty-logo{background:#d5d5d5;width:inherit;height:inherit;display:flex;align-items:center;justify-content:center}.university-empty-logo .icon-bank{color:#fff}.signup-date{color:var(--neutral-400)}.person-background-info-section{display:flex;flex-direction:column;margin:10px 10px 10px 0;padding:10px 10px 0 0;border-top:1px solid rgba(238,238,238,.9333333333)}.person-background-info-section .person-background-info-section__title{padding-bottom:4px;margin-bottom:2px}.person-background-info-section .person-background-info-section__title .backgrounds{text-transform:none}.person-background-info-section .person-background-info-section__content>*{margin:0 !important}.person-background-info-section .person-background-info-section__content .position{line-height:22px;font-size:14px}.small-entities-list .small-entities-list__li{margin-bottom:5px}.small-entities-list .small-entities-list__li-name{line-height:22px;font-size:14px;white-space:nowrap}.small-entities-list .small-entities-list__li-tagline{color:var(--neutral-400);line-height:16px}.small-entities-list.founded-companies-list .founded-company-tagline{padding-left:5px;color:var(--neutral-400)}.small-entities-list.founded-companies-list .founded-company-tagline a{color:var(--neutral-400)}.small-entities-list.founded-companies-list .founded-company-tagline a:hover{color:var(--primary)}.grid-list{display:flex;flex-flow:row wrap}.grid-list .grid-list-item{border-bottom:1px solid var(--neutral-100);padding:10px 10px 10px 0;width:50%}.grid-list .grid-list-item .info{flex:1}.grid-list .grid-list-item .name{padding:0 0 1px;font-size:16px;font-weight:600}.grid-list .grid-list-item .name a{color:#222}.grid-list .grid-list-item .name [class$=-label]{position:relative;top:-2px;margin-left:5px}.grid-list .grid-list-item__with-margin-top{margin-top:10px}.grid-list .grid-list-item .subtitles-container{display:flex;flex-direction:column;margin-top:2px}.grid-list .grid-list-item .subtitles-container .subtitle{padding:2px 0;font-size:12px;font-weight:400}.portfolio-analysis-section{flex:1}.portfolio-analysis-section:first-child{margin-right:20px}.portfolio-analysis-section:last-child{margin-left:20px}.portfolio-analysis-section .portfolio-analysis-section-title{text-transform:uppercase;font-weight:600;margin-bottom:10px}.portfolio-analysis-section .portfolio-analysis-section-items .item{padding-bottom:5px;color:var(--neutral-400)}.portfolio-analysis-section .portfolio-analysis-section-items .item .item-name{flex:1;color:var(--deprecated-foreground)}.portfolio-analysis-section .portfolio-analysis-section-items .item .item-count{font-size:12px;color:var(--foreground)}.portfolio-analysis-section .portfolio-analysis-section-items .item:hover{background:#f8f8f8;color:var(--foreground)}.portfolio-analysis-section .portfolio-analysis-section-items .item>span{display:inline-block;padding-right:4px}@media screen and (max-width: 600px){.card-tiles .card-tiles-col{min-width:100%;margin-right:0}.card-tiles .card-tiles-row{flex:1;flex-wrap:wrap}.card-tiles .card-tiles-row>*{min-width:100%;max-width:100%}.grid-list .grid-list-item{width:100%}}.claim-company{padding:20px}.call-to-action-card .card-content{padding:53px 0;text-align:center}.call-to-action-card .card-content .description{font-size:20px;margin-bottom:3px;color:#777}.call-to-action-card .card-content .button{display:inline-block;margin-top:0}.table-list{position:relative}.filtered-list-actions{display:flex;align-items:center;justify-content:flex-end}.filtered-list-actions .table-sorting-select{min-width:150px;margin-left:10px}.lineChartColumn .growth-line-chart{padding:0 10px}.table .table-column-header.exitedInvestors,.table .table-list-column.exitedInvestors{min-width:140px !important;max-width:140px}.table .table-column-header.lastFunding,.table .table-list-column.lastFunding{min-width:180px !important;max-width:180px}.table .table-column-header.totalEv,.table .table-list-column.totalEv{min-width:180px !important;max-width:180px}.table .table-column-header.newFundAmount,.table .table-list-column.newFundAmount{min-width:180px !important;max-width:180px}.table .table-column-header.amount,.table .table-list-column.amount{min-width:180px !important;max-width:180px}.table .table-column-header.acquirors,.table .table-list-column.acquirors{min-width:160px !important;max-width:160px}.table .table-column-header.created,.table .table-list-column.created{min-width:100px !important;max-width:100px}.table .table-column-header.date,.table .table-list-column.date{min-width:100px !important;max-width:100px}.table .table-column-header.created,.table .table-list-column.created{min-width:100px !important;max-width:100px}.table .table-column-header.lineChartColumn,.table .table-list-column.lineChartColumn{min-width:140px !important}.table .table-column-header.deltaColumn,.table .table-list-column.deltaColumn{min-width:120px !important}.table .table-column-header.Number.of.rounds,.table .table-list-column.Number.of.rounds{min-width:200px !important}.table .table-column-header.Amount.invested,.table .table-list-column.Amount.invested{min-width:200px !important}.table .table-column-header.Amount.exited,.table .table-list-column.Amount.exited{min-width:200px !important}.table .table-column-header.market-name,.table .table-list-column.market-name{min-width:200px !important}.table .table-column-header.investorInvestments,.table .table-list-column.investorInvestments{min-width:250px !important}.table .table-column-header.coInvestments,.table .table-list-column.coInvestments{min-width:450px !important}.table .table-column-header.investments,.table .table-list-column.investments{min-width:250px !important;max-width:250px}.table .table-column-header.lpInvestments,.table .table-list-column.lpInvestments{min-width:250px !important;max-width:250px}.table .table-column-header.users,.table .table-list-column.users{min-width:160px !important;max-width:160px}.table .table-column-header.title,.table .table-list-column.title{min-width:240px !important;max-width:240px}.table .table-column-header.roles,.table .table-list-column.roles{min-width:180px !important;max-width:180px}.table .table-column-header.investorExitsNum,.table .table-list-column.investorExitsNum{min-width:80px !important;max-width:80px}.table .table-column-header.jobRoles,.table .table-list-column.jobRoles{min-width:250px !important;max-width:250px}.table .table-column-header.companyFoundersBackground,.table .table-list-column.companyFoundersBackground{min-width:160px !important;max-width:160px}.table .table-column-header.innovations,.table .table-list-column.innovations{min-width:250px !important;max-width:250px}.table .table-column-header.totalJobsAvailable,.table .table-list-column.totalJobsAvailable{min-width:100px !important;max-width:100px}.table .table-column-header.lastFundingAmount,.table .table-list-column.lastFundingAmount{min-width:250px !important;max-width:250px}.table .table-column-header.innovationCorporateRank,.table .table-list-column.innovationCorporateRank{min-width:180px !important;max-width:180px}.table .table-column-header.prominence,.table .table-list-column.prominence{min-width:220px !important;max-width:220px}.table .table-column-header.startupRankingRating,.table .table-list-column.startupRankingRating{min-width:150px !important;max-width:150px}.table-list-column.deltaColumn{justify-content:center;align-items:center}.table-list-column.deltaColumn .delta{font-weight:600;transition:all .3s}.table-list-column.deltaColumn .delta.positive{color:var(--success)}.table-list-column.deltaColumn .delta.negative{color:var(--destructive)}.table-list-column.deltaColumn .was{font-size:11px;transition:opacity .3s ease-in;color:var(--neutral-400);opacity:0}.table-list-column.deltaColumn:hover .delta{transform:translate3d(0, -3px, 0)}.table-list-column.deltaColumn:hover .was{opacity:1}.table-list-column.author .other-owners{margin-left:5px}.table-list-item.angel .table-list-column.name .image-wrapper{border-radius:27.5px;overflow:hidden}.table-list-columns-fixed,.table-columns-header-fixed{position:sticky;z-index:1;left:0;background:#fff}.table-list-columns-fixed .table-list-column:last-child,.table-list-columns-fixed .table-column-header:last-child,.table-columns-header-fixed .table-list-column:last-child,.table-columns-header-fixed .table-column-header:last-child{border-right:1px solid var(--neutral-100);padding-right:15px}.table-list-column.verifyDate>div,.table-list-column.approved>div{margin:0 auto}.table-list-column.verifyDate>div .control,.table-list-column.approved>div .control{width:inherit;margin:0 auto}.table-list-column.startupRankingRating,.table-list-column.lastFoundedCompanyStartupRankingRating{padding:15px !important}@media(max-width: 600px){.table-list-column.startupRankingRating,.table-list-column.lastFoundedCompanyStartupRankingRating{min-width:90px}}.table-list-column.name{padding:0 5px 0 15px !important}.table-list-column.name,.table-list-column.acquiror,.table-list-column.target,.list-markers-ul,.table-list-column.organization{max-width:300px;min-width:300px;display:flex;flex-direction:row;text-align:left;justify-content:flex-start;align-items:center;padding-right:0;padding-left:15px;overflow:visible}.table-list-column.name.sorting,.table-list-column.acquiror.sorting,.table-list-column.target.sorting,.list-markers-ul.sorting,.table-list-column.organization.sorting{max-width:300px;min-width:300px}.table-list-column.name .name-column-wrapper,.table-list-column.acquiror .name-column-wrapper,.table-list-column.target .name-column-wrapper,.list-markers-ul .name-column-wrapper,.table-list-column.organization .name-column-wrapper{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;width:100%}.table-list-column.name .positions a,.table-list-column.acquiror .positions a,.table-list-column.target .positions a,.list-markers-ul .positions a,.table-list-column.organization .positions a{font-weight:400}.table-list-column.name .positions .more-positions,.table-list-column.acquiror .positions .more-positions,.table-list-column.target .positions .more-positions,.list-markers-ul .positions .more-positions,.table-list-column.organization .positions .more-positions{font-size:12px;font-weight:normal;padding:3px 0 0}.table-list-column.name .positions .more-positions a,.table-list-column.acquiror .positions .more-positions a,.table-list-column.target .positions .more-positions a,.list-markers-ul .positions .more-positions a,.table-list-column.organization .positions .more-positions a{color:var(--deprecated-foreground)}.table-list-column.name .image-wrapper,.table-list-column.acquiror .image-wrapper,.table-list-column.target .image-wrapper,.list-markers-ul .image-wrapper,.table-list-column.organization .image-wrapper{min-width:55px;max-width:55px;height:55px;border:1px solid #eaeaea;margin-right:15px;text-align:center}.table-list-column.name .image-wrapper img,.table-list-column.acquiror .image-wrapper img,.table-list-column.target .image-wrapper img,.list-markers-ul .image-wrapper img,.table-list-column.organization .image-wrapper img{max-width:100%;max-height:100%}.table-list-column.name .info,.table-list-column.acquiror .info,.table-list-column.target .info,.list-markers-ul .info,.table-list-column.organization .info{overflow:hidden hidden;padding:10px 0}.table-list-column.name .info .name,.table-list-column.acquiror .info .name,.table-list-column.target .info .name,.list-markers-ul .info .name,.table-list-column.organization .info .name{margin-bottom:2px;color:#222;font-size:16px;font-weight:600;display:flex;align-items:center}.table-list-column.name .info .name a,.table-list-column.acquiror .info .name a,.table-list-column.target .info .name a,.list-markers-ul .info .name a,.table-list-column.organization .info .name a{text-decoration:none;color:#222;font-weight:600;font-size:18px}.table-list-column.name .info .name a:hover,.table-list-column.acquiror .info .name a:hover,.table-list-column.target .info .name a:hover,.list-markers-ul .info .name a:hover,.table-list-column.organization .info .name a:hover{color:var(--primary)}.table-list-column.name .info .tagline,.table-list-column.acquiror .info .tagline,.table-list-column.target .info .tagline,.list-markers-ul .info .tagline,.table-list-column.organization .info .tagline{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;line-height:1.8;font-size:13px;color:var(--neutral-400)}.table-list-column.name .info .tagline.angel,.table-list-column.acquiror .info .tagline.angel,.table-list-column.target .info .tagline.angel,.list-markers-ul .info .tagline.angel,.table-list-column.organization .info .tagline.angel{white-space:normal;max-height:28px}.table-list-column.name .info .type,.table-list-column.acquiror .info .type,.table-list-column.target .info .type,.list-markers-ul .info .type,.table-list-column.organization .info .type{margin-top:4px;line-height:14px;font-size:13px}.table-list-column.name .info .labels,.table-list-column.acquiror .info .labels,.table-list-column.target .info .labels,.list-markers-ul .info .labels,.table-list-column.organization .info .labels{margin-top:5px}.table-list-column.name .info .labels [class$=-label],.table-list-column.acquiror .info .labels [class$=-label],.table-list-column.target .info .labels [class$=-label],.list-markers-ul .info .labels [class$=-label],.table-list-column.organization .info .labels [class$=-label]{margin-right:5px}.table-list-column.industries{text-align:center;font-size:12px}.table-list-column.industries span{display:block}.table-list-column.growthStage{text-align:center}.table-list-column.employees{text-align:center}.table-list-column.totalFunding{text-align:center}.table-list-column.totalFunding a{text-transform:uppercase;margin-top:5px;font-size:11px}.table-list-column.investors{text-align:center;font-size:12px}.table-list-column.investments .user-exits-wrapper{margin-top:5px;justify-content:center;align-items:center}.table-list-column.investments .user-exits-wrapper .label{text-transform:uppercase;font-weight:600;margin-right:6px;font-size:11px;display:block;padding-top:2px}.table-list-column.roundsExperience .comma-list-column{font-size:10px}.table-list-column .comma-list-column{font-size:12px;line-height:1.2}.table-list-column .comma-list-column .item{margin-left:4px}.table-list-column .comma-list-column a{white-space:nowrap}.table-list-column .comma-list-column .all-items{padding:0 0 0 10px}.table-list-column .comma-list-column .all-itemsspan{color:#222}.table-list-column .comma-list-column .all-items:hover{text-decoration:underline}.table-list-column .comma-list-column.investments{display:flex;flex-wrap:wrap}.table-list-column .comma-list-column.investments .item .exited{margin-left:3px;color:#444}.table-list-column.newsSource{font-size:12px}.table-wrapper.reports .table-list-column.tags{display:flex;flex-direction:row;align-items:center}.table-wrapper.reports .table-list-column.title,.table-wrapper.reports .table-column-header.title{text-align:left}.table-wrapper.reports .table-list-column.title>span,.table-wrapper.reports .table-list-column.title>div,.table-wrapper.reports .table-column-header.title>span,.table-wrapper.reports .table-column-header.title>div{padding-left:20px}.trading-multiples-wrapper .table .table-column-header.name,.trading-multiples-wrapper .table .table-list-column.name{min-width:180px !important;max-width:180px}.users-filtered-list .table-list-column.investments .comma-list-column,.users-filtered-list .table-list-column.roles{font-size:13px}.funding-round-cell-wrapper .funding-round-info{display:block;text-align:center;padding:0 5px;font-size:10px;color:var(--neutral-400);margin-top:5px}.table-column-header.startupRankingRating{padding:0 !important}@media(max-width: 600px){.table-column-header.startupRankingRating{min-width:90px}}.table-column-header.startupRankingRating .table-column-text{padding:5px}.table-column-header.name,.table-column-header.title,.table-column-header.acquiror,.table-column-header.target,.table-column-header.organization{max-width:300px;min-width:300px;text-align:left}.table-column-header.name.sorting,.table-column-header.title.sorting,.table-column-header.acquiror.sorting,.table-column-header.target.sorting,.table-column-header.organization.sorting{max-width:300px;min-width:300px}.table-column-header.name .table-column-text,.table-column-header.title .table-column-text,.table-column-header.acquiror .table-column-text,.table-column-header.target .table-column-text,.table-column-header.organization .table-column-text{padding-left:15px}.table-wrapper.topFunds .table-column-header{height:40px}.table-wrapper.topFunds .table-column-header.investorRankPortfolioSizeValuationHigher500m,.table-wrapper.topFunds .table-column-header.investorRankExitsNumberHigher100m{font-size:10px}.table-wrapper.topFunds .table-column-header.investorRankPortfolioSizeValuationHigher500m .subtitle,.table-wrapper.topFunds .table-column-header.investorRankExitsNumberHigher100m .subtitle{font-size:9px}.table-column-header.industries,.table-column-header.growthStage,.table-column-header.employees,.table-column-header.totalFunding{text-align:center}.table-wrapper.savedSearches .table-column-header.filters,.table-wrapper.savedSearches .table-list-column.filters,.table-wrapper.publicSavedSearches .table-column-header.filters,.table-wrapper.publicSavedSearches .table-list-column.filters{max-width:none;min-width:375px}.table-wrapper.savedSearches .table-list-column.updates a,.table-wrapper.publicSavedSearches .table-list-column.updates a{display:flex;flex-direction:column}.table-wrapper.savedSearches .table-list-column.notifications,.table-wrapper.publicSavedSearches .table-list-column.notifications{display:flex;align-items:center}.table-list-item.revenues,.table-list-item.acquirors,.table-list-item.exitedInvestors,.table-list-item.models,.table-list-item.locations,.table-list-item.hqLocations,.table-list-item.investmentStages{font-size:12px}.field-list .field{display:flex;flex-direction:row;padding:5px 0}.field-list .field .source{color:var(--neutral-400);padding:0 3px}.field-list .field .title{min-width:150px;max-width:150px;padding:0 30px 0 0;color:var(--deprecated-foreground)}.field-list .field .description{text-align:left;flex:1;display:flex;flex-wrap:wrap}.field-list .field .description .acquired{margin-left:4px}.field-value-link{display:inline-block}.countries-table .table-list-column,.industries-table .table-list-column{text-align:center}.countries-table .item-links a,.industries-table .item-links a{display:block;padding:0 0 3px;font-size:10px}.info-row{padding:5px 0}.info-row .info-row-title{text-align:right}.topFunds .table .table-column-header.investorInvestments,.topFunds .table .table-list-column.investorInvestments{min-width:300px !important}.transactions-wrapper .amount .funding-round-cell-news-source,.table-wrapper.transactions .amount .funding-round-cell-news-source,.industry-funding-wrapper .amount .funding-round-cell-news-source,.table-wrapper.newFunds .amount .funding-round-cell-news-source{padding:0 40px}.transactions-wrapper .table-list-column.amount,.table-wrapper.transactions .table-list-column.amount,.industry-funding-wrapper .table-list-column.amount,.table-wrapper.newFunds .table-list-column.amount{font-size:18px}.report-summary{line-height:16px}.report-summary .companies-count,.report-summary .fundings-count{font-weight:600}.table-list-column.worked,.table-list-column.founded{flex-direction:row;align-items:center}.virtual-list{position:relative}.virtual-list>div{contain:layout;will-change:transform;position:absolute;left:0;right:0}.list-item.lead .matches .icon-check,.list-item.lead .matches .icon-x,.list-item.target-investor .matches .icon-check,.list-item.target-investor .matches .icon-x{width:16px;height:16px;min-width:16px;border-radius:50%;background:#dff0d8;color:#3c763d;display:inline-block;justify-content:center;align-items:center;font-size:7px;border:2px solid #3c763d;text-align:center;line-height:14px;margin-right:6px}.list-item.lead .matches .icon-x,.list-item.target-investor .matches .icon-x{color:#a94442;background-color:#f2dede;border-color:#a94442;font-size:9px;font-weight:700}.list-item.lead .base-info-wrapper,.list-item.target-investor .base-info-wrapper{width:100%}.list-item.lead .name-wrapper,.list-item.target-investor .name-wrapper{flex:1}.list-item.lead .name,.list-item.target-investor .name{font-size:24px;margin-bottom:5px}.list-item.lead .name .icon-heart,.list-item.target-investor .name .icon-heart{width:30px;height:30px;border-radius:15px;background:#e2e2e2;color:var(--neutral-400);display:flex;flex-direction:row;align-items:center;justify-content:center;margin-right:5px;font-size:13px;cursor:pointer;margin-left:auto;transition:opacity .2s;opacity:.7}.list-item.lead .name .icon-heart:hover,.list-item.target-investor .name .icon-heart:hover{opacity:1}.list-item.lead .info,.list-item.target-investor .info{overflow:hidden}.list-item.lead .tag-list,.list-item.target-investor .tag-list{margin-bottom:10px}.list-item.lead .tagline,.list-item.target-investor .tagline{font-size:13px;padding-bottom:5px}.list-item.lead .info-row,.list-item.target-investor .info-row{font-size:12px;color:var(--neutral-400);margin-top:10px}.list-item.lead .locations,.list-item.target-investor .locations{color:var(--deprecated-foreground);font-size:11px}.list-item.lead .external-url,.list-item.target-investor .external-url{color:var(--primary);margin:5px 5px 5px 0;display:inline-block}.list-item.lead .traffic,.list-item.target-investor .traffic{color:var(--neutral-400);font-size:12px}.user-lists-empty__image{margin-top:25px;background-image:url(asset-empty-save-list.52c061d8e9b97eb45525.svg);opacity:.7;height:215px;background-position:center;background-repeat:no-repeat}.user-searches-empty__image{margin-top:25px;background-image:url(asset-empty-save-search.0d33ff477b194cce5bdb.svg);opacity:.7;height:215px;background-position:center;background-repeat:no-repeat}.notes .table-column-header.note,.notes .table-list-column.note{text-align:left;padding-left:10px;font-size:15px}.notes .table-list-column.organization .image-wrapper{min-width:40px;max-width:40px;height:40px}.notes .table-list-column.organization .info .name a{font-size:initial}.notes .table-list-column.organization .info .tagline{font-size:12px}.user-lists-table .total-list-column .icon-font,.public-lists-table .total-list-column .icon-font,.saved-searches-table .total-list-column .icon-font,.lists-page .total-list-column .icon-font,.userLists .total-list-column .icon-font,.savedSearches .total-list-column .icon-font,.publicSavedSearches .total-list-column .icon-font,.lists .total-list-column .icon-font{margin-right:5px;color:var(--neutral-400)}.user-lists-table .title,.public-lists-table .title,.saved-searches-table .title,.lists-page .title,.userLists .title,.savedSearches .title,.publicSavedSearches .title,.lists .title{max-width:none;flex:1;text-align:left;position:relative;padding:0 15px 0 20px}.user-lists-table .title .featured-list-ribbon,.public-lists-table .title .featured-list-ribbon,.saved-searches-table .title .featured-list-ribbon,.lists-page .title .featured-list-ribbon,.userLists .title .featured-list-ribbon,.savedSearches .title .featured-list-ribbon,.publicSavedSearches .title .featured-list-ribbon,.lists .title .featured-list-ribbon{left:0;top:0}.user-lists-table .title .featured-list-ribbon svg,.public-lists-table .title .featured-list-ribbon svg,.saved-searches-table .title .featured-list-ribbon svg,.lists-page .title .featured-list-ribbon svg,.userLists .title .featured-list-ribbon svg,.savedSearches .title .featured-list-ribbon svg,.publicSavedSearches .title .featured-list-ribbon svg,.lists .title .featured-list-ribbon svg{left:4px}.user-lists-table .table-list-item,.public-lists-table .table-list-item,.saved-searches-table .table-list-item,.lists-page .table-list-item,.userLists .table-list-item,.savedSearches .table-list-item,.publicSavedSearches .table-list-item,.lists .table-list-item{height:50px}.user-lists-table .table-list-item .table-list-column,.public-lists-table .table-list-item .table-list-column,.saved-searches-table .table-list-item .table-list-column,.lists-page .table-list-item .table-list-column,.userLists .table-list-item .table-list-column,.savedSearches .table-list-item .table-list-column,.publicSavedSearches .table-list-item .table-list-column,.lists .table-list-item .table-list-column{font-weight:normal;font-size:12px}.user-lists-table .table-list-item .title,.public-lists-table .table-list-item .title,.saved-searches-table .table-list-item .title,.lists-page .table-list-item .title,.userLists .table-list-item .title,.savedSearches .table-list-item .title,.publicSavedSearches .table-list-item .title,.lists .table-list-item .title{font-weight:600;font-size:14px}.user-lists-table .table-list-item .title .inline-edit,.public-lists-table .table-list-item .title .inline-edit,.saved-searches-table .table-list-item .title .inline-edit,.lists-page .table-list-item .title .inline-edit,.userLists .table-list-item .title .inline-edit,.savedSearches .table-list-item .title .inline-edit,.publicSavedSearches .table-list-item .title .inline-edit,.lists .table-list-item .title .inline-edit{height:100%;width:100%}.user-lists-table .table-list-item .isPublic .rc-switch,.user-lists-table .table-list-item .notifications .rc-switch,.public-lists-table .table-list-item .isPublic .rc-switch,.public-lists-table .table-list-item .notifications .rc-switch,.saved-searches-table .table-list-item .isPublic .rc-switch,.saved-searches-table .table-list-item .notifications .rc-switch,.lists-page .table-list-item .isPublic .rc-switch,.lists-page .table-list-item .notifications .rc-switch,.userLists .table-list-item .isPublic .rc-switch,.userLists .table-list-item .notifications .rc-switch,.savedSearches .table-list-item .isPublic .rc-switch,.savedSearches .table-list-item .notifications .rc-switch,.publicSavedSearches .table-list-item .isPublic .rc-switch,.publicSavedSearches .table-list-item .notifications .rc-switch,.lists .table-list-item .isPublic .rc-switch,.lists .table-list-item .notifications .rc-switch{margin:0 auto}.user-lists-table .table-list-item .actions .button,.public-lists-table .table-list-item .actions .button,.saved-searches-table .table-list-item .actions .button,.lists-page .table-list-item .actions .button,.userLists .table-list-item .actions .button,.savedSearches .table-list-item .actions .button,.publicSavedSearches .table-list-item .actions .button,.lists .table-list-item .actions .button{background:rgba(0,0,0,0);border:none;display:inline-block}.card.company-news .card-content .button-view-all,.card.tab-news .card-content .button-view-all{display:block;text-align:center;margin:0 auto 15px}.reports-export-button{margin:-40px 0 20px}.facets-wrapper+.table-wrapper>.infinite-grid{margin-top:20px}@media screen and (max-width: 1200px){.table .table-column-header.lastFunding,.table .table-list-column.lastFunding{min-width:130px !important;max-width:130px}}@media screen and (max-width: 600px){.table .table-column-header.lastFundingAmount,.table .table-list-column.lastFundingAmount{min-width:120px !important}.table .table-column-header.investments,.table .table-list-column.investments{min-width:110px !important;max-width:110px}.table .table-column-header.investorInvestments,.table .table-list-column.investorInvestments{min-width:110px !important;max-width:110px}.table .table-column-header.users,.table .table-list-column.users{min-width:110px !important;max-width:110px}.table .table-column-header.investorTotal,.table .table-list-column.investorTotal{min-width:110px !important;max-width:110px}.table .table-column-header.lineChartColumn,.table .table-list-column.lineChartColumn{min-width:110px !important;max-width:110px}.table .table-column-header.totalEv,.table .table-list-column.totalEv{min-width:110px !important;max-width:110px}.table .table-column-header.newFundAmount,.table .table-list-column.newFundAmount{min-width:110px !important;max-width:110px}.table .table-column-header.amount,.table .table-list-column.amount{min-width:110px !important;max-width:110px}.table .table-column-header.roles,.table .table-list-column.roles{min-width:110px !important;max-width:110px}.table .table-column-header.name,.table .table-list-column.name{min-width:210px !important;max-width:210px}.table .table-column-header.title,.table .table-list-column.title{min-width:210px !important;max-width:210px}.table .table-column-header.coInvestments,.table .table-list-column.coInvestments{min-width:inherit !important}.table .table-column-header.Number.of.rounds,.table .table-list-column.Number.of.rounds{min-width:150px !important}.table .table-column-header.Amount.invested,.table .table-list-column.Amount.invested{min-width:150px !important}.table .table-column-header.Amount.exited,.table .table-list-column.Amount.exited{min-width:150px !important}.table .table-column-header.market-name,.table .table-list-column.market-name{min-width:150px !important}.table .table-column-header.acquirors,.table .table-list-column.acquirors{min-width:85px !important}.transactions-wrapper .amount{font-size:14px}.transactions-wrapper .amount .funding-round-cell-news-source{padding:0}.table-column-header.investments .intersperse-sep,.table-list-column.investments .intersperse-sep,.table-column-header.investorInvestments .intersperse-sep,.table-list-column.investorInvestments .intersperse-sep{display:none}.table-list-column.name .name-column-wrapper .icon-verified{display:none}.list-item.lead .list-item-body{padding:0}.list-item.lead .list-item-body .image-wrapper{margin:0;width:auto;height:auto}.list-item.lead .list-item-body .name{margin-bottom:10px}.list-item.lead .list-item-body .tagline{display:none}.list-item.lead .list-item-body .tag-list.tags{display:none}}.leaflet-container a.leaflet-popup-close-button{width:24px;height:24px}.map-popup-link{color:var(--foreground);cursor:pointer;min-width:70px;text-align:center;font-weight:700}.map-page{flex:1;position:relative}.entities-map .leaflet-popup{margin-bottom:5px}.entities-map .leaflet-popup-content{display:flex;align-items:center;width:auto !important}.entities-map .leaflet-popup-content p{margin:inherit;white-space:nowrap}.entities-map .leaflet-popup-tip-container{left:78px}.map{z-index:0}.map .map-filters{display:flex;align-items:center;font-size:13px;position:absolute;top:25px;z-index:403;left:25px;padding:5px 10px;flex-wrap:wrap;background:var(--neutral-100)}.map .map-filters .map-filter{color:var(--primary);cursor:pointer;line-height:1.2}.map .map-filters .map-filter.selected{font-weight:700}.map .map-filters .map-filter:hover{filter:brightness(80%)}.map .map-filters .icon-chevronRight{font-size:11px;padding:0 5px;color:var(--deprecated-foreground)}.map .leaflet-touch .leaflet-bar a{width:21px;height:22px;line-height:22px}.map .leaflet-touch .leaflet-bar.leaflet-control a{width:68px}.map .leaflet-touch .leaflet-control-zoom-in,.map .leaflet-touch .leaflet-control-zoom-out{font-size:12px;position:relative;visibility:hidden}.map .leaflet-touch .leaflet-control-zoom-in::before,.map .leaflet-touch .leaflet-control-zoom-out::before{background:inherit;top:0;left:0;position:absolute;visibility:visible;height:100%;width:100%}.map .leaflet-touch .leaflet-control-zoom-in::before{border-bottom:1px solid #ccc;content:"Zoom In"}.map .leaflet-touch .leaflet-control-zoom-out::before{content:"Zoom Out"}.map .leaflet-right{right:10px}.map .leaflet-div-icon{border:none;background:none;width:40px;height:40px}.map .leaflet-cluster-anim .leaflet-marker-icon,.map .leaflet-cluster-anim .leaflet-marker-shadow{transition:transform .3s ease-out,opacity .3s ease-in}.map .leaflet-cluster-spider-leg{transition:stroke-dashoffset .3s ease-out,stroke-opacity .3s ease-in}.map .item-cluster{width:40px;height:40px;border-radius:50%;margin-left:-50%;margin-top:-50%;display:flex;flex-direction:column;align-items:center;justify-content:center;color:#fff;font-weight:600;box-shadow:0 0 3px rgba(0,0,0,.3)}.map .item-cluster span{display:block}.map .item-cluster.companies-cluster,.map .item-cluster.universities-cluster,.map .item-cluster.events-cluster{background-color:rgba(var(--company-marker-color), 0.9);border-color:var(--company-marker-color)}.map .item-cluster.investors-cluster,.map .item-cluster.users-cluster{background-color:rgba(var(--investor-marker-color), 0.9);border-color:var(--investor-marker-color)}.map .item-cluster.workspaces-cluster,.map .item-cluster.locations-cluster{background-color:rgba(var(--workspace-marker-color), 0.9);border-color:var(--workspace-marker-color)}.map .item-cluster.accelerators-cluster{background-color:rgba(var(--primary), 0.9);border-color:var(--primary)}.map .item-cluster.cluster-size-x-small{filter:brightness(110%);opacity:.7}.map .item-cluster.cluster-size-small{filter:brightness(105%);opacity:.9}.map .item-cluster.cluster-size-medium{opacity:.9}.map .item-cluster.cluster-size-large{filter:brightness(95%) contrast(120%)}.map .item-cluster.cluster-size-x-large{filter:brightness(80%) contrast(140%) saturate(151%)}.map .item-marker{display:flex;align-items:center;justify-content:center;border-radius:20px;box-shadow:0 0 3px rgba(0,0,0,.3);font-size:16px}.map .investor-marker,.map .investors-marker,.map .user-marker,.map .users-marker{background:var(--investor-marker-color);color:#fff}.map .investor-marker.selected,.map .investors-marker.selected,.map .user-marker.selected,.map .users-marker.selected{animation:map-pulse infinite 2s ease-in-out alternate}.map .company-marker,.map .companies-marker{background:var(--company-marker-color);color:#fff}.map .company-marker.selected,.map .companies-marker.selected{animation:map-pulse infinite 2s ease-in-out alternate}.map .workspaces-marker{background:var(--workspace-marker-color);color:#fff}.map .workspaces-marker.selected{animation:map-pulse infinite 2s ease-in-out alternate}.map .accelerators-marker{background:var(--primary);color:#fff}.map .accelerators-marker.selected{animation:map-pulse infinite 2s ease-in-out alternate}.leaflet-left{right:5px;left:inherit !important}.leaflet-container{height:100%;font-family:"Source Sans 3","Helvetica","Arial",sans-serif;font-size:14px}.leaflet-container .tag{color:#fff}.leaflet-container .secondary-tag{color:var(--neutral-400)}@media screen and (max-width: 960px){.map-page .list-markers-container,.map-page .toggle-list{display:none}.leaflet-container .image-column{display:none}.leaflet-container .item-details-info .info .title-tagline{display:block}}@keyframes map-pulse{0%{opacity:1}100%{opacity:.6}}.leads-page-title-wrapper{justify-content:space-between;border-bottom:1px solid #ddd;padding-bottom:10px}.leads-page-title-wrapper a{display:block}.leads-page-header{padding:10px 0}.leads-page-header a{text-transform:uppercase;padding:5px 0 15px;font-size:12px}.leads-page-header .saved-recommendations{text-align:right}.lead-rate-buttons{justify-content:center;padding:20px 0}.lead-rate-buttons .icon-x,.lead-rate-buttons .icon-heart{margin-right:10px;width:60px;height:60px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:#fff;border:5px solid #eee;box-shadow:0 0 2px rgba(0,0,0,.2);color:#ccc;cursor:pointer;transition:all .2s ease-in-out}.lead-rate-buttons .icon-x:hover,.lead-rate-buttons .icon-heart:hover{transform:scale(1.1)}.lead-rate-buttons .icon-x{font-size:26px;color:#ff4141}.lead-rate-buttons .icon-heart{font-size:18px;color:var(--success)}@media screen and (max-width: 600px){.leads-page-title{display:none}.leads-page{position:relative}.leads-page-content{position:absolute;inset:100px 0 0;display:flex;flex-direction:column;align-items:stretch;padding:0 10px}.leads-page-header a{text-transform:uppercase;font-size:10px}}@keyframes anim-rotate{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes anim-fadein{0%{opacity:0}100%{opacity:1}}@keyframes anim-fadeout{0%{opacity:1}100%{opacity:0}}@keyframes anim-fadein-up{0%{opacity:0;transform:translateY(30px)}100%{opacity:1;transform:translateY(0)}}@keyframes anim-fadein-down{0%{opacity:0;transform:translateY(-30px)}100%{opacity:1;transform:translateY(0)}}@keyframes anim-fadeout-down{0%{opacity:1;transform:translate3d(0, 0, 0)}100%{opacity:0;transform:translate3d(0, 100%, 0)}}@keyframes anim-fadein-zoom{0%{opacity:0;transform:scale(0.8);transform-origin:center}100%{opacity:1;transform:translateY(0)}}@keyframes anim-fadeout-zoom{0%{opacity:1;transform:translateY(0)}100%{opacity:0;transform:scale(0.8);transform-origin:center}}.fadein{animation:anim-fadein .2s backwards}.fadeout{animation:anim-fadeout .2s forwards}.fadeup{animation:anim-fadein-up .2s}.fadedown{animation:anim-fadein-down .2s}.fadezoom{animation:anim-fadein-zoom .2s}.fadezoom--slow{animation:anim-fadein-zoom .4s}.fadezoom-out{animation:anim-fadeout-zoom .2s;animation-fill-mode:forwards}.animation-delay-200ms{animation-fill-mode:backwards;animation-delay:.2s}.animation-delay-500ms{animation-fill-mode:backwards;animation-delay:.5s}.animation-delay-1s{animation-fill-mode:backwards;animation-delay:1s}.file\:tw-border-0::file-selector-button{border-width:0px}.file\:tw-bg-transparent::file-selector-button{background-color:transparent}.file\:tw-text-sm::file-selector-button{font-size:14px;line-height:20px}.file\:tw-font-medium::file-selector-button{font-weight:500}.placeholder\:tw-text-muted-foreground::-moz-placeholder{color:var(--muted-foreground)}.placeholder\:tw-text-muted-foreground::placeholder{color:var(--muted-foreground)}.focus-within\:tw-relative:focus-within{position:relative}.focus-within\:tw-z-20:focus-within{z-index:20}.focus-within\:tw-border-primary-hover:focus-within{border-color:var(--primary-hover)}.hover\:tw-scale-105:hover{--tw-scale-x:1.05;--tw-scale-y:1.05;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hover\:tw-scale-110:hover{--tw-scale-x:1.1;--tw-scale-y:1.1;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hover\:tw-border-border:hover{border-color:var(--border)}.hover\:tw-border-neutral-300:hover{border-color:var(--neutral-300)}.hover\:tw-border-primary:hover{border-color:var(--primary)}.hover\:\!tw-bg-neutral-300:hover{background-color:var(--neutral-300) !important}.hover\:tw-bg-accent:hover{background-color:var(--accent)}.hover\:tw-bg-muted:hover{background-color:var(--muted)}.hover\:tw-bg-neutral:hover{background-color:var(--neutral-100)}.hover\:tw-bg-neutral-200:hover{background-color:var(--neutral-200)}.hover\:tw-bg-neutral-50:hover{background-color:var(--neutral-50)}.hover\:tw-bg-primary:hover{background-color:var(--primary)}.hover\:tw-bg-primary-hover:hover{background-color:var(--primary-hover)}.hover\:tw-bg-secondary:hover{background-color:var(--secondary)}.hover\:tw-bg-topbar-signup-hover:hover{background-color:var(--topbar-signup-button-hover)}.hover\:tw-text-accent-foreground:hover{color:var(--accent-foreground)}.hover\:tw-text-background:hover{color:var(--background)}.hover\:tw-text-foreground:hover{color:var(--foreground)}.hover\:tw-text-primary-foreground:hover{color:var(--primary-foreground)}.hover\:tw-underline:hover{text-decoration-line:underline}.hover\:tw-no-underline:hover{text-decoration-line:none}.hover\:tw-opacity-100:hover{opacity:1}.hover\:tw-opacity-90:hover{opacity:0.9}.focus\:tw-bg-accent:focus{background-color:var(--accent)}.focus\:tw-bg-neutral-200:focus{background-color:var(--neutral-200)}.focus\:tw-bg-primary:focus{background-color:var(--primary)}.focus\:tw-text-accent-foreground:focus{color:var(--accent-foreground)}.focus\:tw-text-primary-foreground:focus{color:var(--primary-foreground)}.focus\:tw-opacity-100:focus{opacity:1}.focus\:tw-outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:tw-ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)}.focus\:tw-ring-ring:focus{--tw-ring-color:var(--ring)}.focus\:tw-ring-offset-2:focus{--tw-ring-offset-width:2px}.focus\:placeholder\:tw-opacity-90:focus::-moz-placeholder{opacity:0.9}.focus\:placeholder\:tw-opacity-90:focus::placeholder{opacity:0.9}.focus-visible\:tw-outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible\:tw-ring-2:focus-visible{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)}.focus-visible\:tw-ring-ring:focus-visible{--tw-ring-color:var(--ring)}.focus-visible\:tw-ring-offset-2:focus-visible{--tw-ring-offset-width:2px}.focus-visible\:tw-ring-offset-background:focus-visible{--tw-ring-offset-color:var(--background)}.active\:tw-bg-background:active{background-color:var(--background)}.disabled\:tw-pointer-events-none:disabled{pointer-events:none}.disabled\:tw-cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:tw-opacity-50:disabled{opacity:0.5}.tw-group:hover .group-hover\:tw-opacity-100{opacity:1}.tw-group.destructive .group-\[\.destructive\]\:hover\:tw-bg-destructive:hover{background-color:var(--destructive)}.tw-group.destructive .group-\[\.destructive\]\:hover\:tw-text-destructive-foreground:hover{color:var(--destructive-foreground)}.tw-group.destructive .group-\[\.destructive\]\:focus\:tw-ring-destructive:focus{--tw-ring-color:var(--destructive)}.tw-peer:disabled ~ .peer-disabled\:tw-cursor-not-allowed{cursor:not-allowed}.tw-peer:disabled ~ .peer-disabled\:tw-opacity-70{opacity:0.7}.aria-selected\:tw-bg-accent[aria-selected="true"]{background-color:var(--accent)}.aria-selected\:tw-text-accent-foreground[aria-selected="true"]{color:var(--accent-foreground)}.aria-selected\:tw-text-muted-foreground[aria-selected="true"]{color:var(--muted-foreground)}.aria-selected\:tw-opacity-100[aria-selected="true"]{opacity:1}.aria-selected\:tw-opacity-30[aria-selected="true"]{opacity:0.3}.data-\[disabled\=true\]\:tw-pointer-events-none[data-disabled="true"]{pointer-events:none}.data-\[disabled\]\:tw-pointer-events-none[data-disabled]{pointer-events:none}.data-\[state\=checked\]\:tw-translate-x-3[data-state="checked"]{--tw-translate-x:0.75rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[state\=checked\]\:tw-translate-x-4[data-state="checked"]{--tw-translate-x:1rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[state\=unchecked\]\:tw-translate-x-0[data-state="unchecked"]{--tw-translate-x:0px;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[swipe\=cancel\]\:tw-translate-x-0[data-swipe="cancel"]{--tw-translate-x:0px;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[swipe\=end\]\:tw-translate-x-\[var\(--radix-toast-swipe-end-x\)\][data-swipe="end"]{--tw-translate-x:var(--radix-toast-swipe-end-x);transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[swipe\=move\]\:tw-translate-x-\[var\(--radix-toast-swipe-move-x\)\][data-swipe="move"]{--tw-translate-x:var(--radix-toast-swipe-move-x);transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes tw-accordion-up{from{height:var(--radix-accordion-content-height)}to{height:0}}.data-\[state\=closed\]\:tw-animate-accordion-up[data-state="closed"]{animation:tw-accordion-up 0.2s ease-out}@keyframes tw-accordion-down{from{height:0}to{height:var(--radix-accordion-content-height)}}.data-\[state\=open\]\:tw-animate-accordion-down[data-state="open"]{animation:tw-accordion-down 0.2s ease-out}.data-\[state\=active\]\:tw-bg-background[data-state="active"]{background-color:var(--background)}.data-\[state\=checked\]\:tw-bg-primary[data-state="checked"]{background-color:var(--primary)}.data-\[state\=open\]\:tw-bg-accent[data-state="open"]{background-color:var(--accent)}.data-\[state\=open\]\:tw-bg-secondary[data-state="open"]{background-color:var(--secondary)}.data-\[state\=unchecked\]\:tw-bg-input[data-state="unchecked"]{background-color:var(--input)}.data-\[state\=active\]\:tw-text-foreground[data-state="active"]{color:var(--foreground)}.data-\[state\=checked\]\:tw-text-primary-foreground[data-state="checked"]{color:var(--primary-foreground)}.data-\[state\=open\]\:tw-text-accent-foreground[data-state="open"]{color:var(--accent-foreground)}.data-\[state\=open\]\:tw-text-muted-foreground[data-state="open"]{color:var(--muted-foreground)}.data-\[disabled\=true\]\:tw-opacity-50[data-disabled="true"]{opacity:0.5}.data-\[disabled\]\:tw-opacity-50[data-disabled]{opacity:0.5}.data-\[state\=active\]\:tw-shadow-sm[data-state="active"]{--tw-shadow:0 1px 2px 0 rgb(0 0 0 / 0.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.data-\[swipe\=move\]\:tw-transition-none[data-swipe="move"]{transition-property:none}.data-\[state\=closed\]\:tw-duration-300[data-state="closed"]{transition-duration:300ms}.data-\[state\=open\]\:tw-duration-500[data-state="open"]{transition-duration:500ms}.data-\[state\=open\]\:tw-animate-in[data-state="open"]{animation-name:enter;animation-duration:150ms;--tw-enter-opacity:initial;--tw-enter-scale:initial;--tw-enter-rotate:initial;--tw-enter-translate-x:initial;--tw-enter-translate-y:initial}.data-\[state\=closed\]\:tw-animate-out[data-state="closed"]{animation-name:exit;animation-duration:150ms;--tw-exit-opacity:initial;--tw-exit-scale:initial;--tw-exit-rotate:initial;--tw-exit-translate-x:initial;--tw-exit-translate-y:initial}.data-\[swipe\=end\]\:tw-animate-out[data-swipe="end"]{animation-name:exit;animation-duration:150ms;--tw-exit-opacity:initial;--tw-exit-scale:initial;--tw-exit-rotate:initial;--tw-exit-translate-x:initial;--tw-exit-translate-y:initial}.data-\[state\=closed\]\:tw-fade-out-0[data-state="closed"]{--tw-exit-opacity:0}.data-\[state\=closed\]\:tw-fade-out-80[data-state="closed"]{--tw-exit-opacity:0.8}.data-\[state\=open\]\:tw-fade-in-0[data-state="open"]{--tw-enter-opacity:0}.data-\[state\=closed\]\:tw-zoom-out-95[data-state="closed"]{--tw-exit-scale:.95}.data-\[state\=open\]\:tw-zoom-in-95[data-state="open"]{--tw-enter-scale:.95}.data-\[side\=bottom\]\:tw-slide-in-from-top-2[data-side="bottom"]{--tw-enter-translate-y:-0.5rem}.data-\[side\=left\]\:tw-slide-in-from-right-2[data-side="left"]{--tw-enter-translate-x:0.5rem}.data-\[side\=right\]\:tw-slide-in-from-left-2[data-side="right"]{--tw-enter-translate-x:-0.5rem}.data-\[side\=top\]\:tw-slide-in-from-bottom-2[data-side="top"]{--tw-enter-translate-y:0.5rem}.data-\[state\=closed\]\:tw-slide-out-to-bottom[data-state="closed"]{--tw-exit-translate-y:100%}.data-\[state\=closed\]\:tw-slide-out-to-left[data-state="closed"]{--tw-exit-translate-x:-100%}.data-\[state\=closed\]\:tw-slide-out-to-left-1\/2[data-state="closed"]{--tw-exit-translate-x:-50%}.data-\[state\=closed\]\:tw-slide-out-to-right[data-state="closed"]{--tw-exit-translate-x:100%}.data-\[state\=closed\]\:tw-slide-out-to-right-full[data-state="closed"]{--tw-exit-translate-x:100%}.data-\[state\=closed\]\:tw-slide-out-to-top[data-state="closed"]{--tw-exit-translate-y:-100%}.data-\[state\=closed\]\:tw-slide-out-to-top-\[48\%\][data-state="closed"]{--tw-exit-translate-y:-48%}.data-\[state\=open\]\:tw-slide-in-from-bottom[data-state="open"]{--tw-enter-translate-y:100%}.data-\[state\=open\]\:tw-slide-in-from-left[data-state="open"]{--tw-enter-translate-x:-100%}.data-\[state\=open\]\:tw-slide-in-from-left-1\/2[data-state="open"]{--tw-enter-translate-x:-50%}.data-\[state\=open\]\:tw-slide-in-from-right[data-state="open"]{--tw-enter-translate-x:100%}.data-\[state\=open\]\:tw-slide-in-from-top[data-state="open"]{--tw-enter-translate-y:-100%}.data-\[state\=open\]\:tw-slide-in-from-top-\[48\%\][data-state="open"]{--tw-enter-translate-y:-48%}.data-\[state\=open\]\:tw-slide-in-from-top-full[data-state="open"]{--tw-enter-translate-y:-100%}.data-\[state\=closed\]\:tw-duration-300[data-state="closed"]{animation-duration:300ms}.data-\[state\=open\]\:tw-duration-500[data-state="open"]{animation-duration:500ms}@media (min-width: 640px){.sm\:tw-bottom-0{bottom:0px}.sm\:tw-right-0{right:0px}.sm\:tw-top-auto{top:auto}.sm\:tw-flex{display:flex}.sm\:tw-w-\[287px\]{width:287px}.sm\:tw-w-auto{width:auto}.sm\:tw-max-w-\[690px\]{max-width:690px}.sm\:tw-max-w-md{max-width:28rem}.sm\:tw-max-w-sm{max-width:24rem}.sm\:tw-grid-cols-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.sm\:tw-flex-row{flex-direction:row}.sm\:tw-flex-col{flex-direction:column}.sm\:tw-items-start{align-items:flex-start}.sm\:tw-items-center{align-items:center}.sm\:tw-justify-end{justify-content:flex-end}.sm\:tw-justify-between{justify-content:space-between}.sm\:tw-space-x-2 > :not([hidden]) ~ :not([hidden]){--tw-space-x-reverse:0;margin-right:calc(0.5rem * var(--tw-space-x-reverse));margin-left:calc(0.5rem * calc(1 - var(--tw-space-x-reverse)))}.sm\:tw-space-y-0 > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse:0;margin-top:calc(0px * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0px * var(--tw-space-y-reverse))}.sm\:tw-rounded-lg{border-radius:0.5rem}.sm\:tw-text-left{text-align:left}.data-\[state\=open\]\:sm\:tw-slide-in-from-bottom-full[data-state="open"]{--tw-enter-translate-y:100%}}@media (min-width: 768px){.md\:tw-mb-0{margin-bottom:0px}.md\:tw-ml-5{margin-left:1.25rem}.md\:tw-mr-0{margin-right:0px}.md\:tw-flex{display:flex}.md\:tw-hidden{display:none}.md\:\!tw-w-\[1200px\]{width:1200px !important}.md\:tw-w-full{width:100%}.md\:tw-min-w-max{min-width:-moz-max-content;min-width:max-content}.md\:tw-max-w-\[420px\]{max-width:420px}.md\:tw-max-w-max{max-width:-moz-max-content;max-width:max-content}.md\:tw-flex-row{flex-direction:row}.md\:tw-flex-wrap{flex-wrap:wrap}.md\:tw-justify-between{justify-content:space-between}.md\:tw-gap-2{gap:0.5rem}.md\:tw-rounded-none{border-radius:0px}.md\:tw-p-5{padding:1.25rem}.md\:tw-p-7{padding:1.75rem}.md\:tw-px-6{padding-left:1.5rem;padding-right:1.5rem}.md\:tw-pl-4{padding-left:1rem}.md\:tw-pr-4{padding-right:1rem}.md\:tw-pr-6{padding-right:1.5rem}.md\:tw-pt-6{padding-top:1.5rem}}@media (min-width: 1024px){.lg\:tw-col-span-12{grid-column:span 12 / span 12}.lg\:tw-col-span-4{grid-column:span 4 / span 4}.lg\:tw-col-span-6{grid-column:span 6 / span 6}.lg\:tw-mb-0{margin-bottom:0px}.lg\:tw-mt-0{margin-top:0px}.lg\:tw-flex{display:flex}.lg\:tw-hidden{display:none}.lg\:tw-max-w-sm{max-width:24rem}.lg\:tw-grid-cols-12{grid-template-columns:repeat(12, minmax(0, 1fr))}.lg\:tw-grid-cols-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.lg\:tw-flex-row{flex-direction:row}.lg\:tw-flex-nowrap{flex-wrap:nowrap}.lg\:tw-items-center{align-items:center}.lg\:tw-justify-center{justify-content:center}.lg\:tw-gap-2{gap:0.5rem}.lg\:tw-border-t-0{border-top-width:0px}.lg\:tw-pt-0{padding-top:0px}}@media (min-width: 1280px){.xl\:tw-grid-cols-4{grid-template-columns:repeat(4, minmax(0, 1fr))}}@media (min-width: 1536px){.\32xl\:tw-grid-cols-5{grid-template-columns:repeat(5, minmax(0, 1fr))}}@media (prefers-color-scheme: dark){.dark\:tw-border-destructive{border-color:var(--destructive)}}.\[\&\:has\(\[aria-selected\]\)\]\:tw-bg-accent:has([aria-selected]){background-color:var(--accent)}.first\:\[\&\:has\(\[aria-selected\]\)\]\:tw-rounded-l-md:has([aria-selected]):first-child{border-top-left-radius:0.375rem;border-bottom-left-radius:0.375rem}.last\:\[\&\:has\(\[aria-selected\]\)\]\:tw-rounded-r-md:has([aria-selected]):last-child{border-top-right-radius:0.375rem;border-bottom-right-radius:0.375rem}.\[\&\:has\(\[aria-selected\]\.day-range-end\)\]\:tw-rounded-r-md:has([aria-selected].day-range-end){border-top-right-radius:0.375rem;border-bottom-right-radius:0.375rem}.\[\&\>\*\]\:tw-mb-4>*{margin-bottom:1rem}.\[\&\>\*\]\:tw-pb-5>*{padding-bottom:1.25rem}.\[\&\>a\]\:tw-text-base>a{font-size:16px;line-height:24px}.\[\&\>a\]\:tw-font-semibold>a{font-weight:600}.\[\&\>a\]\:tw-text-foreground>a{color:var(--foreground)}.\[\&\>svg\+div\]\:tw-translate-y-\[-3px\]>svg+div{--tw-translate-y:-3px;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.\[\&\>svg\]\:tw-absolute>svg{position:absolute}.\[\&\>svg\]\:tw-left-4>svg{left:1rem}.\[\&\>svg\]\:tw-top-4>svg{top:1rem}.\[\&\>svg\]\:tw-size-4>svg{width:1rem;height:1rem}.\[\&\>svg\]\:tw-h-3>svg{height:0.75rem}.\[\&\>svg\]\:tw-w-3>svg{width:0.75rem}.\[\&\>svg\]\:tw-shrink-0>svg{flex-shrink:0}.\[\&\>svg\]\:tw-text-destructive>svg{color:var(--destructive)}.\[\&\>svg\]\:tw-text-foreground>svg{color:var(--foreground)}.\[\&\>svg\]\:tw-text-muted-foreground>svg{color:var(--muted-foreground)}.\[\&\>svg\~\*\]\:tw-pl-7>svg~*{padding-left:1.75rem}.\[\&\[data-state\=open\]\>svg\]\:tw-rotate-180[data-state=open]>svg{--tw-rotate:180deg;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.\[\&_\.recharts-cartesian-axis-tick_text\]\:tw-fill-muted-foreground .recharts-cartesian-axis-tick text{fill:var(--muted-foreground)}.\[\&_\.recharts-curve\.recharts-tooltip-cursor\]\:tw-stroke-border .recharts-curve.recharts-tooltip-cursor{stroke:var(--border)}.\[\&_\.recharts-dot\[stroke\=\'\#fff\'\]\]\:tw-stroke-transparent .recharts-dot[stroke='#fff']{stroke:transparent}.\[\&_\.recharts-layer\]\:tw-outline-none .recharts-layer{outline:2px solid transparent;outline-offset:2px}.\[\&_\.recharts-polar-grid_\[stroke\=\'\#ccc\'\]\]\:tw-stroke-border .recharts-polar-grid [stroke='#ccc']{stroke:var(--border)}.\[\&_\.recharts-radial-bar-background-sector\]\:tw-fill-muted .recharts-radial-bar-background-sector{fill:var(--muted)}.\[\&_\.recharts-rectangle\.recharts-tooltip-cursor\]\:tw-fill-muted .recharts-rectangle.recharts-tooltip-cursor{fill:var(--muted)}.\[\&_\.recharts-reference-line_\[stroke\=\'\#ccc\'\]\]\:tw-stroke-border .recharts-reference-line [stroke='#ccc']{stroke:var(--border)}.\[\&_\.recharts-sector\[stroke\=\'\#fff\'\]\]\:tw-stroke-transparent .recharts-sector[stroke='#fff']{stroke:transparent}.\[\&_\.recharts-sector\]\:tw-outline-none .recharts-sector{outline:2px solid transparent;outline-offset:2px}.\[\&_\.recharts-surface\]\:tw-outline-none .recharts-surface{outline:2px solid transparent;outline-offset:2px}.\[\&_\[cmdk-group-heading\]\]\:tw-px-2 [cmdk-group-heading]{padding-left:0.5rem;padding-right:0.5rem}.\[\&_\[cmdk-group-heading\]\]\:tw-py-1\.5 [cmdk-group-heading]{padding-top:0.375rem;padding-bottom:0.375rem}.\[\&_\[cmdk-group-heading\]\]\:tw-text-xs [cmdk-group-heading]{font-size:12px;line-height:16px}.\[\&_\[cmdk-group-heading\]\]\:tw-font-medium [cmdk-group-heading]{font-weight:500}.\[\&_\[cmdk-group-heading\]\]\:tw-text-muted-foreground [cmdk-group-heading]{color:var(--muted-foreground)}.\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:tw-pt-0 [cmdk-group]:not([hidden]) ~[cmdk-group]{padding-top:0px}.\[\&_\[cmdk-group\]\]\:tw-px-2 [cmdk-group]{padding-left:0.5rem;padding-right:0.5rem}.\[\&_\[cmdk-input-wrapper\]_svg\]\:tw-size-5 [cmdk-input-wrapper] svg{width:1.25rem;height:1.25rem}.\[\&_\[cmdk-input\]\]\:tw-h-12 [cmdk-input]{height:3rem}.\[\&_\[cmdk-item\]\]\:tw-px-2 [cmdk-item]{padding-left:0.5rem;padding-right:0.5rem}.\[\&_\[cmdk-item\]\]\:tw-py-3 [cmdk-item]{padding-top:0.75rem;padding-bottom:0.75rem}.\[\&_\[cmdk-item\]_svg\]\:tw-size-5 [cmdk-item] svg{width:1.25rem;height:1.25rem}.\[\&_a\]\:tw-font-semibold a{font-weight:600}.\[\&_button\]\:tw-inline-flex button{display:inline-flex}.\[\&_p\]\:tw-leading-relaxed p{line-height:1.625}.\[\&_svg\]\:tw-pointer-events-none svg{pointer-events:none}.\[\&_svg\]\:tw-size-4 svg{width:1rem;height:1rem}.\[\&_svg\]\:tw-shrink-0 svg{flex-shrink:0}
.overlay-alert{position:absolute;background:rgba(247,250,253,.7137254902);height:100vh;z-index:10000;width:100%;display:flex;align-items:center}.overlay-alert__content{max-width:589px;margin:0 auto;text-align:center;margin-top:-100px}.overlay-alert__content .text{font-size:15px;margin-top:15px;line-height:21px}.overlay-alert__content .text a{color:#528dfd}

/*# sourceMappingURL=initialization.cc3be5a87830abf6ef4b.css.map*/