:root{--ghm-toast-bg:#fff;--ghm-toast-border:#2945b8;--ghm-toast-text:#000;--ghm-toast-primary-color:#2945b8;}.ghm-hidden{display:none;}.ghm-spinner{display:none;height:24px;width:24px;border:2px solid #d7d7d7;border-left-color:var(--ghm-toast-primary-color);border-radius:100%;animation:donut-spin 1.2s linear infinite;}@keyframes donut-spin{0%{transform:rotate(0deg);}100%{transform:rotate(360deg);}}.ghm-input-password-group{position:relative;}.ghm-input-password-group button{position:absolute;right:.5rem;top:50%;transform:translateY(-50%);padding:2px;display:inline-flex;justify-content:center;align-items:center;border:0;}.ghm-input-password-group button svg{width:1.5rem;height:1.5rem;}.ghm-input-password-group button svg.eye-slash{display:none;}.ghm-toast{position:fixed;top:auto;left:50%;right:auto;bottom:30px;width:auto;height:auto;background-color:var(--ghm-toast-bg);z-index:999999;transform:translateX(-50%);padding:10px 20px;border-radius:999999px;border:2px solid var(--ghm-toast-border);}.ghm-toast-container{display:flex;flex-direction:row;flex-wrap:wrap;align-content:center;align-items:center;gap:10px;}.ghm-popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    backdrop-filter: blur(5px);
    z-index: 999999;
}

.ghm-popup-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 1070px;
    width: calc(100% - 30px);
    max-height: calc(100% - 30px);
    height: auto;
    margin: auto;
    border-radius: 10px;
    box-shadow: -0.2px 10px 13.5px 1.5px rgba(51, 51, 51, .5);
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: scroll;
}

.ghm-popup-content-area {
    text-align: center;
    padding: 3rem;
}

.ghm-popup-content-area .ghm-gdpr-heading h2 {
    font-size: 32px;
}

.ghm-popup-content-area .ghm-gdpr-content {
    height: 300px;
    width: 100%;
    border: 1px solid black;
    overflow-y: auto;
    padding: 15px
}

.ghm-popup-content-area .ghm-gdpr-content .ghm-gdpr-iframe {
    height: 100%;
    width: 100%;
}

.ghm-popup-content-area .ghm-gdpr-terms {
    margin-block-start: 0.9rem;
}

.ghm-popup-content-area .ghm-gdpr-terms input,
.ghm-popup-content-area .ghm-gdpr-terms label {
    cursor: pointer;
}

.ghm-terms-button {
    border: none;
}

.ghm-terms-button.disabled,
.ghm-terms-button.disabled:hover {
    background-color: gray;
    cursor: auto;
}:root{--cookie-policy-popup-bg:#fdf5e3;--cookie-policy-popup-text:#000;}.cookie-policy-popup{display:none;position:fixed;left:1rem;right:1rem;bottom:1rem;width:auto;height:auto;background-color:var(--cookie-policy-popup-bg);color:var(--cookie-policy-popup-text);z-index:999999;padding:1rem 2rem;border-radius:10px;box-shadow:0 0 1rem rgba(0,0,0,.1);max-width:1000px;margin:auto;}.cookie-policy-popup .cookie-policy-popup-wrapper{max-width:1000px;margin:auto;text-align:center;font-size:12px;line-height:1.2;}.cookie-policy-popup .cookie-policy-popup-wrapper .cookie-policy-popup-btn{display:inline-flex;justify-content:center;align-items:center;border-color:transparent;padding:4px;position:absolute;top:0;right:0;}.cookie-policy-popup .cookie-policy-popup-wrapper .cookie-policy-popup-btn svg{height:24px;width:24px;}