@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100;200;400;800&display=swap');
:root{
	--color-magenta: #ff0050;
	--color-blue: #00cfff;
	--color-green: #83ff00;
	--color-grey-0: #060709;
	--color-grey-1: #0c1014;
	--color-grey-2: #1f252c;
	--color-grey-3: #999999;
	--color-grey-4: #3f3f3f;
	--accent-background:#00cfff;
	--color-header: #1f252c7d;
	--color-section: #0c10147d;
	--border-select: #6c6f71;
	--table-head:#0c1014;
	--table-body:#24292e;
	--table-even:#31353a;
	
	--dialog-back-layer:#000000f5;
	--dialog-background:#0c1014e6;
	--dialog-border:#1f252c;


	--container-background:#24292e;

	--label:#0c1014;
	--label-border:#060709;
	--option:#0c1014;
	--option-text:#999999;

	--task-time:#1f252c;
	--task-background:#171d23;

	--task-status-do:#00cfff;
	--task-status-doing:#83ff00;
	--task-status-done:#fff;
	--task-status-archived:#1f252c;
}


:root {
  --accent: #00d5ff;
  --font-princial:'JetBrains Mono', monospace;;
}

/*smooth scroll ini*/
html {
  scroll-behavior: smooth;
}
/*smooth scroll end*/

/*ScrollBar ini*/

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent!important; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var( --color-grey-4 ); 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var( --accent ); 
}
/*ScrollBar end*/

body,.xgl *{
	font-family: 'JetBrains Mono', monospace;
	font-size: 12px;
}

a:link,a:visited{
	color: var(--color-blue);
}

h1,h2,h3{
	font-weight: lighter;
	font-family: 'JetBrains Mono', monospace;
	text-transform: uppercase;
}

h1{
	font-size: 16px;
}

h2{
	font-size: 14px;
}

h3{
	font-size: 12px;
}

.color-accent{
	color: var( --accent );
}
.color-blue{
	color: var( --color-blue );
}

.opacity_0_2{
	opacity: 0.2;
}

.opacity_1{
	opacity: 1;
}

.elipsis{
	text-overflow: ellipsis;
}

.shadow-hover{
	opacity:0;
	transition: all 0.1s;
}

.shadow-hover:hover{
	opacity:1;
}

.hidden{
	display: none!important;
}

.xgl-main-frame{
	background-color: #101010;
	color:#fff;
	padding-bottom: 32px;
}

.xgl-vertical-menu{
	width: 55px;
	min-height: 100vh;
	text-align: center;
	padding: 10px 5px;
	background-color: var( --color-grey-2 );
}

.xgl-main-frame-content{
	overflow-x: hidden;
	padding: 10px 10px;
}

button, .button,.ui-button.ui-widget,.form-field input[type=submit],.ed_button {
	width: initial;
	background-color: var( --color-grey-2 )!important;
	border-style: solid!important;
	border-width: 1px!important;
	border-color: var( --color-grey-0 )!important;
	cursor: pointer!important;
	min-height: 24px!important;
	color: var( --color-grey-3 )!important;
	border-radius: initial!important;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

button.warning, .button.warning{
	background-color: var( --color-magenta );
	border-style: solid;
	border-width: 1px;
	border-color: var( --color-magenta );
	cursor: pointer;
	min-height: 24px;
	color: var( --color-grey-0 );
}




.icon-button{
	width: 20px;
	height: 20px;
	color: var( --color-grey-3 );
	border-style: solid;
	border-width: 1px;
	border-color: var(--color-grey-0);
	background-color: var(--color-grey-2);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.icon-button:hover,.button:hover,button:hover,ed_button:hover{
	background-color: #fff;
	color: var( --color-grey-0 );
}


.xgl-tip{

}

.xgl-page-title{
	font-size: 14px;
	color: var( --color-grey-3 );
}

.xgl-section-container{
	margin: 10px 10px;
	background-color: var( --color-section );
	border-style: solid;
	border-color: var( --color-grey-2 );
	border-width: 1px;
}

.xgl-section-header{
	background-color: var( --color-header );
	padding: 0 10px;
	height: 24px;
}

.xgl-section-title{
	color: var( --color-grey-3 );
	font-size: 12px;
}

.xgl-section-title-container .icon{
	margin-right: 5px;
}

.xgl-section-body{
	padding: 5px 10px;
	display: none;
}

.xgl-section-body.active{
	display: block;
}


.xgl-section-body.interior{
	padding: 5px 0 5px 10px;
}

.fixed{
	position: fixed;
}

.bottom{
	bottom: 0;
}

.icon{
	width: 24px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.avatar-icon{
	width: 24px;
	height: 24px;
}

.link-item{
	margin: 5px;
	height: 27px;
}

.link-item .xgl-section-header{
	height: 32px;
}

.link-item:hover{
	cursor: pointer;
	background-color: #fff;
	color: var( --color-grey-3 );
}


.xgl-user-mini-card{
	margin: 5px;
	cursor: pointer;
	background-color: var( --color-grey-2 );
	padding: 5px;
}

.xgl-container{
	background-color: var( --color-grey-1 );
	padding: 5px;
}

.post-container{
	margin: 5px 25px;
}

.xgl-inner-section-header{
	padding: 5px;
}

.xgl-section-container.active{
	border-color: var( --border-select );
	box-shadow: 1px 3px 20px 3px #000000;
}

.xgl-project-section_tasks_nav_counter .button{
	display: flex;
	align-items: center;
	padding: 0 5px;
	margin: 1px;
	height: 100%;
}



.xgl-right-column-toggle{
	width: 32px;
}

.xgl-dashboard-column-fixed{
	position: fixed;
	top: 10px;
}

.xgl-dashboard-column-fixed button{
	width: 24px;
}

/* Admin */
.handle-actions{
	display: flex;
}

/*table INI*/
table thead td{
	background-color: var( --table-head );
	border-color: var(--color-grey-2);
	border-width: 0 1px 0 0;
	border-style: solid;
	height: 24px;
	padding: 0 10px;
}

table td{
	border-width: 0 1px 0 0;
	border-style: solid;
	border-color: var(--color-grey-2);
	height: 24px;
	padding: 0 10px;
	color: #fff;
}


table tbody{
	background-color: var( --table-body );
}

tr:nth-child(even) {
	background-color: var( --table-even )!important;
}

.inner-table-data{
background: #1c1c1c; color: #ccc; font-size: 11px;

}

.inner-table-data-sub{
background: #1c1c1c; color: #ccc; font-size: 10px;

}
/*dialog INI*/
.xgl-dialog,.xgl-modal{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: var( --dialog-back-layer );
	color: #fff;
	z-index: 10;
}

 .xgl-inner-data-toggle{
 	display: none;
 }

.global-modal-interior{
	width: 80vw;
	height: 80vh;
	margin: 10vh 10vw;
	border-color: var( --color-grey-2 );
	overflow-y: auto;
	position: relative;
}

.global-dialog-interior{
	width: 80vw;
	background: var( --color-grey-1 ) ;
	height: 80vh;
	margin: 10vh 10vw;
	border-color: var( --color-grey-2 );
	position: relative;
}

.global-dialog-content{
	height: calc( 100% - 20px );
	padding: 10px;
}

.global-modal-content{
	padding: 10px;
	background-image: url('../img/bg-matrix.svg');
	height: calc( 100% - 44px );
	overflow-y: auto;
}

.global-modal-content.target{
	padding: 10px;
}

.global-modal-content .title{
	padding: 5px;
}

.global-dialog-content iframe{
    width: -webkit-fill-available;
    height: -webkit-fill-available;
	border-style: none;
}
.global-dialog-content.iframe{

}

.global-dialog-close{
	position: absolute;
	top: 5px;
	right: 5px;
	color: var( --color-magenta );
}

.hidden-step{
	display: none;
}

/*input fields INI*/
.form-field{
	display: flex;
	flex-direction: column;
	background-color: var( --color-grey-0 );
	color: var( --color-grey-3 );
	width: 50%;
}

.form-field input[type=text],.form-field select,.form-field .tagsinput,input[type=text],input[type=email],input[type=tel],textarea{
	height: 32px!important;
	/*width: 100%;*/
	min-width: 50vw;
	background-color: transparent;
	color: #fff!important;
	border-radius: 0;
	border-style: solid;
	border-width: 0 0 1px;
	border-color: var( --color-grey-3 );
	margin: 0px 5px 5px!important;
	font-size: 16px;
}

#xgl-getCurrentUserGeneralCredentials .form-field input[type=text],.form-field select,.form-field .tagsinput,input[type=text],input[type=email],input[type=tel]{
	min-width: initial;
}

/* perdon si se mueve algo pero necesitabamos poder leer los campos en el dashboard :) */
#poststuff input {
	color: black!important;
}

textarea{
	background-color: var( --task-background );
	min-height: 200px;
}

.new-item-class .step{
	font-size: 60px;
	margin: 10px 2vw;
}

.tagsinput .ui-autocomplete-input{
	color: #fff!important;
}

.form-field input[type=submit]{
	height: 20px;
	padding: 15px 20px;

}

.form-field option{
	background-color: var( --option );
	color: var( --option-text );
}

.input-password,.input-user{
	background-color: transparent;
	color: #fff;
	border-style: none;
	width: 75px;
}

.input-password{
	color: var( --color-magenta );
}

.form-field.w100{
	width: 100%;
}

.xgl-form-input-field-container,.form-field{
	width: calc(100% - 10px);
    margin: 0 5px 5px;
}

.xgl-form-input-field-container label,.form-field label{
	background: var(--label );
	width: calc(100% - 2px);
	margin: 0 0 5px;
	height: 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	border-style: solid;
	border-width: 1px;
	border-color: var(--color-grey-0 );
}

input { user-select: all; }

/*calendar*/
.xgl-calendar-container{
	background-color: var(--color-grey-1);
	box-shadow: 5px 0px 15px #000;
    z-index: 1;
    position: relative;
    height: 100%;
}

.month h2{
	font-weight: lighter;
	color: var( --color-blue );
	text-transform: uppercase;
}
.month-prev,.month-next{
	color: var( --color-blue );
	margin: 0 5px;
	cursor: pointer;
}
.calendar-task{
	border-style: solid;
	border-color: var( --color-grey-2 );
	border-width: 1px;
	margin-bottom: 1px;
}

.calendar-task .calendar-task-inner{
	border-style: solid;
	border-width: 0 0 0 4px;
	padding: 3px;
	font-size: 8px;
	width: 100%;
	text-overflow: ellipsis;
	overflow-x: hidden;
}

.calendar-day-container {
	vertical-align: baseline;
}

.calendar-day-container.current{
	border-style: solid;
	border-color: var( --accent );
	border-width: 1px;
}

.DO{	border-color: var(--task-status-do)!important; }
.DOING{	border-color: var(--task-status-doing)!important; }
.DONE{	border-color: var(--task-status-done)!important; }
.ARCHIVED{	border-color: var(--task-status-archived)!important; }

.DO-status{box-sizing: border-box; border-color: var(--task-status-do)!important; color:var(--task-status-do); } .DO-status *{ color:#1c1c1c; background-color:var(--task-status-do); }
.DOING-status{box-sizing: border-box; border-color: var(--task-status-doing)!important; color:var(--task-status-doing); }.DOING-status *{ color:#1c1c1c; background-color:var(--task-status-doing)!important }
.DONE-status{box-sizing: border-box; border-color: var(--task-status-done)!important; color:var(--task-status-done); }.DONE-status *{color:#1c1c1c;  background-color:var(--task-status-done); }
.ARCHIVED-status{box-sizing: border-box; border-color: var(--task-status-archived)!important; color:var(--task-status-archived); }.ARCHIVED-status *{ color:var(--color-grey-3); }

/*Daily Task*/
.xgl-daily-event.card{
	background-color: var( --task-background );
	padding: 5px;
	position: relative;
}

.xgl-daily-event.card .xgl-daily-time {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: var( --task-time );
}

.xgl-daily-event.card.active .xgl-daily-time{
	background-color: var( --accent );
	color: #1c1c1c;
	box-shadow: 0px -1px 10px var(--accent);
}

.xgl-daily-event.card .xgl-daily-time .xgl-daily-time-text{
	transform: rotate(270deg);
}

.xgl-daily-event.card .item-interior {
	padding: 5px;
}

.xgl-daily-event.card.active .item-interior{
	box-shadow: 0px 0px 15px #000;
}

.xgl-daily-event.card .client-post-title{
	font-size: 10px;
	color: var( --color-grey-3 );
}

.xgl-daily-event.card .title{
	font-size: 11px;
	color: #fff;
	width: 100%;
	text-overflow: ellipsis;
}

.xgl-daily-event.card .task-card-status{
	position: absolute;
	top: 5px;
	right: 5px;
	pointer-events: none;
	width: fit-content;
	padding: 1px;
	background-color: var( --color-grey-1 );
}

.xgl-daily-event.card.active .task-card-status{
	color: var( --accent );
}

.portlet-header.ui-sortable-handle{
	background-color: var( --color-grey-1 );
	cursor: move;
}

.xgl-daily-event.card .item-tools{
	width: 100%;
	justify-content: end;
}

.xgl-daily-event.card .dashicons{
	font-size: 12px;
	height: initial;
}

.xgl-daily-card.backwardness{
	border-style: solid;
	border-width: 1px;
	border-color: var( --color-magenta );
	margin-bottom: 10px;
}

.backwardness-right{
	position: absolute;
	right: -52px;
	transform: rotate(90deg);
	top: 32px;
	background: var( --color-magenta );
	color: #000!important;
	padding: 1px 10px;
}

.daily-warnings .warning{
		margin: 15px 0 10px;
}

.daily-warnings  *{
	color: var( --color-magenta );
}
.warning{
	background-color: var( --color-magenta );
	color: #1c1c1c;
	text-align: center;
}

.xgl-daily-card .task-card-status{
    border: solid;
    border-width: 0 0 5px;
    width: fit-content;
    min-width: 32px;
}

.xgl-daily-event .item-tools button{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

}

/*credential*/
#xgl-section-id-credentials h1{
	font-size: 20px;
	margin-left: 10px;
}

#xgl-section-id-credentials h2{
	font-size: 16px;
	margin-left: 10px;
}

/*Kanabn INI*/
.kanban-filter-items{
	display: none;
}
.kanban-column.kanban-recept{
    border-style: solid;
    box-sizing: border-box;
    border-width: 1px;
    border-color: var(--color-grey-2);
    min-width: 200px;
}
.kanban-column.kanban-recept .column {
	max-height: 50vh;
	overflow-y: auto;
}

.kanban-column .portlet{
	margin: 10px;
	width: calc( 100% - 20px );
	border-style: solid;
	    border-width: 1px 1px 1px 2px;
	font-size: 10px;
	position: relative;

}

.kanban-column .dashicons{
	font-size: 10px;
	height: 10px;
}

.kanban-column .portlet:hover{
	transform: scale(1.02);
	z-index: 1;

}

.portlet-content{
	display: none;
}

.kanban-column .task-card-status{
	position: absolute;
	top: 3px;
	right: 3px;
	pointer-events: none;
	padding: 3px;
	background-color: var( --color-grey-1 );
	width: fit-content;
}

.portlet-toggle{
	position: absolute;
	bottom: 12px;
	right: 6px;
	font-size: 20px;
}
.dashicons.dashicons-sort.portlet-toggle{
	font-size: 20px;
}

.porlet.xgl-user-reps img,.xgl-user-reps img{
	width: 24px;
}



.column.ui-sortable{
	min-height: 100px;
	padding-bottom: 100px;
}

.column.ui-sortable:hover{
	border-color: var(--accent);
	border-style: solid;
	border-width: 4px 0 0;
}

.kanban-tool-catch-graphics{
	height: 100px;
	pointer-events: none;
	background-image: url('../img/gradient-1.png');
}

.portlet-header.ui-sortable-handle{
	background-image: url('../img/gradient-1.png');
	/*height: 32px;*/
	display: flex;
	justify-content: start;
	overflow: hidden;
	flex-wrap: wrap;
}


/*SIDE COLUMN*/
.xgl-right-column-hide-content{
	transition: all 0.2s;
	opacity: 0;
	max-width: 0;
	width: 0;
	overflow-x: hidden;
	background-color: var( --color-grey-2 );
}

.xgl-right-column-hide-content.active{
	display: block;
	max-width: 40vw;
	opacity: 1;
	width: 40vw;
	min-width: 250px;
	overflow-x: hidden;
}

/* external links  */
.externalLinks .externalLink-card{
	background-color: var( --color-grey-2 );
	margin-bottom: 1px;
}

.client-generic-resourses .dashicons{
	height: 10px;
	font-size: 10px;
}

.xgl-meetingRoom-icon-url{
	width: 32px;
	height: 20px;
	background-position: center;
	background-repeat: no-repeat;
}

/*New Item Selector*/
.selector-visual-item{
	min-width: 10vw;
	max-width: 100px;
	overflow: hidden;
	margin: 5px;
	height: 50px;
}

.selector-visual-item .post_image{
	width: 20%;
	height: 32px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-color: var( --color-grey-4 );
}

.selector-visual-item .post_title{
	width: 80%;
	height: 32px;
	text-align: center;
}

/*Integration BXC */
.sub-data-container{
	display: none;
}

.sub-data-container{
	padding: 10px;
	background: var(--color-grey-1);
	border-color: var(--color-grey-2);
	border-style: solid;
	border-width: 1px;
	margin-bottom: 10px;
}

.sub-data-container-item{
	width: 50%;
}

.sub-data-container-item .label{
	min-width: 30%;
	color: var(--color-grey-3);
}

.tree-icon{
	width: 24px;
	height: 42px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	margin: 0 5px;
}

/* single task */

.xgl.single-view{
	color: #fff;
}

.xgl-tools.text-align-right{
	display: flex;
	justify-content: end;
}

.xgl-single-task-interaction{
	width: 60vw;
}

.xgl-single-task-data{
	padding: 0 5px;
	width: 30%;
	min-width: 200px;
}

.xgl-single-task-data .xgl-status{
	padding: 0 5px 5px 0;
}

.xgl-dates {
	min-width: 150px;
}

.xgl-dates h2{
	font-size: 24px;
	padding: 0px 5px;
}

.xgl-description p{
	background: #00adff0f;
	padding: 10px;
	color: #fff;
	font-size: 15px;
}

/*comments*/

.xgl-comments-form.active{

	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: rgba(0,0,0,0.9);
}
.xgl-comments-form.active .xgl-comments-form-tinymce{
	display: block!important;
}

.mce-panel{
	border-style: none;
}

.mce-content-body.xgl-input-message.post-type-tasks.post-status-publish.page-template-default.mceContentBody,.xgl-tinymce.wp-editor-area,.mce-toolbar-grp.mce-container.mce-panel.mce-first.mce-last{
	background-color: var( --task-background );
	color: #fff;
}

 #tinymce {
	background-color: var( --task-background )!important;
	color: #fff;
}

.comments-area{
	background: var( --table-body );
	padding: 10px;
	margin-top: 10px;
	max-height: 70vh;
	overflow-y: auto;
	border-style: none;
}

.comments-area .xgl-comment{
	padding: 5px;
	margin-bottom: 10px;
}

.fancybox-button.fancybox-close-small:hover{
	color: #1c1c1c;
}

.comments-area .xgl-comment.b{
	background-color: var( --color-grey-2 );
}

.comments-area .xgl-comment:first-child{
	background-color: #39546b69;
}

#xgl-comments-form-tinymce form input[type="submit"],#insert-media-button{
	background-color: var( --accent );
	cursor: pointer;
}

.xgl-comment-content p{
	padding: 5px 10px;
}



#qt_xgl-input-message_toolbar{
	background-color: var( --color-grey-1 );
	color: #fff;
}

.tmce-active .wp-switch-editor.switch-tmce{
	background-color: var( --accent );
}

.tmce-active .wp-switch-editor.switch-tmce{
	background-color: var( --accent )!important;
	color: #fff!important;
}

.html-active .wp-switch-editor.switch-html{
	background-color: var( --accent )!important;
	color: #fff!important;
}

.mce-toolbar-grp.mce-container.mce-panel.mce-first.mce-last{
	border-style: none!important;
}

.mce-panel,.wp-editor-container{
	border-style: none!important;
 }

.xgl-attachment-preview{
	text-align: center;
	overflow:hidden;
	min-height: 128px;
}

 .xgl-attachment-preview img{
 	height: 32px;
 	width: auto;
 }

 .xgl-preview-item{
 	background-color: var( --color-grey-2 );
 	margin: 5px;
 	padding: 5px;
 	width: calc( 50% - 20px );
 }

 .xgl-attachments-container{
 	display: flex;
 	flex-wrap: wrap;
 }

 /*console*/
 .xgl-console-content{
 	z-index: 999;
 	width: 50%;
 	min-width: 300px;
 	max-height: 50vh;
 }

 .xgl-console-line{
		margin: 5px;
		padding: 5px;
		border-style: solid;
		border-width: 1px;
		border-color: #00d5ff3d;
 }

 .xgl-console-line .dashicons {
    color: var(--accent);
 }

 .xgl-console-msg{
 	color: var( --color-green );
 }

 /*uihelper*/
 .ui-autocomplete{
 		max-width: 200px;
 }
.ui-autocomplete .ui-menu-item .ui-menu-item-wrapper{
	max-width: 200px;
	background-color: var(--accent);
	padding: 10px 5px;
	margin: 5px 0 ;
	text-overflow: ellipsis;
	cursor: pointer;
}

/*GANTT*/
.gantt.grid-row{
	fill: #1c1c1c!important;
}
.porlet-respons{
	width: 100%;
}

.porlet-respons img{
	width: 12px;
}

input [name='_tasks_hours']{
	font-size: 40px;
	color: red;
	height: initial;
	text-align: center;
}

.xgl-global-modal-information-iframe{
	height: 100%;
}

#xgl-dialog-confirmation{
	background-image: url('../img/bg-matrix.svg');
	background-size: cover;
	background-position: center;
}

.global-dialog-interior-scroll{
	height: 100%;
}


.selector-step{
	/*width: 16vw;*/
}

.task-fecha-interior .task-fecha-start,.task-fecha-interior .task-fecha-end{
	font-size: 8px;
}

.portlet-title{
	width: calc(100% - 5px );
	font-weight: 600;
	font-size: 12px;
	padding: 10px 5px;
}
.mce-path.mce-flow-layout-item.mce-first{
	background-color: #1c1c1c;
	color: #ccc;
}

.tasks-hours .accent-number{
	font-size: 20px;
}

.cursor_red{
	color: var( --accent );
}

.widget{
		border-color: #080808;
    border-style: solid;
    border-width: 1px;
}

#filter-detail-results input{
	width: 100px;
}

@media (min-width: 1440px) {


  .portlet-header.ui-sortable-handle{
  	/*height: 70px;*/
  }
 .tree-icon{
		width: 64px!important;
		height: 40px!important;
	}
	.porlet-respons img{
		width: 16px;
	}
}

@media (max-width: 768px) {

  .kanban-column.kanban-recept{
  	width: 100%!important;
  }

  .calendar-task .calendar-task-inner{
  	max-height: 16px;
  }

  .vertical-banner-button-ui{
  	right: 23vw!important;
  }
  .vertical-banner-button-ui img,.vertical-banner-button img{
  	width: 100%!important;
  }


  .vertical-banner-container{
  	right: 20vw!important;
  }

  .xgl-right-column{
		position: fixed;
		right: 0;
		z-index: 1;
	}

	.xgl-main-frame-content{
		overflow-x: hidden;	
		padding: 11px 40px 10px 10px;
	}
}

