@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(/stylesheets/icons.woff2) format('woff2'),
    url(/stylesheets/icons.woff) format('woff'),
    url(/stylesheets/icons.ttf) format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
}

body {
  padding: 10px 50px;
  font: 16px "Lucida Grande", Helvetica, Arial, sans-serif;
}

a {
  color: #00B7FF;
}

a i {
  color: black;
  text-decoration: none;
}

.remove i {
  color: #be1616
}

i.spin {
  animation: rotator 2s infinite linear;
}

ul {
  list-style-type: none;
  padding: 0;
}

li.skkey {
  width: 300px;
  display: flex;
  flex-flow: row nowrap;
  border: 1px solid #b4b4b4;
  border-radius: 3px;
  padding: 15px;
  /* transition: box-shadow 0.3s linear; */
}

li.skkey:not(:last-child) {
  margin-bottom: 10px;
}

li.skkey:hover {
  box-shadow: inset 0px 0px 5px 1px rgba(0,0,0,0.75);
}

li.skkey .sktext {
  display: flex;
  flex-flow: column nowrap;
  flex: 1 0 auto;
}

li.skkey .name {
  font-weight: bolder;
}

li.skkey .used {
  color: rgb(77, 77, 77);
}

li.skkey .remove {
  display: flex;
  align-items: center;  
}

a {
  cursor: pointer;
}

.remove a {
  display: flex;
  align-items: center;
}
.remove a i {
  font-size: 28px;
}

footer {
  margin-top: 100px;
  font-size: 80%;
}

@keyframes rotator{
  from{  transform: rotate(0deg);   }
  to  {  transform: rotate(-360deg); }
}

.hidden {
  display: none;
}

.error {
  margin: 10px;
  padding: 10px;
  background-color: #ff8585;
  color: #000000;
}

a.manage {
  margin-top: 75px;
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.centerer {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-self: center;
}

form {
  display: flex;
  flex-flow: column nowrap;
  justify-items: stretch;
}

form input {
  display: block;
  margin-top: 7px;
  padding: 3px 15px;
  line-height: 28px;
  width: 300px;
  flex: 1 0 auto;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid gray;
  text-align: center;
}

.error.login {
  text-align: center;
  min-width: 80vw;
}

.error:empty {
  display: none;
}

input[type=submit] {
  background-color: #b8b8b8;
}

input[type=submit]:hover {
  box-shadow: inset 0px 0px 5px 1px rgba(0,0,0,0.5);
}

.browser-prompt-space {
  width: 1px;
  height: 20vh;
}

h3 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.txt-center {
  text-align: center;
}
