html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  /*margin-bottom: 60px;*/
}

/* Tom Select caret hover effect */
.ts-control .ts-dropdown__caret,
.ts-control .ts-control__caret {
  transition: color 0.2s, font-weight 0.2s;
}
.ts-control:hover .ts-dropdown__caret,
.ts-control:hover .ts-control__caret {
  color: #0d6efd; /* Bootstrap primary */
  font-weight: bold;
  cursor: pointer;
}