@font-face {
	font-family: 'Inter';
	src: url('fonts/Inter-Regular.woff') format('woff');
}

@font-face {
	font-family: 'Inter-Light';
	src: url('fonts/Inter-Light.woff') format('woff');
}

@font-face {
	font-family: 'Inter-ExtraLight';
	src: url('fonts/Inter-ExtraLight.woff') format('woff');
}

@font-face {
	font-family: 'Inter-Thin';
	src: url('fonts/Inter-Thin.woff') format('woff');
}

@font-face {
	font-family: 'Inter-Medium';
	src: url('fonts/Inter-Medium.woff') format('woff');
}

@font-face {
	font-family: 'Inter-Bold';
	src: url('fonts/Inter-Bold.woff') format('woff');
}


:root {
	--white: #FFF;
	/*	--bg-container: #F5F7FA;*/
	--bg-container: #FCFDFE;
	--bg-main-header: #FFF;
	--title-color: #95A3AF;
	--primary-color: #868A8F;
	--bg-side-menu: #3474CB;
	--border-bottom-logo-menu: #1155C590;
	--color-side-menu: #80AEEC;
	--nav-menu-selected: #0B3986;
	--color-text-menu: #D0E6FF;
	--color-icon-menu: #D0E6FF;
	--color-icon-menu-selected: #0B3986;
	--color-link: #1155C5;
	--fg-table-header: #0B3986;
	--bg-table-header: #a5c5ef;


	--bg-btn-enter: #2A9B72;
	--bg-btn-enter-hover: #1C8B63;
	--bg-btn-new: #3E6AC2;
	--bg-btn-new-hover: #2F59AE;
	--bg-btn-save: #2A9B72;
	--bg-btn-save-hover: #157653;
	--bg-btn-save2: #1F9444;
	--bg-btn-save2-hover: #168138;

	--input-color: #A7ABAF;
	--input-border: #E7EAEE;
	--bg-input: #F8FAFB;
	--border-color-input: #cbccd4;
	--border-color-select: #cbccd4;
	--border-color-input-focus: #69ADF9;
	--label-name-color: #C2C5C8;
	--label-color-input: #9DA5AB;
	--label-color-input-login: #F5811E;

	/**
	 * [call theme]
	 * @type {[color]}
	 */
	--primary-call: #2C6ECB;
	--secondary-call: #32C27D;

	--mic-on-call: #447FD2;
	--mic-off-call: #DC687E;
	--play-call: #04A765;
	--end-call: #FF3B30;


	--danger-call: #FF3B30;
	--dark-call: #333;
	--light-call: #F8F9FA;
	--gray-call: #6C757D;
}


* {
	font-family: 'Inter', sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}



body {
	margin: 0px;
	padding: 0px;
	overflow: scroll;
	overflow-x: hidden;
}

.clear {
	display: block;
	width: 100%;
	height: 0px;
	float: none;
	clear: both;
}

._5 {
	height: 5px;
}

._10 {
	height: 10px;
}

._20 {
	height: 20px;
}

._30 {
	height: 30px;
}

._50 {
	height: 50px;
}


.__Fenanx {
	display: flex;
	width: 100%;
	height: auto;
	min-height: 100vh;

	background-color: #FAFAFA;
}

.__side_menu {
	display: flex;
	flex-direction: column;
	/*60px ou 160px*/
	width: 60px;
	height: 100vh;

	color: var(--color-side-menu);
	background-color: var(--bg-side-menu);
	box-shadow: 0 3px 20px 3px #20624A4d;

	position: fixed;
	z-index: 3000;

	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.__side_menu:hover {
	width: 160px;

	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.__side_menu:hover>.__nav_menu a {
	width: 130px;
	transition: 0.4s ease-in-out;
}

.__side_menu_hide {
	display: flex;
	width: 60px;
	min-width: 60px;
	height: 100vh;
	position: relative;
	z-index: 0;
}

/*.__side_menu:hover+.__side_menu_hide {
	width: 160px;
	min-width: 160px;

	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}*/

.__logo_box {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	height: 60px;
	padding-left: 14px;
	padding-right: 14px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--border-bottom-logo-menu);

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.__logo_box img {
	display: block;
	height: auto;
	outline: none;
	outline-style: none;
	border: 0px;
}

.__side_menu:not(:hover)>.__logo_box .__logo_min {
	max-height: 40px;
	transition: 0.2s ease-in-out;
}

.__side_menu>.__logo_box .__logo_max {
	display: none;
	width: 0px;
}

.__side_menu:hover>.__logo_box .__logo_min {
	visibility: hidden;
	width: 0px;
	max-height: 0px;
	opacity: 0.1;
	transition: 0.2s ease-in-out;
}

.__side_menu:hover>.__logo_box .__logo_max {
	display: block;
	width: 100%;
	transition: 2s ease-in-out;
}

.__nav_menu {
	display: flex;
	flex-direction: column;
	align-items: flex-start;

	padding-left: 14px;
	padding-right: 14px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.__nav_menu a {
	display: flex;
	flex-direction: row;
	align-items: center;
	/*30px ou 130px*/
	width: 30px;
	height: auto;
	min-height: 30px;
	margin-bottom: 12px;
	padding-left: 2px;
	padding-right: 2px;
	font-size: 12px;
	text-decoration: none;
	color: var(--color-text-menu);

	overflow: hidden;
	white-space: nowrap;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.__nav_menu a:hover {
	border-radius: 4px;
	background-color: #BFD9EA50;

	transition: 0.1s ease-in-out !important;
}

.__nav_menu a.selected {
	font-weight: 600;
	color: var(--nav-menu-selected);
}

.__nav_menu a .icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	min-width: 28px;
	height: 30px;
	margin-right: 6px;
	background-color: transparent;
}

.__nav_menu a .icon img {
	height: 20px;
	filter: invert(87%) sepia(4%) saturate(2210%) hue-rotate(185deg) brightness(101%) contrast(103%);
}

.__nav_menu a .icon img.selected {
	filter: invert(14%) sepia(35%) saturate(5182%) hue-rotate(211deg) brightness(102%) contrast(97%);
}

/*.__icon_svg {
	height: 20px;
}

.__icon_svg path {
	fill: var(--color-icon-menu);
}

.__icon_svg.selected path {
	fill: var(--color-icon-menu-selected);
	display: block;
}*/

.__nav_menu .menu-name {
	flex: 0;
}

.__input {
	width: auto;
	min-width: 120px;
	height: 40px;
	outline: none;
	outline-style: none;
	background: var(--bg-input);
}

.__input::placeholder {
	color: var(--input-color);
}

.__input.search {
	min-width: 250px;
	height: 32px;
	border-radius: 16px;
	border: 0.3px solid var(--input-border);
	padding: 0px 20px;
	font-family: 'Inter-Medium', sans-serif;
	font-size: 13px;
	font-weight: 300;
	box-shadow: 0px 2px 4px rgb(222, 224, 226, 0.85);
	background-color: var(--white);
}

.__main_btn {
	width: auto;
	min-width: 120px;
	height: 33px;
	border: 0px;
	outline: none;
	outline-style: none;
	padding: 0px 25px;
	font-family: 'Inter-Medium', sans-serif;
	font-weight: 500;
	font-size: 13px;
	color: var(--white);

	cursor: pointer;
}

.__main_btn.new {
	border-radius: 0.375rem;
	background-color: var(--bg-btn-new);
}

.__main_btn.new:hover {
	background-color: var(--bg-btn-new-hover);
}

.__main_btn.add_form {
	width: auto;
	min-width: 160px;
	height: 40px;
	margin-bottom: 16px;
	border-radius: 0.375rem;
	padding: 0px 25px;
	font-size: 12px;
	background-color: var(--bg-btn-new);
}

.__main_btn.add_form:hover {
	background-color: var(--bg-btn-new-hover);
}

.__main_btn.save {
	min-width: 200px;
	height: 40px;
	margin-bottom: 16px;
	border-radius: 0.375rem;
	padding: 0px 35px;
	background-color: var(--bg-btn-save);
}

.__main_btn.save:hover {
	background-color: var(--bg-btn-save-hover);
}

.__main_btn.save2 {
	width: auto;
	min-width: 160px;
	height: 40px;
	margin-bottom: 16px;
	border-radius: 0.375rem;
	padding: 0px 25px;
	font-size: 12px;
	background-color: var(--bg-btn-save2);
}

.__main_btn.save2:hover {
	background-color: var(--bg-btn-save2-hover);
}


.load {
	fill: transparent;
	height: 20px;
}

.load circle:nth-child(1) {
	animation: color 1s ease-out infinite .2s;
}

.load circle:nth-child(2) {
	animation: color 1s ease infinite .4s;
}

.load circle:nth-child(3) {
	animation: color 1s ease-in infinite .6s;
}

@keyframes color {
	from {
		fill: #CDCDCD;
	}

	to {
		fill: #3B3B3B;
		stroke-dasharray: 0;
		stroke-dashoffset: 0;
	}
}

.load_white {
	fill: transparent;
	height: 20px;
}

.load_white circle:nth-child(1) {
	animation: color_white 1s ease-out infinite .2s;
}

.load_white circle:nth-child(2) {
	animation: color_white 1s ease infinite .4s;
}

.load_white circle:nth-child(3) {
	animation: color_white 1s ease-in infinite .6s;
}

@keyframes color_white {
	from {
		fill: #CDCDCD90;
	}

	to {
		fill: #FFFFFF;
		stroke-dasharray: 0;
		stroke-dashoffset: 0;
	}
}

#alert-message {
	display: none;
	margin-bottom: 10px;
}

#alert-message span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: auto;
	min-height: 25px;
	padding: 5px 10px;
	border-radius: 3px;

	font-family: 'Inter', sans-serif;
	font-size: 13px;
}

.alert {
	color: #6A756F;
	background-color: #DBEFE4;
}

.alert-success {
	color: #4B6355;
	background-color: #C7EBD7;
}

.error {
	color: #9E5D5D;
	background-color: #F0D3D3;
}
