

body, html {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  scroll-behavior: smooth; /* Плавный скролл */
  /*-webkit-font-smoothing: antialiased;  Chrome, Safari */
  -moz-osx-font-smoothing: grayscale; /* Firefox */
  text-underline-position: from-font;
  -webkit-text-size-adjust: 100%;
  text-decoration-skip-ink: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

/* Стили для авторизации */
.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px;
}

.auth-box {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
}

.auth-box h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  font-size: 28px;
}

.auth-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
}

.auth-tab {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-size: 16px;
  color: #666;
  transition: all 0.3s;
}

.auth-tab.active {
  color: #667eea;
  border-bottom-color: #667eea;
  font-weight: 600;
}

.auth-tab:hover {
  color: #667eea;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.auth-form input {
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s;
  width: 100%;
  box-sizing: border-box;
}

.auth-form input:focus {
  outline: none;
  border-color: #667eea;
}

.auth-form .btn_default {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
}

.error-message {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
  min-height: 20px;
}

.user-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  gap: 15px;
}

.user-info span {
  font-weight: 500;
  color: #333;
}

.search-container {
  flex: 1;
  max-width: 500px;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 8px 35px 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.search-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.search-clear-btn {
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #999;
  padding: 0;
  width: 24px;
  height: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.search-clear-btn:hover {
  background-color: #f0f0f0;
  color: #666;
}

main {
  padding: 20px;
  flex: 1 0 auto;

  .project-form {
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 8px;
    width: 100%;
    max-width: 980px;
    justify-content: flex-start;
    align-items: center;
    margin: 20px auto;
  }

  .project-list {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;

    .project-item {
      padding: 10px;
      box-shadow: 0 0 3px 0 #ccc;
      border-radius: 8px;
      background: white;
      align-self: baseline;
      position: relative;

      .project-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 10px;

        > h3 {
          margin-top: 0;
          margin-bottom: 0;
          flex: 1;
        }

        .project-menu-container {
          position: relative;
          margin-left: 10px;

          .project-menu-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: background-color 0.2s ease;
            width: 32px;
            height: 32px;

            &:hover {
              background-color: #f0f0f0;
            }

            svg {
              display: block;
            }
          }

          .project-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border: 1px solid #ddd;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            min-width: 220px;
            z-index: 1000;
            display: none;
            margin-top: 5px;
            overflow: hidden;

            &.active {
              display: block;
              margin:0;
            }

            .menu-item {
              width: 100%;
              padding: 12px 16px;
              background: none;
              border: none;
              text-align: left;
              cursor: pointer;
              font-size: 14px;
              color: #333;
              transition: background-color 0.2s ease;
              display: flex;
              align-items: center;

              &:hover {
                background-color: #f5f5f5;
              }

              &:active {
                background-color: #e8e8e8;
              }

              > span {
                text-wrap-mode: nowrap;
                display: block;
              }
            }
          }
        }
      }

      > h3 {
        margin-top: 0;
      }

      .rate_project {
        display: flex;
        gap: 5px;
        align-items: center;

        .edit-rate-form {
          display: inline-flex;
          align-items: center;
          justify-content: center;

          .rate-input {
            width: 100px;
          }

          .edit_rate_success {
            &:after {
              content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='38px' viewBox='0 0 24 24' width='38px' fill='%232ECC71'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z'/%3E%3C/svg%3E");
            }
          }

          .edis_rate_cancel {
            &:after {
              content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='38px' viewBox='0 0 24 24' width='38px' fill='%23E53935'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z'/%3E%3C/svg%3E");
            }
          }
        }
      }

      .timer {
        font-size: 24px;
        font-weight: bold;
        margin: 5px 0 0;
      }
      .cost{
        margin:0 0 15px 0;
      }

      .btns_project {
        display: flex;
        gap: 15px;

        .edit-btn {
          &:after {
            content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='38px' viewBox='0 -960 960 960' width='38px' fill='%23ffc107'%3E%3Cpath d='M477-120q-149 0-253-105.5T120-481h60q0 125 86 213t211 88q127 0 215-89t88-216q0-124-89-209.5T477-780q-68 0-127.5 31T246-667h105v60H142v-208h60v106q52-61 123.5-96T477-840q75 0 141 28t115.5 76.5Q783-687 811.5-622T840-482q0 75-28.5 141t-78 115Q684-177 618-148.5T477-120Zm128-197L451-469v-214h60v189l137 134-43 43Z'/%3E%3C/svg%3E");
          }
        }

        .edit-rate-btn {
          &:after {
            content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 20 20' height='40px' viewBox='0 0 20 20' width='40px' fill='%23546E7A'%3E%3Cg%3E%3Crect fill='none' height='20' width='20' x='0'/%3E%3C/g%3E%3Cg%3E%3Cpath d='M11.25,3H6v7H4.5v1.5H6V13H4.5v1.5H6V17h1.5v-2.5H11V13H7.5v-1.5h3.75c2.35,0,4.25-1.9,4.25-4.25C15.5,4.9,13.6,3,11.25,3z M11.25,10H7.5V4.5h3.75C12.77,4.5,14,5.73,14,7.25S12.77,10,11.25,10z'/%3E%3C/g%3E%3C/svg%3E");
          }
        }

        .btn_play,
        .btn_stop {
          position: relative;

          &:after {
            content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='38px' viewBox='0 -960 960 960' width='38px' fill='%2378A75A'%3E%3Cpath d='m383-310 267-170-267-170v340Zm97 230q-82 0-155-31.5t-127.5-86Q143-252 111.5-325T80-480q0-83 31.5-156t86-127Q252-817 325-848.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 82-31.5 155T763-197.5q-54 54.5-127 86T480-80Zm0-60q142 0 241-99.5T820-480q0-142-99-241t-241-99q-141 0-240.5 99T140-480q0 141 99.5 240.5T480-140Zm0-340Z'/%3E%3C/svg%3E");
          }
        }

        .btn_stop {
          &:after {
            content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='38px' viewBox='0 -960 960 960' width='38px' fill='%23BB271A'%3E%3Cpath d='M370-320h60v-320h-60v320Zm160 0h60v-320h-60v320ZM480-80q-82 0-155-31.5t-127.5-86Q143-252 111.5-325T80-480q0-83 31.5-156t86-127Q252-817 325-848.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 82-31.5 155T763-197.5q-54 54.5-127 86T480-80Zm0-60q142 0 241-99.5T820-480q0-142-99-241t-241-99q-141 0-240.5 99T140-480q0 141 99.5 240.5T480-140Zm0-340Z'/%3E%3C/svg%3E");
          }
        }

        .delete-btn {
          &:after {
            content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='38px' viewBox='0 -960 960 960' width='38px' fill='%23dc3545'%3E%3Cpath d='m361-299 119-121 120 121 47-48-119-121 119-121-47-48-120 121-119-121-48 48 120 121-120 121 48 48ZM261-120q-24 0-42-18t-18-42v-570h-41v-60h188v-30h264v30h188v60h-41v570q0 24-18 42t-42 18H261Zm438-630H261v570h438v-570Zm-438 0v570-570Z'/%3E%3C/svg%3E");
          }

          &:hover:after {
            content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='38px' viewBox='0 -960 960 960' width='38px' fill='%23bb2d3b'%3E%3Cpath d='m361-299 119-121 120 121 47-48-119-121 119-121-47-48-120 121-119-121-48 48 120 121-120 121 48 48ZM261-120q-24 0-42-18t-18-42v-570h-41v-60h188v-30h264v30h188v60h-41v570q0 24-18 42t-42 18H261Zm438-630H261v570h438v-570Zm-438 0v570-570Z'/%3E%3C/svg%3E");
          }
        }

        .export-btn {
          &:after {
            content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='38px' viewBox='0 -960 960 960' width='38px' fill='%234285F4'%3E%3Cpath d='M480-320 280-520l56-58 104 104v-326h80v326l104-104 56 58-200 200ZM240-160q-33 0-56.5-23.5T160-240v-120h80v120h480v-120h80v120q0 33-23.5 56.5T720-160H240Z'/%3E%3C/svg%3E");
          }

          &:hover:after {
            content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='38px' viewBox='0 -960 960 960' width='38px' fill='%232B6CB0'%3E%3Cpath d='M480-320 280-520l56-58 104 104v-326h80v326l104-104 56 58-200 200ZM240-160q-33 0-56.5-23.5T160-240v-120h80v120h480v-120h80v120q0 33-23.5 56.5T720-160H240Z'/%3E%3C/svg%3E");
          }
        }
      }

      .tasks-section {
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid #eee;

        .tasks-section-header {
          display: flex;
          align-items: center;
          justify-content: space-between;
          margin-bottom: 10px;

          h4 {
            margin: 0;
            color: #333;
            flex: 1;
          }

          .sort-tasks-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: background-color 0.2s ease;
            width: 32px;
            height: 32px;

            &:hover {
              background-color: #f0f0f0;
            }

            &[data-sorted="true"] {
              background-color: rgba(102, 126, 234, 0.1);
            }

            svg {
              display: block;
            }
          }
        }

        h4 {
          margin: 0 0 10px 0;
          color: #333;
        }

        .task-input-container {
          display: flex;
          gap: 10px;
          margin-bottom: 15px;

          .task-input {
            flex: 1;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
          }

          .add-task-btn {
            padding: 8px 16px;
            white-space: nowrap;
          }
        }

        .task-list {
          list-style: none;
          padding: 0;
          margin: 0;

          .task-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px;
            background: #f8f9fa;
            flex-direction: column;
            box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 1px rgba(102, 112, 133, .32), 0 0 1px rgba(102, 112, 133, .47);
            margin-bottom: 8px;
            border-radius: 8px;
            gap: 2.5px;
            position:relative;

            .block_date_time {
              width: 100%;

              .block_date {
                display: flex;
                flex-flow: row wrap;
                gap: 5px;
                justify-content: space-between;
                width: 100%;

                .created_date {
                  font-size: 10px;
                  line-height: 10px;
                  padding: 2px;
                  font-weight: bold;
                }

                .completed_date {
                  font-size: 10px;
                  line-height: 10px;
                  color: white;
                  background: #4caf50;
                  border-radius: 2px;
                  padding: 2px;
                  font-weight: bold;
                }
              }
            }

            .block_task_name {
              width: 100%;
              display: flex;
              align-items: flex-start;
              justify-content: space-between;
              gap:1.5px;

              input[type="checkbox"],
              input[type="radio"] {
                appearance: none;
                position: relative;
                transition: 500ms;
                width: 20px;
                max-width: 20px;
                min-width: 20px;
                height: 20px;
                cursor: pointer;
                margin: 0 5px 0 0;

                &:checked::after {
                  content: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='%234caf50' xmlns='http://www.w3.org/2000/svg' class='k complete completed' disabled='false' style='height: 20px; width: 20px; fill:%234caf50;'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 18C14.4183 18 18 14.4183 18 10C18 5.58172 14.4183 2 10 2C5.58172 2 2 5.58172 2 10C2 14.4183 5.58172 18 10 18ZM13.9222 6.91078C14.2477 7.23622 14.2477 7.76378 13.9222 8.08922L8.92222 13.0892C8.59678 13.4147 8.06922 13.4147 7.74378 13.0892L5.74378 11.0892C5.41833 10.7638 5.41833 10.2362 5.74378 9.91078C6.06922 9.58533 6.59678 9.58533 6.92222 9.91078L8.33311 11.3217L12.7437 6.91078C13.0692 6.58533 13.5967 6.58533 13.9222 6.91078Z' fill='%234caf50'/%3E%3C/svg%3E");
                  position: absolute;
                  width: 0;
                  height: 0;
                  background-repeat: no-repeat;
                  transition: 500ms;
                  top: 0;
                  left: 0;
                  border: none;
                }

                &:checked {
                  accent-color: #4caf50;
                  width: 20px;
                  height: 20px;
                  border: none;
                }

                &:checked + .task-item {
                  box-shadow: 0 1px 1px rgba(17, 153, 142, 0.3);
                }
              }

              .task_name {
                flex: 1;
                word-break: break-word;
                font-size: 14px;
                text-wrap-style: balance;
                width: 100%;
                margin-right:25px;

                .name {
                  font-size: 13px;
                  flex: 1;
                  word-break: break-word;
                  line-height: 100%;

                  > a {
                    color: #4285f4;
                  }
                }
              }

              .delete-task-btn {
                color: #dc3545;
                font-size: 30px;
                line-height: 1;
                cursor: pointer;
                position: absolute;
                left: auto;
                right: 10px;
                bottom: auto;
                top: 20px;

                &:hover {
                  color: #bb2d3b;
                }
              }
            }

          }
        }
      }
    }
  }
}


::-webkit-scrollbar {
  width: 3px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background: #cacad2;
  border: none;
  border-radius: 30px;
}

::-webkit-scrollbar-track {
  background-color: #e5e7ee;
  border-radius: 30px;
}

.hidden {
  opacity: 0 !important;
  display: none !important;
}

a {
  color: #3e3c3c;
  text-decoration: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  background: transparent;
  padding: 0;
}

.btn_default,
.btn_cancel {
  padding: 8px 16px;
  margin-right: 10px;
  background: #007bff;
  color: white;
  border-radius: 4px;

  &:hover {
    background: #18861c;
  }
}

.btn_cancel {
  background: #bb2d3b;
}
.link_tg_support{
  color: #007bff;
  text-decoration: underline;
  margin:20px;
  display: block;
}
input {
  padding: 8px;
  margin-right: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.edit-time-form {
  margin: 10px 0;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 5px;
}

.time-inputs {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.time-input {
  width: 80px;
}

.edit-time-buttons {
  display: flex;
  gap: 10px;
}

.btn_reset {
  padding: 8px 16px;
  margin-right: 10px;
  background: #ff9800;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.btn_reset:hover {
  background: #f57c00;
}

.btn_reset:active {
  background: #e65100;
}

footer {
  padding: 20px;
  max-width: 100%;
  min-width: 300px;
  text-align: center;
}

/* Стили для редактирования названия задачи */
.editable-task-name {
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 3px;
  transition: background-color 0.2s;
  position:relative;
}

.editable-task-name {
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 3px;
  transition: background-color 0.2s;
  position: relative;

  &:not(:has(.edit-task-form)):hover {
    background-color: #f0f0f0;

    &:after {
      content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23007bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='' type='ui'%3E%3Cpath d='M4 20h4l10.5 -10.5a1.5 1.5 0 0 0 -4 -4l-10.5 10.5v4'%3E%3C/path%3E%3Cpath d='M13.5 6.5l4 4'%3E%3C/path%3E%3C/svg%3E");
      width: 16px;
      height: 16px;
      display: inline-block;
      margin-left: 5px;
      vertical-align: middle;
      transition: 0.2s;
      position: absolute;
    }
  }
}
.editable-task-name.completed {
  &:not(:has(.edit-task-form)){
    text-decoration: line-through;
    color: #666;
    opacity: 0.7;
  }
}

.edit-task-form {
  display: flex;
  align-items: center;
}

.edit-task-input {
  font-size: 14px;
  text-wrap-style: balance;
  display: block;
  min-height: 120px;
  height: auto;
  resize:none;
}

.save-task-btn,
.cancel-task-btn {
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 15px;
  width: 30px;
  min-width: 30px;
  max-width: 30px;
  height: 30px;
  line-height: 1;
  padding: 0;
  margin:1px;
}

.save-task-btn {
  background-color: #4CAF50;
  color: white;
}

.save-task-btn:hover {
  background-color: #45a049;
}

.cancel-task-btn {
  background-color: #f44336;
  color: white;
}

.cancel-task-btn:hover {
  background-color: #da190b;
}

/* Стили для разделителей месяцев */
.month-separator {
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
  width: 100%;
  max-width: max-content;
}

.month-separator .month-header {
  color: black;
  padding: 0 0 8px 0;
  border-radius: 8px;
}

.month-separator h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.5px;
}

.no-tasks {
  list-style: none;
  text-align: center;
  color: #666;
  font-style: italic;
  padding: 20px;
}
/* Стили для drag and drop */
.task-item {
  position: relative;
  transition: all 0.2s ease;
}

.task-item[draggable="true"] {
  cursor: move;
}

.task-item.dragging {
  opacity: 0.5;
  transform: rotate(2deg);
  z-index: 1000;
}

.drag-handle {
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ccc;
  font-size: 12px;
  cursor: grab;
  padding: 2px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.task-item:hover .drag-handle {
  opacity: 1;
}

.drag-handle:hover {
  color: #666;
}

.drag-handle:active {
  cursor: grabbing;
}

/* Стили для drop zones */
.drop-zone-highlight {
  background-color: rgba(102, 126, 234, 0.1);
  border: 2px dashed rgba(102, 126, 234, 0.3);
  border-radius: 8px;
  min-height: 50px;
  transition: all 0.3s ease;
}

.task-list.drag-over-empty {
  background-color: rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.6);
}

/* Стили для подсветки позиции вставки */
.task-item.drag-over {
  background-color: rgba(102, 126, 234, 0.1);
}

.task-item.drag-over-top {
  border-top: 3px solid #667eea;
}

.task-item.drag-over-bottom {
  border-bottom: 3px solid #667eea;
}

/* Стили для активного перетаскивания */
body.dragging-active .task-list {
  transition: background-color 0.2s ease, border 0.2s ease;
}

body.dragging-active .task-item:not(.dragging) {
  transition: background-color 0.2s ease, border 0.2s ease;
}

/* Стили для месячных разделителей при drag and drop */
.month-separator {
  pointer-events: none;
}

.month-separator.drag-over {
  background: none !important;
  border: none !important;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
  .drag-handle {
    left: -10px;
    opacity: 1;
    font-size: 14px;
  }

  .task-item[draggable="true"] {
    padding-left: 20px;
  }
}

/* Анимация при перетаскивании */
@keyframes dragPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
  }
}

.task-item.dragging {
  animation: dragPulse 1s infinite;
}
