:root{--primary-color:#151515;--secondary-color:#4485c4;--accent-color:#03aed2}.voxire-button{position:relative;display:inline-flex;align-items:center;justify-content:center;gap:8px;border:2px solid rgba(0,0,0,0);border-radius:4px;box-sizing:border-box;font-family:var(--secondary-font,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif);font-weight:600;font-size:16px;line-height:1;text-decoration:none;cursor:pointer;transition:all .2s cubic-bezier(.4,0,.2,1);-webkit-user-select:none;user-select:none;white-space:nowrap;outline:none}.voxire-button:focus-visible{outline:2px solid var(--primary-color);outline-offset:2px}.voxire-button:active{transform:none}.voxire-button.voxire-button-sm{padding:8px 16px;font-size:14px;gap:6px}.voxire-button.voxire-button-md{padding:12px 24px;font-size:16px;gap:8px}.voxire-button.voxire-button-lg{padding:16px 32px;font-size:18px;gap:10px}.voxire-button.voxire-button-full-width{width:100%}.voxire-button.voxire-button-disabled{opacity:.6;cursor:not-allowed;pointer-events:none}.voxire-button.voxire-button-disabled:active{transform:none}.voxire-button.voxire-button-loading{cursor:wait;pointer-events:none}.voxire-button.voxire-button-loading .voxire-button-content{display:flex;align-items:center;gap:8px}.voxire-button.voxire-button-loading .voxire-button-prefix,.voxire-button.voxire-button-loading .voxire-button-suffix{display:none}.voxire-button .voxire-button-content{display:flex;align-items:center;gap:8px}.voxire-button .voxire-button-text{display:inline-block;line-height:1}.voxire-button .voxire-button-prefix,.voxire-button .voxire-button-suffix{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:16px;height:16px}.voxire-button .voxire-button-prefix{order:1}.voxire-button .voxire-button-text{order:2}.voxire-button .voxire-button-suffix{order:3}.voxire-button.voxire-button-sm .voxire-button-prefix,.voxire-button.voxire-button-sm .voxire-button-suffix{width:14px;height:14px}.voxire-button.voxire-button-lg .voxire-button-prefix,.voxire-button.voxire-button-lg .voxire-button-suffix{width:18px;height:18px}.voxire-button-primary{background-color:var(--primary-color);border-color:var(--primary-color);color:#fff}.voxire-button-primary:hover:not(.voxire-button-disabled){background-color:#2a2a2a;border-color:#2a2a2a}.voxire-button-secondary{background-color:#fff;border-color:var(--primary-color);color:var(--primary-color)}.voxire-button-secondary:hover:not(.voxire-button-disabled){background-color:var(--secondary-color);border-color:var(--secondary-color);color:#fff}.voxire-button-outline{background-color:rgba(0,0,0,0);border-color:var(--primary-color);color:var(--primary-color)}.voxire-button-outline:hover:not(.voxire-button-disabled){background-color:var(--primary-color);color:#fff}.voxire-button-ghost{background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0);color:var(--primary-color)}.voxire-button-ghost:hover:not(.voxire-button-disabled){background-color:rgba(0,0,0,.05)}.voxire-button-ghost:active:not(.voxire-button-disabled){background-color:rgba(0,0,0,.1)}.voxire-button-soft{background-color:#eaebe0;border-color:#eaebe0;color:#374151;border-radius:24px}.voxire-button-soft:hover:not(.voxire-button-disabled){background-color:#fff;border-color:#fff;color:#1f2937}.voxire-button-soft:active:not(.voxire-button-disabled){background-color:#f9fafb;border-color:#f9fafb}.voxire-button-dark-outline{background-color:#20211f;border-color:#423e3a;color:#f9fafb;border-radius:24px}.voxire-button-dark-outline:hover:not(.voxire-button-disabled){background-color:#1a1b19;border-color:#524d47;color:#fff}.voxire-button-dark-outline:active:not(.voxire-button-disabled){background-color:#141514;border-color:#625c54}@media(prefers-color-scheme:dark){.voxire-button-ghost:hover:not(.voxire-button-disabled){background-color:hsla(0,0%,100%,.1)}.voxire-button-ghost:active:not(.voxire-button-disabled){background-color:hsla(0,0%,100%,.15)}}@media(max-width:768px){.voxire-button.voxire-button-lg{padding:14px 28px;font-size:16px}.voxire-button.voxire-button-md{padding:10px 20px;font-size:15px}.voxire-button.voxire-button-sm{padding:6px 12px;font-size:13px}}@media(prefers-contrast:high){.voxire-button{border-width:3px}.voxire-button:focus-visible{outline-width:3px}}@media(prefers-reduced-motion:reduce){.voxire-button{transition:none}.voxire-button:active,.voxire-button:hover{transform:none}}.voxire-input{position:relative;width:100%}.voxire-input__label{display:inline-block;color:#6b7280;font-weight:600;font-size:.9rem;margin-bottom:6px}.voxire-input__field{width:100%;padding:12px 46px 12px 14px;border:1.5px solid #e5e7eb;border-radius:8px;outline:none;font-size:15px;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;background:#fff;color:#111827;transition:box-shadow .2s ease,border-color .2s ease}.voxire-input__field::placeholder{color:#9ca3af}.voxire-input__field:focus{border-color:var(--primary-color);box-shadow:0 0 0 3px rgba(4,4,40,.06)}.voxire-input__field:disabled{background:#f9fafb;cursor:not-allowed}.voxire-input__toggle{position:absolute;right:20px;background:rgba(0,0,0,0);border:none;cursor:pointer;color:#6b7280;width:24px;height:24px}.voxire-input__toggle svg{position:absolute;width:16px;height:16px}.voxire-input__helper{margin-top:4px;font-size:13px;color:#6b7280}.voxire-input__helper.is-error{color:#dc2626}.voxire-input--error .voxire-input__field{border-color:#dc2626}.voxire-input--disabled .voxire-input__field{opacity:.6}.voxire-modal-backdrop{position:fixed;inset:0;z-index:1050;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,.5);padding:1rem;animation:fadeIn .15s ease}.voxire-modal{background:#fff;border-radius:8px;box-shadow:0 25px 50px -12px rgba(0,0,0,.25);overflow:hidden;width:100%;max-height:calc(100vh - 2rem);display:flex;flex-direction:column;animation:slideUp .2s ease}.voxire-modal__title{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;background:linear-gradient(135deg,var(--primary-color,#151515) 0,#030320 100%);color:#fff;font-weight:600;font-size:18px;flex-shrink:0}.voxire-modal__close{background:rgba(0,0,0,0);border:none;color:#fff;cursor:pointer;font-size:1rem;padding:4px 8px;border-radius:4px;line-height:1}.voxire-modal__close:hover{background:hsla(0,0%,100%,.15)}.voxire-modal__content{padding:24px;overflow-y:auto}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes slideUp{0%{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}.voxire-loading-spinner{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.5rem}.voxire-spinner-ring{border:3px solid rgba(16,16,16,.1);border-top-color:#151515;border-radius:50%;animation:voxire-spin-animation 1s linear infinite}.voxire-spinner-text{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;font-size:.875rem;color:#757575;text-align:center;margin-top:.5rem}.voxire-loading-spinner--small .voxire-spinner-ring{width:20px;height:20px;border-width:2px}.voxire-loading-spinner--small .voxire-spinner-text{font-size:.75rem}.voxire-loading-spinner--medium .voxire-spinner-ring{width:32px;height:32px;border-width:3px}.voxire-loading-spinner--medium .voxire-spinner-text{font-size:.875rem}.voxire-loading-spinner--large .voxire-spinner-ring{width:48px;height:48px;border-width:4px}.voxire-loading-spinner--large .voxire-spinner-text{font-size:1rem}.voxire-loading-spinner--primary .voxire-spinner-ring{border-top-color:#151515}.voxire-loading-spinner--secondary .voxire-spinner-ring{border-top-color:#dc004e}.voxire-loading-spinner--inherit .voxire-spinner-ring{border-top-color:currentColor}@keyframes voxire-spin-animation{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.voxire-select{position:relative;width:100%}.voxire-select__label{font-size:12px;font-weight:600;color:#6b7280;display:inline-block;margin-bottom:6px}.voxire-select__required{color:#dc2626;margin-left:2px}.voxire-select__container{position:relative}.voxire-select__toggle{width:100%;height:40px;border:1px solid #e5e7eb;border-radius:6px;padding:0 12px;background:#fff;color:var(--admin-primary);font-size:14px;text-align:left;cursor:pointer;display:flex;align-items:center;justify-content:space-between;outline:none}.voxire-select__toggle:focus{border-color:var(--secondary-color);box-shadow:0 0 0 3px rgba(68,133,196,.15)}.voxire-select__toggle--placeholder{color:#9ca3af}.voxire-select__toggle--disabled{opacity:.6;cursor:not-allowed}.voxire-select__toggle--error{border-color:#dc2626}.voxire-select__value{flex:1 1;text-align:left}.voxire-select__chevron{width:12px;height:12px;transition:transform .2s;display:flex;align-items:center;justify-content:center}.voxire-select__chevron--open{transform:rotate(180deg)}.voxire-select__menu{position:absolute;top:100%;left:0;right:0;background:#fff;border:1px solid #e5e7eb;border-radius:6px;box-shadow:0 4px 12px rgba(0,0,0,.1);max-height:200px;overflow-y:auto;z-index:1000;margin-top:2px}.voxire-select__option{padding:8px 12px;cursor:pointer;border-bottom:1px solid #f3f4f6}.voxire-select__option:last-child{border-bottom:none}.voxire-select__option:hover{background-color:#f9fafb}.voxire-select__option-title{font-size:14px;color:var(--admin-primary);font-weight:500;margin-bottom:2px}.voxire-select__option-description{font-size:12px;color:#6b7280;line-height:1.3}.voxire-select__helper{margin-top:4px;font-size:12px;color:#6b7280}.voxire-select__helper--error{color:#dc2626}.voxire-select--disabled .voxire-select__toggle{opacity:.6}.voxire-select--error .voxire-select__toggle{border-color:#dc2626}@keyframes pulse{0%,to{opacity:1}50%{opacity:.5}}.rtylr-title{margin:0;color:var(--primary-color);font-size:45px;font-family:var(--primary-font-bold);font-optical-sizing:auto;font-style:normal;line-height:70px}@media only screen and (max-width:768px){.rtylr-title{font-size:40px;line-height:50px}}@media only screen and (max-width:768px)and (max-width:480px){.rtylr-title{font-size:30px;line-height:40px}}#notfound{height:100vh}#notfound .notfound{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.notfound{max-width:480px;width:100%;line-height:1.4;text-align:center}.notfound .notfound-404{position:relative;height:200px;margin:0 auto 20px;z-index:-1}.notfound .notfound-404 h1{font-size:210px;margin:0;left:50%;top:50%;transform:translate(-50%,-50%)}.notfound .notfound-404 h1,.notfound .notfound-404 h2{font-weight:200;color:#211b19;text-transform:uppercase;position:absolute;font-family:butler,sans-serif}.notfound .notfound-404 h2{font-size:28px;background:#fff;padding:10px 5px;margin:auto;display:inline-block;bottom:0;left:0;right:0}@media only screen and (max-width:767px){.notfound .notfound-404 h1{font-size:148px}}@media only screen and (max-width:480px){.notfound .notfound-404{height:148px;margin:0 auto 10px}.notfound .notfound-404 h1{font-size:86px}.notfound .notfound-404 h2{font-size:16px}.notfound span{padding:7px 15px;font-size:14px}}.SchedulerContainer{width:80%;padding:3%;margin:0 auto}.Events{text-align:center;height:35vh;display:flex;flex-direction:column;justify-content:center;align-items:center;background-image:linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.6)),url(/images/EventsBg.jpg);background-position:50%;background-repeat:no-repeat;background-size:cover}.Events .Events-text{max-width:850px;margin:20px;color:#f2ebe5}.Events .Events-text h1{font-size:2.9em;font-weight:500;padding:10px;color:#f2ebe5}.Events .Events-text h2{font-size:1.8em;font-weight:500;margin-bottom:20px;color:#f2ebe5}.Events .Events-button{background-color:#0a102f;color:#fff;border:none;padding:10px 20px;font-size:18px;border-radius:4px;cursor:pointer;transition:background-color .2s;margin-top:8%;font-weight:700}.Events .Events-button:hover{background-color:#b2533e;transition:.6s;scale:1.1}.Events .Events-button:not(:hover){transition:.6s}@media only screen and (max-width:768px){.Events .Events-text h1{font-size:2em}.Events .Events-text h2{font-size:1.5em}}.FeedContainer{text-align:center}.FeedContainer h2{font-size:1.5rem;margin-bottom:20px}.FeedContainer form{display:flex;flex-direction:column;align-items:center}.FeedContainer form div{display:flex;flex-direction:column;margin-bottom:20px}.FeedContainer form div label{font-weight:700;margin-bottom:5px}.FeedContainer form div input,.FeedContainer form div select{width:100%;padding:10px;border:1px solid #ccc;border-radius:5px}.FeedContainer form div select{cursor:pointer}@font-face{font-family:Gg-Sans;src:url(/fonts/ggsans-Normal.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:Gg-Sans-bold;src:url(/fonts/ggsans-Bold.ttf) format("truetype");font-weight:700;font-style:normal}@font-face{font-family:Plus Jakarta Sans;src:url(/fonts/PlusJakartaSans.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:Plus Jakarta Sans Extra Bold;src:url(/fonts/PlusJakartaSans-ExtraBold.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:Inter;src:url(/fonts/Inter-Regular.ttf) format("truetype");font-weight:400;font-style:normal}:root{--primary-color:#040428;--secondary-color:#e8e6e1;--accent-color:#e8e6e1;--dark-green-color:#016b63;--background-color:#ffffff;--bg-color:#fcfaff;--app-background:#151515;--light-color:#fff;--dark-color:#000;--item-background-color:#373737;--text-color:#fff;--subtext-color:#b0b0b0;--light-gray:#d9d9d9;--error-red:#ff0000;--active-color:#e3e4e5;--admin-bg:#eff0f1;--admin-primary:#262626;--vendor-bg:#eff0f1;--primary-font:"Plus Jakarta Sans",sans-serif;--primary-font-bold:"Plus Jakarta Sans Extra Bold",sans-serif;--gg-sans:"Gg-Sans",sans-serif;--secondary-font:"Inter",sans-serif;--tertiary-font:"Inter",sans-serif;--quaternary-font:"Inter",sans-serif;--quinary-font:"Inter",sans-serif;--elev-1:0 2px 6px rgba(0,0,0,0.35);--elev-2:0 10px 28px -8px rgba(0,0,0,0.6),0 3px 8px rgba(0,0,0,0.35);--elev-3:0 28px 64px -18px rgba(0,0,0,0.72),0 10px 24px -10px rgba(0,0,0,0.5);--glow-cream:0 0 50px -10px rgba(232,230,225,0.22);--glow-cream-strong:0 0 80px -8px rgba(232,230,225,0.4);--btn-cream-bg:linear-gradient(180deg,#fdfcfa,#e8e6e1 52%,#dcd9d1);--btn-cream-bg-hover:linear-gradient(180deg,#ffffff,#f1efea 55%,#e4e1da);--btn-cream-shadow:0 1px 0 rgba(255,255,255,0.75) inset,0 -1px 0 rgba(0,0,0,0.07) inset,0 6px 18px -6px rgba(232,230,225,0.4),0 2px 6px rgba(0,0,0,0.45);--btn-cream-shadow-hover:0 1px 0 rgba(255,255,255,0.9) inset,0 16px 34px -8px rgba(232,230,225,0.55),0 5px 14px rgba(0,0,0,0.5);--btn-glass-bg:linear-gradient(180deg,rgba(255,255,255,0.09),rgba(255,255,255,0.03));--btn-glass-bg-hover:linear-gradient(180deg,rgba(255,255,255,0.16),rgba(255,255,255,0.06));--btn-glass-shadow:0 1px 0 rgba(255,255,255,0.12) inset,0 6px 16px -8px rgba(0,0,0,0.6);--btn-glass-shadow-hover:0 1px 0 rgba(255,255,255,0.18) inset,0 12px 26px -8px rgba(0,0,0,0.7);--ease-out-soft:cubic-bezier(0.22,1,0.36,1);font-family:Inter,system-ui,Avenir,Helvetica,Arial,sans-serif;font-weight:400;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}*{box-sizing:border-box;margin:0;padding:0}#__next,html{background-color:var(--app-background)}#__next{min-height:100vh}*{will-change:auto}.hero-image img,.ticker_wrapper,.whatsappBtn{will-change:transform;transform:translateZ(0);backface-visibility:hidden}a{font-weight:500;text-decoration:none;color:var(--dark-color);cursor:pointer}a:hover,body,html{color:var(--secondary-color)}body,html{margin:0;padding:0;background-color:var(--app-background);height:100vh;font-family:Inter,sans-serif;scroll-behavior:smooth;color:var(--primary-color);scrollbar-gutter:stable}.MuiInputBase-root{background-color:#fff}::-webkit-scrollbar{width:0}::-webkit-scrollbar,::-webkit-scrollbar-track{background:rgba(0,0,0,0)}::-webkit-scrollbar-corner,::-webkit-scrollbar-thumb{background:rgba(0,0,0,0)}#demo{z-index:10;padding:5px;background-color:#0a102f;color:#fff;bottom:0}#demo,.maintanance{display:flex;align-items:center;justify-content:center;position:fixed}.maintanance{height:100%;width:100%;text-align:center;flex-direction:column;background-color:var(--light-color);z-index:1000}.maintanance h1{font-size:3em;font-weight:100;color:var(--primary-color);margin:0}.maintanance h2{margin-bottom:0}.maintanance h2,.maintanance h3{font-size:1.5em;font-weight:100;font-weight:200;color:var(--primary-color)}.maintanance h3{margin-top:0}.maintanance a{font-size:1.5em;font-weight:300;color:var(--primary-color);text-decoration:none}