/**
* evf-locked-fields.scss
*
* Styles for LOCKED (Pro / addon) fields shown as an upsell by "Create with AI"
* and in the builder. Kept in a dedicated stylesheet (not admin.scss) so the
* rules stay at the top level and are not accidentally nested under another
* selector. Compiled by grunt-sass to evf-locked-fields.css and enqueued on
* Everest Forms admin screens.
*/
/* ==========================================================================
1. Canvas / AI-preview: locked field block + PRO ribbon
========================================================================== */
.everest-forms-field.everest-forms-field-locked {
position: relative;
&::after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
pointer-events: none;
border: 1px dashed #d7c7f5;
border-radius: 6px;
}
}
/* Orange "Pro" marker shown INLINE right after the field label — same icon as
the fields sidebar (everest-form-pro-icon.png), placed side-by-side with the
label instead of a corner badge. */
.everest-forms-field.everest-forms-field-locked .label-title::after,
.everest-forms-field.everest-forms-field-locked .evf-locked-field-label::after {
content: "";
display: inline-block;
width: 15px;
height: 15px;
margin-left: 6px;
vertical-align: -3px;
background: url(../images/icons/everest-form-pro-icon.png) no-repeat center;
background-size: contain;
}
/* Addon fields: replace crown image with a blue "ADD-ON" text pill. */
.everest-forms-field.everest-forms-field-locked-addon .label-title::after,
.everest-forms-field.everest-forms-field-locked-addon .evf-locked-field-label::after {
content: "ADD-ON";
width: auto;
height: auto;
background: #3b82f6;
background-image: none;
color: #fff;
font-size: 9px;
font-weight: 700;
letter-spacing: 0.05em;
padding: 2px 5px;
border-radius: 3px;
vertical-align: 2px;
}
/* Synthesized preview card (fallback for fields whose real preview needs Pro code). */
.evf-locked-field-label {
display: block;
margin: 0 0 6px;
font-size: 13px;
font-weight: 500;
color: #374151;
.evf-locked-field-required {
color: #ef4444;
margin-left: 2px;
}
}
.evf-locked-field-placeholder {
display: flex;
align-items: center;
gap: 8px;
min-height: 44px;
padding: 12px 14px;
color: #6b7280;
font-size: 13px;
background: #faf8fe;
border: 1px dashed #d7c7f5;
border-radius: 6px;
.dashicons {
color: #7e3bd0;
width: 18px;
height: 18px;
font-size: 18px;
}
}
/* ==========================================================================
2. Field Options panel: readable but NOT editable
========================================================================== */
/* The setting GROUPS are greyed + non-interactive. Inputs are intentionally NOT
given the HTML `disabled` attribute (disabled inputs are not POSTed), so the
field data still round-trips on save and the field works the instant the user
upgrades. The banner is rendered OUTSIDE the groups, so it stays interactive. */
.everest-forms-field-option-locked {
.everest-forms-field-option-group {
position: relative;
pointer-events: none;
user-select: none;
opacity: 0.65;
cursor: not-allowed;
}
/* Force every group (incl. the normally-collapsed "Advanced Options") open
so ALL settings stay readable while locked. */
.everest-forms-field-option-group.everest-forms-hide,
.everest-forms-field-option-group.closed {
display: block !important;
}
.everest-forms-field-option-group-inner {
display: block !important;
}
/* Make the inputs themselves read clearly as disabled. */
.everest-forms-field-option-group input,
.everest-forms-field-option-group select,
.everest-forms-field-option-group textarea {
background-color: #f3f4f6 !important;
color: #6b7280 !important;
cursor: not-allowed !important;
}
}
/* ==========================================================================
3. PRO showcase banner (settings panel header)
========================================================================== */
.everest-forms-field-option-locked-banner {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 10px;
margin: 0 0 18px;
padding: 16px;
/* Neutral card so the orange "Pro" tag stands out (matches sidebar accent). */
background: #faf9fb;
border: 1px solid #e8e6ee;
border-radius: 8px;
/* Stays interactive even though the surrounding panel groups are locked. */
pointer-events: auto;
.evf-locked-banner-tag {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 4px 8px;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.05em;
color: #fff;
/* Orange Pro accent — same family as the fields sidebar pro icon. */
background: #ff8c39;
border-radius: 4px;
.dashicons {
width: 13px;
height: 13px;
font-size: 13px;
}
}
/* Addon fields use blue instead of the orange PRO accent. */
&.evf-upgrade-addon .evf-locked-banner-tag {
background: #3b82f6;
}
.evf-locked-banner-text {
margin: 0;
font-size: 13px;
line-height: 1.5;
color: #4b4b57;
strong {
color: #2b2b38;
}
}
.evf-locked-banner-cta {
margin: 2px 0 0;
padding: 8px 20px;
font-size: 13px;
font-weight: 600;
line-height: 1.2;
/* Match EVF brand button. */
background: #7e3bd0;
border-color: #7e3bd0;
color: #fff;
border-radius: 4px;
cursor: pointer;
&:hover {
background: #6c2fbb;
border-color: #6c2fbb;
color: #fff;
}
}
}
/* Credit Card locked preview — compact layout. The real inline layout ships with
the Stripe addon CSS (absent in free), so without this the inputs stack into a
tall column. This keeps the free Pro-showcase compact. */
.everest-forms-field-credit-card .everest-forms-credit-card-cardnumber {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 8px;
.everest-forms-card-icon {
flex: 0 0 auto;
line-height: 0;
svg {
width: 28px;
height: auto;
}
}
input {
height: 38px;
border: 1px solid #e1e1e1;
border-radius: 4px;
padding: 0 10px;
background: #fff;
margin: 0;
}
.card-number {
flex: 1 1 200px;
min-width: 0;
}
.card-expiration {
flex: 1 1 120px;
min-width: 0;
}
.card-cvc {
flex: 1 1 90px;
min-width: 0;
}
}
Our Body functions 24×7. Most of these internal activities such as digestion, reproduction, the process of growth and development, wear and tear of the body and especially our mood swings are performed and affected by the glands in our body. And by Glands I mean the hormones produced by it that controls and regulates these activities. Some Hormones also multitask. These hormones are nothing but a chemical released in our body. The effect of Hormones on Both Men and Women is major.
Hormones are what differentiate a man from a woman. I’m going to emphasize on the sex hormones of men and women. Men and women both possess all the three hormones i.e. Testosterone, Estrogen and Progesterone. The domination of each of these hormones varies upon gender. The levels of Testosterone are high in men and low in women and vice versa. It is during the menses when the hormone levels drop drastically causing physical disturbances and mood swings in women.
All three have different functions to perform in both men and women. They affect them in both ways positive and negative. When the balance is disturbed in the levels around the menses and with age for both genders that’s when the negative side effects of hormones come into the picture. The most prominent one being the Mood swings.
For Starters, its important to find out which hormone is imbalanced by doing certain tests. Then either opt for medication or go the natural way, which is my way…is Yoga and Workouts. Being a yoga Instructor, ive come across a million issues and yoga addresses every hormonal problem as precaution to whats coming next. It works on the root of the problem. It directly works on proper functioning of the glands in the body like the pituitary or thyroid or adrenal glands or the testes or the ovaries etc. that release and distributes these hormones to the body.
Fitness and yoga exercises and activities that create a feeling of concentration and focus and balance in the body really help. Postures like the Rabbit pose, Janu Shirsana, Parvatasana, forward folds and twisting postures are extremely beneficial to bring about a balance in the hormones. Mudras like the Gyaan Mudra and Pranam Mudra beautifully bring about a change too…And breathing being the most important of them all…pranayamas like Anuloma Viloma (altyernate nostril breathing) Diaphragmatic Breathing etc..make a world of a difference in your state of mind and body.
Physical activities that suit your body like working out in a gym or going cycling or walking or any kind of cardio etc…can be helpful too.
Hormones are such chemicals that can change the game of your body right from positive into negative and vice versa just at the drop of a hat.
So BE WISE, EXERCISE!
The post Private: The Age old game of Hormones appeared first on Rupal's Yogasthenics.
]]>Ulcers can be of various sorts, the most common ones are mouth ulcers and stomach ulcers, also known as colitis. I’m touching this subject today because I’ve known many of my friends and family who know many people too that face the same issue and it needs to be addressed, what better medium than the internet? Thanks to my dear friend and client Shweta Rohira, for this opportunity to reach a million people through my articles and the awareness I can spread through these articles on various issues.
One of the very first parts of the body that’s affected by stress and anxiety is the stomach, anything you do, think or eat, affects the way your body functions and when I say body, I first mean the stomach. You disturb the cycle of your food, you get acidity, causing heat in the body, which when crosses the normal levels causes ulcers first in the mouth and then spreads to the body, there are many other causes too. For e.g. Too much of heat in the body, that comes because of irregular and spicy, oily meals, high acid levels in the body, low water intake, long nights and a sedentary lifestyle..
Incorrect food and food habits are a big trigger. Lack of iron n vitamin B12, bad oral health, could be a reason too. Medicines are yet another trigger.
Yoga is a holistic science. One should begin with correct diet; the stomach is one of the root causes of Mouth Ulcers. Eating light is a must, yoga recommends a Sattvic diet, which is peace inducing, and relaxing, which results into a calm and concentrated state of mind, therefore a stress free and anxiety free state of mind. Some points about food:
Apart from food, ensure that you include mild yoga postures and walks in your daily routine. Pranayamas alone, if done under proper supervision or guidance will help cure the problem of ulcers from the root.
Proper sleep, ideally 10pm -6am will also keep high acid levels at bay and boost immunity.
And Lastly, Believe in what you do, and the higher reality. This will not only cure your ulcers, but also help you maintain a balanced and positive frame of mind.
Above are a few of the many things you can do with a yogic perspective. For further details or help you can contact me on my email: yoga@rupalsyogasthenics.com
The post Yoga and Ulcers appeared first on Rupal's Yogasthenics.
]]>Trending today is how to get the perfect hot bod, with a defining jawline and chiselled face. There’s so much one can do to make your face look at its perfect best without going under the knife. Most of them can be done with your normal breathing exercises with a few funny faces. A good laugh is a healthy way to start your day, isn’t it?
The things you do in your regular life in itself can help so much to achieve the jawline you have been working for. There are various facial exercises that one can do without trying to intentionally do it, for eg., chewing your food well is one facial exercise that can help get a chiselled face or a sculpted jawline, there’s the Satchmo, use it while chewing the gum and making a bubble of it…the smiling fish while taking selfies, the temple dancer when you try your hand at a different traditional dance form, the free tongue can be done anytime you’re playing with a kid etc., etc…In detail the few of the many exercises are as follows:
The post Yoga For Chiselled Face appeared first on Rupal's Yogasthenics.
]]>When we speak of the spine, we are speaking of the most integral part of the human body that manages to maintain or hold our body weight. It is when the spinal cord or the back that goes weak, the knees take the weight and that’s where the problem starts.
Keeping track of the fast-paced life we tend to forget how important our body is to us. It’s only when it starts giving up, that we start taking care of it. My article today is to encourage a preventive perspective on good health. Backaches are a common issue most people in the world deal with, for some, it’s so common that one sign and they pop in painkillers. As gruesome as it could get, but much to our surprise, just a few postures in yoga can relieve you of the chronic back pain you’ve been dealing with for a while. In case the back pain is strong, intense and constant, it is best to show a doctor and practice under a certified yoga therapist or physiotherapist. The few of many postures one can do to get relief from back pain are The Bridge pose or Setubandhasana, one leg fold or wind-releasing pose or pavanmuktasana and its variation, the child’s pose or shashankasana, Vakrasana lying down, shalabhasana, backbends like bhujangasana or sarpasana etc… twisting postures are a good relief to the back too.
Apart from the postures, one should stretch and do exercises every two-three hours considering the kind of work they are into. If you’re running about all day or doing a desk job, a five minute to ten-minute break is a must wherein you could just do a backbend, a forward bend and a few hand and neck exercises or just relax into a meditative state of mind. While doing these stretches, one should keep in mind the contraindications and their limitations.
The following are images of the quick 10 postures for immediate relief to your general back pain.
Disclaimer: All the postures are to be done under the guidance and can be practised by those who have no other physical issues.
The post Back Pain: The Quick 10 to relief. appeared first on Rupal's Yogasthenics.
]]>Yoga for Fitness

Yogasthenics is for everybody. It is for the athlete, it is for the marathoner, it is for the seasoned fitness champion as well as for raw aspiring beginners. You could be at any level to go to the next level. As long as you are receptive to learn with Rupal, she will help you evolve at your own pace but all along helping you transform at every stage.
You can opt for personal training, group training classes indoors or outdoors or join our existing Yogasthenic batches. We also specialize in Fitness Workshops, Fitness Outdoor Retreats, Yogasthenic Basics Workshop, Zumba Workshops, Pranayama Workshops, CrossFit Workshops, Kettlebell Workshops.
If it is authentic yoga training you can choose from modified to intense AshtangaVinayasa Flow, Hatha Yoga, Pranayama and Kriya Yoga. We also do a combination of these in order to cure specific ailments for clients who are exclusively opting for yoga therapy.
We operate at a suburban fitness studio currently but are open to branching out anywhere across the city. So if you own a fitness centre, gymnasium, studio or an institute and are keen to collaborate professionally please feel free to connect with us. We will be happy to help as many people as we can to stretch, endure and soar.

The post Choosing Yogasthenics workouts appeared first on Rupal's Yogasthenics.
]]>Keeping in mind the going trends of fitness, there are innumerable options available, to pursue fitness in any form. To me, fitness is holy and spiritual. Starting from increasing your mobility, flexibility, focus, strengthening, healing, and should bring about a balance mentally, physically, emotionally and spiritually. Every form of exercise or workout brings about a change in the human body and mind, positively. Though, there’s one thing or the other missed out in all forms of fitness practice except YOGA.
The world does not approve of a theory which has never been analysed or demonstrated. Today’s world requires demonstrations and the science that fails to provide them is considered a fraud. Yoga is not the only exercise, it is a way of life, which tells us how to lead our life emphasizing on every little aspect of it from the human body, the external to the human spirit, the internal. Yoga, over the years, has been brought out in various forms with their modifications. Each form after modification is different, but with the same basic postures, some made difficult for advanced professionals, some made easy for householders, at the end of the day, it comes down to Yoga. Tried and tested, analysed and demonstrated, it’s a way of life, if followed, can heal and head up any human body. No matter what form of yoga you choose, the glory of its unfiltered source will always remain unaltered.
Fitness is not just physical wellbeing, but mental health as well. When we exercise, we focus only on the physical aspects, eventually, people end up being unhappy despite all the efforts, we have heard stories of life-threatening illnesses like cancer, tuberculosis etc., where a lady fought cancer with her positivity… It is the power of a healthy mental state that cures physical illnesses or shortcomings. In the fast running life of our generation today, stress is at its peak, more and more people, starting from students studying in school to senior citizens, irrespective of the age are suffering from stress-related conditions and illnesses…
Yoga not only focuses on the physical well-being of a human but also emphasises on the mental, moral, emotional and spiritual health. With yoga, one can achieve balance, and bring about awareness of self. It is the greatest form of self-realisation. You can go from you are to where you want to be following the basic theories and demonstrations of yoga. Yoga is an experiential science…the more you practice, the more benefits you get and the deeper you understand dive into what life is all about. The common misconception of yoga is, it is slow, it is only for older people, it is only asana and pranayama, but it is much deeper than one can think. It is for every one existing on the face of the earth.
So, Step on that mat! Go forth and experience the depth of life, experience the tranquil and let Yoga take you places without going anywhere….travel deep within, experience it all…. See you on the Mat!!!
The post Why Yoga? appeared first on Rupal's Yogasthenics.
]]>Name of the Posture: Sukhasana (Easy Pose)
Benefits:
Limitations:
Rupal’s Thoughts: I begin my day with this posture. 1-2 minutes in the posture, Preparing myself and my body for the day ahead. It’s my way of Self Instruction and Conditioning. Allowing myself to go with the flow throughout the day. I also end my day the same way, as I sit in the posture I visualize the whole day without indulging into my actions from the day. This process enables me to improve my perspective and way of life, altogether helping me to let go of unnecessary chaos and also help me sleep better in the night.
The post Asana Of the Week appeared first on Rupal's Yogasthenics.
]]>The post Hello world! appeared first on Rupal's Yogasthenics.
]]>The post Hello world! appeared first on Rupal's Yogasthenics.
]]>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Neque aliquam vestibulum morbi blandit cursus risus at ultrices mi. Quam lacus suspendisse faucibus interdum posuere lorem ipsum dolor sit. Nibh sit amet commodo nulla facilisi nullam vehicula. Nullam vehicula ipsum a arcu cursus vitae congue mauris. Proin libero nunc consequat interdum varius sit amet mattis. Arcu felis bibendum ut tristique et egestas quis. Vulputate ut pharetra sit amet. Sed ullamcorper morbi tincidunt ornare massa eget egestas purus. Elit ut aliquam purus sit amet luctus venenatis lectus. Etiam sit amet nisl purus in mollis nunc sed id. In tellus integer feugiat scelerisque varius morbi enim nunc. Laoreet non curabitur gravida arcu ac.
Ullamcorper malesuada proin libero nunc consequat interdum varius sit amet. Nisl tincidunt eget nullam non nisi est sit amet facilisis. Justo nec ultrices dui sapien eget. Ullamcorper malesuada proin libero nunc consequat interdum varius sit amet. Sed augue lacus viverra vitae congue eu consequat ac. Varius vel pharetra vel turpis nunc eget lorem. Hac habitasse platea dictumst quisque sagittis purus sit amet. Urna duis convallis convallis tellus id interdum. Suspendisse in est ante in nibh mauris. Quis blandit turpis cursus in hac habitasse platea. Est placerat in egestas erat imperdiet sed euismod nisi. Quis vel eros donec ac odio tempor orci dapibus.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas eleifend velit at elit aliquet euismod. Nunc venenatis mi ac mi fringilla ornare. Donec posuere tortor iaculis volutpat hendrerit. Cras semper augue quam, in tincidunt purus iaculis sed. Nullam arcu mi, viverra ac aliquam id, hendrerit eu libero. Sed eu odio arcu. In orci tellus, sodales et cursus a, dapibus eget ante. Quisque sollicitudin arcu nec quam rhoncus finibus.
Proin malesuada dictum tellus, quis aliquam leo pretium eu. Quisque consequat id sem consequat convallis. Praesent volutpat, orci eu posuere vulputate, tortor eros dictum leo, tincidunt elementum tellus ipsum quis justo. Nullam feugiat, nulla sit amet venenatis tincidunt, lectus elit feugiat felis, a ultricies magna lacus vel magna. Nunc gravida nibh eu finibus feugiat. Fusce sagittis nec ex sit amet facilisis. Phasellus malesuada, dui eu interdum semper, lorem orci pretium diam, ac porta libero leo vel lacus. Mauris accumsan egestas sapien, ac ultricies tellus varius vel. Cras iaculis eros vitae ligula feugiat, vestibulum dictum massa iaculis. Vestibulum venenatis molestie convallis. Curabitur facilisis risus a enim ultricies, a interdum nisl consectetur. Proin hendrerit placerat dignissim. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eros sem, congue vitae nisl ac, pellentesque fringilla massa. Aliquam at massa et diam sagittis maximus. Nulla facilisi.
Praesent eget tristique lacus. Morbi non aliquet nulla. Pellentesque luctus pretium enim id finibus. Morbi vehicula ultrices justo molestie venenatis. In at porttitor velit, a congue tellus. Ut tincidunt gravida nulla vitae porttitor. Integer eleifend elementum velit, ac mattis neque luctus in. Vestibulum id ex molestie, auctor eros non, bibendum purus. Aenean laoreet egestas dignissim. Mauris lectus purus, ultricies et malesuada sed, dapibus vitae purus. Proin finibus semper lectus. Quisque placerat tincidunt arcu non pulvinar. Proin nec neque iaculis tellus vulputate faucibus. In facilisis diam a sapien ullamcorper mattis. Quisque gravida urna ac posuere sollicitudin.
Sed non odio malesuada, tincidunt tellus quis, faucibus metus. Vivamus orci mi, auctor ac lacus at, lacinia porttitor arcu. Aliquam purus lectus, venenatis ut nisi a, aliquet aliquet massa. Etiam dictum porta malesuada. Mauris sit amet tempor augue, dapibus imperdiet ex. Proin nec ullamcorper ex. Nunc fermentum sollicitudin felis, ac feugiat dui malesuada ac. Nulla pellentesque leo vitae sapien placerat mattis. Vestibulum velit nibh, tristique ut tellus vitae, volutpat auctor quam. Vivamus pretium, felis vitae pellentesque condimentum, lorem turpis ultricies lectus, hendrerit viverra felis velit ac erat. Duis id nisl erat. Nam nisl enim, accumsan eu mauris sed, iaculis finibus velit.
Vivamus ornare magna vel lacus sagittis, at facilisis massa pharetra. Praesent ultricies volutpat nulla, et sollicitudin lectus porta eleifend. Etiam posuere lobortis vehicula. Nullam eu neque ut elit elementum consequat. Praesent dictum lobortis orci vitae molestie. Integer a ipsum non tortor molestie facilisis. Nam pulvinar lacus quis egestas pharetra. Donec ut nibh lorem. Integer id risus lacus. Aenean ultrices tincidunt dictum. Duis sed enim nec neque egestas rhoncus.
The post Top Yoga Accessories appeared first on Rupal's Yogasthenics.
]]>