@font-face {
	font-family: 'PrimaryFontRegular';
	src: 
		url('./fonts/Outfit-VariableFont_wght.ttf') format('truetype');
}
@font-face {
	font-family: 'PrimaryFontBold';
	src: url('./fonts/Outfit-VariableFont_wght.ttf') format('truetype');
}
body {
	font-family: 'PrimaryFontRegular';
}
html {
	overflow-x: hidden !important
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'PrimaryFontBold';
}
input {
	width: 100%;
}
.nav-link {
	font-family: 'PrimaryFontBold' !important;
}
.avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #d9d9d9;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	color: #000;
	font-weight: bold;
}

.form-border-bottom {
	border-bottom: 1px solid gray !important;
}

.create-block-header {
	width: 100%;
	padding: 5px;
	border-radius: 5px;
	background: #f5f5f5;
}

.input-border-left-radius {
	border-top-left-radius: 0.5rem !important;
	border-bottom-left-radius: 0.5rem !important;
	border-top-right-radius: 0rem !important; 
	border-bottom-right-radius: 0rem !important; 
}

.input-border-no-radius {
	border-top-left-radius: 0rem !important;
	border-bottom-left-radius: 0rem !important;
	border-top-right-radius: 0rem !important; 
	border-bottom-right-radius: 0rem !important; 
}

.input-border-right-radius {
	border-top-left-radius: 0rem !important;
	border-bottom-left-radius: 0rem !important;
	border-top-right-radius: 0.5rem !important; 
	border-bottom-right-radius: 0.5rem !important; 
}

.m-1 {
	margin: 0.1rem !important;
}

.hide-on-mobile {
	display: block;
}

@media (max-width: 600px) {
	.hide-on-mobile {
		display: none;
	}
	.nav-link {
		color: black !important;
	}
	.mobile-p-1 {
		padding: 1rem !important;
	}
	.mobile-pl-1 {
		padding-left: 1rem !important;
	}
}

.hide-on-desktop {
	display: block;
}
@media (min-width: 601px) {
	.hide-on-desktop {
		display: none;
	}
}

.choices[data-type="select-one"]::after {
	display: none;
}
.choices__item--selectable {
	white-space: nowrap !important;
}
.grecaptcha-badge {
	display: none !important;
}
.img-gallery {
	width: 100%;
	height: 100px;
	cursor: pointer;
	border: 3px solid #d3d3d3;
	border-radius: 5px;
}
.sidebar-inner {
	border-right: 3px solid #d7dce1;
	overflow-y: scroll;
	height: calc(100vh - 125px);
}
.sidebar-outer {
	position: relative;
	overflow: hidden;
}
.cursor {
	cursor: pointer;
}
.footer-fixed {
/*	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: #fff;*/
}
.menu-is-active {
	background: #f5f6fd;
	color: #3a58d2;
}
.display td {
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}
tr {
	white-space: nowrap;
}
.color-item {
	position: relative;
}
.copy-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 1;
}
.copy-icon i {
	font-size: 24px;
	color: #fff;
}
.color-item:hover .copy-icon {
	display: block;
}
.card-hover {
	transition: transform 0.7s;
}
.card-hover:hover {
	transform: scale(1.05);
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
	background: white;
	cursor: pointer;
	border-radius: 5px;
}