@charset "utf-8";

/* Forms
 **********************************/

/* Headings */
form h2 {
  font-size: 16px;
  margin: 10px auto 20px auto;
  font-weight: 500;
}
form label,
form h3 {
  clear: both;
  font-size: 1.1em;
  font-weight: 500;
  margin-top: 14px;
  margin-bottom: 4px;
  line-height: 1.5;
  position: relative;
}
input[type="radio"] + h3,
input[type="radio"] + label {
  display: inline;
}
input[type="radio"] + label {
  margin-right: 10px;
}
form h4 {
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0 6px 0;
}


/* Columns */
form p,
form .inline {
  margin-top: 10px;
  margin-bottom: 0;
}
form .half p {
  margin: 0;
}
form .half { 
  width: 48%;
  display: inline-block;
  vertical-align: top;
}
form .half + .half { 
  margin-left: 2%;
}
form .inline,
form .inline + .hint,
form .inline p,
form .inline p label,
form .inline p input {
  display: inline;
}
form .inline input {
  margin: 0 6px;
}
.bsmList {
  width: 94%;
  display: table;
}
form .show_restrictions div {
  display: inline;
  font-size: small;
}
form .show_restrictions {
  position: relative;
  margin-left: 9px;
}
form .show_restrictions:before {
  content: '\f13e';
  font-family: FontAwesome;
  margin-right: 5px;
  font-size: larger;
}
form .pin_name_container {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 0;
}
form .pin_name_container:has(.unconnect_pin.active) {
  grid-template-areas: 
    "show_unconnect_pin"
    "unconnect_pin"
    "hints"
    "show_connect_pin"
    "connect_pin";
}
form .pin_name_container:has(.connect_pin.active) {
  grid-template-areas: 
    "show_unconnect_pin"
    "unconnect_pin"
    "show_connect_pin"
    "connect_pin"
    "hints";
}
form .show_connect_pin { grid-area: show_connect_pin; }
form .show_unconnect_pin { grid-area: show_unconnect_pin; }
form .connect_pin { grid-area: connect_pin; }
form .unconnect_pin { grid-area: unconnect_pin; }
form .hints {
  grid-area: hints;
  padding-left: 22px;
  padding-right: 19px;
  margin-left: 7px;
  margin-top: -12px;
}
form .connect_pin.active + .hints {
  padding-left: 28px;
  padding-right: 38px;
  margin-left: 7px;
}

form .show_connect_pin,
form .show_unconnect_pin {
  font-size: small;
}
form .show_connect_pin:before,
form .show_unconnect_pin:before {
  content: '\f10c';
  font-family: fontAwesome;
  font-size: larger;
  margin-right: 6px;
  color: var(--brand-color);
}
form .show_connect_pin.active:before,
form .show_unconnect_pin.active:before {
  content: '\f05d';
}
form .pin_name_container a.active:before {
  color: var(--brand-color);
  font-size: x-large;
  margin-left: -2px;
}
form .connect_pin,
form .unconnect_pin {
  border-left: 2px dashed lightgrey;
  background: transparent;
  padding: 10px 20px;
  margin-left: 7px;
  opacity: 0.5;
}
form .connect_pin.active,
form .unconnect_pin.active,
form .hints {
  border-left: 1px solid var(--brand-color);
  opacity: 1;
}
form .connect_pin {
  display: grid;
  grid-template-columns: 1fr 42px;
  column-gap: 0;
  grid-template-areas: 
    "select add"
    "hint add";
  padding: 6px 10px 6px 26px;
}
form .connect_pin .input {
  grid-area: select;
}
form .connect_pin .hint {
  grid-area: hint;
}
form .connect_pin a {
  grid-area: add;
  font-size: 0.85rem;
  height: 30px;
  width: 30px;
  line-height: 32px;
  text-align: center;
  color: #fff;
  background: var(--brand-color);
  padding: 0;
  border-radius: 30px;
  justify-self: start;
  margin-top: 33px;
}
form .connect_pin a:hover {
  color: #fff !important;
}

/* Errors */
.field_with_errors {
  display: inline;
}
.field_with_errors input,
.field_with_errors select,
.field_with_errors textarea {
  box-shadow: 0 0 6px 2px #ffcf99  !important;
}
.field_with_errors .error,
.hint + .error {
  display: block;
  color: rgb(224, 167, 86);
}



/* Infos */
.required > abbr {
  font-weight: bold;
  color: #ff0000;
  position: absolute;
  right: -10px;
  font-size: 16px;
  text-decoration: none;
}
span.required {
  font-weight: bold;
  color: #ff0000;
  font-size: 16px;
  margin:0 6px;
  display: inline;
}
.plate .infonote,
.hint {
  margin: 2px 0 6px 3px;
  font-size: 12px;
  line-height: 17px;
  width: 96%;
}
.hint .speechbubble_top{
  margin-top: 20px;
}
.edit .hint .speechbubble_top{
  background: #eaeaea;
  width: inherit !important;
}
.edit .hint .speechbubble_top:after {
  border-bottom-color: #eaeaea;
}
.placeholder{
  color: #a9a9a9 !important;
}

/* Buttons */
input[type="submit"],
.plate:not(.start) .button,
.question .grid .button {
  width: auto !important;
  margin-top: 22px;
  font-size: 1.3em;
  font-family: var(--ff-body);
  line-height: 3.6em;
  padding: 0 20px;
  text-transform: uppercase;
  border: 1px solid #666;
  border-radius: 8px;
  color: #fff !important;
  display: inline-block;
  background-color: #666;
  background-image: linear-gradient(#666, #444);
  text-decoration: none;
  text-shadow: 0 1px 0 #444;
  background-clip: padding-box;
}
input[type="submit"]:hover,
.plate:not(.start) .button:hover,
.question .grid .button:hover {
  border: 1px solid #787878;
  box-shadow:inset 0px 1px 0px 0px #918e91;
  color: #fafafa !important;
  background-color: #6e6d6e;
  background-image: linear-gradient(#6e6d6e, #3b3a3b );
  text-shadow: 1px 1px 0px #1a191a;
}
.question .grid .button {
  padding-right: 20px;
  font-weight: 400;
}
.secondary,
.start.plate .button,
.question .button.highlight {
  color: #676767 !important;
  padding-right: 16px;
  font-weight: lighter;
  font-size: initial;
}
.tertiary {
  border: 1px solid #f88046;
  font-size: 1.3em;
  line-height: 1em;
  display: inline-block;
  color: #f88046;
  border-radius: 4px;
  text-decoration: none;
  padding: 10px 16px;
  font-weight: lighter;
}
.tertiary:hover {
  color: #f88046 !important;
}
:not(nav) > .back {
  color: #676767 !important;
  font-size: 1.3em;
  position: relative;
}
:not(nav) > .back:before {
  content: '\f100';
  font-family: FontAwesome;
  margin-right: 6px;
}
.banner + .question {
  position: relative;
}
.banner + .question > .back {
  position: absolute;
  top: -22%;
  left: -1%;
}
.start.plate .button,
.question .button.highlight {
  background: #f2f2f2;
  padding: 1% 7% 1% 3%;
  border-radius: 4px;
  display: inline-block;
}
.start.plate .button {
  padding: 6px 35px 6px 22px;
}
.secondary:after,
.start.plate .button:after,
.question .button.highlight:after {
  content: '\f105';
  font-family: FontAwesome;
  position: absolute;
  margin-left: 9px;
}

.start.plate .button:hover,
.question .button:hover {
  background-color: #F4D185;
}
.button.highlight {
  background-color: #fbfcff;
  border: 2px dotted #918e91;
  font-weight: bold;
  margin: 10px 0;
}
/* Button variants */
.plate:not(.start) .button.orange {
  border: 1px solid #e0ab46;
  box-shadow: inset 0 1px 0 0 #ebc275;
  color: #fff !important;
  background-color: #f1a82a;
  background-image: linear-gradient(#f1a82a, #e98511 );
  text-shadow: 1px 1px 0 #c77b05;
}
.plate:not(.start) .button.orange:hover {
  background-color: #fcb740;
  background-image: linear-gradient(#fcb740, #e8932f );
}
.plate:not(.start) .button.green {
  border: 1px solid #46e081;
  box-shadow: inset 0 1px 1px 0 #99eb75;
  color: #fff !important;
  background-color: #13d36b;
  background-image: linear-gradient(#13d36b, #16bf57 );
  text-shadow: 1px 1px 0 #16bf57;
}
.plate:not(.start) .button.green:hover {
  background-color: #32d953;
  background-image: linear-gradient(#32d953, #1aa76c );
}
.button.add {
  position: relative;
}
.button.add:before {
  content: "+";
  position: absolute;
  top: 3px;
  left: -20px;
  color: #ccc;
  font-size: 24px;
  text-shadow: none;
}
.plate.pin .back + .right a {
  display: inline-block;
  margin-right: 10px;
  color: #232323;
}
.pinbuttons a,
.buttons > a,
.buttons .other,
.buttons .news,
.plate > #search_form ~ .left a {
  position: relative;
  padding: 6px 12px;
  margin-right: 10px;
  border-radius: 6px;
  color: white;
  font-size: small;
}
.pinbuttons a:before,
.buttons > a:before,
.plate.pin .clipboard:before,
.plate > #search_form ~ .left a:before {
  font-family: FontAwesome;
  padding-right: 6px;
  text-shadow: none;
}
.pinbuttons a:hover,
.buttons > a:hover {
  color: #4183c4 !important;
}
.pinbuttons a,
.buttons > a,
.plate > #search_form ~ .left .clipboard {
  background-color: #efecec;
  background-image: linear-gradient(#fff, #efecec);
  color: #4183c4;
  border: 1px solid #cdcdcd;
}
.new {
  background-color: #4183c4 !important;
  background-image: linear-gradient(#77a9da, #4183c4) !important;
  border: 1px solid #3288cc !important;
  color: white !important;
}
:not(.tooltip).drop,
:not(.open).toggleclose {
  background-color: #000 !important;
  background-image: linear-gradient(#6b6a6a, #000) !important;
  color: white !important;
  border: none;
}
.pinbuttons .new:hover,
.pinbuttons :not(.tooltip).drop:hover,
.pinbuttons :not(.open).toggleclose,
.buttons :not(.tooltip).drop:hover,
.buttons :not(.open).toggleclose,
.buttons .other:hover,
.buttons .clean.active:hover,
.buttons .news.active:hover,
.buttons .new:hover,
.buttons .news:hover {
  color: white !important;
}
.buttons :not(.open).toggleclose {
  border: black !important;
}
.buttons .other {
  background-color: #e89738;
  background-image: linear-gradient(#f5b974, #e89738);
  border: 1px solid #f5b974;
  position: relative;
  padding-left: 35px;
}
.buttons .news {
  background-color: var(--brand-color);
  background-image: linear-gradient(color-mix(in srgb, white 20%, var(--brand-color)), var(--brand-color));
  border: 1px solid var(--brand-color);
}
a.other.active {
  border-radius: 6px 6px 0 0;
  background: #e89738;
  padding-bottom: 11px;
  border: none;
}
a.news.active {
  border-radius: 6px 6px 0 0;
  background: #2b9157;
  padding-bottom: 11px;
  border: none;
}
a.invite.active,
a.date.active {
  border-radius: 6px 6px 0 0;
  background: #4183c4 !important;
  padding-bottom: 10px;
}
a.clean.active,
a.stats.active {
  border-radius: 6px 6px 0 0;
  background: #5d5d5d !important;
  padding-bottom: 11px;
  color: white !important;
}
:not(.tooltip).drop:before {
  content: '\f127';
}
.toggleclose:before {
  content: '\f05e';
}
.new:before,
:not(.burger).open:before {
  content: "\f067";
}
.other:not(section):before {
  content: '';
  background: url("/assets/icon_th_grid-invert-4f739005.svg") top left no-repeat;
  background-size: contain;
  position: absolute;
  width: 18px;
  height: 18px;
  top: 7px;
  left: 10px;
}
.clean:before {
  content: "\f1de";
}
.stats:before {
  content: "\f080";
}
.news:before {
  content: "\f1ea";
}
section.news_container a:not(.close):before {
  content: "\f0f6";
  font-family: FontAwesome;
  padding-right: 6px;
}
.order section[class$="_container"] a[href*=".pdf"]:before {
  content: "\f1c1";
  color: #ea4335;
  margin-right: 6px;
  font-size: larger;
  font-family: var(--fa-style-family-classic);
}
.order section[class$="_container"] ul li > a {
  font-size: 1rem;
}
.order section[class$="_container"] ul li > .fa {
  color: #4183c4;
  font-size: larger;
}
.order section[class$="_container"] ul li {
  border-bottom: 1px solid #dedede;
  padding: 6px 0;
}
.order section[class$="_container"] ul li:last-child {
  border-bottom: 0;
}

.pinbuttons .clipboard:before,
.plate.pin .clipboard:before,
.pinview a:not(.tooltip).clipboard:before,
.batch .button:before, 
.plate > #search_form ~ .left .clipboard:before {
  content: '\f24d' !important;
  font-family: FontAwesome;
}
.buttons .mail:before {
  content: '\f1d9';
}
.rinse .button:before {
  content: '\f127';
  font-family: FontAwesome;
}

.default {
  position: relative;
  background-color: #dfdfdf;
  background-image: linear-gradient(#dfdfdf, #c7c7c7);
  color: #444;
  padding: 4px 6px 4px 26px;
}
.default:hover {
  background: #fadd65;
  color: #000 !important;
  text-decoration: none !important;
}
.default:before {
  content: '';
  position: absolute;
  top: 4px;
  left: 5px;
  width: 14px;
  height: 14px;
}
body.backend .plate .button {
  border-radius: 6px !important;
  font-size: 0.8em !important;
  padding: 3px 10px 2px 10px !important;;
}
.login.plate .secondary {
  font-size: 1.3em;
  line-height: 1em;
  display: inline-block;
  color: #fff !important;
  background: #f88046;
  border-radius: 4px;
  text-decoration: none;
  padding: 10px 16px;
}
.login.plate .secondary:after {
  content: '';
}
.login.plate .secondary:hover {
  text-decoration: underline;
}
.start.plate .button[href*="home"],
.start.plate .button[href*="test"],
.start.plate .expanded a[href^="/index.html"],
.start.plate .expanded a[target="_blank"]  {
  color: white !important;
  text-align: center;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bold !important;
  -webkit-font-smoothing: antialiased;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.start.plate .expanded a[target="_blank"] {
  padding: 1.2% 6% 1.2% 2% !important;
  border-radius: 4px;
}
.start.plate .button[href*="home"]:hover,
.start.plate .button[href*="test"]:hover,
.start.plate .expanded a[href^="/index.html"]:hover,
.start.plate .expanded a[target="_blank"]:hover {
  text-decoration: none;
  background: #2f2f2f;
}
.start.plate .expanded a[target="_blank"]:after {
  content: '\f08e' !important;
  font-family: FontAwesome;
  margin-left: 10px !important;
}
.start.plate .expanded a[href*="mailto:"] {
  padding: unset !important;
  border-radius: 0;
  font-size: inherit !important;
  font-weight: bolder !important;
  background: transparent !important;
  text-transform: none;
  color: var(--brand-color) !important;
  box-shadow: none;
}
.start.plate .expanded a[href*="mailto:"]:after {
  margin-left: 5px !important;
}
.start.plate .expanded a[href*="mailto:"]:hover {
  text-decoration: underline;
}

.plate.pinview .qr_container {
  text-align: center;
  padding: 10%
}
.scanqr {
  margin-left: -21px;
}
.scanqr > img {
  height: 48px;
  margin-top: -5px;
  margin-bottom: -22px;
}

/* Pulse animation */
.animated { 
  -webkit-animation-duration: 1s; 
          animation-duration: 1s; 
  -webkit-animation-fill-mode: both; 
          animation-fill-mode: both; 
  -webkit-animation-iteration-count: 6; 
          animation-iteration-count: 6;
}
@-webkit-keyframes pulse { 
  0% { -webkit-transform: scale(1); } 
  50% { -webkit-transform: scale(1.1); } 
  100% { -webkit-transform: scale(1); } 
}
@keyframes pulse { 
  0% { transform: scale(1); } 
  50% { transform: scale(1.1); } 
  100% { transform: scale(1); } 
} 
.pulse { 
  -webkit-animation-name: pulse; 
          animation-name: pulse; 
}


/* Stop Sign */
.expanded .stop {
  color: red;
  font-weight: bold;
  position: relative;
  padding: 20px 20px 20px 90px;
  border: 2px solid red;
  border-radius: 10px;
}
.expanded .stop:before {
  content: '';
  width: 50px;
  height: 50px;
  background: url("/assets/octagon-be5b5140.svg") top left no-repeat;
  background-size: contain;
  position: absolute;
  margin-left: -67px;
}


/* Buttons in test/practice */
.question .thetest button.correct {
  text-decoration:underline;
}
.question .thetest button { /* Basic style */
  display: block;
  width: 90% !important;
  white-space: normal;
  margin-top: 22px;
  padding: 18px 30px;
  border-radius: 3px;
  background-clip: padding-box;
  -webkit-tap-highlight-color: transparent;
  text-align: left;
  font-size: 18px;
  line-height: normal;
  font-weight: normal !important;
  text-transform: inherit !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;

  /* Coloring, grey */
  color: #000 !important;
  text-shadow: none !important;
  box-shadow: inset 0 1px 0 0 #f0f0f0;
  border: 1px solid #adadad;
  background-color: #e5e5e3;
  background-image: linear-gradient(#e5e5e3, #bebebe);
}
.question .thetest button:hover,
.question .thetest button:active {
  cursor: pointer;
  /* lighter grey */
  text-shadow: 0 1px 2px #666;
  border: 1px solid #adadad;
  background-color: #f2f2f2;
  background-image: linear-gradient(#f2f2f2, #c8c7c7);
  /* orange glow */
  box-shadow: 0 0 4px 2px #eaa82c;
}
.question .thetest button.checked {
  outline: 0;
  color: #000 !important;
  text-shadow: none !important;
  /* orange inset */
  border: 1px solid #c58409;
  background-color: #eaa82c;
  background-image: linear-gradient(#eaa82c, #d48e0a);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
}
.question .thetest button.checked:hover,
.question .thetest button.checked:active {
  /* light orange */
  background-color: #f9da99;
  background-image: linear-gradient(#f9da99, #eca41e);
  /* orange glow */
  box-shadow: 0 0 4px 2px #eaa82c;
}
/* Focus shows when clicked and until the next question loads */
.question .thetest button:focus,
.question .thetest button.checked:focus { 
  outline: 0;
  background-image: none;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.3) !important;
}


/* Inputs */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
select {
  width: 97%;
  height: 27px;
  border-radius: 3px;
  box-shadow: inset 0 8px 6px -6px #c7c7c7;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  border: 1px solid #cbcbcb;
  padding: 2px 4px;
}
input.integer {
  width: 30px;
  text-align: center;
}
input[type="date"] {
  width: 145px;
}
.login.plate input[type="submit"] {
  line-height: 2em;
  white-space: pre-line;
  display: inline-block;
  float: left;
  margin: initial;
}
input[readonly="readonly"]{
  background: #e7e6e6;
  color: #999;
  border: 1px solid #c6c6c6;
}



/* Selects */
select {
  width: 100%;
  height: 36px;
  background: #fff url("/assets/icon_select_arrow-82781a63.png") center right no-repeat;
  padding: 4px 47px 4px 7px;
  outline: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
select::-ms-expand {
  display: none;
}
#new_order input.integer {
  margin-left: 14px !important;
}
.edit_order input.integer {
  width: 40px;
  margin-left: 20px;
}

/* Textarea */
textarea {
  display: inline-block;
  width: 87%;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  padding: 10px 12px 0 12px;
  margin-bottom: 10px;
}
.edit_order textarea {
  width: 97%;
  margin-bottom: -7px;
}
s.plate.order .comments form textarea {
  width: 84%;
}

/* Radiobuttons, checkboxes */
input[type="checkbox"] {
  width: 20px;
  height: 14px;
  border: 0;
}
input[type="radio"] {
  width: 18px;
  height: 18px;
  border: 0;
}

.boolean {
  position: relative;
  padding-left: 14px;
}
.boolean input[type="checkbox"] {
  position: absolute;
  left: 0;
  z-index: 40;
}


/* Search */
input[type='search'] {
  width: 70%;
  background: #fff url("/assets/icon_search-248d918b.png") 4px 50% no-repeat;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
  padding: 0 4px 0 40px;
  margin-right: 10px;
  -webkit-appearance: textfield;
  box-sizing: content-box;
  height: 57px;
  font-size: 1.2em;
  box-shadow: 1px 3px 4px rgba(0,0,0,.1) !important;
}
form.advanced input[type='search'],
form.advanced select {
  width: auto;
  display: inline;
  vertical-align: top;
  outline: none;
  box-shadow: none;
}
form.advanced input[type='search'] {
  border-radius: 5px;
  margin: 0;
  width: 82%;
  -webkit-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}
form.advanced {
  width: 100%;
  position: relative;
}
form.advanced .triggers {
  width: 245px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
}
form.advanced .triggers .toggle {
  padding: 2px 2px 2px 26px;
  margin-right: 5%;
  color: #5C5C5C;
  font-size: 1.3em;
  text-transform: uppercase;
}
form.advanced .triggers .toggle:before {
  content: '\f078';
  font-family: FontAwesome;
  margin-right: 6px;
}
.plate.pinview input[type='search']{
  width: 84%;
}
.pinview input[type="submit"] {
  min-width: 90px;
}
@media (max-width: 990px) {
  .plate.pinview input[type='search']{
    width: 70%;
  }
}
@media (min-width : 501px) and (max-width : 1800px) {
  form.advanced input[type='search'] {
    width: 92%;
  }
  form.advanced input[type="submit"] {
    border-radius: 0 8px 8px 0;
  }
  form.advanced .search_filters input[type="submit"] {
    border-radius: 8px;
  }
}
@media (max-width : 1300px) {
  form.advanced .triggers .toggle {
    background-color: #fff;
  }
}
form.advanced .search_filters select {
  width: 100%;
  height: 28px;
  border-radius: 5px;
  margin: 6px 0;
  padding: 2px 10px;
  font-size: 12px;
}
form.advanced input[type='submit'] {
  margin-top: 0;
}
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  cursor: pointer;
  height: 24px;
  width: 24px;
  background: url("/assets/search_cancel-51709122.png") no-repeat;
  background-size: contain;
  z-index: 300;
  position: absolute;
  left: 4px;
  top: 16px;
}
form[name="search_form"] a {
  display: inline-block;
  margin: 6px 0 0 8px;
  color: #666;
  font-size: 11px;
}


/* Notification bar */
.growl {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  font-size: 1.4em;
  line-height: 1.5em;
}
.growl a:not(.notify-bar-close) {
  color: white;
  font-weight: bold;
  text-decoration: underline;
}
.jquery-notify-bar {
  padding: 2% 25%;
  cursor: pointer;
  color: #fff;
}
.notify-bar-close {
  position: absolute;
  top: 28%;
  right: 3%;
  cursor: pointer;
}
.notify-bar-close:before {
  content: '\f057';
  font-family: FontAwesome;
  color: #fff;
  opacity: .8;
  font-size: 2em;
}
.notify-bar-close:hover:before {
  opacity: 1;
}
.notify-bar-close:hover {
  text-decoration: none !important;
}
.jquery-notify-bar.error, .jquery-notify-bar.alert {
  background-color: #d43f3a;
}
.jquery-notify-bar.success, .jquery-notify-bar.notice {
  background-color: #4cae4c;
}


