/* newsletter-popup/css/newsletter-popup.css */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

#newsletter {
    padding: 20px;
}

.newsletter-popup {
    max-width: 303px;
    margin: 0 auto;
    background-color: #000000;
    color: #ffffff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 58px;
}

.popup-header-group,
.popup-form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.popup-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-title {
    font-family: 'Helvetica', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
}

.popup-close {
    background: transparent;
    border: none;
    padding: 0;
    cursor: poHelvetica;
    line-height: 0;
}

.popup-close img {
    width: 24px;
    height: 24px;
}

.popup-divider {
    width: 100%;
    border: none;
    border-top: 1px solid #ffffff;
    margin: 0;
}

.popup-description {
    font-family: 'Helvetica', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    margin: 0;
    max-width: 208px;
}

.popup-input-group {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-email-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    padding: 0;
}

.popup-email-input:focus {
    outline: none;
}

.popup-email-input::placeholder {
    color: #ffffff;
    opacity: 0.7;
}

.popup-submit-button {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    cursor: poHelvetica;
    padding: 0;
}
section#newsletter .popup-form-group {
    border-bottom: 1px solid;
}

section#newsletter .popup-form-group form {
    display: flex;
}

section#newsletter .popup-form-group .gform-footer.gform_footer.top_label {
    margin: 0;
}

section#newsletter .popup-form-group input {
    border: UNSET;
    background: transparent;
    color: #fff;
    outline: unset;
    font-size: 14px;
    font-family: Helvetica;
    border-radius: unset;
}

.gform_button.button:hover {
    opacity: .7;
}

section#newsletter {
    position: fixed;
    z-index: 999999999;
    bottom: 0;
	right:0;
}