﻿/*
    FoosFit Progressive Web App
	Developed by Aptus Engineering, Inc. for WeFoos LLC
	Author(s): Narendran Muraleedharan <narendran.m@aptus.aero>
			   Rakshith Subramanyam <rakshith.s@aptus.aero>
			   James Guerra <james.g@aptus.aero>

	__DISCLAIMER__
	THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES,
	INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
	AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
	REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
	SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
	PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
	OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
	WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
	OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
	ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

/*---------------------------------------------------------------------------------*/
/* Begin of Dynamic MetaData Data */
/*---------------------------------------------------------------------------------*/

/*Display MetaData Button and the Associated Popup Dynamic Div*/

/*getting the background color and everyting to work with the widget was tricky*/
/*just because i had to put the popup inside the widget class here, and it is just*/
/*sensitive to settings. specifically the height must be equal on the two divs below*/
	#database-metadata-popup-widget-id {
		position:fixed;
		display:block;
		overflow: auto;
		top:20%;
		min-height:250px;
		min-width:200px;
		margin-left:8%;
		z-index:11;	
		border-color:white;
		border-width:1px;
		border-style: solid;
		background-color: rgba(230, 204, 179, 1);			
	}


	.database-metadata-popup-div-class {
		position:relative;
		display:block;
		overflow: auto;
		margin:0px;
		padding:0px;
		min-height:250px;
		min-width:100%;
		z-index:11;
		background-color: rgba(230, 204, 179, 1);			

	}
	
	
	.database-metadata-header-div-class {
		text-align:center;
		font-size: 10px;
		color:white;
		height:13px;
		background-color: rgba(107, 170, 199, 1);
	}


	/* Position the close button (top right corner) */
	#database-metadata-popup-widget-id .closemetadatabtn {
		position: absolute;
		color:white;
		margin:0px;
		padding:0px;
		top:-6px;
		right: 3px;
		z-index: 15; /* Sit on top */
		font-size: 20px;
		text-decoration:none;
	}


/*Start of the actual Tag Name dynamic mgmt, and also possibly a few buttons like Update*/
/*Select all check box, etc...*/

	.database-metatag-fulllist-div-class {	
		position:relative;
		display:block;
		height:350px;  /*245*/
		margin-bottom:5px;
		width: 100%;
		margin:0px;
		padding:0px;
		margin-top:2px;
	}

	.database-metatag-selectall-label-class {
		width:60px;	
		font-size:10px;
	
	}
	
	.database-metatag-selectall-checkbox-class {
		width:15px;	
		font-size:8px;
	}

	.database-metatag-update-button-class {
		font-size:10px;
		margin-left:30%;
	
	}

/* The part which is built when the AJAX returns the TagNames*/

	.database-metatag-fulllist-ul-class {
		margin:0px;
		padding:0px;
		margin-left:5px;
		list-style: none;
		font-size:8px;
		text-decoration:none;
	}

	.database-metatag-fulllist-ul-class li{
		margin:0px;
		padding:0px;
		margin-top:3px;
		margin-bottom:3px;
	}

	.database-metatag-fulllist-ul-class div {
		display:block;
		width:190px;
		margin:0px;
		padding-top:5px;
		padding-bottom:5px;
		padding:0px;
		height:35px;
		border-width:1px;
		border-color:white;
		border-style: solid;
	}
	
	.database-metatag-fulllist-ul-class label {
		display:inline-block;
		width:160px;
		margin:0px;
		padding:0px;
		margin-right:1%;
		font-size:10px;
	}
	
	.database-metatag-fulllist-ul-class input {
		margin:0px;
		padding:0px;
		size:20;
		font-size:9px;
	}

	.database-metatag-fulllist-ul-class span {
		font-size:9px;
	}

	.database-metatag-fulllist-ul-class select {
		font-size:9px;
		width:110px;
		
	}

	.database-metatag-fulllist-ul-class option {
		font-size:9px;
		
	}

/******************************************************************************/
/********** REPSONSIVE SECTION BELOW ******************************************/
/******************************************************************************/
	
@media screen and (min-width: 200px) {


}


@media screen and (min-width: 320px) {

	
}


@media screen and (min-width: 405px) {



}


@media screen and (min-width: 520px) {



}


@media screen and (min-width: 560px) {

	

}

