/* 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,
.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;
	}

.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-tile {
	will-change: opacity;
	}
.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;
	}
.leaflet-zoom-anim .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: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	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 {
	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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(asset-layers-2x.8f2c4d11474275fbc1614b9098334eae.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;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path {
	background-image: url(asset-marker-icon.2b3e1faf89f94a4835397e7a43b4f77d.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.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;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.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 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-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;
	padding: 4px 4px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.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-popup-tip-container {
	margin-top: -1px;
	}

.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-clickable {
	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;
	}

.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:1px solid transparent;background:transparent;-webkit-appearance:button}button:focus{outline:none}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:200;src:local("Source Sans Pro ExtraLight Italic"),local("SourceSansPro-ExtraLightItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSdh18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:200;src:local("Source Sans Pro ExtraLight Italic"),local("SourceSansPro-ExtraLightItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSdo18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:200;src:local("Source Sans Pro ExtraLight Italic"),local("SourceSansPro-ExtraLightItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSdg18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+1F00-1FFF}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:200;src:local("Source Sans Pro ExtraLight Italic"),local("SourceSansPro-ExtraLightItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSdv18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0370-03FF}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:200;src:local("Source Sans Pro ExtraLight Italic"),local("SourceSansPro-ExtraLightItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSdj18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0102-0103,U+0110-0111,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:200;src:local("Source Sans Pro ExtraLight Italic"),local("SourceSansPro-ExtraLightItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSdi18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:200;src:local("Source Sans Pro ExtraLight Italic"),local("SourceSansPro-ExtraLightItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSds18S0xR41.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 Pro";font-style:italic;font-weight:300;src:local("Source Sans Pro Light Italic"),local("SourceSansPro-LightItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidh18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:300;src:local("Source Sans Pro Light Italic"),local("SourceSansPro-LightItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkido18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:300;src:local("Source Sans Pro Light Italic"),local("SourceSansPro-LightItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidg18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+1F00-1FFF}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:300;src:local("Source Sans Pro Light Italic"),local("SourceSansPro-LightItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidv18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0370-03FF}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:300;src:local("Source Sans Pro Light Italic"),local("SourceSansPro-LightItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidj18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0102-0103,U+0110-0111,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:300;src:local("Source Sans Pro Light Italic"),local("SourceSansPro-LightItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidi18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:300;src:local("Source Sans Pro Light Italic"),local("SourceSansPro-LightItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18S0xR41.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 Pro";font-style:italic;font-weight:400;src:local("Source Sans Pro Italic"),local("SourceSansPro-Italic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJB9cme_xc.woff2) format("woff2");font-display:swap;unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:400;src:local("Source Sans Pro Italic"),local("SourceSansPro-Italic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJB9cme_xc.woff2) format("woff2");font-display:swap;unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:400;src:local("Source Sans Pro Italic"),local("SourceSansPro-Italic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJB9cme_xc.woff2) format("woff2");font-display:swap;unicode-range:U+1F00-1FFF}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:400;src:local("Source Sans Pro Italic"),local("SourceSansPro-Italic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJB9cme_xc.woff2) format("woff2");font-display:swap;unicode-range:U+0370-03FF}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:400;src:local("Source Sans Pro Italic"),local("SourceSansPro-Italic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJB9cme_xc.woff2) format("woff2");font-display:swap;unicode-range:U+0102-0103,U+0110-0111,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:400;src:local("Source Sans Pro Italic"),local("SourceSansPro-Italic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJB9cme_xc.woff2) format("woff2");font-display:swap;unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:400;src:local("Source Sans Pro Italic"),local("SourceSansPro-Italic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDJB9cme.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 Pro";font-style:italic;font-weight:600;src:local("Source Sans Pro SemiBold Italic"),local("SourceSansPro-SemiBoldItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdh18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:600;src:local("Source Sans Pro SemiBold Italic"),local("SourceSansPro-SemiBoldItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdo18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:600;src:local("Source Sans Pro SemiBold Italic"),local("SourceSansPro-SemiBoldItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdg18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+1F00-1FFF}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:600;src:local("Source Sans Pro SemiBold Italic"),local("SourceSansPro-SemiBoldItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdv18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0370-03FF}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:600;src:local("Source Sans Pro SemiBold Italic"),local("SourceSansPro-SemiBoldItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdj18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0102-0103,U+0110-0111,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:600;src:local("Source Sans Pro SemiBold Italic"),local("SourceSansPro-SemiBoldItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdi18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:600;src:local("Source Sans Pro SemiBold Italic"),local("SourceSansPro-SemiBoldItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18S0xR41.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 Pro";font-style:italic;font-weight:700;src:local("Source Sans Pro Bold Italic"),local("SourceSansPro-BoldItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdh18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:700;src:local("Source Sans Pro Bold Italic"),local("SourceSansPro-BoldItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdo18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:700;src:local("Source Sans Pro Bold Italic"),local("SourceSansPro-BoldItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdg18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+1F00-1FFF}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:700;src:local("Source Sans Pro Bold Italic"),local("SourceSansPro-BoldItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdv18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0370-03FF}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:700;src:local("Source Sans Pro Bold Italic"),local("SourceSansPro-BoldItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdj18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0102-0103,U+0110-0111,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:700;src:local("Source Sans Pro Bold Italic"),local("SourceSansPro-BoldItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdi18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:700;src:local("Source Sans Pro Bold Italic"),local("SourceSansPro-BoldItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSds18S0xR41.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 Pro";font-style:italic;font-weight:900;src:local("Source Sans Pro Black Italic"),local("SourceSansPro-BlackItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklydh18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:900;src:local("Source Sans Pro Black Italic"),local("SourceSansPro-BlackItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklydo18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:900;src:local("Source Sans Pro Black Italic"),local("SourceSansPro-BlackItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklydg18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+1F00-1FFF}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:900;src:local("Source Sans Pro Black Italic"),local("SourceSansPro-BlackItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklydv18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0370-03FF}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:900;src:local("Source Sans Pro Black Italic"),local("SourceSansPro-BlackItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklydj18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0102-0103,U+0110-0111,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:900;src:local("Source Sans Pro Black Italic"),local("SourceSansPro-BlackItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklydi18S0xR41YDw.woff2) format("woff2");font-display:swap;unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Source Sans Pro";font-style:italic;font-weight:900;src:local("Source Sans Pro Black Italic"),local("SourceSansPro-BlackItalic"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklyds18S0xR41.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 Pro";font-style:normal;font-weight:200;src:local("Source Sans Pro ExtraLight"),local("SourceSansPro-ExtraLight"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wmhdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:200;src:local("Source Sans Pro ExtraLight"),local("SourceSansPro-ExtraLight"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wkxdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:200;src:local("Source Sans Pro ExtraLight"),local("SourceSansPro-ExtraLight"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wmxdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+1F00-1FFF}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:200;src:local("Source Sans Pro ExtraLight"),local("SourceSansPro-ExtraLight"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wlBdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0370-03FF}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:200;src:local("Source Sans Pro ExtraLight"),local("SourceSansPro-ExtraLight"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wmBdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0102-0103,U+0110-0111,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:200;src:local("Source Sans Pro ExtraLight"),local("SourceSansPro-ExtraLight"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wmRdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:200;src:local("Source Sans Pro ExtraLight"),local("SourceSansPro-ExtraLight"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wlxdu3cOWxw.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 Pro";font-style:normal;font-weight:300;src:local("Source Sans Pro Light"),local("SourceSansPro-Light"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmhdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:300;src:local("Source Sans Pro Light"),local("SourceSansPro-Light"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwkxdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:300;src:local("Source Sans Pro Light"),local("SourceSansPro-Light"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmxdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+1F00-1FFF}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:300;src:local("Source Sans Pro Light"),local("SourceSansPro-Light"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlBdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0370-03FF}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:300;src:local("Source Sans Pro Light"),local("SourceSansPro-Light"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmBdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0102-0103,U+0110-0111,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:300;src:local("Source Sans Pro Light"),local("SourceSansPro-Light"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmRdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:300;src:local("Source Sans Pro Light"),local("SourceSansPro-Light"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu3cOWxw.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 Pro";font-style:normal;font-weight:400;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lujVj9_mf.woff2) format("woff2");font-display:swap;unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:400;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lujVj9_mf.woff2) format("woff2");font-display:swap;unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:400;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lujVj9_mf.woff2) format("woff2");font-display:swap;unicode-range:U+1F00-1FFF}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:400;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lujVj9_mf.woff2) format("woff2");font-display:swap;unicode-range:U+0370-03FF}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:400;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lujVj9_mf.woff2) format("woff2");font-display:swap;unicode-range:U+0102-0103,U+0110-0111,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:400;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lujVj9_mf.woff2) format("woff2");font-display:swap;unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:400;src:local("Source Sans Pro Regular"),local("SourceSansPro-Regular"),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 Pro";font-style:normal;font-weight:600;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmhdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:600;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwkxdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:600;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmxdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+1F00-1FFF}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:600;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlBdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0370-03FF}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:600;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmBdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0102-0103,U+0110-0111,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:600;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmRdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:600;src:local("Source Sans Pro SemiBold"),local("SourceSansPro-SemiBold"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu3cOWxw.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 Pro";font-style:normal;font-weight:700;src:local("Source Sans Pro Bold"),local("SourceSansPro-Bold"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:700;src:local("Source Sans Pro Bold"),local("SourceSansPro-Bold"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:700;src:local("Source Sans Pro Bold"),local("SourceSansPro-Bold"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+1F00-1FFF}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:700;src:local("Source Sans Pro Bold"),local("SourceSansPro-Bold"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0370-03FF}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:700;src:local("Source Sans Pro Bold"),local("SourceSansPro-Bold"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0102-0103,U+0110-0111,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:700;src:local("Source Sans Pro Bold"),local("SourceSansPro-Bold"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:700;src:local("Source Sans Pro Bold"),local("SourceSansPro-Bold"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu3cOWxw.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 Pro";font-style:normal;font-weight:900;src:local("Source Sans Pro Black"),local("SourceSansPro-Black"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwmhdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:900;src:local("Source Sans Pro Black"),local("SourceSansPro-Black"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwkxdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:900;src:local("Source Sans Pro Black"),local("SourceSansPro-Black"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwmxdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+1F00-1FFF}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:900;src:local("Source Sans Pro Black"),local("SourceSansPro-Black"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwlBdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0370-03FF}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:900;src:local("Source Sans Pro Black"),local("SourceSansPro-Black"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwmBdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0102-0103,U+0110-0111,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:900;src:local("Source Sans Pro Black"),local("SourceSansPro-Black"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwmRdu3cOWxy40.woff2) format("woff2");font-display:swap;unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Source Sans Pro";font-style:normal;font-weight:900;src:local("Source Sans Pro Black"),local("SourceSansPro-Black"),url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwlxdu3cOWxw.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}.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}.add-button{background:var(--dealroom-primary-color);border-radius:50%;min-width:30px;min-height:30px;display:flex;justify-content:center;align-items:center;border:1px solid #e1dede;margin-right:5px;cursor:pointer}.add-button:hover{opacity:.9;box-shadow:1px 3px 6px 0 rgba(72,98,117,.3)}.add-button::before{content:"+";color:#fff;font-size:25px}.favorite-button{color:var(--dealroom-light-text-color);cursor:pointer}.favorite-button:hover,.favorite-button.active{color:#ff4141}.button-top-results,.button-all-results{color:var(--dealroom-primary-link-color);font-size:9px;padding:2px 5px;border-radius:3px;margin-left:5px;font-weight:600;text-transform:uppercase;cursor:pointer}.button-toggle-grid{text-transform:uppercase;font-size:10px;padding:0 10px;font-weight:600;margin-top:4px;color:var(--dealroom-primary-link-color);cursor:pointer}.badge{display:inline-block;width:25px;height:25px;border:2px solid #fff;border-radius:50%;background:#ff4141;box-shadow:0 1px 2px rgba(0,0,0,.2),0 1px 4px rgba(0,0,0,.2);-webkit-background-clip:padding-box;color:#fff;text-decoration:none;font-size:10px;text-align:center;line-height:21px;margin-left:2px}.badge-light{background:#fff;color:#ccc;border-color:#eee}.close-btn{cursor:pointer;background:transparent;width:30px;height:30px;font-size:15px;align-items:center;justify-content:center;display:flex}.button-link{border:none;cursor:pointer;color:var(--dealroom-primary-link-color)}html,body{padding:0;margin:0;font-family:"Source Sans Pro","Helvetica","Arial",sans-serif;font-size:13px;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(--dealroom-default-font-color)}*{box-sizing:border-box}h1{font-size:26px;line-height:1.2}a{text-decoration:none;color:var(--dealroom-primary-link-color);transition:.1s color}a:hover{color:var(--dealroom-link-hover-color)}.black-link{text-decoration:none;color:var(--dealroom-default-font-color)}.black-link:hover{color:var(--dealroom-default-font-color);text-decoration:underline}strong,.strong{font-weight:600}.link{color:var(--dealroom-primary-link-color);cursor:pointer}.link:hover{color:var(--dealroom-link-hover-color)}.premium-link{display:flex;align-items:center;color:var(--dealroom-premium-color);cursor:pointer}.premium-link:hover,.premium-link:active{filter:brightness(50%)}.premium-link .icon-lock,.premium-link .icon-lock{margin-right:5px}.rc-slider:not(.multi) .rc-slider-dot{bottom:-5px;width:14px;height:14px;margin-left:-7px}.rc-slider:not(.multi) .rc-slider-mark-text{color:var(--dealroom-primary-link-color)}.rc-slider-tooltip{z-index:999999999}label,.label{color:var(--dealroom-primary-font-color)}.intercom{color:var(--dealroom-primary-color) !important;cursor:pointer}.pac-container{z-index:9999999 !important}.page-title{font-size:24px;font-weight:600;letter-spacing:-0.5px;line-height:32px;margin-bottom:40px}.page-descriptor{font-size:16px;font-weight:400;letter-spacing:-0.33px;line-height:19px;margin-bottom:15px;color:#939495}.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%;background:var(--dealroom-content-background-color)}.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:20px 15px 0 15px;min-width:0}.featured-list-ribbon{width:0;height:0;border-top:30px solid var(--dealroom-primary-light-color);position:absolute}.featured-list-ribbon--left{border-right:25px solid transparent}.featured-list-ribbon--right{border-left:25px solid transparent}.featured-list-ribbon svg{position:absolute;top:-26px;left:-13px}.breadcrumbs{margin-bottom:25px;display:flex;flex-flow:wrap;align-items:center;margin-left:-8px;flex-shrink:0}.breadcrumbs .intersperse-sep{margin:0 5px}.breadcrumbs .breadcrumb{padding:4px 8px;margin-right:4px;letter-spacing:-0.5px;border-radius:2px;transition:all .2s ease-in-out;display:flex}.breadcrumbs .breadcrumb.active{color:var(--dealroom-default-font-color)}.breadcrumbs .breadcrumb.active:hover{background:none}.breadcrumbs .divider{margin:0;font-size:14px;color:#979797}.error-message{color:#f5001e}.sentry-error-embed-wrapper form button[type=submit]{opacity:1}.small-text{font-size:12px}.secondary-text{color:var(--dealroom-secondary-text-color)}.error-text{color:var(--dealroom-error-color);line-height:1.4}.muted-text{color:var(--dealroom-mute-text-color);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(--dealroom-dashboard-border-color);color:var(--dealroom-light-text-color)}.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;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;align-items:center}.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(--dealroom-secondary-text-color);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(--dealroom-light-text-color);font-size:16px;line-height:22px;margin-bottom:15px}.reset-password-page{display:flex;flex-direction:column;justify-content:center;align-items:center}.reset-password-page .reset-password-card{width:500px}.account-confirmation-page .timer-text-loader .title{font-size:16px}.login-enter{transform:translate3d(100%, 0, 0)}.login-enter.login-enter-active{transform:translate3d(0, 0, 0);transition:transform 500ms cubic-bezier(1, 0.8, 0.25, 0.93)}.login-leave{transform:translate3d(0, 0, 0)}.login-leave.login-leave-active{transform:translate3d(100%, 0, 0);transition:transform 200ms ease-out}.slide-right-card-leave{position:absolute;top:0;left:0;right:0;z-index:0;transform:translate3d(0, 0, 0)}.slide-right-card-leave.slide-right-card-leave-active{position:absolute;top:0;left:0;right:0;z-index:0;transform:translate3d(100%, 0, 0);transition:all .5s ease}.slide-right-card-enter{position:absolute;top:0;left:0;right:0;z-index:0}.slide-right-card-enter.slide-right-card-enter-active{position:absolute;top:0;left:0;right:0;z-index:0;transition:all .5s ease}.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%}.breadcrumbs .breadcrumb .type-element--h1{font-size:20px}}.accessible-hide{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}.neutral-color,.secondary{color:var(--dealroom-secondary-text-color)}.green-color{color:var(--dealroom-green-color)}.red-color{color:var(--dealroom-red-color)}.primary-color{color:var(--dealroom-primary-color)}.dashboardMap-color{color:var(--dealroom-dashboard-map-color)}.charts-color{color:var(--dealroom-charts-color)}.charts-1-color{color:var(--dealroom-charts-color-1)}.charts-2-color{color:var(--dealroom-charts-color-2)}.charts-3-color{color:var(--dealroom-charts-color-3)}.border-color{color:var(--dealroom-default-border-color)}.default-font-color{color:var(--dealroom-default-font-color)}.branding-color{color:var(--dealroom-branding-color)}.secondary-branding-color{color:var(--dealroom-secondary-branding-color)}::-webkit-scrollbar{background:transparent;width:4px;height:4px}::-webkit-scrollbar-thumb{background:rgba(0,0,0,.2);border-radius:4px}.alert{display:flex;align-items:center;justify-content:space-between;padding:10px;margin-bottom:20px;border:1px solid transparent;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(--dealroom-light-text-color);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(--dealroom-input-placeholder)}input::placeholder,textarea::placeholder,.placeholder{color:var(--dealroom-input-placeholder)}.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(--dealroom-light-text-color);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:12px 2px}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(--dealroom-error-color)}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:transparent !important;position:relative}form.vertical-form input,form.vertical-form .Select,.form.vertical-form input,.form.vertical-form .Select{display:block;margin-bottom:var(--dealroom-vertical-form-input-space-bottom);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(--dealroom-primary-text-color)}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 .quickfill-wrapper{display:flex;align-self:flex-end;margin-left:auto;justify-content:flex-end;margin-top:5px}.fields-group-wrapper .verify-addToMap-wrapper{flex-direction:row;margin-bottom:10px}.fields-group-wrapper .twittergrab-wrapper.field-wrapper{margin-right:15px;color:var(--dealroom-primary-font-color)}.fields-group-wrapper .twittergrab-wrapper.field-wrapper label{display:none}.fields-group-wrapper .twittergrab-wrapper.field-wrapper .twitter-grabber{justify-content:flex-end}.fields-group-wrapper .twittergrab-wrapper.field-wrapper .twitter-grabber .timer-loader{margin-right:5px}.fields-group-wrapper .twittergrab-wrapper.field-wrapper .twitter-grabber .button{margin:0 3px}.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(--dealroom-mute-text-color)}#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(--dealroom-primary-text-color);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(--dealroom-dashboard-border-color);min-height:40px;color:var(--dealroom-primary-font-color)}.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(--dealroom-dashboard-border-color);padding:10px 0}.add-item-row .add-item-label{font-size:12px;font-style:italic;color:var(--dealroom-input-fg);background:var(--dealroom-input-bg);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(--dealroom-light-text-color);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(--dealroom-light-text-color);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(--dealroom-primary-link-color);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(--dealroom-primary-font-color)}.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(--dealroom-light-text-color);margin-left:5px}.select-buttons-group{display:flex;flex-wrap:wrap;min-height:50px}.select-button{display:inline-block;height:32px;background-color:var(--dealroom-checkbox-bg);border:1px solid var(--dealroom-checkbox-border);border-radius:2px;color:var(--dealroom-checkbox-fg);font-size:12px;font-weight:600;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(--dealroom-checkbox-bg-active);color:var(--dealroom-checkbox-fg-active)}@media screen and (max-width: 600px){form.vertical-form>div,.form.vertical-form>div{min-width:auto}}@-webkit-keyframes timer-loader{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes timer-loader{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.timer-loader.center{margin:0 auto}.timer-loader:not(:required){border:2px solid #b3b3b3;border-radius:12px;box-sizing:border-box;display:inline-block;overflow:hidden;position:relative;text-indent:-9999px;width:24px;height:24px}.timer-loader:not(:required)::before{-webkit-animation:timer-loader 1250ms infinite linear;animation:timer-loader 1250ms infinite linear;transform-origin:1px 1px;background:#b3b3b3;border-radius:1px;content:"";display:block;position:absolute;width:2px;height:9px;left:9px;top:9px}.timer-loader:not(:required)::after{-webkit-animation:timer-loader 15000ms infinite linear;animation:timer-loader 15000ms infinite linear;transform-origin:1px 1px;background:#b3b3b3;border-radius:1px;content:"";display:block;position:absolute;width:2px;height:7px;left:9px;top:9px}.timer-loader:not(:required).white{border:2px solid #fff}.timer-loader:not(:required).white::before,.timer-loader:not(:required).white::after{background:#fff}.timer-loader:not(:required).dark{border:2px solid var(--dealroom-primary-color)}.timer-loader:not(:required).dark::before,.timer-loader:not(:required).dark::after{background:var(--dealroom-primary-color)}.timer-loader-medium:not(:required){border:2px solid #b3b3b3;border-radius:25px;box-sizing:border-box;display:inline-block;overflow:hidden;position:relative;text-indent:-9999px;width:50px;height:50px}.timer-loader-medium:not(:required)::before{-webkit-animation:timer-loader 1250ms infinite linear;animation:timer-loader 1250ms infinite linear;transform-origin:1px 1px;background:#b3b3b3;border-radius:1px;content:"";display:block;position:absolute;width:2px;height:22px;left:22px;top:22px}.timer-loader-medium:not(:required)::after{-webkit-animation:timer-loader 15000ms infinite linear;animation:timer-loader 15000ms infinite linear;transform-origin:1px 1px;background:#b3b3b3;border-radius:1px;content:"";display:block;position:absolute;width:2px;height:20px;left:22px;top:22px}.timer-loader-medium:not(:required).white{border:2px solid #fff}.timer-loader-medium:not(:required).white::before,.timer-loader-medium:not(:required).white::after{background:#fff}.timer-loader-medium:not(:required).dark{border:2px solid var(--dealroom-primary-color)}.timer-loader-medium:not(:required).dark::before,.timer-loader-medium:not(:required).dark::after{background:var(--dealroom-primary-color)}.timer-text-loader{padding:10px 0;display:flex;flex-direction:row;align-items:center;color:var(--dealroom-light-text-color)}.timer-text-loader .title{padding:0 0 0 10px}.table-list-loader-column .text-divs-wrapper{width:200px}.table-list-loader-column .placeholder{background:#f8f8f8}.table-list-loader-column .image-placeholder{width:55px;height:55px;margin-right:10px}.table-list-loader-column .title-placeholder{height:15px;margin-bottom:10px}.table-list-loader-column .tagline-placeholder{margin-right:80px;height:18px}.table-list-loader-column.small .title-placeholder{height:15px;margin:5px 0 5px 0}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:20px;border:1px solid #d4d8db !important;border-radius:2px;box-shadow:0 6px 15px 0 rgba(0,0,0,.1000000015) !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(--dealroom-light-text-color);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-wrap:wrap;width:100%;flex-direction:row}.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-direction:row;flex-wrap: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:.9rem;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}.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;top:0;right:0;bottom:0;left:0}.export-modal{min-width:525px;min-height:247px;overflow-y:auto}.export-modal .export-disabled{display:flex;flex-direction:column;align-items:center}.export-modal .title{font-size:20px;font-weight:700;display:flex;align-items:center;justify-content:space-between;padding:10px 0;margin-top:10px}.export-modal .export-modal-progress{max-width:525px}.export-modal .progress-wrapper{position:relative;height:8px;margin:42px 0 20px 0;width:100%;background-color:rgba(var(--dealroom-primary-color), 0.2)}.export-modal .progress-wrapper .progress-line{height:100%;background:var(--dealroom-primary-color)}.export-modal .progress-wrapper .progress-line.future{position:absolute;top:0;background:rgba(var(--dealroom-primary-color), 0.4)}.export-modal .export-complete .button{margin-top:60px}.export-modal .modal-description{margin:25px 0 15px 0}.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}.card .button-expand{margin:10px 0;text-align:center}.company-map-card .company-address{padding:20px 10px;color:#222;font-weight:600}.company-map-card .companies-nearby{padding:20px}.chart{width:100%;position:relative;padding-bottom:10px}.chart-info-tooltip{max-width:250px}.chart .chart-legend{font-size:18px;color:var(--dealroom-primary-text-color);text-align:center;margin-bottom:5px}.chart canvas{max-width:100%}.chart .collecting-data,.chart .chart-loading{position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;font-size:18px;color:var(--dealroom-secondary-text-color);padding:58px 60px}.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}.company-overview,.profile-overview,.user-overview{flex-wrap:wrap}.company-overview .item-details-location-map,.profile-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,.profile-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,.profile-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(--dealroom-secondary-text-color)}.person-background-info-section{display:flex;flex-direction:column;margin:10px 10px 10px 0;padding:10px 10px 0 0;border-top:1px solid #eeee}.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(--dealroom-mute-text-color);line-height:16px}.small-entities-list.founded-companies-list .founded-company-tagline{padding-left:5px;color:var(--dealroom-mute-text-color)}.small-entities-list.founded-companies-list .founded-company-tagline a{color:var(--dealroom-secondary-link-color)}.small-entities-list.founded-companies-list .founded-company-tagline a:hover{color:var(--dealroom-link-hover-color)}.grid-list{display:flex;flex-direction:row;flex-wrap:wrap}.grid-list .grid-list-item{border-bottom:1px solid var(--dealroom-dashboard-border-color);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 0;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 .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(--dealroom-light-text-color)}.portfolio-analysis-section .portfolio-analysis-section-items .item .item-name{flex:1;color:var(--dealroom-primary-font-color)}.portfolio-analysis-section .portfolio-analysis-section-items .item .item-count{font-size:12px;color:var(--dealroom-primary-link-color)}.portfolio-analysis-section .portfolio-analysis-section-items .item:hover{background:#f8f8f8;color:var(--dealroom-primary-link-color)}.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}.admin-dashboard .table-list-item:hover,.admin-dashboard .table-list-column.sorting{background-color:rgba(var(--dealroom-admin-color), 0.22)}.admin-dashboard .table-column-header.sorting{background-color:rgba(var(--dealroom-admin-color), 0.6)}.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 .icon-arrow-up2,.table-list-column.deltaColumn .delta .icon-arrow-down2{margin-right:3px}.table-list-column.deltaColumn .delta.positive{color:var(--dealroom-green-color)}.table-list-column.deltaColumn .delta.negative{color:var(--dealroom-red-color)}.table-list-column.deltaColumn .was{font-size:11px;transition:opacity .3s ease-in;color:var(--dealroom-secondary-text-color);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:-webkit-sticky;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(--dealroom-dashboard-border-color);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{padding:15px !important}@media(max-width: 600px){.table-list-column.startupRankingRating{min-width:90px}}.table-list-column.name{padding:0px 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 .name-column-wrapper .favorite-button,.table-list-column.acquiror .name-column-wrapper .favorite-button,.table-list-column.target .name-column-wrapper .favorite-button,.list-markers-ul .name-column-wrapper .favorite-button,.table-list-column.organization .name-column-wrapper .favorite-button{padding-left:10px;display:none}.table-list-column.name .name-column-wrapper .favorite-button.active,.table-list-column.acquiror .name-column-wrapper .favorite-button.active,.table-list-column.target .name-column-wrapper .favorite-button.active,.list-markers-ul .name-column-wrapper .favorite-button.active,.table-list-column.organization .name-column-wrapper .favorite-button.active{display:block}.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 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(--dealroom-primary-font-color)}.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-x:hidden;overflow-y: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(--dealroom-link-hover-color)}.table-list-column.name .info .delta-indicator,.table-list-column.acquiror .info .delta-indicator,.table-list-column.target .info .delta-indicator,.list-markers-ul .info .delta-indicator,.table-list-column.organization .info .delta-indicator{margin-left:10px;font-size:11px}.table-list-column.name .info .delta-indicator .border-arrow-up,.table-list-column.acquiror .info .delta-indicator .border-arrow-up,.table-list-column.target .info .delta-indicator .border-arrow-up,.list-markers-ul .info .delta-indicator .border-arrow-up,.table-list-column.organization .info .delta-indicator .border-arrow-up{margin-right:4px;width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid var(--dealroom-green-color)}.table-list-column.name .info .delta-indicator .border-arrow-down,.table-list-column.acquiror .info .delta-indicator .border-arrow-down,.table-list-column.target .info .delta-indicator .border-arrow-down,.list-markers-ul .info .delta-indicator .border-arrow-down,.table-list-column.organization .info .delta-indicator .border-arrow-down{margin-right:4px;width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid var(--dealroom-red-color)}.table-list-column.name .info .delta-indicator.positive,.table-list-column.acquiror .info .delta-indicator.positive,.table-list-column.target .info .delta-indicator.positive,.list-markers-ul .info .delta-indicator.positive,.table-list-column.organization .info .delta-indicator.positive{color:var(--dealroom-green-color)}.table-list-column.name .info .delta-indicator.negative,.table-list-column.acquiror .info .delta-indicator.negative,.table-list-column.target .info .delta-indicator.negative,.list-markers-ul .info .delta-indicator.negative,.table-list-column.organization .info .delta-indicator.negative{color:var(--dealroom-red-color)}.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(--dealroom-secondary-text-color)}.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.trafficSummary{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}.transactions-wrapper .stats-container,.exits-page-container .stats-container,.new-funds-page-container .stats-container{display:flex;flex-direction:column}.transactions-wrapper .stats-container .loader-container,.exits-page-container .stats-container .loader-container,.new-funds-page-container .stats-container .loader-container{width:100%;display:flex;justify-content:center}.transactions-wrapper .stats-container .button-toggle-grid,.exits-page-container .stats-container .button-toggle-grid,.new-funds-page-container .stats-container .button-toggle-grid{font-size:13px;width:100%;text-align:center;margin-bottom:15px}.transactions-wrapper .stats-container .chart,.exits-page-container .stats-container .chart,.new-funds-page-container .stats-container .chart{width:50%}.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(--dealroom-light-text-color);margin-top:5px}.table-column-header.startupRankingRating{padding:0px !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.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.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.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.trafficSummary,.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(--dealroom-secondary-text-color);padding:0 3px}.field-list .field .title{min-width:150px;max-width:150px;padding:0 30px 0 0;color:var(--dealroom-primary-font-color)}.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 0;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-checkmark,.list-item.lead .matches .icon-x,.list-item.target-investor .matches .icon-checkmark,.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(--dealroom-light-text-color);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(--dealroom-light-text-color);margin-top:10px}.list-item.lead .locations,.list-item.target-investor .locations{color:var(--dealroom-primary-font-color);font-size:11px}.list-item.lead .external-url,.list-item.target-investor .external-url{color:var(--dealroom-primary-color);margin:5px 5px 5px 0;display:inline-block}.list-item.lead .traffic,.list-item.target-investor .traffic{color:var(--dealroom-secondary-text-color);font-size:12px}.user-lists-empty__image{margin-top:25px;background-image:url(asset-empty-save-list.52c061d8e9b97eb455259bf77a507310.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.0d33ff477b194cce5bdbedb726335b0c.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(--dealroom-mute-text-color)}.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:transparent;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 auto}.reports-export-button{margin:-40px 0 20px 0}.facets-wrapper+.table-wrapper>.infinite-grid{margin-top:20px}.table-wrapper.countryActiveFunds .table-header .table-column-header.investmentsCountForMarket,.table-wrapper.cityActiveFunds .table-header .table-column-header.investmentsCountForMarket,.table-wrapper.industryActiveFunds .table-header .table-column-header.investmentsCountForMarket,.table-wrapper.revenueActiveFunds .table-header .table-column-header.investmentsCountForMarket,.table-wrapper.tagActiveFunds .table-header .table-column-header.investmentsCountForMarket{max-width:120px}.table-wrapper.countryActiveFunds .table-list .table-list-column.investmentsCountForMarket,.table-wrapper.cityActiveFunds .table-list .table-list-column.investmentsCountForMarket,.table-wrapper.industryActiveFunds .table-list .table-list-column.investmentsCountForMarket,.table-wrapper.revenueActiveFunds .table-list .table-list-column.investmentsCountForMarket,.table-wrapper.tagActiveFunds .table-list .table-list-column.investmentsCountForMarket{max-width:120px;font-size:16px}.table-wrapper.countryActiveFunds .table-list .table-list-column.investmentsForMarket,.table-wrapper.cityActiveFunds .table-list .table-list-column.investmentsForMarket,.table-wrapper.industryActiveFunds .table-list .table-list-column.investmentsForMarket,.table-wrapper.revenueActiveFunds .table-list .table-list-column.investmentsForMarket,.table-wrapper.tagActiveFunds .table-list .table-list-column.investmentsForMarket{overflow:hidden}.table-wrapper.countryActiveFunds .table-list .table-list-column.investmentsForMarket .img-row-list,.table-wrapper.cityActiveFunds .table-list .table-list-column.investmentsForMarket .img-row-list,.table-wrapper.industryActiveFunds .table-list .table-list-column.investmentsForMarket .img-row-list,.table-wrapper.revenueActiveFunds .table-list .table-list-column.investmentsForMarket .img-row-list,.table-wrapper.tagActiveFunds .table-list .table-list-column.investmentsForMarket .img-row-list{display:flex;align-items:center;overflow-y:scroll;margin-right:-25px;flex-wrap:wrap}.table-wrapper.countryActiveFunds .table-list .table-list-column.investmentsForMarket .img-row-list li,.table-wrapper.cityActiveFunds .table-list .table-list-column.investmentsForMarket .img-row-list li,.table-wrapper.industryActiveFunds .table-list .table-list-column.investmentsForMarket .img-row-list li,.table-wrapper.revenueActiveFunds .table-list .table-list-column.investmentsForMarket .img-row-list li,.table-wrapper.tagActiveFunds .table-list .table-list-column.investmentsForMarket .img-row-list li{margin-right:5px;margin-bottom:5px}@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(--dealroom-primary-link-color);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(--dealroom-content-background-color)}.map .map-filters .map-filter{color:var(--dealroom-primary-color);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-arrow-right{font-size:11px;padding:0 5px;color:var(--dealroom-primary-font-color)}.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(--dealroom-company-marker-color), 0.9);border-color:var(--dealroom-company-marker-color)}.map .item-cluster.investors-cluster,.map .item-cluster.users-cluster{background-color:rgba(var(--dealroom-investor-marker-color), 0.9);border-color:var(--dealroom-investor-marker-color)}.map .item-cluster.workspaces-cluster,.map .item-cluster.locations-cluster{background-color:rgba(var(--dealroom-workspace-marker-color), 0.9);border-color:var(--dealroom-workspace-marker-color)}.map .item-cluster.accelerators-cluster{background-color:rgba(var(--dealroom-accelerator-marker-color), 0.9);border-color:var(--dealroom-accelerator-marker-color)}.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(--dealroom-investor-marker-color);color:#fff}.map .investor-marker.selected,.map .investors-marker.selected,.map .user-marker.selected,.map .users-marker.selected{-webkit-animation:map-pulse infinite 2s ease-in-out alternate;animation:map-pulse infinite 2s ease-in-out alternate}.map .company-marker,.map .companies-marker{background:var(--dealroom-company-marker-color);color:#fff}.map .company-marker.selected,.map .companies-marker.selected{-webkit-animation:map-pulse infinite 2s ease-in-out alternate;animation:map-pulse infinite 2s ease-in-out alternate}.map .workspaces-marker{background:var(--dealroom-workspace-marker-color);color:#fff}.map .workspaces-marker.selected{-webkit-animation:map-pulse infinite 2s ease-in-out alternate;animation:map-pulse infinite 2s ease-in-out alternate}.map .accelerators-marker{background:var(--dealroom-accelerator-marker-color);color:#fff}.map .accelerators-marker.selected{-webkit-animation:map-pulse infinite 2s ease-in-out alternate;animation:map-pulse infinite 2s ease-in-out alternate}.leaflet-left{right:5px;left:inherit !important}.leaflet-container{height:100%;font-family:"Source Sans Pro","Helvetica","Arial",sans-serif;font-size:14px}.leaflet-container .tag{color:#fff}.leaflet-container .secondary-tag{color:var(--dealroom-secondary-text-color)}@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}}@-webkit-keyframes map-pulse{0%{opacity:1}100%{opacity:.6}}@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 0;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,.lead-rate-buttons .icon-arrow-right2{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,.lead-rate-buttons .icon-arrow-right2: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(--dealroom-green-color)}@media screen and (max-width: 600px){.leads-page-title{display:none}.leads-page{position:relative}.leads-page-content{position:absolute;top:100px;bottom:0;left:0;right:0;display:flex;flex-direction:column;align-items:stretch;padding:0 10px}.leads-page-header a{text-transform:uppercase;font-size:10px}}.map-table{display:flex;flex:1}.map-table__list{width:100%}.map-table__list--with-map{width:calc(60% - 22px);margin-right:15px}.map-table__list-empty{padding-top:60px}.map-table__map-wrapper{flex:1}.map-table__map{height:100%;max-height:100vh;padding-top:15px;flex:1;position:relative;min-height:50vh}.map-table__map--sticky{left:inherit !important;right:15px !important}.map-table__map .map{height:100%;border-radius:2px;overflow:hidden}@-webkit-keyframes anim-rotate{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes anim-rotate{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@-webkit-keyframes anim-fadein{0%{opacity:0}100%{opacity:1}}@keyframes anim-fadein{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes anim-fadeout{0%{opacity:1}100%{opacity:0}}@keyframes anim-fadeout{0%{opacity:1}100%{opacity:0}}@-webkit-keyframes anim-fadein-up{0%{opacity:0;transform:translateY(30px)}100%{opacity:1;transform:translateY(0)}}@keyframes anim-fadein-up{0%{opacity:0;transform:translateY(30px)}100%{opacity:1;transform:translateY(0)}}@-webkit-keyframes anim-fadein-down{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)}}@-webkit-keyframes anim-fadeout-down{0%{opacity:1;transform:translate3d(0, 0, 0)}100%{opacity:0;transform:translate3d(0, 100%, 0)}}@keyframes anim-fadeout-down{0%{opacity:1;transform:translate3d(0, 0, 0)}100%{opacity:0;transform:translate3d(0, 100%, 0)}}@-webkit-keyframes anim-fadein-zoom{0%{opacity:0;transform:scale(0.8);transform-origin:center}100%{opacity:1;transform:translateY(0)}}@keyframes anim-fadein-zoom{0%{opacity:0;transform:scale(0.8);transform-origin:center}100%{opacity:1;transform:translateY(0)}}@-webkit-keyframes anim-fadeout-zoom{0%{opacity:1;transform:translateY(0)}100%{opacity:0;transform:scale(0.8);transform-origin:center}}@keyframes anim-fadeout-zoom{0%{opacity:1;transform:translateY(0)}100%{opacity:0;transform:scale(0.8);transform-origin:center}}.fadein{-webkit-animation-fill-mode:backwards;animation-fill-mode:backwards;-webkit-animation:anim-fadein .2s;animation:anim-fadein .2s}.fadeout{-webkit-animation:anim-fadeout .2s;animation:anim-fadeout .2s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.fadeup{-webkit-animation:anim-fadein-up .2s;animation:anim-fadein-up .2s}.fadedown{-webkit-animation:anim-fadein-down .2s;animation:anim-fadein-down .2s}.fadezoom{-webkit-animation:anim-fadein-zoom .2s;animation:anim-fadein-zoom .2s}.fadezoom-out{-webkit-animation:anim-fadeout-zoom .2s;animation:anim-fadeout-zoom .2s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.animation-delay-200ms{-webkit-animation-fill-mode:backwards;animation-fill-mode:backwards;-webkit-animation-delay:.2s;animation-delay:.2s}.animation-delay-500ms{-webkit-animation-fill-mode:backwards;animation-fill-mode:backwards;-webkit-animation-delay:.5s;animation-delay:.5s}.animation-delay-1s{-webkit-animation-fill-mode:backwards;animation-fill-mode:backwards;-webkit-animation-delay:1s;animation-delay:1s}

.overlay-alert{position:absolute;background:#f7fafdb6;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}
