@font-face {
    font-family: 'Avenir Next';
    src: local('Avenir Next'), url("../assets/fonts/AvenirNextLTPro-Regular.otf"), url("../assets/fonts/AvenirNextLTPro-Regular.eot");
  }
  
  @font-face {
    font-family: 'Avenir Next Bold';
    font-weight: bold;
    src: local('Avenir Next Bold'), url("../assets/fonts/AvenirNextLTPro-Bold.otf"), url("../assets/fonts/AvenirNextLTPro-Bold.eot");
  }
  @font-face {
    font-family: 'Avenir Next Light';
    font-weight: lighter;
    src: local('Avenir Next Light'), url("../assets/fonts/AvenirNextLTPro-lt.otf"), url("../assets/fonts/AvenirNextLTPro-lt.eot");
  }


:root {
    --main-contrast-color: #fff;
    --fav-color: #185A92;
    --main-bg-color: linear-gradient(180deg, #43CEA2 0%, #185A92 100%);
    --btn-bg-color: transparent linear-gradient(161deg, #43CEA2 0%, #185A92 100%) 0% 0% no-repeat padding-box;
}

body {
    background: var(--main-bg-color);
    font-size: 14px;
}

.page {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

[class^="fontello-"].active:before, [class*=" fontello-"].bg-gradient:before, .nav-item.active i {    
    filter: drop-shadow(0px 0px 6px var(--bs-primary));
    color: black;
    background: none;
    -webkit-text-fill-color: transparent;
    background: transparent linear-gradient( 180deg, #43CEA2 0%, #185A92 100%) 0% 0% no-repeat padding-box;
    -webkit-background-clip: text;
}
  
[class^="fontello-"].bg-gradient:before, [class*=" fontello-"].bg-gradient:before {
    background: transparent linear-gradient(135deg, #43CEA2 0%, #185A92 100%) 0% 0% no-repeat padding-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-item i {
    color: #808080;
}
  
[class^="fontello-"]:before, [class*=" fontello-"]:before {
    line-height: normal !important;
}

.content {
    box-sizing: border-box;
    width: 100%;
    padding: 0px 10px;
}

#alerts-container {
    position: fixed;
    padding: 10px;
    box-sizing: border-box;
    color: var(--bs-gray-700);
    transition: all 300ms ease-in-out;
    z-index: 100;
    pointer-events: none;
}

.alert-popup {
    position: relative;
    width: 70%;
    padding: 10px;
    box-sizing: border-box;
    color: var(--bs-gray-700);
    border-radius: 50px;
    margin: 15px 15% 0px;
    -webkit-box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%) !important;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%) !important;
    transform: scale(0);
    transition: all 300ms ease-in-out;
    z-index: 100;
}

#alerts-bg .alert-popup {
    transform: scale(1);
}

#sidebar {
    z-index: 10;
    transform: translate(100%);
    transition: all 300ms ease-in-out;
}

#sidebar.show {
    transform: translate(0%);
}

.pill {
    background-color: var(--bs-gray-100);
    color: var(--bs-gray-700);
    border-radius: 20px;
    display: inline-block;
    padding: 5px 12px;
    margin: 0px 5px 7px 0px;
}

#alerts-bg {
    position: fixed;
    top: 0px;
    width: 100%;
    background-color: rgba(var(--bs-light-rgb),.7);
    height: 100%;
    height: -webkit-fill-available;
    z-index: 5;
}

/* PROPERTIES */

.text-capitalize-first::first-letter {
    text-transform: uppercase;
}

.fs-10-px > [class^="fontello-"]:before,[class^="fontello-"].fs-10-px:before {
    font-size: 10px;
}

.fs-15-px > [class^="fontello-"]:before,[class^="fontello-"].fs-15-px:before {
    font-size: 15px;
}

.fs-20-px > [class^="fontello-"]:before,[class^="fontello-"].fs-20-px:before {
    font-size: 20px;
}

.fs-25-px > [class^="fontello-"]:before,[class^="fontello-"].fs-25-px:before {
    font-size: 25px;
}

.fs-30-px > [class^="fontello-"]:before,[class^="fontello-"].fs-30-px:before {
    font-size: 30px;
}

.fontello-supply:before {
    margin-right: 0px;
}

[class^="fontello-"].text-success {
    color: var(--bs-success);
}

[class^="fontello-"].text-danger {
    color: var(--bs-danger);
}

[class^="fontello-"].text-warning {
    color: var(--bs-warning);
}

/* NAVBAR */

.nav-item > div{
    transition: all 300ms ease-in-out;
    background-color: #FFF;
    color: #808080;
}

.nav-item.active > div{
    background: var(--main-bg-color);
    color: #fff;
}

.nav-item.active i {
    color: #fff !important;
    background: none;
    -webkit-text-fill-color: #fff;
}


/* BARS */

.bar {
    padding: 10px 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 18px;
    background-color: var(--main-bg-color);
    color: var(--main-contrast-color);
    min-height: 50px;
}

.page {
    max-height: 100%;
    position:relative;
}

#bottombar i {
    cursor: pointer;
}

@media (max-width: 768.98px) {
    
    #cart-count-container {
        margin-right: -20px;
    }

    #sidebar {
        width: 100%;
    }
}


@media (min-width: 768px) {

    .page {
        padding-bottom: 0px !important;
    }
    
    #cart-count-container {
        right: 0px;
        transform: translate(0px, -50%);
        top: 30% !important;
    }

    #sidebar {
        width: 40%;
    }
}

.card {
    width: 85%;
    max-width: 400px;
}

.card .bigtitle {
    color: var(--main-bg-color);
    font-size: 25px;
}

.card .title {
    color: var(--bs-gray-700);
    font-size: 21px;
}

.card .fontello-title {
    color: var(--main-bg-color);
}

.card .little-title {
    color: var(--main-bg-color);
    font-size: 18px;
}

.little-alert {
    color: var(--bs-red);
    font-size: 12px;
    font-weight: normal;
    text-transform: none;
}

.compatibility-alert {
    background: transparent linear-gradient( 180deg , #43CEA2 0%, #185A92 100%) 0% 0% no-repeat padding-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 12px;
    text-transform: none;
}

[class^="filled"] {
    font-size: 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    font-weight: normal;
    text-transform: none;
    border-radius: 0px 10px 10px 10px;
    padding: 2px 7px;
    bottom: -5px;
    left: 5px;
    max-width: 100%;
}

.filled-alert {
    background-color: var(--bs-red);
    color: var(--main-contrast-color);
}

.card input:active, .card input:focus {
    outline: none;
    border-bottom: 1px solid var(--main-bg-color);
}

.form-control {
    padding: 5px;
    margin: 5px 0px;
}

textarea {
    font-family: inherit;
    border: none;
    border: 1px solid var(--bs-gray-100);
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
}

input {
    border: none;
    border-bottom: 1px solid var(--bs-gray-100);
    width: 100%;
    font-size: 17px;
    font-family: inherit;
    transition: all 300ms ease-in-out;
}

.in-edit input {
    width: 80%;
}

input.input-btn {
    border: none;
    box-shadow: 2px 2px 5px var(--bs-gray-900);
    padding: 10px 10px;
    box-sizing: border-box;
    border-radius: 3px;
}

/* input.invalid{
    border-color: indianred;
    animation-name: shake;
    animation-duration: 0.7s;
    animation-iteration-count: 1;
  }

@keyframes shake {
    0%, 20%, 40%, 60%, 80% {
        transform: translateX(8px);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-8px);
    }
} */

.card select {
    padding: 10px 5px;
    box-sizing: border-box;
    border: none;
    box-shadow: 2px 2px 5px var(--bs-gray-900);
    color: var(--bs-gray-700);
    font-size: 16px;
    border-radius: 3px;
    font-family: inherit;
    background-color: var(--main-contrast-color);
}

.card label {
    text-transform: capitalize;
}


.preview {
    width: 90px;
    min-width: 90px;
    display: inline-block;
}

.preview.supersmall {
    width: 50px;
    min-width: 50px;
}

.preview.small {
    width: 70px;
    min-width: 70px;
}

.preview img {
    width: 100%;
}


/* LISTS */

.list-item {
    /* margin-top: 49px; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 100%;
    box-sizing: border-box;
    padding: 0px;
    overflow: auto;
    flex-grow: 1;
}

.list-row {
    height: auto;
    flex-shrink: 0;
}

.list-filter {
    padding: 8px 15px;
    color: var(--bs-gray-700);
    border-bottom: 1px solid var(--bs-gray-100);
}

.list-filter-child {
    padding: 8px 25px;
    color: var(--bs-gray-700);
}

.list-filter-child [class^='fontello'], .checkbox-witservice [class^='fontello'] {
    color: transparent;
    transition: all 30ms ease-in-out;
}

.list-filter-child [class^='fontello'].hidden-icon,.list-filter-child.selected [class^='fontello'].hidden-icon {
    color: transparent;
    transition: none;
}

.checkbox-witservice.active [class^='fontello'] {
    color: var(--bs-gray-700);
    background: transparent linear-gradient( 180deg , #43CEA2 0%, #185A92 100%) 0% 0% no-repeat padding-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.list-filter-child.selected [class^='fontello'] {
    color: #fff;
}

.list-filter-child.selected {
    background: var(--main-bg-color);
    color: #fff;
    font-weight:bold;
}

.list-filter-child {
    transition: all 300ms ease-in-out;
}

.price {
    color: var(--main-bg-color);
    font-weight: bold;
    font-family: sans-serif;
}

.quantity-control {
    font-size: 17px;
}

.menu-icon {
    top: 15px;
    left: 15px;
}


.banner-count {
    top: 0%;
    left: 100%;
    transform: translate(-50%,-50%);
}

.banner-count span {
    color: var(--main-bg-color);
    left: 0px;
    font-size: 14px;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}


/* BUTTONS */

label.btn-qr {
    text-transform: uppercase;
    display: inline-block;
    box-sizing: border-box;
}

.btn-gradient {
    color: var(--main-contrast-color) !important;
    background: var(--btn-bg-color) !important;
    background-color:#212529;
    border: none;
}
.btn-gradient:hover {
    color: var(--main-contrast-color) !important;
    background: var(--btn-bg-color) !important;
    background-color:#212529;
    border: none;
}
.btn-check:focus+.btn-gradient,.btn-gradient:focus {
    color: var(--main-contrast-color) !important;
    background: var(--btn-bg-color) !important;
    background-color:#212529;
    border: none;
    -webkit-box-shadow:0 0 0 .25rem rgba(66,70,73,0.5);
    box-shadow:0 0 0 .25rem rgba(66,70,73,0.5)
}
.btn-check:checked+.btn-gradient,.btn-check:active+.btn-gradient,.btn-gradient:active,.btn-gradient.active,.show>.btn-gradient.dropdown-toggle {
    color: var(--main-contrast-color) !important;
    background: var(--btn-bg-color) !important;
    background-color:#212529;
    border: none;
}
.btn-check:checked+.btn-gradient:focus,.btn-check:active+.btn-gradient:focus,.btn-gradient:active:focus,.btn-gradient.active:focus,.show>.btn-gradient.dropdown-toggle:focus {
    -webkit-box-shadow:0 0 0 .25rem rgba(66,70,73,0.5);
    box-shadow:0 0 0 .25rem rgba(66,70,73,0.5)
}
.btn-gradient:disabled,.btn-gradient.disabled {
    color: var(--main-contrast-color) !important;
    background: var(--btn-bg-color) !important;
    background-color:#212529;
    opacity: .5;
    border: none;
}

/* button, .btn-qr {
    padding: 10px 15px;
    border: none;
    border-radius: 3px;
    box-shadow: 1px 1px 5px var(--bs-gray-900);
    font-size: 15px;
    font-family: inherit;
    transition: all 300ms ease-in-out;
} */

button.btn-contrast {
    color: var(--bs-gray-700);
    background-color: var(--main-contrast-color);
    border: 4px solid var(--main-contrast-color);
    border-radius: 0px;
    padding: 20px 0px;
    font-size: 1.5em;
    margin: 5px 0px;
    transition: all 300ms ease-in-out;
}

.btn-contrast:active, .btn-contrast:focus {
    border: 4px solid var(--main-bg-color);
    color: var(--main-bg-color);
}

button.btn-rounded {
    background-color: var(--main-contrast-color);
    color: var(--main-bg-color);
    border-radius: 25px;
    border: 1px solid var(--main-bg-color);
    box-shadow: none;
    padding: 5px 12px;
    font-size: 13px;
}

button.btn-rounded a {
    color: var(--main-bg-color);
}

.btn-rounded:active, .btn-rounded:focus {
    color: var(--main-contrast-color);
    background-color: var(--main-bg-color);
    box-shadow: none;
    border-color: var(--main-contrast-color);
}

.btn-rounded:active a, .btn-rounded:focus a{
    color: var(--main-contrast-color);
}

/* button.fill {
    padding: 10px 6px;
} */

.btn-user {
    background-color: var(--main-contrast-color);
    color: var(--bs-gray-700);
    border-radius: 0px;
    border: 2px solid var(--main-contrast-color);
}

.btn-user:active, .btn-user:focus, .btn-user.selected {
    color: var(--main-bg-color);
    box-shadow: none;
    border: 2px solid var(--main-bg-color);
}

button:disabled,button.disabled {
    opacity: 0.6;
}

button:focus,button:active {
    outline: none !important;
    box-shadow: inset 1px 1px 5px var(--bs-gray-900);
}

.qrcode-text-btn > input[type=submit] {
    overflow:hidden; width:1px; height:1px; opacity:0
}

.favourite-filling {
    left: 0px;
    transition: all 300ms ease-in-out;
    transform: scale(0);
    color: var(--fav-color);
}

.fill .favourite-filling {
    transform: scale(1);
}

.close-icon {
    left: 0px;
    transition: all 300ms ease-in-out;
}

.open .close-icon {
    opacity: 0;
}

.little-desc{
    font-size: 12px;
}

.text-avvisi{
    font-size: 25px;
    text-align: center;
}

/* .lds-ellipsis {
    position: absolute;
    width: 25px;
    height: 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
} */

/* #loading {
    top: 50%;
    transform: translate(0px, -50%);
} */


.anim-rotate {
    animation-timing-function: cubic-bezier(0.83, -0.2, 0.08, 1.21);
    animation-duration: 3.5s;
    animation-iteration-count: infinite;
    animation-name: ingr-rotate;
    animation-fill-mode: forwards;
    transform-origin: 145px 145px;
}

@keyframes ingr-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(719deg);
    }
}

/* #loading.element-active .lds-ellipsis div {
    animation-name: lds-ellipsis-end;
    animation-iteration-count: 1;
}

#loading.element-active {
    animation-timing-function: ease-out;
    animation-duration: 1.5s;
    animation-iteration-count: 1;
    animation-name: logo-slide-top;
    animation-fill-mode: forwards;
} */

/* @keyframes logo-slide-top {
    0% {
        top: initial;
        transform: translate(0px, 0px) scale(1);
    }
    20% {
        top: initial;
        transform: translate(0px, 0px) scale(1);
    }
    100% {
        top: initial;
        transform: translate(0px, -250%) scale(0.6);
    }
} */

#login-card {
    position: absolute;
    opacity: 1;
    bottom: 50%;
    transform: translate(0px, 50%);
}

/* #login-card.element-active {   
    display: flex;
    animation-timing-function: ease-out;
    animation-duration: 1.5s;
    animation-iteration-count: 1;
    animation-name: card-slide-top;
    animation-fill-mode: forwards;
} */

@keyframes card-slide-top {
    0% {
        opacity: 0;
        bottom: 0%;
        transform: translate(0px, 70%);
    }
    20% {
        opacity: 1;
        bottom: 0%;
        transform: translate(0px, 70%);
    }
    100% {
        opacity: 1;
        bottom: 50%;
        transform: translate(0px, 50%);
    }
}
/* 
.element-fade-out {
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-name: element-fadeout;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}

@keyframes element-fadeout {
    0% {
        opacity: 1;
        transform: translate(0px,0px);
    }
    20% {
        opacity: 1;
        transform: translate(0px,0px);
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        transform: translate(0px,-50%);
    }
} */

/* .lds-ellipsis div {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(1, 0, 0, 1);
    animation-duration: 0.6s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: all 300ms cubic-bezier(1, 0, 0, 1);
    animation-fill-mode: forwards;
} */

/*animation: name duration timing-function delay iteration-count direction fill-mode play-state;*/
/* .lds-ellipsis div:nth-child(1) {
    left: 0px;
    animation-name: lds-ellipsis1;
}
.lds-ellipsis div:nth-child(2) {
    opacity: 0.25;
    width: 4px;
    height: 4px;
    animation-name: lds-ellipsis2;
}

.lds-ellipsis div:nth-child(3) {
    width: 3px;
    height: 3px;
    opacity: 0.25;
    animation-name: lds-ellipsis3;
}
  @keyframes lds-ellipsis1 {
    0% {
        width: 7px;
        height: 7px;
        opacity: 1;
    }
    50% {
        width: 4px;
        height: 4px;
        opacity: 0.25;
    }
    100% {
        width: 3px;
        height: 3px;
        opacity: 0.25;
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
        width: 4px;
        height: 4px;
        opacity: 0.25;
    }
    50% {
        width: 7px;
        height: 7px;
        opacity: 1;
    }
    100% {
        width: 3px;
        height: 3px;
        opacity: 0.25;
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
        width: 3px;
        height: 3px;
        opacity: 0.25;
    }
    50% {
        width: 4px;
        height: 4px;
        opacity: 0.25;
    }
    100% {
        width: 7px;
        height: 7px;
        opacity: 1;
    }
  } */
/*   @keyframes lds-ellipsis-end {
    0% {}
    100% {
        width: 7px;
        height: 7px;
        opacity: 1;
    }
  } */

  #logo-row {
    position: relative;
    transform-origin: top;
    transform: scale(1.5) translate(0px,50%);
  }

.to-open,.all-transition {
    transition: all 300ms ease-in-out;
}

.indicator {
    width: 8px;
    height: 8px;
    box-shadow: 0px 3px 6px #00000029;
}

.indicator.active {
    width: 12px;
    height: 12px;
}

#cart-count-container {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    font-size: 11px;
    top: -8px;
    line-height: 1;
    -webkit-text-fill-color: #fff;
}

#filter-count-container {
    width: 20px;
    height: 20px;
    font-size: 11px;
    top: 0px;
    right: 0px;
    line-height: 1;
}
/* Media Queries */
/* Card sizing */
/* Colors */
/* Calculations */
/* Placeholders */
@media (min-width: 1000px) {
    #timeline .demo-card:nth-child(odd) .head::after, #timeline .demo-card:nth-child(even) .head::after {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-top: 15px solid transparent;
      border-bottom: 15px solid transparent;
    }
    #timeline .demo-card:nth-child(odd) .head::before, #timeline .demo-card:nth-child(even) .head::before {
      position: absolute;
      content: "";
      width: 9px;
      height: 9px;
      background-color: #fff;
      border-radius: 9px;
      box-shadow: 0px 0px 7px 5px #fff;
    }
  }
  /* Some Cool Stuff */
  .demo-card:nth-child(1) {
    order: 1;
  }
  .demo-card:nth-child(2) {
    order: 4;
  }
  .demo-card:nth-child(3) {
    order: 2;
  }
  .demo-card:nth-child(4) {
    order: 5;
  }
  .demo-card:nth-child(5) {
    order: 3;
  }
  .demo-card:nth-child(6) {
    order: 6;
  }
  /* Border Box */
  * {
    box-sizing: border-box;
  }
  #timeline h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 20px;
  }
  #timeline p.leader {
    text-align: center;
    max-width: 90%;
    margin: auto;
    margin-bottom: 45px;
  }
  #timeline .demo-card-wrapper {
    position: relative;
    margin: auto;
    padding: 75px 0px 40px 0px;
    margin-top: -45px;
    margin-bottom: -45px;
  }
  @media (min-width: 1000px) {
    #timeline .demo-card-wrapper {
      width: 870px;
      margin: 0 auto;
      padding-top: 190px;
      margin-top: -45px;
      margin-bottom: -45px;
    }
  }
  #timeline .demo-card-wrapper::after {
    z-index: 0;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    border-left: 2px solid #fff;
  }
  @media (min-width: 1000px) {
    #timeline .demo-card-wrapper::after {
      border-left: 1px solid #fff;
    }
  }
  #timeline .demo-card {
    position: relative;
    display: block;
    margin: 10px auto 80px;
    max-width: 94%;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  @media (min-width: 480px) {
    #timeline .demo-card {
      max-width: 60%;
      box-shadow: 0px 1px 22px 4px rgba(0, 0, 0, 0.2);
    }
  }
  @media (min-width: 720px) {
    #timeline .demo-card {
      max-width: 40%;
    }
  }
  @media (min-width: 1000px) {
    #timeline .demo-card {
      max-width: 350px;
      min-height: 200px;
      margin: -100px 45px 45px 45px;
    }
    #timeline .demo-card:nth-child(odd) {
      margin-right: 45px;
     }
    #timeline .demo-card:nth-child(odd) .head::after {
      border-left-width: 15px;
      border-left-style: solid;
      left: 100%;
    }
    #timeline .demo-card:nth-child(odd) .head::before {
      left: 385px;
    }
    #timeline .demo-card:nth-child(even) {
      margin-left: 475px;
    }
    #timeline .demo-card:nth-child(even) .head::after {
      border-right-width: 15px;
      border-right-style: solid;
      right: 100%;
    }
    #timeline .demo-card:nth-child(even) .head::before {
      right: 385px;
    }
    #timeline .demo-card:nth-child(2) {
      margin-top: -50px;
    }
  }
  #timeline .demo-card .head {
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 400;
  }
  #timeline .demo-card .head .number-box {
    display: inline;
    float: left;
    margin: 15px;
    padding: 10px;
    font-size: 35px;
    line-height: 35px;
    font-weight: 600;
  }
  #timeline .demo-card .head h2 {
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: inherit;
    letter-spacing: 2px;
    margin: 0;
    padding: 6px;
  }
  @media (min-width: 480px) {
    #timeline .demo-card .head h2 {
      font-size: 165%;
    }
  }
  #timeline .demo-card .head h2 span {
    display: block;
    font-size: 0.6rem;
    margin: 0;
  }
  @media (min-width: 480px) {
    #timeline .demo-card .head h2 span {
      font-size: 0.8rem;
    }
  }
  @media (min-width: 1000px) {
    #timeline .demo-card .body {
      min-height: 115px;
    }
  }
  #timeline .demo-card .body p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 15px;
  }
  #timeline .demo-card .body img {
    display: block;
    width: 100%;
  }

  #timeline .demo-card-terminato {
      opacity: .7;
  }


  #timeline .demo-card-da_eseguire .head::after {
    border-color: var(--bs-primary);
  }

#localita_pianificazione .row {
    margin-top: 5px;
    border-bottom: 1px dotted #dddddd;
}

.rotate {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

/* #table_dati_manut th {
    padding: 5px;
    border-left: 1px dotted #ccc;
    border-bottom: 1px dotted #ccc;
    font-weight: bold;
    color: #43CEA2;
}

#table_dati_manut td {
    padding: 5px;
    border-left: 1px dotted #ccc;
    border-bottom: 1px dotted #ccc;
}

#table_dati_manut table {
    border-right: 1px dotted #ccc;
    border-top: 1px dotted #ccc;
} */


.rowmanut {
    padding: 20px 0;
    border-bottom: 1px dotted #ddd;
}

.first-timeline {
    border-bottom: 1px dotted #ddd;
    margin-bottom: 8px;
    padding-bottom: 4px;
}

#table_dati_manut .row {
    margin: 2px 0;
}

.ora-timeline {
    border: 1px dotted #ddd;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: orange;
    color: #fff;
    font-weight: bold;
    padding: 5px 0;
}
  
@media (min-width: 768px) {
    #order-just-sent {
        margin-left: -3rem !important;
    }
}

/* Track */
.scroll-on-white::-webkit-scrollbar-track {
    background: #84848430;
    border-radius: 5px;
}

/* Handle */
.scroll-on-white::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #43CEA2 0%, #185A92 100%); 
    border-radius: 5px;
}


/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #ffffff30;
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #fff; 
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}


#elenco-risorse-buttons > .active,#elenco-problemi-assistenza > .active {
    background: transparent linear-gradient( 180deg , #43CEA2 0%, #185A92 100%) 0% 0% no-repeat padding-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#elenco-risorse-buttons .active .button-border-gradient,#elenco-problemi-assistenza .active .button-border-gradient,
#elenco-risorse-buttons .active .button-border-gradient div,#elenco-problemi-assistenza .active .button-border-gradient div {
    background: var(--main-bg-color);
}

#elenco-risorse-buttons .active .button-border-gradient div i,#elenco-problemi-assistenza .active .button-border-gradient div i  {
    /* background: transparent linear-gradient( 180deg , #43CEA2 0%, #185A92 100%) 0% 0% no-repeat padding-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    -webkit-text-fill-color: white;
}

.delete-button::before {
    content: '\e824';
    font-family: 'manutenzione_webapp';
    position: absolute;
    width: 20px;
    height: 20px;
    right: 2px;
    background-color: var(--bs-primary);
    top: -6px;
    z-index: 10;
    display: block;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 8px;
    padding: 4px 1px 0px 0px;
}

.floating-title {
    position: absolute;
    transform: translate(0px,-50%);
    background-color: white;
    padding: 0px 5px;
}


.machine {
    width: 100%;
    fill: url(#witserviceGradient);
    }
  
  .cog-small-shadow, .medium-shadow, .large-shadow {
    fill: rgba(0, 0, 0, 0.05); }
  
  .cog-small {
    -webkit-animation: counter-rotation 2.5s infinite linear;
         -moz-animation: counter-rotation 2.5s infinite linear;
           -o-animation: counter-rotation 2.5s infinite linear;
              animation: counter-rotation 2.5s infinite linear;
    -webkit-transform-origin: 100.136px 225.345px;
        -ms-transform-origin: 100.136px 225.345px;
            transform-origin: 100.136px 225.345px; }
  
  .cog-small-shadow {
    -webkit-animation: counter-rotation 2.5s infinite linear;
         -moz-animation: counter-rotation 2.5s infinite linear;
           -o-animation: counter-rotation 2.5s infinite linear;
              animation: counter-rotation 2.5s infinite linear;
    -webkit-transform-origin: 110.136px 235.345px;
        -ms-transform-origin: 110.136px 235.345px;
            transform-origin: 110.136px 235.345px; }
  
  .medium {
    -webkit-animation: rotation 3.75s infinite linear;
         -moz-animation: rotation 3.75s infinite linear;
           -o-animation: rotation 3.75s infinite linear;
              animation: rotation 3.75s infinite linear;
    -webkit-transform-origin: 254.675px 379.447px;
        -ms-transform-origin: 254.675px 379.447px;
            transform-origin: 254.675px 379.447px; }
  
  .medium-shadow {
    -webkit-animation: rotation 3.75s infinite linear;
         -moz-animation: rotation 3.75s infinite linear;
           -o-animation: rotation 3.75s infinite linear;
              animation: rotation 3.75s infinite linear;
    -webkit-transform-origin: 264.675px 389.447px;
        -ms-transform-origin: 264.675px 389.447px;
            transform-origin: 264.675px 389.447px; }
  
  .large {
    -webkit-animation: counter-rotation 5s infinite linear;
       -moz-animation: counter-rotation 5s infinite linear;
           -o-animation: counter-rotation 5s infinite linear;
              animation: counter-rotation 5s infinite linear;
    -webkit-transform-origin: 461.37px 173.694px;
        -ms-transform-origin: 461.37px 173.694px;
            transform-origin: 461.37px 173.694px; }
  
  .large-shadow {  
    -webkit-animation: counter-rotation 5s infinite linear;
         -moz-animation: counter-rotation 5s infinite linear;
           -o-animation: counter-rotation 5s infinite linear;
              animation: counter-rotation 5s infinite linear;
    -webkit-transform-origin: 471.37px 183.694px;
        -ms-transform-origin: 471.37px 183.694px;
            transform-origin: 471.37px 183.694px; }
  
  @-webkit-keyframes rotation {
      from {-webkit-transform: rotate(0deg);}
      to   {-webkit-transform: rotate(359deg);}
  }
  @-moz-keyframes rotation {
      from {-moz-transform: rotate(0deg);}
      to   {-moz-transform: rotate(359deg);}
  }
  @-o-keyframes rotation {
      from {-o-transform: rotate(0deg);}
      to   {-o-transform: rotate(359deg);}
  }
  @keyframes rotation {
      from {transform: rotate(0deg);}
      to   {transform: rotate(359deg);}
  }
  
  @-webkit-keyframes counter-rotation {
      from {-webkit-transform: rotate(359deg);}
      to   {-webkit-transform: rotate(0deg);}
  }
  @-moz-keyframes counter-rotation {
      from {-moz-transform: rotate(359deg);}
      to   {-moz-transform: rotate(0deg);}
  }
  @-o-keyframes counter-rotation {
      from {-o-transform: rotate(359deg);}
      to   {-o-transform: rotate(0deg);}
  }
  @keyframes counter-rotation {
      from {transform: rotate(359deg);}
      to   {transform: rotate(0deg);}
  }

.assistance-card,.step-visualization-single {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.btn-man-control.active {
    color: var(--main-contrast-color) !important;
    background: var(--btn-bg-color) !important;
    background-color: #212529;
    border: none;
}

.btn-man-control.active [class^="fontello-"],.btn-man-control.active [class*=" fontello-"] {
    color: var(--main-contrast-color) !important;
    -webkit-text-fill-color: white;
}

.quarterturn {
    transform: rotate(90deg);
}

.look-disabled {
    pointer-events: none;
    opacity: .8;
}