@charset "UTF-8";
@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Raleway:200,700|Source+Sans+Pro:300,600,300italic,600italic");


*{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;

	padding: 0;
	margin: 0;
}



body 
{ 
	
	background-color: #6464DC;
		/*background-image: linear-gradient(to top, rgba(46, 49, 65, 0.8), rgba(46, 49, 65, 0.8)), url("../../images/bg.jpg");*/
	background: linear-gradient(#6464DC, #9198e5);
	background-size: auto,cover;
	background-attachment: fixed,fixed;
	background-position: center,center;
    
} 

/* Special fonts */

.producthdr 
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #2271A0;
	font-weight: bold;
}


/* Separators */

.separator
{
	padding:10px 10px 10px 10px;	
	
	
}

/* End separators */


/* frames */

.utilityFrame
{
	background-color: lightgrey;
	width: 50%;
  	border: 1px solid green;
  	padding: 10px;
  	margin: 10px;
  	
}


.simpleFrame
{
	width: auto;	
	border: 1px solid green;
	padding: 10px 10px 10px 10px;
  	margin: 10px;
	
	
}


/* End of Frames */

/* buttons */

.btn-primary-outline {
  background-color: transparent;
  border: 0px solid rgba(0,0,0,0);
  color: white;
}

/* End in buttons */



/* footers */

.customFooter 
{
  
  right: 0;bottom:0;left:0;
  padding: 20px;
  text-align: center;
  font-size:0.6em;
}

/* End of footers */



/* Forms */



.utilityForm 
{
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.utilityForm input[type=text], select,textarea 
{
  
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.form-main
{
	width: 500px;
	max-width: 100%;
	margin: auto;
	margin-top: 30px;
	padding: 20px;
	box-shadow: 0 0 20px 1px rgba(193, 66, 66, 0.1);
	position: relative;
	background: rgba(41, 238, 238, 0.2);
	border: 1 px solid;	
}
.form-main input[type=text], select,textarea
{
	outline: 1px solid rgba(0,0,0,0.7);
	
}


/* End of Forms */


/* Simple Menu */

.topnav {
  overflow: hidden;
  background-color: #73C2FB;
}

.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 10px 12px;
  text-decoration: none;
  font-size: 15px;
}

.topnav a:hover {
  background-color: #B0E0E6;
  color: black;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.topnav td {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 10px 12px;
  text-decoration: none;
  font-size: 15px;
}

.topnav td:hover {
  background-color: #B0E0E6;
  color: black;
}

.topnav td.active {
  background-color: #04AA6D;
  color: white;
}


/* End Simple Menu */

/* code to fix headers */

.header-fixed
{
	position: fixed;
	z-index: 1000;
	top: 0;
	box-shadow: 0px 4px 3px rgba(0,0,0,0.5);
	background: #3498db;
}


/* Ordered lists */

ul.a 
{
  list-style-type: circle;
}

ul.b 
{
  list-style-type: square;
}

ol.c 
{
  list-style-type: upper-numbers;
}

ol.d 
{
  list-style-type: lower-alpha;
}

/* End Ordered lists */


/* tables */


.customTable {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 30%;
}

.customTable td, #customTable th {
  border: 1px solid #ddd;
  padding: 5px;
}

.customTable tr:nth-child(even){background-color: #f2f2f2;}

.customTable tr:hover {background-color: #ddd;}

.customTable th {
  padding: 5px;
  text-align: left;
  background-color: #04AA6D;
  color: white;
}


/* title table */

.titleTable {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 15%;
}

.titleTable td, #titleTable th {
  border: 1px solid #ddd;
  padding: 5px;
}

.titleTable tr:nth-child(even){background-color: #f2f2f2;}

.titleTable tr:hover {background-color: #ddd;}

.titleTable th {
  padding: 2px;
  text-align: left;
  background-color: #04AA6D;
  color: white;
}


/*  end tables */


/* DropDown menu */

.dropdown 
{
  position: relative;
  display: inline-block;
}

.dropdown-content 
{
  display: none;
  color: teal;
  position: absolute;
  background-color: rgb(95,158,160);
  min-width: 60px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a 
{
  color: teal;
  padding: inherit;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color:inherit;}

.dropdown:hover .dropdown-content {display:block;position:fixed;}

.dropdown:hover .dropbtn {background-color:inherit;}



/*IT backups section */


.gradient-custom-2 
{
	/* fallback for old browsers */
	background: #fccb90;

	/* Chrome 10-25, Safari 5.1-6 */
	background: -webkit-linear-gradient(to right, #ee7724, #d8363a, #dd3675, #b44593);

	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	background: linear-gradient(to right, #ee7724, #d8363a, #dd3675, #b44593);
}

@media (min-width: 768px) 
{
	.gradient-form 
	{
		height: 100vh !important;
	}
}

@media (min-width: 769px) 
{
	.gradient-custom-2 
	{
		border-top-right-radius: .3rem;
		border-bottom-right-radius: .3rem;
	}
}


/*New login page section */


 .background-radial-gradient {
      
      background-color: #6464DC;
      /*background: linear-gradient(#e66465, #9198e5); */
      background: linear-gradient(#6464DC, #9198e5);
      
      /*
      background-color: hsl(218, 41%, 15%);
      
      
      
      
      background-image: radial-gradient(650px circle at 0% 0%,
          hsl(218, 41%, 35%) 15%,
          hsl(218, 41%, 30%) 35%,
          hsl(218, 41%, 20%) 75%,
          hsl(218, 41%, 19%) 80%,
          transparent 100%),
        radial-gradient(1250px circle at 100% 100%,
          hsl(218, 41%, 45%) 15%,
          hsl(218, 41%, 30%) 35%,
          hsl(218, 41%, 20%) 75%,
          hsl(218, 41%, 19%) 80%,
          transparent 100%);
          
         */ 
    }

    #radius-shape-1 {
      height: 220px;
      width: 220px;
      top: -60px;
      left: -130px;
      background: radial-gradient(#44006b, #ad1fff);
      overflow: hidden;
    }

    #radius-shape-2 {
      border-radius: 38% 62% 63% 37% / 70% 33% 67% 30%;
      bottom: -60px;
      right: -110px;
      width: 300px;
      height: 300px;
      background: radial-gradient(#44006b, #ad1fff);
      overflow: hidden;
    }

    .bg-glass {
      background-color: hsla(0, 0%, 100%, 0.9) !important;
      backdrop-filter: saturate(200%) blur(25px);
    }
    
    /* labels */
    
    .mainLabel
    {
    	color:#880000;
    	background-image:linear-gradient(to right,ivory,gray);
    	padding:10px;
    	margin:5px;
    	width:50%;
    	font-weight:bold;
    }
    
    
    
    
    
    /* Section for adding fields to a form */
    
 .main 
 {
  	padding-top: 80px;
  	display: flex;
  	align-items: center;
  	justify-content: center;
}

.input-plus 
{
  	display: flex;
}

.inputs-set 
{
  	border: none;
}

.asset-input__w 
{
  	display: flex;
  	align-items: center;
  	margin-bottom: 4px;
}

.input-field 
{
  	border: none;
  	border: 1px solid rgb(209, 209, 209);
  	padding: 8px;
  	margin-right: 4px;
  	display: block;
}


.select-field 
{
  	border: none;
  	border: 1px solid rgb(209, 209, 209);
  	padding: 8px;
  	margin-right: 4px;
  	display: block;
}

.btn-submit,
.btn-add-input,
.btn-del-input 
{
  	border: none;
  	padding: 8px 12px;
}

.btn-submit 
{
  	background-color: rgb(152, 247, 199);
}

.btn-add-input 
{
  	background-color: rgb(127, 187, 255);
  	margin-right: 4px;
}

.btn-del-input 
{
  	background-color: rgb(255, 127, 148);
}
    
 
/* table items */

.items 
{
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

.items td, #customers th 
{
  border: 1px solid #ddd;
  padding: 8px;
}

.items tr:nth-child(even)
{
	background-color: #f2f2f2;
}

.items tr:hover 
{
	background-color: #ddd;
}

.items th 
{
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  /*background-color: #04AA6D;*/
  background-color: #0096FF;
  color: white;
  text-align:center;
}    

