@import  url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");
:root {
  --sky:        #2FA8CE;   /* panel blue from logo, slightly deepened */
  --cyan:       #16B8E3;   /* bright accent, the "R" letter */
  --navy:       #0A1140;   /* dark sections / buttons */
  --ink:        #101828;   /* heading text — near-black slate, not navy */
  --body-text:  #475467;   /* body copy — neutral slate gray */
  --paper:      #F5F8FA;   /* section background */
  --white:      #FFFFFF;
  --line:       #E3E8EE;   /* hairline borders */
  --slate-70:   rgba(16,24,40,.7);
  --slate-40:   rgba(16,24,40,.4);
  --sky-10:     rgba(47,168,206,.1);
  --sky-15:     rgba(47,168,206,.15);

  --display: "Poppins", sans-serif;
  --body: "Inter", sans-serif;
  --label: "Poppins", sans-serif;

  --maxw: 1180px;
  --radius: 8px;
}

.skyraw-site *, .skyraw-site *::before, .skyraw-site *::after { box-sizing:border-box; }
.skyraw-site { display:block; width:100%; overflow-x:hidden; }
.skyraw-site h1, .skyraw-site h2, .skyraw-site h3, .skyraw-site h4, .skyraw-site h5, .skyraw-site h6,
.skyraw-site p, .skyraw-site ul, .skyraw-site ol, .skyraw-site li, .skyraw-site figure {
  margin:0; padding:0; border:0; float:none; list-style:none; background:none; box-shadow:none;
}

.skyraw-site *, .skyraw-site *::before, .skyraw-site *::after { box-sizing:border-box; }
.skyraw-site {
  margin:0;
  font-family:var(--body);
  color:var(--body-text);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  line-height:1.65;
}
.skyraw-site h1, .skyraw-site h2, .skyraw-site h3, .skyraw-site h4 {
  font-family:var(--display);
  color:var(--ink);
  margin:0 0 .5em;
  line-height:1.18;
  letter-spacing:-0.01em;
}
.skyraw-site h1 { font-size:clamp(2.4rem,5vw,4rem); font-weight:700; }
.skyraw-site h2 { font-size:clamp(1.7rem,3.4vw,2.4rem); font-weight:700; }
.skyraw-site h3 { font-size:1.2rem; font-weight:600; color:var(--ink); }
.skyraw-site p { margin:0 0 1em; color:var(--body-text); }
.skyraw-site a { color:inherit; text-decoration:none; }
.skyraw-site img { max-width:100%; display:block; }
.skyraw-site ul { margin:0; padding:0; list-style:none; }
.skyraw-site button { font-family:inherit; }
.skyraw-site .eyebrow {
  font-family:var(--label);
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--sky);
  display:flex;
  align-items:center;
  gap:.6em;
  margin-bottom:.9em;
}
.skyraw-site .eyebrow::before {
  content:"";
  width:22px; height:3px;
  border-radius:2px;
  background:var(--cyan);
  display:inline-block;
}
.skyraw-site .wrap {
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 24px;
}
.skyraw-site section { padding:88px 0; }
@media (max-width:768px) {
.skyraw-site section { padding:56px 0; }
}
.skyraw-site .btn {
  display:inline-flex;
  align-items:center;
  gap:.6em;
  font-family:var(--label);
  font-size:.85rem;
  font-weight:600;
  letter-spacing:.02em;
  padding:14px 28px;
  border-radius:999px;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.skyraw-site .btn:hover { transform:translateY(-2px); }
.skyraw-site .btn-primary { background:var(--navy); color:var(--white); }
.skyraw-site .btn-primary:hover { background:#060A24; box-shadow:0 10px 24px rgba(10,17,64,.25); }
.skyraw-site .btn-accent { background:var(--cyan); color:var(--ink); }
.skyraw-site .btn-accent:hover { background:#0FA6CE; box-shadow:0 10px 24px rgba(22,184,227,.3); }
.skyraw-site .btn-outline { background:transparent; border-color:var(--navy); color:var(--navy); }
.skyraw-site .btn-outline:hover { background:var(--navy); color:var(--white); }
.skyraw-site .btn-outline-light { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.6); color:var(--white); backdrop-filter:blur(4px); }
.skyraw-site .btn-outline-light:hover { background:var(--white); color:var(--navy); }
.skyraw-site .site-header {
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.skyraw-site .nav {
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 24px;
  max-width:var(--maxw); margin:0 auto;
  flex-wrap:nowrap; gap:16px;
}
.skyraw-site .brand { display:flex; align-items:center; gap:12px; flex-shrink:0; }
.skyraw-site .brand img { height:44px; width:44px; object-fit:contain; }
.skyraw-site .brand-text { font-family:var(--display); font-weight:700; font-size:1.05rem; letter-spacing:-0.01em; line-height:1.1; color:var(--ink); }
.skyraw-site .brand-text span { display:block; font-family:var(--label); font-size:.62rem; letter-spacing:.14em; color:var(--sky); font-weight:600; text-transform:uppercase; }
.skyraw-site .nav-links { display:flex; align-items:center; gap:22px; }
.skyraw-site .nav-links > a { white-space:nowrap;
  font-family:var(--label); font-size:.85rem; font-weight:500;
  color:var(--slate-70); position:relative; padding:8px 0;
}
.skyraw-site .nav-links > a::after {
  content:""; position:absolute; left:0; bottom:0; width:0; height:2px; border-radius:2px; background:var(--cyan);
  transition:width .2s ease;
}
.skyraw-site .nav-links > a:hover, .skyraw-site .nav-links > a.active { color:var(--ink); }
.skyraw-site .nav-links > a:hover::after, .skyraw-site .nav-links > a.active::after { width:100%; }
.skyraw-site .nav-cta { display:flex; align-items:center; gap:14px; flex-shrink:0; }
.skyraw-site .nav-phone { font-family:var(--label); font-size:.85rem; font-weight:500; color:var(--ink); display:flex; align-items:center; gap:6px; white-space:nowrap; }
.skyraw-site .nav-toggle { display:none; background:none; border:none; cursor:pointer; padding:6px; }
.skyraw-site .nav-toggle span { display:block; width:24px; height:2px; background:var(--ink); margin:5px 0; }
.skyraw-site .has-submenu { position:relative; display:flex; align-items:center; gap:5px; cursor:pointer; }
.skyraw-site .has-submenu .chev { font-size:.6rem; transition:transform .2s ease; }
.skyraw-site .has-submenu:hover .chev, .skyraw-site .has-submenu.open .chev { transform:rotate(180deg); }
.skyraw-site .submenu {
  list-style:none; margin:0; padding:10px; position:absolute; top:calc(100% + 14px); left:50%; transform:translateX(-50%);
  background:var(--white); border:1px solid var(--line); border-radius:12px; box-shadow:0 18px 40px rgba(16,24,40,.14);
  min-width:260px; opacity:0; visibility:hidden; transition:opacity .18s ease, transform .18s ease;
  transform:translateX(-50%) translateY(6px);
  z-index:50;
}
.skyraw-site .has-submenu:hover .submenu, .skyraw-site .has-submenu.open .submenu { opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }
.skyraw-site .submenu li a {
  display:block; padding:10px 14px; border-radius:8px; font-family:var(--body); font-size:.88rem; font-weight:500; color:var(--ink);
}
.skyraw-site .submenu li a:hover { background:var(--paper); color:var(--sky); }
.skyraw-site .submenu li a .sub-desc { display:block; font-size:.76rem; font-weight:400; color:var(--slate-40); margin-top:2px; }
@media (max-width:1180px) {
.skyraw-site .nav-links { gap:16px; }
.skyraw-site .nav-links > a { font-size:.8rem; }
}
@media (max-width:1040px) {
.skyraw-site .nav-phone { display:none; }
}
@media (max-width:900px) {
.skyraw-site .nav-links {
    position:fixed; inset:70px 0 0 0; background:var(--white);
    flex-direction:column; align-items:flex-start; justify-content:flex-start; padding:36px 24px; gap:8px;
    transform:translateX(100%); transition:transform .3s ease; overflow-y:auto;
  }
.skyraw-site .nav-links.open { transform:translateX(0); }
.skyraw-site .nav-toggle { display:block; }
.skyraw-site .nav-phone { display:none; }
.skyraw-site .has-submenu { flex-direction:column; align-items:flex-start; width:100%; }
.skyraw-site .submenu {
    position:static; transform:none; opacity:1; visibility:visible; box-shadow:none; border:none;
    max-height:0; overflow:hidden; padding:0 0 0 14px; min-width:0; width:100%; transition:max-height .25s ease;
  }
.skyraw-site .has-submenu.open .submenu { max-height:400px; padding:8px 0 4px 14px; }
.skyraw-site .has-submenu .chev { margin-left:auto; }
}
.skyraw-site .site-footer { background:var(--navy); color:rgba(255,255,255,.7); padding:64px 0 24px; }
.skyraw-site .footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; }
.skyraw-site .footer-grid h4 { color:var(--white); font-size:.8rem; letter-spacing:.08em; text-transform:uppercase; font-family:var(--label); margin-bottom:1.1em; font-weight:600;}
.skyraw-site .footer-grid a { color:rgba(255,255,255,.65); display:block; margin-bottom:.7em; font-size:.92rem; }
.skyraw-site .footer-grid a:hover { color:var(--cyan); }
.skyraw-site .footer-brand { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.skyraw-site .footer-brand img { height:40px; width:40px; }
.skyraw-site .footer-brand span { font-family:var(--display); font-weight:700; color:var(--white); font-size:1.05rem; }
.skyraw-site .footer-bottom {
  margin-top:48px; padding-top:24px; border-top:1px solid rgba(255,255,255,.12);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:.8rem; font-family:var(--label); color:rgba(255,255,255,.4);
}
@media (max-width:800px) {
.skyraw-site .footer-grid { grid-template-columns:1fr 1fr; }
}
.skyraw-site .page-hero {
  background:var(--navy);
  color:var(--white);
  padding:64px 0 56px;
  position:relative;
  overflow:hidden;
}
.skyraw-site .page-hero::after {
  content:""; position:absolute; right:-80px; top:-80px; width:320px; height:320px;
  border-radius:50%; background:radial-gradient(circle,var(--sky-15),transparent 70%);
}
.skyraw-site .page-hero .eyebrow { color:var(--cyan); }
.skyraw-site .page-hero h1 { color:var(--white); margin-bottom:.3em; }
.skyraw-site .page-hero p { color:rgba(255,255,255,.72); max-width:600px; font-size:1.05rem; }
.skyraw-site .crumbs { font-family:var(--label); font-size:.8rem; color:rgba(255,255,255,.45); letter-spacing:.02em; margin-bottom:1.2em; }
.skyraw-site .crumbs a { color:rgba(255,255,255,.7); }
.skyraw-site .crumbs a:hover { color:var(--cyan); }
.skyraw-site .media-hero {
  position:relative; min-height:640px; display:flex; align-items:center;
  color:var(--white); overflow:hidden; background:var(--navy);
}
.skyraw-site .media-hero .hero-bg {
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0;
}
.skyraw-site .media-hero .hero-scrim {
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(6,10,36,.75) 0%, rgba(6,10,36,.55) 45%, rgba(6,10,36,.88) 100%);
}
.skyraw-site .media-hero .wrap { position:relative; z-index:2; padding-top:64px; padding-bottom:64px; }
.skyraw-site .media-hero h1 { color:var(--white); max-width:820px; }
.skyraw-site .media-hero p.lead { color:rgba(255,255,255,.85); max-width:600px; font-size:1.1rem; }
.skyraw-site .hero-customizer {
  position:absolute; z-index:3; top:20px; right:20px;
  background:rgba(255,255,255,.96); border-radius:12px; padding:14px;
  box-shadow:0 12px 30px rgba(16,24,40,.25); width:260px; font-family:var(--body);
  max-height:calc(100% - 40px); overflow-y:auto;
}
.skyraw-site .hero-customizer.collapsed .hc-body { display:none; }
.skyraw-site .hc-toggle {
  display:flex; align-items:center; justify-content:space-between; width:100%;
  background:none; border:none; cursor:pointer; font-family:var(--label); font-weight:600;
  font-size:.82rem; color:var(--ink); padding:0 0 4px;
}
.skyraw-site .hero-customizer.collapsed .hc-toggle { padding:0; }
.skyraw-site .hc-body { margin-top:12px; display:flex; flex-direction:column; gap:10px; }
.skyraw-site .hc-body label { font-family:var(--label); font-size:.7rem; font-weight:600; text-transform:uppercase; letter-spacing:.04em; color:var(--slate-40); display:block; margin-bottom:4px; }
.skyraw-site .hc-body input[type="file"] { font-size:.76rem; width:100%; }
.skyraw-site .hc-body input[type="text"], .skyraw-site .hc-body textarea {
  width:100%; padding:8px 10px; border:1px solid var(--line); border-radius:6px; font-family:var(--body); font-size:.82rem; color:var(--ink);
}
.skyraw-site .hc-body textarea { resize:vertical; min-height:54px; }
.skyraw-site .hc-row { display:flex; gap:6px; }
.skyraw-site .hc-row button {
  flex:1; font-family:var(--label); font-size:.72rem; font-weight:600; padding:8px; border-radius:6px; border:1px solid var(--line);
  background:var(--paper); color:var(--ink); cursor:pointer;
}
.skyraw-site .hc-row button.primary { background:var(--navy); color:#fff; border-color:var(--navy); }
.skyraw-site .hc-hint { font-size:.7rem; color:var(--slate-40); line-height:1.4; }
@media (max-width:700px) {
.skyraw-site .hero-customizer { position:static; width:100%; margin:16px auto 0; box-shadow:none; border:1px solid var(--line); }
.skyraw-site .media-hero .wrap { padding-top:32px; }
}
.skyraw-site .grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.skyraw-site .grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.skyraw-site .grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
@media (max-width:900px) {
.skyraw-site .grid-2 { grid-template-columns:1fr; }
.skyraw-site .grid-3 { grid-template-columns:1fr 1fr; }
.skyraw-site .grid-4 { grid-template-columns:1fr 1fr; }
}
@media (max-width:560px) {
.skyraw-site .grid-3 { grid-template-columns:1fr; }
.skyraw-site .grid-4 { grid-template-columns:1fr; }
}
.skyraw-site .card {
  background:var(--white); border:1px solid var(--line); border-radius:14px;
  padding:32px 28px; transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.skyraw-site .card:hover { border-color:var(--sky); transform:translateY(-3px); box-shadow:0 16px 34px rgba(16,24,40,.08); }
.skyraw-site .card .num { font-family:var(--label); font-size:.76rem; font-weight:600; color:var(--cyan); letter-spacing:.04em; }
.skyraw-site .section-alt { background:var(--paper); }
.skyraw-site .section-navy { background:var(--navy); color:var(--white); }
.skyraw-site .section-navy h2, .skyraw-site .section-navy h3 { color:var(--white); }
.skyraw-site .section-navy p { color:rgba(255,255,255,.7); }
.skyraw-site .tag {
  display:inline-block; font-family:var(--label); font-size:.72rem; font-weight:600; letter-spacing:.03em; text-transform:uppercase;
  background:var(--sky-10); color:var(--sky); padding:6px 12px; border-radius:999px; margin:0 6px 6px 0;
}
.skyraw-site .stat { text-align:left; }
.skyraw-site .stat .n { font-family:var(--display); font-size:2.6rem; font-weight:700; color:var(--ink); line-height:1; }
.skyraw-site .stat .l { font-family:var(--label); font-size:.76rem; font-weight:500; letter-spacing:.02em; text-transform:uppercase; color:var(--slate-40); margin-top:6px; }
.skyraw-site .form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.skyraw-site .form-grid .full { grid-column:1/-1; }
@media (max-width:700px) {
.skyraw-site .form-grid { grid-template-columns:1fr; }
}
.skyraw-site label { font-family:var(--label); font-size:.76rem; font-weight:600; letter-spacing:.02em; text-transform:uppercase; color:var(--slate-70); display:block; margin-bottom:6px; }
.skyraw-site input, .skyraw-site select, .skyraw-site textarea {
  width:100%; padding:13px 14px; border:1.5px solid var(--line); border-radius:8px;
  font-family:var(--body); font-size:.95rem; color:var(--ink); background:var(--white);
}
.skyraw-site input:focus, .skyraw-site select:focus, .skyraw-site textarea:focus { outline:none; border-color:var(--sky); }
.skyraw-site textarea { resize:vertical; min-height:110px; }
.skyraw-site :focus-visible { outline:2px solid var(--cyan); outline-offset:2px; }
.skyraw-site .faq-item { border-bottom:1px solid var(--line); padding:22px 0; }
.skyraw-site .faq-q {
  display:flex; justify-content:space-between; align-items:center; cursor:pointer; gap:16px;
  font-family:var(--display); font-weight:600; font-size:1.05rem; color:var(--ink);
}
.skyraw-site .faq-q .plus { font-family:var(--label); font-size:1.3rem; color:var(--sky); transition:transform .2s ease; flex-shrink:0; }
.skyraw-site .faq-item.open .plus { transform:rotate(45deg); }
.skyraw-site .faq-a { max-height:0; overflow:hidden; transition:max-height .25s ease; }
.skyraw-site .faq-item.open .faq-a { max-height:400px; }
.skyraw-site .faq-a p { padding-top:14px; margin-bottom:0; }
.skyraw-site .flightpath-wrap { position:relative; }
.skyraw-site .flightpath-wrap svg { width:100%; height:auto; display:block; }
.skyraw-site .fp-node circle { fill:var(--white); }
.skyraw-site .fp-node circle.core { fill:var(--navy); }
.skyraw-site .fp-line { fill:none; stroke:var(--cyan); stroke-width:2.5; opacity:.95; }
.skyraw-site .fp-label { font-family:var(--label); font-weight:600; font-size:11px; fill:var(--white); letter-spacing:.03em; }
@media (prefers-reduced-motion:no-preference) {
.skyraw-site .fp-draw { stroke-dasharray:1200; stroke-dashoffset:1200; animation:draw 2.6s ease forwards .3s; }
@keyframes  draw { to{ stroke-dashoffset:0; } }
.skyraw-site .fade-up { opacity:0; transform:translateY(16px); animation:fadeUp .6s ease forwards; }
@keyframes  fadeUp { to{ opacity:1; transform:none; } }
}
.skyraw-site .float-actions { position:fixed; right:20px; bottom:20px; z-index:200; display:flex; flex-direction:column; gap:12px; align-items:flex-end; }
.skyraw-site .float-btn {
  display:flex; align-items:center; gap:10px; background:var(--navy); color:var(--white);
  padding:13px 18px; border-radius:30px; font-family:var(--label); font-size:.8rem; font-weight:600;
  box-shadow:0 8px 24px rgba(10,17,64,.25); border:none; cursor:pointer;
}
.skyraw-site .float-btn.call { background:var(--cyan); color:var(--ink); }
@media (max-width:700px) {
.skyraw-site .float-actions { right:14px; bottom:14px; }
.skyraw-site .float-btn span.lbl { display:none; }
.skyraw-site .float-btn { padding:14px; border-radius:50%; }
}/* Sky Raw Drones — Booking Widget styles. Namespaced with .srb- to avoid
   colliding with theme classes. Loads Google Fonts used by the main
   skyrawdrones.com brand system; falls back gracefully if blocked. */
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@600;700&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@500&display=swap');

.srb-overlay{position:fixed;inset:0;background:rgba(6,10,36,.55);z-index:99999;display:none;align-items:center;justify-content:center;padding:20px;}
.srb-overlay.open{display:flex;}
.srb-modal{background:#fff;max-width:560px;width:100%;max-height:92vh;overflow-y:auto;border-radius:6px;padding:34px 30px;position:relative;font-family:'Inter',sans-serif;color:#0A1140;box-sizing:border-box;}
.srb-modal *{box-sizing:border-box;}
.srb-close{position:absolute;top:16px;right:16px;background:none;border:none;font-size:22px;line-height:1;cursor:pointer;color:#0A1140;}
.srb-eyebrow{font-family:'IBM Plex Mono',monospace;font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;color:#3FB6D9;margin-bottom:8px;}
.srb-title{font-family:'Chakra Petch',sans-serif;font-weight:700;text-transform:uppercase;font-size:1.5rem;margin:0 0 6px;}
.srb-sub{color:rgba(10,17,64,.65);font-size:.92rem;margin-bottom:22px;}
.srb-form{display:grid;gap:14px;}
.srb-row2{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.srb-label{font-family:'IBM Plex Mono',monospace;font-size:.68rem;letter-spacing:.06em;text-transform:uppercase;color:rgba(10,17,64,.7);display:block;margin-bottom:6px;}
.srb-form input,.srb-form select,.srb-form textarea{width:100%;padding:11px 12px;border:1.5px solid #DCE7EC;border-radius:4px;font-family:'Inter',sans-serif;font-size:.92rem;color:#0A1140;}
.srb-form input:focus,.srb-form select:focus,.srb-form textarea:focus{outline:none;border-color:#3FB6D9;}
.srb-submit{margin-top:6px;background:#0A1140;color:#fff;border:none;padding:14px;border-radius:4px;font-family:'IBM Plex Mono',monospace;font-size:.8rem;letter-spacing:.06em;text-transform:uppercase;cursor:pointer;text-align:center;}
.srb-submit:disabled{opacity:.6;cursor:default;}
.srb-submit:hover:not(:disabled){background:#060A24;}
.srb-success{display:none;text-align:center;padding:20px 0;}
.srb-success.show{display:block;}
.srb-success .ok{width:52px;height:52px;border-radius:50%;background:#22C6EF;color:#060A24;display:flex;align-items:center;justify-content:center;margin:0 auto 16px;font-size:26px;font-weight:700;}
.srb-launcher{position:fixed;right:20px;bottom:20px;z-index:99998;background:#3FB6D9;color:#060A24;border:none;padding:14px 20px;border-radius:30px;font-family:'IBM Plex Mono',monospace;font-size:.78rem;letter-spacing:.04em;text-transform:uppercase;box-shadow:0 8px 24px rgba(10,17,64,.25);cursor:pointer;display:flex;align-items:center;gap:8px;}

/* default look for the [skyraw_booking_button] shortcode button, in case
   the theme doesn't style plain <button> elements */
button.skyraw-btn{
  display:inline-flex;align-items:center;gap:.5em;
  font-family:'IBM Plex Mono',monospace;font-size:.8rem;letter-spacing:.05em;text-transform:uppercase;
  background:#0A1140;color:#fff;border:none;padding:13px 24px;border-radius:4px;cursor:pointer;
}
button.skyraw-btn:hover{ background:#060A24; }

/* the [skyraw_booking_form] inline container gets light card framing by
   default so it doesn't look unstyled dropped into a page */
.skyraw-booking-inline{
  border:1px solid #DCE7EC;border-radius:6px;padding:28px;background:#F4F9FB;max-width:560px;
}

@media(max-width:700px){
  .srb-launcher{padding:14px;border-radius:50%;}
  .srb-launcher span{display:none;}
  .srb-row2{grid-template-columns:1fr;}
}
