

* {
  /*font-family: "Comic Sans MS", "Comic Sans", cursive;*/
  font-family: montserrat;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  font-family: montserrat;
}

/* custom classes */

@font-face {
  font-family: 'Comic Sans MS';
  src: url(comic.ttf);
}

@font-face {
  font-family: sign-painter;
  src: url(SignPainter.ttf);
}

@font-face {
  font-family: 'Trebuchet MS';
  src: url(Trebuchet.ttf);
}

.tenet-list h5 {
  margin: 10px;
}
.tenet-list img {
  width: 80px;
  margin-bottom: 8px;
}

.tenet-list > * > ul {
  font-size: x-small;
}

.commands {
  font-size: x-small;
}

.proper-noun {
  font-weight: bold;
}

.cursive-text {
  font-family: sign-painter;
  font-size: x-large;
}

.col-centered{
  float: none;
  margin: 0 auto;
}

/* class overrides */

.navbar-inner {
  vertical-align: middle;
  padding-left: 10px;
  padding-right: 30px;
}

.container {
  width: 100%;
}

.row {
  margin-left: 0px;
  margin-right: 0px;
}

.list-group-item {
  border: none;
}

li.list-group-item .active > a {
  color: white;
}

.content-section {
  padding: 20px;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* elements by id */

#logo {
  float: left !important;
  height: 40px;
  width: 92px;
  background-image: url('../img/logo.png?v=0');
  background-color: transparent;
  background-size: 100%;
  border: none;
  margin-top: 2px;
  margin-left: 15px;
  outline: 0;
}

/* elements by type */

body {
  overflow-x: hidden;
}

/*
th, td {
  font-size: small;
}
*/

button {
  border-radius: 5px;
}

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

section ul li:before {
  content: '';
  display: inline-block;
  height: 12px;
  width: 12px;
  background-size: 12px;
  background-image: url('../img/list-icon-logo-blue.png');
  background-repeat: no-repeat;
  margin-right: 5px;
}

.no-bullet-list > li:before {
  background-image: none;
}

hr {
  border-top:1px solid gray;
  width: 90%;
}

/*** Works on common browsers ***/
::selection {
    background-color: rgb(76,139,237);
    color: #fff;
}

/*** Mozilla based browsers ***/
::-moz-selection {
    background-color: rgb(76,139,237);
    color: #fff;
}

/***For Other Browsers ***/
::-o-selection {
    background-color: rgb(76,139,237);
    color: #fff;
}

::-ms-selection {
    background-color: rgb(76,139,237);
    color: #fff;
}

/*** For Webkit ***/
::-webkit-selection {
    background-color: rgb(76,139,237);
    color: #fff;
}



/* large screens */

@media (min-width: 800px) {
    .content-section {
      padding-left: 80px;
      padding-right: 80px;
    }

    .commands {
      font-size:large;
    }

    #logo {
      margin-left: 60px;
    }
}

.logo-list img {
  width: 35px;
  height: auto;
  margin: 3%;
  /*margin-left: auto;
  margin-right: auto;*/
  border-radius: 3px;
}

button {
  color:white;
  background-color: rgb(76,139,237);
}

input[type=checkbox]:checked {
  color: rgb(76,139,237);
}

@-webkit-keyframes fadeIn { from { opacity:-1; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:-1; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:-1; } to { opacity:1; } }
.fade-in {
    opacity:0;
    -webkit-animation:1s fadeIn 0s 1;
    -moz-animation:1s fadeIn 0s 1;
    animation:1s fadeIn 0s 1;

    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}
