@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

* {
  background-color: #353434;
  font-family: 'Montserrat', sans-serif;
  text-rendering: optimizeLegibility;

}

body {
  background-color: #353434;
}


/* Login page */

a:hover {
  color: #fcf6e6;
}

.logo {
  width: 160px;
}

.logo-padding {
  padding-top: 7px;
}

.divider {
  width: 100%;
}

.title {
  padding-top: 10px;
}

.locker {
  width: 20px;
  margin-right: 10px;
}

.code {
  padding-top: 2px;
}

.tastierino {
  margin-top: 10px;
  margin-bottom: 10px;

}

.numero-tastierino {
  width: 80px;
}

#password {
  width: 80%;
  height: 40px;
  border: none;
  border-bottom: 1px solid #fcf6e6;
  color: #fcf6e6;
  text-align: center;
}

#password::placeholder {
  color: #fcf6e6;
  text-align: center;
  font-size: 16px;
}

#delete-button {
  width: 30px;
}


/* Main Page */

.back {
  width: 20px;
  height: 20px;
}

.div-left-menu {
  margin-left: 10px;
}



.div-right-menu {
  margin-right: 10px;
}

/* Burger Menu */
.burger-menu {
  display: flex;


}

.circle {
  position: fixed;
  top: 100px;
  border-radius: 3000px;
  width: 420px;
  height: 420px;
  border: 1px solid #fcf6e6;
  z-index: 1000;
  right: -210px;
  background-color: #fcf6e6;
  text-align: right;
  padding-right: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-shadow: 8px 8px 16px 5px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 8px 8px 16px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 8px 8px 16px 5px rgba(0, 0, 0, 0.6);

}

.menu-ul {

  background-color: transparent;
  list-style-type: none;
}

.menu-li {
  background-color: transparent;
  padding: 15px 5px;

}

.menu-item {
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: black;
  text-transform: uppercase;
  transition: 0.5s;

}

.menu-item:hover {
  text-decoration: none;
  color: orange;
}

.separatore {
  border: 1px solid black;
}

.button-label {
  padding-left: 43px;
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 14px;
}

.icon-button {
  width: 100px;
  margin-right: 30px;
}

.button-cancello {
  padding-top: 10px;
  padding-bottom: 25px;
  font-size: 14px;
}

.icon-cancello {
  width: 100px;

}

/* Burger Menu animation */

.slide-left {
  animation: animationFrames ease 1s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  animation-fill-mode: forwards;
  /*when the spec is finished*/
  -webkit-animation: animationFrames ease 1s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-fill-mode: forwards;
  /*Chrome 16+, Safari 4+*/
  -moz-animation: animationFrames ease 1s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -moz-animation-fill-mode: forwards;
  /*FF 5+*/
  -o-animation: animationFrames ease 1s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -o-animation-fill-mode: forwards;
  /*Not implemented yet*/
  -ms-animation: animationFrames ease 1s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
  -ms-animation-fill-mode: forwards;
  /*IE 10+*/
}

@keyframes animationFrames {
  0% {
    opacity: 0;
    transform: translate(0px, -25px);
  }

  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}

@-moz-keyframes animationFrames {
  0% {
    opacity: 0;
    -moz-transform: translate(0px, -25px);
  }

  100% {
    opacity: 1;
    -moz-transform: translate(0px, 0px);
  }
}

@-webkit-keyframes animationFrames {
  0% {
    opacity: 0;
    -webkit-transform: translate(0px, -25px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(0px, 0px);
  }
}

@-o-keyframes animationFrames {
  0% {
    opacity: 0;
    -o-transform: translate(0px, -25px);
  }

  100% {
    opacity: 1;
    -o-transform: translate(0px, 0px);
  }
}

@-ms-keyframes animationFrames {
  0% {
    opacity: 0;
    -ms-transform: translate(0px, -25px);
  }

  100% {
    opacity: 1;
    -ms-transform: translate(0px, 0px);
  }
}


/* Accordion */
.card {
  background-color: #353434;
  padding: 20px 0px;
  border: none;
  font-size: 14px;
}

.card-header {
  background-color: #353434;
  border: none;
}

.card-link {
  color: #fcf6e6;
}

a.card-link.ui-link {
  color: #fcf6e6;
}

.card-body {
  color: #fcf6e6;
  padding-bottom: 0px;
}

.icon-accordion {
  width: 80px;
}

.accordion-label {
  font-size: 12px;
  margin-top: 10px;
}

.button-accordion {
  width: 45px;
  position: relative;
  top: -4px;
}

.icon-title {
  width: 20px;
  position: relative;
  top: -3px;
  margin-right: 10px;
}

.copyright {
  font-size: 12px;
  padding-top: 40px;
  color: #666666;
}

.copyright a {
  color: #666666;
  font-weight: 600;
}

/* Slider Temperatura */

.slidecontainer {
  width: 100%;
  margin-top: 15px;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(0, 119, 255, 0.304359243697479) 0%, rgba(255, 9, 9, 0.6432948179271709) 100%);
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 50px;
  height: 30px;
  border: 0;
  background: url('../images/scroll-cursor.png');
  background-size: 50px;
  background-repeat: no-repeat;
  background-position-y: center;
  cursor: pointer;

}

.slider::-moz-range-thumb {
  width: 23px;
  height: 24px;
  border: 0;
  background: url('../images/scroll-cursor.png');
  background-size: 30px;
  cursor: pointer;
}



.temp {
  padding-top: 15px;
}

.temp-left {
  width: 33%;
}

.temp-center {
  width: 34%;
}

.temp-right {
  width: 33%;
}

/* Slider Tempo */



.slidecontainer-time {
  width: 60%;
  margin-top: 15px;
}

.slider-time {
  -webkit-appearance: none;
  width: 100%;
  height: 40px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(53, 52, 52, 1) 0%, rgba(125, 125, 125, 1) 50%, rgba(53, 52, 52, 1) 100%);
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;

}

.slider-time:hover {
  opacity: 1;
}

.slider-time::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 50px;
  height: 30px;
  border: 0;
  background: url('../images/scroll-cursor.png');
  background-size: 50px;
  background-repeat: no-repeat;
  background-color: green;
  background-position-y: center;
  cursor: pointer;
  position: fixed;

}

.slider-time::-moz-range-thumb {
  width: 23px;
  height: 24px;
  border: 0;
  background: url('../images/scroll-cursor.png');
  background-size: 30px;
  cursor: pointer;
}

.label-time-inizio-left {
  padding-right: 20px;
  padding-top: 20px;
  width: 25%
}

.label-time-inizio-right {
  padding-left: 20px;
  padding-top: 20px;
  width: 25%
}

.riscaldamento-right {
  width: 20%;
}

.riscaldamento-center {
  width: 60%;
}

.riscaldamento-left {
  width: 20%;
}

.riscaldamento-led-icon-image {
  height: 7px;
}

.orari-right {
  width: 20%;
}

.orari-center {
  width: 60%;
}

.orari-left {
  width: 20%;
}

.orari-led-icon-image {
  height: 7px;
}

/* MODAL */
.modal {
  background: rgba(10, 10, 10, 0.5);
  margin: 0 auto;
}

.modal-dialog {
  margin: 0;
}

.modal-title {
  color: #fcf6e6;
  font-size: 14px;
}

.modal-title-error {
  color: red;
}

.modal-body {
  color: white;
}

.modal-header {
  border: none;
  border-radius: 20px;
  padding: 8px;
}

.modal-content {
  background-color: transparent;
  border: none;
  justify-content: center;
  align-items: center;
}



.close {
  color: white;
}

.modal-dialog-centered {
  background-color: transparent;
}

/* PAGINA GESTIONE UTENTI */

.tabella-utenti {
  table-layout: auto;
  width: 100%;
  font-size: 12px;
}



.table-row {
  vertical-align: middle;
}

.td-head-left {
  text-align: left;
  padding-left: 30px;
  width: 80%;
  font-size: 14px;
  font-weight: 400;
}

.td-head-right {
  text-align: center;
  padding-right: 30px;
  width: 20%;
  font-size: 14px;
  font-weight: 400;
}

.table-data-left {
  padding-left: 30px;
  padding-bottom: 5px;
  text-align: left;
}

.table-data-right {
  padding-right: 30px;
  padding-bottom: 8px;
  text-align: center;
}

.edit-button {
  height: 50px;
}

.paragrafo {
  color: #f5f6e6;
  font-size: 10px;
  margin-bottom: 0;
}

.title-page {
  font-weight: 600;
  padding-bottom: 20px;
  padding-top: 20px;
}

.label-user {
  text-align: left;
  padding-right: 30px;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}

.input-text-user {
  width: 100%;
  border: none;
  border-bottom: 1px solid #666;
  color: #f5f6e6;
  font-size: 12px;
  text-align: center;
}

.input-text-user:focus {
  outline: none !important;
}

.row-input {
  padding-bottom: 20px;
}

.first {
  padding-top: 20px;
}

.check {
  width: 50%;
  padding-bottom: 5px;
}

.label-check {
  font-size: 14px;
  padding-top: 2px;
  padding-left: 5px;
  color: #fcf6e6;
}

button {
  border: none;
  width: 100%;
  padding: 0;
}

.button-submit {
  display: inline-block;
}

.custom-control-label::after {
  position: absolute;
  top: .25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
  background-color: #353434;
  border: 1px solid #666;
  border-radius: 4px;
}

.paragraph {
  font-size: 12px;
  padding: 0 10px;
  text-align: justify;
  width: 100%;
}

.table-font {
  font-size: 11px;
  background-color: transparent;
}

.list-element {
  display: inline-block;
  vertical-align: middle;
  color: #fcf6e6;
  margin: 2px;
}

.menu-item-log {
  color: #fcf6e6;
  display: inline-block;
  border: 1px solid #666;
  padding: 5px 10px;
  vertical-align: middle;
  border-radius: 5px;
  font-size:10px;
}

.active-log {
  color: red;
  display: inline-block;
  border: 1px solid #666;
  padding: 5px 10px;
  vertical-align: middle;
  border-radius: 5px;
  font-size:10px;
}


.menu-pagination {
  padding-left:0;

  background-color: transparent;
  list-style-type: none;
}

.pagination {
   margin:10px 0;
   font-size: 12px;
   color:#fcf6e6;
}

label {
color: #fcf6e6;
}

#username {
  text-align:center;
}
#username::placeholder {
text-align: center;
}

#password {
width: 100%;
color:#353434;
}

#password::placeholder {
color: gray;
padding-left: 0px;
}


.btn-accedi {
  margin-top: 25px;
  padding: 10px 20px;
  color: #fcf6e6;
  background-color: transparent;
  border-radius: 10px;
  box-shadow: 0px 0px 5px black;
  width: 150px;
}

/****** SLIDER *******/ 


#set-programmi-irrigazione {
  width: 100%;
}

.card-header {
  padding: 5px 20px !important;
}