﻿html {
  height: 100%;
}

body {
  height: 100% !important;
}

a {
  text-decoration: none !important;
}

li.float-right {
  float: right;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media all {
  .page-break {
    display: none;
  }
}


/* Back to top */

.totop {
  opacity: .8;
  padding: .2em .6em;
  border-radius: 15px 15px 0 0;
  position: fixed;
  bottom: 0.1em;
  right: 2em;
  z-index: 104400;
  background: #fa3031;
  display: none;
}

  .totop a, .totop a:visited {
    display: block;
    width: 40px;
    height: 40px;
    color: #fff;
    text-align: center;
    line-height: 30px;
  }

    .totop a:hover {
      color: #eee;
      text-decoration: none;
    }
