/*Font*/
html,
body {
  /*font-family: sans-serif;*/
  font-family: "Roboto, sans-serif";
}

/*Box and Other Glow Focus Colors*/
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border-color: rgba(51, 107, 54, 0.8) !important;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(51, 107, 54, 0.6) !important;
  outline: 0 none !important;
}

.pointer {
  cursor: pointer;
}

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

.full-width {
  width: 100% !important;
  max-width: none;
}

.carousel-indicators li {
  background-color: #37054a;
}

.carousel-indicators .active {
  background-color: #e68a00;
}

/*Slider Styling for Check Boxes*/
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}

/* Hide default HTML checkbox */
input[type='checkbox'].form-control {
  box-shadow: none;
}

.switch input {
  display: none;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background-color: #37054a;
}

input:focus + .slider {
  box-shadow: 0 0 1px #37054a;
}

input:checked + .slider:before {
  transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 17px;
}

.slider.round:before {
  border-radius: 50%;
}

/*Slider Styling for Check Boxes*/
.control-green {
  background-color: #cbe6cd;
}

/*Form Validation Styling*/
.site-footer {
  position: fixed;
  left: 0px;
  bottom: 0px;
  height: 26px;
  width: 100%;
  background: #37054a;
  color: white;
  z-index: 999 !important;
}

.guest-footer {
  position: fixed;
  left: 0px;
  bottom: 0px;
  height: 26px;
  width: 100%;
  background: #e68a00;
  color: white;
  z-index: 999 !important;
  box-shadow: 0 -1px 5px 1px #FFFFFF;
}

.failed-footer {
  position: fixed;
  left: 0px;
  bottom: 0px;
  height: 26px;
  width: 100%;
  background: #6f2a3b;
  color: white;
  z-index: 999 !important;
  box-shadow: 0 -1px 5px 1px #FFFFFF;
}

.site-footer a {
  color: white;
  text-decoration: underline;
}

.footer-buffer {
  margin-top: 55px;
}

.bottom-buffer {
  margin-bottom: 35px;
}

#page-wrapper {
  padding: 0px !important;
  min-height: calc(100vh - 60px);
}

#page-wrapper-guest,
#page-wrapper-guest {
  padding-bottom: 26px !important;
}

/*Pikaday restyling*/
.pika-button:hover {
  color: #fff !important;
  background: #37054a !important;
}

.is-today .pika-button {
  color: #37054a !important;
  box-shadow: inset 0 1px 3px #876992 !important;
}

.is-selected .pika-button {
  color: #fff !important;
  background: #abc6be !important;
  box-shadow: inset 0 1px 3px #876992 !important;
}

.vertical-center {
  display: inline-block;
  vertical-align: middle;
}

.a-primary {
  color: #336B36;
  text-decoration: underline;
}

/*Panels*/
.panel-resizable {
  resize: both;
  overflow: auto;
  /* something other than visible */
}

.panel-resizable-h {
  resize: horizontal;
  overflow: auto;
  /* something other than visible */
}

.panel-resizable-v {
  resize: vertical;
  overflow: auto;
  /* something other than visible */
}

.panel-custom.collapsed:before {
  content: '\002B';
  font-weight: bold;
  float: left;
  padding-right: 20px;
  margin-left: 5px;
}

.panel-custom:before {
  content: "\2212";
  font-weight: bold;
  float: left;
  padding-right: 20px;
  margin-left: 5px;
}

/*Input Placeholder*/
input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

/* FF 4-18 */
input:focus::-moz-placeholder {
  color: transparent;
}

/* FF 19+ */
input:focus:-ms-input-placeholder {
  color: transparent;
}

/* IE 10+ */
::-webkit-input-placeholder {
  text-align: center;
}

:-moz-placeholder {
  /* Firefox 18- */
  text-align: center;
}

::-moz-placeholder {
  /* Firefox 19+ */
  text-align: center;
}

:-ms-input-placeholder placeholder {
  text-align: center;
}

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

/*Vue Modal Popus Message*/
.modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: table;
  transition: opacity .3s ease;
}

.modal-wrapper {
  display: table-cell;
  vertical-align: middle;
}

.modal-container {
  width: 300px;
  margin: 0px auto;
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
  transition: all .3s ease;
  font-family: Helvetica, Arial, sans-serif;
}

.modal-header h3 {
  margin-top: 0;
  color: #abc6be;
}

.modal-body {
  margin: 20px 0;
}

.modal-default-button {
  float: right;
}

/*
 * The following styles are auto-applied to elements with
 * transition="modal" when their visibility is toggled
 * by Vue.js.
 *
 * You can easily play with the modal transition by editing
 * these styles.
 */
.modal-enter {
  opacity: 0;
}

.modal-leave-active {
  opacity: 0;
}

.modal-enter .modal-container,
.modal-leave-active .modal-container {
  transform: scale(1.1);
}

/* The animation code */
@keyframes update {
  from {
    background-color: #ffff4d;
  }
}

/* The element to apply the animation to */
.updated {
  -webkit-animation: update 3s;
}

/* The animation code */
@keyframes option-update {
  from {
    background-color: #ffff4d;
  }
  /*from {background-color: $secondary-color ;}*/
  to {
    background-color: #ffffff;
  }
}

/* The element to apply the animation to */
.option-updated {
  -webkit-animation: update 3s;
}

/*# Index page styling*/
.callout-light {
  padding: 30px;
  text-align: center;
  color: #000;
  background-color: #b5b5b5;
  min-height: 301px;
  display: block;
}

.callout-sm-default-light {
  box-shadow: inset 0 7px 10px -5px #37054a;
  padding: 5px;
  background-color: #fff;
  display: block;
}

.callout-sm-primary-light {
  box-shadow: inset 0 7px 10px -5px #37054a;
  padding: 5px;
  background-color: #abc6be;
  display: block;
}

.callout-sm-warning-light {
  box-shadow: inset 0 7px 10px -5px #37054a;
  padding: 5px;
  background-color: #e68a00;
  display: block;
}

.callout-light .logo {
  background-color: #fff;
  margin: 35px auto;
  border-radius: 5px;
  padding: 20px;
  width: auto;
}

.callout-light h1,
.callout-light h2,
.callout-light h3,
.callout-light h4 {
  font-weight: 300;
  line-height: 1.4;
}

.callout-light p {
  color: #484848;
  font-size: 17px;
}

.callout-mage {
  padding: 30px;
  background-color: #743C58;
  color: #fff;
}

.callout-bubble {
  padding: 30px;
  color: #fff;
  background-color: #A94545;
}

.callout-bubble h1,
.callout-bubble h2,
.callout-bubble h3,
.callout-bubble h4 {
  font-weight: 300;
  line-height: 1.4;
}

.callout-block {
  background-color: #F5F3F4;
  border-left: 5px solid #a94545;
  border-right: 5px solid #a94545;
  padding: 15px;
}

.callout-block h1,
.callout-block h2,
.callout-block h3,
.callout-block h4 {
  font-weight: 300;
  line-height: 1.4;
}

.src-image {
  display: none;
}

.product {
  overflow: hidden;
  position: relative;
  border: 1px solid #CCC;
  border-radius: 8px;
  text-align: center;
  background-color: #37054a;
  color: #fff;
  margin-bottom: 20px;
  min-height: 417px;
}

.product p {
  padding: 20px;
}

.product .header-bg {
  /* This stretches the canvas across the entire  unit */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 105px;
  border-bottom: 5px #ffffff solid;
  /* This positions the canvas under the text */
  z-index: 1;
}

.product .avatar {
  position: relative;
  margin-top: 15px;
  z-index: 100;
}

.product .avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid white;
}

.product button {
  display: block;
  bottom: 20px;
  left: 35%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  bottom: 20px;
}

/*Panels*/
.panel-resizable {
  resize: both;
  overflow: auto;
  /* something other than visible */
}

.panel-resizable-h {
  resize: horizontal;
  overflow: auto;
  /* something other than visible */
}

.panel-resizable-v {
  resize: vertical;
  overflow: auto;
  /* something other than visible */
}

/*Input Placeholder*/
input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

/* FF 4-18 */
input:focus::-moz-placeholder {
  color: transparent;
}

/* FF 19+ */
input:focus:-ms-input-placeholder {
  color: transparent;
}

/* IE 10+ */
::-webkit-input-placeholder {
  text-align: center;
}

:-moz-placeholder {
  /* Firefox 18- */
  text-align: center;
}

::-moz-placeholder {
  /* Firefox 19+ */
  text-align: center;
}

:-ms-input-placeholder placeholder {
  text-align: center;
}

.topRoundRemove {
  border-radius: 0 0 2px 2px;
}

.max {
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.shadow {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border: solid 1px #aadca3;
}

.shadow strong {
  font-size: 12px !important;
}

.no-padding {
  padding: 0px;
}

.no-margin {
  margin: 0px;
}

.point:hover {
  cursor: pointer;
}

@media (max-width: 768px) {
  .col-xs-12.text-right,
  .col-xs-12.text-left {
    text-align: center !important;
  }
  .mobile-margin {
    margin: 15px 0px !important;
  }
  .mobile-top-buffer {
    margin: 15px 0px 0px 0px !important;
  }
}

.cssload-container {
  display: block;
  margin: 10px auto;
  width: 100px;
}

.cssload-loading i {
  width: 50px;
  height: 50px;
  display: inline-block;
  background: #37054a;
  border-radius: 50%;
}

.cssload-loading i:nth-child(1) {
  animation: cssload-loading-ani1 1s ease-in-out infinite;
  -o-animation: cssload-loading-ani1 1s ease-in-out infinite;
  -ms-animation: cssload-loading-ani1 1s ease-in-out infinite;
  -webkit-animation: cssload-loading-ani1 1s ease-in-out infinite;
  -moz-animation: cssload-loading-ani1 1s ease-in-out infinite;
}

.cssload-loading i:nth-child(2) {
  background: #abc6be;
  margin-left: -10px;
  animation: cssload-loading-ani1 1s ease-in-out 0.5s infinite;
  -o-animation: cssload-loading-ani1 1s ease-in-out 0.5s infinite;
  -ms-animation: cssload-loading-ani1 1s ease-in-out 0.5s infinite;
  -webkit-animation: cssload-loading-ani1 1s ease-in-out 0.5s infinite;
  -moz-animation: cssload-loading-ani1 1s ease-in-out 0.5s infinite;
}

@keyframes cssload-loading-ani1 {
  70% {
    transform: scale(0.5);
  }
}

div.top-buffer {
  margin-top: 20px;
}

a.nostyle:link {
  text-decoration: inherit;
  color: inherit;
  cursor: auto;
}

a.nostyle:visited {
  text-decoration: inherit;
  color: inherit;
  cursor: auto;
}

.thead-inverse {
  background-color: #37054a;
  color: #eeeeee;
  padding: 4px;
}

.thead-inverse th {
  padding: 5px;
}

.flash-notify {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.loader {
  border: 16px solid #eeeeee;
  /* Light grey */
  border-top: 16px solid #37054a;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  margin-right: auto;
  margin-left: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.accordion {
  border: solid 1px #37054a;
}

.accordion .header {
  background-color: #37054a;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 15px;
  font-weight: bold;
  transition: 0.4s;
}

.accordion.active .header, .accordion .header:hover {
  background-color: #abc6be;
}

.accordion .header:before {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: left;
  padding-right: 20px;
  margin-left: 5px;
}

.accordion.active .header:before {
  content: "\2212";
}

.panelaccordion {
  padding: 0 18px;
  background-color: white;
  /* max-height: 0; */
  width: -webkit-fill-available;
  transition: max-height 0.2s ease-out;
  display: inline-block;
  clear: both;
}

@media (min-width: 992px) {
  .col-md-1 {
    width: 8.3333333333% !important;
  }
  .col-md-2 {
    width: 16.6666666667% !important;
  }
  .col-md-3 {
    width: 25% !important;
  }
  .col-md-4 {
    width: 33.33333333% !important;
  }
}

/* width */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

input[type="radio"] {
  box-shadow: none !important;
}

.dropdown > a > .fa {
  color: #fff;
}

.dropdown a {
  color: #ffffff;
}

.dropdown a:hover {
  color: #ffffff !important;
  background-color: #37054a !important;
}

.dropdown a:hover > .fa {
  color: #ffffff !important;
}

.sidebar-nav a {
  color: #2a3b6f !important;
  background-color: #fff;
}

.sidebar-nav .fa {
  padding-right: 7px;
  color: #2a3b6f !important;
}

.sidebar-nav a:hover .fa {
  color: #fff !important;
}

.sidebar-nav a.active .fa {
  color: #fff !important;
}

.sidebar-nav a:focus {
  color: #fff;
  background-color: #37054a;
}

.sidebar-nav a:focus .fa {
  color: #fff !important;
}

.sidebar-nav li {
  border-bottom: 1px #eeeeee solid !important;
}

.navbar-brand {
  color: #fff !important;
}

/*.navbar-brand :hover {
  color: #ffffff !important;
  background-color: $secondary-color !important;
}*/
.navbar-top-links li a {
  color: #fff !important;
}

.dropdown-menu li a,
.dropdown-menu li i {
  color: #37054a !important;
}

.navbar-top-links li a:hover,
.navbar-top-links li a:focus {
  color: #ffffff !important;
  background-color: #abc6be !important;
}

.navbar {
  background-color: #37054a;
  border-bottom: 1px solid #37054a !important;
}

.sidebar ul li:first-child {
  border-top: 1px solid #37054a !important;
}

.navbar-static-top,
.navbar-default {
  border: none;
}

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

.sidebar ul li a.active {
  background-color: #37054a !important;
}

.nav-second-level li a {
  color: #37054a !important;
  background-color: #ffffff !important;
  /*border-bottom: 1px solid $primary-color;*/
}

.fap {
  padding-right: 20px;
}

.sidebar ul li a:hover,
.sidebar ul li a:focus {
  color: #ffffff !important;
  background-color: #abc6be !important;
}

.sidebar ul li a.active {
  color: #ffffff !important;
  background-color: #abc6be !important;
}

/*Jum otron Overwright*/
.jumbotron {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

/*Jumbotron Overwright*/
.jumbotron-primary {
  background-color: #eeeeee !important;
  color: #37054a !important;
  font-size: 18px !important;
}

.jumbotron-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #6f2a3b;
}

/*Alert Styling*/
/*Panel primary styling*/
.panel-primary {
  border-color: #37054a !important;
}

.panel-primary > .panel-heading {
  color: #ffffff !important;
  background-color: #37054a !important;
  border-color: #37054a !important;
}

.panel-primary-reverse {
  border-color: #37054a !important;
}

.panel-primary-reverse > .panel-heading {
  color: #37054a !important;
  background-color: #ffffff !important;
}

.panel-primary > .panel-sm {
  padding: 3px;
}

/*Panel Error styling*/
.panel-danger {
  border-color: #6f2a3b !important;
}

.panel-danger > .panel-heading {
  color: #ffffff !important;
  background-color: #6f2a3b !important;
  border-color: #6f2a3b !important;
}

.table-panel {
  margin-bottom: 22px;
}

.table-panel .panel-heading {
  border-top: 1px solid #37054a !important;
  border-left: 1px solid #37054a !important;
  border-right: 1px solid #37054a !important;
}

/*Table Styling*/
.table.table-primary {
  border: 1px solid #37054a !important;
  border-top: 1px solid #eeeeee !important;
}

.table.table-primary th {
  background-color: #37054a !important;
  border: 1px solid #37054a !important;
  border-right: 1px solid #eeeeee !important;
  border-top: 1px solid #ffffff !important;
  color: #ffffff !important;
}

.table.table-primary th:last-child {
  border-right: 1px solid #37054a !important;
}

.table.table-primary th.th-search {
  border-color: #37054a !important;
  background-color: #fff !important;
}

.table.table-primary th.no-border {
  border: none;
}

/*
 .table.table-primary td {
     border-bottom:1px solid  $primary-color;
 
}
*/
.table.table-primary tr.groupedRow {
  border-color: #abc6be !important;
}

.table.table-primary td.td-group {
  background-color: #abc6be !important;
  border-color: #abc6be !important;
  color: #37054a;
}

.table.table-highlight tr:hover {
  background-color: #FFD700 !important;
}

/*Padding*/
.table.table-no-padding td {
  padding: 0px 3px;
}

.table.table-light-padding td {
  padding: 4px;
}

.table.table-heavy-padding td {
  padding: 10px;
}

/*Margin*/
.table.table-no-margin {
  margin-bottom: 0px !important;
}

.table-striped.table-primary > tbody > tr:nth-child(2n+1) {
  background-color: #eeeeee;
}

.table.table-highlight > tbody > tr:nth-child(2n+1):hover {
  background-color: #FFD700 !important;
}

/*Font Awesome*/
i.fa-primary {
  color: #37054a;
}

i.fa-default {
  color: white;
}

i.fa-danger {
  color: #6f2a3b;
}

i.fa-gray {
  color: #eeeeee;
}

i.fa-xs {
  font-size: 10px;
}

i.fa-sm {
  font-size: 12px;
}

i.fa-md {
  font-size: 14px;
}

i.fa-ld {
  font-size: 20px;
}

i.fa-xl {
  font-size: 30px;
}

/*Select CSS Styling*/
select.sel-primary {
  display: inline-block;
  width: 100%;
  padding: 2px 2px 2px 10px;
  outline: none;
  color: #74646e;
  border: 1px solid #C8BFC4;
  border-radius: 4px;
  box-shadow: inset 1px 1px 2px #ddd8dc;
  background: #fff;
  /*-webkit-appearance: none; //Drop down icon
    -moz-appearance: none;
    appearance: none;*/
}

select.sel-sm {
  height: 20px !important;
  font-size: 10px !important;
}

select.sel-md {
  height: 36px !important;
  font-size: 14px !important;
}

select.sel-ld {
  height: 45px !important;
  font-size: 18px !important;
}

/*Input Styling*/
input.input-xs {
  height: 22px;
  padding: 2px 5px;
  font-size: 10px;
  line-height: 1;
  border-radius: 2px;
}

input.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/*Header Styling*/
.h-primary {
  color: #37054a !important;
}

.h-danger {
  color: #6f2a3b !important;
}

.icon-primary {
  color: #37054a !important;
}

.icon-lg {
  height: 50px;
  width: 50px;
  background-color: #37054a;
  text-align: center;
  border-radius: 10px;
  margin: -20px;
  font-size: 30px;
  padding: 10px;
  line-height: 5px;
}

.card-primary {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  margin: 20px;
  border: solid 1px #876992;
  border-radius: 10px;
}

.h-default {
  color: #ffffff !important;
}

/*Horizontal Row Styling*/
hr.hr-primary {
  border-top: 1px solid #37054a !important;
}

hr.no-padding {
  padding: 0px !important;
}

hr.no-margin {
  margin-top: 0px !important;
}

/* Tooltip */
.tooltip {
  opacity: 1;
  z-index: 1049 !important;
}

.tooltip > .tooltip-inner {
  background-color: #37054a;
  width: 200px;
  max-width: 200px;
  color: #FFFFFF;
}

/* Tooltip on top */
.tooltip.top > .tooltip-arrow {
  border-top: 5px solid #37054a;
}

/* Tooltip on bottom */
.tooltip.bottom > .tooltip-arrow {
  border-bottom: 5px solid #37054a;
}

/* Tooltip on left */
.tooltip.left > .tooltip-arrow {
  border-left: 5px solid #37054a;
}

/* Tooltip on right */
.tooltip.right > .tooltip-arrow {
  border-right: 5px solid #37054a;
}

/*Label Styling*/
.label.label-primary {
  background-color: #37054a;
}

.btn.btn-primary {
  color: #fff !important;
  border: 1px solid #37054a !important;
  background-color: #37054a !important;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
  color: #37054a !important;
  border: 1px solid #37054a !important;
  background-color: #fff !important;
  outline: 0 !important;
}

.btn.btn-success {
  color: #fff !important;
  border: 1px solid #2a6f6f !important;
  background-color: #2a6f6f !important;
}

.btn.btn-success:hover,
.btn.btn-success:focus {
  color: #2a6f6f !important;
  border: 1px solid #2a6f6f !important;
  background-color: #fff !important;
  outline: 0 !important;
}

.btn.btn-danger {
  color: #fff !important;
  border: 1px solid #6f2a3b !important;
  background-color: #6f2a3b !important;
}

.btn.btn-danger:hover,
.btn.btn-danger:focus {
  color: #6f2a3b !important;
  border: 1px solid #6f2a3b !important;
  background-color: #fff !important;
  outline: 0 !important;
}

.btn.btn-info {
  color: #fff !important;
  border: 1px solid #2a3b6f !important;
  background-color: #2a3b6f !important;
}

.btn.btn-info:hover,
.btn.btn-info:focus {
  color: #2a3b6f !important;
  border: 1px solid #2a3b6f !important;
  background-color: #fff !important;
  outline: 0 !important;
}

.btn.btn-warning {
  color: #fff !important;
  border: 1px solid #e68a00 !important;
  background-color: #e68a00 !important;
}

.btn.btn-warning:hover,
.btn.btn-warning:focus {
  color: #e68a00 !important;
  border: 1px solid #e68a00 !important;
  background-color: #fff !important;
  outline: 0 !important;
}

.text-default {
  color: #fff;
}

.text-secondary {
  color: #abc6be !important;
}

.arrow {
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  margin-left: 5px;
  opacity: 0.66;
}

.arrow.asc {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #fff;
}

.arrow.dsc {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #fff;
}

.pills-primary {
  color: #37054a !important;
  border: 1px solid #37054a !important;
  background-color: #fff !important;
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.6;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pills-primary-active {
  color: #fff !important;
  border: 1px solid #37054a !important;
  background-color: #37054a !important;
}

.well.well-primary {
  background: white;
  border: 3px dashed #37054a;
}

.well.well-primary:hover {
  background: #eeeeee;
  border: 3px solid #37054a;
}

.modal.fade:not(.in).left .modal-dialog {
  transform: translate3d(-25%, 0, 0);
}

.modal.fade:not(.in).right .modal-dialog {
  transform: translate3d(25%, 0, 0);
}

.modal.fade:not(.in).bottom .modal-dialog {
  transform: translate3d(0, 25%, 0);
}

/* Alternative Angles */
.modal.fade:not(.in).top-left .modal-dialog {
  transform: translate3d(-25%, -25%, 0);
}

.modal.fade:not(.in).top-right .modal-dialog {
  transform: translate3d(25%, -25%, 0);
}

.modal.fade:not(.in).bottom-left .modal-dialog {
  transform: translate3d(-25%, 25%, 0);
}

.modal.fade:not(.in).bottom-right .modal-dialog {
  transform: translate3d(25%, 25%, 0);
}

.modal.fade:not(.in).left .modal-dialog {
  transform: translate3d(-25%, 0, 0);
}

.modal.fade:not(.in).right .modal-dialog {
  transform: translate3d(25%, 0, 0);
}

.modal.docked .modal-dialog {
  position: fixed;
  top: 0;
  margin: 0;
  width: 350px;
}

.modal.docked.docked-left .modal-dialog {
  left: 0;
}

.modal.docked.docked-right .modal-dialog {
  right: 0;
}

.modal.docked .modal-content {
  border-radius: 0;
}

.modal.docked .modal-footer {
  position: fixed;
  bottom: 0;
  right: 0;
}

.badge.badge-sm {
  padding: 2px 4px !important;
  font-size: 10px !important;
  line-height: 1 !important;
  border-radius: 5px !important;
}

.badge.badge-lg {
  padding: 4px 10px !important;
  font-size: 14px !important;
  line-height: 2 !important;
  border-radius: 10px !important;
}

.badge.badge-primary {
  background-color: #37054a !important;
  color: #fff !important;
}

.badge.badge-danger {
  background-color: #6f2a3b !important;
  color: #fff !important;
}

.badge.badge-warning {
  background-color: #e68a00 !important;
  color: #fff !important;
}

.badge.badge-info {
  background-color: #2a3b6f !important;
  color: #fff !important;
}

.badge.badge-default {
  background-color: #fff !important;
  color: #37054a !important;
}

/*# sourceMappingURL=agribase_site.css.map */
