/*
---------------------------------
    APP Core
    Version: 2025-05-08
--------------------------------- */

	/* =General
	----------------------------------------------- */
	@charset "utf-8";
	@import url("/assets/colors.css");
	@import url("/assets/input.css");
	@import url("/assets/buttons.css");
	@import url("/assets/tables.css");

	* { margin: 0px; padding: 0px; }

	body    { 	
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-weight: 500;
    min-width: 0px;
    margin: 0;
    padding: 0;
		background-color: #fff;
	}
		
	#overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255,255,255,0.7);
    transition: opacity 500ms;
    z-index: 90;
    text-align: center;
	}


	#logoBox {
		    position: relative;
		    margin: auto;
		    width: 186px;
		    height: 186px;
		    top: 35%;
		    animation: spinner 4s infinite ease;
	}

	.spinner {
	  margin: 100px auto 0;
	  width: 70px;
	  text-align: center;
	}

	.spinner > div {
	  width: 18px;
	  height: 18px;
	  background-color: var(--themeColor1);

	  border-radius: 100%;
	  display: inline-block;
	  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	}

	.spinner .bounce1 {
	  -webkit-animation-delay: -0.32s;
	  animation-delay: -0.32s;
	}

	.spinner .bounce2 {
	  -webkit-animation-delay: -0.16s;
	  animation-delay: -0.16s;
	}

	@-webkit-keyframes sk-bouncedelay {
	  0%, 80%, 100% { -webkit-transform: scale(0) }
	  40% { -webkit-transform: scale(1.0) }
	}

	@keyframes sk-bouncedelay {
	  0%, 80%, 100% { 
	    -webkit-transform: scale(0);
	    transform: scale(0);
	  } 40% { 
	    -webkit-transform: scale(1.0);
	    transform: scale(1.0);
	  }
	}






	#header {
	  position: fixed;
	  top: 0;
	  right: 0;
	  left: 260px;
	  min-width: 800px;
	  height: 65px;
	  margin: 0;
	  background-color: #fff;
	  border-bottom: 1px solid #e0e0e0;
	  overflow: visible;
	  z-index: 100;
	}

	#settingsMenu {
		position: fixed;
		top: -300px;
		right: 20px;
		width: 220px;
		min-height: 200px;
		padding: 10px;
		text-align: center;
		background-color: rgba(255,255,255,0.8);
		border-radius: 5px;
		border: 1px solid #808080;
				
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -o-transition-duration: 0.3s;		
		z-index: 2;
	}


	#settingsButton {
		position: fixed;
		top: 20px;
		right: 30px;
		width: 50px;
		text=align: center;
		cursor: pointer;
	}

	#settingsButton .hamburger {
			margin: auto;
			width: 30px;
			text-align: center;		
	}

	#settingsButton .hamburger .onebar {
		position: relative; 
		background-color: #909090; 
		border-radius: 5px;
		width: 100%; 
		height: 4px; 
		margin-auto;
		margin-bottom: 5px;
	}

	#mainContent {
    position: absolute;
    top: 65px;
    left: 265px;
    width: calc(100vw - 300px);
    min-width: 800px;
		height: calc(100vh - 100px);
		margin: 0;
		padding: 0;
    text-align: left;
    z-index: 1; 
    /* border: 1px solid red;  */
	}


	
	#frame0 {
		width: calc(100vw - 280px); 
    min-width: 830px;
		height: calc(100vh - 100px);	
		padding: 0;
		/* border: 1px solid #f0f; */
	}

	#workSpace {
    position: absolute;
    top: 5px;
    left: 10px;
    right: 0;
    bottom: 0;
    /* width: 100vw; */
    width: 95%;
		height: calc(100vh-65px);
		padding: 0;
    text-align: left;
    z-index: 1;
	}
	

	#workSpace.interior {
    position: relative;
    margin: auto;
    top: 0px;    
    width: 1100px;
    min-width: 800px;
    min-height: 680px;
	}

	#logoZone {
    position: relative;
    width: 120px;
    margin-top: 15px;
    margin-left: 60px;
    margin-bottom: 18px;
    text-align: center;
    cursor: pointer;
    background-color: #fff;
    border: 4px solid var(--themeColor1);
    border-radius: 10px;
    padding: 6px 4px 4px 4px;
	}
	
	#logoZone img {
		width: 120px;
		height: auto;
	}

	#leftDock {
	  position: absolute;
		width: 260px;
		height: calc(100vh - 30px);
		top: 0;
		left: 0;
		bottom: 0;
		background-color: #eee;
		/* background-color: #e9ddc7; --- beige*/
		border-right: 1px dotted #171718;
		z-index: 200;
	}
	
	#leftDock a {
		text-decoration: none;
		color: #171718;
	}
	

	.dockItem {
		width: 240px;
		height: 38px;
		padding: 10px 0px 0px 20px;
		font-size: 18px;
		font-weight: 600;
		text-align: left;
		color: #171718;
		cursor: pointer;
		border-bottom: 1px dotted #171718;
	}

	.dockItem:hover {
		background-color: #171718;
		color: #fff;
	}


	
	.dockItem.current {
		height: auto;
		overflow: auto;
		width: 230px;
		border-left: 10px solid var(--themeColor1);
		background-color: #eeeeee;		
		font-size: 22px;
		font-weight: 800;
		color: #171718;
		padding: 10px 0px 20px 20px;
	}

	.dockItem.current:hover {
		background-color: #eeeeee;
		color: #171718;
	}

	ul.dockNav {
		margin-top: 10px;
		margin-left: 0px;
		list-style-type: none;
	}
	
	ul.dockNav.frame {
		margin-left: -20px;
	}
	
	ul.dockNav li {
		font-size: 16px;
		font-weight: 600;
		margin-left: -60px;
		padding-left: 90px;
	}

	ul.dockNav li a {
		color: #171718;
	}
	
	ul.dockNav li:hover {
		background-color: #e1e1e1;
		color: #171718;
	}

	ul.dockNav li.subCurrent {
		color: var(--themeColor1);
		font-weight: 800;
	}



	h1 {
	    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	    color: #171718;		
	    font-weight: 800;
	    font-size: 36px;
	    letter-spacing: -1px;
	    margin-bottom: 25px;
	}		

	h2 {
	    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	    font-weight: 600;
	    font-size: 28px;
	    letter-spacing: -1px;
	    margin-top: 20px;
	    margin-bottom: 5px;
	    color: #171718;
	}

	.pageTitle {
		position: relative; 
		margin: auto; 
		margin-top: 20px; 
		height: 48px; 
		width: 100%; 
		max-width: 1100px; 
		min-width: 800px; 
		text-align: left;
	}

	h3 {
	    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	    font-size: 20px;
	    font-weight: 800;
	    color: #171718;
	    margin-top: 0;
	    margin-bottom: 10px;
	}

	h4 {
	    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	    font-size: 18px;
	    line-height: 1.3em;
	    font-weight: 600;
	    color: var(--themeColor1);

	}

	h5 {
	    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	    color: var(--themeColor1);
	    font-weight: 200;
	    font-size: 20px;
	    line-height: 1.1em;
	    letter-spacing: -1px;
	}

	a {
    text-decoration: none;
    color: var(--themeColor1);
	}

	.hide {
	    display: none;
	    visibility: hidden;
	}

	.show {
	    display: block;
	    visibility: visible;
	}

	.rotate {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
	}

	#errorDialogue {
    position: fixed;
    top: 0px;
    right: 0px;

    animation:errorDialogue 1s 1;
    -webkit-animation:errorDialogue 1s 1;
    animation-fill-mode: forwards;
    
    animation-delay:1s;
    -webkit-animation-delay:1s; /* Safari and Chrome */
    -webkit-animation-fill-mode: forwards;
    
    z-index: 9999;
	} 

	@keyframes errorDialogue{
    from {opacity :1; z-index: 999; }
    to {opacity :0; z-index: 0; }
	}

	@-webkit-keyframes errorDialogue{
    from {opacity :1; z-index:999; }
    to {opacity :0; z-index: 0; }
	}

	p.speechBubble:empty {
		display: none;
	}

	p.speechBubble {
    position: relative;
    min-width: 400px;
    min-height: 50px;
    padding: 20px;
    text-align: center;
    color: var(--themeColor1);
    font-size: 36px;
    line-height: 36px;
    background-color: #fff;
    border: 8px solid var(--themeColor1);
    -webkit-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 2px 2px 4px #888;
    box-shadow: 2px 2px 4px #888;
    animation-fill-mode: forwards;
    animation-delay:2s;
    -webkit-animation-delay:1s; /* Safari and Chrome */
    -webkit-animation-fill-mode: forwards;
    z-index: 999;
	}

	p.speechBubble:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    right: 30px;
    top: 90px; 
    margin: 0;
    border: 25px solid;
    border-color: var(--themeColor1) var(--themeColor1) transparent transparent;
    animation-fill-mode: forwards;
    animation-delay:2s;
    -webkit-animation-delay:1s; /* Safari and Chrome */
    -webkit-animation-fill-mode: forwards;
    z-index: 999;
	}

	p.speechBubble:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    right: 38px;
    top: 90px; 
    margin: 0;
    border: 15px solid;
    border-color: #fff #fff transparent transparent;
    animation-fill-mode: forwards;
    animation-delay:2s;
    -webkit-animation-delay:1s; /* Safari and Chrome */
    -webkit-animation-fill-mode: forwards;
    z-index: 999;
	}


	/* --- TABS --- */
	.halfTab {
		position: relative;
		display: inline-block;
		vertical-align: top;
		width: 48%;
		min-width: 300px;
		height: 100%;
		min-height: 300px;
		text-align: left;
	}
		
	.thirdTab {
		float: left;
		vertical-align: top;
		width: 32%;
		min-width: 300px;
		height: 100%;
		min-height: 300px;
		text-align: left;
		margin-right: 10px;
	}		
		
		
	#tabs_container {
    /* width: 1000px;	*/
    /* width: calc(100vw - 200px); */
    width: 100%;	
    max-width: 1090px;
    min-width: 800px;
    border-bottom: 1px solid #ccc;
		margin: auto;
		text-align: left;
	}

	#tabs_content_container {
		margin: auto;
    border: 1px solid #ccc;
    border-top: none;
    
    padding: 20px;
    width: 1050px;	
    max-width: 1050px;
    min-width: 760px;

    min-height: 500px;

	}
	.tab_content {
    display: none;
		margin: auto;
		text-align: left;
	}	


	#tabs {
    list-style: none;
    padding: 5px 10px 4px 10px;
    margin: 0 0 0 10px;
    font-size: 24px;
	}
	#tabs li {
    display: inline;
	}
	
	#tabs li a {
    border: 1px solid #ccc;
    padding: 4px 10px;
    text-decoration: none;
    color: #171718;
    background-color: #ccc;
    border-bottom: none;
    outline: none;
    border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
	}
	#tabs li a:hover {
    color: #171718;
    background-color: #ddd;
    padding: 4px 10px;
	}
	#tabs li.active a {
    border-bottom: 1px solid #fff;
    color: var(--themeColor1);
    background-color: #fff;
    padding: 4px 10px;
	}
	#tabs li.active a:hover {
    border-bottom: 1px solid #fff;
    color: var(--themeColor1);
    background-color: #fff;
    padding: 4px 10px;
	}
	    
	#tabs li a.icon_accept {
    background-image: url(accept.png);
    background-position: 5px;
    background-repeat: no-repeat;
    padding-left: 24px;
	}
	#tabs li a.icon_accept:hover {
    padding-left: 24px;
	}
	#tabs div:empty {
    display: none;
	}

	.tab_leftSide {
    position: absolute;
    width: 390px;
    top: 84px;
    left: 0px;
	}

	.tab_rightSide {
    position: absolute;
    width: 390px;
    top: 84px;
    left: 410px;
	}
	    

    
	/* DROP FILES */
	#drop_file_zone {
		display: block;
		position: absolute;
		top: 130px;
		right: 70px;
		height: 240px;
		width: 20vw;
		min-width: 220px;
    background-color: #EEE; 
    border: #999 5px dashed;
    padding: 8px;
    font-size: 18px;
    z-index: 9;
	}
	#drag_upload_file {
		width:50%;
		margin: auto;
		margin-top: 40px;
		text-align: center;
	}
	#drag_upload_file p {
		text-align: center;
	}
	#drag_upload_file #selectfile {
		display: none;
	}



	/* Too Small */
	@media (max-width: 1050px) {		
		.tooSmall {
	    display: none;
		}			
		
	}
