/* Webparking scss utilities for a bootstrap based website */
/* Cross-browser border-radius */
/* Single side border-radius */
/* Single corner border-radius */
/* Cross-browser box-shadow with arguments
 *
 * Arguments:
 * <x-axis offset> || <y-axis offset> || <blur size> || <spread-length> || <color>
 *
 * Example:
 * @include box-shadow(2px 2px 5px 5px rgba(32,123,255,0.2));
 */
/* Cross-browser box-sizing
 *
 * Options: content-box, border-box, initial, inherit
 */
/* Cross-browser opacity
 *
 * Options: 0 - 1
 */
/* Cross-browser css columns
 *
 * Use only to transform 1 text output into multiple columns
 * Where possible use markup to make columns.
 *
 * Arguments:
 * <column-count> || <column-width> || <column-gap>;
 */
/* Prefilled text-shadow with arguments
 *
 * Arguments:
 * <x-axis offset> || <y-axis offset> || <blur size> || <color>
 *
 * Example:
 * @include text-shadow(2px, 2px, 5px, rgba(0,0,0,.4))
 */
/* Cross-browser transitions with arguments
 *
 * Arguments:
 * <property> || <duration> || <timing-function> || <delay> [, ...];
 *
 * Example:
 * transition: height 0.3s ease-out, opacity 0.3s ease 0.5s;
*/
/* Placeholders */
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,300,700");
.clearfix {
  *zoom: 1; }
  .clearfix:before, .clearfix:after {
    content: " ";
    display: table; }
  .clearfix:after {
    clear: both; }

.align-middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }

.align-center-both {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center; }

/* Dependencies:
 * mixins/breakpoints
 */
@media (max-width: 1199px) {
  .hide-md-max {
    display: none !important; }
  .show-md-max {
    display: block !important; }
  .show-md-max-i {
    display: inline !important; }
  .show-md-max-ib {
    display: inline-block !important; } }

@media (max-width: 991px) {
  .hide-sm-max {
    display: none !important; }
  .show-sm-max {
    display: block !important; }
  .show-sm-max-i {
    display: inline !important; }
  .show-sm-max-ib {
    display: inline-block !important; } }

@media (max-width: 767px) {
  .hide-xs-max {
    display: none !important; }
  .show-xs-max {
    display: block !important; }
  .show-xs-max-i {
    display: inline !important; }
  .show-xs-max-ib {
    display: inline-block !important; } }

@media (max-width: 480px) {
  .hide-xxs-max {
    display: none !important; }
  .show-xxs-max {
    display: block !important; }
  .show-xxs-max-i {
    display: inline !important; }
  .show-xxs-max-ib {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .hide-lg-min {
    display: none !important; }
  .show-lg-min {
    display: block !important; }
  .show-lg-min-i {
    display: inline !important; }
  .show-lg-min-ib {
    display: inline-block !important; } }

@media (min-width: 992px) {
  .hide-md-min {
    display: none !important; }
  .show-md-min {
    display: block !important; }
  .show-md-min-i {
    display: inline !important; }
  .show-md-min-ib {
    display: inline-block !important; } }

@media (min-width: 768px) {
  .hide-sm-min {
    display: none !important; }
  .show-sm-min {
    display: block !important; }
  .show-sm-min-i {
    display: inline !important; }
  .show-sm-min-ib {
    display: inline-block !important; } }

@media (min-width: 482px) {
  .hide-xs-min {
    display: none !important; }
  .show-xs-min {
    display: block !important; }
  .show-xs-min-i {
    display: inline !important; }
  .show-xs-min-ib {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hide-md-only {
    display: none !important; }
  .show-md-only {
    display: block !important; }
  .show-md-only-i {
    display: inline !important; }
  .show-md-only-ib {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hide-sm-only {
    display: none !important; }
  .show-sm-only {
    display: block !important; }
  .show-sm-only-i {
    display: inline !important; }
  .show-sm-only-ib {
    display: inline-block !important; } }

@media (min-width: 481px) and (max-width: 767px) {
  .hide-xs-only {
    display: none !important; }
  .show-xs-only {
    display: block !important; }
  .show-xs-only-i {
    display: inline !important; }
  .show-xs-only-ib {
    display: inline-block !important; } }

/* Helper classes
 *
 * Dependencies:
 * _placeholders.scss
 */
.capitalize {
  text-transform: capitalize; }

.lowercase {
  text-transform: lowercase; }

.uppercase {
  text-transform: uppercase; }

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

.align-left {
  text-align: left; }

.align-right {
  text-align: right; }

.align-top {
  vertical-align: top; }

.align-bottom {
  vertical-align: bottom; }

.float-left {
  float: left; }

.float-right {
  float: right; }

.block {
  display: block; }

.inline {
  display: inline; }

.inline-block {
  display: inline-block; }

.relative {
  position: relative; }

.static {
  position: static; }

.hyphenate {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto; }

/* Base (ordered by priority) */
/* Ordered by prominence */
body {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Roboto";
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1; }
  body h1, body h2, body h3, body h4, body h5, body h6,
  body a, body li, body span, body p,
  body input, body select, body button {
    letter-spacing: 0.02em;
    line-height: 1.5em; }

p {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5em; }

/* Single value based calculation */
.content-wrapper {
  background-color: #edeff6; }

/** Sticky footer **/
html, body {
  height: 100%; }

.content-wrapper {
  min-height: 100%;
  margin: 0 auto -48px;
  /* the bottom margin is the negative value of the footer's height */ }

.footer, .push {
  height: 48px;
  /* '.push' must be the same height as 'footer' */ }

/* Components (ordered alphabetically) */
.block-container {
  margin-bottom: 15px;
  padding: 15px;
  background-color: white; }

.footer {
  border-bottom: 1px solid #edeff6;
  background-color: #dfe1ed; }
  .footer .container {
    padding: 15px; }
  .footer p {
    margin-bottom: 0;
    font-size: 12px;
    font-size: 1.2rem; }

.header .navbar {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */ }

.header .navbar-default {
  background-color: white;
  border: 0;
  padding: 20px; }

.header .logo {
  margin-right: 15px; }
  .header .logo img {
    height: 50px;
    width: auto;
    padding: 5px; }

@media (max-width: 480px) {
  .header .logo {
    height: auto;
    width: calc(100% - 75px); } }

h1 {
  margin-top: 0; }

.link,
.link:visited,
.link:focus {
  -webkit-transition: ease all 0.2s;
  -moz-transition: ease all 0.2s;
  -ms-transition: ease all 0.2s;
  -o-transition: ease all 0.2s;
  transition: ease all 0.2s; }
  .link.link-primary, .link.link-primary:visited, .link.link-primary:focus,
  .link:visited.link-primary,
  .link:visited.link-primary:visited,
  .link:visited.link-primary:focus,
  .link:focus.link-primary,
  .link:focus.link-primary:visited,
  .link:focus.link-primary:focus {
    color: #337ab7; }
    .link.link-primary:active, .link.link-primary:hover, .link.link-primary:visited:active, .link.link-primary:visited:hover, .link.link-primary:focus:active, .link.link-primary:focus:hover,
    .link:visited.link-primary:active,
    .link:visited.link-primary:hover,
    .link:visited.link-primary:visited:active,
    .link:visited.link-primary:visited:hover,
    .link:visited.link-primary:focus:active,
    .link:visited.link-primary:focus:hover,
    .link:focus.link-primary:active,
    .link:focus.link-primary:hover,
    .link:focus.link-primary:visited:active,
    .link:focus.link-primary:visited:hover,
    .link:focus.link-primary:focus:active,
    .link:focus.link-primary:focus:hover {
      text-decoration: underline; }

/* Layout (ordered alphabetically) */
/* Pages  (ordered alphabetically) */
table {
  width: 100%;
  margin-bottom: 40px !important; }

.add {
  font-size: 14px; }

.export {
  font-size: 14px;
  margin-right: 5px; }

input[type=checkbox] {
  top: -7px; }

.form-control[type="radio"] {
  height: auto; }
