/* TODO: Breakdown into partials */
body {
  padding-top: 2rem;
  padding-bottom: 1.2rem;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  color: #215f72 !important; }

a {
  color: #9d2586; }
  a:hover, a:focus, a:visited {
    color: #9d2586; }

h1, h2, h3, h4, h4 {
  margin: 0 0 1rem 0; }

.bounce-1 {
  animation-name: bounce-1;
  animation-timing-function: linear; }

@keyframes bounce-1 {
  0% {
    transform: translateY(0); }
  50% {
    transform: translateY(-10px); }
  100% {
    transform: translateY(0); } }
/*********************************/
/* Add flexbox to columns */
/*********************************/
.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap; }

.row > [class*='col-'] {
  display: flex;
  flex-direction: column; }

.alert {
  font-size: 1.3rem; }
  .alert .fa-info-circle {
    margin: 0 1rem 0 0; }
  .alert a {
    font-weight: bold;
    text-decoration: underline; }

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
  white-space: normal; }

/* For Default; Different for each theme */
div.k-dropzone {
  border: 1px solid #c5c5c5; }
  div.k-dropzone em {
    visibility: visible; }

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: transparent;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }

/*********************************/
/* BUTTONS */
/*********************************/
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  cursor: pointer; }

.btn-primary, .btn-danger, .btn-ghost {
  background-color: #9d2586;
  border: 1px solid #9d2586;
  padding: 0.5rem 2rem;
  display: inline-block;
  margin: 0 0.5rem 1rem 0; }
  .btn-primary:hover, .btn-danger:hover, .btn-ghost:hover, .btn-primary:focus, .btn-danger:focus, .btn-ghost:focus, .btn-primary:visited, .btn-danger:visited, .btn-ghost:visited, .btn-primary:visited:hover, .btn-danger:visited:hover, .btn-ghost:visited:hover {
    background-color: transparent;
    color: #215f72;
    border: 1px solid #215f72;
    text-decoration: none; }
  .btn-primary:visited, .btn-danger:visited, .btn-ghost:visited {
    color: white; }

.btn-danger {
  background-color: red;
  border: 1px solid red; }

.btn-info {
  color: white; }
  .btn-info:hover, .btn-info:focus, .btn-info:visited, .btn-info:visited:hover {
    color: white; }

.btn-success {
  color: white; }
  .btn-success:hover, .btn-success:focus, .btn-success:visited, .btn-success:visited:hover {
    color: white; }

.btn-ghost {
  background-color: transparent;
  border: 1px solid #9d2586; }
  .btn-ghost:hover, .btn-ghost:focus, .btn-ghost:visited:hover {
    background-color: #9d2586;
    color: white;
    border: 1px solid purple; }
  .btn-ghost:visited {
    color: #9d2586; }

/*********************************/
/* NAV */
/*********************************/
.navbar-inverse {
  background-color: white;
  border-color: white;
  position: relative;
  font-size: 16px; }
  .navbar-inverse .navbar-nav {
    padding: 1rem 0 0 0; }
    .navbar-inverse .navbar-nav li a {
      color: #215f72; }
      .navbar-inverse .navbar-nav li a:hover {
        color: #215f72; }

/* dropdown nav on hover */
.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  font-size: 16px; }

.dropdown-menu {
  background-color: white; }
  .dropdown-menu li a {
    color: #fff; }
    .dropdown-menu li a:focus, .dropdown-menu li a:hover {
      color: white !important;
      background-color: #9d2586; }

/*********************************/
/* subnav */
/*********************************/
#createTaskLink a {
  margin: 0 1rem 1rem 0; }

/*********************************/
/* TABLES */
/*********************************/
.table, .table-striped, .table-condensed {
  box-shadow: 5px 4px 15px 0px rgba(135, 131, 209, 0.2);
  margin: 1rem 0 2rem 0; }
  .table tbody tr th, .table-striped tbody tr th, .table-condensed tbody tr th {
    background-color: #9d2586;
    color: white;
    padding: 1rem;
    border: 0; }
  .table tbody tr td, .table-striped tbody tr td, .table-condensed tbody tr td {
    padding: 1rem; }

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(135, 131, 209, 0.1); }

/* Kendo grid */
/* TODO: DRY! Some styles are over-riding existing ones */
.k-grid {
  border: none !important; }
  .k-grid a {
    color: #9d2586; }
  .k-grid .k-header, .k-grid .k-grouping-header {
    background-color: transparent;
    border: none; }
  .k-grid .k-pager-wrap {
    margin: 2rem 0 0 0; }
  .k-grid .k-grid-header {
    background: #9d2586;
    border: none; }
    .k-grid .k-grid-header .k-grid-header-wrap {
      border: none; }
      .k-grid .k-grid-header .k-grid-header-wrap table thead tr th {
        background-color: #9d2586;
        padding: 1rem;
        border: 0; }
        .k-grid .k-grid-header .k-grid-header-wrap table thead tr th a {
          color: white;
          font-weight: bold; }
  .k-grid tr:hover {
    background-color: transparent !important; }
  .k-grid tr td {
    background-color: transparent;
    border: none !important;
    padding: 1rem; }
  .k-grid .k-grid-footer .k-grid-footer-wrap table tbody tr td {
    background-color: white; }
  .k-grid .k-grid-pager {
    background: white;
    border: none; }
  .k-grid .k-alt td {
    background-color: rgba(135, 131, 209, 0.1);
    border: none; }

.table-bordered {
  border: none; }
  .table-bordered tbody tr td {
    border: none; }

/* FROMS */
.form-horizontal .control-label {
  text-align: left; }

/* Custom fields show / hide */
.custom-field-subHeading {
  cursor: pointer;
  text-align: left; }
  .custom-field-subHeading svg {
    padding: 5px 0 0 0;
    align-self: flex-end;
    animation-duration: 0.8s;
    animation-iteration-count: 5; }

.form-group-with-subHeading {
  display: none; }

/* styles for validation helpers */
.field-validation-error {
  color: #b94a48; }

.field-validation-valid {
  display: none; }

input.input-validation-error {
  border: 1px solid #b94a48; }

select.input-validation-error {
  border: 1px solid #b94a48; }

input[type="checkbox"].input-validation-error {
  border: 0 none; }

.validation-summary-errors {
  color: #b94a48; }

.validation-summary-valid {
  display: none; }

.form-group.required .control-label:after {
  content: " *";
  color: red; }

/* Sales Dashboard */
.sales-dashboard-header {
  margin: 2rem 0 0 0; }
  .sales-dashboard-header .alert {
    margin: 7rem 0 0 0; }

/* Contacts - details */
#contactContents .btn-primary, #contactContents .btn-danger, #contactContents .btn-ghost {
  margin: 0; }

/*# sourceMappingURL=Site.css.map */
