﻿/*--------------------------------------------------------
 * NOTE: We use LESS syntax in this project for our CSS.
 * "LESS extends CSS with: variables, mixins, operations,
 * and nested rules."
 * -http://lesscss.org/
 *--------------------------------------------------------*/
/* MIXINS   
----------------------------------------------------------*/
/*--------------------------------------------------------
 * NOTE: We use LESS syntax in this project for our CSS.
 * "LESS extends CSS with: variables, mixins, operations,
 * and nested rules."
 * -http://lesscss.org/
 *--------------------------------------------------------*/
/* COLORS   
----------------------------------------------------------*/
/* WIDTHS   
----------------------------------------------------------*/
/* LINKS
----------------------------------------------------------*/
a {
  color: #004ccc;
  text-decoration: none;
}
a:hover {
  color: #0242ad;
  text-decoration: none;
}
a:active {
  color: #333;
}
.btn i.far,
.btn i.fas {
  margin-left: 4px;
}
/* LAYOUT
----------------------------------------------------------*/
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  background: #fff;
}
div#layout {
  min-height: 100%;
  position: relative;
  /* needed for footer positioning */
}
/* BODY
----------------------------------------------------------*/
#main-content {
  position: relative;
  padding-bottom: 160px;
}
#main-content #main-container {
  min-height: 260px;
  position: relative;
}
#main-content #main-container .body-content {
  padding-left: 55px;
  padding-right: 55px;
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 300px;
}
/* PAGE & POPUP TITLES
----------------------------------------------------------*/
.page-title h3 {
  color: #717171;
  padding-bottom: 5px;
  margin-top: 0px;
}
.page-title h3 img {
  margin-top: -2px;
  height: 34px;
}
.page-title h3 .tips-open {
  display: none;
  cursor: help;
}
.page-title h3 .tips-open span {
  top: 3px;
}
.page-title .subtitle-link-container {
  margin-top: -15px;
  text-align: right;
}
.page-title-divider {
  border-bottom: 1px dotted #b2b1b1;
  margin-bottom: 20px;
  margin-top: 0px;
}
.modal-header h3 {
  margin: 0 32px 0 0;
  color: #717171;
}
/* HELP
----------------------------------------------------------*/
#help-links {
  display: inline-block;
}
#help-popup img {
  width: 100%;
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}
#help-popup p {
  font-size: 18px;
}
.tips-box {
  display: none;
  margin-bottom: 20px;
}
.tips-box img {
  width: auto !important;
}
#dashboard button.close {
  margin-right: 20px;
}
/* FOOTER
----------------------------------------------------------*/
#footer {
  position: absolute;
  bottom: 0;
  height: 160px;
  background-color: #2d302f;
  color: #fff;
  padding: 50px;
  z-index: 2;
  width: 100%;
  line-height: 200%;
  text-align: center;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
#footer #social-links {
  white-space: nowrap;
}
#footer #social-links .fb-like {
  top: -8px;
  margin-right: 30px;
  display: inline-block;
}
#footer .links {
  margin-top: 10px;
  font-size: 24px;
  white-space: nowrap;
  color: #b2b1b1;
}
#footer .links a {
  font-size: 16px;
  padding: 0 10px;
  color: #7a8581;
  transition-delay: 0s;
  transition-duration: 0.25s;
  transition-property: background-color;
  transition-timing-function: ease-out;
}
#footer .links a:hover {
  color: #497fdb;
}
#footer .links a span {
  transition-delay: 0s;
  transition-duration: 0.25s;
  transition-property: color;
  transition-timing-function: ease-out;
}
#footer .links .bullet {
  font-size: 12px;
  color: #fff;
  vertical-align: middle;
}
/* RESIZE FOR SMALL SCREENS
----------------------------------------------------------*/
@media (max-width: 768px) {
  #main-content .page-title .subtitle-link-container {
    margin-left: 20px;
  }
  #main-content #main-container .body-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  #footer {
    padding-left: 10px;
    padding-right: 10px;
  }
  #footer .links {
    font-size: 18px;
  }
}