

.toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 0.5em;
    padding: 0.125em;
     box-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
  }
  
  .toggle-checkbox {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    z-index: 1;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
  }
  
  .toggle-container {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 0.375em;
    width: 7em;
    height: 3.5em;
    background-color: #e1dacd;
    box-shadow: inset 0 0 0.0625em 0.125em rgba(255, 255, 255, 0.2), inset 0 0.0625em 0.125em rgba(0, 0, 0, 0.4);
    transition: background-color 0.4s linear;
  }
  .toggle-checkbox:checked + .toggle-container {
    background-color: #f3b519;
  }
  
  .toggle-button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0.0625em;
    border-radius: 0.3125em;
    width: 2.675em;
    height: 2.875em;
    background-color: #e4ddcf;
    box-shadow: inset 0 -0.0625em 0.0625em 0.125em rgba(0, 0, 0, 0.1), inset 0 -0.125em 0.0625em rgba(0, 0, 0, 0.2), inset 0 0.1875em 0.0625em rgba(255, 255, 255, 0.3), 0 0.125em 0.125em rgba(0, 0, 0, 0.5);
    transition: left 0.4s;
  }
  .toggle-checkbox:checked + .toggle-container > .toggle-button {
    left: 3.5625em;
  }
  
  .toggle-button-circles-container {
    display: grid;
    grid-template-columns: repeat(3, min-content);
    gap: 0.125em;
    position: absolute;
    margin: 0 auto;
  }
  
  .toggle-button-circle {
    border-radius: 50%;
    width: 0.125em;
    height: 0.125em;
    background-image: radial-gradient(circle at 50% 0, #f6f0e9, #bebcb0);
  }
  div#timerDisplay {
    font-weight: 800;
    font-size: 80px;
  }
  .svg-wrapper {
    position: relative;
    width: 190px;
    height: 60px;
    text-align: center;
    cursor: pointer;
  }
  
  .shape {
    stroke-dasharray: 100 300;
    stroke-dashoffset: -297;
    fill: transparent;
    stroke: rgb(220, 20, 60);
    stroke-width: 5px;
    transition: stroke-width 1s, stroke-dashoffset 1s, stroke-dasharray 1s;
  }
  
  .text {
    font-size: 22px;
    top: -52px;
    position: relative;
    font-weight: 600;
    color: white;
  }
  
  .svg-wrapper:hover .shape {
    stroke-width: 2px;
    stroke-dashoffset: 0;
    stroke-dasharray: 760;
  }
  
  .svg-wrapper:hover {
    background-color: rgba(220, 20, 60, 0.2);
    transition: 1s;
  }
  
  .button-cus {
    background: transparent;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    transition: background-color 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
  }
  
  .button-cus:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    pointer-events: none;
  }
  
  .button-cus:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .button-cus:hover:before {
    transform: translateX(0);
  }
    