/*======================================
Theme Name: 99legal Theme
Theme URI: https://norml.studio/
Description: Standalone classic theme for 99legal.com (formerly a Divi child; Divi parent removed 2026-08 per the divi-exit ADR). Own base templates + Gutenberg/ACF blocks + the app.css bundle.
Version: 1.0
Author: Norml Studio
Author URI: https://norml.studio/
======================================*/


/* You can add your own CSS styles here. Use !important to overwrite styles if needed. */

/* ============================================================================
   Classic content-page layout (divi-exit shim).
   page.php's non-builder branch wraps plain pages (Privacy, Terms, Sitemap) in
   .container > #content-area > #left-area > article > .entry-content. Divi's
   parent style.css used to give that a centred, readable column; the Divi parent
   is gone, so the theme owns it now. Scoped under #main-content and to DIRECT
   children of .entry-content so full-bleed block pages (service / local / about,
   whose .entry-content holds .norml-section blocks) are untouched.
   ========================================================================== */
/* Scoped to body:not(.has-custom-hero) — ONLY classic content pages (Privacy,
   Terms, Sitemap). Service / local / block pages carry .has-custom-hero and
   render their blocks inside the same .entry-content, so an unscoped
   `.entry-content a` rule (ID-specific) would override the hero button colours
   and underline every button — which is exactly what happened. */
body:not(.has-custom-hero) #main-content .container { width: 90%; max-width: 1080px; margin: 0 auto; padding: 54px 0 80px; }
body:not(.has-custom-hero) #main-content #content-area,
body:not(.has-custom-hero) #main-content #left-area { width: 100%; }
body:not(.has-custom-hero) #main-content .entry-title.main_title { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin: 0 0 1.5rem; }
body:not(.has-custom-hero) #main-content .entry-content > p,
body:not(.has-custom-hero) #main-content .entry-content > ul,
body:not(.has-custom-hero) #main-content .entry-content > ol { font-size: 1rem; line-height: 1.7; margin: 0 0 1em; }
body:not(.has-custom-hero) #main-content .entry-content > ul,
body:not(.has-custom-hero) #main-content .entry-content > ol { padding-left: 1.5em; }
body:not(.has-custom-hero) #main-content .entry-content > h2 { font-size: 1.625rem; line-height: 1.2; margin: 1.6em 0 .5em; }
body:not(.has-custom-hero) #main-content .entry-content > h3 { font-size: 1.25rem; line-height: 1.3; margin: 1.3em 0 .4em; }
body:not(.has-custom-hero) #main-content .entry-content a { color: #1a516c; text-decoration: underline; }

.page-review {
  min-height: 100vh;
  padding: 4.0625rem 0;
}

.page-review__wrapper {
  max-width: 32.5rem;
  margin: 0 auto;
  text-align: center;
}

.page-review__logo {
  max-width: 7.25rem;
  margin: 0 auto;
}

.page-review__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-review__content.hide {
  display: none;
}

.page-review__title,
.page-review__description {
  font-weight: 600;
  color: var(--color-neutral-shade-3);
}

.page-review__title {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  line-height: normal;
}

.page-review__description {
  margin-bottom: 2.25rem;
  font-size: 1rem;
  line-height: normal;
}

.page-review__rating-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.page-review__star::before {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  background-image: url("assets/images/svgicons/star.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.1s ease-out 0s;
}

.page-review__star.active::before,
.page-review__star.selected::before {
  opacity: 1;
}

.page-review button.review__btn {
  width: 100%;
  max-width: 24.0625rem;
}

.page-review__content,
.page-review__feedback,
.page-review__thankyou {
  margin-top: 4.0625rem;
}

.page-review__feedback,
.page-review__thankyou {
  display: none;
}

.page-review__feedback.show,
.page-review__thankyou.show {
  display: block;
}

.page-review__feedback label {
  font-size: 0.875rem;
  line-height: 1;
}

.page-review__feedback input,
.page-review__feedback textarea {
  padding: 0.75rem 1rem;
  border: 0.0625rem solid var(--color-neutral-tint-1);
  border-radius: 0.625rem;
  color: var(--color-neutral-shade-3);
  font-size: 1rem;
  line-height: 1.125;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.page-review__feedback input:hover,
.page-review__feedback textarea:hover {
  border-color: var(--color-primary-tint-1);
}

.page-review__feedback input:not(:-moz-placeholder), .page-review__feedback textarea:not(:-moz-placeholder) {
  border-color: var(--color-neutral-shade-1);
}

.page-review__feedback input:not(:-ms-input-placeholder), .page-review__feedback textarea:not(:-ms-input-placeholder) {
  border-color: var(--color-neutral-shade-1);
}

.page-review__feedback input:not(:placeholder-shown),
.page-review__feedback textarea:not(:placeholder-shown) {
  border-color: var(--color-neutral-shade-1);
}

.page-review__feedback-wrapper {
  margin-bottom: 2.5rem;
}

.page-review__feedback-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.375rem;
  text-align: start;
}

.page-review__feedback-item:not(:last-child) {
  margin-bottom: 1rem;
}

.page-review__feedback-text {
  min-height: 7.5rem;
  resize: none;
}

.page-review__thankyou h1 {
  margin-bottom: 3rem;
}



#easy .step-card {
    position:relative;
  color: #fff;
  height: 600px!important;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px){
    #easy .step-card {
        height: 420px!important;
    }
}
#easy .step-card::after {
  position:absolute;
  content:"";
  display:block;
  width:100%;
  height:100%;
  background: linear-gradient(180deg, rgba(13, 19, 23, 0.40) 0%, rgba(42, 61, 74, 0.00) 50%, rgba(13, 19, 23, 0.80) 100%);
  z-index:-1;
}

/* .rw-google-widget__title heading moved to src/scss/common/reviews.scss
   (smaller + lighter on desktop, Cyrillic-safe font token). */
.rw-google-widget{
    padding:0;
}
.rw-google-widget__info{
    border-radius:0;
}
.rw-google-widget__button{
    display:none;
}

#types-right-col{


}


