.RHPCymbalFormOuter{
    width: 100%;
    max-width: 100%;
    background-color: #000000;
    padding: 10px 0px;
}
.RHPCymbalForm{
    color: #ffffff;
    position: relative;
}
.RHPCymbalForm .formWrapper{
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 8px;
    margin-bottom: 16px;
}
.RHPCymbalForm input{
    border: 1px solid #ffffff !important;
    min-width: 125px;
    flex: 2 1 0%;
    box-sizing: border-box;
    border-radius: 0px !important;
    font-size: 1rem;
    background-color: transparent !important;
    color: #ffffff !important;
    line-height: 1.5;
    outline: none;
    min-height: 60px !important;
    height: 60px !important;
    padding: 0px 16px !important;
}
.RHPCymbalForm .rhpc_Submit_button{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    outline: none;
    border: none;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    background-color: rgb(244, 122, 32);
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0px;
    padding: 0px 20px;
    min-height: 60px;
    border-radius: 0px;
    margin-left: 8px;
}
.PrivacyAndTerms{
    font-size: 0.875rem;
    font-weight: 300;
}
.RHPCymbalForm .rhpc_termsButton,
.RHPCymbalForm .rhpc_privacyButton{
    font-weight: 600;
}
.rhpc-thankyou{
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

/* RHP Cymbal POPUP CSS */
.rhpc-popop-outer{
    position: fixed;
    z-index: 9999;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    inset: 0px;
    display: initial;
}
#rhpc-popup{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-box-align: center;
}
#rhpc-popup-content{
    background-color: white;
    color: black;
    position: relative;
    overflow-y: hidden;
    display: flex;
    max-height: calc(-100px + 100vh);
    width: calc(100% - 64px);
    flex-direction: column;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 11px 15px -7px, rgba(0, 0, 0, 0.14) 0px 24px 38px 3px, rgba(0, 0, 0, 0.12) 0px 9px 46px 8px;
    max-width: 848px;
}
.terms-popup-head,
.policy-popup-head{
    display: flex;
    flex-direction: row;
    padding: 24px 32px;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.terms-popup-body,
.policy-popup-body{
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    overflow: clip auto;
    min-height: 500px;
    padding: 24px 32px;
}
.terms-heading,
.policy-heading{
    margin: 16px 0px;
    font-size: 20px;
}
.terms-paragraph,
.policy-paragraph{
    font-size: 0.875rem;
    margin: 0;
    margin-bottom: 12px;
}
.rhpc_termsButton,
.rhpc_privacyButton{
    background-color: transparent;
    background-image: none;
    text-transform: inherit;
    line-height: inherit;
    min-height: unset;
    vertical-align: unset;
    color: inherit;
    font-family: inherit;
    padding: 0;
    margin: 0px 5px;
    cursor: pointer;
}
.PopupcloseButton{
    padding: 5px;
    cursor: pointer;
}
.rhpcThirdCol{
    /* Value need to be same as the width of the Close button */
    width: 26px; 
}
.rhpc_popup_link{
    color: #000000 !important;
    background-color: transparent;
    background-image: none;
    text-transform: inherit;
    line-height: inherit;
    min-height: unset;
    vertical-align: unset;
    display: inline;
    font-family: inherit;
    font-weight: inherit;
    margin: 0px;
    padding: 0px;
    cursor: pointer;
    border: 0px;
    outline: 0px;
    border-radius: 0px;
    font-size: inherit;
    word-break: break-all;
    text-decoration: underline !important;
}
.policy-popup-head,
.terms-popup-head,
.policy-popup-body,
.terms-popup-body{
    display: none;
}

/* Media Queries */
@media (max-width: 768px) {
    .RHPCymbalForm .rhpc_Submit_button{
        width: 100%;
        margin-left: 0;
    }
    .RHPCymbalForm input{
        width: 100%;
        border-radius: 10px !important;
    }
    .RHPCymbalForm .formWrapper{
        flex-direction: column;
    }
}

/* Max width value is as per the reference.*/
@media (min-width: 1025px) {
    .RHPCymbalForm{
        max-width: 600px;
        margin: auto;
    }
}