/* Tradeshow detail page — base styles.

   GENERATED FILE — do not hand-edit. Contains only the rules the tradeshow
   detail page can use from the three legacy site-wide sheets (style.css,
   responsive.css, demo.css), in their original order and source text, so
   this page no longer downloads ~130KB of CSS that's ~85% unused here.
   Loaded by tradeshow_detail.blade.php via the layout's `base_css` section,
   in the exact slot the three legacy sheets would otherwise occupy (before
   header.css / footer.css), so the cascade is unchanged. Every other page,
   including blog pages, still loads the full legacy sheets.

   After changing style.css / responsive.css / demo.css in a way tradeshow
   pages should also get, regenerate it: python tools/extract_tradeshow_base.py
   Page design itself lives in tradeshow_detail.css. */


/* ---------- from style.css ---------- */

*{
     box-sizing: border-box;
     
     font-family: "Outfit", sans-serif;
}
.skip-link {
    position: absolute;
    top: -100px;
    left: 12px;
    z-index: 9999;
    background: #0c2e16;
    color: #cfff7f;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 12px;
}
html, body, button, a{
     font-family: "Outfit", sans-serif;
     padding: 0px;
     margin: 0px;
}
.clear{
     clear: both;
}
.headr {
     width: 100%;
     background: #fff;
     box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.headr .logo {
     display: flex;
     align-items: center;
     gap: 8px;
}
.headr .logo img {
     height: 42px;
     width: auto;
}
.headr .logo span {
     font-size: 18px;
     font-weight: 600;
     color: #222;
}
.headr .dropdown {
     position: relative;
}
.headr .dropdown-toggle {
     background: #fff;
     border: none;
     padding: 10px 16px;
     border-radius: 30px;
     cursor: pointer;
     font-weight: 500;
     display: flex;
     align-items: center;
     gap: 6px;
     border: 1px solid #d6d6d6;
}
.headr .dropdown-toggle .arrow {
     display: inline-block;
     width: 0;
     height: 0;
     border-left: 5px solid transparent;
     border-right: 5px solid transparent;
     border-top: 6px solid #000;
     transition: transform 0.2s;
}
.headr .dropdown.active .dropdown-toggle .arrow {
     transform: rotate(180deg);
}
.headr svg {
     width: 1rem;
     height: 1rem;
}
a{
     text-decoration: none;
}
.faq_item {
     background: #fff;
     border: 1px solid #e5e7eb;
     border-radius: 12px;
     margin-bottom: 15px;
     overflow: hidden;
     transition: all 0.3s ease;
}
.faq_item.active {
     border-color: #f0f0f0;
}
.quote_btn_left {
     position: fixed;
     top: 50%;
     left: 0;
     transform: translateY(-50%) rotate(-90deg);
     transform-origin: left top;
     background-color: #0a3d1c;
     color: #c5f55b;
     padding: 12px 30px;
     border-radius: 0 0 12px 12px;
     font-size: 16px;
     font-weight: 500;
     text-decoration: none;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
     transition: all 0.3s ease;
     z-index: 9999;
     margin-top: 50px;
     padding-top: 10px;
     padding-bottom: 17px;
     zoom: 0.9;
}
.quote_btn_left:hover {
     background-color: #052912;
     color: #ffffff;
     transform: translateY(-50%) rotate(-90deg) scale(1.05);
}
a{
     transition: all 0.2s ease;
}
a:hover {
     transform:scale(1.05);
}
body {
     background: #f9fafb;
}
@keyframes spin {
     to {
         transform: rotate(360deg);
    }
}
.login_pop {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0,0,0,0.4);
     display: flex;
     justify-content: center;
     align-items: center;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease;
     z-index: 999;
}
.login_pop.show {
     opacity: 1;
     visibility: visible;
}
.login_pop_content {
     background: #fff;
     border-radius: 12px;
     padding: 35px 40px;
     text-align: center;
     width: 480px;
     max-width: 90%;
     box-shadow: 0 4px 25px rgba(0,0,0,0.15);
     animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
     from {
         transform: translateY(-10px);
         opacity: 0;
    }
     to {
         transform: translateY(0);
         opacity: 1;
    }
}
.login_pop_content h2 {
     font-size: 24px;
     font-weight: 600;
     color: #333;
     margin-bottom: 5px;
}
.login_pop_content p {
     color: #555;
     font-size: 16px;
     margin-bottom: 25px;
     margin-top: 00px;
}
.login_option {
     text-align: left;
}
.login_item {
     border: 2px solid #e0e0e0;
     border-radius: 10px;
     padding: 20px 15px;
     margin-bottom: 22px;
     display: flex;
     align-items: center;
     cursor: pointer;
     transition: background 0.2s ease, border-color 0.2s ease;
}
.login_item:hover {
     border-color: #888;
     background: #fff;
     transition: all 0.2s ease;
     transform: scale(1.04);
}
.icon_wrap {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     margin-right: 15px;
     flex-shrink: 0;
}
.icon_admin {
     background: #fdecec;
     color: #d44;
}
.icon_exhibitor {
     background: #e9f1ff;
     color: #007bff;
}
.icon_builder {
     background: #e9f9ef;
     color: #007f4f;
}
.login_item h3 {
     margin: 0;
     font-size: 18px;
     font-weight: 600;
     color: #333;
}
.login_item p {
     margin: 3px 0 0;
     font-size: 15px;
     color: #555;
     margin-top: 0px;
}
.login_cancel {
     margin-top: 10px;
     background: none;
     border: none;
     color: #555;
     cursor: pointer;
     font-size: 19px;
}
h2 {
     font-size: 22px;
     color: #0c1633;
     margin-bottom: 5px;
}
p.subtitle {
     color: #6b7280;
     font-size: 14px;
     margin-bottom: 25px;
}
.trad_sho_detl1 {
     width: 100%;
     background: url("../img/back_detl.avif") center/cover no-repeat;
     position: relative;
     padding: 80px 4%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     color: #063;
}
.trad_sho_detl1::before {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(255,255,255,0.75);
     background: linear-gradient(to right, #fffffff5, #ffffffc4, #ffffff38);
    
}
.trad_sho_detl1 .left-box {
     position: relative;
     max-width: 55%;
     z-index: 2;
}
.trad_sho_detl1 h1 {
     font-size: 40px;
     color: #003b2e;
     margin-bottom: 0px;
     font-weight: 600;
}
.trad_sho_detl1 h2 {
     font-size: 22px;
     font-weight: 500;
     color: #003b2e;
     margin-bottom: 20px;
     margin-top: 10px;
     margin-bottom: 00px;
}
.trad_sho_detl1 p {
     font-size: 16px;
     line-height: 1.5;
     color: #003b2e;
     margin-bottom: 32px;
     width: 80%;
}
.trad_sho_detl1 .btns {
     display: flex;
     gap: 20px;
}
.trad_sho_detl1 .btn {
     background: #0c2e16;
     color: #fff;
     padding: 10px 22px 12px 22px;
     border-radius: 50px;
     font-size: 16px;
     cursor: pointer;
     border: none;
}
.trad_sho_detl1 .btn2 {
     background: #fff;
     color: #0c2e16;
     border: 2px solid #0c2e16;
}
.trad_sho_detl1 .count-wrapper {
     position: relative;
     width: 380px;
     background: #1c2330;
     color: white;
     padding: 10px 20px 25px 20px;
     border-radius: 20px;
     z-index: 2;
}
.trad_sho_detl1 .count-header {
     display: flex;
     align-items: center;
     font-size: 14px;
     letter-spacing: 1px;
     margin-bottom: 10px;
     text-align: center;
     display: inline-block;
     width: 100%;
}
.trad_sho_detl1 .count-header::before {
     content: "•";
     font-size: 22px;
     margin-right: 10px;
     color: rgb(255, 83, 83);
}
.trad_sho_detl1 .timer-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 10px;
}
.trad_sho_detl1 .tbox {
     background: #323945;
     padding: 8px 3px;
     border-radius: 10px;
     text-align: center;
}
.trad_sho_detl1 .tbox .num {
     font-size: 29px;
     font-weight: 700;
}
.trad_sho_detl1 .tbox .lbl {
     font-size: 13px;
     margin-top: 0px;
     opacity: 0.65;
}
@media (max-width: 1100px) {
    .trad_sho_detl1 {
             flex-direction: column;
             text-align: left;
             gap: 40px;
        }
    .trad_sho_detl1 .left-box {
             max-width: 100%;
        }
}
a:focus{
     outline: none;
}
.trad_sho_detl2 {
     width: 100%;
     padding: 40px 3%;
     display: flex;
     align-items: flex-start;
     justify-content: center;
     gap: 40px;
     background: #fcfcfd;
}
.trad_sho_detl2 .event-tags {
     display: flex;
     gap: 18px;
     margin-bottom: 30px;
}
.trad_sho_detl2 h3:where(:not(.ts_builders *)) {
     margin-top: 25px;
     margin-bottom: 10px;
     font-size: 22px;
}
.trad_sho_detl2 ul:where(:not(.ts_builders *)) {
     margin-left: 00px;
     margin-bottom: 20px;
     padding-left: 25px;
     line-height: 1.60;
}
.trad_sho_detl2 li:where(:not(.ts_builders *)) {
     margin-bottom: 6px;
}
.trad_sho_detl2 .right {
     width: 30%;
     
     top: 30px;
}
.trad_sho_detl2 input {
     width: 100%;
     padding: 12px 14px;
     border-radius: 6px;
     border: 1px solid #ccc;
     margin-bottom: 16px;
     font-size: 14px;
}
.trad_sho_detl2 .image-card {
     background: #fff;
     padding-bottom: 20px;
     border-radius: 10px;
     box-shadow: 0 2px 10px rgba(0,0,0,0.05);
     margin-bottom: 30px;
     border: 1px solid #e3e3e3;
}
.trad_sho_detl2 .image-card img {
     width: 100%;
     border-radius: 10px 10px 0 0;
}
.trad_sho_detl2 .image-card button {
     width: 90%;
     margin: 15px auto;
     display: block;
     padding: 11px 14px 13px 14px;
     border-radius: 8px;
     border: 1px solid #333;
     background: #fff;
     color: #333;
     cursor: pointer;
     font-size: 16px;
}
.trad_sho_detl2 .view-all-btn {
     display: block;
     text-align: center;
     background: #fff;
     border: 1px solid #003b2e;
     color: #003b2e;
     padding: 15px;
     border-radius: 8px;
     margin-top: 15px;
     cursor: pointer;
     display: inline-block;
     width: 100%;
     font-size: 16px;
}
@media (max-width: 1100px) {
    .trad_sho_detl2 {
             flex-direction: column;
        }
    .trad_sho_detl2 .left, .trad_sho_detl2 .right {
             width: 100%;
        }
}
.trs_detl_logo{
     float: left;
     width: 170px;
     margin-top: -30px;
     margin-bottom: 20px;
}
.detl_main_h2{
     font-size: 36px;
     margin-bottom: 10px;
     margin-top: 00px;
}
.left p:where(:not(.ts_builders *)){
     font-size: 18px;
     display: inline-block;
     width: 100%;
     color: #374151;
     line-height: 1.60;
}
.left ul:where(:not(.ts_builders *)){
     
}
.left ul li:where(:not(.ts_builders *)){
     font-size: 18px;
}
.right_sid_img_1{
}
.detl_main_h2_main {
     margin-bottom: 30px;
     margin-top: 10px;
}
ul li strong{
     font-weight: 600;
}
.card_til_1{
     float: left;
     width: 100%;
     text-align: center;
     font-size: 18px;
     margin-top: 20px;
     font-weight: 600;
}
.card_til_2{
     float: left;
     width: 100%;
     text-align: center;
     font-size: 14px;
     color: #555;
     margin-top: 7px;
}
.card_til_2_2{
     margin-bottom: 20px;
}
.card_til_1_2{
     margin-top: 10px;
}
.box_right_side{
}
.card_blue {
     width: 100%;
     background: linear-gradient(135deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%);
     border-radius: 22px;
     padding: 25px;
     color: #ffffff;
     font-family: "Inter", sans-serif;
     position: relative;
     overflow: hidden;
     box-shadow: 0 4px 12px rgba(0,0,0,0.15);
     margin-bottom: 30px;
}
.card_blue .badge {
     position: absolute;
     top: 13px;
     right: 13px;
     background: #ffffff;
     color: #111;
     padding: 5px 12px;
     border-radius: 20px;
     font-size: 12px;
     font-weight: 500;
}
.card_blue .logo-box {
     width: 105px;
     height: 105px;
     border-radius: 10px;
     background: #ffffff;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 30px auto 18px;
     margin-top: 0px;
     margin-bottom: 9px;
}
.card_blue .logo-box img {
     width: 90%;
}
.card_blue .title {
     text-align: center;
     font-size: 22px;
     font-weight: 500;
     margin-bottom: 3px;
}
.card_blue .location {
     text-align: center;
     font-size: 15px;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 6px;
     opacity: 0.9;
     margin-bottom: 10px;
}
.card_blue .bottom {
     background: rgba(0,0,0,0.15);
     padding: 18px 18px;
     border-radius: 0 0 18px 18px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin: 0 -25px -25px;
}
.card_blue .stat {
     font-size: 15px;
}
.card_blue .stat strong {
     font-weight: 700;
}
.card_blue .star {
     font-size: 15px;
}
.card_blue .location span svg {
     width: 17px;
     height: 17px;
     display: inline-block;
     margin-top: 3px;
}
.card_blue .star svg {
     width: 15px;
     height: 15px;
     display: inline-block;
     margin-top: 0px;
     fill: #fde047;
     stroke-width: 0px;
}
.trad_sho_detl2 .left {
     width: 65%;
}
.Left_inner{
     background: #fff;
     padding: 40px;
     border-radius: 12px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.detl_faq {
     width: 100%;
     max-width: 1000px;
     margin: 60px auto;
     padding: 0 20px;
     color: #003b2e;
     text-align: center;
     background: #fff;
     padding: 40px;
     border-radius: 12px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
     background: #fff;
     margin-top: 50px;
     margin-bottom: 0px;
}
.detl_faq .faq_title {
     font-size: 38px;
     font-weight: 600;
     margin-bottom: 10px;
}
.detl_faq .faq_box {
     text-align: left;
     margin-top: 40px;
}
.detl_faq .faq_item {
     background: #fff;
     border-radius: 12px;
     padding: 19px 20px;
     margin-bottom: 15px;
     border: 1px solid #e7e7e7;
     cursor: pointer;
     transition: background 0.2s ease;
}
.detl_faq .faq_item:hover {
     background: #f9fafb;
}
.detl_faq .faq_q {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 20px;
     font-weight: 600;
}
.detl_faq .faq_icon {
     font-size: 16px;
     transition: transform 0.3s ease;
     color: #777;
}
.detl_faq .faq_item.active .faq_icon {
     transform: rotate(180deg);
}
.detl_faq .faq_a {
     max-height: 0;
     overflow: hidden;
     opacity: 0;
     margin-top: 0;
     transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease;
     font-size: 16px;
     line-height: 1.6;
}
.detl_faq .faq_item.active .faq_a {
     max-height: 600px;
     opacity: 1;
     margin-top: 14px;
}
.footer_last {
     width: 100%;
     background: #032f1c;
    
     padding: 70px 20px;
     text-align: center;
     color: #ffffff;
     margin-bottom: 50px;
}
.footer_last h2 {
     font-size: 40px;
     font-weight: 600;
     margin-bottom: 18px;
     color: #fff;
     margin-top: 0px;
     margin-bottom: 10px;
}
.footer_last p {
     font-size: 20px;
     line-height: 1.6;
     max-width: 950px;
     margin: 0 auto 40px;
     color: #fff;
     margin-bottom: 20px;
}
.footer_last .cta_btn {
     background: #c8ff70;
     color: #003b2e;
     font-size: 18px;
     font-weight: 700;
     padding: 14px 45px;
     border-radius: 50px;
     border: none;
     cursor: pointer;
     display: inline-block;
     transition: 0.2s ease;
}
.footer_last .cta_btn:hover {
     background: #d9ff8a;
}
.stats svg{
     float: left;
     width: 15px;
     float: left;
     height: 15px;
     margin-top: 1px;
     margin-right: 6px;
}
.form_2 *,
.form_2 *::before,
.form_2 *::after {
  box-sizing: border-box;
}
.form_2 {
  max-width: 100%;
  margin: 0 auto;
  color: #111;
}
.form_2 .quote-form {
  padding: 20px 18px 30px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
}
.form_2 .form-title {
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 600;
}
.form_2 .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form_2 .form-group {
  margin-bottom: 8px;
  width: 100%;
}
.form_2 .form-row .form-group {
  flex: 1 1 calc(50% - 5px);
}
.form_2 .form-control {
  width: 100%;
  padding: 13px 11px;
  font-size: 15px;
  border-radius: 9px;
  border: 1px solid #ddd;
  outline: none;
  background-color: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form_2 .form-control:focus {
  border-color: #000;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.form_2 .textarea {
  resize: vertical;
  min-height: 90px;
}
.form_2 .phone-group {
  display: flex;
  gap: 6px;
}
.form_2 select.form-control {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #555 50%),
    linear-gradient(135deg, #555 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}
.form_2 .small-text {
  margin: 4px 0 6px;
  font-size: 11px;
  color: #555;
}
.form_2 .file-group .file-input {
  font-size: 12px;
}
.form_2 .checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #333;
}
.form_2 .checkbox-group input[type="checkbox"] {
  margin-top: 2px;
  width: 10px;
}
.form_2 .btn-submit {
  width: 100%;
  padding: 11px 10px;
  border-radius: 23px;
  border: none;
  background: #000;
  color: #f9dc3b;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: background 0.15s ease, transform 0.1s ease;
  background: #cfff7f;
  color: #333;
  padding: 11px 16px 13px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 19px;
  margin-top: 10px;
  font-weight: 600;
}
.form_2 .btn-submit:hover {
  transform: translateY(-1px);
}
.form_2 .btn-submit:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
    .form_2 {
        max-width: 100%;
      }
    .form_2 .quote-form {
        padding: 16px 12px 24px;
      }
}
input:focus{
     outline: none;
}


/* ---------- site-wide scrollbar: thin, brand green, floating pill ----------
   Same block in front/css/style.css (public pages; tradeshow_base.css carries
   it too), front/builder/css/style.css and front/exhibitor/css/style.css —
   keep them in sync. Firefox only understands scrollbar-width/-color, and
   Chrome 121+ ignores ::-webkit-scrollbar when those are set, hence the
   Firefox-only @supports. */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(12, 46, 22, 0.38);
    border: 4px solid transparent;
    border-radius: 999px;
    background-clip: padding-box;
    min-height: 48px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #0C2E16;
    border-width: 2px;
}
::-webkit-scrollbar-thumb:active {
    background-color: #1A4A2A;
    border-width: 2px;
}
::-webkit-scrollbar-corner {
    background: transparent;
}
/* the page's own scrollbar gets a faint track so the pill has a lane */
html::-webkit-scrollbar-track {
    background: #F3F6F1;
}

@supports (-moz-appearance: none) {
    * {
        scrollbar-width: thin;
        scrollbar-color: rgba(12, 46, 22, 0.45) transparent;
    }
}

/* ---------- from responsive.css ---------- */

@media (max-width: 992px) {
    .headr .logo span {
             font-size: 16px;
        }
    .headr .dropdown-toggle span {
             font-size: 14px;
        }
}
@media (max-width: 600px) {
    .headr .logo img {
             height: 30px;
        }
}
@media (max-width: 768px) {
    .field {
             flex: 1 1 100%;
        }
}
@media (max-width: 768px) {
    .login_pop_content {
             width: 90%;
             padding: 25px 20px;
        }
    .login_pop_content h2 {
             font-size: 18px;
        }
    .login_item {
             padding: 12px;
        }
    .icon_wrap {
             width: 35px;
             height: 35px;
             margin-right: 12px;
        }
    .login_item h3 {
             font-size: 15px;
        }
    .login_item p {
             font-size: 12px;
        }
}
@media (max-width: 480px) {
    .login_pop_content {
             width: 92%;
             padding: 20px 15px;
        }
    .login_pop_content h2 {
             font-size: 17px;
        }
    .login_pop_content p {
             font-size: 13px;
             margin-bottom: 18px;
        }
    .login_item {
             flex-direction: row;
             align-items: flex-start;
        }
    .icon_wrap {
             width: 32px;
             height: 32px;
             margin-right: 10px;
        }
    .login_item h3 {
             font-size: 14px;
        }
    .login_item p {
             font-size: 12px;
        }
    .login_cancel {
             font-size: 13px;
        }
}
@media (max-width: 768px) {
    .quote_btn_left{
            zoom: 0.6;
            top: 35%;
    }
    .headr .logo {
        display: flex;
        align-items: center;
        gap: 8px;
        display: inline-block;
        width: 100%;
        text-align: center;
    }
    .headr .logo img {
            height: 35px;
        }
    .trad_sho_detl2 .left {
        width: 100%;
    }
    .trad_sho_detl1 h1 {
        font-size: 27px;
        color: #003b2e;
        margin-bottom: 0px;
        font-weight: 600;
        line-height: 33px;
        margin-top: 0px;
    }
    .trad_sho_detl1 p {
        font-size: 15px;
        line-height: 1.3;
        color: #003b2e;
        margin-bottom: 22px;
        width: 96%;
    }
    .detl_main_h2_main {
        margin-bottom: 30px;
        margin-top: 10px;
        font-size: 24px;
    }
    .Left_inner {
        background: #fff;
        padding: 20px 20px;
    }
    .trad_sho_detl2 .event-tags {
        display: flex;
        gap: 9px;
        margin-bottom: 20px;
    }
    .trad_sho_detl2 h3:where(:not(.ts_builders *)) {
        margin-top: 25px;
        margin-bottom: 10px;
        font-size: 20px;
        font-weight: 500;
    }
    .left p:where(:not(.ts_builders *)) {
        font-size: 16px;
        display: inline-block;
        width: 100%;
        color: #374151;
        line-height: 22px;
    }
    .left ul li:where(:not(.ts_builders *)) {
        font-size: 16px;
    }
    .detl_faq{
        padding: 20px;
    }
}


/* ---------- from demo.css ---------- */

.star {
    color: #d1d5db;
    position: relative;
    display: inline-block;
}
.star.full {
    color: #f59e0b;
}
.star.empty {
    color: #d1d5db;
}
.fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    border-radius: 999px;
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.booth_description{
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    margin-bottom: 0px;
    outline: none;
    font-family: "Outfit";
    margin-top: 15px;
}
select.is-invalid {
    margin-bottom: 0px!important;
}
@keyframes spin { to { transform: rotate(360deg); } }
.faq_a_p{
    font-size: unset !important;
}
.faq_t_det{
   font-size: unset !important;
   margin: 0px !important; 
}
figure.image{
        padding: 0px;
    margin: 0px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}
figure.image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.flash-msg{
    position: relative;
    margin: 15px 0;
    border-radius: 10px;
    padding: 12px 45px 12px 15px;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
@keyframes shimmer{
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}
.info .meta{
  display:flex;
  align-items:center;
  gap:8px;
  margin:4px 0;
  color:#555;
}
.info .meta i{
  font-size:14px;
  opacity:.85;
}
@keyframes shimmer{
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
