/*
  (c) 2007-2013 by Kenneth Francken (kenneth@francken.org).
  All rights reserved.
*/

@import "/ktools/styles/materialize-style.css";

/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 * Body
 * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 */

body {
  margin: 10px;
  padding: 0;
  /* background: #000000 url(images/img12.jpg) repeat top left; */
  background: #000000; 
  text-align: justify;
  font: 13px "Trebuchet MS", Arial, Helvetica, sans-serif;
  color: #AFEEEE;
}

h1, h1 a, h2, h2 a, h3, h3 a {
  margin: 0;
  text-decoration: none;
  font-weight: normal;
  color: #00CED1;
}

h1 {
  letter-spacing: -1px;
  font-size: 2.6em;
}

h2 {
  letter-spacing: -1px;
  font-size: 2em;
}

h3 {
  margin-bottom: 0.5em;
  font-size: 1em;
  font-weight: bold;
}

p, ol, ul {
  margin: 0 0 0.5em 0;
  line-height: 200%;
}

blockquote {
  margin: 0 0 0 1.5em;
  padding-left: 1em;
  border-left: 5px solid #DDDDDD;
}

a {
  color: #AFEEEE;
  font-weight: bold;
}

a:hover {
  text-decoration: none;
  color: #FFFFFF;
}

img {
  border: none;
}

img.left {
  float: left;
  margin: 8px 20px 0px 0px;
  border: 2px solid #434343;
}

#disclaimer {
  font-size: 0.9em;
}

#terms {
  font-size: 0.9em;
}

#terms h3 {
  font-size: 1.0em;
  margin-top: 0.8em;
}

#terms li {
  list-style-type: square;
}

#footer {
  clear: both;
  /* width: 950px; */
  width: 100%;
  margin: 0 auto;
  padding: 5px 0;
  margin-top: 15px;
  text-align: center;
  /* background: url(images/img11.gif) no-repeat; */
}

#footer p {
  margin: 0 0 10px 0;
  text-align: center;
  line-height: normal;
  font-size: .9em;
}

#footer a {
  text-decoration: none;
}

.chip {
  background: #778899; 
}

/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 * Forms
 * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 */
form {
  margin: 0;
  padding: 0;
}

fieldset {
  padding: 1px;
}

input, textarea {
  color: #00CED1;
  background-color: #00CED1;
  /* width: 95%; */
  resize: none;
  padding: 5px;
  border: 1px solid #626262;
  font: normal 1em "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.btn {
  /* display: inline-block; */
  display: flex;
  align-items: center;
  height: 25px;
  width: fit-content;
  vertical-align:middle;
}

/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 * Login
 * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 */
/* Full-width input fields */
input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  color: #FFFFFF;
  background-color: #333333;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.loginbutton {
  font-weight:bold;
  background-color: #32AAA0;
  color: #FFFFFF;
  padding: 5px 15px;
  margin: 3px 0 8px;
  border: none;
  cursor: pointer;
  width: 100%;
}
.loginbutton:hover {
  opacity: 0.8;
}
/* Extra styles for the cancel button */
.logincancelbtn {
  width: auto;
  float: left;
  clear: left;
  padding: 5px 12px;
  background-color: #f44336;
}
.logincancelbtn:hover {
  opacity: 0.8;
}
/* Center the image and position the close button */
.imgcontainer {
  text-align: center;
  margin: 12px 0 5px 0;
  position: relative;
}
img.avatar {
  width: 40%;
  border-radius: 50%;
}
.container {
  padding: 8px;
}
span.psw {
  float: right;
  padding-top: 8px;
}
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 11; /* Sit on top */
  left: 0;
  top: 0;
  width: 50%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 10px;
}
/* Modal Content/Box */
.modal-content {
  background-color: #000000;
  margin: 5% auto 5% auto; /* 5% from the top, 5% from the bottom and centered */
  border: 5px solid #32AAA0;
  width: 70%; /* Could be more or less, depending on screen size */
}
/* The Close Button (x) */
.loginclose {
  position: absolute;
  right: 25px;
  top: 0;
  color: #32AAA0;
  font-size: 35px;
  font-weight: bold;
}

.loginclose:hover,
.close:focus {
  color: red;
  cursor: pointer;
}
/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)}
  to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}
/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
     display: block;
     float: none;
  }
  .logincancelbtn {
     width: 100%;
  }
}

