
@charset "UTF-8";
/* CSS Document */
   
@import url('https://fonts.googleapis.com/css2?family=Comfortaa&family=Montserrat&display=swap');
    
/* reset styles */
html, body, h1, h2, h3, h4, h5, h6, p, ol, ul, li, pre, code, address, variable, form, fieldset, blockquote {
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    font-family: 'Montserrat', sans-serif;
}
table { border-collapse: collapse; border-spacing: 0; }
td, th, caption { font-weight: normal; text-align: left; }
img, fieldset { border: 0; }
ol { padding-left: 0; list-style: none; }
ul { padding-left: 0; list-style: none; }
q:before, q:after { content:''; }
/* end of reset styles */
    
/* General Styles */
a {
	text-decoration: none;
	color: #000;
}
a:hover {
	text-decoration: none;
}

p {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.1em;
	font-weight: 100;
    line-height: 1.5em;
}

h1 {
	font-family: 'Comfortaa', serif;
	font-size: 2em;
	font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.5em;
}
    
h2 {
	font-family: 'Comfortaa', serif;
	font-size: 1.5em;
	font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.5em;
}
    
h3, .divTitle {
	font-family: 'Comfortaa', serif;
	font-size: 1.4em;
	font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.5em;
}
    
h4, h5, h6, .titleText {
    font-size: 1.2em;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 10px 10px;
    line-height: 1.5em;
}
    
body {
	width: 100%;
	font-size: 1em;
	font-weight: 100;
}
    
main {
    min-height: 70vh;
}

main, section, aside {
    padding: 20px 20px;
}

.buttonStyleClear {
    display: block;
    background-color: transparent;
    border: 2px solid #0099ff;
    color: #0099ff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
	margin: 5px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2em;
    text-align: center;
}

.buttonStyleClear:hover {
  background-color: #0099ff;
  color: #FFF;
  cursor: pointer;
}

.buttonStyle {
    display: inline-block;
    background-color: #0099ff;
    border: none;
    color: white;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
	margin: 5px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2em;
}

.buttonStyle:hover {
  background-color: #0077cc;
  cursor: pointer;
    color: #E4E4E4;
}
    
button, input[type="submit"] {
    background-color: #0099FF;
    color: #fff;
    font-weight: 700;
    padding: 12px 24px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin: 5px auto;
    font-size: 1.2em;
}

button:hover, input[type="submit"]:hover {
    background-color: #0077CC;
    color: #E4E4E4;
}
    
#buttonStyleHighlight {
    background-color: #FF9900;
    color: #fff;
    font-weight: 700;
    padding: 12px 24px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin: 5px auto;
}
#buttonStyleHighlight:hover {
    background-color: #0099ff;
    color: #E4E4E4;
}
    
.buttonStyle-Login {
    width: 80%;
    max-width: 600px;
    font-size: 1.2em;
    font-weight: 400;
    text-align: center;
	padding: 10px 10px;
	margin: 5px;
    margin-left: auto;
    margin-right: auto;
  	border-radius: 3px;
  	border: 1px solid #999;
	color: #FFF;
	background-color: #0099FF;
    box-shadow: 3px 3px 5px;
}

.buttonStyle-Login:hover {
	color: #000;
	background-color: #fff;
    box-shadow: 1px 1px 2px;
}

.buttonStyle-Login a {
	text-decoration: none;
}
/* end of General styles */
    
/* Header Styles */
header {
    width: 100%;
    height: 50px;
    border-bottom: 1px solid #000;
}
    
header ol {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-top: 20px;
}
    
header li {
    flex: 0 0 auto;
    padding: 15px;
    font-weight: 500;
    font-size: 1.2em;
    cursor: pointer;
}
    
header li:hover {
    font-weight: bolder;
    color: #999999;
    
}
/* End of Header Styles */

/* General Table Style */
.tableClass {
    border-collapse: collapse;
    margin: 5px auto;
    font-size: 1em;
    min-width: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
    
.tableClass thead tr {
    background-color: #0099FF;
    color: #E4E4E4;
    text-align: left;
    font-size: 1.1em;
    font-family: 'Comfortaa', serif;
}

.tableClass thead tr .tableHead {
    background-color: #0099FF;
    color: #E4E4E4;
    text-align: center;
}
    
.tableClass th,
.tableClass td {
    padding: 12px 15px;
}
    
.tableClass tbody tr {
    border-bottom: 1px solid #E4E4E4;
}

.tableClass tbody tr:nth-of-type(even) {
    background-color: #E4E4E4;
}

.tableClass tbody tr:last-of-type {
    border-bottom: 2px solid #0099FF;
}
/* End of Table */
    
/* General Form Styles */
select {
    height: 50px;
    max-width: 80%;
    margin: 10px 25px;
    padding: 10px 15px;
    border: .5px #999 solid;
    font-size: 1.1em;
    font-weight: 400;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
    
textarea {
    width: 80%;
	height: 250px;
    transition: ease-in-out, width .35s ease-in-out;
    padding: 10px 10px;
    margin: 8px 1%;
    border: .5px #999 solid;
    font-size: 1.1em;
    font-weight: 400;
}

textarea:focus {
    background-color: #E4E4E4;
}
    
input[type=email], input[type=text], input[type=tel], input[type=password] {
    width: 80%;
    height: 30px;
    padding: 10px 10px;
    margin: 8px 1%;
    border: .5px #999 solid;
    font-size: 1.1em;
    font-weight: 400;
}
  
input[type=email]:hover, input[type=text]:hover, input[type=tel]:hover, input[type=password]:hover {
    background-color: #E4E4E4;
}
    
input[type=email]:focus, input[type=text]:focus, input[type=tel]:focus, input[type=password]:focus {
    background-color: #E4E4E4;
}
/* End of Form */


    
@media screen and (max-width: 600px) { 

}

@media screen and (max-width: 414px) { 

}