/*
https://github.com/sierra-library/sierra
http://sierra-library.github.io/
*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
/**
 *  VARIABLES
 *
 *  Configure sierra SCSS library by adjusting this file
 *
 */
/**
 *  GRID SYSTEM
 *  set $flexboxgrid to `true` to use a flexbox based grid. More info: https://github.com/kristoferjoseph/flexboxgrid
 *  set $flexboxgrid to `false` to use Twitter bootstrap's grid. More info: https://getbootstrap.com/examples/grid/
 */
/**
 *  LAYOUT
 */
/**
 *  MEDIA QUERIES BREAKPOINTS
 */
/**
 *  BOOTSTRAP GRID SYSTEM CONFIG
 */
/**
 *  COMPONENTS
 */
/**
 * Library
 */
/**
 * MIXINS
 */
/**
 *  PLACEHOLDERS
 */
.icon:before {
    content: url('../logo.png');
}
	 
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.tags ::after {
  clear: both;
  content: '';
  display: table;
}

.full-width {
  margin-left: -15px;
  margin-right: -15px;
  width: auto;
}

@media (min-width: 768px) {
  .full-width {
    margin-left: -30px;
    margin-right: -30px;
  }
}

/**
 * Reset
 */
html, body, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

article,
aside,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/**
 *  MAIN RULES
 */
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

body {
  background-color: #ffffff;
  font-weight: normal;
  min-height: 100%;
  overflow-x: hidden;
  position: relative;
}

p {
  font-weight: normal;
}

img {
  max-width: 100%;
}

strong {
  font-weight: 600;
}

ul {
  margin-bottom: 1em;
}

li {
  list-style: none;
  margin-bottom: 0;
}

pre {
  margin-bottom: 2em !important;
}

/**
 *  BACKGROUND COLORS
 */
.background-primary {
  background-color: #3498db;
}

.background-dark {
  background-color: #18537a;
}

.background-secondary {
  background-color: #2ecc71;
}

.background-white {
  background-color: #ffffff;
}

.background-success {
  background-color: #4caf50;
}

.background-info {
  background-color: #5bc0de;
}

.background-warning {
  background-color: #f0ad4e;
}

.background-error {
  background-color: #e74c3c;
}

.background-gray {
  background-color: #e9e9e9;
}

.background-gray-light {
  background-color: #edf3f6;
}

.background-rating1 {
  background-color: #dd2c00;
}

.background-rating2 {
  background-color: #ff5722;
}

.background-rating3 {
  background-color: #ff9800;
}

.background-rating4 {
  background-color: #ffc107;
}

.background-rating5 {
  background-color: #f5dc00;
}

.background-rating6 {
  background-color: #cddc39;
}

.background-rating7 {
  background-color: #8bc34a;
}

.background-rating8 {
  background-color: #4caf50;
}

.background-rating9 {
  background-color: #43a047;
}

.background-rating10 {
  background-color: #388e3c;
}

/**
 *  BADGES
 *
 *  Markup:
 *  -------
 *
 *  <ul class="badges-list">
 *    <li class="badges-list-item badge-primary">Badge 1</li>
 *    <li class="badges-list-item badge-secondary badge-lg">Badge 1</li>
 *  </ul>
 *
 */
.badges-list {
  margin-bottom: 20px;
}

.badges-list-item {
  background-color: #f1f1f1;
  border-radius: 3px;
  color: #404040;
  display: inline-block;
  line-height: 1.2em;
  padding: .2em .7em;
}

.badge-rounded {
  border-radius: 50px;
}

.badge-lg {
  font-size: 1.3em;
}

.badge-xs {
  font-size: .7em;
}

.badge-primary {
  background-color: #3498db;
}

.badge-secondary {
  background-color: #2ecc71;
}

.badge-dark {
  background-color: #18537a;
}

.badge-gray {
  background-color: #e9e9e9;
}

.badge-success {
  background-color: #4caf50;
}

.badge-error {
  background-color: #e74c3c;
}

.badge-warning {
  background-color: #f0ad4e;
}

/**
 *  BUTTONS
 */
button {
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.button {
  background-color: #e9e9e9;
  border: 1px solid #ffffff;
  border-radius: 2em;
  color: #404040;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5em;
  margin: 10px;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
  white-space: nowrap;
}

.button:focus, .button:hover, .button:active {
  color: #404040;
}

.button:hover {
  cursor: pointer;
  opacity: .8;
  text-decoration: none;
}

.button:active {
  opacity: 1;
}

.button:first-child {
  margin-left: 0;
}

.button:last-child {
  margin-right: 0;
}

.button.button-big {
  border-radius: 2em;
  font-size: 16px;
  line-height: 1.5em;
  padding: 10px 30px;
}

@media (min-width: 992px) {
  .button.button-big {
    padding: 10px 40px;
  }
}

.button.button-small {
  border-radius: 2em;
  font-size: 11px;
  line-height: 1.273em;
  padding: 6px 20px;
}

.button.button-huge {
  border-radius: 2em;
  font-size: 16px;
  line-height: 1.5em;
  padding: 15px 30px;
}

@media (min-width: 992px) {
  .button.button-huge {
    border-radius: 2em;
    font-size: 18px;
    line-height: 1.5em;
    padding: 18px 50px;
  }
}

.button.button-huge i {
  font-size: 20px;
}

.button.button-large {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
  width: 100%;
}

.button.button-primary {
  background-color: #3498db;
  border: 1px solid #3498db;
  color: #ffffff;
}

.button.button-primary:hover {
  color: #ffffff;
}

.button.button-secondary {
  background-color: #2ecc71;
  border: 1px solid #2ecc71;
  color: #ffffff;
}

.button.button-secondary:hover {
  color: #ffffff;
}

.button.button-transparent {
  background-color: transparent;
  border: 1px solid transparent;
}

.button.button-white {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #3498db;
}

.button.button-green {
  background-color: #4caf50;
  border-color: #4caf50;
  color: #ffffff;
}

.button.button-red {
  background-color: #e74c3c;
  border-color: #e74c3c;
  color: #ffffff;
}

.button.button-outlined {
  background-color: transparent;
  border: 1px solid #3498db;
  color: #3498db;
}

.button.button-disabled {
  cursor: default;
  opacity: .4;
}

.button.button-only-icon {
  height: 43px;
  line-height: 43px;
  padding: 0;
  width: 43px;
}

.button.button-only-icon i {
  margin-left: 0;
  margin-right: 0;
}

.button i {
  margin-bottom: -2%;
  margin-left: .8em;
  margin-right: .8em;
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.button i:last-child {
  margin-right: 0;
}

.button i:first-child {
  margin-left: 0;
}

.button i::before {
  float: left;
}

.button i.fa-lg {
  margin-bottom: 0;
}

.button-link {
  color: #3498db;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.button-link i {
  font-size: 18px;
  line-height: 14px;
  margin-bottom: -2px;
  margin-left: 4px;
  margin-right: 8px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.button-link i::before {
  float: left;
}

.button-link.button-link-rotated i {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.button-group {
  white-space: nowrap;
}

.button-group .button {
  display: inline-block;
  margin: 0;
}

.button-group .button:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.button-group .button:not(:last-child) {
  border-bottom-right-radius: 0;
  border-right: 0;
  border-top-right-radius: 0;
}

/**
 *  FORMS
 */
input,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

label {
  display: block;
  font-weight: normal;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #f1f1f1 inset;
          box-shadow: 0 0 0 1000px #f1f1f1 inset;
}

select {
  -moz-appearance: window;
  -webkit-appearance: none;
}

select,
input[type=text],
textarea {
  border-radius: 3px;
  font-size: 14px;
  line-height: 1.5em;
  -webkit-transition: background-color .2s ease-in-out;
  transition: background-color .2s ease-in-out;
}

@media (min-width: 768px) {
  select,
  input[type=text],
  textarea {
    font-size: 15px;
  }
}

@media (min-width: 992px) {
  select,
  input[type=text],
  textarea {
    font-size: 15px;
  }
}

.textarea,
.input,
.select {
  border: 0;
  border: 1px solid #dddddd;
  border-radius: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: block;
  font-weight: normal;
  margin-bottom: 20px;
}

.textarea :focus,
.input :focus,
.select :focus {
  outline: none;
}

.textarea.error,
.input.error,
.select.error {
  border: 1px solid #e74c3c;
  margin-bottom: 0;
}

.textarea.small,
.input.small,
.select.small {
  font-size: 13px;
  padding: 4px 6px;
}

.has-error .textarea,
.has-error .input,
.has-error .select {
  border: 1px solid #3498db;
}

.has-error .control-label {
  color: #3498db;
}

label.error {
  color: #e74c3c;
  font-size: 13px;
  line-height: 13px;
  position: absolute;
  right: 0;
  top: -16px;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
}

input[type=radio] {
  -webkit-appearance: radio;
     -moz-appearance: radio;
          appearance: radio;
}

.select {
  background-color: #f1f1f1;
  display: inline-block;
  margin-right: 10px;
  padding: 0;
  position: relative;
}

.select.full-width {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.select:last-child {
  margin-right: 0;
}

.select .fa-angle-down {
  color: #969da6;
  font-size: 25px;
  height: 30px;
  margin-top: -12px;
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 1;
}

.select .icon-angle-down {
  color: #3498db;
  font-size: 1.2em;
  height: 30px;
  margin-top: -10px;
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 1;
}

.select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 0;
  color: #404040;
  height: 44px;
  margin-right: 20px;
  padding-left: 10px;
  padding-right: 30px;
  position: relative;
  width: 100%;
  z-index: 2;
}

@media (min-width: 768px) {
  .select select {
    padding: 8px 15px;
  }
}

.select select:active, .select select:focus {
  background-color: #fefefe;
  border: 0;
  outline: none;
}

.select select:active + i,
.select select:focus + i {
  z-index: 2;
}

.select select option {
  background-color: #f1f1f1;
  color: #404040;
  height: 30px;
}

.select.select-small {
  max-width: 150px;
}

.select.select-small select {
  font-size: 14px !important;
  height: 24px;
  line-height: 24px;
  padding: 0 5px;
  padding-right: 27px;
}

select::-ms-expand {
  display: none;
}

.select-link {
  border: 0;
  color: #3498db;
}

.textarea {
  background-color: #f1f1f1;
  padding: 0;
  width: 100%;
}

.textarea textarea {
  background: transparent;
  border: 0;
  color: #404040;
  display: block;
  font-family: "Lato", sans-serif;
  padding: 10px 15px;
  width: 100%;
}

.textarea textarea:focus, .textarea textarea:active {
  border: 0;
  outline: none;
  background-color: #fefefe;
}

textarea {
  min-height: 120px;
}

.form-button-wrap {
  text-align: center;
}

@media (min-width: 768px) {
  .form-button-wrap {
    text-align: right;
  }
}

/**
 *  CHECKBOXES AND RADIO BUTTONS
 *
 *  Markup:
 *  -------
 *
 *  <div class="radio">
 *    <input id="hello" name="hello" type="radio" value=""/>
 *    <label for="hello" >option 1</label>
 *  </div>
 *
 *  <div class="checkbox">
 *    <input id="goodbye" name="goodbye" type="checkbox" value=""/>
 *    <label for="goodbye">option {{$i}}</label>
 *  </div>
 *
 */
.checkbox,
.radio {
  margin: 0;
  margin-bottom: 5px;
  margin-right: 20px;
  padding-left: 25px;
  position: relative;
}

input[type=checkbox] + label,
input[type=radio] + label {
  display: block;
  overflow: hidden;
  padding-left: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

input[type=checkbox] {
  display: none;
}

input[type=radio] {
  display: none;
}

input[type=checkbox] + label:after,
input[type=checkbox] + label:before,
input[type=radio] + label:after,
input[type=radio] + label:before {
  display: block;
  position: absolute;
  font-size: 14px;
  height: 18px;
  line-height: 18px;
  margin-top: -9px;
  top: 50%;
  width: 18px;
  left: 0;
}

input[type=checkbox] + label:after,
input[type=radio] + label:after {
  background-color: #f1f1f1;
  border: 1px solid #dddddd;
  border-radius: 3px;
  content: '';
}

input[type=radio] + label:after {
  border-radius: 99px;
}

input[type=checkbox] + label:before {
  content: "\f00c";
  font-family: FontAwesome;
  left: 2px;
  top: 11px;
  -webkit-transform: scale(0);
          transform: scale(0);
  z-index: 1;
}

input[type=radio] + label:before {
  background-color: #3498db;
  border-radius: 99px;
  content: '';
  display: block;
  height: 8px;
  left: 5px;
  margin-top: -4px;
  top: 50%;
  -webkit-transform: scale(0);
          transform: scale(0);
  width: 8px;
  z-index: 1;
}

input[type=checkbox]:checked + label,
input[type=radio]:checked + label {
  color: #3498db;
}

input[type=checkbox]:checked + label:before,
input[type=radio]:checked + label:before {
  -webkit-animation: radioAndCheckboxAnimation .25s;
          animation: radioAndCheckboxAnimation .25s;
  color: #3498db;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@-webkit-keyframes radioAndCheckboxAnimation {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes radioAndCheckboxAnimation {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.input {
  background-color: #f1f1f1;
  display: inline-block;
  margin-right: 10px;
  padding: 0;
  position: relative;
}

.input :focus,
.input :active {
  background-color: #fefefe;
}

.input.full-width {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.input input {
  background: transparent;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #404040;
  height: 44px;
  line-height: 44px;
  margin-bottom: 0;
  outline: none;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
}

@media (min-width: 768px) {
  .input input {
    padding: 8px 15px;
  }
}

.input-with-icon {
  position: relative;
}

.input-with-icon input {
  padding-right: 42px;
}

.input-with-icon .input-icon {
  color: #969da6;
  margin-top: -6px;
  position: absolute;
  right: 12px;
  top: 50%;
}

.input-with-icon .input-icon.fa-search {
  color: #3498db;
  margin-top: -7px;
}

.input-with-icon button.input-icon {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.input-icon input {
  padding: 0;
  width: 0;
}

.input-icon i {
  padding: 14px 15px 14px 12px;
}

/**
 *  Input group
 *
 *  Markup:
 *  -------
 *
 *  <div class="input-group {{ $errors->first('email', 'has-error') }}">
 *     <div class="input full-width ">
 *         <input type="email" class="form-control" name="email" placeholder="email address" value="{{{ Input::old('email') }}}">
 *     </div>
 *     <span class="help-block">{{ $errors->first('email', ':message') }}</span>
 *  </div>
 *
 */
.input-group {
  margin-bottom: 20px;
}

.input-group .textarea,
.input-group .input,
.input-group .select {
  margin-bottom: 0;
}

/**
 *  FORM GROUP
 *
 *  Markup:
 *  -------
 *
 *  <div class="form-group">
 *    <div class="input form-group-item">
 *      <input type="text" name="" id="" placeholder="Search an app and start tracking...">
 *    </div>
 *    <div class="select form-group-item">
 *      <select class="class">
 *        <option value="asd">asd</option>
 *        <option value="asfdasd">asfdasd</option>
 *      </select>
 *      <i class="js-select-opener fa fa-angle-down fa-2"></i>
 *    </div>
 *  </div>
 */
.form-group {
  background-color: #f1f1f1;
  border: 1px solid #dddddd;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 20px;
}

.form-group .textarea,
.form-group .input,
.form-group .select {
  margin-bottom: 0;
}

.form-group .form-group-item {
  border: 0;
  border-radius: 0;
  margin-right: 0;
}

.form-group .form-group-item:last-child {
  border-right: 0;
}

.form-row {
  margin-left: -3px !important;
  margin-right: -3px !important;
}

.form-row div[class^="col"] {
  padding-left: 3px;
  padding-right: 3px;
}

/**
 *  FORM COLLAPSE (items in row without gap between them)
 *
 *  Markup:
 *  -------
 *
 *  <div class="form-collapse">
 *    <div class="input item item-main">
 *      <input id="name" placeholder="Klingon search" type="text" />
 *    </div>
 *    <div class="select item">
 *      <select name="country-code" id="country-code">
 *        <option value="AO"> Angola</option>
 *      </select>
 *      <i class="fa fa-angle-down fa-2"></i>
 *    </div>
 *    <button class="item button button-primary">
 *      Search
 *    </button>
 *  </div>
 **/
.form-collapse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.form-collapse .item-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.form-collapse .item {
  border-radius: 0;
  font-size: 15px;
  margin: 0;
}

.form-collapse .item:first-child {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.form-collapse .item:last-child {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.form-collapse .item:not(:last-child) {
  border-right: 0;
}

/**
 *  FLEX ALIGNMENTS
 */
.aligner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.aligner-space-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.aligner-space-around {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
}

.aligner-center-vertical {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.aligner-center-horitzontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.content-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.aligner-item-top {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.aligner-item-bottom {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.flex-grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/**
 *  ALIGNMENTS
 */
.fleft {
  float: left;
}

.fright {
  float: right;
}

.cf::before, .cf::after {
  content: '';
  display: table;
}

.cf::after {
  clear: both;
}

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

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

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

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

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

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

/**
 *  TEXT UTILITIES
 */
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ellipsis-block {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}

.word-break {
  word-break: break-all;
}

.text-indent {
  padding-left: 24px;
}

/**
 *  MODIFIERS
 */
.bordered {
  border: 1px solid #dddddd;
}

.border-bottom {
  border-bottom: 1px solid #dddddd;
}

.border-left {
  border-left: 1px solid #dddddd;
}

.border-right {
  border-right: 1px solid #dddddd;
}

.border-top {
  border-top: 1px solid #dddddd;
}

.display-block {
  display: block;
}

@media (max-width: 480px) {
  .block-mobile {
    display: block;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

.display-inline {
  display: inline;
}

.hidden {
  display: none;
}

.no-margin {
  margin: 0 !important;
}

.no-wrap {
  white-space: nowrap;
}

.overflow-hidden {
  overflow: hidden;
}

.opacity-low {
  opacity: .5;
}

.icon-rounded,
.rounded-corners {
  border-radius: 15%;
}

.rounded {
  border-radius: 100%;
}

/**
 *  VISIBILITY UTILITIES
 */
@media (min-width: 992px) {
  .hidden-large {
    display: none;
  }
}

@media (min-width: 1280px) {
  .hidden-large {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  .hidden-medium {
    display: none;
  }
}

@media (min-width: 992px) {
  .hidden-medium {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  .show-small {
    display: none;
  }
}

.hide-small {
  display: none;
}

@media (min-width: 768px) {
  .hide-small {
    display: block;
  }
}

.hide-small-inline-block {
  display: none !important;
}

@media (min-width: 768px) {
  .hide-small-inline-block {
    display: inline-block !important;
  }
}

.hide-medium {
  display: block;
}

@media (min-width: 768px) {
  .hide-medium {
    display: none;
  }
}

@media (min-width: 992px) {
  .hide-medium {
    display: block;
  }
}

/**
 *  BOOTSTRAP VISIBILITY UTILITIES
 *  Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0
 */
.visible-xs {
  display: none !important;
}

.visible-sm {
  display: none !important;
}

.visible-md {
  display: none !important;
}

.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1279px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1279px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1279px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1279px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1280px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1280px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1280px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1280px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1279px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1280px) {
  .hidden-lg {
    display: none !important;
  }
}

/**
 * LAYOUT
 */
.section {
  padding-bottom: 20px;
  padding-top: 20px;
}

.section::before, .section::after {
  content: '';
  display: table;
}

.section::after {
  clear: both;
}

@media (min-width: 768px) {
  .section {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}

.container {
  margin: 0 auto;
  max-width: 1380px;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

@media (min-width: 768px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.container-medium {
  margin: 0 auto;
  max-width: 944px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .container-medium {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.container-small {
  margin: 0 auto;
  max-width: 400px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .container-small {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.separator {
  border-bottom: 1px solid #dddddd;
}

.main-wrap {
  overflow: hidden;
  position: relative;
  -webkit-transition: padding .25s ease-in-out;
  transition: padding .25s ease-in-out;
}

@media (min-width: 1280px) {
  .main-wrap {
    padding-left: 250px;
  }
}

.main-content {
  float: right;
  margin-left: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.main-content::before, .main-content::after {
  clear: none;
}

/**
 *  LOADING BAR
 *
 *  Markup:
 *  ---------
 *  <div class="loading-bar"></div>
 *
 */
.loading-bar {
  height: 4px;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.loading-bar::before {
  -webkit-animation: loading 2s linear infinite;
          animation: loading 2s linear infinite;
  background-color: #3498db;
  content: '';
  display: block;
  height: 4px;
  left: -200px;
  position: absolute;
  width: 200px;
}

@-webkit-keyframes loading {
  from {
    left: -200px;
    width: 30%;
  }
  50% {
    width: 30%;
  }
  70% {
    width: 70%;
  }
  80% {
    left: 50%;
  }
  95% {
    left: 120%;
  }
  to {
    left: 100%;
  }
}

@keyframes loading {
  from {
    left: -200px;
    width: 30%;
  }
  50% {
    width: 30%;
  }
  70% {
    width: 70%;
  }
  80% {
    left: 50%;
  }
  95% {
    left: 120%;
  }
  to {
    left: 100%;
  }
}

/**
 *  LOADING SPINNER
 *
 *  Markdown:
 *  ---------
 *  <div class='loading-spinner'>
 *    <span></span>
 *    <span></span>
 *    <span></span>
 *    <span></span>
 *  </div>
 *
 */
.loading-spinner {
  -webkit-animation: rotateLoader 4s infinite;
          animation: rotateLoader 4s infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  display: block;
  height: 30px;
  left: 50%;
  margin-left: -15px;
  margin-top: -15px;
  position: fixed;
  top: 50%;
  width: 30px;
  z-index: 1000;
}

.loading-spinner span {
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  background-color: #3498db;
  border-radius: 100%;
  display: block;
  height: 9px;
  position: absolute;
  width: 9px;
}

.loading-spinner span:nth-child(1) {
  -webkit-animation: translateBall1 1s infinite;
          animation: translateBall1 1s infinite;
  left: 0;
  top: 0;
  -webkit-transform: translate3d(5px, 5px, 0);
          transform: translate3d(5px, 5px, 0);
}

.loading-spinner span:nth-child(2) {
  -webkit-animation: translateBall2 1s infinite;
          animation: translateBall2 1s infinite;
  right: 0;
  top: 0;
}

.loading-spinner span:nth-child(3) {
  -webkit-animation: translateBall3 1s infinite;
          animation: translateBall3 1s infinite;
  bottom: 0;
  right: 0;
}

.loading-spinner span:nth-child(4) {
  -webkit-animation: translateBall4 1s infinite;
          animation: translateBall4 1s infinite;
  bottom: 0;
  left: 0;
}

.loading-spinner.is-relative {
  display: inline-block;
  left: auto;
  margin: 0;
  position: relative;
  top: auto;
  z-index: 1;
}

@-webkit-keyframes rotateLoader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  25% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateLoader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  25% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes translateBall1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(4px, 4px, 0);
            transform: translate3d(4px, 4px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes translateBall1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(4px, 4px, 0);
            transform: translate3d(4px, 4px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes translateBall2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(-4px, 4px, 0);
            transform: translate3d(-4px, 4px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes translateBall2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(-4px, 4px, 0);
            transform: translate3d(-4px, 4px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes translateBall3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(-4px, -4px, 0);
            transform: translate3d(-4px, -4px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes translateBall3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(-4px, -4px, 0);
            transform: translate3d(-4px, -4px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes translateBall4 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(4px, -4px, 0);
            transform: translate3d(4px, -4px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes translateBall4 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(4px, -4px, 0);
            transform: translate3d(4px, -4px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

/**
 *  MESSAGE BARS
 *
 *  Markup:
 *  -------
 *
 *  <div class="message-bar background-sucess">Success message</div>
 *  <div class="message-bar background-info">Success info</div>
 *  <div class="message-bar background-error">Success error</div>
 *  <div class="message-bar background-warning">Success warning</div>
 *
 */
.message-bar {
  border-radius: 3px;
  margin-bottom: 1em;
  padding: 1em;
}

.message-bar p:last-child {
  margin-bottom: 0;
}

/**
 *  PAGINATOR
 *
 *  Markup:
 *  -------
 *
 *  <ul class="paginator-list">
 *    <li class="paginator-list-item">
 *      <a href="#" class="paginator-list-link">Prev</a>
 *    </li>
 *    <li class="paginator-list-item">
 *      <a href="#" class="paginator-list-link">1</a>
 *    </li>
 *    <li class="paginator-list-item">
 *      <a href="#" class="paginator-list-link active">2</a>
 *    </li>
 *    <li class="paginator-list-item">
 *      <a href="#" class="paginator-list-link">3</a>
 *    </li>
 *    <li class="paginator-list-item">
 *      <a href="#" class="paginator-list-link">Next</a>
 *    </li>
 *  </ul>
 */
.paginator-list .paginator-list-item {
  margin-right: 5px;
  padding: 0;
  display: inline-block;
}

.paginator-list .paginator-list-item:first-child i {
  margin-right: .5em;
}

.paginator-list .paginator-list-item:last-child i {
  margin-left: .5em;
}

.paginator-list .paginator-list-item .paginator-list-link {
  background-color: #f1f1f1;
  border: 1px solid #ffffff;
  border-radius: 3px;
  color: #404040;
  display: block;
  padding: .5em 1em;
  -webkit-transition: background-color .2s ease-in-out;
  transition: background-color .2s ease-in-out;
}

.paginator-list .paginator-list-item .paginator-list-link:hover {
  background-color: white;
}

.paginator-list .paginator-list-item .paginator-list-link.active {
  background-color: #3498db;
  color: #404040;
}

.paginator-list.paginator-compact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.paginator-list.paginator-compact .paginator-list-item {
  margin-right: 0;
}

.paginator-list.paginator-compact .paginator-list-item:not(:last-child) {
  border-right: 1px solid #ffffff;
}

.paginator-list.paginator-compact .paginator-list-item .paginator-list-link {
  border-radius: 0;
}

.paginator-list.paginator-compact .paginator-list-item:first-child .paginator-list-link {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.paginator-list.paginator-compact .paginator-list-item:last-child .paginator-list-link {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.paginator-list.paginator-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

/**
 *  RATING CIRCLE
 */
.rating-circle {
  background-color: #d7d7d7;
  border-radius: 50%;
  display: inline-block;
  height: 100px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 100px;
}

@media (min-width: 768px) {
  .rating-circle {
    margin: 0;
    margin-left: 10px;
  }
}

@media (min-width: 992px) {
  .rating-circle {
    height: 130px;
    width: 130px;
  }
}

.rating-circle.rating-color-1 {
  color: #dd2c00;
}

.rating-circle.rating-color-1 .circle-fill {
  background-color: #dd2c00;
}

.rating-circle.rating-color-2 {
  color: #ff5722;
}

.rating-circle.rating-color-2 .circle-fill {
  background-color: #ff5722;
}

.rating-circle.rating-color-3 {
  color: #ff9800;
}

.rating-circle.rating-color-3 .circle-fill {
  background-color: #ff9800;
}

.rating-circle.rating-color-4 {
  color: #ffc107;
}

.rating-circle.rating-color-4 .circle-fill {
  background-color: #ffc107;
}

.rating-circle.rating-color-5 {
  color: #f5dc00;
}

.rating-circle.rating-color-5 .circle-fill {
  background-color: #f5dc00;
}

.rating-circle.rating-color-6 {
  color: #cddc39;
}

.rating-circle.rating-color-6 .circle-fill {
  background-color: #cddc39;
}

.rating-circle.rating-color-7 {
  color: #8bc34a;
}

.rating-circle.rating-color-7 .circle-fill {
  background-color: #8bc34a;
}

.rating-circle.rating-color-8 {
  color: #4caf50;
}

.rating-circle.rating-color-8 .circle-fill {
  background-color: #4caf50;
}

.rating-circle.rating-color-9 {
  color: #43a047;
}

.rating-circle.rating-color-9 .circle-fill {
  background-color: #43a047;
}

.rating-circle.rating-color-10 {
  color: #388e3c;
}

.rating-circle.rating-color-10 .circle-fill {
  background-color: #388e3c;
}

.rating-circle .circle .circle-mask,
.rating-circle .circle .circle-fill {
  border-radius: 50%;
  height: 100px;
  position: absolute;
  -webkit-transition: all 1s;
  transition: all 1s;
  width: 100px;
}

@media (min-width: 992px) {
  .rating-circle .circle .circle-mask,
  .rating-circle .circle .circle-fill {
    height: 130px;
    width: 130px;
  }
}

.rating-circle .circle .circle-mask,
.rating-circle .circle .circle-fill {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.rating-circle .circle .circle-mask.reanimate,
.rating-circle .circle .circle-fill.reanimate {
  -webkit-transition: -webkit-transform 0s;
  transition: -webkit-transform 0s;
  transition: transform 0s;
  transition: transform 0s, -webkit-transform 0s;
}

.rating-circle .circle .circle-mask.reset,
.rating-circle .circle .circle-fill.reset {
  -webkit-transform: rotate(0deg) !important;
          transform: rotate(0deg) !important;
}

.rating-circle .circle .circle-mask {
  clip: rect(0, 100px, 100px, 50px);
  overflow: hidden;
}

@media (min-width: 992px) {
  .rating-circle .circle .circle-mask {
    clip: rect(0, 130px, 130px, 65px);
  }
}

.rating-circle .circle .circle-mask .circle-fill {
  clip: rect(0, 50px, 100px, 0);
}

@media (min-width: 992px) {
  .rating-circle .circle .circle-mask .circle-fill {
    clip: rect(0, 65px, 130px, 0);
  }
}

.rating-circle .circle-inset {
  background-color: #f1f1f1;
  border-radius: 50%;
  height: 94px;
  left: 50%;
  margin-left: -47px;
  margin-top: -47px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 94px;
}

@media (min-width: 992px) {
  .rating-circle .circle-inset {
    height: 124px;
    line-height: 124px;
    margin-left: -62px;
    margin-top: -62px;
    width: 124px;
  }
}

.rating-circle .circle-inset .circle-rating-number {
  font-size: 36px;
  font-weight: normal;
  line-height: 94px;
}

@media (min-width: 992px) {
  .rating-circle .circle-inset .circle-rating-number {
    font-size: 50px;
    line-height: 124px;
  }
}

.rating-circle.circle-small {
  width: 80px;
  height: 80px;
}

.rating-circle.circle-small .circle .circle-mask,
.rating-circle.circle-small .circle .circle-fill {
  height: 80px;
  width: 80px;
}

.rating-circle.circle-small .circle-mask {
  clip: rect(0, 80px, 80px, 40px);
}

.rating-circle.circle-small .circle-mask .circle-fill {
  clip: rect(0, 40px, 80px, 0);
}

.rating-circle.circle-small .circle-inset {
  border-radius: 50%;
  height: 74px;
  left: 50%;
  margin-left: -37px;
  margin-top: -37px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 74px;
}

.rating-circle.circle-small .circle-inset .circle-rating-number {
  font-size: 24px;
  font-weight: 400;
  left: 0;
  line-height: 74px;
  margin: 0 !important;
  position: absolute;
  top: 0;
  width: 74px;
}

.rating-color-1 .circle-fill,
.rating-color-1 .circle-full {
  -webkit-transform: rotate(18deg);
          transform: rotate(18deg);
}

.rating-color-2 .circle-fill,
.rating-color-2 .circle-full {
  -webkit-transform: rotate(36deg);
          transform: rotate(36deg);
}

.rating-color-3 .circle-fill,
.rating-color-3 .circle-full {
  -webkit-transform: rotate(54deg);
          transform: rotate(54deg);
}

.rating-color-4 .circle-fill,
.rating-color-4 .circle-full {
  -webkit-transform: rotate(72deg);
          transform: rotate(72deg);
}

.rating-color-5 .circle-fill,
.rating-color-5 .circle-full {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.rating-color-6 .circle-fill,
.rating-color-6 .circle-full {
  -webkit-transform: rotate(108deg);
          transform: rotate(108deg);
}

.rating-color-7 .circle-fill,
.rating-color-7 .circle-full {
  -webkit-transform: rotate(126deg);
          transform: rotate(126deg);
}

.rating-color-8 .circle-fill,
.rating-color-8 .circle-full {
  -webkit-transform: rotate(144deg);
          transform: rotate(144deg);
}

.rating-color-9 .circle-fill,
.rating-color-9 .circle-full {
  -webkit-transform: rotate(162deg);
          transform: rotate(162deg);
}

.rating-color-10 .circle-fill,
.rating-color-10 .circle-full {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/**
 *  TABLES
 */
.table {
  background-color: #f1f1f1;
  border: 1px solid #dddddd;
  border-collapse: collapse;
  border-radius: 3px;
  color: #404040;
  margin-bottom: 20px;
  max-width: 100%;
  width: 100%;
}

.table th,
.table td {
  border-bottom: 1px solid #dddddd;
  padding: 10px;
}

@media (min-width: 992px) {
  .table th,
  .table td {
    padding: 10px 20px;
  }
}

.table td {
  padding: 14px;
  position: relative;
}

.table tr {
  border-bottom: 1px solid #dddddd;
}

.table thead {
  border-bottom: 1px solid #dddddd;
}

.table th {
  background-color: #ffffff;
  color: #969da6;
  font-weight: normal;
  padding: 5px 14px;
  white-space: nowrap;
}

.table-vertical-center td {
  vertical-align: middle;
}

/**
 *  TABLE RESPONSIVE
 *
 *  Markup:
 *  -------
 *
 *  <table class="table-responsive table-break-small">
 *    <tr>
 *      <th>First column</th>
 *      <th>Second column</th>
 *      <th>Third column</th>
 *    </tr>
 *    <tr>
 *      <td data-th="First column">Blue</td>
 *      <td data-th="Second column">One</td>
 *      <td data-th="Third column">My life fades</td>
 *    </tr>
 *    <tr>
 *      <td data-th="First column">Green</td>
 *      <td data-th="Second column">Two</td>
 *      <td data-th="Third column">when the world was powered by the black fuel... and the desert sprouted great cities of pipe and steel. </td>
 *    </tr>
 *    <tr>
 *      <td data-th="First column">Yellow</td>
 *      <td data-th="Second column">Three</td>
 *      <td data-th="Third column">A whirlwind of looting, a firestorm of fear. Men began to feed on men. </td>
 *    </tr>
 *  </table>
 *
 */
.table-responsive th {
  display: none;
}

.table-responsive td {
  display: block;
}

.table-responsive td:first-child {
  border-top: 1px solid #dddddd;
  padding-top: 14px;
}

.table-responsive td:last-child {
  padding-bottom: 14px;
}

.table-responsive td::before {
  content: attr(data-th) ": ";
  display: block;
  font-weight: normal;
}

.table-responsive th,
.table-responsive td {
  text-align: left;
}

.table-responsive.table-break-medium tr {
  border-top: 1px solid #dddddd;
}

@media (max-width: 768px) {
  .table-responsive.table-break-medium td {
    border: 0;
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  .table-responsive.table-break-medium td::before {
    display: none;
  }
}

.table-responsive.table-break-medium td:last-child {
  padding-bottom: 14px;
}

@media (min-width: 768px) {
  .table-responsive.table-break-medium th,
  .table-responsive.table-break-medium td {
    display: table-cell;
  }
}

.table-responsive.table-break-small tr {
  border-top: 1px solid #dddddd;
}

@media (max-width: 480px) {
  .table-responsive.table-break-small td {
    border: 0;
    padding-bottom: 0;
  }
}

@media (min-width: 480px) {
  .table-responsive.table-break-small td::before {
    display: none;
  }
}

.table-responsive.table-break-small td:last-child {
  padding-bottom: 14px;
}

@media (min-width: 480px) {
  .table-responsive.table-break-small th,
  .table-responsive.table-break-small td {
    display: table-cell;
  }
}

/**
 *  TABS
 *
 *  Markup:
 *  -------
 *
 *  <div class="c-tabs">
 *    <a href="link" title="#" data-targetclass="js-tab1" class="c-tab js-tab">[...]</a>
 *    <a href="link" title="#" data-targetclass="js-tab2" class="c-tab js-tab active">[...]</a>
 *  </div>
 *  <div class="js-tab1 c-tab-content">
 *    [...]
 *  </div>
 *  <div class="js-tab2 c-tab-content selected">
 *    [...]
 *  </div>
 *
 */
.tabs {
  border-bottom: 1px solid #dddddd;
  margin-bottom: 30px;
  text-align: center;
}

.tabs .tab {
  border-bottom: 3px solid transparent;
  color: #969da6;
  display: inline-block;
  line-height: 50px;
  margin: 0;
  margin-right: 30px;
  min-width: 70px;
  position: relative;
}

.tabs .tab:hover {
  color: #3498db;
  text-decoration: none;
}

.tabs .tab.active {
  border-bottom: 3px solid #3498db;
  color: #3498db;
}

.tab-content {
  display: none;
}

.tab-content.selected {
  display: block;
}

/**
 *  TAGS
 *
 *  Markup:
 *  -------
 *
 *  <ul class="tags">
 *    <li>
 *        <a href="#" class="tag"> fantasy</a>
 *    </li>
 *    <li>
 *        <a href="#" class="tag"> fiction </a>
 *    </li>
 *    <li>
 *        <a href="#" class="tag"> contemporary </a>
 *    </li>
 *  </ul>
 *
 */
.tags {
  margin-bottom: 20px;
}

.tags:last-child {
  margin-bottom: 0;
}

.tags li {
  display: inline-block;
  margin: 0 25px 10px 0;
}

.tags .tag {
  background-color: #f1f1f1;
  border-radius: 3px 0 0 3px;
  color: #404040;
  display: inline-block;
  float: left;
  line-height: 34px;
  padding: 0 10px;
  position: relative;
}

.tags .tag::before {
  border-bottom: 17px solid transparent;
  border-left: 10px solid #f1f1f1;
  border-top: 17px solid transparent;
  content: '';
  height: 0;
  position: absolute;
  right: -10px;
  top: 0;
  width: 0;
}

.tags .tag::after {
  background: #ffffff;
  border-radius: 6px;
  content: '';
  float: left;
  height: 5px;
  position: absolute;
  right: -3px;
  top: 14px;
  width: 5px;
}

.tags a.tag {
  color: #404040;
  display: inline-block;
  text-decoration: none;
}

.tags a.tag:hover {
  background-color: white;
  text-decoration: none;
}

.tags a.tag:hover::before {
  border-left: 10px solid white;
}

/**
 *  TYPOGRAPHY
 */
body {
  font: 400 14px/1.5em "Lato", sans-serif;
  color: #404040;
}

@media (min-width: 768px) {
  body {
    font-size: 15px;
  }
}

@media (min-width: 992px) {
  body {
    font-size: 15px;
  }
}

img {
  font-size: 12px;
  line-height: 1.3em;
}

p {
  line-height: 1.5em;
  margin-bottom: 1.5em;
}

a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  color: rgba(52, 152, 219, 0.8);
  font-weight:bold;
}

a:focus {
  color: #3498db;
}

.text-huge, .text-big, .text-medium {
  line-height: 1.3em;
  margin-bottom: 1em;
  margin-top: 1.5em;
}

.text-huge:first-child, .text-big:first-child, .text-medium:first-child {
  margin-top: .5em;
}

.text-huge {
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-weight: 300;
  text-transform: none;
}

@media (min-width: 992px) {
  .text-huge {
    font-size: 40px;
  }
}

@media (min-width: 1280px) {
  .text-huge {
    font-size: 48px;
  }
}

.text-big {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 300;
  text-transform: none;
}

@media (min-width: 992px) {
  .text-big {
    font-size: 28px;
  }
}

.text-medium {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 300;
  text-transform: none;
}

.text-small, label.label {
  font-size: 12px;
}

@media (min-width: 768px) {
  .text-small, label.label {
    font-size: 14px;
  }
}

.text-body {
  font-size: 14px;
  line-height: 1.5em;
}

@media (min-width: 992px) {
  .text-body {
    font-size: 15px;
  }
}

.text-primary {
  color: #3498db;
}

.text-dark {
  color: #18537a;
}

.text-secondary {
  color: #2ecc71;
}

.text-white {
  color: #ffffff;
}

.text-success {
  color: #4caf50;
}

.text-info {
  color: #5bc0de;
}

.text-warning {
  color: #f0ad4e;
}

.text-error {
  color: #e74c3c;
}

.text-gray, label.label, .table-responsive td::before {
  color: #e9e9e9;
}

.text-gray-light {
  color: #edf3f6;
}

.text-rating1 {
  color: #dd2c00;
}

.text-rating2 {
  color: #ff5722;
}

.text-rating3 {
  color: #ff9800;
}

.text-rating4 {
  color: #ffc107;
}

.text-rating5 {
  color: #f5dc00;
}

.text-rating6 {
  color: #cddc39;
}

.text-rating7 {
  color: #8bc34a;
}

.text-rating8 {
  color: #4caf50;
}

.text-rating9 {
  color: #43a047;
}

.text-rating10 {
  color: #388e3c;
}

.text-white {
  color: #ffffff;
}

.text-gray, label.label, .table-responsive td::before,
a.text-gray,
button.text-gray {
  color: #969da6;
}

.text-light {
  font-weight: 300;
}

.text-normal {
  font-weight: 400;
}

.text-line-through {
  text-decoration: line-through;
}

.text-italic {
  font-style: italic;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-transform-none {
  text-transform: none;
}

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

.text-lato {
  font-family: 'Lato', sans-serif;
}

.text-with-subtitle {
  margin-bottom: 0 !important;
}

.text-with-subtitle + .text-huge,
.text-with-subtitle + .text-big,
.text-with-subtitle + .text-medium,
.text-with-subtitle + .text-small,
.text-with-subtitle + label.label {
  margin-top: .5em;
}

h1,
h2,
h3,
h4 {
  font-weight: 300;
}

/**
 *  Grid system
 */
.container {
  margin-right: auto;
  margin-left: auto;
}

.container::before, .container::after {
  content: '';
  display: table;
}

.container::after {
  clear: both;
}

@media (min-width: 768px) {
  .container {
    width: auto;
  }
}

@media (min-width: 992px) {
  .container {
    width: auto;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
}

.container-fluid::before, .container-fluid::after {
  content: '';
  display: table;
}

.container-fluid::after {
  clear: both;
}

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

.row::before, .row::after {
  content: '';
  display: table;
}

.row::after {
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.33333%;
}

.col-xs-2 {
  width: 16.66667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.33333%;
}

.col-xs-5 {
  width: 41.66667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.33333%;
}

.col-xs-8 {
  width: 66.66667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.33333%;
}

.col-xs-11 {
  width: 91.66667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.33333%;
}

.col-xs-pull-2 {
  right: 16.66667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.33333%;
}

.col-xs-pull-5 {
  right: 41.66667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.33333%;
}

.col-xs-pull-8 {
  right: 66.66667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.33333%;
}

.col-xs-pull-11 {
  right: 91.66667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.33333%;
}

.col-xs-push-2 {
  left: 16.66667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.33333%;
}

.col-xs-push-5 {
  left: 41.66667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.33333%;
}

.col-xs-push-8 {
  left: 66.66667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.33333%;
}

.col-xs-push-11 {
  left: 91.66667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.33333%;
}

.col-xs-offset-2 {
  margin-left: 16.66667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333%;
}

.col-xs-offset-5 {
  margin-left: 41.66667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333%;
}

.col-xs-offset-8 {
  margin-left: 66.66667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333%;
}

.col-xs-offset-11 {
  margin-left: 91.66667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-1 {
    width: 8.33333%;
  }
  .col-sm-2 {
    width: 16.66667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.33333%;
  }
  .col-sm-5 {
    width: 41.66667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.33333%;
  }
  .col-sm-8 {
    width: 66.66667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.33333%;
  }
  .col-sm-11 {
    width: 91.66667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-pull-1 {
    right: 8.33333%;
  }
  .col-sm-pull-2 {
    right: 16.66667%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.33333%;
  }
  .col-sm-pull-5 {
    right: 41.66667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.33333%;
  }
  .col-sm-pull-8 {
    right: 66.66667%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.33333%;
  }
  .col-sm-pull-11 {
    right: 91.66667%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-push-1 {
    left: 8.33333%;
  }
  .col-sm-push-2 {
    left: 16.66667%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.33333%;
  }
  .col-sm-push-5 {
    left: 41.66667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.33333%;
  }
  .col-sm-push-8 {
    left: 66.66667%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.33333%;
  }
  .col-sm-push-11 {
    left: 91.66667%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-1 {
    width: 8.33333%;
  }
  .col-md-2 {
    width: 16.66667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.33333%;
  }
  .col-md-5 {
    width: 41.66667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.33333%;
  }
  .col-md-8 {
    width: 66.66667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.33333%;
  }
  .col-md-11 {
    width: 91.66667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.33333%;
  }
  .col-md-pull-2 {
    right: 16.66667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.33333%;
  }
  .col-md-pull-5 {
    right: 41.66667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.33333%;
  }
  .col-md-pull-8 {
    right: 66.66667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.33333%;
  }
  .col-md-pull-11 {
    right: 91.66667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.33333%;
  }
  .col-md-push-2 {
    left: 16.66667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.33333%;
  }
  .col-md-push-5 {
    left: 41.66667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.33333%;
  }
  .col-md-push-8 {
    left: 66.66667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.33333%;
  }
  .col-md-push-11 {
    left: 91.66667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1280px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-1 {
    width: 8.33333%;
  }
  .col-lg-2 {
    width: 16.66667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.33333%;
  }
  .col-lg-5 {
    width: 41.66667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.33333%;
  }
  .col-lg-8 {
    width: 66.66667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.33333%;
  }
  .col-lg-11 {
    width: 91.66667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.33333%;
  }
  .col-lg-pull-2 {
    right: 16.66667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.33333%;
  }
  .col-lg-pull-5 {
    right: 41.66667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.33333%;
  }
  .col-lg-pull-8 {
    right: 66.66667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.33333%;
  }
  .col-lg-pull-11 {
    right: 91.66667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.33333%;
  }
  .col-lg-push-2 {
    left: 16.66667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.33333%;
  }
  .col-lg-push-5 {
    left: 41.66667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.33333%;
  }
  .col-lg-push-8 {
    left: 66.66667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.33333%;
  }
  .col-lg-push-11 {
    left: 91.66667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}

h1, h2, h3 {
  color: #18537a;
  line-height: 1.5em;
  margin: 0.375em 0;
}

h1 {
  font-size: 28px;
}

h1 span {
  font-size: 18.2px;
  color: gray;
}

h2 {
  font-size: 21px;
}

h3 {
  font-size: 18.2px;
}

ul {
  padding-left: 20px;
}

ul li {
  list-style-type: disc;
}

ol {
  padding-left: 20px;
}

ol li {
  list-style-type: decimal;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

#mainNav {
  padding: 10px 0 4px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#mainNav ul {
  padding-left: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#mainNav ul li {
  list-style: none;
  margin-right: 20px;
}

#mainNav ul a {
  color: white;
}

#mainNav ul a:hover {
  color: ghostwhite;
}

#mainNav ul:last-child {
  display: none;
}

#mainNav ul:last-child a {
  color: #3498db;
}

@media screen and (min-width: 560px) {
  #mainNav ul:last-child {
    display: block;
  }
}

.tabNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px lightgrey;
}

.tabNav li {
  list-style: none;
  font-weight: bold;
}

.tabNav li:not(:last-child)::after {
  content: '|';
  display: inline-block;
  width: 40px;
  text-align: center;
}

.tabNav a:hover {
  color: darkred;
}

.tabNav a.active {
  text-decoration: none;
  color: lightgray;
}

label {
  display: inline-block;
  padding-right: 10px;
}

input[type=text],
input[type=number],
input[type=date],
.select select {
  height: 30px;
  padding: 0 8px;
}

input[type=number] {
  width: 100px;
}

.button {
  text-transform: none;
}

input[type=range] {
  -webkit-appearance: slider-horizontal;
     -moz-appearance: slider-horizontal;
          appearance: slider-horizontal;
}

.table {
  background-color: white;
}

.table th {
  background-color: #18537a;
  text-align: left;
  color: white;
}

.columns-2 {
  padding: 10px;
  -webkit-columns: 480px 2;
          columns: 480px 2;
  -webkit-column-rule: 1px solid #e9e9e9;
          column-rule: 1px solid #e9e9e9;
  border: 1px solid #e9e9e9;
}

.columns-2-center {
  padding: 10px;
  -webkit-columns: 480px 2;
          columns: 480px 2;
  -webkit-column-rule: 1px solid #e9e9e9;
          column-rule: 1px solid #e9e9e9;
  border: 1px solid #e9e9e9;
  text-align: center;
}

.columns-3 {
  padding: 10px;
  -webkit-columns: 320px 3;
          columns: 320px 3;
  -webkit-column-rule: 1px solid #e9e9e9;
          column-rule: 1px solid #e9e9e9;
  border: 1px solid #e9e9e9;
}

.columns-3-center {
  padding: 10px;
  -webkit-columns: 320px 3;
          columns: 320px 3;
  -webkit-column-rule: 1px solid #e9e9e9;
          column-rule: 1px solid #e9e9e9;
  border: 1px solid #e9e9e9;
  text-align: center;
}

.columns-4 {
  padding: 10px;
  -webkit-columns: 240px 4;
          columns: 240px 4;
  -webkit-column-rule: 1px solid #e9e9e9;
          column-rule: 1px solid #e9e9e9;
  border: 1px solid #e9e9e9;
}

.columns-4-center {
  padding: 10px;
  -webkit-columns: 240px 4;
          columns: 240px 4;
  -webkit-column-rule: 1px solid #e9e9e9;
          column-rule: 1px solid #e9e9e9;
  border: 1px solid #e9e9e9;
  text-align: center;
}

.columns-5 {
  padding: 10px;
  -webkit-columns: 192px 5;
          columns: 192px 5;
  -webkit-column-rule: 1px solid #e9e9e9;
          column-rule: 1px solid #e9e9e9;
  border: 1px solid #e9e9e9;
}

.columns-5-center {
  padding: 10px;
  -webkit-columns: 192px 5;
          columns: 192px 5;
  -webkit-column-rule: 1px solid #e9e9e9;
          column-rule: 1px solid #e9e9e9;
  border: 1px solid #e9e9e9;
  text-align: center;
}

.columns-10 {
  padding: 10px;
  -webkit-columns: 96px 10;
          columns: 96px 10;
  -webkit-column-rule: 1px solid #e9e9e9;
          column-rule: 1px solid #e9e9e9;
  border: 1px solid #e9e9e9;
}

.columns-10-center {
  padding: 10px;
  -webkit-columns: 96px 10;
          columns: 96px 10;
  -webkit-column-rule: 1px solid #e9e9e9;
          column-rule: 1px solid #e9e9e9;
  border: 1px solid #e9e9e9;
  text-align: center;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  word-wrap: break-word;
  background-clip: border-box;
  border: solid 1px #18537a;
  border-radius: 3px;
  margin-bottom: 20px;
}

.card .card-header {
  padding: 10px;
  margin: 0;
  background-color: #1c618f;
  color: white;
  border-bottom: solid 1px #18537a;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5em;
}

.card .card-body {
  padding: 10px;
}

.card-success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  word-wrap: break-word;
  background-clip: border-box;
  border: solid 1px #4caf50;
  border-radius: 3px;
  margin-bottom: 20px;
}

.card-success .card-header {
  padding: 10px;
  margin: 0;
  background-color: #5cb860;
  color: white;
  border-bottom: solid 1px #4caf50;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5em;
}

.card-success .card-body {
  padding: 10px;
}

.card-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  word-wrap: break-word;
  background-clip: border-box;
  border: solid 1px #5bc0de;
  border-radius: 3px;
  margin-bottom: 20px;
}

.card-info .card-header {
  padding: 10px;
  margin: 0;
  background-color: #70c8e2;
  color: white;
  border-bottom: solid 1px #5bc0de;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5em;
}

.card-info .card-body {
  padding: 10px;
}

.card-warning {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  word-wrap: break-word;
  background-clip: border-box;
  border: solid 1px #f0ad4e;
  border-radius: 3px;
  margin-bottom: 20px;
}

.card-warning .card-header {
  padding: 10px;
  margin: 0;
  background-color: #f2b866;
  color: white;
  border-bottom: solid 1px #f0ad4e;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5em;
}

.card-warning .card-body {
  padding: 10px;
}

.card-error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  word-wrap: break-word;
  background-clip: border-box;
  border: solid 1px #e74c3c;
  border-radius: 3px;
  margin-bottom: 20px;
}

.card-error .card-header {
  padding: 10px;
  margin: 0;
  background-color: #ea6153;
  color: white;
  border-bottom: solid 1px #e74c3c;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5em;
}

.card-error .card-body {
  padding: 10px;
}

@-webkit-keyframes slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 50rem 0;
  }
}

@keyframes slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 50rem 0;
  }
}

.preloader {
  margin: 20px 0;
  min-height: 1rem;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  background-color: #2070a5;
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
  text-align: center;
  -webkit-animation: slide 20s linear infinite;
          animation: slide 20s linear infinite;
  color: white;
}

.preloader-success {
  margin: 20px 0;
  min-height: 1rem;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  background-color: #6ec071;
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
  text-align: center;
  -webkit-animation: slide 20s linear infinite;
          animation: slide 20s linear infinite;
  color: white;
}

.preloader-info {
  margin: 20px 0;
  min-height: 1rem;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  background-color: #85d0e7;
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
  text-align: center;
  -webkit-animation: slide 20s linear infinite;
          animation: slide 20s linear infinite;
  color: white;
}

.preloader-warning {
  margin: 20px 0;
  min-height: 1rem;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  background-color: #f4c37d;
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
  text-align: center;
  -webkit-animation: slide 20s linear infinite;
          animation: slide 20s linear infinite;
  color: white;
}

.preloader-error {
  margin: 20px 0;
  min-height: 1rem;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  background-color: #ed7669;
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
  text-align: center;
  -webkit-animation: slide 20s linear infinite;
          animation: slide 20s linear infinite;
  color: white;
}

.message-bar {
  color: white;
}

.background-gray-light {
  color: black;
}

.highLight {
  border: solid 2px green !important;
  padding: 5px !important;
  background-color: #FF6 !important;
  background-image: none !important;
  color: red !important;
}
.intro {
    border: 1px solid #888888;
    border-radius: 10px;
	background-image: url("bg.png");
	background-position: center;
	background-size: cover;
    background-color: #e9e9e9;
    box-shadow: 3px 6px #888888;
    padding: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
}
.intro a{
	color: #fff;
}
.intro p {
	line-height: 0px;
	}
#mainNav a{
	font-weight:100;
}
