
.label {
    font-size: .9em;
    color: #5f6988;
    margin-bottom: -10px;
    display: block;
    font-weight: 300;
    font-family: 'Poppins',sans-serif;
    z-index: 5;
}

.display-center {position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%)}
.display-container {position:relative}

.purple {color:purple !important}
.purple:hover {color:purple !important}

.animate-left-close{position:relative;animation:animateleftclose 0.4s}@keyframes animateleftclose{from{left:0px;opacity:1} to{left:-300px;opacity:0}}

.hoverbackgroundwhite:hover {
    background-color: #ffffff !important;
}

.hoverbackgroundgreen:hover {
    background-color: #004a43 !important;
}

.hoverwhite:hover {
    color: rgb(255, 255, 255) !important;
}

.hoverblack:hover {
    color: rgb(0, 0, 0) !important;
}

@keyframes heartbeat {
    0% {
        transform: scale(.75);
    }

    20% {
        transform: scale(1);
    }

    40% {
        transform: scale(.75);
    }

    60% {
        transform: scale(1);
    }

    80% {
        transform: scale(.75);
    }

    100% {
        transform: scale(.75);
    }
}

.hartbeat {
    color: red;
    animation: heartbeat 1s infinite;
}

.hart {
    color: red;
}

textarea {
    width: 100%;
    font-size: 8vw;
    background: rgba(255, 255, 255, 0);
    resize: none;
    overflow: hidden;
    min-height: 50px;
}

canvas {
    display: none;
}

.button-83 {
    appearance: button;
    background-color: transparent;
    background-image: linear-gradient(to bottom, #fff, #f8eedb);
    border: 0 solid #e5e7eb;
    border-radius: .5rem;
    box-sizing: border-box;
    color: #482307;
    column-gap: 1rem;
    cursor: pointer;
    display: flex;
    font-family: ui-sans-serif, system-ui, -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 100%;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
    outline: 2px solid transparent;
    padding: 1rem 1.5rem;
    text-align: center;
    text-transform: none;
    transition: all .1s cubic-bezier(.4, 0, .2, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    box-shadow: -6px 8px 10px rgba(81, 41, 10, 0.1), 0px 2px 2px rgba(81, 41, 10, 0.2);
}

.button-83:active {
    background-color: #f3f4f6;
    box-shadow: -1px 2px 5px rgba(81, 41, 10, 0.15), 0px 1px 1px rgba(81, 41, 10, 0.15);
}

.button-83:focus {
    box-shadow: rgba(72, 35, 7, .46) 0 0 0 4px, -6px 8px 10px rgba(81, 41, 10, 0.1), 0px 2px 2px rgba(81, 41, 10, 0.2);
}

.button-click {
    width: 60px;
    height: 60px;
    font-size: 0;
    background-color: darkred;
    border: 0;
    border-radius: 120px;
    margin: 18px;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes pulse {
    0% {
        box-shadow: 0px 0px 5px 0px rgba(173, 0, 0, .3);
    }

    65% {
        box-shadow: 0px 0px 5px 13px rgba(173, 0, 0, .3);
    }

    90% {
        box-shadow: 0px 0px 5px 13px rgba(173, 0, 0, 0);
    }
}

.slidecontainer {
    width: 100%;
  }
  
  .slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    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: 25px;
    height: 25px;
    border-radius: 50%;
    background: #04AA6D;
    cursor: pointer;
  }
  
  .slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #04AA6D;
    cursor: pointer;
  }

  .zoomslider {
    -webkit-appearance: none;
    width: 100%;
    height: 45px;
    border-radius: 15px;
    background: #d3d3d3;
    outline: none;
    -webkit-transition: .2s;
    transition: opacity .2s;
  }
  
  .zoomslider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #04AA6D;
    cursor: pointer;
  }
  
  .zoomslider::-moz-range-thumb {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #04AA6D;
    cursor: pointer;
  }