@charset "UTF-8";
html {
  scroll-behavior: smooth;
  font-size: 65.5%;
}
html body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  letter-spacing: -0.01em;
  transition: background-color 0.3s, color 0.3s;
}
html body::-webkit-scrollbar {
  display: none;
}

.light-theme {
  background-color: #f7f7f7;
  color: black;
}

.dark-theme {
  background-color: #444444;
  color: white;
}

@font-face {
  src: url("DS-DIGIB.woff") format("woff"), url("DS-DIGIB.TTF") format("truetype");
  font-family: "DS-Digital";
}
@media print {
  body * {
    visibility: hidden;
  }
  #showHistory,
  #showHistory * {
    visibility: visible;
  }
  .no-print {
    display: none;
  }
  #showHistory {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: auto;
  }
}
* input[type=date],
* input[type=time],
* input[type=datetime-local] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 1px solid darkgrey;
  border-radius: 2px;
}
* fieldset {
  display: flex;
  margin: auto;
  border-radius: 2px;
  padding: 0 5px;
}

.welcome {
  text-align: center;
  padding: 20px;
  font-size: 2rem;
}
.welcome img {
  height: 50px;
  transition: 1s;
}
.welcome img:hover {
  cursor: pointer;
  height: 55px;
}
.welcome img,
.welcome h1,
.welcome i {
  margin: 0;
  padding: 0;
}

.menu {
  font-size: 1.5rem;
  background-color: black;
  color: #0952a6;
  position: relative;
  display: flex;
  height: 3.2rem;
  padding-left: 1rem;
}
.menu .figure {
  height: 3rem;
  line-height: 3rem;
  display: flex;
}
.menu .figure img {
  height: 28px;
  margin-right: 5px;
  border: 2px solid #0952a6;
  border-radius: 50%;
}
.menu .figure a {
  text-decoration: none;
  color: #0952a6;
}
.menu div.user-config,
.menu div.icon-user-secret {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  position: absolute;
  right: 5px;
  top: 8px;
  cursor: pointer;
}
.menu div.user-config span,
.menu div.icon-user-secret span {
  display: inline-flex;
  position: relative;
  gap: 5px;
  margin: auto 5px;
}
.menu div.user-config span:hover,
.menu div.icon-user-secret span:hover {
  color: rgb(241, 160, 8);
}
.menu div.user-config button,
.menu div.icon-user-secret button {
  cursor: pointer;
  border: none;
  outline: none;
  color: #0952a6;
  font-weight: bold;
  font-size: 1em;
  background-color: transparent;
  padding: 2px;
}

.divbtn {
  overflow: hidden;
  border: 1px solid #444444;
  background-color: rgba(86, 81, 81, 0.274);
  display: flex;
  width: 100%;
  z-index: 1;
  font-size: 2rem;
}
.divbtn .btn {
  width: 95%;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1.5em;
  padding: 5px;
  height: 40px;
  line-height: 40px;
  color: #0952a6;
}
.divbtn .btn.active {
  background: #0952a6;
  color: white;
}
.divbtn .btn:hover {
  opacity: 0.5;
}

div.loading {
  display: block;
  text-align: center;
  margin: auto;
  width: 100%;
}

#divUser section {
  text-align: center;
  padding-bottom: 50px;
}
#divUser section a {
  margin: 10px;
  text-decoration: none;
}

.arrow-top,
.arrow-bottom {
  display: block;
  max-width: 1200px;
  text-decoration: none;
  font-size: 2em;
  color: #0952a6;
  text-align: center;
  z-index: 0;
  animation: arrowUp 2s infinite;
}
@keyframes arrowUp {
  0% {
    transform: translateY(10px);
    opacity: 0.5;
  }
  20% {
    transform: translateY(0px);
    opacity: 0.8;
  }
  40% {
    transform: translateY(7px);
    opacity: 0.3;
  }
  90% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(8px);
    opacity: 1;
  }
}
@keyframes arrowDown {
  0% {
    transform: translateY(-10px);
    opacity: 0.5;
  }
  20% {
    transform: translateY(0px);
    opacity: 0.8;
  }
  40% {
    transform: translateY(-7px);
    opacity: 0.3;
  }
  90% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-8px);
    opacity: 1;
  }
}
.arrow-bottom {
  animation: arrowDown 2s infinite;
}

.icon-sort,
.icon-sort-asc,
.icon-sort-desc,
.icon-cog {
  cursor: pointer;
  padding: 0 10px;
}

.divtab {
  display: none;
  border-top: none;
  font-size: 1.5rem;
}
.divtab h2 {
  text-align: center;
  margin: 0;
}
.divtab table {
  width: 96%;
  margin: auto;
  transition: 1s;
  max-width: 1200px;
  font-size: 1.5rem;
  background-color: rgba(255, 255, 255, 0.8862745098);
}
.divtab table .icon-sort,
.divtab table .icon-list {
  cursor: pointer;
}
.divtab form {
  margin: auto;
  width: 100%;
  padding: 10px;
  max-width: 300px;
  background-color: rgba(86, 81, 81, 0.274);
  display: grid;
  border-radius: 5px;
}
.divtab form input,
.divtab form textarea,
.divtab form select,
.divtab form fieldset,
.divtab form button {
  width: 96%;
  margin: 5px auto;
  padding: 5px;
  border: 1px solid gray;
  border-radius: 2px;
  gap: 2px;
}
.divtab form input label,
.divtab form textarea label,
.divtab form select label,
.divtab form fieldset label,
.divtab form button label {
  display: flex;
  width: auto;
  margin: auto 5px;
}
.divtab form input label span,
.divtab form textarea label span,
.divtab form select label span,
.divtab form fieldset label span,
.divtab form button label span {
  display: block;
}
.divtab form button {
  background-color: #0952a6;
  color: white;
  cursor: pointer;
  border: none;
  outline: none;
}
.divtab form select,
.divtab form button {
  width: 100%;
}
.divtab form input[type=date],
.divtab form input[type=time] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 5px 2px;
  width: 90%;
}
.divtab form i {
  display: block;
  font-size: 1rem;
  text-align: right;
}
.divtab form .checkbox {
  display: inline;
}
.divtab form .checkbox input[type=checkbox] {
  width: auto;
}
.divtab form #fieldSetSearch span {
  font-size: 1.9em;
  color: #065acf;
}
.divtab form .secBody .buttons-flex,
.divtab form .buttons-flex {
  max-width: 100%;
  position: relative;
  display: flex;
  gap: 5px;
}
.divtab form .secBody .buttons-flex button,
.divtab form .buttons-flex button {
  background-color: #0952a6;
  color: white;
  cursor: pointer;
  outline: none;
  border: 1px solid gray;
  transition: 0.3s;
}
.divtab form .secBody .buttons-flex button.icon-refresh,
.divtab form .buttons-flex button.icon-refresh {
  background-color: rgb(241, 160, 8);
  max-width: 10%;
  padding-top: 8px;
}
.divtab form .secBody .buttons-flex button.block,
.divtab form .buttons-flex button.block {
  background-color: red;
}
.divtab form p#infoerror {
  padding: 0;
  margin: 0;
}

table {
  border-collapse: collapse;
}
table thead th.no-print {
  position: relative;
}
table thead th.no-print .slidingDiv {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
  position: absolute;
  display: grid;
  z-index: 10;
}
table thead th.no-print .slidingDiv.open {
  width: 100%;
  background-color: #0952a6;
  height: auto;
}
table td,
table th {
  border: 1px solid #444444;
}
table td span,
table th span {
  display: block;
  cursor: pointer;
  text-align: center;
}
table thead tr th {
  background: #0952a6;
  color: white;
  text-align: center;
}
table thead tr th button {
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: large;
}
table tbody th {
  color: #0952a6;
  text-shadow: 0.5px 0.5px black;
  text-align: center;
  background: rgba(86, 81, 81, 0.274);
}
table tbody tr td button {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: red;
  cursor: pointer;
  font-size: 2rem;
  padding: 0;
}
table tbody tr td button:hover {
  background: rgba(86, 81, 81, 0.274);
}
table tfoot tr th {
  background: #0952a6;
  color: white;
  text-align: center;
}

#form-make-reservation {
  display: flex;
}
@media screen and (max-width: 600px) {
  #form-make-reservation {
    width: 90%;
    display: grid;
  }
}

#editPolicy {
  max-width: 85%;
}
#editPolicy .secBody input[type=datetime-local] {
  min-width: 98%;
}
#editPolicy .secBody button {
  color: white;
}
#editPolicy .secBody button[type=submit] {
  background-color: #0952a6;
}
#editPolicy .secBody #editor {
  min-height: 400px;
  max-height: 600px;
  overflow-y: auto;
}
@media screen and (max-width: 600px) {
  #editPolicy .secBody #editor {
    min-height: 200px;
  }
}

#form-make-reservation,
#form-filtro-appts {
  width: auto;
  max-width: 600px;
  position: relative;
  padding: 20px;
}
#form-make-reservation .icon-search,
#form-filtro-appts .icon-search {
  display: block;
  margin: auto;
  width: 100%;
  text-align: center;
  color: #0952a6;
}
#form-make-reservation .sec-filtro,
#form-filtro-appts .sec-filtro {
  display: flex;
  gap: 2px;
  width: 96%;
  position: relative;
  max-width: 600px;
  margin: auto;
}
#form-make-reservation .sec-filtro button,
#form-filtro-appts .sec-filtro button {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  width: 30px;
  background-color: transparent;
  color: black;
}
#form-make-reservation .sec-filtro button i,
#form-filtro-appts .sec-filtro button i {
  font-size: 1.5em;
  padding: 5px;
}
#form-make-reservation .employee-list,
#form-filtro-appts .employee-list {
  flex: 1;
  background-color: rgba(86, 81, 81, 0.274);
  width: 90%;
  min-width: 180px;
  max-width: 600px;
  padding: 10px;
  padding-right: 18px;
  font-size: 1rem;
  margin: auto;
  text-align: center;
}
#form-make-reservation .employee-list select,
#form-filtro-appts .employee-list select {
  padding: 10px;
  box-sizing: border-box;
  background-color: transparent;
  font-size: 2em;
  width: 100%;
  max-width: 300px;
}
#form-make-reservation .employee-list select option,
#form-filtro-appts .employee-list select option {
  margin: 5px 0;
  cursor: pointer;
  border-radius: 3px;
}
#form-make-reservation .employee-list select option:hover,
#form-filtro-appts .employee-list select option:hover {
  background-color: grey;
}
#form-make-reservation .employee-list select option:hover::before,
#form-filtro-appts .employee-list select option:hover::before {
  content: "● ";
  color: orange;
}
#form-make-reservation .employee-list select option::before,
#form-filtro-appts .employee-list select option::before {
  content: "○ ";
}
#form-make-reservation .employee-list select option:checked,
#form-filtro-appts .employee-list select option:checked {
  box-shadow: 0 0 10px 100px #0952a6 inset;
  text-decoration: line-through;
  color: white;
}
#form-make-reservation .employee-list select option:checked::before,
#form-filtro-appts .employee-list select option:checked::before {
  content: "● ";
  color: red;
}
#form-make-reservation .employee-list select::-webkit-scrollbar,
#form-filtro-appts .employee-list select::-webkit-scrollbar {
  width: 5px;
  color: #0952a6;
}
#form-make-reservation .secBody,
#form-filtro-appts .secBody {
  flex: 1;
  padding: 20px;
  margin: auto;
  width: auto;
  max-width: 600px;
}
#form-make-reservation .secBody fieldset,
#form-make-reservation .secBody .infoCliente,
#form-filtro-appts .secBody fieldset,
#form-filtro-appts .secBody .infoCliente {
  display: grid;
}
#form-make-reservation .secBody fieldset input,
#form-make-reservation .secBody fieldset select,
#form-make-reservation .secBody fieldset textarea,
#form-make-reservation .secBody .infoCliente input,
#form-make-reservation .secBody .infoCliente select,
#form-make-reservation .secBody .infoCliente textarea,
#form-filtro-appts .secBody fieldset input,
#form-filtro-appts .secBody fieldset select,
#form-filtro-appts .secBody fieldset textarea,
#form-filtro-appts .secBody .infoCliente input,
#form-filtro-appts .secBody .infoCliente select,
#form-filtro-appts .secBody .infoCliente textarea {
  max-width: 100%;
}
#form-make-reservation .secBody #tiempoEstimado,
#form-filtro-appts .secBody #tiempoEstimado {
  display: grid;
}
#form-make-reservation .secBody #tiempoEstimado div,
#form-filtro-appts .secBody #tiempoEstimado div {
  display: inline-flex;
  gap: 10px;
}
#form-make-reservation .secBody #tiempoEstimado div label,
#form-filtro-appts .secBody #tiempoEstimado div label {
  background: rgba(86, 81, 81, 0.274);
  border-left: 3px solid #0952a6;
  font-weight: bold;
  border-radius: 0 5px 5px 0;
  padding: 0 5px;
  margin: 5px auto;
}
#form-make-reservation .secBody #tiempoEstimado div label:nth-child(3),
#form-filtro-appts .secBody #tiempoEstimado div label:nth-child(3) {
  color: red;
}
#form-make-reservation .secBody .form-btns,
#form-filtro-appts .secBody .form-btns {
  display: inline-flex;
  width: 98%;
  margin: auto 5px;
  gap: 15px;
}
#form-make-reservation .secBody .form-btns button,
#form-filtro-appts .secBody .form-btns button {
  font-weight: bold;
}
#form-make-reservation .secBody .form-btns button[type=reset],
#form-filtro-appts .secBody .form-btns button[type=reset] {
  width: 60px;
  background-color: rgb(241, 160, 8);
}

#divcontainer .form-appts-container {
  display: flex;
  gap: 10px;
  max-width: 1000px;
  margin: auto;
  padding: 0 2rem;
}
@media screen and (max-width: 600px) {
  #divcontainer .form-appts-container {
    width: 90%;
    display: grid;
  }
}
#divcontainer .form-appts-container #divcitas {
  width: 100%;
  font-size: 2.5rem;
}
@media screen and (max-width: 750px) {
  #divcontainer .form-appts-container #divcitas {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  #divcontainer .form-appts-container #divcitas {
    font-size: 1rem;
  }
  #divcontainer .form-appts-container #divcitas .dayoff,
  #divcontainer .form-appts-container #divcitas .container {
    font-size: 1.5em;
  }
}
#divcontainer .form-appts-container #divcitas h2 {
  font-size: 2.5rem;
}
#divcontainer .form-appts-container #divcitas .diff-date {
  font-weight: bold;
  font-style: italic;
  text-align: center;
  background: black;
  color: #0952a6;
  border-bottom: 5px solid #0952a6;
  width: 100%;
  font-size: 2.5rem;
  padding: 5px 0;
}
#divcontainer .form-appts-container #divcitas .diff-date strong {
  display: none;
  float: right;
}
#divcontainer .form-appts-container #divcitas .dayoff {
  display: flex;
  font-size: 2rem;
  border: 1px solid gray;
  margin-bottom: 1em;
  color: white;
  background-color: black;
  padding: 1rem;
}
#divcontainer .form-appts-container #divcitas .dayoff .off-body {
  font-size: 1em;
  display: grid;
  width: 100%;
}
#divcontainer .form-appts-container #divcitas .dayoff .off-body .off-header {
  color: #0952a6;
  background-color: rgba(86, 81, 81, 0.274);
  text-align: right;
  font-size: 1em;
  padding-right: 1em;
  border-radius: 5px;
}
#divcontainer .form-appts-container #divcitas .dayoff .off-body .off-title {
  display: flex;
  gap: 5px;
  font-size: 2em;
  color: red;
  font-weight: bold;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
#divcontainer .form-appts-container #divcitas .dayoff .off-body .off-title .icon-care {
  color: orange;
  transform: translateY(6px);
}
#divcontainer .form-appts-container #divcitas .dayoff .off-body p {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: 1.5rem;
}
#divcontainer .form-appts-container #divcitas .dayoff .off-right button {
  border: none;
  outline: none;
  background-color: transparent;
  color: red;
  font-size: 2.5rem;
  cursor: pointer;
}
#divcontainer .form-appts-container #divcitas .container {
  display: flex;
  border: 1px solid gray;
  border-radius: 2px;
  margin-bottom: 10px;
  padding: 5px 0;
  font-style: normal;
  font-size: 2rem;
}
#divcontainer .form-appts-container #divcitas .container .left {
  display: grid;
  width: 100%;
  padding-left: 5px;
}
#divcontainer .form-appts-container #divcitas .container .left .appt-counter {
  color: #0952a6;
  text-align: center;
  margin: 0;
}
#divcontainer .form-appts-container #divcitas .container .left .appt-counter b {
  font-family: "DS-Digital";
  text-transform: uppercase;
  background-color: black;
  color: greenyellow;
  display: inline-block;
  min-width: 80px;
}
#divcontainer .form-appts-container #divcitas .container .left .appt-counter meter {
  width: 100%;
}
#divcontainer .form-appts-container #divcitas .container .left .header {
  background-color: rgba(86, 81, 81, 0.274);
  text-align: right;
  padding-right: 2px;
}
#divcontainer .form-appts-container #divcitas .container .left .header .icon-usercircle {
  cursor: pointer;
  color: blue;
  font-weight: bold;
}
#divcontainer .form-appts-container #divcitas .container .left .header .rating-users {
  display: inline-flex;
  float: left;
  gap: 5px;
  cursor: pointer;
  font-size: 1em;
}
#divcontainer .form-appts-container #divcitas .container .left .body {
  display: flex;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
#divcontainer .form-appts-container #divcitas .container .left .body .time {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-weight: bold;
  font-family: "DS-Digital";
  text-transform: uppercase;
  color: #ccc;
  font-size: 2em;
}
#divcontainer .form-appts-container #divcitas .container .left .body .time strong {
  font-size: 0.5em;
}
#divcontainer .form-appts-container #divcitas .container .left .foot {
  position: relative;
}
#divcontainer .form-appts-container #divcitas .container .left .foot strong {
  cursor: pointer;
}
#divcontainer .form-appts-container #divcitas .container .left .foot a,
#divcontainer .form-appts-container #divcitas .container .left .foot span {
  text-decoration: none;
  font-weight: bold;
  color: blue;
  gap: 5px;
  display: inline-flex;
  margin: 3px 3px;
}
#divcontainer .form-appts-container #divcitas .container .left .foot .slidingDiv {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  position: absolute;
  left: 30%;
  background-color: red;
  display: grid;
  width: 30px;
  height: auto;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}
#divcontainer .form-appts-container #divcitas .container .left .foot p {
  font-weight: normal;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: 1.5rem;
}
#divcontainer .form-appts-container #divcitas .container .left .rating-citas {
  font-weight: normal;
  font-size: 1.1em;
  display: block;
  text-align: right;
  cursor: pointer;
}
#divcontainer .form-appts-container #divcitas .container .right {
  display: grid;
  padding: 0 0.5rem;
}
#divcontainer .form-appts-container #divcitas .container .right button,
#divcontainer .form-appts-container #divcitas .container .right input {
  color: red;
  border-radius: 3px;
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
  font-size: 1.2em;
  line-height: 90%;
  width: 1em;
  height: 1em;
}

footer {
  font-size: 1.5rem;
  background: black;
  color: white;
  text-align: center;
  padding: 20px 5%;
  bottom: 0;
  width: 90%;
}
footer .redes img {
  height: 30px;
  margin: 0 5px;
}
footer .redes a {
  text-decoration: none;
}
footer p,
footer i {
  padding: 0;
  margin: 0;
}
footer p a,
footer #subir a {
  text-decoration: none;
  color: #0952a6;
}

@media screen and (max-width: 350px) {
  table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 1%;
  }
}
#formPromo .icon-down,
#formPromo .icon-up {
  display: block;
  margin: auto;
  text-decoration: none;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}
#formPromo #clean {
  background: rgb(241, 160, 8);
}
#formPromo #reset {
  background: red;
}
#formPromo #uncheck {
  background: green;
}
#formPromo button#prom {
  background-color: #0952a6;
  color: white;
  flex: 1;
}

#btnPunch {
  position: sticky;
  bottom: 20px;
  right: 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
#btnPunch:hover {
  background-color: green;
}

.createList {
  background-color: #0952a6;
  padding-left: 20px;
  position: relative;
  height: 30px;
  overflow: visible;
  margin-top: 12px;
  align-self: center;
}
.createList button {
  margin-top: -10px;
  font-size: 2em;
  background: none;
  border: none;
  position: relative;
  --padding-block: 1rem;
  --padding-inline: 2rem;
  --arrow: 5rem;
  --arrow-stripes: .8rem;
  padding: 5px 20px;
  padding-right: 80px;
  filter: drop-shadow(4px 4px 4px hsla(0, 0%, 0%, 0.5));
  color: white;
  border-radius: 999vmax 0 0 999vmax;
  cursor: pointer;
  transition: all ease-in-out 0.5s;
}
.createList button:active {
  scale: 0.975;
}
.createList button:hover::after {
  transform: scale(1.02, 1.02);
  background-color: rgb(241, 160, 8);
}
.createList button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  background-color: green;
  background-image: linear-gradient(transparent 50%, hsla(0, 0%, 0%, 0.5) 0);
  animation: mask-position 5s linear infinite;
  --conic-stops: black 0 90deg, #0000 0;
  --linear-stops: #0000 0px, black 1px var(--arrow-stripes),
      #0000 calc(var(--arrow-stripes) + 1px) calc(var(--arrow-stripes) * 2);
  --mask-image:
      conic-gradient(from 225deg at right, var(--conic-stops)),
      conic-gradient(from 225deg at right, var(--conic-stops)),
      repeating-linear-gradient(-135deg, var(--linear-stops)),
      repeating-linear-gradient(-45deg, var(--linear-stops));
  --mask-position: 0 0, 0 0, 0 0, 0 100%;
  --mask-position-to: 0, 0, -100% 0, -100% 100%;
  --mask-size: calc(100% - var(--arrow)) 100%, 100%, 200% 50%, 200% 50%;
  --mask-repeat: no-repeat, repeat, repeat-x, repeat-x;
  -webkit-mask-image: var(--mask-image);
  -webkit-mask-position: var(--mask-position);
  -webkit-mask-size: var(--mask-size);
  -webkit-mask-repeat: var(--mask-repeat);
  -webkit-mask-composite: source-over, source-out, source-over, source-over;
  mask-image: var(--mask-image);
  mask-position: var(--mask-position);
  mask-size: var(--mask-size);
  mask-repeat: var(--mask-repeat);
  -webkit-mask-composite: source-over, source-out, source-over, source-over;
          mask-composite: add, subtract, add, add;
}
@keyframes mask-position {
  to {
    -webkit-mask-position: var(--mask-position-to);
    mask-position: var(--mask-position-to);
  }
}

.lists {
  display: block;
  margin: auto;
  text-align: center;
}
.lists .list {
  box-sizing: border-box;
  max-width: 300px;
  display: inline-flex;
  margin: 15px;
  position: relative;
  background-color: rgba(86, 81, 81, 0.274);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 10px;
}
.lists .bub-list {
  display: grid;
  margin: 5px;
  max-width: 300px;
}
.lists .header {
  position: relative;
  background-color: #0952a6;
  padding: 20px 20px 10px;
  color: white;
  text-align: center;
  display: block;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.lists .header .icon-cog {
  position: absolute;
  top: 5px;
  left: 5px;
  display: block;
  background: rgba(86, 81, 81, 0.274);
  width: 25px;
  height: 25px;
  border-radius: 20px;
  line-height: 30px;
}
.lists .header .config {
  display: none;
}
.lists .header .config div {
  position: absolute;
  background-color: #444444;
  padding: 5px;
  left: 0px;
  top: 35px;
  display: grid;
  z-index: 10;
}
.lists .header .config div span {
  display: block;
  width: 100%;
  font-size: 12px;
  font-weight: bold;
  text-align: left;
}
.lists .header .config div span:nth-child(2) {
  font-size: 8px;
}
.lists .header .config div button {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 5px;
  margin: 1px;
  border-radius: 2px;
  display: inline-flex;
  color: #0952a6;
}
.lists .header .config div button:hover {
  background-color: red;
  color: white;
}
.lists .header:after {
  content: "";
  display: table;
  clear: both;
}
.lists .inputText {
  display: flex;
  background-color: white;
  border-radius: 15px;
  padding: 0;
  overflow: hidden;
}
.lists .inputText input {
  width: 100%;
  flex: 1;
  border: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  outline: none;
  padding: 3px 15px;
}
.lists .inputText span {
  background-color: rgba(86, 81, 81, 0.274);
  display: block;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  width: 30px;
  height: 30px;
  line-height: 35px;
}
.lists .body ul {
  margin: 0;
  padding: 0;
}
.lists .body ul li {
  cursor: pointer;
  position: relative;
  padding: 0;
  background: rgba(223, 221, 221, 0.981);
  font-size: 18px;
  transition: 0.2s;
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow: hidden;
  transform: scale(0.95);
  border-radius: 2px;
}
.lists .body ul li:hover {
  transform: scale(1.05);
  font-weight: bolder;
  box-shadow: 0 4px 5px #444444, 0 6px 20px #444444;
  background-color: rgba(86, 81, 81, 0.274);
  color: black;
}
.lists .body ul li button {
  border: none;
  padding: 0px 15px;
  background-color: transparent;
  cursor: pointer;
}
.lists .body ul li button:nth-child(1):hover {
  background-color: orange;
  color: white;
}
.lists .body ul li button:nth-child(4):hover {
  background-color: red;
  color: white;
}
.lists .body ul li .liText {
  width: 100%;
  display: grid;
  text-align: left;
}
.lists .body ul li .liText i {
  font-size: 10px;
}
.lists .body ul li:first-of-type {
  background-color: green;
  color: white;
  transform: scale(1.05);
  z-index: 3;
}
.lists .body ul li:first-of-type:hover {
  color: black;
  transform: scale(1.09);
}
.lists .body ul li:nth-of-type(2) {
  background-color: rgb(241, 160, 8);
  transform: scale(1.02);
  z-index: 2;
}
.lists .body ul li:nth-of-type(2):hover {
  color: black;
  transform: scale(1.07);
  z-index: 4;
}
.lists .body ul li:nth-of-type(3) {
  background-color: rgb(230, 212, 13);
  transform: scale(1);
  z-index: 1;
}
.lists .body ul li:nth-of-type(3):hover {
  color: black;
  transform: scale(1.07);
  z-index: 4;
}
.lists .body ul li.checked {
  background: #888;
  color: #fff;
  text-decoration: line-through;
}
.lists .footer {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
.lists .footer ul {
  display: none;
  list-style: none;
}
.lists .footer ul .dateList {
  background-color: #0952a6;
  padding: 2px;
  color: white;
  font-weight: bolder;
  border-radius: 5px;
  margin: 3px;
}
.lists .footer ul li {
  position: relative;
  background-color: rgba(86, 81, 81, 0.274);
  color: white;
  margin: 2px;
  border-radius: 2px;
}
.lists .footer ul li:hover {
  color: #444444;
}
.lists .footer ul li .liText {
  display: grid;
}
.lists .footer ul li .liText span,
.lists .footer ul li .liText i {
  display: block;
  font-size: 8px;
}
.lists .footer ul li button {
  position: absolute;
  right: 2px;
  top: 2px;
  background-color: green;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  outline: none;
}
.lists .footer ul li button:hover {
  color: red;
}

.tooltip {
  position: relative;
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: rgb(241, 160, 8);
  color: white;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
}
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgb(241, 160, 8) transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.dateList {
  background-color: #0952a6;
  padding: 2px;
  color: white;
  font-weight: bolder;
  border-radius: 5px;
  margin: 3px;
  display: block;
}

.topnav {
  overflow: hidden;
  background-color: #333;
}
.topnav span {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
.topnav span:hover {
  background-color: #555;
  color: white;
}
.topnav .icon {
  display: none;
}

.active {
  background-color: #04AA6D;
  color: white;
}

.dropdown {
  float: left;
  overflow: hidden;
}
.dropdown .dropbtn {
  font-size: 17px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}
.dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}
.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 20;
  top: 45px;
}
.dropdown-content span {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}
.dropdown-content span:hover {
  background-color: #ddd;
  color: black;
}

@media screen and (max-width: 600px) {
  .topnav span:not(:first-child),
  .topnav .dropdown .dropbtn {
    display: none;
  }
  .topnav span.icon {
    float: right;
    display: block;
  }
  .topnav.responsive {
    position: relative;
  }
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive span {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {
    float: none;
  }
  .topnav.responsive .dropdown-content {
    position: relative;
  }
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}