/* ============================================================
   Ultra Web Hosting — Unified Stylesheet v4.0
   Date: 2026-04-13

   Consolidates: style-min.css, shortcodes-min.css, reset-min.css,
   responsive-layouts-min.css, responsive.css, colors/blue.css,
   headers/*.css

   Audited against all HTML pages. Dead/superseded/legacy code removed.
   Dark theme default with [data-theme="light"] toggle support.
   ============================================================ */


/* ==========================================================
   PART 1: CSS CUSTOM PROPERTIES
   ========================================================== */

:root {
  --ultra-bg-page: #0c1929;
  --ultra-bg-alt: #0f2035;
  --ultra-bg-card: #142640;
  --ultra-bg-card-hover: #1b3350;
  --ultra-bg-subtle: rgba(255,255,255,0.04);
  --ultra-bg-input: rgba(255,255,255,0.06);
  --ultra-text-heading: #fff;
  --ultra-text-body: rgba(255,255,255,0.85);
  --ultra-text-secondary: rgba(255,255,255,0.55);
  --ultra-text-muted: rgba(255,255,255,0.45);
  --ultra-border: rgba(255,255,255,0.08);
  --ultra-border-hover: rgba(255,255,255,0.15);
  --ultra-border-input: rgba(255,255,255,0.12);
  --ultra-shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --ultra-shadow-md: 0 8px 24px rgba(0,0,0,0.4);
  --ultra-blue: #1a7fd4;
  --ultra-blue-hover: #2196f3;
  --ultra-blue-icon: #4da6e8;
  --ultra-blue-header: #1b79cf;
  --ultra-blue-legacy: #3183d7;
  --ultra-orange: #ffa00e;
  --ultra-orange-hover: #ffb840;
  --ultra-green: #86c724;
  --ultra-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --fa-width: auto;
}

[data-theme="light"] {
  --ultra-bg-page: #ffffff;
  --ultra-bg-alt: #f5f7fa;
  --ultra-bg-card: #ffffff;
  --ultra-bg-card-hover: #f5f7fa;
  --ultra-bg-subtle: rgba(0,0,0,0.03);
  --ultra-bg-input: #fff;
  --ultra-text-heading: #1a1a2e;
  --ultra-text-body: #4a4a5a;
  --ultra-text-secondary: #6a6a7a;
  --ultra-text-muted: #8a8a9a;
  --ultra-border: rgba(0,0,0,0.08);
  --ultra-border-hover: rgba(0,0,0,0.15);
  --ultra-border-input: #d0d5dd;
  --ultra-shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --ultra-shadow-md: 0 8px 24px rgba(0,0,0,0.1);
}


/* ==========================================================
   PART 2: RESET (replaces reset-min.css)
   ========================================================== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0; padding: 0; border: 0; outline: 0;
  font-size: 100%; vertical-align: baseline;
  background: transparent;
}
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
:focus { outline: 0; }
ins { text-decoration: none; }
del { text-decoration: line-through; }
img { max-width: 100%; height: auto; }

body {
  padding: 0; margin: 0;
  background: var(--ultra-bg-page);
  font: 14px var(--ultra-font);
  font-weight: 400;
  line-height: 23px;
  color: var(--ultra-text-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body, input, textarea { font-family: var(--ultra-font); line-height: 23px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ultra-font);
  font-weight: 600;
  color: var(--ultra-text-heading);
  letter-spacing: 0.3px;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: inherit; }
h1 { font-size: 35px; line-height: 35px; margin-bottom: 30px; }
h2 { font-size: 27px; line-height: 32px; margin-bottom: 20px; }
h3 { font-size: 21px; line-height: 28px; margin-bottom: 18px; }
h4 { font-size: 18px; line-height: 25px; margin-bottom: 10px; font-style: normal; }
h5 { font-size: 16px; line-height: 23px; margin-bottom: 12px; font-style: normal; }
h6 { font-size: 14px; line-height: 23px; margin-bottom: 12px; font-style: normal; }
h1 strong { font-weight: 900; display: block; }
h1 em { display: block; font-size: 16px; color: var(--ultra-text-secondary); font-weight: 300; font-style: normal; text-transform: none; margin-top: 3px; }
h1.light, h2.light, h3.light, h4.light, h5.light, h6.light { font-weight: 300; }

p { font-size: 14px; font-family: var(--ultra-font); font-weight: 400; }
a { color: var(--ultra-blue-icon); text-decoration: none; transition: color 0.2s ease; }
a:hover { text-decoration: none; color: var(--ultra-blue-hover); }
[data-theme="light"] a { color: var(--ultra-blue); }
[data-theme="light"] a:hover { color: var(--ultra-blue-hover); }

strong { font-weight: bold; }
cite, em, i { font-style: italic; }
blockquote { margin: 20px 0 20px 36px; font-size: 16px; border-left: 5px solid var(--ultra-blue); padding: 5px 20px; color: var(--ultra-text-body); }
pre { background: var(--ultra-bg-subtle); font-size: 13px; line-height: 1.5; margin-bottom: 40px; overflow: auto; padding: 0.75em 20px; border-radius: 6px; }
code, kbd { font-size: 13px; }
abbr, acronym, dfn { border-bottom: 1px dotted var(--ultra-text-muted); cursor: help; }
address { display: block; margin: 0 0 40px; }
sup, sub { font-size: 10px; height: 0; line-height: 1; position: relative; vertical-align: baseline; }
sup { bottom: 1ex; } sub { top: .5ex; }

ul, ol { margin: 0 0 20px 0; list-style-position: inside; }
ul { list-style: none; } ul li { list-style: none; }
ol { list-style-type: decimal; }
ol ol { list-style: upper-alpha; } ol ol ol { list-style: lower-roman; }
ul ul, ol ol, ul ol, ol ul { margin-bottom: 0; }
ul.defaulf { list-style: inherit; margin: 0 0 0 14px; }
ul.defaulf li { list-style: inherit; padding: 4px 0 4px 2px; }

/* Utility text classes */
.sitecolor { color: var(--ultra-blue-icon) !important; }
[data-theme="light"] .sitecolor { color: var(--ultra-blue-legacy) !important; }
.color { color: var(--ultra-blue-legacy); }
.ultrawhite { color: #fff; }
.white { color: #fff !important; }
p.white, h3.white, h4.white, h5.white, span.white, i.white { color: #fff !important; }
.caps { text-transform: uppercase; }
.gray { color: var(--ultra-text-muted) !important; font-weight: 400; }
.dark { color: var(--ultra-text-heading) !important; font-weight: 400; }
.bigtfont { font-size: 16px; line-height: 27px; }
.rimg { width: 100%; }
.dropcap { display: block; float: left; font-size: 45px; margin: 15px 8px 0 0; text-transform: uppercase; }

/* Clearfix */
.clearfix::after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }

/* Width utilities */
.less1 { width: 75%; margin: 0 auto; }
.less2 { width: 50%; margin: 0 auto; }
.less3 { width: 60%; margin: 0 auto; }
.less4 { width: 45%; margin: 0 auto; }
.less5 { width: 85%; margin: 0 auto; }
.less6 { width: 70%; margin: 0 auto; }

/* Margin utilities */
.margin_top1  { float: left; width: 100%; margin-top: 10px; }
.margin_top2  { float: left; width: 100%; margin-top: 20px; }
.margin_top3  { float: left; width: 100%; margin-top: 30px; }
.margin_top4  { float: left; width: 100%; margin-top: 40px; }
.margin_top5  { float: left; width: 100%; margin-top: 50px; }
.margin_top6  { float: left; width: 100%; margin-top: 60px; }
.margin_top7  { float: left; width: 100%; margin-top: 70px; }
.margin_top8  { float: left; width: 100%; margin-top: 80px; }
.margin_top9  { float: left; width: 100%; margin-top: 90px; }
.margin_top10 { float: left; width: 100%; margin-top: 100px; }
.margin_bottom1  { margin-bottom: 10px; }
.margin_bottom2  { margin-bottom: 20px; }
.margin_bottom3  { margin-bottom: 30px; }
.margin_bottom4  { margin-bottom: 40px; }
.margin_bottom5  { margin-bottom: 50px; }
.margin_bottom6  { margin-bottom: 60px; }
.margin_bottom7  { margin-bottom: 70px; }

/* Alignment */
.imgleft  { float: left; }
.imgleft2 { float: left; margin-right: 30px; }
.imgright { float: right; }
.alileft  { text-align: left; }
.alicent  { text-align: center; }
/* Prose intro section after coupon bar */
.container.alicent { padding-top: 30px; padding-bottom: 10px; }
.container.alicent > .one_full.stcode_title10 > p {
  max-width: 900px; margin-left: auto; margin-right: auto;
  font-size: 16px; line-height: 1.85; margin-bottom: 18px;
}
.container.alicent > .one_full.stcode_title10 > p strong {
  color: var(--ultra-text-heading); font-weight: 600;
}
.container.alicent > .one_full.stcode_title10 > p em {
  display: block; margin-top: 12px; padding: 14px 20px;
  background: rgba(26,127,212,0.08); border-radius: 8px;
  font-style: normal; font-size: 14px; color: var(--ultra-blue-icon);
}
[data-theme="light"] .container.alicent > .one_full.stcode_title10 > p em {
  background: rgba(26,127,212,0.06); color: var(--ultra-blue-legacy);
}
.aliright { text-align: right; }


/* ==========================================================
   PART 3: LAYOUT (replaces style-min.css structural rules)
   ========================================================== */

.site_wrapper { width: 100%; margin: 0 auto; }
.container { width: 1170px; margin: auto; }

.content_fullwidth { float: left; width: 100%; padding: 90px 0; }
.content_fullwidth.less2 { padding: 75px 0 90px; }
.content_fullwidth.less3 { padding: 80px 0 40px; }
.content_left { float: left; width: 71%; padding: 0; }
.right_sidebar { float: right; width: 25%; padding: 0; }

/* Column grid */
.one_fifth, .one_fourth, .one_half, .one_third,
.two_third, .three_fourth {
  position: relative; margin-right: 4%; float: left;
}
.one_full { width: 100%; }
.one_half { width: 48%; }
.one_third { width: 30.65%; }
.one_fourth { width: 22%; }
.one_fifth { width: 16.8%; }
.two_third { width: 65.35%; }
.three_fourth { width: 74%; }

.one_fifth_less, .one_fourth_less, .one_half_less,
.one_third_less, .two_third_less, .three_fourth_less {
  position: relative; margin-right: 2%; float: left;
}
.one_half_less { width: 49%; }
.one_third_less { width: 32%; }
.one_fourth_less { width: 23.5%; }
.one_fifth_less { width: 18.4%; }
.two_third_less { width: 66%; }
.three_fourth_less { width: 74.5%; }

.last { margin-right: 0 !important; clear: right; }


/* ==========================================================
   PART 4: DOMAIN SEARCH & GET STARTED
   ========================================================== */

.domain_search {
  float: left; width: 100%; background: var(--ultra-blue-header); font-family: var(--ultra-font);
}
.domain_search .search_area {
  float: left; width: 100%; padding: 30px 0 35px;
  border-top: 1px solid #124b86; border-bottom: 1px solid #124b86;
}
.domain_search .search_area h5 { float: left; margin: 14px 12px 0 0; }
.domain_search .search_area .enter_domain_input,
.domain_search .search_area .enter_tld_input {
  height: 54px; background: #fff; color: #727272; font-size: 16px;
  float: left; font-family: var(--ultra-font);
}
.domain_search .search_area .enter_domain_input {
  padding: 3px 0 4px 20px; width: 38%; border-radius: 3px; border: none;
}
.domain_search .search_area .enter_tld_input,
.page_title1.sty7 .search_area .enter_tld_input {
  padding: 3px 0 4px; width: 80px; border-radius: 3px; border: none; margin-left: 3px;
}
.domain_search .search_area .input_submit {
  float: left; padding: 15px 25px 16px; background-color: var(--ultra-orange);
  border: 0; font-size: 18px; font-weight: 500; color: #fff;
  text-transform: uppercase; transition: 0.3s; border-radius: 3px; margin-left: 12px;
}
.domain_search .search_area .input_submit:hover,
.page_title1.sty7 .search_area .input_submit:hover {
  color: var(--ultra-orange); cursor: pointer; background-color: #fff;
}
.domain_search .offers li.last { padding-bottom: 30px; }

.ultraclients { width: 100%; border-bottom: 1px solid #124b86; }
.domain_search .ultraclients ul { float: right; padding: 0; margin: 0; }
.domain_search .ultraclients li {
  float: left; padding: 20px 18px 25px; margin: 0; color: #fff;
}
.domain_search .ultraclients li,
.get_started .offers {
  font-weight: 200; border-left: 1px solid var(--ultra-blue-header); font-size: 23px;
}

.get_started { float: left; width: 100%; background: var(--ultra-blue-header); font-family: var(--ultra-font); margin-top: 20px; }
.get_started .offers {
  padding: 28px 24px; margin: 0; color: #fff; line-height: 1.6; text-align: center; font-size: 22px;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px;
}
.get_started .offers .but_small_orange {
  display: inline-block; vertical-align: middle; margin: 0;
}


/* ==========================================================
   PART 5: FEATURE SECTIONS (active ones only)
   ========================================================== */

/* Shared float+center grouping (from style-min.css combined selectors) */
.feature_section5 li,
.feature_section6,
.feature_section6 .climg,
.feature_section7,
.feature_section7b {
  text-align: center; float: left;
}

/* Section 1 */
.feature_section1 {
  float: left; width: 100%; padding: 55px 0 50px;
  background: var(--ultra-bg-alt); text-align: center;
}
.feature_section1 .one_third, .feature_section12 .one_fourth { text-align: left; }
.feature_section1 i {
  float: left; width: 62px; height: 62px; border-radius: 100%;
  background-color: var(--ultra-bg-subtle); text-align: center; line-height: 62px;
  position: relative; margin: 6px 20px 6px 6px; color: var(--ultra-blue-icon); font-size: 23px;
}
[data-theme="light"] .feature_section1 i { background-color: #fff; color: #2a363f; }
.feature_section1 i:after, .feature_section12 i:after {
  background: rgba(255,255,255,0.1); z-index: 1; right: 0; bottom: 0;
  content: ""; border-radius: 100%; border: 2px solid var(--ultra-border);
  position: absolute; top: 0; left: 0; transition: 0.3s;
}
.feature_section1 i:hover:after, .feature_section12 i:hover:after {
  top: -5px; bottom: -5px; right: -5px; left: -5px;
}

/* Section 2 */
.feature_section2 { float: left; width: 100%; }
.feature_section2 .title {
  float: left; width: 100%; text-align: center; padding: 75px 0 30px;
  background: url(https://ultracdn.ultrawebhosting.com/images/up-arrow.png) center bottom no-repeat;
}
.feature_section2 .twoboxes {
  float: left; position: relative; z-index: 9;
  background: var(--ultra-bg-alt); width: 100%; padding: 85px 0;
}
.feature_section2 .twoboxes:before {
  content: ""; position: absolute; z-index: -1;
  top: 0; right: 50%; bottom: 0; left: 0; background: var(--ultra-bg-page);
}
.feature_section2 .twoboxes .left { float: left; width: 45%; text-align: left; }
.feature_section2 .twoboxes .right { float: right; width: 43.5%; text-align: left; }
.feature_section2 .twoboxes i { float: left; margin-right: 25px; color: #fff; font-size: 58px; margin-top: 14px; }
.feature_section2 .twoboxes strong {
  color: #fff; font-size: 43px; line-height: 35px; font-weight: 900;
  display: block; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 45px;
}
.feature_section2 .twoboxes strong em { color: #fff; font-size: 18px; font-weight: 300; display: block; font-style: normal; }
.feature_section2 .twoboxes ul { float: left; width: 100%; padding: 0; margin: 0; }
.feature_section2 .twoboxes li { width: 100%; padding: 14px 0; margin: 0; color: #fff; font-size: 16px; }
.feature_section2 .twoboxes li i { color: #959b9f; float: left; font-size: 14px; margin-right: 12px; margin-top: 4px; margin-bottom: 30px; }
.feature_section2 .twoboxes li a { float: left; margin-top: 10px; }

/* Section 5 */
.feature_section5 { float: left; width: 100%; padding: 40px 0 65px; }
.feature_section5 .two_third { padding-top: 70px; }
.feature_section5 ul { float: left; width: 100%; padding: 0; margin: 5px 0 9px; }
.feature_section5 li { padding: 5px 7px; border: 1px dashed #d9dbdc; margin: 0 14px 14px 0; }
.feature_section5 li img { display: block; margin: 0 auto; width: 100%; }
.feature_section5 .one_third img { max-width: 100%; }

/* Section 6 */
.feature_section6 { width: 100%; padding: 60px 0 50px; background: var(--ultra-bg-alt); }
.feature_section6 .climg { width: 100%; background: url(https://ultracdn.ultrawebhosting.com/images/h-lines.png) center 48px no-repeat; }
.feature_section6 .climg img { width: 12.5%; border-radius: 100%; margin-bottom: 25px; }
.feature_section6 .item em { font-style: normal; color: var(--ultra-text-muted); }
.feature_section6 .item strong { font-size: 16px; font-weight: 600; color: var(--ultra-text-heading); }
[data-theme="light"] .feature_section6 .item strong { color: #2a363f; }

/* Section 7 */
.feature_section7 { width: 100%; padding: 60px 0 77px; background: var(--ultra-bg-alt); }
.feature_section7 .one_fifth_less {
  border: 1px solid var(--ultra-border); border-radius: 3px;
  padding: 25px 0 14px; color: #fff; background: var(--ultra-blue-header); transition: 0.1s;
}
.feature_section7 .one_fifth_less i { text-align: center; color: #fff; display: block; font-size: 20px; margin-bottom: 18px; margin: 0 auto; }
.feature_section7 .one_fifth_less h5 { color: #fff; text-align: center; }
.feature_section7 .one_fifth_less:hover { border-color: var(--ultra-blue-hover); background: var(--ultra-blue-hover); }

/* Section 7b — blue accent, stays blue in both modes */
.feature_section7b {
  width: 100%; padding: 60px 0 77px; background: var(--ultra-blue-header) !important; color: #fff !important;
}
.feature_section7b h3, .feature_section7b h4, .feature_section7b h5, .feature_section7b h6 { color: #fff !important; }
.feature_section7b p, .feature_section7b li { color: rgba(255,255,255,0.9) !important; }
.feature_section7b a { color: #fff !important; text-decoration: underline; }
.feature_section7b em { color: rgba(255,255,255,0.7) !important; }

/* Section 9 & 10 */
.feature_section9, .feature_section10 { float: left; width: 100%; padding: 50px 0 45px; text-align: center; }
.feature_section9 .box {
  float: left; width: 100%; text-align: left; margin-bottom: 50px; padding: 25px 30px;
  background: var(--ultra-bg-card); box-shadow: var(--ultra-shadow-sm); border-radius: 6px;
}
.feature_section10 .box { float: left; width: 100%; padding: 16px 0 10px; border: 4px solid var(--ultra-border); border-radius: 5px; }
.feature_section10 .box h1, .feature_section10 .box h6 { margin-bottom: 5px; }
.feature_section10 .box h1 em { margin-top: 0; font-size: 14px; }

/* Section 12 */
.feature_section12 { float: left; width: 100%; padding: 18px 0 50px; text-align: center; }
.feature_section12 i {
  float: left; width: 45px; height: 45px; border-radius: 100%;
  background-color: var(--ultra-bg-subtle); line-height: 45px;
  margin: 6px 18px 6px 6px; font-size: 18px; text-align: center;
  color: var(--ultra-blue-icon); position: relative;
}
[data-theme="light"] .feature_section12 i { background-color: #f3f3f3; color: #2a363f; }

/* Section 17 */
.feature_section17 { float: left; width: 100%; padding: 95px 0 90px; text-align: center; }
.feature_section17 .one_third {
  float: left; padding: 35px 50px 45px; background: var(--ultra-bg-card);
  border-radius: 5px; border: 5px solid var(--ultra-border);
}
.feature_section17 .one_third i { color: var(--ultra-blue-icon); font-size: 32px; margin-bottom: 27px; border-radius: 100%; text-align: center; vertical-align: middle; }
.feature_section17 .one_third a.but1 {
  color: #fff; border-radius: 3px; padding: 13px 27px;
  background: var(--ultra-blue); text-transform: uppercase; white-space: nowrap; transition: 0.3s;
}
.feature_section17 .one_third a.but1:hover { color: #fff; background: var(--ultra-blue-hover); }

/* Section Ultra — gradient hero (index, chat, etc.) */
.feature_section_ultra {
  position: relative;
  background: linear-gradient(135deg, #1661af 0, #2989d8 52%, #207cca 73%, #1b79cf 100%, #7db9e8 100%);
  border-top: 1px solid #124b86; border-bottom: 2px solid #124b86;
}
.feature_section_ultra:before {
  position: absolute; content: ""; left: 0; bottom: 0; width: 100%; height: 100%;
  background: url("https://ultracdn.ultrawebhosting.com/images/backgroundwlogo.png") 50% / cover no-repeat;
}

/* Dark-section — stays dark in BOTH modes (inline white text) */
.dark-section { background: #0c1929 !important; color: rgba(255,255,255,0.85) !important; }
.dark-section h1, .dark-section h2, .dark-section h3, .dark-section h4, .dark-section h5, .dark-section h6 { color: #fff !important; }
.dark-section p { color: rgba(255,255,255,0.85) !important; }
.dark-section a { color: #4da6e8 !important; }
.dark-section .sitecolor { color: #4da6e8 !important; }
.dark-section h4 i { color: #4da6e8 !important; }
.dark-section .stcode_title10 h3 em { color: rgba(255,255,255,0.55) !important; }
.dark-section .stcode_title10 i { color: #4da6e8 !important; }


/* ==========================================================
   PART 6: PAGE TITLES & HERO
   ========================================================== */

.page_title1, .page_title2 { position: relative; width: 100%; float: left; }
.page_title1, .page_title1.sty10, .page_title1.sty8, .page_title2 {
  background: center top no-repeat var(--ultra-blue-header);
}
.page_title1 { color: #fff; text-align: center; margin-top: 113px; padding: 30px 0 5px; }
.page_title1 h1 { color: #fff !important; font-size: 26px; line-height: 25px; font-weight: 600; text-transform: uppercase; }
.page_title1 h1 em { color: rgba(255,255,255,0.8) !important; font-weight: 400; display: block; font-size: 18px; font-style: normal; text-transform: none; }
.page_title2 { color: #fff; text-align: center; margin-top: 45px; padding: 60px 0 0; }

/* Domain search variant */
.page_title1.sty7 {
  padding: 70px 0 55px !important;
  background: url(https://ultracdn.ultrawebhosting.com/images/domains-bg.png) center top no-repeat var(--ultra-blue-header);
  background-size: cover;
}
.page_title1.sty7 .search_area { width: 61%; padding: 20px 0 0; margin: 0 auto; }
.page_title1.sty7 .search_area .enter_domain_input,
.page_title1.sty7 .search_area .enter_tld_input {
  float: left; height: 64px; background: #fff; color: #727272; font-size: 16px;
}
.page_title1.sty7 .search_area .enter_domain_input { padding: 3px 0 4px 20px; width: 56%; border-radius: 3px; border: none; }
.page_title1.sty7 .search_area .input_submit {
  float: left; padding: 20px 30px 21px; background-color: var(--ultra-orange);
  border: 0; font-size: 18px; font-weight: 500; color: #fff;
  text-transform: uppercase; transition: 0.3s; border-radius: 3px; margin-left: 12px;
}
.page_title1.sty7 .search_area .molinks { float: left; width: 100%; text-align: left; margin-top: 14px; }
.page_title1.sty7 .search_area .molinks a { color: #fff; margin: 0 10px 0 0; transition: 0.3s; }
.page_title1.sty7 .search_area .molinks a:hover { color: #ddd; }

/* Page Hero (replaces css/headers/*.css) */
.page-hero {
  position: relative;
  background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)), var(--hero-bg) center center no-repeat;
  background-size: cover; text-align: center; height: 280px;
  border-bottom: 5px solid var(--ultra-blue-header);
}
.page-hero .fit { position: relative; padding: 60px 0; z-index: 10; }
.page-hero .fit h1 { font-size: 50px; line-height: 50px; margin: 0; font-weight: 700; color: #fff !important; text-shadow: 2px 2px #000; }
.page-hero .fit h2 { font-size: 22px; color: #fff !important; font-weight: 300; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 35px; text-shadow: 2px 2px #000; }

/* Legacy .web-hosting hero class */
.web-hosting {
  position: relative;
  background: linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)), url(https://ultracdn.ultrawebhosting.com/images/headers/seattle-web-servers.jpg) center center no-repeat;
  background-size: cover; text-align: center; height: 280px;
  border-bottom: 5px solid var(--ultra-blue-header);
}
.web-hosting .fit { position: relative; padding: 60px 0; z-index: 10; }
.web-hosting .fit h1 { font-size: 50px; line-height: 50px; margin: 0; font-weight: 700; color: #fff !important; text-shadow: 2px 2px #000; }
.web-hosting .fit h2 { font-size: 22px; color: #fff !important; font-weight: 300; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 35px; text-shadow: 2px 2px #000; }

.partner_logos_ns { top: -10px; float: left; width: 100%; padding: 0; position: relative; text-align: center; filter: brightness(150%); }
.partner_logos_ns img { width: 100%; max-width: 110px; height: auto; }


/* ==========================================================
   PART 7: AWARDS, PARTNERS, PRICING
   ========================================================== */

.awards { padding: 35px 50px 45px; background: var(--ultra-bg-card); width: 100%; text-align: center; border-radius: 6px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.awards h1, .awards h2, .awards h3, .awards h4, .awards h5, .awards h6,
.awards center, .awards > span { width: 100%; margin-bottom: 8px; }
.awards ul { width: 100%; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; list-style: none; }
.awards li { padding: 0; margin: 0; }
.awards img, .logospace { background: #fff; padding: 8px; border-radius: 8px; height: 62px; width: auto;
  object-fit: contain; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
[data-theme="light"] .awards { background: #f7f8fa; border: 1px solid #e8e8e8; }
[data-theme="light"] .awards img, [data-theme="light"] .logospace { box-shadow: 0 1px 4px rgba(0,0,0,0.08); }

.partner_logos { float: left; width: 100%; padding: 33px 0 30px; text-align: center; }
.logospace { }

.price_compare { float: left; width: 100%; padding: 30px 0; text-align: center; }
.price_compare td, .price_compare th { padding: 12px 0; text-align: center; color: var(--ultra-text-body); }
.price_compare table { width: 100%; }
.price_compare table, .price_compare td, .price_compare th { border-collapse: separate; border-spacing: 10px 1px; }
.price_compare table i { font-size: 14px; width: 23px; height: 23px; line-height: 22px; background: var(--ultra-bg-subtle); border-radius: 100%; text-align: center; vertical-align: middle; }
.price_compare table td.first { background: transparent; border: none; }
.price_compare td { background: var(--ultra-bg-subtle); }
.price_compare th { background: var(--ultra-bg-alt); font-weight: 400; }
.price_compare td.alileft, .price_compare th.alileft { text-align: left; padding: 12px 0 12px 18px; color: var(--ultra-text-heading); font-weight: 500; font-size: 15px; }
.price_compare .rowfirst { width: 37%; }
.price_compare .rowsremain { width: 21%; background: var(--ultra-bg-alt); }
.price_compare .title { float: left; width: 75%; text-align: right; }
.price_compare .title .arrow_box { position: relative; background: var(--ultra-bg-alt); padding: 12px 20px 12px 0; }
.price_compare .title .arrow_box:after { left: 100%; top: 50%; border: 18px solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; border-left-color: var(--ultra-bg-alt); margin-top: -18px; }
.price_compare .title h5 { color: #fff; margin-bottom: 0; font-weight: 300; }
.price_compare .title h3 { color: #fff; font-weight: 900; margin-bottom: 0; }
.price_compare .prices { width: 100%; text-align: center; float: left; padding: 20px 0 30px; }
.price_compare .prices h4 { margin-bottom: 18px; }
.price_compare .prices strong { color: var(--ultra-blue-legacy); font-size: 45px; font-weight: 800; display: block; }
.price_compare .prices strong i { color: var(--ultra-text-body); font-size: 12px; font-weight: 400; font-style: normal; background: none; }
.price_compare .prices b { color: var(--ultra-text-secondary); font-size: 12px; font-weight: 300; display: block; margin-bottom: 22px; margin-top: 5px; }
.price_compare .prices b em { text-decoration: line-through; font-style: normal; }
.price_compare .prices a { color: #fff; font-size: 14px; background: var(--ultra-blue); padding: 10px 27px; border-radius: 3px; transition: 0.3s; font-weight: 600; text-transform: uppercase; }
.price_compare .prices a:hover { color: #fff; background: var(--ultra-blue-hover); }
.price_compare .rowsremain.center { color: #fff; background: var(--ultra-bg-alt); }
.price_compare .rowsremain.center .prices i,
.price_compare .rowsremain.center .prices strong { color: #fff; }
.price_compare .rowsremain.center .prices a { color: var(--ultra-text-heading); background: var(--ultra-bg-card); }
.price_compare .rowsremain.center .prices a:hover { color: #fff; background: var(--ultra-blue-hover); }
.price_compare .rowsremain.center span { color: #fff; padding: 3px 10px 4px; background: var(--ultra-blue); margin-top: -62px; margin-bottom: 32px; display: block; text-transform: uppercase; font-weight: 700; letter-spacing: 0.5px; }

/* Pricing card overrides — keep dark text on white cards */
.item-table { color: #333 !important; }
.item-table h1, .item-table h2, .item-table h3, .item-table h4, .item-table h5, .item-table h6,
.item-table strong, .item-table p, .table-header, .table-tagline,
.table-price-currency, .table-price-whole, .table-price-decimals, .table-price-period,
.table-price-discountinfo, .table-features-item { color: inherit !important; }
.item-table a { color: var(--ultra-blue) !important; }
.item-table .button-blue, .item-table a.button-blue { color: #fff !important; }
.plan-details { background: #f3f3f3 !important; }
.plan-details-text { color: #666 !important; }
.plans-row::after { content: ""; display: table; clear: both; }

/* Service icon sprites */
.drupal, .ecommerce, .joomla, .magento, .open-source, .php, .wordpress { width: 26px; height: 26px; }
.service_icon { display: inline-block; width: 32px; height: 32px; padding: 5px; margin-top: 12px; }
.drupal, .ecommerce, .joomla, .magento, .modx, .open-source, .php, .wordpress {
  background: url(https://ultracdn.ultrawebhosting.com/images/logo-sprites.png) no-repeat;
}
.wordpress   { background-color: #666; background-position: -5px 0; }
.magento     { background-color: #ed4b23; background-position: -41px -1px; }
.joomla      { background-color: #f07100; background-position: -111px -2px; }
.php         { background-color: #5969a4; background-position: -149px -2px; }
.drupal      { background-color: #0079c2; background-position: -186px -2px; }
.ecommerce   { background-color: #ec9e2b; background-position: -223px -2px; }
.open-source { background-color: #1abc9c; background-position: -257px -2px; }


/* ==========================================================
   PART 8: TYPOGRAPHY — Ultra heading classes
   ========================================================== */

.ultrahead2, .ultrahead3, .ultrahead5, .ultrahead7,
.ultraheadblue, .ultraheadcat, .ultraheadfooter, .ultraheadtldn { display: block; }

.ultrahead2, .ultrahead3, .ultrahead4, .ultrahead5,
.ultraheadtldn, .ultraheadtldprice { color: var(--ultra-text-heading); font-family: var(--ultra-font); }
[data-theme="light"] .ultraheadtldn { color: #555 !important; }
[data-theme="light"] .ultraheadtldprice { color: #1a1a2e !important; }
[data-theme="light"] .ultraheadtldprice em { color: #8a8a9a !important; }

.ultrahead1 { font-size: 27px; line-height: 32px; margin-bottom: 20px; }
.ultrahead2 { font-size: 35px; line-height: 35px; margin-bottom: 25px; font-weight: 500; letter-spacing: 0.5px; }
.ultrahead3 { font-size: 21px; line-height: 28px; margin-bottom: 18px; font-weight: 500; letter-spacing: 0.5px; }
.ultrahead4 { font-size: 18px; line-height: 25px; margin-bottom: 10px; font-weight: 300; letter-spacing: 0.5px; }
.ultrahead5 { font-size: 27px; line-height: 27px; margin-bottom: 25px; font-weight: 500; letter-spacing: 0.5px; }
.ultrahead6, .ultrahead7 { margin-bottom: 10px; font-size: 22px; font-weight: 400; color: var(--ultra-text-secondary); z-index: 1; letter-spacing: 0.5px; text-align: center; line-height: 25px; position: relative; }
.ultraheadblue { font-size: 35px; line-height: 35px; margin-bottom: 25px; font-weight: 500; color: #1d85e5; letter-spacing: 0.5px; }
.ultraheadtld { font-size: 35px; line-height: 35px; color: #1661af; margin-bottom: 5px; font-weight: 500; letter-spacing: 0.5px; }
.ultraheadtldn { font-size: 14px; line-height: 23px; margin-bottom: 5px; font-weight: 500; letter-spacing: 0.5px; }
.ultraheadtldprice { font-size: 35px; line-height: 35px; margin-bottom: 5px; font-weight: 500; letter-spacing: 0.5px; }
.ultraheadtldprice em { margin-top: 0; font-size: 14px; color: var(--ultra-text-muted); text-transform: none; font-weight: 300; font-style: normal; display: block; }
.ultraheadcat { color: #fff; font-weight: 900; margin-bottom: 0; font-size: 21px; line-height: 28px; letter-spacing: 0.5px; }
.ultraheadcatsmall { font-size: 16px; line-height: 23px; display: block; color: #fff; font-weight: 300; margin-bottom: 0; letter-spacing: 0.5px; }
.ultraheadfooter { margin-bottom: 18px; font-size: 18px; line-height: 25px; font-weight: 500; letter-spacing: 0.5px; }

.ultraimg { max-width: 320px; }
.imgframe2 { border-radius: 6px; }
.imgframe4 { float: left; width: 100%; box-shadow: 0 10px 6px -6px rgba(0,0,0,0.4); }
.expandpaylogos { width: 100%; max-width: 250px; height: auto; }


/* ==========================================================
   PART 9: SUPPORT, COUPON, SIDEBAR, MISC
   ========================================================== */

.livesupport { color: var(--ultra-blue-header); font-size: 36px; font-weight: 900; letter-spacing: 1px; margin-right: 7px; line-height: 35px; margin-bottom: 25px; }
.livesupporthelp { margin-bottom: 5px; font-weight: 300; font-size: 18px; line-height: 25px; color: var(--ultra-text-heading); letter-spacing: 0.5px; }

.coupon {
  float: left; text-align: center; width: 100%;
  background: var(--ultra-blue-header); padding: 10px 0 1px;
  margin: 0; color: #fff; font-size: 27px; font-weight: 200;
}
.coupon a { color: #fff; }

/* Sidebar */
.sidebar_widget, .sidebar_title, .clientsays_widget, ul.recent_posts_list, .recent_posts_list li { width: 100%; float: left; }
.sidebar_widget { padding: 0; margin: 0; }
.sidebar_widget ul.arrows_list1 { padding: 0; margin: -10px 0 0; float: left; }
.sidebar_widget ul.arrows_list1 li a { color: var(--ultra-blue-legacy); line-height: 30px; }
.sidebar_widget ul.arrows_list1 li a:hover { color: var(--ultra-text-heading); }
.sidebar_widget ul.arrows_list1 i { margin-right: 4px; }
.clientsays_widget h4, .sidebar_widget h4 { margin-bottom: 30px; float: left; font-weight: 500; }
ul.recent_posts_list { margin: 0; padding: 0; }
.recent_posts_list li { padding: 0 0 13px; margin: 0 0 16px; list-style-type: none; border-bottom: 1px solid var(--ultra-border); }
.recent_posts_list li a { text-decoration: none; line-height: 17px; display: block; color: var(--ultra-text-secondary); }
.recent_posts_list li a:hover { color: var(--ultra-blue-legacy); }
.recent_posts_list li span { float: left; margin-right: 15px; }
.recent_posts_list li span img { float: left; margin-right: 0; opacity: 1; }
.recent_posts_list li span img:hover { opacity: 0.8; }
.recent_posts_list li i { padding: 1px 0 0; margin: 0; display: block; font-size: 10px; font-style: normal; color: var(--ultra-text-muted); }
.clientsays_widget { padding: 0; margin: 0; color: var(--ultra-text-secondary); }
.clientsays_widget strong { font-weight: 600; color: var(--ultra-text-heading); }
.clientsays_widget img { float: left; margin-right: 13px; margin-top: 7px; }

/* Scroll up */
.scrollup {
  width: 40px; height: 40px; opacity: 1; position: fixed; bottom: 22px; right: 20px;
  display: none; text-indent: -9999px;
  background: url(https://ultracdn.ultrawebhosting.com/images/scroll-top-arrow.png) left top no-repeat;
  z-index: 9001;
}


/* ==========================================================
   PART 10: BUTTONS (consolidated from shortcodes)
   ========================================================== */

.button.one, .button.two, .button.three { font-size: 14px; white-space: nowrap; transition: 0.3s; font-family: var(--ultra-font); text-transform: uppercase; }
.button.one { color: #fff; background: var(--ultra-blue); padding: 13px 30px; border-radius: 6px; font-weight: 600; }
.button.one:hover { color: #fff; background: var(--ultra-blue-hover); }
.button.two { color: var(--ultra-text-heading); border: 2px solid var(--ultra-border-hover); padding: 9px 20px; border-radius: 6px; }
.button.two:hover { color: #fff; background: var(--ultra-blue); border-color: var(--ultra-blue); }
.button.three { color: #fff; font-weight: 700; background: var(--ultra-blue); padding: 10px 25px; border-radius: 20px; }
.button.three:hover { color: #fff; background: var(--ultra-blue-hover); }
.button.three.dark { color: #fff; background: var(--ultra-bg-alt); }
.button.three.dark:hover { color: #fff; background: var(--ultra-blue); }

.but_small1, .but_small2, .but_small3, .but_small4,
.but_medium1, .but_medium2, .but_medium3, .but_medium4,
.but_large1, .but_large2, .but_large3, .but_large4 {
  display: inline-block; color: #fff; background: var(--ultra-blue-legacy);
  border: none; border-radius: 6px; font-weight: 600; text-transform: uppercase;
  cursor: pointer; transition: 0.2s ease; white-space: nowrap;
}
.but_small1, .but_small2, .but_small3, .but_small4 { padding: 10px 25px; }
.but_medium1, .but_medium2, .but_medium3, .but_medium4 { padding: 14px 35px; font-size: 14px; }
.but_large1, .but_large2, .but_large3, .but_large4 { padding: 18px 50px; font-size: 16px; }
.but_small1:hover, .but_small2:hover, .but_small3:hover, .but_small4:hover,
.but_medium1:hover, .but_medium2:hover, .but_medium3:hover, .but_medium4:hover,
.but_large1:hover, .but_large2:hover, .but_large3:hover, .but_large4:hover { background: var(--ultra-blue-hover); color: #fff; }

.but_small5, .but_medium5, .but_large5 {
  display: inline-block; color: var(--ultra-text-heading); border: 2px solid var(--ultra-border-hover);
  background: transparent; border-radius: 6px; font-weight: 600; text-transform: uppercase;
  cursor: pointer; transition: 0.2s ease; white-space: nowrap; padding: 10px 25px;
}
.but_small5:hover, .but_medium5:hover, .but_large5:hover { background: var(--ultra-blue); border-color: var(--ultra-blue); color: #fff; }

.but_small_orange { display: inline-block; padding: 10px 20px; background: var(--ultra-orange); color: #fff; border-radius: 6px; transition: 0.2s; font-size: 14px; font-weight: 600; }
.but_small_orange:hover { background: var(--ultra-orange-hover); color: #fff; }
.but_small_blue { display: inline-block; padding: 10px 20px; background: var(--ultra-blue); color: #fff; border-radius: 6px; transition: 0.2s; font-size: 14px; font-weight: 600; }
.but_small_blue:hover { background: var(--ultra-blue-hover); color: #fff; }
a.button-blue { display: inline-block; background: var(--ultra-blue); border: none; border-radius: 6px; color: #fff; font-weight: 600; transition: 0.2s; }
a.button-blue:hover { background: var(--ultra-blue-hover); color: #fff; }

[data-theme="light"] .button.one { color: #2a363f; background: #fff; }
[data-theme="light"] .button.one:hover { color: #fff; background: var(--ultra-blue-hover); }


/* ==========================================================
   PART 11: SHORTCODE TITLES & COMPONENTS
   ========================================================== */

.stcode_title1 h3, .stcode_title2 h3, .stcode_title3 h3 { font-size: 27px; z-index: 1; position: relative; text-align: left; font-weight: 400; }
.stcode_title1 .line, .stcode_title2 .line, .stcode_title2 .line2 { position: absolute; height: 1px; display: block; width: 100%; border-top: solid 1px var(--ultra-border); }
.stcode_title1 .line { top: 18px; }
.stcode_title2 .line { top: 16px; }
.stcode_title2 .line2 { top: 20px; }
.stcode_title1 .text, .stcode_title2 .text, .stcode_title3 .text { background-color: var(--ultra-bg-page); z-index: 20; position: relative; text-align: center; padding: 0 18px 0 0; }
.stcode_title4 h3, .stcode_title5 h3 { font-size: 27px; padding-bottom: 16px; font-weight: 400; z-index: 1; position: relative; text-align: left; }
.stcode_title5 h3 { margin-bottom: 25px; }
.stcode_title5 h3.nmb { margin-bottom: 3px; }
.stcode_title4 .line, .stcode_title5 .line { background: var(--ultra-blue-legacy); position: absolute; display: block; bottom: 0; }
.stcode_title4 .line { height: 2px; width: 72px; }
.stcode_title5 .line { height: 3px; width: 100px; }
.stcode_title5 .line2 { border-top: solid 1px var(--ultra-border); position: absolute; height: 1px; display: block; bottom: 1px; width: 100%; }
.stcode_title6 { text-align: center; }
.stcode_title6 h2 b { font-weight: 700; }
.stcode_title6 h2 strong { color: #fff; padding: 0 10px 3px; background-color: var(--ultra-bg-alt); }
.stcode_title7 { text-align: center; }
.stcode_title7 em { display: block; font-size: 16px; margin-top: 5px; font-style: normal; font-weight: 400; }
.stcode_title7 .line { background: var(--ultra-blue-legacy); height: 3px; display: block; width: 100px; margin: 18px auto 0; }
.stcode_title8 h2 { font-size: 35px; z-index: 1; position: relative; font-weight: 300; text-align: center; }
.stcode_title8 .line { position: absolute; height: 1px; display: block; top: 18px; width: 100%; border-top: 1px solid var(--ultra-border); }
.stcode_title8 .text { background-color: var(--ultra-bg-page); z-index: 20; position: relative; text-align: center; padding: 0 25px; }
.stcode_title9, .stcode_title10, .stcode_title11 { text-align: center; }
.stcode_title9 em, .stcode_title10 em { font-size: 18px; margin-top: 5px; font-weight: 400; display: block; font-style: normal; }
.stcode_title10 .line { background: url(https://ultracdn.ultrawebhosting.com/images/h-line3.png) center 13px no-repeat; height: 39px; display: block; bottom: 0; width: 300px; margin: 3px auto 0; position: relative; }
.stcode_title10 i { display: block; color: var(--ultra-text-muted); font-size: 14px; line-height: 50px; }
.stcode_title11 em { font-size: 16px; line-height: 27px; margin-top: 12px; color: var(--ultra-text-muted); font-weight: 400; display: block; font-style: normal; }
.stcode_title12 h1, .stcode_title12 h2, .stcode_title12 h4 { z-index: 1; position: relative; text-align: center; }
.stcode_title12 h1 { font-size: 35px; font-weight: 900; margin-bottom: 14px; }
.stcode_title12 h2 { color: var(--ultra-blue-legacy); }
.stcode_title10w h3, .stcode_title10w h4 { color: #fff !important; text-align: center; }
.stcode_title10w em { color: rgba(255,255,255,0.55) !important; display: block; font-style: normal; font-weight: 400; font-size: 18px; margin-top: 5px; }
.stcode_title10w .line { background: url(https://ultracdn.ultrawebhosting.com/images/h-line3.png) center 13px no-repeat; height: 39px; display: block; width: 300px; margin: 3px auto 0; filter: brightness(3); }
.stcode_title10w .line i { color: #fff !important; display: block; font-size: 14px; line-height: 50px; }

/* The .line on dark-section backgrounds also needs to be visible */
.dark-section .stcode_title10 .line { filter: brightness(3); }
/* The .line on feature_section7b needs to be visible on blue */
.feature_section7b .stcode_title10 .line,
.feature_section7b .stcode_title10w .line { filter: brightness(3); }

.divider_line { float: left; width: 100%; border-bottom: 1px solid var(--ultra-border); margin: 15px 0; }
.divider_line1 { float: left; width: 100%; border-bottom: 1px solid var(--ultra-border); margin: 15px 0; }
.divider_line1.nomp { margin: 0; padding: 0; }

.list_divlines { padding: 0; margin: 0; }
.list_divlines li { padding: 10px 0 12px; margin: 0; line-height: 23px; border-bottom: 1px solid var(--ultra-border); }
.list_divlines li i { color: var(--ultra-text-muted); font-size: 11px; margin-right: 3px; }
.list_divlines2 { padding: 0; margin: 0; }
.list_divlines2 li { color: var(--ultra-text-secondary); padding: 10px 0 11px; margin: 0; line-height: 23px; border-top: 1px solid var(--ultra-border); }
.list_divlines2 li.last { border-bottom: 1px solid var(--ultra-border); }
.list_divlines2 li i { color: var(--ultra-text-muted); margin-right: 7px; }

.alertymes1 { color: var(--ultra-text-heading); border: 1px solid var(--ultra-border); background-color: var(--ultra-bg-subtle); padding: 14px 20px; border-radius: 6px; margin-bottom: 15px; }
.alertymes2 { background-color: var(--ultra-blue-legacy); color: #fff; padding: 14px 20px; border-radius: 6px; margin-bottom: 15px; }
.infomes { color: #3378b9; border: 1px solid #9ecaf3; background-color: rgba(219,237,253,0.1); padding: 14px 20px; border-radius: 6px; margin-bottom: 15px; }
.errormes { color: #bd6767; border: 1px solid #f1bdbd; background-color: rgba(255,221,221,0.1); padding: 14px 20px; border-radius: 6px; margin-bottom: 15px; }
.noticemes { color: #a79a30; border: 1px solid #d7d099; background-color: rgba(246,242,210,0.1); padding: 14px 20px; border-radius: 6px; margin-bottom: 15px; }
.successmes { color: #1ea133; border: 1px solid #a9ecb4; background-color: rgba(223,251,228,0.1); padding: 14px 20px; border-radius: 6px; margin-bottom: 15px; }

/* Tabs2 — only override colors, plugin CSS handles layout */
.tabs2 li a {
  color: var(--ultra-text-body) !important;
  background-color: var(--ultra-bg-alt) !important;
  border-right-color: var(--ultra-bg-page) !important;
}
.tabs2 li.active a {
  color: #fff !important;
  background-color: var(--ultra-blue) !important;
}
.tabs-content2, .tabs-panel2 { color: var(--ultra-text-body) !important; }
.tabs-content2 { border-color: var(--ultra-border) !important; }
.tabs-content2 strong { color: var(--ultra-text-heading) !important; }
[data-theme="light"] .tabs2 li a { color: #454545 !important; background-color: #e3e3e3 !important; border-right-color: #fff !important; }
[data-theme="light"] .tabs2 li.active a { color: #fff !important; background-color: #1b79cf !important; }
[data-theme="light"] .tabs-content2, [data-theme="light"] .tabs-panel2 { color: #727272 !important; }
[data-theme="light"] .tabs-content2 { border-color: #e3e3e3 !important; }


/* ==========================================================
   PART 12: TRUST BAR & THEME TOGGLE
   ========================================================== */

.uwh-trust-bar { display: flex; justify-content: center; flex-wrap: wrap; background: var(--ultra-bg-subtle); border: 1px solid var(--ultra-border); border-radius: 10px; overflow: hidden; }
.uwh-trust-item { flex: 1 1 200px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.4rem 1rem; text-align: center; border-right: 1px solid var(--ultra-border); min-height: 90px; }
.uwh-trust-item:last-child { border-right: none; }
.uwh-trust-icon { font-size: 1.5rem; margin-bottom: 0.4rem; line-height: 1; }
.uwh-trust-stat { font-size: 1.15rem; font-weight: 700; color: var(--ultra-text-heading); line-height: 1.2; }
.uwh-trust-label { font-size: 0.78rem; color: var(--ultra-text-secondary); margin-top: 0.2rem; line-height: 1.3; }
.uwh-review-link { text-align: center; margin-top: 1rem; font-size: 0.88rem; }
.uwh-review-link a { color: var(--ultra-blue-icon); font-weight: 500; }
.uwh-review-link .uwh-stars { color: #f39c12; letter-spacing: 1px; margin-right: 0.3em; }

/* Stats bar pattern (contact, support, transfer, hipaa, about pages) */
.ultra-stats-bar-wrap { background: #fff; border-bottom: 1px solid #e5e5e5; }
.ultra-stats-bar .us-card { border-right: 1px solid #e5e5e5; }
html:not([data-theme="light"]) .ultra-stats-bar-wrap { background: #0f1c2e !important; border-bottom-color: rgba(255,255,255,0.08) !important; }
html:not([data-theme="light"]) .ultra-stats-bar .us-card { border-right-color: rgba(255,255,255,0.08) !important; }
html:not([data-theme="light"]) .ultra-stats-bar .us-lbl { color: rgba(255,255,255,0.45) !important; }

/* Global dark overrides for common inline-styled intro/prose sections */
html:not([data-theme="light"]) .xfer-intro,
html:not([data-theme="light"]) .xfer-intro p,
html:not([data-theme="light"]) .xsec-head p,
html:not([data-theme="light"]) .contact-intro,
html:not([data-theme="light"]) .contact-intro p { color: rgba(255,255,255,0.7) !important; }
html:not([data-theme="light"]) .xsec-head h2,
html:not([data-theme="light"]) .contact-section-head h2 { color: #fff !important; }
html:not([data-theme="light"]) .contact-section-head p { color: rgba(255,255,255,0.5) !important; }

/* Theme toggle — Ultra branded pill (!important overrides .ultra-nav button reset) */
.ultra-theme-toggle {
  position: fixed !important; bottom: 24px !important; left: 24px !important; z-index: 9998 !important;
  width: 72px !important; height: 36px !important; border-radius: 18px !important;
  cursor: pointer !important; user-select: none;
  transition: background 0.4s ease, border-color 0.4s ease;
  border: 1px solid rgba(255,255,255,0.1) !important; padding: 0 !important;
  background: #0c1929 !important;
  margin: 0 !important; box-sizing: border-box !important;
  font: inherit; color: inherit;
}
.ultra-theme-toggle .toggle-label {
  position: absolute !important; top: 50% !important; transform: translateY(-50%) !important;
  font-size: 13px !important;
  transition: all 0.35s ease;
  right: 12px !important; left: auto !important;
  color: rgba(255,255,255,0.2) !important;
  margin: 0 !important; padding: 0 !important;
}
.ultra-theme-toggle .toggle-knob {
  position: absolute !important; top: 3px !important; left: 4px !important;
  width: 28px !important; height: 28px !important; border-radius: 50% !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  transition: all 0.4s cubic-bezier(0.68, -0.15, 0.27, 1.15);
  font-size: 13px !important;
  background: #1a7fd4 !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(26,127,212,0.4) !important;
  margin: 0 !important; padding: 0 !important;
}
[data-theme="light"] .ultra-theme-toggle {
  background: #f0f2f5 !important;
  border-color: #d0d5dc !important;
}
[data-theme="light"] .ultra-theme-toggle .toggle-label {
  right: auto !important; left: 12px !important;
  color: #ccc !important;
}
[data-theme="light"] .ultra-theme-toggle .toggle-knob {
  left: calc(100% - 34px) !important;
  background: #fff !important;
  color: #ffa00e !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12) !important;
}
/* Theme transition — smooth crossfade on all elements */
html.ultra-theme-animating {
  transition: background-color 0.5s ease !important;
}
html.ultra-theme-animating body,
html.ultra-theme-animating .ultra-nav,
html.ultra-theme-animating .ultra-nav-top,
html.ultra-theme-animating .ultra-footer,
html.ultra-theme-animating .ultra-footer-partners,
html.ultra-theme-animating .ultra-footer-copyright {
  transition: background-color 0.5s ease, box-shadow 0.5s ease !important;
}
html.ultra-theme-animating .site_wrapper > div,
html.ultra-theme-animating .content_fullwidth,
html.ultra-theme-animating .page-hero {
  transition: background-color 0.5s ease !important;
}
html.ultra-theme-animating h1, html.ultra-theme-animating h2,
html.ultra-theme-animating h3, html.ultra-theme-animating h4,
html.ultra-theme-animating h5, html.ultra-theme-animating h6,
html.ultra-theme-animating p, html.ultra-theme-animating a,
html.ultra-theme-animating span, html.ultra-theme-animating li,
html.ultra-theme-animating td, html.ultra-theme-animating th {
  transition: color 0.5s ease !important;
}
/* Toggle knob bounce */
@keyframes toggleBounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
html.ultra-theme-animating .ultra-theme-toggle {
  animation: toggleBounce 0.4s ease;
}
@media print { .ultra-theme-toggle { display: none; } }
@media (max-width: 480px) {
  .ultra-theme-toggle { bottom: 16px; left: 16px; width: 64px; height: 32px; border-radius: 16px; }
  .ultra-theme-toggle .toggle-knob { width: 24px; height: 24px; font-size: 11px; top: 3px; left: 4px; }
  .ultra-theme-toggle .toggle-label { font-size: 11px; }
  [data-theme="light"] .ultra-theme-toggle .toggle-knob { left: calc(100% - 28px); }
}


/* ==========================================================
   PART 13: LIGHT MODE RESTORATIONS
   ========================================================== */

/* Global light mode */
[data-theme="light"] body { background: #fff; color: #727272; }
[data-theme="light"] h1, [data-theme="light"] h2, [data-theme="light"] h3,
[data-theme="light"] h4, [data-theme="light"] h5, [data-theme="light"] h6 { color: #2a363f; }
[data-theme="light"] .page_title1 h1,
[data-theme="light"] .page_title1 h1 em,
[data-theme="light"] .page_title2 h1,
[data-theme="light"] .page_title2 h2 { color: #fff !important; }
[data-theme="light"] h1 em { color: #999; }
[data-theme="light"] p { color: #727272; }
[data-theme="light"] .gray { color: #999 !important; }
[data-theme="light"] .dark { color: #2a363f !important; }

/* Feature sections */
[data-theme="light"] .feature_section1 { background: #f3f3f3; }
[data-theme="light"] .feature_section1 i { background-color: #fff; color: #2a363f; }
[data-theme="light"] .feature_section1 i:after { border-color: #fff; }
[data-theme="light"] .feature_section2 .twoboxes { background: #3f4a52 !important; }
[data-theme="light"] .feature_section2 .twoboxes:before { background: #2a363f !important; }
[data-theme="light"] .feature_section5 li { border-color: #d9dbdc; }
[data-theme="light"] .feature_section6 { background: #f3f3f3; }
[data-theme="light"] .feature_section6 .item strong { color: #2a363f; }
[data-theme="light"] .feature_section6 .item em { color: #999; }
[data-theme="light"] .feature_section7 { background: #f3f3f3; }
[data-theme="light"] .feature_section7 .one_fifth_less { border-color: #e3e3e3; }
[data-theme="light"] .feature_section7 .one_fifth_less:hover { border-color: #2a363f; background: #2a363f; }
[data-theme="light"] .feature_section9 .box { background: #fff; box-shadow: 0 0 5px rgba(0,0,0,0.12); }
[data-theme="light"] .feature_section10 .box { border-color: #f3f3f3; }
[data-theme="light"] .feature_section12 i { background-color: #f3f3f3; color: #2a363f; }
[data-theme="light"] .feature_section12 i:after { border-color: #f3f3f3; }
[data-theme="light"] .feature_section17 .one_third { background: #fff; border-color: #f3f3f3; }
[data-theme="light"] .feature_section17 .one_third i { color: #2a363f; }

/* Pricing */
[data-theme="light"] .price_compare td { background: #f9f9f9; color: #2a363f; }
[data-theme="light"] .price_compare th { background: #f3f3f3; color: #2a363f; }
[data-theme="light"] .price_compare td.alileft, [data-theme="light"] .price_compare th.alileft { color: #2a363f; }
[data-theme="light"] .price_compare table i { background: #fff; }
[data-theme="light"] .price_compare table td.first { background: #fff; }
[data-theme="light"] .price_compare .rowsremain { background: #eee; }
[data-theme="light"] .price_compare .rowsremain.center { background: #2a363f; }
[data-theme="light"] .price_compare .title .arrow_box { background: #5f686f; }
[data-theme="light"] .price_compare .title .arrow_box:after { border-left-color: #5f686f; }
[data-theme="light"] .price_compare .prices strong { color: var(--ultra-blue-header); }
[data-theme="light"] .price_compare .prices strong i { color: #2a363f; }
[data-theme="light"] .price_compare .prices b { color: #727272; }

/* Awards — duplicate light override removed, defined inline above */

/* Shortcode titles */
[data-theme="light"] .stcode_title1 .text, [data-theme="light"] .stcode_title2 .text,
[data-theme="light"] .stcode_title3 .text, [data-theme="light"] .stcode_title8 .text { background-color: #fff; }
[data-theme="light"] .stcode_title1 .line, [data-theme="light"] .stcode_title2 .line,
[data-theme="light"] .stcode_title2 .line2, [data-theme="light"] .stcode_title5 .line2 { border-top-color: #e3e3e3; }
[data-theme="light"] .stcode_title6 h2 strong { background-color: #2a363f; }
[data-theme="light"] .stcode_title10 i { color: #999; }
[data-theme="light"] .stcode_title10 .line { filter: none; }
[data-theme="light"] .stcode_title11 em { color: #999; }

/* Buttons */
[data-theme="light"] .button.one { color: #2a363f; background: #fff; }
[data-theme="light"] .button.one:hover { color: #fff; background: var(--ultra-blue-hover); }
[data-theme="light"] .button.two { color: #2a363f; border-color: #2a363f; }
[data-theme="light"] .but_small5, [data-theme="light"] .but_medium5, [data-theme="light"] .but_large5 { color: var(--ultra-blue-legacy); border-color: var(--ultra-blue-legacy); }
/* Colored buttons must keep white text in light mode */
[data-theme="light"] .but_small_blue, [data-theme="light"] .but_small_orange,
[data-theme="light"] a.button-blue,
[data-theme="light"] .but_small1, [data-theme="light"] .but_small2, [data-theme="light"] .but_small3, [data-theme="light"] .but_small4,
[data-theme="light"] .but_medium1, [data-theme="light"] .but_medium2, [data-theme="light"] .but_medium3, [data-theme="light"] .but_medium4,
[data-theme="light"] .but_large1, [data-theme="light"] .but_large2, [data-theme="light"] .but_large3, [data-theme="light"] .but_large4 { color: #fff !important; }

/* Forms */
[data-theme="light"] .cforms input, [data-theme="light"] .cforms textarea { color: #454545; background: #f9f9f9; border-color: #eee; }
[data-theme="light"] .cforms label { color: #454545; }

/* Sidebar */
[data-theme="light"] .sidebar_widget ul.arrows_list1 li a { color: var(--ultra-orange); }
[data-theme="light"] .sidebar_widget ul.arrows_list1 li a:hover { color: #272727; }
[data-theme="light"] .recent_posts_list li { border-bottom-color: #eee; }
[data-theme="light"] .recent_posts_list li a { color: #999; }
[data-theme="light"] .recent_posts_list li i { color: #c9c9c9; }
[data-theme="light"] .clientsays_widget { color: #999; }
[data-theme="light"] .clientsays_widget strong { color: #454545; }

/* Ultra headings */
[data-theme="light"] .ultrahead2, [data-theme="light"] .ultrahead3,
[data-theme="light"] .ultrahead4, [data-theme="light"] .ultrahead5 { color: #2a363f; }
[data-theme="light"] .ultrahead6, [data-theme="light"] .ultrahead7 { color: #727272; }
[data-theme="light"] .livesupport { color: var(--ultra-blue-header); }
[data-theme="light"] .livesupporthelp { color: #2a363f; }

/* Misc */
[data-theme="light"] .scrollup { background: url(https://ultracdn.ultrawebhosting.com/images/scroll-top-arrow.png) left top no-repeat; }
[data-theme="light"] .divider_line, [data-theme="light"] .divider_line1 { border-bottom-color: #eee; }
[data-theme="light"] .list_divlines li { border-bottom-color: #3d3d3d; }
[data-theme="light"] .list_divlines2 li { color: #999; border-top-color: #eee; }
[data-theme="light"] .alertymes1 { color: #2a363f; border-color: #eee; background-color: #f9f9f9; }

/* dark-section switches to light in light mode */
[data-theme="light"] .dark-section { background: #fff !important; color: #727272 !important; }
[data-theme="light"] .dark-section h1, [data-theme="light"] .dark-section h2, [data-theme="light"] .dark-section h3,
[data-theme="light"] .dark-section h4, [data-theme="light"] .dark-section h5, [data-theme="light"] .dark-section h6 { color: #2a363f !important; }
[data-theme="light"] .dark-section h4 i { color: var(--ultra-blue-legacy) !important; }
[data-theme="light"] .dark-section p { color: #727272 !important; }
[data-theme="light"] .dark-section a { color: var(--ultra-blue) !important; }
[data-theme="light"] .dark-section .sitecolor { color: var(--ultra-blue-legacy) !important; }
/* Keep button text white on colored backgrounds in light mode */
[data-theme="light"] .dark-section a.but_small_blue,
[data-theme="light"] .dark-section a.but_small_orange,
[data-theme="light"] .dark-section a.button-blue,
[data-theme="light"] .dark-section a.but1,
[data-theme="light"] .dark-section .button.one,
[data-theme="light"] .dark-section .but_small1,
[data-theme="light"] .dark-section .but_medium1,
[data-theme="light"] .dark-section .but_large1 { color: #fff !important; }

/* Section separation in light mode — inset shadows avoid layout shift */
[data-theme="light"] .feature_section1,
[data-theme="light"] .feature_section6,
[data-theme="light"] .feature_section7,
[data-theme="light"] .feature_section7.dark-section { box-shadow: inset 0 1px 0 #e8e8e8, inset 0 -1px 0 #e8e8e8; }
[data-theme="light"] .dark-section + .dark-section { box-shadow: inset 0 1px 0 #e8e8e8; }
[data-theme="light"] .feature_section7b + .dark-section { box-shadow: none; }
[data-theme="light"] .dark-section + .feature_section7b { box-shadow: none; }
/* Override inline style="color:#fff" etc on dark-section elements */
[data-theme="light"] .dark-section .stcode_title10 h3 { color: #2a363f !important; }
[data-theme="light"] .dark-section .stcode_title10 h3 strong { color: #2a363f !important; }
[data-theme="light"] .dark-section .stcode_title10 h3 em { color: #999 !important; }
[data-theme="light"] .dark-section .stcode_title10 i { color: var(--ultra-blue-legacy) !important; }
[data-theme="light"] .dark-section .stcode_title10 .line { filter: none; }
/* Alternating dark-sections get subtle gray for variety */
[data-theme="light"] .feature_section7.dark-section { background: #f3f3f3 !important; }
[data-theme="light"] .feature_section5.dark-section { background: #fff !important; }
/* Plain dark-section following feature_section7 heading — match gray bg for visual unity */
[data-theme="light"] .feature_section7.dark-section + .dark-section:not([class*="feature_section"]) { background: #f3f3f3 !important; }
/* Pricing cards on light bg — add border for definition */
[data-theme="light"] .item-table { border-color: #e8e8e8 !important; }
/* Shopper Approved / Charitable text on light bg */
[data-theme="light"] .dark-section center span { color: #727272 !important; }

/* feature_section7b stays blue in light mode */
[data-theme="light"] .feature_section7b { background: var(--ultra-blue-header) !important; color: #fff !important; }
[data-theme="light"] .feature_section7b h3, [data-theme="light"] .feature_section7b h4 { color: #fff !important; }
[data-theme="light"] .feature_section7b p { color: rgba(255,255,255,0.9) !important; }
[data-theme="light"] .feature_section7b a { color: #fff !important; }
[data-theme="light"] .feature_section7b em { color: rgba(255,255,255,0.7) !important; }

/* Footer separation */
[data-theme="light"] .content_fullwidth + .ultra-footer-partners { border-top: 1px solid #eee; }


/* ==========================================================
   PART 14: RESPONSIVE
   ========================================================== */

@media only screen and (min-width: 1000px) and (max-width: 1169px) {
  .container { width: 1000px; }
  .feature_section2 .twoboxes i { margin-right: 20px; font-size: 45px; margin-top: 14px; }
  .feature_section2 .twoboxes strong { font-size: 35px; line-height: 30px; }
  .feature_section5 li { width: 22%; }
  .feature_section17 .one_third { padding: 35px 40px 45px; }
  .page_title1.sty7 .search_area { width: 79%; }
  .page-hero .fit h1, .web-hosting .fit h1 { font-size: 42px; line-height: 42px; }
}

@media only screen and (min-width: 768px) and (max-width: 999px) {
  .container { width: 747px; }
  .feature_section2 .twoboxes i { margin-right: 10px; font-size: 35px; margin-top: 12px; }
  .feature_section2 .twoboxes strong { font-size: 27px; line-height: 25px; margin-bottom: 25px; }
  .feature_section5 li { width: 30%; }
  .feature_section6 .climg img { width: 20%; }
  .page_title1.sty7 .search_area { width: 90%; }
  .feature_section17 .one_third { padding: 25px 20px 45px; }
  .page-hero .fit h1, .web-hosting .fit h1 { font-size: 38px; line-height: 38px; }
}

@media only screen and (min-width: 640px) and (max-width: 767px) {
  .one_half, .one_third, .one_fourth, .two_third, .three_fourth, .one_fifth,
  .one_half_less, .one_third_less, .one_fourth_less, .two_third_less,
  .three_fourth_less, .one_fifth_less {
    position: relative; margin-right: 0; float: left;
  }
  .one_full, .one_half, .one_third, .one_fourth, .one_fifth, .two_third, .three_fourth,
  .one_full_less, .one_half_less, .one_third_less, .one_fourth_less, .one_fifth_less,
  .two_third_less, .three_fourth_less { width: 100%; margin-bottom: 50px; }
  .last { margin-right: 0 !important; margin-bottom: 0 !important; }
  .container { width: 590px; }
  .feature_section2 .twoboxes:before { right: 0; }
  .feature_section2 .twoboxes .left { width: 100%; margin-bottom: 50px; }
  .feature_section2 .twoboxes .right { float: left; width: 100%; }
  .feature_section5 li { width: 22%; }
  .feature_section5 .two_third { padding-top: 0; }
  .feature_section6 .climg img { width: 25%; }
  .page_title1.sty7 .search_area { width: 95%; }
  .page-hero .fit h1, .web-hosting .fit h1 { font-size: 32px; line-height: 32px; }
  .partner_logos_ns img { max-width: 80px; }
  .price_compare > .container { max-width: 100% !important; width: 100% !important; }
  .content_left { width: 100% !important; float: unset !important; }
  .right_sidebar { width: 100% !important; float: unset !important; }
}

@media only screen and (min-width: 480px) and (max-width: 639px) {
  .one_half, .one_third, .one_fourth, .two_third, .three_fourth, .one_fifth,
  .one_half_less, .one_third_less, .one_fourth_less, .two_third_less,
  .three_fourth_less, .one_fifth_less {
    position: relative; margin-right: 0; float: left;
  }
  .one_full, .one_half, .one_third, .one_fourth, .one_fifth, .two_third, .three_fourth,
  .one_full_less, .one_half_less, .one_third_less, .one_fourth_less, .one_fifth_less,
  .two_third_less, .three_fourth_less { width: 100%; margin-bottom: 50px; }
  .last { margin-right: 0 !important; margin-bottom: 0 !important; }
  .container { width: 440px; }
  .feature_section2 .twoboxes:before { right: 0; }
  .feature_section2 .twoboxes .left { width: 100%; margin-bottom: 50px; }
  .feature_section2 .twoboxes .right { float: left; width: 100%; }
  .feature_section5 li { width: 30%; }
  .feature_section5 .two_third { padding-top: 0; }
  .feature_section6 .climg img { width: 25%; }
  .page_title1 { margin-top: 105px; }
  .page_title1.sty7 .search_area { width: 90%; }
  .page_title1.sty7 .search_area .enter_domain_input { width: 100%; }
  .page_title1.sty7 .search_area .input_submit { margin-left: 0; margin-top: 12px; }
  .page-hero .fit h1, .web-hosting .fit h1 { font-size: 24px; line-height: 24px; }
  .partner_logos_ns img { max-width: 60px; }
  .content_left { width: 100% !important; float: unset !important; }
  .right_sidebar { width: 100% !important; float: unset !important; }
}

@media only screen and (max-width: 479px) {
  .one_half, .one_third, .one_fourth, .two_third, .three_fourth, .one_fifth,
  .one_half_less, .one_third_less, .one_fourth_less, .two_third_less,
  .three_fourth_less, .one_fifth_less {
    position: relative; margin-right: 0; float: left;
  }
  .one_full, .one_half, .one_third, .one_fourth, .one_fifth, .two_third, .three_fourth,
  .one_full_less, .one_half_less, .one_third_less, .one_fourth_less, .one_fifth_less,
  .two_third_less, .three_fourth_less { width: 100%; margin-bottom: 50px; }
  .last { margin-right: 0 !important; margin-bottom: 0 !important; }
  .container { width: 300px; }
  .feature_section2 .twoboxes:before { right: 0; }
  .feature_section2 .twoboxes .left { width: 100%; margin-bottom: 50px; }
  .feature_section2 .twoboxes .right { float: left; width: 100%; }
  .feature_section5 li { width: 45%; }
  .feature_section5 .two_third { padding-top: 0; }
  .feature_section6 .climg img { width: 50%; }
  .page_title1 { margin-top: 102px; }
  .page_title1.sty7 .search_area { width: 90%; }
  .page_title1.sty7 .search_area .enter_domain_input { width: 100%; }
  .page_title1.sty7 .search_area .input_submit { margin-left: 0; margin-top: 12px; }
  .feature_section17 .one_third { padding: 35px 40px 45px; }
  .page-hero .fit h1, .web-hosting .fit h1 { font-size: 24px; line-height: 24px; }
  .page-hero .fit h2, .web-hosting .fit h2 { font-size: 16px; line-height: 16px; }
  .partner_logos_ns img { max-width: 50px; }
  .uwh-trust-bar { flex-direction: column; }
  .uwh-trust-item { flex: 1 1 100%; border-right: none; }
  .uwh-trust-item + .uwh-trust-item { border-top: 1px solid var(--ultra-border); }
  /* tabs2 responsive handled by tabs2-mobile-fix.css */
  .price_compare .title .arrow_box { padding: 10px; }
  .price_compare .prices strong { font-size: 43px; padding: 12px; }
}

@media only screen and (max-width: 975px) { .livesupport { font-size: 30px; } .livesupporthelp { font-size: 12px; } }
@media only screen and (max-width: 860px) { .coupon { font-size: 20px; } }
@media only screen and (max-width: 670px) { .coupon { font-size: 16px; } }
@media only screen and (max-width: 540px) { .coupon { font-size: 14px; } .domain_search .search_area .enter_domain_input { width: 72%; } }
@media only screen and (max-width: 200px) { .coupon { font-size: 10px; } }
