.helper-popup {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    z-index: 100000;
    max-width: 600px;
    width: 100%;
}
.helper-popup__overlay {
    
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.75);
    z-index: 10000;
    display: block;
    content: "";
}
.helper-popup__child {

    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.helper-popup__child > * {

    flex: 0 0 100%;
}


.helper-popup__label {

    font-weight: bold;
}

.helper-popup__message {

    text-align: center;
    width: 100%;
}
.helper-popup__message--pulse {

	animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.helper-popup__text {

    width: 100%;
    border: 1px solid #eee;
    border-radius: 4px;
    outline: none;
    padding: 1rem;
}
.helper-popup__text:focus {

    border-color: #007bff;
}
.helper-popup__foot {

    display: flex;
    justify-content: flex-end;
}
.helper-popup__foot--center {
    justify-content: center;
}
.helper-popup__button {

    background-color: #007bff;
    color: white;
    border: none;
    outline: none;
    padding: 1rem 1.5rem;
    text-align: center;
    display: flex;
    border-radius: 4px;
}
.helper-popup__button:hover,
.helper-popup__button:focus {

    background-color: #0957ac;
}
.helper-button {

    position: fixed;
    right: 1rem;
    bottom: 1rem;
    background-color: #dc3545;
    color: white;
    border-radius: 100%;
    opacity: 0.15;
    transition: color 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    font-weight: bold;
    font-size: 1.5rem;
    cursor: pointer;
}
.helper-button:hover {
    opacity: 1;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}
.helper-popup__hidden {

    display: none !important;
}