html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.autocomplete {
  position: relative;
}

.autocomplete-items {
  position:absolute; 
  z-index: 99; 
  top: 100%;
  left:0;
  right:0;
}

.autocomplete-items div {
  background-color: #fff; 
  cursor: pointer; 
  padding: 10px;
  border-bottom: 1px solid #d4d4d4;
  border-left: 1px solid #d4d4d4;
  border-right: 1px solid #d4d4d4;

}

.autocomplete-items div:hover {
  background-color: #e9e9e9;
}
.autocomplete-items div.active {
  background-color: DodgerBlue;
  color: #ffffff;
}

.autocomplete-suggestion-main {
  font-weight: bold;
}

.autocomplete-suggestion-secondary {
  font-weight: lighter;
}

/* Selectize to work with form-floating */
.selectize-input {
padding-top: 26px !important;
padding-bottom: 6px !important;
border-top-left-radius: 5px !important;
border-bottom-left-radius: 5px !important;
}

div.selectize-control {
  left: 0 !important;
  top: 0 !important;
  position: absolute;
  display: inline-block;
  padding-top: 0px !important;
}

.selectize-control + label {
  z-index: 1500;
}

.photo-display {
  border-radius: 5px;
  border-color: darkgray;
  border-width: 1px;
  border-style: solid;
  min-height: 210px;
  min-width: 200px;
  margin-left: 1em;
  margin-right: 1em;
  align-content: center;
  width: fit-content;
}

.canvas-container > video,
.canvas-container > img {
  max-width: 200px;
  max-height: 200px;
}

.fixed-square {
  width: 10em;
  min-width: 10em;
  max-width: 10em;
  height: 210px;
  border: 1px solid gray ;
  border-radius: 5px;
  align-content: center;
  margin-right: 2em;
  margin-left: 2em;
  text-align: center;
}

.fixed-square.highlight {
  background-color: lightblue;
}

.floating-icon 
{
  padding: 2px;
  border-radius: 100px;
  background-color: lightgray;
  position: absolute;
  top: 0;
  left: 0;
}

.floating-icon:hover {
  background-color: lightblue;
}

.canvas-container {
  position: relative;
  padding-left: 1em;
  padding-right: 1em;
  vertical-align: middle;
  display: inline-block;
}

.btn-primary {
  background-color: #C32F4B;
  border-color: #C32F4B;
}

.btn-primary:hover {
    background-color: #802031;
    border-color: #802031;
}

.btn-primary:focus {
    background-color: #802031;
    border-color: #802031;
}

.btn-outline-primary {
  border-color: #C32F4B;
  color: #C32F4B;
}

.btn-outline-primary:hover {
  border-color: #C32F4B;
  color: #fff;
  background-color: #C32F4B;
}

.btn-outline-primary:focus {
  border-color: #C32F4B;
  color: #fff;
  background-color: #C32F4B;
}

.body-styles {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.tag {
  border: 1px solid;
  border-radius: 5px;
  width: fit-content;
  padding: 1px 5px;
  font-size: .75rem;
}

.tag.grey {
  border-color:#767676;
  background-color: rgba(0, 0, 0, 0.1);
  color: #767676;
}

.inline-form {
    display: inline;
}

/* Flow List Styles */

.flow-list .item  {
  border: 1px solid #e6e7e8;
  border-radius: 5px;
}

.flow-list :hover {
  background-color: #f5f5f5;
}

.flow-list a {
  text-decoration: none;
  color: #1e1e1e;
}

.flow-list .item-id {
  background-color: #C32F4B;
  color: #fff;
  max-width: 2.5rem;
  font-weight: 700;
  text-align: right;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.flow-list .item-id.off {
  background-color: #767676 !important;
}

.flow-list .item-alias {
  color: #767676;
}

.flow-list a:hover {
  text-decoration: none;
  color: #1e1e1e;
}

a {
  color: #C32F4B;
}
a:hover {
  color: #C32F4B;
}

.nav-link {
  color: #C32F4B;
}

.nav-link:hover {
  color: #C32F4B;
}

.form-check-input:checked {
    background-color: #C32F4B;
    border-color: #C32F4B;
}

.contain-box {
  background-color: #C32F4B;
  color: #fff;
  border-radius: 38px;
  
}