/* ---------- SEGOES UI FONT ---------- */
@font-face
{
	font-family: 'SegoeUI Regular';
	src:url('../fonts/SegoeUI/SegoeUI.ttf');
	src:url('../fonts/SegoeUI/SegoeUI.eot');
	src:url('../fonts/SegoeUI/SegoeUI.woff');
}

@font-face
{
	font-family: 'SegoeUI SemiBold';
	src:url('../fonts/SegoeUI/SegoeUI-SemiBold.ttf');
	src:url('../fonts/SegoeUI/SegoeUI-SemiBold.eot');
	src:url('../fonts/SegoeUI/SegoeUI-SemiBold.woff');
}

@font-face
{
	font-family: 'SegoeUI Bold';
	src:url('../fonts/SegoeUI/SegoeUI-Bold.ttf');
	src:url('../fonts/SegoeUI/SegoeUI-Bold.eot');
	src:url('../fonts/SegoeUI/SegoeUI-Bold.woff');
}

@media print
{
	header, footer
	{
		display: none;
	}
}

body
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: #fcfcfc;
	color: #0f0f0f;
	font-size: 12px;
	font-family: SegoeUI Regular, sans-serif;
	-webkit-print-color-adjust: exact !important; /*CHROME */
    color-adjust: exact !important; /*FIREFOX*/

    /*background-repeat: no-repeat; 
    background-size: cover;*/
}
/*
main
{
	background: rgba(52, 58, 63, .2);
 	position: absolute; 
 	bottom: 0; 
 	top: 0; 
 	left: 0; 
 	right: 0;
}
*/
.body
{
	background-color: #e2e2e2;
}

a
{
	text-decoration: none;
}


/* ---------- SCROLLBARS ---------- */

::-webkit-scrollbar
{
	width: 5px;
	height: 6px;
}

::-webkit-scrollbar-track
{
	box-shadow: inset 0 0 5px #a5aaad;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb
{
	background-color: #a5aaad;
  	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover
{
	background-color: #7f7f7f;
}

button, input
{
	outline: none;
}

/* ---------- MAIN ---------- */

.main-container
{
	overflow-y: auto;
}

.data-top-option
{
	position: fixed;
	left: 0;
	right: 0;
	height: 50px;
	padding-left: 15px;
	padding-right: 15px;
	margin-top: calc(115px);
	margin-left: calc(250px);
	transition: ease-in 0.2s;
	border-bottom: 1px solid #e2e2e2;/*#d3d3d3;*/
	/*background-color: white;*/
}

.top-option2
{
	margin-left: calc(50px);
	/*
	border-top: 1px solid #c9c9c9;
	border-bottom: 1px solid #c9c9c9;
	*/
}

.top-option3
{
	margin-left: calc(250px);
	/*
	border-top: 1px solid #c9c9c9;
	border-bottom: 1px solid #c9c9c9;
	*/
}

.data-top-option form
{
	border: unset;
	width: 95%;
	padding: unset;
	margin: unset;
	height: unset;
	box-shadow: unset;
	float: right;
	height: 45px;
	position: relative;
	top: -1px;
	background-color: #fcfcfc;
}

.data-top-option form ul 
{
	float: right;
}

.data-top-option form ul li 
{
	float: left;
	list-style-type: none;
	padding-left: 15px;
}

.data-top-option form ul li .icon 
{
	position: relative;
	top: 2px;
}

.data-top-option form ul label
{
	margin-right: 5px;
	font-family: SegoeUI SemiBold, sans-serif;
}

.data-top-option form ul li select
{
	width: 100px;
	padding: 5px;
	border-radius: 5px;
	background-color: white;
	border: 1px solid #d3d3d3;
}

.data-top-option form ul li input
{
	width: 100px;
	padding: 5px;
	border-radius: 5px;
	background-color: white;
	border: 1px solid #d3d3d3;
}

.data-top-option form ul li button
{
	width: 30px;
	padding: 5px;
	background-color: white;
	border: 1px solid #d3d3d3;
	margin: 0;
	cursor: pointer;
}

.data-top-option form ul li button:first-child
{
	position: relative; 
	right: -6px;
	border-radius: 5px 0 0 5px;
}

.data-top-option form ul li button:nth-child(2)
{
	border-radius: 0 5px 5px 0;
}

.data-top-option form ul li .activeMode
{
	background-color: #E0EDFC;
}


.data-top-option button
{
	position: relative; 
	margin-top: 15px;
	margin-left: 5px;
	border-radius: 3px;
	border: 1px solid #bfbfbf;
	padding: 2px;
	cursor: pointer;
	background-color: #fcfcfc;
}

.data-top-option button .icon
{
	position: relative; 
	top: 1px;
}

.data-top-option button:hover
{
	border-color: #cfd8ff;
}

.data-top-option input[type="checkbox"]
{
	display: none;
}

.data-top-option .checkAll
{
	position: relative;
	top: 5px;
}

.data-top-option .checkAll::before
{
	content: "";
  	background: url("../resourses/transparent-check.png");
  	background-position: center;
  	background-size: contain;
  	width: 14px;
  	height: 14px;
  	position: absolute;
  	left: -21px;
  	top: 2px;
	transform: scale(0) rotateZ(180deg);
  	transition: all 0.2s cubic-bezier(0.54, 0.01, 0, 1.49);
}

.data-top-option input[type="checkbox"]:checked + .checkAll::before
{
	transform: scale(1) rotateZ(0deg);
}

.data-top-option .checkAll::after
{
	content: "";
  	border: 1px solid #2797d4;
  	width: 11px;
  	height: 11px;
  	position: absolute;
  	top: 3px;
  	left: -20px;
  	border-radius: 25%;
}


.data-top-option input[type="checkbox"]
{
	position: relative;
  	top: 2px;	
}

.data-top-option .txt2
{
	display: none;	
}


.data-container
{
	position: absolute;
	bottom: 0;
	top: 0;
	right: 0;
	left: 0;
	padding-left: 20px;
	padding-right: 15px;
	margin-top:calc(180px);
	margin-left: 250px;
	transition: ease-in 0.2s;
	overflow: auto;
}

#calendar
{
	position: absolute;
	bottom: 15px;
	top: 0;
	right: 0;
	left: 0;
	margin: 15px;
	transition: ease-in 0.2s;
}

.container2
{
	margin-left: 50px;
	padding-left: 2px;
	padding-right: 2px;
	margin-top:calc(165px);
}

.container3
{
	margin-left: 50px;
}

.container4
{
	margin-left: 250px;
	padding-left: 2px;
	padding-right: 2px;
	margin-top:calc(165px);
}


/*
.data-container .content-wrap
{
	display: grid;
  	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  	gap: 0;
  	margin: 0 0 20px 0;
}
*/


.data-container .content-square
{
	display: grid;
  	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  	gap: 0;
  	margin: 0 0 20px 0;
}

.data-container .content-quarel
{
	display: grid;
  	grid-template-columns: 1fr 1fr 1fr 1fr;
  	gap: 0;
  	margin: 0 0 20px 0;
}

.data-container fieldset
{
	border: 1px solid  #e2e2e2
	width: auto;
	margin-bottom: 20px;

}

.data-container fieldset legend
{
	font-family: SegoeUI Bold, sans-serif;
}

.data-container #previewBox
{
	height: 200px;
	overflow: auto;
}


.data-container .dataSquare
{
  	padding: 10px;
  	/*background-color: #fff;*/
  	box-sizing: border-box;
  	cursor: default;
  	border-radius: 3px;
  	margin: 1px;
  	height: 150px;
  	min-width: 100px;
  	text-align: center;
  	/*border: 5px solid #fcfcfc;*/
  	overflow: hidden;
}


.data-container .dataQuarel
{
  	padding: 10px;
  	/*background-color: #fff;*/
  	box-sizing: border-box;
  	cursor: default;
  	border-radius: 3px;
  	margin: 1px;
  	height: 80px;
  	min-width: 100px;
  	text-align: left;
  	/*border: 5px solid #fcfcfc;*/
  	overflow: hidden;
}

.data-container .dataQuarel .inner-box
{
	float: left;
}

.data-container .dataQuarel .inner-box-prev
{
  	margin-right: 5px;
}



.data-container .data a
{
	text-decoration: none;
	cursor: pointer;
	color: #2b88f7;
}
.data-container .data a:hover
{
	text-decoration: underline;
}

.data-container .data span
{
	color: #0f0f0f;
}

.data-container .data .txt-status
{
	color: #2b88f7;
}

.data-container .data .icon-lock
{
	color: #d34c4c;
	font-size: 11px;
	margin-left: 5px;
	position: relative;
	top: 1px;
}



.data-container .dataCheck .inner-box-check
{
	text-align: left;
	display: none;
}

.data-container .dataCheck input[type="checkbox"]
{
	display: none;
}

.data-container .dataCheck label
{
	position: relative;
}

.data-container .dataCheck label::before
{
	content: "";
  	background: url("../resourses/transparent-check.png");
  	background-position: center;
  	background-size: contain;
  	width: 14px;
  	height: 14px;
  	position: absolute;
  	left: 5px;
  	top: -1px;
	transform: scale(0) rotateZ(180deg);
  	transition: all 0.2s cubic-bezier(0.54, 0.01, 0, 1.49);
}

.data-container .dataCheck input[type="checkbox"]:checked + label::before
{
	transform: scale(1) rotateZ(0deg);
}

.data-container .dataCheck label::after
{
	content: "";
  	border: 1px solid #2797d4;
  	width: 11px;
  	height: 11px;
  	position: absolute;
  	left: 5px;
  	border-radius: 25%;
}



.data-container .dataCheck label::before
{
  	left: 9px;
  	top: 8px;
}

.data-container .dataCheck label::after
{
  	left: 10px;
  	top: 8px;
}



/* ---------- CUSTOM DATA CHECKBOX ---------- */

.data-container .dataCheck2 input[type="checkbox"]
{
	position: relative;
	width: 20px;
	height: 10px;
	-webkit-appearance: none;
	background-color: #e0e0e0;
	outline: none;
	border-radius: 25px;
	box-shadow: inset 0 0 5px rgba(0,0,0.1);
	transition: .5s; 
	display: block;
	left: 7px;
}

.data-container .dataCheck2 input:checked[type="checkbox"]
{
	background: #03a9f4;
}

.data-container .dataCheck2 input[type="checkbox"]:before
{
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 25px;
	top: -1px;
	left: 0;
	background: #fff;
	transition: .3s;
	transform: scale(1.1);
	box-shadow: 0 1px 5px rgba(0,0,0.1);
	border: 1px solid #bfbfbf;
}

.data-container .dataCheck2 input:checked[type="checkbox"]:before
{
	left: 10px;
}


#folderInfo 
{
	background-color: #ffe69f;
	padding: 5px;
	cursor: default;
}




.data-container .inner-box-prev
{
	height: 55px;
}

.data-container .inner-box-prev span
{
	font-size: 50px;
	color: #9b9b9b;
}

.data-container .inner-box-prev video
{
	width: 50px;
	height: 50px;
	border-radius: 3px;
	border: 1px solid #f7f7f7;
}

.data-container .inner-box-prev img
{
	width: 50px;
	height: 50px;
	border-radius: 3px;
}

.data-container .inner-box-prev audio
{
	width: 50px;
	height: 50px;
	border-radius: 3px;
	border: 1px solid #f7f7f7;
}

.data-container .txt-wrap
{
	overflow: hidden;
	height: 115px;
	position: relative;
}

.data-container .inner-box-txt
{
	height: 18px;
	overflow: hidden;
}

.data-container .dataSquare .box-txt-title
{
	height: 35px;
}

.data-container .dataQuarel .box-txt-title
{
	height: 20px;
}

/*
.data-container .inner-box-txt:first-child
{
	height: 38px;
	overflow: hidden;
}

.data-container .inner-box-txt:nth-child(2)
{

}
*/

.data-container .inner-box-txt .txt-title
{
	font-family: SegoeUI SemiBold, sans-serif;
}

.data-container .data:hover
{
  	background-color: rgba(184, 193, 255, 0.2); /*#b8c1ff;*/
}

.data-container .data-active
{
  	background-color: rgba(184, 193, 255, 0.4);
}

.data-container .data-active:hover
{
  	background-color: rgba(184, 193, 255, 0.4);
}



/* ---------- CONTAINER PREVIEW ---------- */
#preview-wrap
{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: auto !important;
	display: flex;
	justify-content: center;
    align-items: center;
    background-size: cover;
    background-color: rgba(68, 68, 68, 0.1);
    z-index: 1000;
    transition: ease-in 0.2s;
    display: none;
    overflow: hidden;
}

#preview-container
{
	width: 50%;
	max-width: 900px;
	min-width: 250px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	background-color: rgba(68, 68, 68, 0.1);
	margin-top: 116px;
}

#preview-container .form-header
{
    border-radius: unset;
    background-color: #5b5b5b;
}

#viewContent
{
	height: 100%;
	overflow: auto;
}


.data-container table
{
	border-collapse: collapse; 
	text-align: left;
	cursor: default;
}

.data-container .tbl_small
{
	width: 25%;
}

.data-container .tbl_medium
{
	width: 50%;
}

.data-container .tbl_quater
{
	width: 75%;
}

.data-container table tr th
{
	padding: 4px;
	position: sticky; 
	top: -1px;
}

.data-container table tr td
{
	padding: 4px;
}



.dataTable .tr-hilight
{
	background-color: #f0f6f7;
}

.dataTable .tr-selected 
{
	background-color: #dce9ea;		
}


.data-container table tr td button
{
	padding: 2px 5px;
	text-align: center;
	border: unset;
	background-color: unset;
	border-radius: 3px;
	border: 1px solid  #e2e2e2;
}

.data-container table tr td button:hover
{
	background-color: #f4f4f4;
	border-color: #e0e0e0;
}

.data-container table tr td button .icon
{
	font-size: 18px;
	color: #0f0f0f;
	margin-right: 2px;
}


.data-container table img
{
	box-shadow: 0px 0px 2px 1px rgba(79,79,79,0.3);
	border-radius: 50%;
}

.data-container .avatar
{
	box-shadow: 0px 0px 2px 1px rgba(79,79,79,0.3);
	border-radius: 50%;
}

.data-container .avatar-main
{
	position: relative;
	top: -4px;
}

.data-container textarea
{
	width: auto;
	min-width: 250px;
    border-radius: 3px;
    outline: none;
    border: 1px solid #bfbfbf;
    padding: 2px;
    resize: none;
    margin-left: 5px;
    margin-right: 5px;
}


.data-container .btn-comment
{
	width: auto;
	padding: 5px;
	border-radius: 50px;
	border: 1px solid #d3d3d3;
	background-color: #f7f7f7;
	cursor: pointer;
	margin-right: 10px;
}

.data-container .btn-comment-main
{
	position: relative;
	top: -13px;
}

.data-container .btn-comment:hover
{
	background-color: #cfd8ff;
	border-color: #b4bad8;
}

.data-container .response:hover
{
	text-decoration: underline;
}


.data-container .comment
{
	width: auto;
	max-width: 50%;
	margin-bottom: 25px;
	margin-top: 10px;
}

.data-container .child-comment
{
	margin-left: 30px;
	display: none;
}

.data-container .comment-box
{
	float: left;
	margin-right: 10px;
}

.data-container .comment-resp-wrap
{
	display: none;
}



/* ---------- USER SCREEN ---------- */

#fullScreen #sidebar
{
	display: none;
}

#fullScreen #navbar
{
	display: none;
}

#fullScreen .data-container
{
	margin-left: 0;
}

#fullScreen .data-top-option
{
	margin-left: 0;
}

#fullScreen .container3
{
	margin-left: 0;
}

#fullScreen .container2
{
	margin-left: 0;
}



#fullScreen .top-option2
{
	margin-left: 0;
}

#fullScreen .top-option3
{
	margin-left: 0;
}



main .showHomeIcon
{
	display: block;
}

main .showHomeIconLine
{
	display: block;
}

main .hideHomeIcon
{
	display: none;
}

main .hideHomeIconLine
{
	display: none;
}


#fullScreen .content-square
{
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

#fullScreen .content-quarel
{
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

#fullScreen #dashboard
{
	margin: 130px 200px 30px 200px;
}




.data-container .paper-wrap
{
	background-color: #fff;
	min-width: 650px;
	width: 60%;
	height: auto;
	padding: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
	box-shadow: 0px 0px 2px 1px rgba(89,70,51,0.2);
}


#loadingIcon
{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: auto !important;
	/*display: flex;*/
	justify-content: center;
    align-items: center;
    background-size: cover;
    background-color: rgba(68, 68, 68, 0.1);
    z-index: 1000;
    transition: ease-in 0.2s;
    display: none;
}









.upload-container
{
	display: inline-block;
}
.upload-container label
{
	margin-left: 15px;
	position: relative;
	top: -20px;
}


.upload-container label::after
{
  	border: unset;
  	width: unset;
  	height: unset;
}

.upload-container .upld-txt
{
	margin-right: 5px;
}
.upload-container .icon
{
	font-size: 20px;
	position: relative;
	top: 7px;
	color: #727272;
}

.upload-container .icon:hover
{
	cursor: pointer;
}

.upload-container label:hover
{
	cursor: pointer;
}

.upload-container input
{
	display: none;
}

.upload-container input
{
	display: none;
}

#image-preview
{
	width: 50px; height: 50px; 
	box-shadow: 0px 0px 2px 1px rgba(127,127,127,0.3);
	border: 2px solid #fff;
	border-radius: 3px;
}

#image-preview img
{
	border-radius: 3px;
	box-shadow: unset;
}




.data-container .input-box input
{
	width: 100%;
    border-radius: 3px;
    outline: none;
    border: 1px solid #bfbfbf;
    padding: 2px;
    padding-left: 23px;	
}

.data-container .input-box textarea
{
	width: 100%;
    border-radius: 3px;
    height: 25px;
    outline: none;
    border: 1px solid #bfbfbf;
    padding: 2px;
    resize: none;
    margin: 0 15px 0 15px;
}

.data-container .input-box
{
	margin: 0;
	position: relative;
	align-items: center;
  	justify-content: center;
	display: flex;
	flex-wrap: wrap;
	width: auto;
	padding-bottom: 0;
}

.data-container .input-box select
{
    width: calc(100%);
    border-radius: 3px;
    outline: none;
    border: 1px solid #bfbfbf;
    padding: 2px;
    background-color: #efefef;	
}

.data-container .input-box .icon
{
    position: absolute;
  	left: 5px;
  	top: 2px;
}

.data-container .box2 input
{
    padding-left: 5px;	
}
