﻿/*
****************************************************
	HELP STYLES DOCS
************************************************
	*/

.navbar
{
	background-image: linear-gradient(330deg, #009f9a 0%, #e2e2e2 100%) !important;
	/*background-image: linear-gradient(330deg, #e2e2e2 0%, #009f9a 100%) !important;*/
}

/*.wrapper_doc
{
	display: flex;
	width: 100%;
}
*/
.sidebar_doc
{
	width: 250px;
	position: fixed;
	left: 14px;
	height: 100vh;
	z-index: 999;
}

.content_doc
{
	width: calc(100% - 250px);
	padding: 40px;
	min-height: 100vh;
	transition: all 0.3s;
	position: absolute;
	right: 0;
}

@media (max-width: 768px)
{
	.sidebar_doc
	{
		margin-left: -250px;
	}

	#sidebar.active
	{
		margin-left: 0;
	}

	.content_doc
	{
		width: 100%;
	}
}


