#html_popups_popup {
    width: 380px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: var(--popup-background);
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.18);
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.18);
    border-radius: var(--rounding);
    padding: 20px;
    color: rgb(77, 77, 77);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#html_popups_popup>div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#html_popups_popup>div>p {
    color: var(--popup-title);
    font-weight: 500;
    font-size: 24px;
    margin: 0;
}

#html_popups_popup>div:first-child>button {
    border: none;
    background-color: transparent;
    color: rgb(77, 77, 77);
    cursor: pointer;
    font-size: 20px;
}

#html_popups_popup>p {
    margin: 0;
    font-size: 15px;
    color: var(--popup-description);
}

#html_popups_popup>form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#html_popups_popup>form>button {
    background-color: var(--popup-button-background);
    color: var(--popup-button-text);
    border: none;
    border-radius: var(--rounding);
    padding: 10px 20px;
    width: 100%;
    cursor: pointer;
}

#html_popups_popup>form>div>#html_popups_email_input{
    display: flex;
    border: 1px solid var(--popup-input);
    border-radius: var(--rounding);
    width: 100%;
    padding: 10px;
    background-color: var(--popup-background);
    box-sizing: border-box;
}

#html_popups_popup>form>#html_popups_popup_input {
    color: var(--popup-input);
    position: relative;
}

#html_popups_popup>form>#html_popups_popup_input::after {
    content: var(--text);
    position: absolute;
    top: -9px;
    left: 5%;
    padding: 0 5px;
    color: var(--popup-input);
    background: var(--popup-background);
    font-size: 15px;
}