<!DOCTYPE html>
<html lang="en">

<head>
 <title>MyVolts - Power supplies and other powering solutions</title>
 <base href="https://myvolts.com/">

 <!-- Google tag (gtag.js) -->
 <script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){ dataLayer.push(arguments); }
  if(localStorage.getItem('cookie_consent')=='all') {
   gtag('consent', 'default', {
    'ad_storage': 'granted',
    'analytics_storage': 'granted',
    'ad_user_data': 'granted',
    'ad_personalization': 'granted',
    'functionality_storage': 'granted',
    'security_storage': 'granted'
   });
  } else {
   gtag('consent', 'default', {
    'ad_storage': 'denied',
    'analytics_storage': 'denied',
    'ad_user_data': 'denied',
    'ad_personalization': 'denied',
    'functionality_storage': 'granted',
    'security_storage': 'granted',
    'wait_for_update': 500
   });
  }
 </script>
 <script async src="https://www.googletagmanager.com/gtag/js?id=G-H607WKRKRL"></script>
 <script>
  gtag('js', new Date());
  gtag('config', 'G-H607WKRKRL');
  gtag('config', 'AW-684627228', { 'allow_enhanced_conversions':true });
 </script>

   <link rel="canonical" href="https://myvolts.com/" /> <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, initial-scale=1.0">
 <meta http-equiv="X-UA-Compatible" content="chrome=1, IE=edge">

 <link href='https://fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'>

 <link rel="stylesheet" href="templates/MV/css/MV.css?3" type="text/css"/>
 <link rel="stylesheet" href="templates/MV/css/MVNew.css?48" type="text/css"/>
 <script type="text/javascript" src="resources/jserver.js?2"></script>

 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
 <meta http-equiv="Content-Language" content="EN" />
 <meta name="description" content="0"/>
 <meta name="keywords" content="PSUFinder"/>

   <!-- Meta Pixel Code -->
 <script>
  !function(f,b,e,v,n,t,s)
  { if(f.fbq)return;n=f.fbq=function(){ n.callMethod?
  n.callMethod.apply(n,arguments):n.queue.push(arguments) };
  if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
  n.queue=[];t=b.createElement(e);t.async=!0;
  t.src=v;s=b.getElementsByTagName(e)[0];
  s.parentNode.insertBefore(t,s) }(window, document,'script',
  'https://connect.facebook.net/en_US/fbevents.js');

  if(localStorage.getItem('cookie_consent')=='all') {
   fbq('consent','grant');
  } else {
   fbq('consent','revoke');
  }

  fbq('init', '527802819790448');
  fbq('track', 'PageView');
 </script>
 <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=527802819790448&ev=PageView&noscript=1" /></noscript>
 <!-- End Meta Pixel Code -->

  </head>

<body>

<script type="text/javascript">
 function isMobile() {
  const regex = /Mobi|Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i;
  let mobileAgent=regex.test(navigator.userAgent);
  let hasTouch='ontouchstart' in window || navigator.maxTouchPoints > 0;
  let isNarrow=window.innerWidth < 768 || screen.width < 768;
  return(mobileAgent || (hasTouch && isNarrow));
 }
 var isThisMobile=isMobile();
 const params = new URLSearchParams(window.location.search);
 let secIDParam = params.get("sec") ?? "undefined";
  gtag("event","main_page"); if(!sessionStorage.getItem('ga_session_started')) {
  sessionStorage.setItem('ga_session_started', '1');
    gtag("event","main_page_entry"); }
 if(!String.prototype.trim) String.prototype.trim=function(){ return this.replace(/^\s+|\s+$/g, ''); };
 if(!Array.prototype.indexOf) {
  Array.prototype.indexOf=function(obj,start) {
   for(var i=(start || 0),j=this.length;i<j;i++) if(this[i]===obj) return i;
   return -1;
  }
 }
 function toggleById(elID) {
  if(document.getElementById(elID).style.display=="none") {
   document.getElementById(elID).style.display="block";
  } else {
   document.getElementById(elID).style.display="none";
  }
 }
 function validateEmail(email) {
  var re = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9])+$/;
  return re.test(email);
 }
 function forceInt(fieldID,done,def) {
  def=typeof def!=='undefined'?def:0;
  var val=document.getElementById(fieldID).value;
  while(val.length && isNaN(val)) val=val.substring(0,val.length-1);
  if(val.length) val=parseInt(val);
  if(done && (val.length==0 || val<def)) val=def;
  document.getElementById(fieldID).value=val;
 }

 let timer,oldPhrase="";
 const waitTime=200;
 let resHeaders=["","Wall Plug","USB-A Power","USB-C Power","In-Car Power"];
 var currResult=-1;
 function preventArrows(e) {
  e = e || window.event;
  if(e.keyCode===38 || e.keyCode===40 || e.keyCode===27) { e.preventDefault(); return false; }
 }
 function topSearchChange(e) {
  e = e || window.event;
  if(e.keyCode===38 || e.keyCode===40) {
   let res=document.getElementsByClassName("headerResult");
   if(res.length) {
    if(currResult>=0) res[currResult].classList.remove("focused");
    if(e.keyCode===38) currResult=(currResult<=0?res.length-1:currResult-1);
    else currResult=(currResult>=res.length-1?0:currResult+1);
    res[currResult].classList.add("focused");
   }
   return false;
  }
  if(e.keyCode===27) return false;
  if(e.keyCode===13 && currResult>=0) {
   if(document.getElementById("prdRes"+currResult) && (typeof document.getElementById("prdRes"+currResult).onclick=="function")) {
    e.preventDefault();
    document.getElementById("prdRes"+currResult).onclick.apply(document.getElementById("prdRes"+currResult));
   }
   return false;
  }
  if(currResult>=0 && document.getElementById("prdRes"+currResult)) document.getElementById("prdRes"+currResult).classList.remove("focused");
  currResult=-1;
  clearTimeout(timer);
  let searchPhrase=document.getElementById('searchPhraseTop').value.trim();
  if(oldPhrase==searchPhrase && document.getElementById("searchSuggTop").firstChild) {
   document.getElementById("blackout1").style.display="block"; 
   document.getElementById("searchSuggTop").style.display="block"; 
   return false;
  }
  if((searchPhrase!=oldPhrase || document.getElementById("searchSuggTop").style.display=="") && searchPhrase.length>=3) {
   timer=setTimeout(() => { showSuggestions(searchPhrase); },waitTime);
  }
  else {
   document.getElementById("searchSuggTop").style.display="";
   document.getElementById("blackout1").style.display="";
  }
 }
 function goToPrd(prdID) {
  var performed=false;
  gtag('event','header_search_to_product', {
//   transport_type: 'beacon',
   event_callback: function () {
    if(!performed) {
     performed=true;
     window.location.href="./product/"+prdID+"/?sec=searchbar";
    }
   }
  });
  setTimeout(function () { if(!performed) { performed=true; window.location.href="./product/"+prdID+"/?sec=searchbar"; } }, 1000);
 }
 function recordAndFollow(link,prdID,prdSKU,prdName,prdPrice,secID="main") {
  if(secID=="main" && secIDParam!="undefined") secID=secIDParam;
  var url=link.href;
  var navigated=false;
  function go() {
   if(!navigated) { navigated=true; window.location.href=url; }
  }
  if(window.fbq) { fbq('track','AddToCart',{ contents:[{ id: 'US-'+prdID,quantity: 1 }] }); }
  if(window.gtag) {
   gtag('event', 'add_to_cart', {
    currency: "USD",
    value: prdPrice,
    items: [{ item_id: prdSKU,quantity: 1,item_name: prdName,price: prdPrice }],
//    transport_type: 'beacon',
    section: secID,
    event_callback: go
   });
  }
  setTimeout(go, 500);
  return false;
 }
 function addMultipleAndGoToCart(prds,secID="main",kitID=0) {
  if(secID=="main" && secIDParam!="undefined") secID=secIDParam;
  var navigated=false;
  let prdsFB=[];
  let prdsGoogle=[];
  let prdsURL="";
  let goodsTot=0;
  for(let i=0;i<prds.length; i++) {
   let prdFB={ id: 'US-'+prds[i].id,quantity: prds[i].q };
   prdsFB.push(prdFB);
   let prdGoogle={ item_id: prds[i].sku,quantity: prds[i].q,item_name: prds[i].n,price: prds[i].p };
   prdsGoogle.push(prdGoogle);
   goodsTot+=prds[i].p*prds[i].q;
   prdsURL+="&"+prds[i].id+"="+prds[i].q;
  }
  var url="cart?xCmd=addMulti"+prdsURL;
  function go() {
   if(!navigated) { navigated=true; window.location.href=url; }
  }
  if(window.fbq) { fbq('track','AddToCart',{ contents:prdsFB }); }
  if(window.gtag) {
   gtag('event', 'add_to_cart', {
    currency: "USD",
    value: goodsTot,
    items: prdsGoogle,
//    transport_type: 'beacon',
    section: secID,
    kitID: kitID,
    event_callback: go
   });
  }
  setTimeout(go, 500);
 }
 function searchResultOver() {
  let newOption=parseInt(this.id.substring(6));
  if(newOption!=currResult) {
   if(currResult>-1 && document.getElementById("prdRes"+currResult)) document.getElementById("prdRes"+currResult).classList.remove("focused");
   currResult=newOption;
   this.classList.add("focused");
  }
 }
 function checkIfResultSelected() {
  if(document.getElementById("searchSuggTop").style.display=="block" && currResult>-1) return false;
  else if(document.getElementById("searchPhraseTop").value.trim().length) {
   window.location.href="MVSearch?q="+encodeURIComponent(document.getElementById("searchPhraseTop").value.trim());
   return false;
  }
  return true;
 }
 function showSuggestions(phrase) {
  oldPhrase=phrase;
  let data={ 'phrase': phrase };
  fetch('api/mvnewSearchSuggest.php', {
   method: 'POST',
   headers: {'Content-Type': 'application/json'},
   body: JSON.stringify(data),
  })
  .then(response => response.json())
  .then(data => {
   let results=document.getElementById("searchSuggTop");
   if(!data.length) {
    results.style.display="";
    document.getElementById("blackout1").style.display="";
    while(results.firstChild) results.removeChild(results.lastChild);
   } else {
    while(results.firstChild) results.removeChild(results.lastChild);
    let newEl=null,prevSec=0;
    for(var i=0;i<data.length; i++) {
     newEl=document.createElement("div"),newElSub=document.createElement("div");
     if(data[i].sID>0 && data[i].sID!=prevSec) { //header
      prevSec=data[i].sID;
      newEl.classList.add("header");
      newEl.innerHTML=resHeaders[prevSec];
      results.appendChild(newEl);
      newEl=document.createElement("div");
     }
     //option
     newEl.classList.add("headerResult");
     newElSub.innerHTML=data[i].n;
     newEl.appendChild(newElSub);
     if(data[i].thumb) newEl.style.backgroundImage="url('"+data[i].thumb+"')";
     let prdID=data[i].id;
     newEl.onclick = function(prdID) {
      return function () {goToPrd(prdID);};
     }(prdID);
     newEl.addEventListener("mouseover",searchResultOver,false);
     newEl.id="prdRes"+i;
     results.appendChild(newEl);
    }
    results.style.display="block";
    document.getElementById("blackout1").style.display="block";
   }
  })
  .catch((error) => {
   console.error('Error:', error);
  });
 }
 function recordPhrase(newPhrase,phType) {
  if(window.ActiveXObject) var xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  else if(window.XMLHttpRequest) var xmlhttp=new XMLHttpRequest();
  else {return false;}
  xmlhttp.onreadystatechange=function() {
  }
  xmlhttp.open("POST","api/recordPhrase.php?rnd="+new Date().getTime(),true);
  xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
  xmlhttp.send("type="+phType+"&phrase="+newPhrase);
 }
 function toggleMenu(id) {
  for(let i=1;i<5;i++) {
   if(i!=id || document.getElementById('m'+id).className!='b1') {
    document.getElementById('m'+i).className='b1'
    document.getElementById('l'+i).className='center';
   } else {
    document.getElementById('m'+i).className='b1 active';
    document.getElementById('l'+i).className='center active';
   }
  }
 }
 var addingToCart=false,addToCartTimeoutID=false;
 function addToCartMKII(prdID,secID="main",prdQty=1) {
  if(addingToCart) return false;
  if(secID=="main" && secIDParam!="undefined") secID=secIDParam;
  document.getElementById("inProgress").classList.remove("hidden");
  addInProgress=true;
  let data={ 'prdID':prdID,'qty':prdQty };
  fetch('api/addToCartSingleJson.php', {
   method: 'POST',
   headers: {'Content-Type': 'application/json'},
   body: JSON.stringify(data),
  })
  .then(response => response.json())
  .then(data => {
   addingToCart=false;
   document.getElementById('cartQty').innerHTML=data['qty'];
   document.getElementById("inProgress").classList.add("hidden");
   let prdName=document.getElementById("prdName"+prdID)?document.getElementById("prdName"+prdID).innerHTML:"Selected product";
   document.getElementById("addToCartConfPrd").innerHTML=prdName;
   document.getElementById("addToCartConf").classList.remove("hidden");
   if(addToCartTimeoutID) clearTimeout(addToCartTimeoutID);
   addToCartTimeoutID=setTimeout(() => {
    addToCartTimeoutID=false;
    document.getElementById("addToCartConf").classList.add("hidden");
   }, 10000);
   if(data.prd.q>0) {
    let prdVal=data.prd.q*data.prd.price;
    gtag("event", "add_to_cart", {
     currency: "USD",
     value: prdVal,
     section: secID,
     items: [{ item_id: data.prd.sku,item_name: data.prd.n,price: data.prd.price,quantity: data.prd.q }]
    });
    if(window.fbq) { fbq('track','AddToCart',{ contents:[{ id: 'US-'+prdID,quantity: prdQty }] }); }
   }
  })
  .catch((error) => {
   console.error('Error:', error);
  });
 }
 </script>

<script type="text/javascript">
 function notify(pID,vID=0) {
  document.getElementById('notifyPrdID').value=pID;
  document.getElementById('notifyPrdV').value=vID;
  document.getElementById('alertForm').style.display="block";
  document.getElementById('al_err').style.display="";
  document.getElementById('al_conf').style.display="";
 }
 function alertSave() {
  let err=false;
  if(!validateEmail(document.getElementById('al_email').value)) {
   document.getElementById('al_email_err').style.display='';
   err=true;
  }
  if(!err) {
   document.getElementById("inProgress").classList.remove("hidden");
   let pID=document.getElementById('notifyPrdID').value;
   let vID=document.getElementById('notifyPrdV').value;
   var data={e: document.getElementById("al_email").value.trim(),id: pID,v: vID};
   fetch('api/alertRecord.php', {
    method: 'POST',
    headers: {'Content-Type': 'application/json'},
    body: JSON.stringify(data),
   })
   .then(response => response.json())
   .then(data => {
    document.getElementById('alertForm').style.display='';
    if(data['result']==1) document.getElementById('al_conf').style.display='block';
    else document.getElementById('al_err').style.display='block';
    document.getElementById("inProgress").classList.add("hidden");
   })
   .catch((error) => {
    console.error('Error:', error);
    document.getElementById('alertForm').style.display='';
    document.getElementById('al_err').style.display='block';
    document.getElementById("inProgress").classList.add("hidden");
   });
  }
 }
 function alCheckEmail() {
  if(document.getElementById('al_email_err').style.display=='' && validateEmail(document.getElementById('al_email').value))
    document.getElementById('al_email_err').style.display='none';
 }
</script>

<style>
 .alertBG {position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(0,0,0,0.5);z-index:25;display:none;}
 .alertBG > div {width:524px;max-width:calc(100% - 32px);position:relative;background:var(--white);border-radius:8px;padding:48px 24px 24px 24px;left:50%;top:50%;transform:translate(-50%,-50%);font-size:18px;line-height:28px;font-weight:600;color:var(--gray-900);}
 .alertBG > div > div:first-child {cursor:pointer;position:absolute;top:8px;right:8px;width:40px;height:40px;border-radius:100px;background-repeat:no-repeat;background-position:center;background-size:20px;background-image:var(--svg-x24-gray900);}
 .alertBG > div input {width:100%;font-size:16px;line-height:24px;font-weight:600;padding:10px 14px;border-radius:8px;border:1px solid rgba(0,0,0,0.15);color:var(--gray-900);margin-top:20px;}
 .alertBG > div input::placeholder {color:var(--gray-800);}
 .alertBG > div .error {width:100%;font-size:14px;line-height:24px;font-weight:600;color:var(--error-msg);}
 .alertBG > div .button {width:100%;text-align:center;cursor:pointer;font-size:16px;line-height:24px;font-weight:600;padding:12px 20px;border-radius:100px;color:var(--white);background-color:var(--blue-prime);margin-top:24px;}

 .notifyButton {display:inline-block;cursor:pointer;padding:8px 30px;color:#ffffff;border-radius:30px;background-color:#0071BB;margin-top:10px;}
 .alertWaitBG {position:fixed;top:0;bottom:0;left:0;right:0;background:rgba(250,250,250,0.7);z-index:200;text-align:center;}
 .alertWaitBG > div {position:fixed;left:50%;top:50%;transform:translate(-50%,-50%);}

 @media only screen and (max-width: 600px) {
  .alertBG > div {padding:48px 16px 24px 16px;font-size:16px;line-height:24px;}
  .alertBG > div input {font-size:14px;line-height:20px;}
  .alertBG > div .error {font-size:12px;line-height:18px;}
 }

 @media (hover: hover) {
  .alertBG > div > div:first-child:hover {background-color:var(--gray-50);}
  .alertBG > div .button:hover {background-color:var(--blue-prime-hover);}
 }
</style>

<input type="hidden" id="notifyPrdID" value="0"/>
<input type="hidden" id="notifyPrdV" value="0"/>
<div class="alertBG hideOnEscape" id="alertForm" style="display:none;">
 <div class="dontHide">
  <div onclick="document.getElementById('alertForm').style.display='none';"></div>
  Enter your email address and we'll inform when the product is available.
  <input type="text" id="al_email" placeholder="Enter your email" onkeyup="alCheckEmail();"/>
  <div id="al_email_err" class="error" style="display:none;">You must enter a valid email address</div>
  <div class="button" onclick="alertSave();">Save</div>
 </div>
</div>

<div class="confSuccess hideOnEscape" id="al_conf" style="display:none;">
 <div class="dontHide">
  <div onclick="document.getElementById('al_conf').style.display='none';"></div>
  Your alert has been set up.<br>We'll send you an email when this product is available.
 </div>
</div>

<div class="confFailure hideOnEscape" id="al_err" style="display:none;">
 <div class="dontHide">
  <div onclick="document.getElementById('al_conf').style.display='none';"></div>
  Oops! Something went wrong.<br>Please try again.
 </div>
</div>
<!--
 -->

<div id="mvPromoBanner" class="promoBanner center" style="font-size:12px;line-height:12px;padding:8px 0px;"><div>
 <img src="img/flag/US.svg?1" style="position:relative;top:1px;font-size:0;"/>
 <span id="freeShippingInfo" style="background-color:#1C1C1C;margin-left:2px;"><span class="b2">US customers</span> - All duties paid by myVolts
</div></div>

     <style>
   :root {
    --svg-arrow-go:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M3.33331 10H16.6666M16.6666 10L11.6666 5M16.6666 10L11.6666 15" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>')
   }
/*
   .ripcordPopup {padding:0;border-radius:8px;}
   .ripcordPopup img {width:100%;max-width:150px;}
   .ripcordPopup a > div:nth-child(1) {text-align:center;background:white;padding-bottom:5px;padding-top:10px;border-radius:8px 8px 0px 0px;}
   .ripcordPopup a > div:nth-child(2) {text-align:center;background:black;color:var(--white);border-radius:0px 0px 8px 8px;font-size:0.9em;font-weight:600;padding:5px 8px 10px 8px;}
   .ripcordPopup a > div:nth-child(3) {display:none;}
   .ripcordPopup > .close {width:40px;height:40px;background-repeat:no-repeat;background-position:center;background-size:20px;background-image:var(--svg-x24-gray900);}
   @media only screen and (max-width: 600px) {
    .ripcordPopup {position:relative;top:0;right:0;border-radius:0;width:100%;border:none;border-top:1px solid var(--white);}
    .ripcordPopup > .close {display:none;}
    .ripcordPopup a > div:nth-child(1) {display:none;}
    .ripcordPopup a > div:nth-child(2) {display:none;}
    .ripcordPopup a > div:nth-child(3) {display:block;font-size:12px;line-height:20px;font-weight:600;color:var(--white);background-color:#1C1C1C;}
    .ripcordPopup a > div:nth-child(3) > div {display:inline-block;padding:6px 24px 6px 0px;background-repeat:no-repeat;background-position:right center;background-image:var(--svg-arrow-go);}
   }
*/
   .ripcordPopup {padding:0;border-radius:8px;z-index:20;}
   .ripcordPopup img {width:100%;max-width:150px;}
   .ripcordPopup a > div:nth-child(1) {text-align:center;background:white;padding-bottom:5px;padding-top:10px;border-radius:8px 8px 0px 0px;}
   .ripcordPopup a > div:nth-child(2) {text-align:center;background:black;color:var(--white);border-radius:0px 0px 8px 8px;font-size:0.9em;font-weight:600;padding:5px 8px 10px 8px;}
   .ripcordPopup a > div:nth-child(3) {display:none;}
   .ripcordPopup > .close {width:40px;height:40px;background-repeat:no-repeat;background-position:center;background-size:20px;background-image:var(--svg-x24-gray900);}
    .ripcordPopup {position:relative;top:0;right:0;border-radius:0;width:100%;border:none;border-top:1px solid var(--white);}
    .ripcordPopup > .close {display:none;}
    .ripcordPopup a > div:nth-child(1) {display:none;}
    .ripcordPopup a > div:nth-child(2) {display:none;}
    .ripcordPopup a > div:nth-child(3) {display:block;font-size:12px;line-height:20px;font-weight:600;color:var(--white);background-color:#1C1C1C;}
    .ripcordPopup a > div:nth-child(3) > div {display:inline-block;padding:6px 24px 6px 0px;background-repeat:no-repeat;background-position:right center;background-image:var(--svg-arrow-go);}
   @media (hover: hover) {
    .ripcordPopup a:hover div {text-decoration-line:underline;text-underline-position:from-font;}
   }
  </style>

  <div id="ripcordPopup" class="ripcordPopup center">
   <div class="close b2 black" onclick="ripcordPopupClose();"></div>
   <a id="mainPopLink" href="https://myvolts.com/power_survey/?utm_source=mvpopup2">
    <div><img src="https://myvolts.com/img/myvoltslogo.png"/></div>
    <div>Take the myVolts Power Survey, get 18% off your order!</div>
    <div><div>Take the Power Survey and get a 18% discount code!</div></div>
   </a>
  </div>
  <script type="text/javascript">
   function ripcordPopupClose() {
    document.getElementById("ripcordPopup").style.display="none";
    var d = new Date();
    d.setTime(d.getTime()+(7*24*60*60*1000));
    document.cookie="mvRipPop=1;expires="+d.toGMTString()+";domain=myvolts.com;path=/";
   }
   if(!isThisMobile) document.getElementById("mainPopLink").target="_blank";
  </script>
   <style>
 :root {
  --svg-logo:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="28" viewBox="0 0 25 28" fill="none"><path d="M23.9731 6.85547H0.190918L12.6177 27.2096L23.9731 6.85547Z" fill="%23D9D9D9" stroke="%23D9D9D9" stroke-width="0.214254"/><path d="M14.3313 24.3179L12.6173 27.4245L10.689 24.2107L10.1534 17.676L7.79656 18.7472L6.61816 4.71359L15.6168 0L14.5456 8.57017L18.6164 6.85614L14.3313 24.3179Z" fill="%23E5E5E5"/><path d="M14.2249 2.14453L8.11865 5.25122L8.86854 16.7138L11.5467 15.5354L12.618 26.998L16.3674 9.1078L13.0465 10.5004L14.2249 2.14453Z" fill="%235AC0A2" stroke="%235AC0A2" stroke-width="0.214254"/></svg>');
 }
 .cookiesNew {position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(0,0,0,0.55);z-index:255;}
 .cookiesNew > div {width:calc(100% - 32px);max-width:656px;position:relative;top:50%;left:50%;transform:translate(-50%,-50%);background:var(--white);border-radius:8px;padding:48px;text-align:center;}
 .cookiesNew > div > div:first-child {font-size:12px;line-height:18px;font-weight:700;padding-top:26px;background-repeat:no-repeat;background-position:center top;background-image:var(--svg-logo);}
 .cookiesNew > div > div:nth-child(2) {margin-top:16px;font-size:32px;line-height:40px;font-weight:700;}
 .cookiesNew > div > div:nth-child(3) {margin-top:12px;font-size:14px;line-height:20px;font-weight:400;color:var(--gray-400);}
 .cookiesNew > div > div:nth-child(4) {margin-top:24px;}
 .cookiesNew > div > div:nth-child(5) {margin-top:8px;}
 .mainButton {font-size:16px;line-height:24px;font-weight:700;padding:10px 18px;display:inline-block;background-color:var(--blue-prime);color:var(--white);cursor:pointer;border-radius:50px;}
 .secondaryButton {font-size:14px;line-height:20px;font-weight:400;padding:10px 16px;display:inline-block;cursor:pointer;}
 @media only screen and (max-width: 600px) {
  .cookiesNew > div {padding:36px 24px;}
  .cookiesNew > div > div:nth-child(2) {font-size:24px;line-height:32px;}
  .mainButton {font-size:14px;line-height:20px;padding:10px 16px;}
 }
 @media (hover: hover) {
  .mainButton:hover {background-color:var(--blue-prime-hover);}
  .secondaryButton:hover {text-decoration-line:underline;text-underline-position:from-font;}
 }
</style>

<div class="cookiesNew hidden" id="cookiesNew">
 <div>
  <div>myVolts</div>
  <div>Cookie Consent</div>
  <div>We use necessary cookies to make our site work. We'd like to set additional cookies to understand site usage, make site improvements and to remember your settings. We also use cookies set by other sites to help deliver content from their services. </div>
  <div><div class="mainButton" onclick="cookiesConsent('all');">Accept &amp; continue</div></div>
  <div><div class="secondaryButton" onclick="cookiesConsent('essential');">Decline additional cookies</div></div>
 </div>
</div>

<script type="text/javascript">
 function cookiesConsent(consentType) {
  document.getElementById("cookiesNew").classList.add("hidden");
  if(consentType=='essential') {
   gtag('consent', 'update', {
    'ad_storage': 'denied',
    'analytics_storage': 'denied',
    'ad_user_data': 'denied',
    'ad_personalization': 'denied'
   });
   fbq('consent','revoke');
  } else {
   gtag('consent', 'update', {
    'ad_storage': 'granted',
    'analytics_storage': 'granted',
    'ad_user_data': 'granted',
    'ad_personalization': 'granted'
   });
   fbq('consent','grant');
  }
  localStorage.setItem('cookie_consent',consentType);
 }
 if(!localStorage.getItem('cookie_consent')) document.getElementById("cookiesNew").classList.remove("hidden");
</script>
 <div class="inProgress hidden" id="inProgress"><div></div></div>
 <div class="blackout1 hideOnEscape" id="blackout1"></div>

 <div id="addToCartConf" class="addToCartConf hidden">
  <div><span id="addToCartConfPrd"></span> added to the shopping cart</div>
  <div><a href="cart">Show</a></div>
  <div onclick="addToCartTimeoutID=false;document.getElementById('addToCartConf').classList.add('hidden');"></div>
 </div>

 <div class="topRow noSelect">
  <div><a href="."><img src="img/myvoltslogo.png"/></a></div>
  <div style="position:relative;width:100%;">
   <form name="topSearchForm" method="post" action="MVSearch" onsubmit="return checkIfResultSelected();">
    <input placeholder="Search by product..." type="text" class="searchMain dontHide" id="searchPhraseTop" name="MVSearchPhrase" onKeyDown="preventArrows(event);" onkeyup="topSearchChange(event);" onfocus="topSearchChange();" value="" required/>
   </form>
   <div id="searchSuggTop" class="searchResultsPop hideOnEscape dontHide" style="display:none;"></div>
  </div>
  <div><a href="cart.php"><div class="cartNew"><div id="cartQty">0</div></div></a></div>
 </div>
 <style>
 .navRow {width:100%;padding:0px 40px;background:var(--gray-nv-bg);display:flex;align-items:center;justify-content:space-between;font-size:16px;font-weight:600;line-height:24px;}
 .navRow > div:first-child > a {display:inline-block;position:relative;padding:17px 16px;color:var(--white);}
 .navRow > div:first-child > a:not(:first-child) {margin-left:4px;}
 .navRow > div:first-child > a.selected {color:var(--logo);text-decoration-line:underline;text-underline-position:from-font;}
 .navRow > div:nth-child(2) > a {display:inline-block;width:20px;height:20px;background-size:cover;}
 .navRow > div:nth-child(2) > a:not(:first-child) {margin-left:24px;}
 .navRow .wide {display:initial;}
 .navRow .narrow {display:none;}
 @media (hover: hover) {
  .navRow > div:first-child > a:hover {color:var(--logo);}
 }
 @media only screen and (max-width: 1000px) {
  .navRow > div:not(:first-child) {display:none;}
  .navRow > div:first-child {display:flex;width:100%;justify-content:space-between;}
 }
 @media only screen and (max-width: 900px) {
  .navRow .wide {display:none;}
  .navRow .narrow {display:initial;}
 }
 @media only screen and (max-width: 800px) {
  .navRow {font-size:14px;line-height:20px;}
  .navRow > div:first-child > a {padding:9px 8px;}
 }
 @media only screen and (max-width: 600px) {
  .navRow {padding:0px 16px;}
  .topRow a img {max-height:36px;}
 }
</style>
<div class="navRow noSelect">
 <div>
  <a  href="MVSearch?PSUs=1"><span class="wide">Power Supplies</span><span class="narrow">PSUs</span></a>
  <a  href="section/2/1/myvolts_power_products"><span class="wide">Power Innovations</span><span class="narrow">Power</span></a>
  <a  href="section/11/1/myvolts_audio_products"><span class="wide">Audio Innovations</span><span class="narrow">Audio</span></a>
  <a  href="section/17/1/accessories"><span class="wide">Accessories</span><span class="narrow">Accs.</span></a>
  <a  href="Help"><span class="wide">Support</span><span class="narrow">Support</span></a>
 </div>
 <div>
  <a class="smIconIn" target="_blank" href="https://www.instagram.com/myvolts"></a>
  <a class="smIconFb" target="_blank" href="https://www.facebook.com/MyVolts"></a>
  <a class="smIconYt" target="_blank" href="https://www.youtube.com/channel/UCf3McyRC5XjOY9tmTbK6kRg"></a>
 </div>
</div>
<style>
 .mainHeaderImgCont {position:relative;background-color:#56B7E5;margin:32px 40px;padding:48px 4.78%;display:grid;align-items:center;justify-content:space-between;grid-template-columns:45.45% 46.42%;}
 .mainHeaderImgCont::after {content:"";position:absolute;top:0;left:0;right:0;bottom:0;background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.4" numOctaves="4"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.25"/></svg>');pointer-events:none;}
 .mainHeaderImgCont img {width:100%;}
 .mainHeaderImgCont > div:nth-child(2) {color:var(--white);}
 .mainHeaderImgCont > div:nth-child(2) > div:first-child {font-size:38px;font-weight:600;line-height:55px;text-transform:uppercase;}
 .mainHeaderImgCont > div:nth-child(2) > div:nth-child(2) {margin-top:12px;font-size:12px;font-weight:400;line-height:18px;}
 .mainHeaderImgCont > div:nth-child(2) > a {margin-top:87px;display:inline-block;cursor:pointer;color:var(--white);background-color:var(--black);text-align:center;font-size:24px;line-height:28px;font-weight:600;padding:19px 70px;border-radius:100px;}
 @media only screen and (max-width: 1380px) {
  .mainHeaderImgCont > div:nth-child(2) > div:first-child {line-height:45px;}
  .mainHeaderImgCont > div:nth-child(2) > a {margin-top:70px;}
 }
 @media only screen and (max-width: 1200px) {
  .mainHeaderImgCont > div:nth-child(2) {text-align:center;}
  .mainHeaderImgCont > div:nth-child(2) > div:first-child {font-size:28px;line-height:36px;}
  .mainHeaderImgCont > div:nth-child(2) > a {margin-top:50px;font-size:18px;line-height:24px;padding:16px 40px;}
 }
 @media only screen and (max-width: 1050px) {
  .mainHeaderImgCont > div:nth-child(2) > div:first-child {line-height:32px;}
  .mainHeaderImgCont > div:nth-child(2) > a {margin-top:40px;}
 }
 @media only screen and (max-width: 900px) {
  .mainHeaderImgCont > div:nth-child(2) > div:first-child {font-size:24px;line-height:28px;}
  .mainHeaderImgCont > div:nth-child(2) > div:nth-child(2) {line-height:16px;}
  .mainHeaderImgCont > div:nth-child(2) > a {margin-top:30px;}
 }
 @media only screen and (max-width: 700px) {
  .mainHeaderImgCont {padding:24px 2.32%;grid-template-columns:37.68% 55.36%;}
  .mainHeaderImgCont > div:nth-child(2) > div:first-child {font-size:20px;line-height:24px;text-transform:none;}
  .mainHeaderImgCont > div:nth-child(2) > a {font-size:16px;line-height:20px;padding:12px 40px;}
 }
 @media only screen and (max-width: 600px) {
  .mainHeaderImgCont {margin:16px;}
  .mainHeaderImgCont > div:nth-child(2) > div:first-child {font-size:16px;line-height:20px;}
  .mainHeaderImgCont > div:nth-child(2) > div:nth-child(2) {font-size:10px;line-height:14px;}
  .mainHeaderImgCont > div:nth-child(2) > a {margin-top:24px;font-size:14px;line-height:20px;padding:10px 16px;}
 }
 @media (hover: hover) {
  .mainHeaderImgCont > div:nth-child(2) > a:hover {background-color:rgba(0, 0, 0, 0.80);}
 }

</style>
<div class="mainHeaderImgCont noSelect">
 <div>
  <img src="img/SA_01.png"/>
 </div>
 <div>
  <div>The Silent Alchemist Power Hub for musicians</div>
  <div>7 multi-voltage isolated USB ports&nbsp;&amp;&nbsp;1&nbsp;high power USB port</div>
  <a href="SilentAlchemist">Pre-order now</a>
 </div>
</div>
<style>
 :root {
  --svg-secure:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none"><path d="M26 4.04504H10C7.8 4.04504 6 5.84504 6 8.04504V32C6 34.2 7.8 36 10 36H15.003L15.101 36.649C15.648 40.27 18.614 43 22 43H41V27C41 23.645 39.646 22.355 39.537 22.263L32.969 15.695L30.305 13.031L30 12.726V8.04504C30 5.84504 28.2 4.04504 26 4.04504ZM28 8.04504V10.943C27.224 10.468 26.335 10.2 25.4 10.2C24.062 10.2 22.806 10.72 21.865 11.661C20.922 12.597 20.402 13.849 20.4 15.187C20.398 16.53 20.917 17.791 21.863 18.737L25.212 22.086L26.913 23.787L28 24.874V32C28 33.103 27.103 34 26 34H19V6.04504H26C27.103 6.04504 28 6.94204 28 8.04504ZM8 32V8.04504C8 6.94204 8.897 6.04504 10 6.04504H13V34H10C8.897 34 8 33.103 8 32ZM39 27V41H22C19.595 41 17.479 39.001 17.079 36.351L17.026 36H26C28.2 36 30 34.2 30 32V26.874L32.12 28.994L33.534 27.58L30 24.046V24H29.954L25 19.046L23.277 17.323C22.71 16.756 22.399 15.999 22.4 15.19C22.401 14.388 22.712 13.638 23.277 13.077C24.399 11.956 26.356 11.95 27.491 13.052C27.501 13.062 27.513 13.068 27.523 13.077L33 18.554L38.147 23.7C38.155 23.708 39 24.58 39 27Z" fill="%231F1F1F"/></svg>');
  --svg-warranty:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none"><path d="M32 29.48C35.624 26.95 38 22.755 38 18C38 10.268 31.732 4 24 4C16.268 4 10 10.268 10 18C10 22.755 12.376 26.95 16 29.48V44L24 40L32 44V29.48ZM24 6C30.617 6 36 11.383 36 18C36 24.617 30.617 30 24 30C17.383 30 12 24.617 12 18C12 11.383 17.383 6 24 6ZM24 37.764L18 40.764V30.635C19.821 31.501 21.85 32 24 32C26.15 32 28.179 31.501 30 30.635V40.764L24 37.764Z" fill="%231F1F1F"/><path d="M24 24C27.314 24 30 21.314 30 18C30 14.686 27.314 12 24 12C20.686 12 18 14.686 18 18C18 21.314 20.686 24 24 24ZM24 14C26.206 14 28 15.794 28 18C28 20.206 26.206 22 24 22C21.794 22 20 20.206 20 18C20 15.794 21.794 14 24 14Z" fill="%231F1F1F"/></svg>');
  --svg-shipping:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none"><path d="M42 6H18C15.8 6 14 7.8 14 10V14C7.4 14 2 19.4 2 26V38H6C6 41.314 8.686 44 12 44C15.314 44 18 41.314 18 38H26C26 41.314 28.686 44 32 44C35.314 44 38 41.314 38 38H42C44.2 38 46 36.2 46 34V10C46 7.8 44.2 6 42 6ZM44 34C44 35.103 43.103 36 42 36H37.651C36.826 33.671 34.611 32 32 32C29.389 32 27.173 33.671 26.349 36H18C17.876 36 17.756 35.985 17.638 35.963C17.298 35.022 16.731 34.192 16 33.536V10C16 8.897 16.897 8 18 8H42C43.103 8 44 8.897 44 10V34ZM36 38C36 40.206 34.206 42 32 42C29.794 42 28 40.206 28 38C28 35.794 29.794 34 32 34C34.206 34 36 35.794 36 38ZM16 38C16 40.206 14.206 42 12 42C9.794 42 8 40.206 8 38C8 35.794 9.794 34 12 34C14.206 34 16 35.794 16 38ZM14 16V25H4.051C4.554 19.954 8.824 16 14 16ZM4 36V27H14V32.349C13.374 32.127 12.702 32 12 32C9.389 32 7.173 33.671 6.349 36H4Z" fill="%231F1F1F"/></svg>');
  --svg-money:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none"><path d="M24 17C19.037 17 15 20.141 15 24C15 27.859 19.037 31 24 31C28.963 31 33 27.859 33 24C33 20.141 28.963 17 24 17ZM24 29C20.141 29 17 26.757 17 24C17 21.243 20.141 19 24 19C27.859 19 31 21.243 31 24C31 26.757 27.859 29 24 29Z" fill="%231F1F1F"/><path d="M40 10H8C5.8 10 4 11.8 4 14V34C4 36.2 5.8 38 8 38H40C42.2 38 44 36.2 44 34V14C44 11.8 42.2 10 40 10ZM42 14V19C38.141 19 35 15.859 35 12H40C41.103 12 42 12.897 42 14ZM6 14C6 12.897 6.897 12 8 12H13C13 15.859 9.859 19 6 19V14ZM6 34V29C9.859 29 13 32.141 13 36H8C6.897 36 6 35.103 6 34ZM6 27V21C10.963 21 15 16.963 15 12H33C33 16.963 37.037 21 42 21V27C37.037 27 33 31.037 33 36H15C15 31.037 10.963 27 6 27ZM42 34C42 35.103 41.103 36 40 36H35C35 32.141 38.141 29 42 29V34Z" fill="%231F1F1F"/></svg>');
  --svg-return:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none"><path d="M8 26.6391V27.8698C8 36.692 15.1778 43.8698 24 43.8698C32.8222 43.8698 40 36.692 40 27.8698C40 19.0477 32.8222 11.8698 24 11.8698H13.2234L18.3458 5.53261L16.4308 3.98553L9.06215 13.1006L16.4308 22.2157L18.3458 20.6686L13.2234 14.3314H24C31.4646 14.3314 37.5385 20.4052 37.5385 27.8698C37.5385 35.3345 31.4646 41.4083 24 41.4083C16.5354 41.4083 10.4615 35.3345 10.4615 27.8698V26.6391H8Z" fill="%231F1F1F"/></svg>');
 }
 .mainHeaderIcons {margin:0px 40px 32px 40px;}
 .mainHeaderIcons > div:first-child {color:var(--blue-prime);font-size:18px;line-height:28px;font-weight:700;text-transform:uppercase;}
 .mainHeaderIcons > div:nth-child(2) {margin-top:24px;width:100%;}
 .mainHeaderIcons > div:nth-child(2) > div {display:flex;align-items:center;justify-content:space-between;}
 .mainHeaderIcons > div:nth-child(2) > div > div {display:inline-block;color:var(--gray-900);font-size:16px;line-height:24px;font-weight:400;padding:12px 0px 12px 60px;background-repeat:no-repeat;background-position:0px center;}
 .iconSecure {background-image:var(--svg-secure);}
 .iconWarranty {background-image:var(--svg-warranty);}
 .iconShipping {background-image:var(--svg-shipping);}
 .iconMoney {background-image:var(--svg-money);}
 .iconReturn {background-image:var(--svg-return);}
 @media only screen and (max-width: 1100px) {
  .mainHeaderIcons > div:nth-child(2) > div > div {background-size:24px 24px;font-size:12px;line-height:18px;padding:28px 0px 0px 0px;background-position:center 0px;text-align:center;white-space:nowrap;}
 }
 @media only screen and (max-width: 600px) {
  .mainHeaderIcons {margin:0px 16px;}
  .mainHeaderIcons > div:first-child {font-size:14px;line-height:20px;}
  .mainHeaderIcons > div:nth-child(2) {margin-top:16px;}
  .mainHeaderIcons > div:nth-child(2) > div {overflow-x:auto;gap:24px;padding-bottom:16px;}
 }
</style>
<div class="mainHeaderIcons noSelect">
 <div>Shop with myVolts</div>
 <div>
  <div>
   <div class="iconSecure">Secure checkout</div>
   <div class="iconWarranty">2 year warranty</div>
   <div class="iconShipping">Same-day shipping</div>
   <div class="iconMoney">30 day money back</div>
   <div class="iconReturn">Free return</div>
  </div>
 </div>
</div>
<style>
 :root {
  --svg-white-circle:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="50" fill="white" stroke-width="0"/></svg>');
  --svg-empty-circle:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="130" height="130"><mask id="m"><rect width="130" height="130" fill="%23fff"/><circle cx="64.5" cy="64.5" r="60" fill="%23000"/></mask><rect width="130" height="130" fill="%23F3F3F3" mask="url(%23m)"/></svg>');
 }
 .mainMVFPs {background-color:var(--gray-50);padding:68px 40px;color:var(--gray-900);}
 .mainMVFPs .title {font-size:36px;line-height:44px;font-weight:600;text-align:center;}
 .mainMVFPs .icons {width:100%;margin:52px 0px;display:grid;align-items:center;justify-items:left;justify-content:space-between;grid-template-columns:repeat(4,250px);gap:68px 0;}
 .mainMVFPs .icons a {position:relative;display:flex;flex-wrap:wrap;align-content:center;color:var(--gray-900);font-size:18px;line-height:28px;font-weight:600;width:100%;padding-top:136px;text-align:center;}
 .mainMVFPs .icons a div.product {transition-duration:100ms;position:absolute;width:120px;height:120px;top:0px;left:50%;transform:translate(-50%, 0%);background-color:var(--white);background-position:center 16px;background-repeat:no-repeat;background-size:86px 86px;}
 .mainMVFPs .icons a div.circle {position:absolute;width:130px;height:130px;top:-5px;left:50%;transform:translate(-50%, 0%);background-image:var(--svg-empty-circle);background-position:0px 0px;background-repeat:no-repeat;background-size:130px 130px;}
 .mainMVFPs .icons a span {position:absolute;top:-11px;left:50%;transform:translate(-50%, 0%);font-size:12px;line-height:18px;font-weight:600;color:var(--white);padding:2px 8px;border-radius:100px;background-color:var(--blue-prime);}
 .mainMVFPs .icons a div.prdTitle {width:100%;}
 .mainMVFPs .icons a div.prdSubTitle {width:100%;font-size:12px;line-height:18px;font-weight:400;}
 .mainMVFPs .note {font-size:18px;line-height:28px;font-weight:400;}
 .mainMVFPs .note + .note {margin-top:8px;}
 .mainMVFPs .note a {font-weight:600;color:var(--blue-prime);}
 @media only screen and (max-width: 1200px) {
  .mainMVFPs .icons {grid-template-columns:repeat(3,250px);}
 }
 @media only screen and (max-width: 1000px) {
  .mainMVFPs .icons {grid-template-columns:repeat(3,200px);}
 }
 @media only screen and (max-width: 800px) {
  .mainMVFPs .icons {grid-template-columns:repeat(2,250px);}
 }
 @media only screen and (max-width: 700px) {
  .mainMVFPs .icons {grid-template-columns:repeat(2,200px);}
 }
 @media only screen and (max-width: 600px) {
  .mainMVFPs {padding:32px 16px;}
  .mainMVFPs .title {font-size:20px;line-height:30px;}
  .mainMVFPs .note {font-size:14px;line-height:20px;}
  .mainMVFPs .icons {margin:16px 0px 20px 0px;}
  .mainMVFPs .icons a {font-size:16px;line-height:24px;font-weight:600;}
 }
 @media only screen and (max-width: 480px) {
  .mainMVFPs .icons {grid-template-columns:100%;gap:24px 0;}
  .mainMVFPs .icons a {width:100%;height:70px;padding-top:0px;padding-left:94px;text-align:left;}
  .mainMVFPs .icons a div.product {width:70px;height:70px;top:0px;left:0px;transform:none;background-position:11px 11px;background-repeat:no-repeat;background-size:48px 48px;}
  .mainMVFPs .icons a div.circle {position:absolute;width:75px;height:75px;top:-2px;left:-2px;transform:none;background-size:75px 75px;}
  .mainMVFPs .icons a span {left:35px;font-size:10px;line-height:14px;}
 }
 @media (hover: hover) {
  .mainMVFPs .icons a:hover {color:var(--blue-prime);}
  .mainMVFPs .note a:hover {opacity:0.8;text-decoration-line:underline;text-underline-position:from-font;}
  .mainMVFPs .icons a:hover div.product {background-position:center 11px;background-size:96px 96px;}
 }
 @media only screen and (max-width: 480px) and (hover: hover) {
  .mainMVFPs .icons a:hover div.product {background-position:9px 9px;background-size:52px 52px;}
 }
</style>
<div class="mainMVFPs noSelect">
 <div class="title">myVolts Products</div>
 <div class="icons">
  <!--
   <a href="SilentAlchemist" style="background-image:url('shopimages/products/thumbnails/SAP01.jpg'),var(--svg-white-circle);"><span>New</span><br><div>Silent Alchemist</div></a>
-->
   <a href="SilentAlchemist">
    <div style="background-image:url('shopimages/products/thumbnails/SAP01.jpg');" class="product"></div>
    <div class="circle"></div>
    <span>New</span><br>    <div class="prdTitle">Silent Alchemist</div>
    <div class="prdSubTitle">Noise-free power hub</div>   </a>
  <!--
   <a href="StepUpPower" style="background-image:url('imgs/prd/1551/1/1551_400_0.jpg'),var(--svg-white-circle);"><span>New</span><br><div>Step Up</div></a>
-->
   <a href="StepUpPower">
    <div style="background-image:url('imgs/prd/1551/1/1551_400_0.jpg');" class="product"></div>
    <div class="circle"></div>
    <span>New</span><br>    <div class="prdTitle">Step Up</div>
    <div class="prdSubTitle">USB-C power tip</div>   </a>
  <!--
   <a href="Ripcord" style="background-image:url('imgs/prd/973/1/973_400_0.jpg'),var(--svg-white-circle);"><div>Ripcord</div></a>
-->
   <a href="Ripcord">
    <div style="background-image:url('imgs/prd/973/1/973_400_0.jpg');" class="product"></div>
    <div class="circle"></div>
        <div class="prdTitle">Ripcord</div>
    <div class="prdSubTitle">USB to DC power cable</div>   </a>
  <!--
   <a href="ReVolt" style="background-image:url('imgs/prd/1116/1/1116_400_0.jpg'),var(--svg-white-circle);"><div>ReVolt</div></a>
-->
   <a href="ReVolt">
    <div style="background-image:url('imgs/prd/1116/1/1116_400_0.jpg');" class="product"></div>
    <div class="circle"></div>
        <div class="prdTitle">ReVolt</div>
    <div class="prdSubTitle">USB power your battery devices</div>   </a>
  <!--
   <a href="CandyCords" style="background-image:url('imgs/prd/1213/1/1213_400_0.jpg'),var(--svg-white-circle);"><div>Candycords</div></a>
-->
   <a href="CandyCords">
    <div style="background-image:url('imgs/prd/1213/1/1213_400_0.jpg');" class="product"></div>
    <div class="circle"></div>
        <div class="prdTitle">Candycords</div>
    <div class="prdSubTitle">Colorful, durable audio cables</div>   </a>
  <!--
   <a href="Halo" style="background-image:url('imgs/prd/1449/1/1449_400_0.jpg'),var(--svg-white-circle);"><div>Halos</div></a>
-->
   <a href="Halo">
    <div style="background-image:url('imgs/prd/1449/1/1449_400_0.jpg');" class="product"></div>
    <div class="circle"></div>
        <div class="prdTitle">Halos</div>
    <div class="prdSubTitle">Light up CV patch cable</div>   </a>
  <!--
   <a href="mickXer" style="background-image:url('imgs/prd/1016/1/1016_400_0.jpg'),var(--svg-white-circle);"><div>mickXer</div></a>
-->
   <a href="mickXer">
    <div style="background-image:url('imgs/prd/1016/1/1016_400_0.jpg');" class="product"></div>
    <div class="circle"></div>
        <div class="prdTitle">mickXer</div>
    <div class="prdSubTitle">Compact audio mixer</div>   </a>
  <!--
   <a href="Taps" style="background-image:url('imgs/prd/1268/1/1268_400_0.jpg'),var(--svg-white-circle);"><div>Taps</div></a>
-->
   <a href="Taps">
    <div style="background-image:url('imgs/prd/1268/1/1268_400_0.jpg');" class="product"></div>
    <div class="circle"></div>
        <div class="prdTitle">Taps</div>
    <div class="prdSubTitle">Audio control flow</div>   </a>
  <!--
   <a href="Korg_Volca_Splitter" style="background-image:url('imgs/prd/1346/1/1346_400_0.jpg'),var(--svg-white-circle);"><div>Korg Volca</div></a>
-->
   <a href="Korg_Volca_Splitter">
    <div style="background-image:url('imgs/prd/1346/1/1346_400_0.jpg');" class="product"></div>
    <div class="circle"></div>
        <div class="prdTitle">Korg Volca</div>
    <div class="prdSubTitle">5-way power splitter cable</div>   </a>
  <!--
   <a href="Roland_Boutiques_Splitter" style="background-image:url('imgs/prd/680/1/680_400_0.jpg'),var(--svg-white-circle);"><div>Roland Boutique</div></a>
-->
   <a href="Roland_Boutiques_Splitter">
    <div style="background-image:url('imgs/prd/680/1/680_400_0.jpg');" class="product"></div>
    <div class="circle"></div>
        <div class="prdTitle">Roland Boutique</div>
    <div class="prdSubTitle">5-way power splitter cable</div>   </a>
  <!--
   <a href="CrazyChain" style="background-image:url('imgs/prd/1090/1/1090_400_0.jpg'),var(--svg-white-circle);"><div>CrazyChain</div></a>
-->
   <a href="CrazyChain">
    <div style="background-image:url('imgs/prd/1090/1/1090_400_0.jpg');" class="product"></div>
    <div class="circle"></div>
        <div class="prdTitle">CrazyChain</div>
    <div class="prdSubTitle">Modular DC daisychain power cable</div>   </a>
  <!--
   <a href="CrazyChainMKII" style="background-image:url('imgs/prd/1548/1/1548_400_0.jpg'),var(--svg-white-circle);"><span>New</span><br><div>CrazyChain MKII</div></a>
-->
   <a href="CrazyChainMKII">
    <div style="background-image:url('imgs/prd/1548/1/1548_400_0.jpg');" class="product"></div>
    <div class="circle"></div>
    <span>New</span><br>    <div class="prdTitle">CrazyChain MKII</div>
    <div class="prdSubTitle">Modular power cable with polarity LEDs</div>   </a>
  <!--
   <a href="product/78698/myVolts_Step_Up_Explorer's_Kit" style="background-image:url('imgs/prd/1882/1/1882_400_0.jpg'),var(--svg-white-circle);"><div>Explorer's Kit</div></a>
-->
   <a href="product/78698/myVolts_Step_Up_Explorer's_Kit">
    <div style="background-image:url('imgs/prd/1882/1/1882_400_0.jpg');" class="product"></div>
    <div class="circle"></div>
        <div class="prdTitle">Explorer's Kit</div>
    <div class="prdSubTitle">Portable power setup</div>   </a>
  <!--
   <a href="section/10/1/power_banks" style="background-image:url('imgs/prd/1880/1/1880_400_0.jpg'),var(--svg-white-circle);"><div>Power Bank</div></a>
-->
   <a href="section/10/1/power_banks">
    <div style="background-image:url('imgs/prd/1880/1/1880_400_0.jpg');" class="product"></div>
    <div class="circle"></div>
        <div class="prdTitle">Power Bank</div>
    <div class="prdSubTitle">High power PD</div>   </a>
  <!--
   <a href="MVSearch?PSUs=1&catID=21" style="background-image:url('imgs/prd/939/1/939_400_0.jpg'),var(--svg-white-circle);"><div>Generic PSU</div></a>
-->
   <a href="MVSearch?PSUs=1&catID=21">
    <div style="background-image:url('imgs/prd/939/1/939_400_0.jpg');" class="product"></div>
    <div class="circle"></div>
        <div class="prdTitle">Generic PSU</div>
    <div class="prdSubTitle">Universal power supply</div>   </a>
  <!--
   <a href="PO_case" style="background-image:url('imgs/prd/1227/1/1227_400_0.jpg'),var(--svg-white-circle);"><div>PO Case</div></a>
-->
   <a href="PO_case">
    <div style="background-image:url('imgs/prd/1227/1/1227_400_0.jpg');" class="product"></div>
    <div class="circle"></div>
        <div class="prdTitle">PO Case</div>
    <div class="prdSubTitle">Protects Pocket Operators</div>   </a>
   </div>
 <div class="note">Need help finding a power supply? <span class="hideOnDesktop"></span>Try <a href="MVSearch?PSUs=1">Power supply finder</a></div>
 <div class="note">Want to create your own music gear setup? <span class="hideOnDesktop"></span>Try <a target="_blank" href="powermygear">Power my gear</a></div>
</div>
<style>
 .footerNew {color:var(--white);background-color:var(--gray-nv-bg);padding:46px 40px;font-size:14px;line-height:20px;font-weight:400;}
 .footerNew .footHeader {font-size:18px;line-height:28px;font-weight:700;margin-bottom:4px;}
 .footerNew a {color:var(--white);}
 .footerNew > div {opacity:0.85;}
 .footerNew .sections {display:flex;margin-bottom:36px;justify-content:space-between;align-items:start;}
 .footerNew .sections > div > div:not(:first-child) {margin-top:16px;}
 .footerNew .sms {margin-bottom:36px;height:20px;}
 .footerNew .sms a {display:inline-block;width:20px;height:20px;background-size:cover;}
 .footerNew .sms a:not(:first-child) {margin-left:24px;}
 .footerNew .epr {margin-bottom:8px;height:20px;}
 .footerNew .footButtonFull {display:inline-block;text-align:center;font-size:16px;line-height:24px;font-weight:600;padding:10px 18px;margin-top:20px;color:var(--white);border-radius:100px;background-color:#6F5AC0;}
 .footerNew ul {margin-top:16px;margin-bottom:0px;padding-left:16px;}
 .footerNew ul li::marker {font-size:10px;}
 @media only screen and (max-width: 1050px) {
  .footerNew .sections {display:grid;grid-template-columns:max-content max-content;row-gap:36px;}
  .footerNew .sections .row1 {order:2;}
  .footerNew .sections .row2 {order:1;}
  .footerNew .sections .row3 {order:4;}
  .footerNew .sections .row4 {order:3;}
  .footerNew .sections > div > div:not(:first-child) {margin-top:8px;}
 }
 @media only screen and (max-width: 600px) {
  .footerNew {padding:32px 16px;}
  .footerNew .sections {row-gap:32px;}
  .footerNew .footHeader {font-size:16px;line-height:24px;}
  .footerNew .footButtonFull {display:block;font-size:14px;line-height:20px;margin-top:12px;}

  .footerNew .sections {display:flex;flex-direction:column;}
  .footerNew .sections .row1 {order:1;}
  .footerNew .sections .row2 {order:2;}
  .footerNew .sections .row3 {order:3;}
  .footerNew .sections .row4 {order:4;}
 }
 @media (hover: hover) {
  .footerNew a:not(.footButtonFull):hover {text-decoration-line:underline;text-underline-position:from-font;}
  .footerNew .footButtonFull:hover {background-color:#4D3893;}
 }
</style>
<div class="footerNew noSelect" id="footerNew">
 <div class="sections">
  <div class="row2">
   <div class="footHeader">Information</div>
           <div><a href="https://myvolts.com/article/8/about_myvolts/0d04cba18a63edcd907e4e5e138ed23a">About myVolts</a></div>
           <div><a href="https://myvolts.com/article/10/myvolts_shipping_faq/0d04cba18a63edcd907e4e5e138ed23a">Shipping Policy</a></div>
           <div><a href="https://myvolts.com/article/7/security_and_privacy/0d04cba18a63edcd907e4e5e138ed23a">Privacy Policy</a></div>
           <div><a href="https://myvolts.com/article/6/terms_and_conditions/0d04cba18a63edcd907e4e5e138ed23a">Terms &amp; Conditions</a></div>
     </div>
  <div class="row3">
   <div class="footHeader">Contact us</div>
<!--   <div><a href="./reviews">Customer Reviews</a></div>  -->
           <div><a href="https://myvolts.com/article/9/bulk_trade_retailer_enquires/0d04cba18a63edcd907e4e5e138ed23a">Retailers / Distributors / Bulk Orders</a></div>
      <div><a href="./Help">FAQ &amp; Support</a></div>
   <div>Call myVolts USA: <a href="tel:+13155090047">(315)&nbsp;509-0047</a></div>
  </div>
  <div class="row4">
   <div class="footHeader">Other myVolts shops</div>
   <div><a target="_blank" href="https://myvolts.co.uk">myvolts.co.uk</a></div>
   <div><a target="_blank" href="https://myvolts.de">myvolts.de</a></div>
   <div><a target="_blank" href="https://myvolts.fr">myvolts.fr</a></div>
  </div>
  <div class="row1">
   <div class="footHeader">Sign up to newsletter for 15% off</div>
   <a target="_blank" href="https://myvolts.com/signup" class="footButtonFull">Subscribe now</a>
   <ul>
    <li>Get an instant 15% discount code</li>
    <li>Exclusive monthly member offers</li>
    <li>The latest power & gear updates</li>
   </ul>
  </div>
 </div>
 <div class="sms">
  <a class="smIconIn" target="_blank" href="https://www.instagram.com/myvolts"></a>
  <a class="smIconFb" target="_blank" href="https://www.facebook.com/MyVolts"></a>
  <a class="smIconYt" target="_blank" href="https://www.youtube.com/channel/UCf3McyRC5XjOY9tmTbK6kRg"></a>
  <a class="smIconX" target="_blank" href="https://x.com/MyVoltsTweets"></a>
  <a class="smIconLi" target="_blank" href="https://ie.linkedin.com/company/myvolts"></a>
 </div>
 <div>&copy; 2026 myVolts</div>
</div>
<script type="text/javascript">
 window.addEventListener('click', ({ target }) => {
  let closedSub=false;
  let popup = target.closest('.dontHideSub');
  if(!popup) {
   let toClose = [...document.getElementsByClassName('hideOnEscapeSub')];
   toClose.forEach(p => {
    if(p.style.display=="block") {p.style.display=""; event.stopPropagation(); closedSub=true;}
   });
  }
  if(!closedSub) {
   popup = target.closest('.dontHide');
   if(!popup) {
    toClose = [...document.getElementsByClassName('hideOnEscape')];
    toClose.forEach(p => {
     if(p.classList.contains("filterMenu") && p.previousElementSibling.classList.contains("selected")) {p.previousElementSibling.classList.remove('selected'); event.stopPropagation();}
     else if(p.style.display=="block") {
      p.style.display=""; 
      event.stopPropagation();
      if(p.id=="imgGallery") pauseGalleryVideos();
     }
    });
   }
  }
 });
 window.addEventListener("keydown", (event) => {
  if(event.key=='Escape') {
   let closedSub=false;
   let toClose = [...document.getElementsByClassName('hideOnEscapeSub')];
   toClose.forEach(p => {
    if(p.style.display=="block") {p.style.display=""; event.stopPropagation(); closedSub=true;}
   });
   if(!closedSub) {
    let toClose = [...document.getElementsByClassName('hideOnEscape')];
    toClose.forEach(p => {
     if(p.classList.contains("filterMenu")) p.previousElementSibling.classList.remove('selected');
     else if(p.style.display=="block") {
      p.style.display="";
      if(p.id=="searchSuggTop") document.getElementById("searchPhraseTop").blur();
      if(p.id=="imgGallery") pauseGalleryVideos();
     }
    });
   }
  }
 });
 window.onload = function WindowLoad(event) {
  var links=document.getElementsByTagName('a');
  for(i=0;i<links.length;i++) {
   if(links[i].className=="text-m") links[i].onclick=function() {return false;};
  }
 }
 window.addEventListener('load', function () {
  var links=document.getElementsByTagName('a');
  for(i=0;i<links.length;i++) {
   if(links[i].className=="text-m") links[i].onclick=function() {return false;};
  }
 });
</script>

<style>
 .yotpo-bottomline > a {line-height:20px !important;font-weight:600;text-underline-position:from-font;font-family:'Open Sans',sans-serif !important;margin-left:8px !important;}
 .yotpo a {color:#1f1f1f !important;text-decoration-line:underline !important;}
 .yotpo a:hover {color:#1f1f1f !important;text-decoration-line:underline !important;}
</style>

</body>
</html>