/* ==========================================================================
   Global styles
   ========================================================================== */

/*
 *	-- Globals
*/

html {
  height: 100%;
  width: 100%;
}

body {
  width: 100%;
  background-color: #ffffff;
}

body.minimal-body {
  height: 100%;
}

.container {
  margin: 115px 20px 20px 20px;
}

.center-block {
  display: table;
  margin: 0 auto;
}

.btn,
.btn:focus {
  outline: none !important;
  outline-offset: 0 !important;
}

.panel {
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
}

h1 {
  font-size: 2em;
  margin: 10px 0 15px;
  font-weight: normal;
  color: #064b83;
}

h2 {
  font-size: 1.6em;
  margin: 10px 0 15px;
  font-weight: normal;
  color: #01a9e8;
}

h3 {
  font-size: 1.2em;
  font-weight: normal;
  color: #01a9e8;
}

h4 {
  font-size: 1em;
  font-weight: normal;
  color: #01a9e8;
}

h5 {
  font-size: 1em;
  font-weight: normal;
}

h6 {
  font-size: 1em;
  font-weight: bold;
}

h7 {
  font-size: 1.2em;
  font-weight: bold;
}

.tight-fit {
  margin: 0px 0px 5px 0px;
  padding: 0px;
  word-wrap: break-word;
  white-space: normal;
  text-align: left;
}

.smaller-font {
  font-size: 0.8em;
}

.panel-default {
  border-color: #2f3c43;
}

.panel-desc {
  margin-bottom: 15px;
  padding: 5px;
  font-size: 20px;
}

.copy-link {
  font-size: 11px;
}
.copy-link:hover {
  text-decoration: underline;
}

/*
 *	-- Buttons
*/

.container .btn-primary.active,
.container .open > .dropdown-toggle.btn-primary {
  background: none repeat scroll 0 0 #777;
  border-color: #5d5c5c;
}

.container .dropdown-menu {
  background: none repeat scroll 0 0 #adadad;
  margin-top: -2px;
  padding: 0px;
  z-index: 9999;
}
.container .dropdown-menu > li > a {
  padding: 0px 20px;
}
.container .dropdown-menu .divider {
  background-color: #111111;
  border-bottom: 1px solid #c6c6c6;
  margin: 0px 1px;
  padding-bottom: 1px;
}

.container .dropdown-menu > li > a {
  font-weight: normal;
  line-height: 20px;
  padding: 5px 20px;
}
.container .dropdown-menu > li > a:focus,
.container .dropdown-menu > li > a:hover {
  color: #ffffff;
  background: none repeat scroll 0 0 #2f3c43;
}
.container .dropdown-menu > li.active > a {
  color: #ffffff;
  background: none repeat scroll 0 0 #5a595a;
}

/*
 *	-- General Styles (Mobile)
*/

@media (max-width: 400px) {
  .container .dropdown-menu {
    max-width: 300px;
  }
}

/*
 *	-- Glyphicon Icon Spinning - AJAX busy indicator
*/

.spinner {
  display: inline-block;
  opacity: 0;
  max-width: 0;

  -webkit-transition: opacity 0.25s, max-width 0.45s;
  -moz-transition: opacity 0.25s, max-width 0.45s;
  -o-transition: opacity 0.25s, max-width 0.45s;
  transition: opacity 0.25s, max-width 0.45s; /* Duration fixed since we animate additional hidden width */
}

.has-spinner.active .spinner {
  opacity: 1;
  max-width: 50px; /* More than it will ever come, notice that this affects on animation duration */
}

.glyphicon-icon-spin {
  -webkit-animation: icon-spin 2s infinite linear;
  -moz-animation: icon-spin 2s infinite linear;
  -o-animation: icon-spin 2s infinite linear;
  animation: icon-spin 2s infinite linear;
}
@-moz-keyframes icon-spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes icon-spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes icon-spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes icon-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

/*
 *	-- Minial Windows - Login / Logout / Registration / Modal Popups
*/

.minimal-body-gradient-example {
  background: -moz-linear-gradient(top, #506576 0%, #6f808e 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #506576), color-stop(100%, #6f808e)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #506576 0%, #6f808e 100%); /* Chrome10+,Safari5.1+ */

  background: -o-linear-gradient(top, #506576 0%, #6f808e 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #506576 0%, #6f808e 100%); /* IE10+ */
  background: linear-gradient(to bottom, #506576 0%, #6f808e 100%); /* W3C */
}

.minimal-body {
  background: none repeat scroll 0 0 #f6f6f7;
}

.minimal-body .minimal-frame {
  width: 100%;
  display: table;
}

.minimal-body .vertical-wrapper {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}

.minimal-header {
  position: relative;
  width: 350px;
  height: 215px;

  margin-top: 25px;
  margin-bottom: 50px;
  background-image: url("../images/sps-spartanlync-logo-(vertical-500x326).png");
  background-repeat: no-repeat;
  background-size: contain;

  color: #000000;
  font-size: 29px;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2em;
  white-space: normal;
}

.minimal-panel.panel-default {
  background: none;
  border: none;
  box-shadow: none;
}

/*
 *	-- General Styles (Mobile)
*/

@media (max-width: 400px) {
  .minimal-header {
    max-width: 250px;
    height: 155px;
    margin-bottom: 25px;
  }

  .minimal-panel.panel-default {
    max-width: 250px;
  }
}

/*
	  border: 1px solid #FF0000; // RED;
		border: 1px solid #0ae5f3; // AQUA;
		border: 1px solid #FFF000; // YELLOW;
		border: 1px solid #00F000; // GREEN;
		border: 1px solid #cd88df; // PURPLE;
*/
