body {
	margin: 0;
	font-family: Montserrat, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
	overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Montserrat, sans-serif;
	font-style: normal;
	margin-top: 0;
}

h1 {
	font-size: 1.5rem;
	line-height: 1.5rem;
	font-weight: 600;
	color: var(--gray-90)
}

h2 {
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.2rem;
	color: var(--gray-70)
}

a {
	font-family: Montserrat, sans-serif;
	font-style: normal;
	font-weight: 500;
	/* font-size: 1em; */
	line-height: 20px;
	/* identical to box height */
	text-decoration-line: underline;
	color: var(--primary-light);
}

code {
	font-family: menlo, inconsolata, monospace;
	font-size: calc(1em - 2px);
	color: #555;
	background-color: #f0f0f0;
	padding: 0.2em 0.4em;
	border-radius: 2px;
}

@media (min-width: 400px) {
	body {
		font-size: 14px;
	}
}

:root{
	--primary: #0000FF; 
	--primary-light: #4E4EFF;
	--complement-1 : #A250FF;
	--primary-light-20: #4e4eff33; 
	--primary-dark: #002e53; 
	--secondary: #0080FF;
	--secondary-20: #0080FF33;
	--secondary-light: #0000FF1A;
	--secondary-dark: #4BFF7E;;
	--primary-text:#333;
	--primary-text-light:#999;
	--danger: #711f24;
	--danger-light: #b8323b;
	--warning: #F2994A;
	--success: #15CEBC;
	--warning-20: #F2994A33;
	--success-20: #15CEBC33;
	--primary-background: #fff;
	--gray-10: #F4F4F4;
	--gray-20: #E0E0E0;
	--gray-30: #C6C6C6;
	--gray-40: #A8A8A8;
	--gray-50: #8D8D8D;
	--gray-60: #6F6F6F;
	--gray-70: #393939;
	--gray-80: #393939;
	--gray-90: #262626;
}

hr{
	border: 1px solid var(--gray-20);
	width: calc(100% - 4em);
	margin: 2em 0;
}

span{
	font-size: 0.95em;
	font-family: Montserrat;
	font-style: normal;
	font-weight: 500;
	line-height: 1.1em;
	color: var(--gray-60)
}

span::first-letter{
	text-transform: capitalize;
}

button.ghost{
	white-space: nowrap;
	outline: none;
	background: none;
	border: none;
	width: fit-content;
	color: var(--primary);
	font-weight: 600;
	font-size: 14px;
	text-decoration: underline;
	cursor: pointer;
	user-select: none;
	font-family: Montserrat, sans-serif;
}

.detail-title {
	font-family: Montserrat, sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: var(--gray-90);
}

.form-title {
	font-family: Montserrat, sans-serif;
	font-size: 28px;
	font-weight: 600;
	color: var(--gray-90);
	text-align: center;
	margin: 0;
}
.form-instructions {
	font-family: Montserrat, sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--gray-60);
	text-align: center;
}
.form-section-title {
	font-family: Montserrat, sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: var(--gray-80);
	margin: 20px 0;
}

.mainContainer {
	width: 100%;
	height: fit-content;
}
.sales-detail-header {
	width: 100;
	border-bottom: solid 1px var(--gray-10);
	padding: 20px 0;
}
.sales-detail-header h2 {
	margin: 0 0 7px 0;
}
.sales-detail-body {
	margin: 20px 0;
}
.sales-detail-body h3 {
	font-size: 14px;
	font-weight: 600;
	color: var(--gray-80);
}
.data-line {
	color: var(--gray-70);
	font-size: 12px;
	margin: 5px 0;
}
.data-line h4 {
	margin: 0 10px 0 0;
	font-weight: 700;
}
.data-line p {
	margin: 0;
	font-weight: 500;
	color: var(--gray-60);
}
p.data-type {
	font-weight: 600;
	margin: 0 10px 0 0;
}
p.phone-code {
	margin: 0 10px 0 0;
}
.date-picker {
	display: block;
}
p.multi-input-label {
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	color: var(--gray-60);
}
 .oportunity-amount {
	display: grid;
	grid-template-columns: 1fr 9fr;
	grid-gap: 10px;
}
.status-icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background-color: transparent;
}
.open {
	background-color: var(--primary-light-20);
}
.won {
	background-color: var(--success-20); 
 }
 .lost {
	background-color: var(--warning-20); 
 }
.status-amount {
	display: block;
}
.status-amount h1 {
	font-size: 18px;
	font-weight: 600;
	color: var(--gray-90);
	margin: 0;
}
.status-amount p {
	font-size: 12px;
	font-weight: 400;
	color: var(--gray-50);
	margin: 0;
}
::-webkit-scrollbar {
	height: 5px;
	width: 5px;
}
::-webkit-scrollbar-track {
	width: 5px;
	background: #ddd;
}
::-webkit-scrollbar-thumb {
	width: 5px;
	background: var(--gray-60, #666);
}