/* Enquiry Widget */

    #enquiry_widget							{ transition: all 0.5s ease; position: fixed; display: block; background-color: white; z-index: 10; right: 0; top: 220px; padding: 8px 20px 8px 8px; border-top-left-radius: 30px; border-bottom-left-radius: 30px; 
    box-shadow:
      0 0 1px 1px hsl(0deg 0% 0% / 0.025),
      0 0 3px 3px hsl(0deg 0% 0% / 0.025),
      0 0 6px 6px hsl(0deg 0% 0% / 0.025)
    ;
  }
   
    #enquiry_widget a						{ cursor: pointer; display: flex; align-items: center; gap: 8px; }
    #enquiry_widget a svg					{ transition: all ease 300ms; }
    #enquiry_widget a i						{ font-size: 1.75rem; color: var(--gold); margin-right: 0.75rem; }
    #enquiry_widget a span					{ font-family: 'Montserrat', sans-serif; font-size: 1.125rem; font-weight: 600; text-transform: uppercase; color: var(--gold); transition: width 1s ease, color ease 300ms; width: 88px; opacity: 1; display: inline-block; }

    #enquiry_widget.shrink					{ padding: 12px 0px 12px 15px; }
    #enquiry_widget.shrink a span			{ width: 0; }

    #enquiry_widget.shrink:hover 			{ padding: 12px 20px 12px 15px; }	
    #enquiry_widget.shrink:hover a span 	{ width: 88px; }	

    #enquiry_widget .svg-box				{ width: 36px; margin-right: 0.55rem; color: var(--gold); }


/* Enquiry Form Styles */

    div.popup-background 														{ width: 100%; height: 100%; top: 0; left: 0; background-color: rgba(0, 0, 0, 0.7); z-index: 1000000000; text-align: center; white-space: nowrap; position: fixed; }
    div.popup-panel.enquiries													{ padding: 0 20px; border-radius: 10px; max-width: 750px; transition: max-width ease 500ms; }
    div.popup-panel.enquiries div.form_html										{ padding: 3rem 1.5rem; display: flex; }
    div.popup-panel.enquiries div.form_html a.button							{ width: 32%; margin-right: 4%; display: flex; align-items: center; justify-content: center; }
    div.popup-panel.enquiries div.form_html a.button:last-of-type				{ margin-right: 0; }
    div.popup-panel.enquiries div.form_html .form_container						{ width: 100%; }

    div.popup-panel.enquiries.form_detail										{ background-position: top center; background-repeat: no-repeat; background-color: #FFF; background-size: 100% 140px; padding: 3.75rem 2.75rem 3rem; }
    div.popup-panel.enquiries.form_detail div.form_html							{ padding: 0 1.5rem 3rem; }
    div.popup-panel.enquiries.form_detail a.back.button							{ margin: 1rem 0 0 1rem; }
    div.popup-panel.enquiries span.close										{ opacity: 0.7; top: 10px; }
    div.popup-panel.enquiries span.close:hover									{ opacity: 1; }
    div.popup-panel.enquiries .form_completemessage								{ text-align: center; }
    div.popup-panel.enquiries h3									            { font-family: 'Poppins', sans-serif; font-weight: 700; color: #2d2e31; font-size: 1.5rem; text-align: center; margin: 0 0 1rem 0; }
    div.popup-panel.enquiries .field-block .field-label                         { font-family: 'Poppins', sans-serif; font-weight: 400; color: #2d2e31; font-size: 0.875rem; }
    div.popup-panel.enquiries .form-buttons button                              { background-color: var(--red); color: #fff; border-radius: 50px; border: none; padding: 1rem 2.25rem; margin: 0; font-size: 0.75rem; text-transform: uppercase; }

    div.popup-panel.enquiries.rhs												{ position: fixed; top: 276px; right: 0; max-width: 300px; padding: 0; height: 0; overflow: hidden; transition: height 300ms ease; }
    div.popup-panel.enquiries.rhs div.form_html									{ flex-direction: column; align-items: center; padding: 2.75rem 1rem 1.75rem; }
    div.popup-panel.enquiries.rhs div.form_html a.button						{ width: 100%; margin-right: 0%; margin-bottom: 4%; }
    div.popup-panel.enquiries.rhs div.form_html a.button:last-of-type			{ margin-bottom: 0; }

    div.popup-panel.enquiries.popup-panel .field-block.wgf269 textarea          { height: 150px; }