@font-face {
  font-family: 'Open Sans';
  src: url("../../assets/fonts/opensans/OpenSans-Regular.ttf") format("truetype"); }

@font-face {
  font-family: 'Open Sans Bold';
  src: url("../../assets/fonts/opensans/OpenSans-Bold.ttf") format("truetype"); }

@font-face {
  font-family: 'Open Sans Light';
  src: url("../../assets/fonts/opensans/OpenSans-Light.ttf") format("truetype"); }

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url("../../assets/fonts/google/MaterialIcons-Regular.ttf");
  /* For IE6-8 */
  src: local("Material Icons"), local("MaterialIcons-Regular"), url("../../assets/fonts/google/MaterialIcons-Regular.ttf") format("truetype"); }

@font-face {
  font-family: 'Material Icons Outlined';
  font-style: normal;
  font-weight: 400;
  src: url("../../assets/fonts/google/MaterialIconsOutlined-Regular.otf");
  /* For IE6-8 */
  src: local("Material Icons Outlined"), local("MaterialIconsOutlined-Regular"), url("../../assets/fonts/google/MaterialIconsOutlined-Regular.otf") format("opentype"); }

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga'; }

.material-icons-outlined {
  font-family: 'Material Icons Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga'; }

@keyframes flash-message {
  0% {
    opacity: 0;
    top: -100px; }
  15% {
    opacity: 1;
    top: 0; }
  85% {
    opacity: 1;
    top: 0; }
  100% {
    opacity: 0;
    top: -100px; } }

@keyframes validation-message {
  0% {
    opacity: 0;
    bottom: -3px; }
  100% {
    opacity: 1;
    bottom: 10px; } }

form .form-item .validation-error.visible {
  color: var(--primary-color); }

form .form-item .toggle-password {
  cursor: pointer;
  position: absolute;
  padding: 5px;
  right: 0;
  top: 25%;
  user-select: none; }

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

body,
html {
  font-family: "Open Sans", sans-serif; }

a,
button,
input {
  outline: 0;
  text-decoration: none !important;
  background: 0;
  border: 0; }

h1,
h2,
h3,
h4 {
  font-weight: bold; }

h1 {
  font-size: 4rem; }

h2 {
  font-size: 3.5rem; }

h3 {
  font-size: 2.5rem; }

h4 {
  font-size: 2rem; }

hr {
  border-top: 1px solid #f0f0f0;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 99%; }

.fs-flash {
  position: fixed;
  opacity: 0;
  top: -100px;
  left: 0;
  right: 0;
  margin: 20px;
  max-width: 100%;
  text-align: center;
  padding: 20px;
  background: #70c1b3;
  color: white;
  animation-name: flash-message;
  animation-duration: 3s;
  z-index: 9999; }
  .fs-flash span {
    width: 100%; }
  .fs-flash.flash-error {
    background: var(--primary-color); }

[class^="fs-btn"] {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: 0;
  color: black;
  border: 0;
  padding: 10px 5px;
  width: fit-content;
  text-align: center; }
  @media screen and (min-width: 425px) {
    [class^="fs-btn"] {
      padding: 10px; } }
  @media screen and (min-width: 768px) {
    [class^="fs-btn"] {
      padding: 10px; } }
  [class^="fs-btn"] span {
    margin: 2.5px; }
  [class^="fs-btn"]:hover {
    color: rgba(0, 0, 0, 0.5); }
  [class^="fs-btn"][class*="btn-uno"] {
    background: var(--primary-color);
    color: white;
    margin-right: 5px; }
  [class^="fs-btn"][class*="btn-dos"] {
    background: #d2d2d2;
    color: black;
    margin-left: 5px; }

.form-item {
  position: relative;
  margin: 10px 0;
  width: 100%;
  display: flex;
  flex-direction: column; }
  .form-item label {
    position: absolute;
    top: 20px;
    left: 10px;
    font-size: 16px;
    color: rgba(64, 64, 64, 0.5);
    font-weight: 500;
    transform-origin: 0 0;
    transform: translate3d(0, 0, 0);
    transition: all 0.2s ease;
    pointer-events: none; }
  .form-item input,
  .form-item textarea {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    border: 0;
    font-family: inherit;
    padding: 25px 10px 0;
    height: 56px;
    font-size: 16px;
    font-weight: 400;
    background: rgba(64, 64, 64, 0.02);
    box-shadow: 0 1px 3px rgba(64, 64, 64, 0.1);
    border-radius: 5px;
    color: #404040;
    transition: all 0.15s ease;
    resize: none; }
    .form-item input:hover,
    .form-item textarea:hover {
      background: rgba(64, 64, 64, 0.04);
      box-shadow: inset 0 1px 3px rgba(64, 64, 64, 0.1); }
    .form-item input:not(:placeholder-shown) + label,
    .form-item textarea:not(:placeholder-shown) + label {
      color: rgba(64, 64, 64, 0.5);
      transform: translate3d(0, -12px, 0) scale(0.75); }
    .form-item input:focus,
    .form-item textarea:focus {
      background: rgba(64, 64, 64, 0.05);
      outline: none;
      box-shadow: inset 0 -2px 0 var(--primary-color); }
      .form-item input:focus + label,
      .form-item textarea:focus + label {
        color: var(--primary-color);
        transform: translate3d(0, -12px, 0) scale(0.75); }
  .form-item input[type="color"],
  .form-item input[type="file"] {
    margin-top: 20px; }
  .form-item select {
    margin-top: 50px;
    padding: 10px 5px; }
  .form-item .btn-clear {
    cursor: pointer;
    position: absolute;
    margin: 5px 5px 0 0;
    align-self: flex-end; }
  .form-item .colorpick-eyedropper-input-trigger {
    display: none; }

span:hover {
  position: relative; }

[hint] {
  position: relative; }
  [hint]:hover:after {
    content: attr(hint);
    padding: 5px 10px;
    position: absolute;
    left: 0;
    bottom: -35px;
    white-space: nowrap;
    z-index: 20;
    background: #f0f0f0;
    color: black;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px; }

.loader {
  display: none;
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid var(--primary-color);
  width: 50px;
  height: 50px;
  margin: auto;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite; }

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

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

.navbar {
  background: var(--primary-color); }
  .navbar .navbar-header {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between; }
    .navbar .navbar-header .btn-back {
      display: flex;
      align-items: center;
      padding: 10px 0;
      color: white; }
    .navbar .navbar-header .navbar-toggle {
      border: 0; }
    .navbar .navbar-header .nav-brand {
      width: fit-content;
      text-shadow: none;
      background-color: transparent;
      border: 0;
      margin-left: 0;
      color: white; }
      .navbar .navbar-header .nav-brand img {
        max-width: 15rem;
        padding: 6px;
        background: white; }
    @media screen and (min-width: 768px) {
      .navbar .navbar-header {
        padding: 21.5px 0; }
        .navbar .navbar-header img {
          max-width: 20rem; } }
  .navbar .navbar-nav {
    float: left; }
    @media screen and (min-width: 768px) {
      .navbar .navbar-nav {
        float: right; }
        .navbar .navbar-nav .dropdown-toggle {
          display: flex;
          align-items: center; }
        .navbar .navbar-nav .dropdown-menu {
          background: var(--primary-color);
          color: white; }
          .navbar .navbar-nav .dropdown-menu .dropdown-item {
            color: rgba(255, 255, 255, 0.8); }
            .navbar .navbar-nav .dropdown-menu .dropdown-item:hover {
              background: 0;
              color: white; } }

.navbar-nav li a:after, .navbar-nav li a:hover {
  background: 0 !important; }

.navbar-nav li.active a {
  font-weight: bolder;
  color: white !important; }
  .navbar-nav li.active a:after, .navbar-nav li.active a:hover {
    background: none !important; }

.navbar-inverse .navbar-collapse {
  border-color: rgba(255, 255, 255, 0.8); }

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:focus,
.navbar-inverse .navbar-nav > .open > a:hover {
  background: none; }

#layout-footer {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 20px;
  color: white; }

.loginscreen {
  display: flex; }
  .loginscreen .login-left {
    flex: 1; }
    .loginscreen .login-left img {
      transform: translateX(-200px); }
  .loginscreen .login-right {
    flex: 1; }
    .loginscreen .login-right .login-form {
      padding: 2rem 0; }
      .loginscreen .login-right .login-form button[type="submit"] {
        margin-top: 15px; }

.nav-tabs {
  flex-direction: row;
  display: flex; }
  .nav-tabs .nav-item {
    display: inline-block;
    padding: 10px;
    cursor: pointer; }
    .nav-tabs .nav-item.active {
      border-bottom: 2px solid var(--primary-color); }

.fs-list {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  margin: 25px 0; }
  .fs-list .list-tools {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .fs-list .list-tools .fs-btn {
      flex-direction: column;
      flex: 1; }
    .fs-list .list-tools form {
      width: 100%; }
    @media screen and (min-width: 425px) {
      .fs-list .list-tools {
        justify-content: flex-start; } }
    .fs-list .list-tools ul.nav-tabs li.tab-item a {
      padding: 10px 5px; }
      @media screen and (min-width: 425px) {
        .fs-list .list-tools ul.nav-tabs li.tab-item a {
          padding: 10px; } }
      @media screen and (min-width: 768px) {
        .fs-list .list-tools ul.nav-tabs li.tab-item a {
          padding: 10px 15px; } }
    .fs-list .list-tools .tool-title {
      display: none; }
    .fs-list .list-tools .searchbar {
      display: flex;
      align-items: center;
      flex: 1; }
      .fs-list .list-tools .searchbar .tool-search {
        display: flex;
        flex: 1;
        margin: 5px;
        padding: 10px;
        background: #f0f0f0;
        border: 0;
        width: 100%; }
  .fs-list .list-content {
    margin: 0 10px 5px; }
    .fs-list .list-content.fs-table-list thead {
      vertical-align: top;
      background: 0; }
      .fs-list .list-content.fs-table-list thead tr:nth-child(2n) {
        background: #f0f0f0; }
      .fs-list .list-content.fs-table-list thead tr td,
      .fs-list .list-content.fs-table-list thead tr th {
        padding: 10px; }
      .fs-list .list-content.fs-table-list thead tr th {
        font-size: 1.4rem; }
    .fs-list .list-content.fs-table-list tbody .fs-table-item {
      transition: 0.1s; }
      .fs-list .list-content.fs-table-list tbody .fs-table-item:nth-child(2n) {
        background: #f0f0f0; }
      .fs-list .list-content.fs-table-list tbody .fs-table-item:hover {
        cursor: pointer; }
        @media screen and (min-width: 768px) {
          .fs-list .list-content.fs-table-list tbody .fs-table-item:hover {
            background: var(--primary-color);
            color: white; } }
      .fs-list .list-content.fs-table-list tbody .fs-table-item td {
        padding: 10px;
        align-items: center; }
      .fs-list .list-content.fs-table-list tbody .fs-table-item .mietflaschen,
      .fs-list .list-content.fs-table-list tbody .fs-table-item .tuevflaschen {
        font-weight: bold;
        display: flex;
        align-items: center;
        color: #f25f5c; }
        .fs-list .list-content.fs-table-list tbody .fs-table-item .mietflaschen .fs-warning,
        .fs-list .list-content.fs-table-list tbody .fs-table-item .tuevflaschen .fs-warning {
          margin-right: 10px; }
    .fs-list .list-content .fs-table-item.mietflasche {
      border-left: 3px solid #f25f5c; }
      .fs-list .list-content .fs-table-item.mietflasche .value-warning {
        display: flex;
        align-items: center;
        color: #f25f5c;
        font-weight: bold; }
    .fs-list .list-content .fs-table-item .item-header {
      display: flex;
      justify-content: space-between; }
    .fs-list .list-content .fs-table-item .item-content {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex: 1;
      padding: 10px; }
      .fs-list .list-content .fs-table-item .item-content:is(a):hover {
        background: #f0f0f0; }
    .fs-list .list-content .fs-table-item .item-footer {
      display: flex;
      justify-content: space-between;
      padding: 2.5px 10px; }
    .fs-list .list-content .fs-table-item .item-tools {
      display: flex;
      flex-direction: row;
      align-items: center; }
      .fs-list .list-content .fs-table-item .item-tools button {
        margin: 2.5px 0;
        width: 100%; }
        .fs-list .list-content .fs-table-item .item-tools button:first-child {
          margin-right: 2.5px; }
        .fs-list .list-content .fs-table-item .item-tools button:last-child {
          margin-left: 2.5px; }
    .fs-list .list-content.fs-table thead {
      background: 0; }
      .fs-list .list-content.fs-table thead tr:nth-child(2n) {
        background: #f0f0f0; }
      .fs-list .list-content.fs-table thead tr th {
        padding: 10px 0; }
    .fs-list .list-content.fs-table tbody .mietflaschen,
    .fs-list .list-content.fs-table tbody .tuevflaschen {
      font-weight: bold; }

.fs-group {
  display: flex;
  flex-direction: column;
  margin: 25px 0; }
  .fs-group .fs-item {
    display: flex;
    flex: 1;
    padding: 10px;
    margin: 10px 0;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2); }
    .fs-group .fs-item:first-child {
      flex: 1;
      margin-left: 0; }
    .fs-group .fs-item:last-child {
      margin-right: 0; }

.dropdown {
  position: relative; }
  .dropdown .dropdown-list {
    display: none;
    position: absolute;
    background: white;
    flex-direction: column;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    z-index: 1; }
    .dropdown .dropdown-list .dropdown-item {
      padding: 10px; }
  .dropdown:hover .dropdown-list {
    display: flex; }
    .dropdown:hover .dropdown-list .dropdown-item:hover {
      background: #f0f0f0; }

.fs-tools {
  display: flex; }
  .fs-tools .fs-btn {
    margin-right: 5px; }
    .fs-tools .fs-btn:first-child {
      flex: 2; }
    .fs-tools .fs-btn:nth-child(2) {
      flex: 1; }

.tab-content {
  margin: 50px 0; }
  .tab-content .sub-tabs .nav-tabs {
    border: 0; }
    .tab-content .sub-tabs .nav-tabs .tab-item a {
      color: black;
      border: 0;
      border-radius: 0; }
    .tab-content .sub-tabs .nav-tabs .tab-item.active a {
      border-bottom: 2px solid var(--primary-color);
      color: var(--primary-color); }

.notizen .list-tools {
  margin: 0 10px; }

.notizen .list-content .fs-item {
  flex-direction: column; }

.info-box {
  position: absolute;
  right: 0; }
  .info-box .info-text {
    position: absolute; }

.counter-toggle {
  display: flex;
  align-items: center; }

.countertables {
  display: none; }
  .countertables .counter-table {
    display: flex; }

.dropdown-list {
  display: none; }

.fs-table {
  margin: 10px; }
  .fs-table:first-child {
    margin-left: 0; }
  .fs-table:last-child {
    margin-right: 0; }
  .fs-table thead {
    background: #eeeeee; }
    .fs-table thead th {
      margin: 10px;
      padding: 10px; }
      .fs-table thead th:first-child {
        margin-left: 0; }
      .fs-table thead th:last-child {
        margin-right: 0; }
  .fs-table tr {
    padding: 5px; }
    .fs-table tr:nth-child(even) {
      background: #eeeeee; }
    .fs-table tr td {
      padding: 5px; }

#google-maps {
  min-height: 200px;
  height: 100%;
  width: 100%; }

@media (min-width: 768px) {
  .fs-group {
    display: flex;
    flex-flow: row wrap; }
    .fs-group .fs-item {
      margin: 10px; }
  .fs-list .list-tools .fs-btn {
    flex-direction: row;
    flex: unset; }
  .fs-list .list-tools .tool-title {
    display: block; }
  .fs-list .list-content .fs-item .item-content {
    flex-direction: row; }
    .fs-list .list-content .fs-item .item-content .col {
      display: flex;
      flex-direction: column;
      flex: 1;
      margin: 0 10px; }
  .fs-list .list-content .fs-table-item .item-tools button {
    margin: 2.5px 0 !important; }
  .fs-list .fs-table-list .fs-table-item .item-tools {
    flex-direction: column; }
  .fs-list .fs-table-list .fs-table-item .adresse {
    display: none; } }

@media screen and (max-width: 768px) {
  .counter-table {
    flex-direction: column; }
  .fs-group.droplist .fs-item {
    align-items: center; }
    .fs-group.droplist .fs-item:first-child::before {
      font-family: "Material Icons";
      content: "\e5cf";
      transition: transform 0.5s;
      font-weight: bold;
      text-transform: uppercase;
      font-size: 2.5rem; }
    .fs-group.droplist .fs-item:not(:first-child) {
      display: none; }
  .fs-group.droplist.flexshow .fs-item {
    display: flex; }
    .fs-group.droplist.flexshow .fs-item:first-child::before {
      transform: rotate(180deg); }
  table:not(.noresponsive) thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px; }
  table:not(.noresponsive) tr.flexshow td {
    display: flex; }
    table:not(.noresponsive) tr.flexshow td:first-child::before {
      transform: rotate(180deg); }
    table:not(.noresponsive) tr.flexshow td.open-kunde {
      padding: 0 !important;
      margin-bottom: 10px; }
      table:not(.noresponsive) tr.flexshow td.open-kunde button {
        margin: 0;
        width: 100%;
        justify-content: space-between;
        padding: 10px; }
  table:not(.noresponsive) td {
    display: flex;
    justify-content: space-between;
    font-size: 0.8em;
    text-align: right; }
    table:not(.noresponsive) td:first-child {
      font-weight: bold;
      flex-direction: row-reverse; }
    table:not(.noresponsive) td:not(:first-child) {
      display: none; }
      table:not(.noresponsive) td:not(:first-child)[data-label="Lieferant"] {
        display: flex !important; }
      table:not(.noresponsive) td:not(:first-child)::before {
        content: attr(data-label);
        font-weight: bold;
        text-transform: uppercase; }
    table:not(.noresponsive) td:first-child::before {
      font-family: "Material Icons";
      content: "\e5cf";
      transition: transform 0.5s;
      font-weight: bold;
      text-transform: uppercase;
      font-size: 2rem; }
    table:not(.noresponsive) td:last-child {
      border-bottom: 0; } }

@media screen and (min-width: 768px) {
  table tr td.open-kunde {
    display: none; } }

section.pricing {
  background: #f0f0f0;
  background: radial-gradient(circle at center, #f0f0f0 30%, white 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  section.pricing .col {
    display: flex; }
  section.pricing .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    width: 100%;
    margin: 20px 0;
    padding: 20px;
    border: none;
    border-radius: 1rem;
    transition: all 0.2s;
    background: white;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1); }
  section.pricing .card-title {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    font-weight: bold; }
  section.pricing .card-price {
    font-size: 3rem;
    margin: 0; }
    section.pricing .card-price .period {
      font-size: 0.8rem; }
  section.pricing ul li {
    margin-bottom: 1rem; }
  section.pricing .text-muted {
    opacity: 0.7; }
  section.pricing .btn {
    font-size: 80%;
    border-radius: 5rem;
    letter-spacing: 0.1rem;
    font-weight: bold;
    padding: 1rem;
    opacity: 0.7;
    transition: all 0.2s; }

.searchbar input[type="checkbox"] {
  display: none;
  cursor: pointer; }

.searchbar label {
  cursor: pointer;
  margin: 0;
  font-size: 24px;
  margin-top: 5px;
  padding: 10px; }

.searchbar label:before {
  font-family: "Material Icons";
  content: "\ea4b";
  color: #d2d2d2;
  -webkit-appearance: none; }

.searchbar input:checked + label:before {
  font-family: "Material Icons";
  content: "\ea4b";
  color: var(--primary-color); }

/* Hover Effects on Card */
@media (min-width: 992px) {
  section.pricing {
    flex-direction: row; }
    section.pricing .card {
      margin: 50px 0; }
      section.pricing .card:hover {
        margin: 50px 0;
        box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3); }
        section.pricing .card:hover .btn {
          opacity: 1; } }

.page-kunde .fs-list .kundendaten {
  display: flex;
  flex-direction: column; }
  .page-kunde .fs-list .kundendaten .col {
    flex: 1; }
    .page-kunde .fs-list .kundendaten .col .fs-item {
      padding: 10px 15px; }
      .page-kunde .fs-list .kundendaten .col .fs-item.maps {
        height: 99%;
        overflow: hidden; }
      .page-kunde .fs-list .kundendaten .col .fs-item .item-content {
        display: flex;
        justify-content: space-between; }
        .page-kunde .fs-list .kundendaten .col .fs-item .item-content .fs-name {
          font-weight: bold; }

.notizen-form {
  display: flex;
  align-items: center; }
  .notizen-form .fs-tools {
    margin-left: 10px; }

.entfernung {
  color: #cccccc; }

/* Hover Effects on Card */
@media (min-width: 768px) {
  .page-kunde .fs-list .kundendaten {
    flex-direction: row; }
  .page-kunde .fs-list .fs-table-item td[data-label="Lieferant"] {
    display: flex !important; } }

@media (min-width: 992px) {
  .pricing .card:hover {
    margin-top: 40px;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3); }
    .pricing .card:hover .btn {
      opacity: 1; } }

.page-admin-mitarbeiter .fs-item {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .page-admin-mitarbeiter .fs-item.notactivated span {
    color: #d2d2d2; }
