/* Весь primeflex не используем т.к он вызывает конфликты. В этом файле будут части из primeflex необходимые нам */
.h-full {
	height: 100% !important
}

.w-full {
	width: 100% !important
}

.flex {
	display: flex !important;
}

.flex-column {
	flex-direction: column !important;
}

.flex-wrap {
	flex-wrap: wrap !important;
}

.flex-nowrap {
	flex-wrap: nowrap !important;
}

.align-items-start {
	align-items: flex-start !important;
}

.align-items-center {
	align-items: center !important;
}

.inline {
	display: inline !important;
}

.overflow-y-auto {
	overflow-y: auto !important;
}

.pr-2 {
	padding-right: 0.5rem !important;
}

.pl-2 {
	padding-left: 0.5rem !important;
}

.pl-3 {
	padding-left: 1rem !important;
}

.pl-4 {
	padding-left: 1.5rem !important;
}

.pl-5 {
	padding-left: 2rem !important;
}

.ml-1 {
	margin-left: 0.25rem !important;
}

.ml-2 {
	margin-left: 0.5rem !important;
}

.ml-3 {
	margin-left: 1rem !important;
}

.ml-auto {
	margin-left: auto !important;
}

.mr-1 {
	margin-right: 0.25rem !important;
}

.mr-2 {
	margin-right: 0.5rem !important;
}

.mr-3 {
	margin-right: 1rem !important;
}

.mb-0 {
	margin-bottom: 0rem  !important;
}

.mb-1 {
	margin-bottom: 0.25rem  !important;
}

.mb-2 {
	margin-bottom: 0.5rem  !important;
}

.mt-3 {
	margin-top: 1rem !important;
}

.mx-0 {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.justify-content-center {
	justify-content: center !important;
}

.flex-grow-0 {
	flex-grow: 0;
}

.flex-grow-1 {
	flex-grow: 1;
}

.flex-shrink-0 {
	flex-shrink: 0;
}

.flex-shrink-1 {
	flex-shrink: 1;
}

.flex-basis-0 {
	flex-basis: 0 !important;
}

.flex-basis-1 {
	flex-basis: 100% !important;
}

.flex-basis-auto {
	flex-basis: auto !important;
}

.white-space-normal	{
	white-space: normal;
}

.white-space-nowrap	{
	white-space: nowrap;
}