:root {
  --container: 1340px;

  --white: #ffffff;
  --muted: #cfd8ff;
  --borderW: rgba(255,255,255,0.20);
  --chipBg: rgba(255,255,255,0.08);
  --shadowCapsule: 14px 14px 52px rgba(0,0,0,0.35);

  --gap-lg: clamp(16px, 3vw, 28px);
  --h1-size: 40px;
  --h1-size-sm: 28px;

  --sr-card-radius: 24px;
  --sr-card-gradient: linear-gradient(180deg,#FBFBFD 0%,#F8FAFF 100%);
  --sr-card-shadow: 14px 22px 52px rgba(0,0,0,0.20);
  --sr-card-padding: clamp(16px, 2.4vw, 28px);
  --sr-card-mb: clamp(40px, 40px, 40px);

  --sr-text: #434343;
  --sr-blue: #2563EB;
  --sr-tab-bg: #FFFFFF;
  --sr-tab-border: #C8C8C8;
  --sr-tab-active-bg: #E7EFFF;

  --srw-title-size: 20px;
  --srw-title-color: #2045A5;
  --srw-title-border: #CCDAF0;
  --srw-gap: 28px;
}

/* =========================
   Base reset (scoped)
   ========================= */
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100dvh;
  font-family: "Product Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  color: var(--white);
  background-image: url(https://cdn.samco.in/images/samco3.0/bg-img.webp) !important;
    background-position: top left;
    background-repeat: no-repeat;
    padding: 120px 0px 0px 0px;
}
 a { color: var(--white); text-decoration: none; }
a:focus-visible { outline: 2px solid #9fb5ff; outline-offset: 2px; border-radius: 6px; }

/* =========================
   Layout helpers
   ========================= */
.sr-container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}
@media (max-width: 640px){
.sr-container { width: min(100% - 22px, var(--container)); }
}

/* =========================
   Breadcrumb
   ========================= */
.sr-breadcrumb {
  padding-top: clamp(16px, 3vw, 24px);
  font-size: 14px;
  color: var(--muted);
}
.sr-breadcrumb__list {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
  list-style: none; margin: 0; padding: 0;
}
.sr-breadcrumb__item a {
  opacity: 0.95;
}
.sr-breadcrumb__sep {
  opacity: 0.6;
}

/* =========================
   Title row (H1 + Capsule)
   ========================= */
.sr-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
}
.sr-titlebar__h1 {
  margin: 0;
  font-size: var(--h1-size);
  line-height: 1.15;
  font-weight: 700;
  color: var(--white);
}
/* Capsule (SEBI Registered) */
.sr-capsule {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--chipBg);
  border: 1px solid var(--borderW);
  box-shadow: var(--shadowCapsule);
  color: var(--white);
  white-space: nowrap;
}
.sr-capsule svg {
  flex: 0 0 auto;
  display: block;
}
 .sr-capsule span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2px;
}

/* =========================
   Intro paragraph
   ========================= */
.sr-intro {
  margin-top: clamp(16px, 3vw, 24px);
}
.sr-intro p {
  margin: 0;
  font-size: 18px;
  margin-bottom:30px;
  line-height: 1.55;
  color: var(--white);
  max-width: 100%;
}

/* =========================
   Responsiveness
   ========================= */
@media (max-width: 860px) {
  .sr-titlebar {
    align-items: flex-start;
    flex-direction: column;
  }
  .sr-capsule {
    /* keep it tidy on mobile */
    transform: translateY(2px);
  }
}
@media (max-width: 520px) {
  .sr-titlebar__h1 {
    font-size: var(--h1-size-sm);
  }
  .sr-intro p {
    font-size: 16px;
  }
}

/* ========= Section: .samco_research_overview ========= */
.samco_research_overview { margin-bottom: var(--sr-card-mb); }
.samco_research_overview .sro-wrap{
  background: var(--sr-card-gradient);
  border-radius: var(--sr-card-radius);
  box-shadow: var(--sr-card-shadow);
  padding: var(--sr-card-padding);
}

/* Tabs row (h-scroll on mobile) */
.samco_research_overview .sro-tabs{
  display: flex; gap: 18px; flex-wrap: nowrap;
  padding: 5px 0 clamp(14px, 2vw, 18px);
  overflow-x: auto; overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}
.samco_research_overview .sro-tabs::-webkit-scrollbar { height: 6px; }
.samco_research_overview .sro-tabs::-webkit-scrollbar-thumb { background: #cfd8e3; border-radius: 999px; }
.samco_research_overview .sro-tabs::-webkit-scrollbar-track { background: transparent; }

.samco_research_overview .sro-tab{
  appearance: none; border: 1px solid var(--sr-tab-border); background: var(--sr-tab-bg);
  color: var(--sr-text);
  padding: 10px 16px; border-radius: 50px; font: 400 16px/1.1 "Product Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap; flex: 0 0 auto;
}
.samco_research_overview .sro-tab:hover{ transform: translateY(-1px); }
.samco_research_overview .sro-tab:active{ transform: translateY(0); }

/* Active tab (only via .is-active; removed the old default-overview rule) */
.samco_research_overview .sro-tab.is-active{
  border-color: var(--sr-blue);
  background: var(--sr-tab-active-bg);
  color: var(--sr-blue);
  font-weight:600;
  box-shadow: 0 6px 20px rgba(37,99,235,0.15);
}

/* Panels */
.samco_research_overview .sro-panels { color: var(--sr-text); }
.samco_research_overview .sro-panel {
  display: none;
  border-radius: calc(var(--sr-card-radius) - 8px);
  /* padding: clamp(10px, 1.8vw, 16px); */
  padding-bottom:10px;
  background: transparent;
  font: 400 16px/1.6 "Product Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.samco_research_overview .sro-panel.is-active { display: block; }
.samco_research_overview .sro-panel p { margin: 0; font-size: clamp(15px, 1.2vw, 16px); }

/* Responsive tab size */
@media (max-width: 640px){
  .samco_research_overview .sro-tab{ font-size: 16px; padding: 9px 14px; }
}
@media (max-width: 420px){
  .samco_research_overview .sro-tab{ font-size: 14px; padding: 8px 12px; }
}

/* ===== widets section ===== */
.samco_research_widgets .srw-row{
    display:flex; flex-wrap:wrap; gap: var(--srw-gap);
}

/* base card (uses root tokens you already defined earlier) */
.samco_research_widgets .srw-card{
    background: var(--sr-card-gradient);
    border-radius: var(--sr-card-radius);
    box-shadow: var(--sr-card-shadow);
    padding: var(--sr-card-padding);
    margin-bottom: var(--sr-card-mb);
    color:#434343;
}

/* layout widths */
.samco_research_widgets .srw-card--kpi   { flex: 0 0 255px; max-width:255px; }
.samco_research_widgets .srw-card--stats { flex: 0 0 296px; max-width:296px; }
.samco_research_widgets .srw-card--extra { flex: 1 1 auto; min-width: 280px; }

/* card titles */
.samco_research_widgets .srw-title{
    font-size: var(--srw-title-size);
    color: var(--srw-title-color);
    font-weight: 500;
    margin: 0 0 22px 0;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--srw-title-border);
}

/* donut block */
.samco_research_widgets .srw-donut{
    width: 140px; height: 140px;
    margin: 8px auto 14px;
    position: relative;
}
.samco_research_widgets .srw-donut svg{
    width: 100%; height: 100%; display:block;
}
.samco_research_widgets .srw-donut__track{
    stroke: #E6ECF7; stroke-width: 12; fill: none;
    opacity: .9;
}
.samco_research_widgets .srw-donut__bgArc{
    stroke: #DDE6FA; stroke-width: 12; fill:none; opacity:.5;
    stroke-linecap: round;
}
.samco_research_widgets .srw-donut__bar{
    stroke: #16A34A; stroke-width: 12; fill: none;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset .6s ease;
}
.samco_research_widgets .srw-donut__pct{
    position:absolute; inset:0; display:grid; place-items:center;
    font-weight: 700; font-size: 28px; color:#16A34A;
}

.samco_research_widgets .srw-note{
    margin: 0; text-align:center; font-size:16px; line-height:1.45;
    color:#52658D; font-weight:500;
}

/* stats list */
.samco_research_widgets .srw-stat{
    display:flex; align-items:center; gap:12px;
    border:1px solid #B3CAED; background:#FFFFFF; border-radius:20px;
    padding:14px 14px; margin-bottom:20px;
}
.samco_research_widgets .srw-card--stats .srw-stat:last-child{margin-bottom: 0;}
.samco_research_widgets .srw-stat__icon{ flex:0 0 30px; width:30px; height:30px; display:grid; place-items:center; }
.samco_research_widgets .srw-stat__label{
    font-weight:500; font-size:18px; color:#425884; line-height:1.2;
}
.samco_research_widgets .srw-stat__value{
    font-weight:500; font-size:20px; color:#16A34A; line-height:1.15; margin-top:6px;
}

.samco_research_widgets .srw-card--extra .srw-extra__head{
    display:flex; align-items:center; justify-content:space-between; gap:12px;
    padding-bottom:12px; margin-bottom:22px; border-bottom:1px solid #CCDAF0;
}
.samco_research_widgets .srw-card--extra .srw-title{
    /* keep the same title look (but no duplicate border here) */
    margin:0; padding:0; border:0;
    font-size: var(--srw-title-size);
    color: #2045A5;
    font-weight:500;
}
.samco_research_widgets .srw-card--extra .srw-extra__chip{
    display:inline-flex; align-items:center; justify-content:center;
    min-height:26px; padding:4px 16px;
    border-radius:50px; background:#DCE7FF;
    color:#2045A5; font-size:14px; font-weight:400; text-align:center;
    white-space:nowrap;
}

/* Grid of 4 mini-cards */
.samco_research_widgets .srw-card--extra .srw-multi__grid{
    display:grid; grid-template-columns:repeat(2, minmax(0,1fr));
    gap:16px; /* space between the 4 cards */
}

/* Mini-card */
.samco_research_widgets .srw-card--extra .srw-multi__item{
    display:flex; align-items:center; justify-content:space-between; gap:12px;
    background:#FFFFFF; border:1px solid #CCDAF0; border-radius:20px;
    padding:16px 14px;
}

/* Left block: logo + symbol */
.samco_research_widgets .srw-card--extra .srw-multi__left{
    display:flex; align-items:center; gap:12px; min-width:0;
}
.samco_research_widgets .srw-card--extra .srw-multi__logo{
    width:50px; height:50px; border-radius:50%; overflow:hidden; flex:0 0 auto;
    background:#F0F4FF; display:grid; place-items:center;
    border:1px solid #CCDAF0;
}
.samco_research_widgets .srw-card--extra .srw-multi__logo img{
    width:100%; height:100%; object-fit:cover; display:block;
}
.samco_research_widgets .srw-card--extra .srw-multi__name{
    font-size:16px; font-weight:500; color:#545F77; line-height:1.1;
    overflow-wrap:anywhere; /* allows PNBHOUSING to wrap like screenshot */
}

/* Right block: % and days */
.samco_research_widgets .srw-card--extra .srw-multi__metrics{
    margin-left:auto; text-align:right; display:flex; flex-direction:column; align-items:flex-end; gap:2px;
}
.samco_research_widgets .srw-card--extra .srw-multi__gain{
    font-size:20px; font-weight:600; color:#16A34A; line-height:1.1;
}
.samco_research_widgets .srw-card--extra .srw-multi__days{
    font-size:16px; font-weight:500; color:#545F77; line-height:1.9;
}

/* responsive */
@media (max-width: 1100px){
    .samco_research_widgets .srw-card--kpi   { flex: 0 0 240px; max-width:240px; }
    .samco_research_widgets .srw-card--stats { flex: 0 0 280px; max-width:280px; }
}
@media (max-width: 900px){
    .samco_research_widgets .srw-card--kpi,
    .samco_research_widgets .srw-card--stats,
    .samco_research_widgets .srw-card--extra{ flex: 1 1 100%; max-width: none; }
    .samco_research_widgets .srw-donut{ width: 150px; height:150px; }
}
@media (max-width:700px){
    .samco_research_widgets .srw-card--extra .srw-multi__grid{ grid-template-columns:1fr; }
}

/* live trade recommendations */
/* ========== Wrapper (uses your global tokens) ========== */
.samco_research_live_recomm{margin-bottom: var(--sr-card-mb);}
.samco_research_live_recomm .srlr-wrap{
background: var(--sr-card-gradient);
border-radius: var(--sr-card-radius);
box-shadow: var(--sr-card-shadow);
padding: var(--sr-card-padding);
}

/* ========== Header row ========== */
.samco_research_live_recomm .srlr-head{
display:flex; align-items:center; justify-content:space-between; gap:12px;
margin: 0 0 22px 0;
border-bottom: 1px solid var(--srw-title-border);
padding-bottom: 14px;
}
.samco_research_live_recomm .srlr-head__left{
display:flex; align-items:center; gap:10px;
}
.samco_research_live_recomm .srlr-live-dot{
width:13px; height:13px; border-radius:50%; background:#16A34A;
box-shadow:0 0 0 5px rgba(22,163,74,.15);
animation: srlr-pulse 1.4s ease-in-out infinite;
flex:0 0 auto;
}
.samco_research_live_recomm .srlr-title{
font-size: var(--srw-title-size);
color: #2045a5;
font-weight: 500;
margin: 0 0 22px 0; /* visual spacing before we added bottom rule */
margin-bottom: 0;   /* neutralize because row has border already */
}

.samco_research_live_recomm .srlr-chip{
display:inline-flex; align-items:center; gap:8px;
border:1px solid #16A34A; background:#fff; color:#16A34A;
padding:6px 12px; border-radius:50px; font-size:14px; font-weight:500;
white-space:nowrap;
}
.samco_research_live_recomm .srlr-chip .dot{
width:10px; height:10px; border-radius:50%; background:#16A34A;
box-shadow:0 0 0 4px rgba(22,163,74,.12);
animation: srlr-pulse 1.4s ease-in-out infinite;
flex:0 0 auto;
}
@keyframes srlr-pulse{
0%{ box-shadow:0 0 0 4px rgba(22,163,74,.12); transform:scale(1); }
50%{ box-shadow:0 0 0 6px rgba(22,163,74,.08); transform:scale(1.02); }
100%{ box-shadow:0 0 0 4px rgba(22,163,74,.12); transform:scale(1); }
}

/* ========== Carousel layout ========== */
.samco_research_live_recomm .srlr-carousel{
position:relative;
}
.samco_research_live_recomm .srlr-viewport{
overflow:hidden;
/* dynamic sizing vars (JS updates --per and --gap) */
--per: 4;                 /* cards visible (desktop default) */
--gap: 16px;
--card-h: 210px;
padding:10px 0px;
}
.samco_research_live_recomm .srlr-track{
display:flex; gap: 35px;
will-change: transform;
transition: transform .42s ease;
}

/* Arrows */
.samco_research_live_recomm .srlr-arrow{
position:absolute; top:50%; transform:translateY(-50%);
z-index:5;
width:36px; height:36px; border-radius:50%;
border:1px solid #C9D7F6; background:#fff;
display:grid; place-items:center; cursor:pointer;
box-shadow:0 6px 18px rgba(20,41,73,0.12);
}
.samco_research_live_recomm .srlr-arrow--left{ left:-10px; }
.samco_research_live_recomm .srlr-arrow--right{ right:-10px; }
.samrecomm-inthenews__arrow[disabled],
.samrecomm-inthenews__arrow.is-disabled{ opacity:.35; pointer-events:none; }
.samco_research_live_recomm .srlr-arrow svg{ width:18px; height:18px; }

/* Bullets (as given) */
#news-bullets{
display:flex;
justify-content:center;
align-items:center;
gap:8px;
margin-top:12px;
}
#news-bullets .samrecomm-inthenews__bullet{
appearance:none;
border:0;
width:8px;
height:8px;
border-radius:999px;
background:rgba(32,70,165,0.35);
opacity:.9;
transition:width .25s ease, transform .25s ease, background-color .25s ease, opacity .25s ease;
padding:0;
}
#news-bullets .samrecomm-inthenews__bullet.active{
width:20px;
background:#2046A5;
opacity:1;
}
#news-bullets .samrecomm-inthenews__bullet:focus-visible{
outline:2px solid #2046A5;
outline-offset:2px;
box-shadow:0 0 0 2px rgba(32,70,165,0.15);
}

/* ========== Card visuals (locked card CSS you provided) ========== */
.samrecomm-rcards__card{
flex: 0 0 280px;
height: 320px;
background:#FBFBFD;
border:1px solid #B3CAED;
border-radius:30px;
box-shadow:0 4px 12px rgba(0,53,128,0.11);
padding:16px 20px;
display:flex;
flex-direction:column;
justify-content:space-between;
overflow:hidden;
position: relative;
transform-style: preserve-3d;
transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
will-change: transform;
}
/* .samrecomm-rcards__card:hover{
transform: perspective(900px) translateY(-4px) scale(1.015);
box-shadow: 0 14px 40px rgba(20,41,73,0.18);
} */
.samrecomm-rcards__glare{
position: absolute; top:-20%; left:-20%; width:140%; height:140%;
pointer-events:none; opacity:0; transition:opacity .25s ease; mix-blend-mode:screen; transform: translateZ(60px);
background: radial-gradient(circle at 50% 50%,rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.00) 60%);
z-index:1;
}
.samrecomm-rcards .samrecomm-rcards__lock .samrecomm-rcards__lock {
    z-index: 3;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(244, 246, 255, 1) 100%);
    border: 1px solid rgba(67, 67, 67, 0.08);
    border-radius: 24px;
    /* box-shadow: 0 8px 20px rgba(20, 41, 73, 0.10); */
    backdrop-filter: none;
}
.samrecomm-rcards__lock{
    z-index: 3;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(244, 246, 255, 1) 100%);
    border: 1px solid rgba(67, 67, 67, 0.08);
    border-radius: 24px;
    /* box-shadow: 0 8px 20px rgba(20, 41, 73, 0.10); */
    backdrop-filter: none;
}
.samrecomm-rcards__card:hover .samrecomm-rcards__glare{ opacity:1; }
@media (prefers-reduced-motion: reduce){
.samrecomm-rcards__card{ transition: box-shadow .2s ease; }
.samrecomm-rcards__card:hover{ transform:none; box-shadow:0 10px 28px rgba(20,41,73,0.16); }
}

.samrecomm-rcards__head{
display:grid; grid-template-columns:48px 1fr; grid-auto-rows:min-content;
gap:0 10px; align-items:self-start; position:relative; min-height:64px;
}
.samrecomm-rcards__logo{ width:48px;height:48px;border-radius:50%;overflow:hidden;display:inline-block; }
.samrecomm-rcards__logo img{ width:100%;height:100%;object-fit:cover;display:block; }
.samrecomm-rcards__topline{ display:flex; align-items:baseline; gap:4px; margin-top:2px; }
.samrecomm-rcards__badge{
font-size:12px; font-weight:600; letter-spacing:.3px; padding:4px 8px; border-radius:999px; line-height:1;
background:#E6F7EB; color:#0A7C2D; border:1px solid #BFE8C7;
}
.samrecomm-rcards__symbol{ font-weight:700; color:#434343; text-transform:uppercase; font-size:18px; letter-spacing:.5px; line-height:1.05; }
.samrecomm-rcards__name{ grid-column:2/-1; margin-top:-16px; color:#85869F; font-size:14px; font-weight:500; line-height:1.1; }

/* Lock overlay */
.samrecomm-rcards__card--locked .samrecomm-rcards__head::before{
content:"";
position:absolute; inset: -6px -6px 0 -6px; height:76px;
backdrop-filter: blur(30px);
background: rgba(255,255,255,0.65);
border-radius:24px;
z-index:2;
}
.samrecomm-rcards__lock{
position:absolute; inset:-6px -6px 0 -6px; height:76px; display:flex; align-items:center; gap:18px;
padding:10px 14px; z-index:3;
}
.samrecomm-rcards__lock-ico{
width:48px; height:48px; border-radius:50%; display:grid; place-items:center;
background: radial-gradient(60% 60% at 50% 50%, #FFFFFF 0%, #F4F6FF 100%);
box-shadow: 0 8px 24px rgba(129,140,248,0.35);
flex:0 0 48px; border: 1px solid #CCCCCC;
}
.samrecomm-rcards__lock-ico img{ width:26px; height:26px; display:block; }
.samrecomm-rcards__lock-text{ font-weight:400; font-size:18px; line-height:1.2; color:#4B4B4B; }
.samrecomm-rcards__lock-sub{ display:none; font-weight:700; font-size:12px; color:#64748B; margin-top:2px; }

.samrecomm-rcards__rows{ margin-top:6px; display:grid; gap:10px; }
.samrecomm-rcards__row{ display:flex; align-items:center; justify-content:space-between; font-size:15px; }
.samrecomm-rcards__row .lbl{ color:#6B6B6B; font-weight:400; font-size:16px; }
.samrecomm-rcards__row .val{ color:#434343; font-weight:700; font-size:16px; }
.samrecomm-rcards__tp{
  margin-top:6px; border:1px solid #64B4AA; background:#D6F4EF; border-radius:12px;
  padding:12px 14px; display:flex; align-items:center; justify-content:space-between;
  font-weight:500; font-size:16px; color:#0F766E;
  }
  .samrecomm-rcards__pct{ color:#0F766E; font-size:18px; font-weight:600; }

  .samrecomm-rcards__loss{
    margin-top:6px; border:1px solid #FFA1A1; background:#FFDEDE; border-radius:12px;
    padding:12px 14px; display:flex; align-items:center; justify-content:space-between;
    font-weight:500; font-size:16px; color:#DE4646;
    }
    .samrecomm-rcards__sploss{ color:#DE4646; font-size:18px; font-weight:600; }

  
.samrecomm-rcards__foot{ display:flex; align-items:center; gap:8px; margin-top:12px; color:#9293A6; font-size:14px; font-weight:400; }
.samrecomm-rcards__dot{ width:8px;height:8px;border-radius:50%; background:#2ECC71; box-shadow:0 0 0 3px rgba(46,204,113,.15); }

/* Safari/moz/IE fallback blur */
.samrecomm-rcards__card--locked .samrecomm-rcards__head::before { content: none; }
.samrecomm-rcards .samrecomm-rcards__head { position: relative; }
.samrecomm-rcards .samrecomm-rcards__blur{
position: absolute; inset: -6px -6px 0 -6px;
height: 76px; border-radius: 24px; z-index: 2;
background: rgba(255, 255, 255, 0.65);
-webkit-backdrop-filter: blur(30px) saturate(120%);
backdrop-filter: blur(30px) saturate(120%);
}
.samrecomm-rcards .samrecomm-rcards__lock { 
z-index: 3;
background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(244,246,255,1) 100%);
border: 1px solid rgba(67,67,67,0.08);
border-radius: 24px;
}

/* Responsive: show 1 card on mobile */
@media (max-width: 640px){
.samco_research_live_recomm .srlr-viewport{ --per: 1; }
.samco_research_live_recomm .srlr-arrow--left{ left:-6px; }
.samco_research_live_recomm .srlr-arrow--right{ right:-6px; }
}
@media (min-width: 641px) and (max-width: 900px){
.samco_research_live_recomm .srlr-viewport{ --per: 2; }
}
@media (min-width: 901px) and (max-width: 1199px){
.samco_research_live_recomm .srlr-viewport{ --per: 3; }
}
@media (min-width: 1200px){
.samco_research_live_recomm .srlr-viewport{ --per: 4; }
}

/* lead capture form */
/* Container */
.samco_research_lead .srl-cta{
width:100%;
margin-top:40px;
padding:20px 22px;
border:1px solid #B2C7E8;
border-radius:30px;
margin-bottom:20px;
background: linear-gradient(135deg, #F9FBFF 0%, #D9E7F9 100%);
}
.samco_research_lead .srl-row{
display:flex; align-items:center; justify-content:space-between; gap:18px;
flex-wrap:wrap;
}

/* Left content */
.samco_research_lead .srl-left{ flex:1 1 420px; min-width:320px; }
.samco_research_lead .srl-top{
display:flex; align-items:center; gap:10px; margin-bottom:8px;
}
.samco_research_lead .srl-ico{ flex:0 0 auto; display:grid; place-items:center; }
.samco_research_lead .srl-title{
margin:0;
font-size:22px; font-weight:600; color:#2045A5; line-height:1.15;
}
.samco_research_lead .srl-sub{
margin:0;
color:#434343; font-size:16px; font-weight:400; line-height:1.35;
}

/* Right: form */
.samco_research_lead .srl-form{
flex:0 0 460px; max-width:100%;
}
.samco_research_lead .srl-fieldwrap{
background:#fff;
border:1px solid #B9C7E4;
border-radius:50px;
padding:6px 7px 6px 10px;
display:grid; grid-template-columns:auto 1fr auto; gap:7px; align-items:center;
}
.samco_research_lead .srl-cc{
color:#535353; font-weight:600; font-size:20px; padding-left:6px;
}
.samco_research_lead .sr-only{ position:absolute; width:1px; height:1px; margin:-1px; border:0; padding:0; clip:rect(0 0 0 0); overflow:hidden; }

/* Input */
.samco_research_lead #MobileField{
width:100%;
border:0; outline:0;
background:transparent;
font-size:18px; font-weight:500; color:#434343;
padding:10px 2px;
font-family: "Product Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
}
.samco_research_lead #MobileField::placeholder{ color:#9AA7BF; font-weight:500; }
/* When filled, bump weight/size */
.samco_research_lead #MobileField:not(:placeholder-shown){
font-size:18px; font-weight:500;
}
/* Keep white bg on Chrome autofill */
.samco_research_lead #MobileField:-webkit-autofill{
-webkit-text-fill-color:#434343;
transition: background-color 9999s ease-in-out 0s;
box-shadow: 0 0 0px 1000px #fff inset;
}

/* Button */
.samco_research_lead #MobileOtpBtn{
display:inline-flex; align-items:center; gap:8px;
padding:14px 18px;
border-radius:50px;
border:0; cursor:pointer;
background: linear-gradient(90deg, #255BDF 0%, #143AAF 100%);
color:#EBF0FF; font-weight:600; font-size:16px;
transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease;
white-space:nowrap;
}
.samco_research_lead #MobileOtpBtn svg{ flex:0 0 20px; }
.samco_research_lead #MobileOtpBtn:hover:enabled{ transform: translateY(-1px); box-shadow:0 8px 22px rgba(20,58,175,0.25); }
.samco_research_lead #MobileOtpBtn:disabled{ opacity:.55; cursor:not-allowed; }

/* Responsive tweaks */
@media (max-width:720px){
.samco_research_lead .srl-form{ flex:1 1 100%; }
.samco_research_lead .srl-row{ gap:12px; }
.samco_research_lead .srl-title{font-size:18px;}
.samco_research_lead .srl-top{margin-bottom:16px;}
.samco_research_lead .srl-sub{margin-bottom:16px;}
#MobileOtpBtn{font-size: 0!important;padding: 12px!important;gap: 0!important;min-width: 44px!important;}
#MobileOtpBtn svg{display: inline-block;width: 20px!important;height: 20px!important;margin: 0;}
}

/* Closed recommendations */
.samco_research_closed_recomm .sr-container{
width: min(100% - 32px, var(--container));
margin-inline: auto;
}

.samco_research_closed_recomm .samrecomm-rcards__card{
flex: 0 0 280px;
height: 230px;
background:#FBFBFD;
border:1px solid #B3CAED;
border-radius:30px;
box-shadow:0 4px 12px rgba(0,53,128,0.11);
padding:16px 20px;
display:flex;
flex-direction:column;
justify-content:space-between;
overflow:hidden;
position: relative;
transform-style: preserve-3d;
transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
will-change: transform;
}

.samco_research_closed_recomm .samrecomm-rcards__name{}

/* Inner card-like wrap that uses the shared vars */
.samco_research_closed_recomm .srlr-wrap{
background: var(--sr-card-gradient);
border-radius: var(--sr-card-radius);
box-shadow: var(--sr-card-shadow);
padding: var(--sr-card-padding);
margin-bottom: var(--sr-card-mb);
position: relative;
}

/* Header */
.samco_research_closed_recomm .src-head{
display:flex; align-items:center; justify-content:space-between; gap:12px;
margin:0 0 22px 0; padding-bottom:14px;
border-bottom:1px solid var(--srw-title-border, #CCDAF0);
}
.samco_research_closed_recomm .src-left{ display:flex; align-items:center; gap:10px; }
.samco_research_closed_recomm .src-dot{
width:13px; height:13px; border-radius:50%; background:#C3C3C3; flex:0 0 13px;
}
.samco_research_closed_recomm .src-title{
font-size: var(--srw-title-size, 18px);
color:#2045A5; font-weight:500; margin:0;
}
.samco_research_closed_recomm .src-chip{
padding:4px 16px; border-radius:50px; background:#DCE7FF; color:#2045A5;
font-size:14px; font-weight:500; white-space:nowrap;
}

/* Carousel frame */
.samco_research_closed_recomm .srlr-carousel{ position:relative; }
.samco_research_closed_recomm .srlr-viewport{ overflow:hidden; }
.samco_research_closed_recomm .srlr-track{ display:flex; gap:35px; will-change:transform; padding:10px 0px; }

/* Arrows */
.samco_research_closed_recomm .srlr-arrow{
position:absolute; top:50%; transform:translateY(-50%);
z-index:5; width:36px; height:36px; border-radius:50%;
border:1px solid #C9D7F6; background:#fff; display:grid; place-items:center;
box-shadow:0 6px 18px rgba(20,41,73,.12); cursor:pointer;
}
.samco_research_closed_recomm .srlr-arrow--left{ left:-10px; }
.samco_research_closed_recomm .srlr-arrow--right{ right:-10px; }

/* Bullets (reuse) */
#news-bullets{
display:flex; justify-content:center; align-items:center; gap:8px; margin-top:12px;
}
#news-bullets .samrecomm-inthenews__bullet{
appearance:none; border:0; width:8px; height:8px; border-radius:999px;
background:rgba(32,70,165,0.35); opacity:.9;
transition:width .25s ease, transform .25s ease, background-color .25s ease, opacity .25s ease;
padding:0;
}
#news-bullets .samrecomm-inthenews__bullet.active{ width:20px; background:#2046A5; opacity:1; }

/* Closed card tweaks (your base .samrecomm-rcards__card styles already loaded) */
.samco_research_closed_recomm .samrecomm-rcards__foot{ color:#9293A6; }
.samco_research_closed_recomm .samrecomm-rcards__dot{
background:#9293A6; box-shadow:0 0 0 3px rgba(146,147,166,.15);
}

/* Responsive arrow spacing */
@media (max-width:640px){
.samco_research_closed_recomm .srlr-arrow--left{ left:-6px; }
.samco_research_closed_recomm .srlr-arrow--right{ right:-6px; }
}

/* Another lead form */
/* Input visuals – apply to both IDs */
.samco_research_lead #MobileField,
.samco_research_lead--sticky #oaMobileField{
width:100%; border:0; outline:0; background:transparent;
font-size:18px; font-weight:500; color:#434343; padding:10px 2px;
font-family:"Product Sans",system-ui,-apple-system,Segoe UI,Roboto,Arial,"Helvetica Neue",sans-serif;
}
.samco_research_lead #MobileField::placeholder,
.samco_research_lead--sticky #oaMobileField::placeholder{ color:#9AA7BF; font-weight:500; }
.samco_research_lead #MobileField:not(:placeholder-shown),
.samco_research_lead--sticky #oaMobileField:not(:placeholder-shown){ font-size:18px; font-weight:500; }

/* Keep white bg on Chrome autofill */
.samco_research_lead #MobileField:-webkit-autofill,
.samco_research_lead--sticky #oaMobileField:-webkit-autofill{
-webkit-text-fill-color:#434343;
transition: background-color 9999s ease-in-out 0s;
box-shadow:0 0 0 1000px #fff inset;
}

/* Button visuals – apply to both IDs */
.samco_research_lead #MobileOtpBtn,
.samco_research_lead--sticky #sticky_MobileOtpBtn{
display:inline-flex; align-items:center; gap:8px;
padding:14px 18px; border-radius:50px; border:0; cursor:pointer;
background:linear-gradient(90deg,#255BDF 0%,#143AAF 100%);
color:#EBF0FF; font-weight:600; font-size:16px;
transition:transform .15s ease, opacity .15s ease, box-shadow .15s ease;
white-space:nowrap;
}
.samco_research_lead #MobileOtpBtn svg,
.samco_research_lead--sticky #sticky_MobileOtpBtn svg{ flex:0 0 20px; }
.samco_research_lead #MobileOtpBtn:hover:enabled,
.samco_research_lead--sticky #sticky_MobileOtpBtn:hover:enabled{ transform:translateY(-1px); box-shadow:0 8px 22px rgba(20,58,175,.25); }
.samco_research_lead #MobileOtpBtn:disabled,
.samco_research_lead--sticky #sticky_MobileOtpBtn:disabled{ opacity:.55; cursor:not-allowed; }

/* Mobile: show arrow-only button for both */
@media (max-width:720px){
#MobileOtpBtn, #sticky_MobileOtpBtn{
font-size:0 !important; padding:12px !important; gap:0 !important; min-width:44px !important;
}
#MobileOtpBtn svg, #sticky_MobileOtpBtn svg{
display:inline-block; width:20px !important; height:20px !important; margin:0;
}
}


/* FAQ's Section */
.samco_research_faqs .srf-wrap{
background: var(--sr-card-gradient);
border-radius: var(--sr-card-radius);
box-shadow: var(--sr-card-shadow);
padding: var(--sr-card-padding);
margin-bottom: var(--sr-card-mb);
}

/* Heading matches your title style */
.samco_research_faqs .srf-head{
margin: 0 0 22px 0;
padding-bottom: 14px;
border-bottom: 1px solid var(--srw-title-border, #CCDAF0);
}
.samco_research_faqs .srf-title{
font-size: var(--srw-title-size, 18px);
color:#2045A5;
font-weight:500;
margin:0;
}

/* Accordion container */
.samco_research_faqs .srf-acc{ display:grid; gap:20px; }

/* Each item */
.samco_research_faqs .srf-item{
background: #FFFFFF;
border:1px solid #CCDAF0;
border-radius: 18px;
overflow: hidden;  /* keep rounded corners with animated content */
}

/* Question button */
.samco_research_faqs .srf-q{
width:100%;
display:flex; align-items:center; justify-content:space-between; gap:12px;
background:transparent; border:0; cursor:pointer; text-align:left;
padding:16px 16px;
}
.samco_research_faqs .srf-q:focus-visible{
outline:2px solid #2045A5; outline-offset:2px; border-radius: 12px;
}
.samco_research_faqs .srf-qtext{
color:#434343; font-size:16px; font-weight:600; line-height:1.25;
}
.samco_research_faqs .srf-ico{ flex:0 0 auto; display:grid; place-items:center; transition: transform .25s ease; }
.samco_research_faqs .srf-item.is-open .srf-ico{ transform: rotate(180deg); }

/* Answer panel (animated height) */
.samco_research_faqs .srf-a{
height: 0;
overflow: hidden;
transition: height .28s ease;
will-change: height;
background: #FAFBFF;
border-top:1px solid #EDF3FF;
}
.samco_research_faqs .srf-abody{
padding:14px 16px;
color:#434343; font-size:16px; font-weight:400; line-height:1.55;
}

.srf-abody p{margin:0px; font-size:16px;}

/* Responsive sizing */
@media (max-width:640px){
.samco_research_faqs .srf-qtext{ font-size:16px; }
.samco_research_faqs .srf-abody{ font-size:15px; }
}


/* Disclaimer section */
.samco_research_disclaimer .srd-wrap{
background: var(--sr-card-gradient);
border-radius: var(--sr-card-radius);
box-shadow: var(--sr-card-shadow);
padding: var(--sr-card-padding);
margin-bottom: var(--sr-card-mb);
}

/* Heading (same styling as other sections) */
.samco_research_disclaimer .srd-head{
margin:0 0 14px 0;
padding-bottom:14px;
border-bottom:1px solid var(--srw-title-border, #CCDAF0);
}
.samco_research_disclaimer .srd-title{
font-size: var(--srw-title-size, 18px);
color:#2045A5; font-weight:500; margin:0;
}

/* Body */
.samco_research_disclaimer .srd-body p{
margin:0 0 12px 0;
color:#434343; font-size:16px; line-height:1.65; font-weight:400;
}
.samco_research_disclaimer .srd-body p:last-child{ margin-bottom:0; }

/* Responsive */
@media (max-width:640px){
.samco_research_disclaimer .srd-body p{ font-size:15px; line-height:1.6; }
body {
    padding: 90px 0px 0px 0px;
}
.samco_research_closed_recomm .src-chip{
  white-space: break-spaces; text-align: center; width:fit-content;}
.samco_research_widgets .srw-row{gap:0px;}
}

.mb-30{margin-bottom:40px;}


/* ===== Youtube Videos Section ===== */
.samco_research_guidance_videos .srgv-container{
  width:min(100% - 32px, var(--container, 1140px));
  margin-inline:auto;
}
.samco_research_guidance_videos .srgv-wrap{
  background: var(--sr-card-gradient, linear-gradient(180deg,#F7FAFF 0%,#EFF5FF 100%));
  border-radius: var(--sr-card-radius, 22px);
  box-shadow: var(--sr-card-shadow, 0 8px 24px rgba(20,41,73,.08));
  padding: var(--sr-card-padding, 20px 18px 26px);
  margin-bottom: var(--sr-card-mb, 22px);
  position: relative;
}
.samco_research_guidance_videos .srgv-head{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  margin:0 0 18px 0; padding-bottom:12px; border-bottom:1px solid #CCDAF0;
}
.samco_research_guidance_videos .srgv-left{ display:flex; align-items:center; gap:10px; }
.samco_research_guidance_videos .srgv-dot{
  width:13px; height:13px; border-radius:50%; background:#18C0FF; box-shadow:0 0 0 4px rgba(24,192,255,.18);
  animation:srgv-pulse 1.6s infinite ease-in-out;
}
@keyframes srgv-pulse{
  0%,100%{ box-shadow:0 0 0 4px rgba(24,192,255,.18); }
  50%{ box-shadow:0 0 0 8px rgba(24,192,255,.10); }
}
.samco_research_guidance_videos .srgv-title{
  font-size:18px; color:#2045A5; font-weight:600; margin:0;
}

.samco_research_guidance_videos .srgv-carousel{ position:relative; }
.samco_research_guidance_videos .srgv-viewport{ overflow:hidden; }
.samco_research_guidance_videos .srgv-track{ display:flex; gap:35px; will-change:transform; padding:10px 0; }

.samco_research_guidance_videos .srgv-card{
  flex:0 0 var(--srgv-card-w, 280px);
  height: var(--srgv-card-h, 210px);
  background:#FBFBFD; border:1px solid #B3CAED; border-radius:30px;
  padding:0; display:flex; flex-direction:column; justify-content:flex-start;
  cursor:pointer; position:relative; transition:transform .2s ease, box-shadow .2s ease; outline:none;
  box-shadow: 0 4px 12px rgba(0, 53, 128, 0.11);
  background-position:center; background-size:cover; background-repeat:no-repeat;
}
.samco_research_guidance_videos .srgv-card::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.0) 45%, rgba(0,0,0,.22) 100%);
  opacity:0; transition:opacity .2s ease;
  border-radius:0px 0px 30px 30px;
}
.samco_research_guidance_videos .srgv-card:hover{ transform:translateY(-2px); }
.samco_research_guidance_videos .srgv-card:hover::before{ opacity:1; }

.samco_research_guidance_videos .srgv-card .srgv-play{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:48px; height:48px; border-radius:50%;
  display:grid; place-items:center;
  background:#FFFFFF;
  color:#2046A5;
  box-shadow:
    0 14px 30px rgba(18,54,170,.28),
    inset 0 0 0 2px rgba(255,255,255,.85),
    0 0 0 8px rgba(32,70,165,.15);
  transition: transform .15s ease, box-shadow .15s ease;
}
.samco_research_guidance_videos .srgv-card:hover .srgv-play{
  transform:translate(-50%,-50%) scale(1.08);
  box-shadow:
    0 18px 36px rgba(18,54,170,.35),
    inset 0 0 0 2px rgba(255,255,255,.95),
    0 0 0 10px rgba(32,70,165,.20);
}
.samco_research_guidance_videos .srgv-card .srgv-play svg{
  width:26px; height:26px;
}
.samco_research_guidance_videos .srgv-card .srgv-play svg path{ fill:currentColor; }

.samco_research_guidance_videos .srgv-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:5; width:36px; height:36px; border-radius:50%;
  border:1px solid #C9D7F6; background:#fff; display:grid; place-items:center;
  box-shadow:0 6px 18px rgba(20,41,73,.12); cursor:pointer;
}
.samco_research_guidance_videos .srgv-arrow--left{ left:-10px; }
.samco_research_guidance_videos .srgv-arrow--right{ right:-10px; }

@media (max-width:640px){
  .samco_research_guidance_videos .srgv-track{ gap:16px; }
  .samco_research_guidance_videos .srgv-arrow--left{ left:-6px; }
  .samco_research_guidance_videos .srgv-arrow--right{ right:-6px; }
}

#srgv-bullets{
  display:flex; justify-content:center; align-items:center; gap:8px; margin-top:12px;
}
#srgv-bullets .srgv-bullet{
  appearance:none; border:0; width:8px; height:8px; border-radius:999px;
  background:rgba(32,70,165,0.35); opacity:.9;
  transition:width .25s ease, transform .25s ease, background-color .25s ease, opacity .25s ease;
  padding:0; cursor:pointer;
}
#srgv-bullets .srgv-bullet.active{ width:20px; background:#2046A5; opacity:1; }

.srgv-modal{ position:fixed; inset:0; display:none; z-index:9999; }
.srgv-modal.is-open{ display:block; }

.srgv-modal__backdrop{
  position:absolute; inset:0; background:rgba(8,20,46,.6); backdrop-filter:saturate(1.2) blur(2px);
}

.srgv-modal__close{
  width:44px; height:44px; border-radius:50%;
  background:#FFFFFF; border:1px solid #D4DDF5; display:grid; place-items:center; cursor:pointer;
  box-shadow:0 10px 24px rgba(20,41,73,.22); z-index:10001;
}
.srgv-modal__close--fixed{ position: absolute; right:0px; top: -52px; z-index:9999; box-shadow:
  0 10px 24px rgba(20,41,73,.22),
  0 2px 0 rgba(11,16,32,.08); }

.srgv-modal__panel{
  position:relative; left:50%; top:50%; transform:translate(-50%,-50%);
  width:min(92vw, 960px);
  background:#0B1020; border-radius:16px; box-shadow:0 24px 60px rgba(0,0,0,.35);
  padding:14px 12px 16px; overflow:visible; z-index:10000;
}

.srgv-modal__close--in{
  display:none;
  position:absolute; right:10px; top:10px;
}

.srgv-modal__frame{ aspect-ratio:16/9; width:100%; background:#000; border-radius:10px; overflow:hidden; }
.srgv-modal__frame iframe{ width:100%; height:100%; display:block; border:0; }

@media (max-width:640px){
 
  .srgv-modal__close--in{ display:grid; z-index:10002; }
  .srgv-modal__close--fixed{ display:none; }
}

.srgv-video-anchor{ position:relative; }

@media (min-width: 641px){
  .srgv-video-anchor .srgv-modal__close{
    position:absolute !important;
    right:-36px;
    top:-39px;
    width:44px; height:44px; border-radius:50%;
    background:#fff; border:1px solid #D4DDF5;
    display:grid; place-items:center;
    box-shadow:0 10px 24px rgba(20,41,73,.22);
    z-index:5;
  }
}

@media (max-width: 640px){
  .srgv-modal__panel{
    position: fixed; 
    left: 0; right: 0;
    bottom: 0; top: auto;
    transform: none;
    width: 100vw;
    border-radius: 16px 16px 0 0;
    padding: 16px 12px;
  }
  .srgv-video-anchor .srgv-modal__close{
    position: absolute !important;
    right: 8px; top: 8px;
  }
}

.srgv-modal__close--fixed{
  position: static !important;
  display:none !important;
}


.loading-aof{position:fixed;z-index:999;height:2em;text-align:center;width:2em;overflow:show;margin:auto;top:0;left:0;bottom:0;right:0;-webkit-animation:linear infinite rotate}.loading-aof:before{content:'';display:block;position:fixed;top:0;left:0;width:100%;height:100%;background:radial-gradient(rgba(20,20,20,.8),rgba(0,0,0,.8));background:-webkit-radial-gradient(rgba(20,20,20,.8),rgba(0,0,0,.8))}.loading-aof:not(:required){font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.loading-aof:not(:required):after{content:'';display:block;font-size:10px;width:1em;height:1em;margin-top:-.5em;-webkit-animation:150ms linear infinite spinner;-moz-animation:150ms linear infinite spinner;-ms-animation:spinner 150ms infinite linear;-o-animation:150ms linear infinite spinner;animation:150ms linear infinite spinner;border-radius:.5em;-webkit-box-shadow:rgba(255,255,255,.75) 1.5em 0 0 0,rgba(255,255,255,.75) 1.1em 1.1em 0 0,rgba(255,255,255,.75) 0 1.5em 0 0,rgba(255,255,255,.75) -1.1em 1.1em 0 0,rgba(255,255,255,.75) -1.5em 0 0 0,rgba(255,255,255,.75) -1.1em -1.1em 0 0,rgba(255,255,255,.75) 0 -1.5em 0 0,rgba(255,255,255,.75) 1.1em -1.1em 0 0;box-shadow:rgba(255,255,255,.75) 1.5em 0 0 0,rgba(255,255,255,.75) 1.1em 1.1em 0 0,rgba(255,255,255,.75) 0 1.5em 0 0,rgba(255,255,255,.75) -1.1em 1.1em 0 0,rgba(255,255,255,.75) -1.5em 0 0 0,rgba(255,255,255,.75) -1.1em -1.1em 0 0,rgba(255,255,255,.75) 0 -1.5em 0 0,rgba(255,255,255,.75) 1.1em -1.1em 0 0}@-webkit-keyframes spinner{0%{-webkit-transform:rotate(0);-moz-transform:rotate(0);-ms-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-moz-keyframes spinner{0%{-webkit-transform:rotate(0);-moz-transform:rotate(0);-ms-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-o-keyframes spinner{0%{-webkit-transform:rotate(0);-moz-transform:rotate(0);-ms-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner{0%{-webkit-transform:rotate(0);-moz-transform:rotate(0);-ms-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{-webkit-appearance:none!important;margin:0}input[type=number]{-moz-appearance:textfield!important}