brickerbuilds.com Open in urlscan Pro
23.227.38.65  Public Scan

Submitted URL: http://brickerbuilds.com/
Effective URL: https://brickerbuilds.com/en-ca
Submission Tags: tranco_l324
Submission: On May 10 via api from DE — Scanned from CA

Form analysis 5 forms found in the DOM

POST /en-ca/cart

<form id="CartDrawerForm" action="/en-ca/cart" method="post" novalidate="" class="drawer__contents" data-location="cart-drawer">
  <div class="drawer__fixed-header">
    <div class="drawer__header appear-animation appear-delay-1">
      <div class="h2 drawer__title">Cart</div>
      <div class="drawer__close">
        <button type="button" class="drawer__close-button js-drawer-close">
          <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-close" viewBox="0 0 64 64">
            <title>icon-X</title>
            <path d="m19 17.61 27.12 27.13m0-27.12L19 44.74"></path>
          </svg>
          <span class="icon__fallback-text">Close cart</span>
        </button>
      </div>
    </div>
  </div>
  <div class="drawer__inner">
    <div class="drawer__scrollable">
      <div data-products="" class="appear-animation appear-delay-2">
        <div class="cart__items" data-count="0" data-cart-subtotal="0">
        </div>
      </div>
    </div>
    <div id="shipping-bar-container">
      <p id="shipping-bar-label" for="free-shipping-progress" data-success-msg="Congratulations you qualify for FREE shipping" data-fs-before="You're only" data-fs-after="away from FREE shipping" data-amount-remaining="7500">You're only <span>$75.00
          CAD</span> away from FREE shipping</p>
      <progress id="free-shipping-progress" max="100" value="0" data-threshold="7500"> 0% </progress>
    </div>
    <style>
      div#shipping-bar-container {
        margin: 1rem auto;
        padding: 0 1rem;
      }

      progress {
        border-radius: 50%;
        width: 100%;
        height: 10px;
        box-shadow: 1px 1px 1px black;
      }

      progress::-webkit-progress-bar {
        background-color: white;
        border-radius: 5px;
      }

      progress::-webkit-progress-value {
        background-color: #9f8561;
        border-radius: 5px;
        box-shadow: 0px 0px 0px 0px black;
      }

      progress::-webkit-progress-value {
        background-color: #54c539;
      }
    </style>
    <script>
      const progress = document.querySelector('progress#free-shipping-progress');
      const threshold = progress.dataset.threshold;
      const fsMsg = document.querySelector('p#shipping-bar-label')
      const amountRemaining = document.querySelector('progress#free-shipping-progress').dataset.amountRemaining;
      const msgBefore = fsMsg.dataset.fsBefore;
      const msgAfter = fsMsg.dataset.fsAfter;
      const successMsg = fsMsg.dataset.successMsg;

      function updateFreeShipping(evt) {
        const newCart = evt.detail.cart;
        const newAmount = threshold - newCart.items_subtotal_price;
        const newProgress = newCart.items_subtotal_price / threshold * 100;
        if (newCart.items_subtotal_price == 0 || newCart.requires_shipping == false) {
          fsMsg.style.display = "none";
          progress.style.display = "none";
        } else {
          fsMsg.style.display = "block";
          progress.style.display = "block";
        }
        if (newAmount > 0) {
          fsMsg.innerHTML = msgBefore + " " + theme.Currency.formatMoney(newAmount, theme.settings.moneyFormat) + " " + msgAfter;
          progress.setAttribute("value", newProgress);
          progress.innerHTML = newProgress + "%";
        } else {
          fsMsg.innerHTML = successMsg;
          progress.setAttribute("value", "100");
        }
      }

      function updateFreeShippingProduct(cartInfo) {
        const newCart = cartInfo;
        const newAmount = threshold - newCart.items_subtotal_price;
        const newProgress = newCart.items_subtotal_price / threshold * 100;
        if (newCart.items_subtotal_price == 0) {
          fsMsg.style.display = "none";
          progress.style.display = "none";
        } else {
          fsMsg.style.display = "block";
          progress.style.display = "block";
        }
        if (newAmount > 0) {
          fsMsg.innerHTML = msgBefore + " " + theme.Currency.formatMoney(newAmount, theme.settings.moneyFormat) + " " + msgAfter;
          progress.setAttribute("value", newProgress);
          progress.innerHTML = newProgress + "%";
        } else {
          fsMsg.innerHTML = successMsg;
          progress.setAttribute("value", "100");
        }
      }
      document.addEventListener('cart:updated', function(evt) {
        updateFreeShipping(evt);
      });
      document.addEventListener('ajaxProduct:added', function() {
        fetch('/cart.js').then(response => response.json()).then(data => cartInfo = data).then(() => updateFreeShippingProduct(cartInfo)).catch((error) => {
          console.error('Error:', error);
        });
      });
    </script>
    <div class="drawer__footer appear-animation appear-delay-4">
      <div data-discounts="">
        <div class="cart__discounts cart__item-sub cart__item-row hide">
          <div>Discounts</div>
          <div>
          </div>
        </div>
      </div>
      <div class="cart__item-sub cart__item-row">
        <div class="ajaxcart__subtotal">Subtotal</div>
        <div data-subtotal="">$0.00</div>
      </div>
      <div class="cart__item-row text-center">
        <small> Shipping, taxes, and discount codes calculated at checkout.<br>
        </small>
      </div>
      <div class="cart__checkout-wrapper">
        <button type="submit" name="checkout" data-terms-required="false" class="btn cart__checkout"> Check out </button>
      </div>
    </div>
  </div>
  <div class="drawer__cart-empty appear-animation appear-delay-2">
    <div class="drawer__scrollable"> Your cart is currently empty. </div>
  </div>
</form>

GET /en-ca/search

<form action="/en-ca/search" method="get" role="search">
  <label for="Search" class="hidden-label">Search</label>
  <div class="search__input-wrap">
    <input class="search__input" id="Search" type="search" name="q" value="" role="combobox" aria-expanded="false" aria-owns="predictive-search-results" aria-controls="predictive-search-results" aria-haspopup="listbox" aria-autocomplete="list"
      autocorrect="off" autocomplete="off" autocapitalize="off" spellcheck="false" placeholder="Search" tabindex="0">
    <input name="options[prefix]" type="hidden" value="last">
    <button class="btn--search" type="submit">
      <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-search" viewBox="0 0 64 64">
        <defs>
          <style>
            .cls-1 {
              fill: none;
              stroke: #000;
              stroke-miterlimit: 10;
              stroke-width: 2px
            }
          </style>
        </defs>
        <path class="cls-1" d="M47.16 28.58A18.58 18.58 0 1 1 28.58 10a18.58 18.58 0 0 1 18.58 18.58zM54 54L41.94 42"></path>
      </svg>
      <span class="icon__fallback-text">Search</span>
    </button>
  </div>
  <button class="btn--close-search">
    <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-close" viewBox="0 0 64 64">
      <defs>
        <style>
          .cls-1 {
            fill: none;
            stroke: #000;
            stroke-miterlimit: 10;
            stroke-width: 2px
          }
        </style>
      </defs>
      <path class="cls-1" d="M19 17.61l27.12 27.13m0-27.13L19 44.74"></path>
    </svg>
  </button>
  <div id="predictive-search" class="search__results" tabindex="-1"></div>
</form>

POST /en-ca/contact#newsletter-template--17672183513321__1658245918515ef3b1

<form method="post" action="/en-ca/contact#newsletter-template--17672183513321__1658245918515ef3b1" id="newsletter-template--17672183513321__1658245918515ef3b1" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type"
    value="customer"><input type="hidden" name="utf8" value="✓">
  <label for="Email-template--17672183513321__1658245918515ef3b1" class="hidden-label">Enter your email</label>
  <label for="newsletter-form-submit-template--17672183513321__1658245918515ef3b1" class="hidden-label">Subscribe</label>
  <input type="hidden" name="contact[tags]" value="prospect,newsletter">
  <input type="hidden" name="contact[context]" value="section">
  <div class="input-group newsletter__input-group">
    <input type="email" value="" placeholder="Enter your email" name="contact[email]" id="Email-template--17672183513321__1658245918515ef3b1" class="input-group-field newsletter__input" autocorrect="off" autocapitalize="off">
    <div class="input-group-btn">
      <button type="submit" id="newsletter-form-submit-template--17672183513321__1658245918515ef3b1" class="btn" name="commit">
        <span class="form__submit--large">Subscribe</span>
        <span class="form__submit--small">
          <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-arrow-right" viewBox="0 0 50 15">
            <title>icon-right-arrow</title>
            <path d="M0 9.63V5.38h35V0l15 7.5L35 15V9.63Z"></path>
          </svg>
        </span>
      </button>
    </div>
  </div>
</form>

POST /en-ca/contact#newsletter-footer

<form method="post" action="/en-ca/contact#newsletter-footer" id="newsletter-footer" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type" value="customer"><input type="hidden" name="utf8" value="✓"><label
    for="Email-footer-5" class="hidden-label">Enter your email</label>
  <label for="newsletter-submit-footer-5" class="hidden-label">Subscribe</label>
  <input type="hidden" name="contact[tags]" value="prospect,newsletter">
  <input type="hidden" name="contact[context]" value="footer">
  <div class="footer__newsletter">
    <input type="email" value="" placeholder="Enter your email" name="contact[email]" id="Email-footer-5" class="footer__newsletter-input" autocorrect="off" autocapitalize="off">
    <button type="submit" id="newsletter-submit-footer-5" class="footer__newsletter-btn" name="commit">
      <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-email" viewBox="0 0 64 64">
        <title>icon-email</title>
        <path d="M63 52H1V12h62ZM1 12l25.68 24h9.72L63 12M21.82 31.68 1.56 51.16m60.78.78L41.27 31.68"></path>
      </svg>
      <span class="footer__newsletter-btn-label"> Subscribe </span>
    </button>
  </div>
</form>

POST /en-ca/localization

<form method="post" action="/en-ca/localization" id="localization_formfooter" accept-charset="UTF-8" class="multi-selectors" enctype="multipart/form-data" data-disclosure-form=""><input type="hidden" name="form_type" value="localization"><input
    type="hidden" name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/en-ca">
  <div class="multi-selectors__item">
    <h2 class="visually-hidden" id="LangHeading-footer"> Language </h2>
    <div class="disclosure" data-disclosure-locale="">
      <button type="button" class="faux-select disclosure__toggle" aria-expanded="false" aria-controls="LangList-footer" aria-describedby="LangHeading-footer" data-disclosure-toggle="">
        <span class="disclosure-list__label"> English </span>
        <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-chevron-down" viewBox="0 0 28 16">
          <path d="m1.57 1.59 12.76 12.77L27.1 1.59" stroke-width="2" stroke="#000" fill="none"></path>
        </svg>
      </button>
      <ul id="LangList-footer" class="disclosure-list" data-disclosure-list="">
        <li class="disclosure-list__item disclosure-list__item--current">
          <a class="disclosure-list__option" href="#" lang="en" aria-current="true" data-value="en" data-disclosure-option="">
                <span class="disclosure-list__label">
                  English
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" lang="fr" data-value="fr" data-disclosure-option="">
                <span class="disclosure-list__label">
                  Français
                </span>
              </a>
        </li>
      </ul>
      <input type="hidden" name="locale_code" id="LocaleSelector-footer" value="en" data-disclosure-input="">
    </div>
  </div>
  <div class="multi-selectors__item">
    <h2 class="visually-hidden" id="CurrencyHeading-footer"> Currency </h2>
    <div class="disclosure" data-disclosure-currency="">
      <button type="button" class="faux-select disclosure__toggle" aria-expanded="false" aria-controls="CurrencyList-footer" aria-describedby="CurrencyHeading-footer" data-disclosure-toggle=""><span class="currency-flag currency-flag--ca"
          data-flag="CAD" aria-hidden="true"></span><span class="disclosure-list__label"> Canada (CAD $) </span>
        <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-chevron-down" viewBox="0 0 28 16">
          <path d="m1.57 1.59 12.76 12.77L27.1 1.59" stroke-width="2" stroke="#000" fill="none"></path>
        </svg>
      </button>
      <ul id="CurrencyList-footer" class="disclosure-list" data-disclosure-list="">
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="AL" data-disclosure-option=""><span class="currency-flag currency-flag--al" data-flag="ALL" aria-hidden="true"></span><span class="disclosure-list__label">
                  Albania (ALL L)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="AR" data-disclosure-option=""><span class="currency-flag currency-flag--ar" data-flag="USD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Argentina (USD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="AU" data-disclosure-option=""><span class="currency-flag currency-flag--au" data-flag="AUD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Australia (AUD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="AT" data-disclosure-option=""><span class="currency-flag currency-flag--at" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Austria (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="BS" data-disclosure-option=""><span class="currency-flag currency-flag--bs" data-flag="BSD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Bahamas (BSD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="BB" data-disclosure-option=""><span class="currency-flag currency-flag--bb" data-flag="BBD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Barbados (BBD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="BY" data-disclosure-option=""><span class="currency-flag currency-flag--by" data-flag="USD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Belarus (USD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="BE" data-disclosure-option=""><span class="currency-flag currency-flag--be" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Belgium (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="BZ" data-disclosure-option=""><span class="currency-flag currency-flag--bz" data-flag="BZD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Belize (BZD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="BR" data-disclosure-option=""><span class="currency-flag currency-flag--br" data-flag="USD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Brazil (USD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="BG" data-disclosure-option=""><span class="currency-flag currency-flag--bg" data-flag="BGN" aria-hidden="true"></span><span class="disclosure-list__label">
                  Bulgaria (BGN лв.)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item disclosure-list__item--current">
          <a class="disclosure-list__option" href="#" aria-current="true" data-value="CA" data-disclosure-option=""><span class="currency-flag currency-flag--ca" data-flag="CAD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Canada (CAD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="KY" data-disclosure-option=""><span class="currency-flag currency-flag--ky" data-flag="KYD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Cayman Islands (KYD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="CL" data-disclosure-option=""><span class="currency-flag currency-flag--cl" data-flag="USD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Chile (USD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="CN" data-disclosure-option=""><span class="currency-flag currency-flag--cn" data-flag="CNY" aria-hidden="true"></span><span class="disclosure-list__label">
                  China (CNY ¥)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="CO" data-disclosure-option=""><span class="currency-flag currency-flag--co" data-flag="USD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Colombia (USD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="CR" data-disclosure-option=""><span class="currency-flag currency-flag--cr" data-flag="CRC" aria-hidden="true"></span><span class="disclosure-list__label">
                  Costa Rica (CRC ₡)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="HR" data-disclosure-option=""><span class="currency-flag currency-flag--hr" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Croatia (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="CW" data-disclosure-option=""><span class="currency-flag currency-flag--cw" data-flag="ANG" aria-hidden="true"></span><span class="disclosure-list__label">
                  Curaçao (ANG ƒ)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="CY" data-disclosure-option=""><span class="currency-flag currency-flag--cy" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Cyprus (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="CZ" data-disclosure-option=""><span class="currency-flag currency-flag--cz" data-flag="CZK" aria-hidden="true"></span><span class="disclosure-list__label">
                  Czechia (CZK Kč)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="DK" data-disclosure-option=""><span class="currency-flag currency-flag--dk" data-flag="DKK" aria-hidden="true"></span><span class="disclosure-list__label">
                  Denmark (DKK kr.)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="EC" data-disclosure-option=""><span class="currency-flag currency-flag--ec" data-flag="USD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Ecuador (USD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="SV" data-disclosure-option=""><span class="currency-flag currency-flag--sv" data-flag="USD" aria-hidden="true"></span><span class="disclosure-list__label">
                  El Salvador (USD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="EE" data-disclosure-option=""><span class="currency-flag currency-flag--ee" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Estonia (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="ET" data-disclosure-option=""><span class="currency-flag currency-flag--et" data-flag="ETB" aria-hidden="true"></span><span class="disclosure-list__label">
                  Ethiopia (ETB Br)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="FI" data-disclosure-option=""><span class="currency-flag currency-flag--fi" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Finland (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="FR" data-disclosure-option=""><span class="currency-flag currency-flag--fr" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  France (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="PF" data-disclosure-option=""><span class="currency-flag currency-flag--pf" data-flag="XPF" aria-hidden="true"></span><span class="disclosure-list__label">
                  French Polynesia (XPF Fr)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="DE" data-disclosure-option=""><span class="currency-flag currency-flag--de" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Germany (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="GR" data-disclosure-option=""><span class="currency-flag currency-flag--gr" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Greece (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="GD" data-disclosure-option=""><span class="currency-flag currency-flag--gd" data-flag="XCD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Grenada (XCD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="GY" data-disclosure-option=""><span class="currency-flag currency-flag--gy" data-flag="GYD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Guyana (GYD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="HN" data-disclosure-option=""><span class="currency-flag currency-flag--hn" data-flag="HNL" aria-hidden="true"></span><span class="disclosure-list__label">
                  Honduras (HNL L)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="HK" data-disclosure-option=""><span class="currency-flag currency-flag--hk" data-flag="HKD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Hong Kong SAR (HKD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="HU" data-disclosure-option=""><span class="currency-flag currency-flag--hu" data-flag="HUF" aria-hidden="true"></span><span class="disclosure-list__label">
                  Hungary (HUF Ft)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="IS" data-disclosure-option=""><span class="currency-flag currency-flag--is" data-flag="ISK" aria-hidden="true"></span><span class="disclosure-list__label">
                  Iceland (ISK kr)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="IN" data-disclosure-option=""><span class="currency-flag currency-flag--in" data-flag="INR" aria-hidden="true"></span><span class="disclosure-list__label">
                  India (INR ₹)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="ID" data-disclosure-option=""><span class="currency-flag currency-flag--id" data-flag="IDR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Indonesia (IDR Rp)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="IQ" data-disclosure-option=""><span class="currency-flag currency-flag--iq" data-flag="USD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Iraq (USD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="IE" data-disclosure-option=""><span class="currency-flag currency-flag--ie" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Ireland (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="IL" data-disclosure-option=""><span class="currency-flag currency-flag--il" data-flag="ILS" aria-hidden="true"></span><span class="disclosure-list__label">
                  Israel (ILS ₪)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="IT" data-disclosure-option=""><span class="currency-flag currency-flag--it" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Italy (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="JM" data-disclosure-option=""><span class="currency-flag currency-flag--jm" data-flag="JMD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Jamaica (JMD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="JP" data-disclosure-option=""><span class="currency-flag currency-flag--jp" data-flag="JPY" aria-hidden="true"></span><span class="disclosure-list__label">
                  Japan (JPY ¥)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="KE" data-disclosure-option=""><span class="currency-flag currency-flag--ke" data-flag="KES" aria-hidden="true"></span><span class="disclosure-list__label">
                  Kenya (KES KSh)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="LV" data-disclosure-option=""><span class="currency-flag currency-flag--lv" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Latvia (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="LB" data-disclosure-option=""><span class="currency-flag currency-flag--lb" data-flag="LBP" aria-hidden="true"></span><span class="disclosure-list__label">
                  Lebanon (LBP ل.ل)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="LI" data-disclosure-option=""><span class="currency-flag currency-flag--li" data-flag="CHF" aria-hidden="true"></span><span class="disclosure-list__label">
                  Liechtenstein (CHF CHF)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="LT" data-disclosure-option=""><span class="currency-flag currency-flag--lt" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Lithuania (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="LU" data-disclosure-option=""><span class="currency-flag currency-flag--lu" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Luxembourg (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="MO" data-disclosure-option=""><span class="currency-flag currency-flag--mo" data-flag="MOP" aria-hidden="true"></span><span class="disclosure-list__label">
                  Macao SAR (MOP P)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="MY" data-disclosure-option=""><span class="currency-flag currency-flag--my" data-flag="MYR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Malaysia (MYR RM)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="MT" data-disclosure-option=""><span class="currency-flag currency-flag--mt" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Malta (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="MU" data-disclosure-option=""><span class="currency-flag currency-flag--mu" data-flag="MUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Mauritius (MUR ₨)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="MX" data-disclosure-option=""><span class="currency-flag currency-flag--mx" data-flag="MXN" aria-hidden="true"></span><span class="disclosure-list__label">
                  Mexico (MXN $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="MC" data-disclosure-option=""><span class="currency-flag currency-flag--mc" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Monaco (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="MA" data-disclosure-option=""><span class="currency-flag currency-flag--ma" data-flag="MAD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Morocco (MAD د.م.)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="NL" data-disclosure-option=""><span class="currency-flag currency-flag--nl" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Netherlands (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="NZ" data-disclosure-option=""><span class="currency-flag currency-flag--nz" data-flag="NZD" aria-hidden="true"></span><span class="disclosure-list__label">
                  New Zealand (NZD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="NF" data-disclosure-option=""><span class="currency-flag currency-flag--nf" data-flag="AUD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Norfolk Island (AUD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="NO" data-disclosure-option=""><span class="currency-flag currency-flag--no" data-flag="USD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Norway (USD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="PH" data-disclosure-option=""><span class="currency-flag currency-flag--ph" data-flag="PHP" aria-hidden="true"></span><span class="disclosure-list__label">
                  Philippines (PHP ₱)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="PL" data-disclosure-option=""><span class="currency-flag currency-flag--pl" data-flag="PLN" aria-hidden="true"></span><span class="disclosure-list__label">
                  Poland (PLN zł)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="PT" data-disclosure-option=""><span class="currency-flag currency-flag--pt" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Portugal (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="RO" data-disclosure-option=""><span class="currency-flag currency-flag--ro" data-flag="RON" aria-hidden="true"></span><span class="disclosure-list__label">
                  Romania (RON Lei)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="SM" data-disclosure-option=""><span class="currency-flag currency-flag--sm" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  San Marino (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="SA" data-disclosure-option=""><span class="currency-flag currency-flag--sa" data-flag="SAR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Saudi Arabia (SAR ر.س)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="RS" data-disclosure-option=""><span class="currency-flag currency-flag--rs" data-flag="RSD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Serbia (RSD РСД)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="SG" data-disclosure-option=""><span class="currency-flag currency-flag--sg" data-flag="SGD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Singapore (SGD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="SX" data-disclosure-option=""><span class="currency-flag currency-flag--sx" data-flag="ANG" aria-hidden="true"></span><span class="disclosure-list__label">
                  Sint Maarten (ANG ƒ)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="SK" data-disclosure-option=""><span class="currency-flag currency-flag--sk" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Slovakia (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="SI" data-disclosure-option=""><span class="currency-flag currency-flag--si" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Slovenia (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="ZA" data-disclosure-option=""><span class="currency-flag currency-flag--za" data-flag="USD" aria-hidden="true"></span><span class="disclosure-list__label">
                  South Africa (USD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="KR" data-disclosure-option=""><span class="currency-flag currency-flag--kr" data-flag="KRW" aria-hidden="true"></span><span class="disclosure-list__label">
                  South Korea (KRW ₩)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="ES" data-disclosure-option=""><span class="currency-flag currency-flag--es" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  Spain (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="SH" data-disclosure-option=""><span class="currency-flag currency-flag--sh" data-flag="SHP" aria-hidden="true"></span><span class="disclosure-list__label">
                  St. Helena (SHP £)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="KN" data-disclosure-option=""><span class="currency-flag currency-flag--kn" data-flag="XCD" aria-hidden="true"></span><span class="disclosure-list__label">
                  St. Kitts &amp; Nevis (XCD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="LC" data-disclosure-option=""><span class="currency-flag currency-flag--lc" data-flag="XCD" aria-hidden="true"></span><span class="disclosure-list__label">
                  St. Lucia (XCD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="MF" data-disclosure-option=""><span class="currency-flag currency-flag--mf" data-flag="EUR" aria-hidden="true"></span><span class="disclosure-list__label">
                  St. Martin (EUR €)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="SE" data-disclosure-option=""><span class="currency-flag currency-flag--se" data-flag="SEK" aria-hidden="true"></span><span class="disclosure-list__label">
                  Sweden (SEK kr)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="CH" data-disclosure-option=""><span class="currency-flag currency-flag--ch" data-flag="CHF" aria-hidden="true"></span><span class="disclosure-list__label">
                  Switzerland (CHF CHF)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="TW" data-disclosure-option=""><span class="currency-flag currency-flag--tw" data-flag="TWD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Taiwan (TWD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="TH" data-disclosure-option=""><span class="currency-flag currency-flag--th" data-flag="THB" aria-hidden="true"></span><span class="disclosure-list__label">
                  Thailand (THB ฿)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="TT" data-disclosure-option=""><span class="currency-flag currency-flag--tt" data-flag="TTD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Trinidad &amp; Tobago (TTD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="TR" data-disclosure-option=""><span class="currency-flag currency-flag--tr" data-flag="USD" aria-hidden="true"></span><span class="disclosure-list__label">
                  Türkiye (USD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="UM" data-disclosure-option=""><span class="currency-flag currency-flag--um" data-flag="USD" aria-hidden="true"></span><span class="disclosure-list__label">
                  U.S. Outlying Islands (USD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="AE" data-disclosure-option=""><span class="currency-flag currency-flag--ae" data-flag="AED" aria-hidden="true"></span><span class="disclosure-list__label">
                  United Arab Emirates (AED د.إ)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="GB" data-disclosure-option=""><span class="currency-flag currency-flag--gb" data-flag="GBP" aria-hidden="true"></span><span class="disclosure-list__label">
                  United Kingdom (GBP £)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="US" data-disclosure-option=""><span class="currency-flag currency-flag--us" data-flag="USD" aria-hidden="true"></span><span class="disclosure-list__label">
                  United States (USD $)
                </span>
              </a>
        </li>
        <li class="disclosure-list__item">
          <a class="disclosure-list__option" href="#" data-value="VN" data-disclosure-option=""><span class="currency-flag currency-flag--vn" data-flag="VND" aria-hidden="true"></span><span class="disclosure-list__label">
                  Vietnam (VND ₫)
                </span>
              </a>
        </li>
      </ul>
      <input type="hidden" name="country_code" value="CA" data-disclosure-input="">
    </div>
  </div>
</form>

Text Content

Skip to content
Pause slideshow Play slideshow
NEWCheck out our limited edition Tano's White Sabers
icon-X Close menu
 * Most Popular
 * Collections
   
    * Italian Brothers
    * Pocket Monsters
    * All Products
    * In a Galaxy Far Away
       * LIMITED EDITION Tano's White Sabers
       * Boba's Helmet
       * Wieldable Sabers
       * Lord Maul Bust
       * Lord Vader Bust
       * Mando's Helmet
       * Captain Rex's Helmet
       * Thermal Detonator
   
    * Super Heroes
       * NEW Joker's Playing Card
       * NEW Bat Weapons
       * Arc Reactor
       * Web Slinger Bust
       * Merc with a Mouth
       * Adamantium Claws
       * Dragon Dagger
       * Tony Stark's Mark III Helmet
       * Cap's Shield
       * Eye of Agamotto
       * Pumpkin Bomb
       * Vibranium Necklace
       * Web Shooters
   
    * Animated Classics
       * Party Piñata NEW
       * Hero's Sword
       * Turtle Weapons
       * Pocket Monster Collection
       * Pocket Spheres
       * Air Bender & Friends
       * Italian Brothers
       * Spartan 117 Helmet
       * Rick's Portal Gun
       * Aku Aku & Uka Uka Mask
   
    * Live-Action Builds
       * Pirate Compass by Steven Erickson
       * Sting Sword
       * American Football
       * Baseball
       * Dinosaur Eggs
       * DNA Container
       * Mosquito in Amber

 * About
   
    * Our Story
    * Common Questions
    * Contact Us

 * Log in

 * instagram Instagram
 * Facebook
 * YouTube
 * TikTok

Cart
icon-X Close cart

You're only $75.00 CAD away from FREE shipping

0%
Discounts

Subtotal
$0.00
Shipping, taxes, and discount codes calculated at checkout.

Check out
Your cart is currently empty.


BRICKER BUILDS

 * Most Popular
 * Collections
   Italian Brothers
   Pocket Monsters
   All Products
   In a Galaxy Far Away
   LIMITED EDITION Tano's White Sabers
   Boba's Helmet
   Wieldable Sabers
   Lord Maul Bust
   Lord Vader Bust
   Mando's Helmet
   Captain Rex's Helmet
   Thermal Detonator
   Super Heroes
   NEW Joker's Playing Card
   NEW Bat Weapons
   Arc Reactor
   Web Slinger Bust
   Merc with a Mouth
   Adamantium Claws
   Dragon Dagger
   Tony Stark's Mark III Helmet
   Cap's Shield
   Eye of Agamotto
   Pumpkin Bomb
   Vibranium Necklace
   Web Shooters
   Animated Classics
   Party Piñata NEW
   Hero's Sword
   Turtle Weapons
   Pocket Monster Collection
   Pocket Spheres
   Air Bender & Friends
   Italian Brothers
   Spartan 117 Helmet
   Rick's Portal Gun
   Aku Aku & Uka Uka Mask
   Live-Action Builds
   Pirate Compass by Steven Erickson
   Sting Sword
   American Football
   Baseball
   Dinosaur Eggs
   DNA Container
   Mosquito in Amber
 * About
    * Our Story
    * Common Questions
    * Contact Us

account Log in icon-search Search icon-hamburger Site navigation Cart
Search
Search

May 4th Celebration
TANO'S WHITE SABERS

Check out these Limited Edition Sabers
Shop Now
New
JOKER PLAYING CARD

Build the Clown Prince's calling card with LEGO® bricks
Shop Now
best seller
YELLOW STAR

Feel invincible this spring with our best selling video game item!
I want to build it
In stock
PIRATE COMPASS

Stephen Erickson's Pirate Compass is back in stock & ready to ship.
Shop Now


SHOP MAY 4TH CELEBRATION

View all

Quick view
Tano's White Sabers Life-Sized Replica



$458.00

icon-X "Close (esc)"

Quick view
Black Saber Life-Sized Replica
(14)



$305.00

icon-X "Close (esc)"

Quick view
Boba's Helmet Life-Sized Replica
(4)

Only 3 left in stock!


$832.00

More options: $73.00


icon-X "Close (esc)"

Quick view
Luke’s Episode IV Saber Life-Sized Replica
(2)



$250.00

icon-X "Close (esc)"
View all
23 products
Light-up


ARC REACTOR

Build this life-sized Arc Reactor with LEGO® bricks!
Shop Now
$264.00




FIRE FLOWER

Shop Now
Check out our


POCKET SPHERE COLLECTION

Build your own handheld Pocket Sphere out of LEGO® bricks!
Shop Now
$56.00




PADAWAN TANO'S SABERS

Shop This Shop All Sabers


DINO EGGS

Build these adorable dinosaur eggs with genuine LEGO® bricks!
Shop Now



SHOP ITALIAN BROTHERS

View all

Quick view
Angry Ghost Life-Sized Replica
(4)



$693.00

More options: $70.00


icon-X "Close (esc)"

Quick view
Mini Angry Bomb
(36)



$35.00

icon-X "Close (esc)"

Quick view
Italian Plumber Life-Sized Sculpture
(23)

– Sold Out –-


$1,802.00

More options: $125.00


icon-X "Close (esc)"

Quick view
Rainbow Star Life-Sized Sculpture
(3)



$97.00

icon-X "Close (esc)"
View all
18 products

Lord Vader Returns

Build this iconic Sith Lord with LEGO® Bricks while supplies last!

Shop Now

You're Invited


JOIN OUR DISCORD COMMUNITY

Meet the Bricker Builds team and other passionate LEGO fans, share your ideas,
participate in Live Events and more!
Accept Invite


SHOP BY COLLECTION


Italian Brothers

Live Action Builds & Dino Eggs

Pocket Monsters

Super Heroes

In a Galaxy Far Away

Wieldable & Wearable

Subscribe and save

Join our Bricker Builds™ club to get updates on new releases, promotions and
more...

Enter your email Subscribe
Subscribe icon-right-arrow
5

183 reviews
5


(183)
4


(0)
3


(0)
2


(0)
1


(0)
Lorna Meyers


2024-02-21
The instructions were easy to use and decifer. The compass came out great,
really love it. I received it quick too.v
Jim


2023-10-14
AWESOME! Great instructions and easy build. Well made and durable. Draws
everyone in at the shows.
Tina


2023-08-12
This is my second build after his brother. It was only right to have them both.
This was just as much fun. The way they are designed are A+. I love the entire
Mario collection

2

Tony


2023-06-29
One of the best shows ever made! The detail in this kit is unmatched! It may
look like a simple design but the way Bricker Builds created it made it much
more involved, full of fun, and include a light kit just to make sure you are
well prepare with plenty of dark matter! Highly recommend for any Rick and Morty
fan!
Jennifer


2023-05-25
An absolute dream!!!! Now please please make a general grievous!!! Please
Jennifer


2023-04-28
Great build!!! Really hope some more variants are released!!

4

Pablo - 911dispatcherlegobuilder


2024-02-10
This was a very cute little build! ❤️😍
Klaas Van Der Galiën


2023-10-07
It’s a must have for every Wolverine fan. It’s an easy build but a fun one. To
make the build more fun I just added a minifigure, some metallic silver tiles
and the name plate from lego set 76250
Marley Donahue


2023-07-23
oh my gosh i got this yesterday at the convention and finished it today. its so
adorable and i love it! i can’t wait to find the perfect place for it
nichole


2023-06-27
They did an awesome job with the instructions, if you build Lego you can easily
follow these directions as well! Really a fantastic build, they're sturdy and
absolutely amazing and im excited to have something "different" to add to my
collection,
Kevin MacNeil


2023-05-23
This was such an amazing build. I enjoyed it every step of the way. I ran into a
small issue of a missing brick and Caitlyn got it fixed in no time for me. The
whole team is amazing, not to mention that this kit looks incredible!!
Phillip


2023-04-27
Really love the challenge of building Mario and his mushroom, took me almost two
weeks but it kept me busy
AJ


2024-02-09
Amazing build! Love the detail on the handle, and using pipes for the blade
design was brilliant. Great stand for display as well
Christopher


2023-09-09
Couldn't be happier! We first saw these at Brick Fest in Tampa 2023 and had to
have one. A completely fun build and a great addition to our collection. The
packaging was superb and the instructions were clear and easy to follow. This
dino lover is a fan of Bricker Builds. Thank you Tyler for the wonderful design.
Richard


2023-07-13
My all time favorite star wars character and you have knocked it out the park.
It was an amazing build and even better finished product. I highly recommend
this bust
Tina


2023-06-14
This was an excellent build. Wasn't a big Lego fan but saw this and wanted it
sooo bad. This just brought back childhood memories playing Nintendo. My family
and friends love it also.
Mike


2023-05-22
My first Bricker build, and definitely won’t be the last! Was a fun, challenging
build and the final product looks awesome. Bought with bricks and can say it’s
well worth the cost - everything arrived well packaged and numbered bags made
for an organized process. No missing pieces and PDF instructions were clear /
accurate. Just a really cool model and look forward to growing the collection.
Jonathan


2023-04-21
This is meant to be a very positive review I ordered the Star and it arrived,
but missing one 2x6 block. But after a couple quick, easy emails saying what had
happened and bricker builds confirming the part number, it arrived on my door
step a few days later. Small mistakes happen, but they did a fantastic job
resolving it and I’ll definitely be purchasing from here again!
Scott


2024-02-04
Great build. Wonderful scale.looks just like the real character. This is my
second build, they just get better and better. Thanks team. Keep up the great
work.
Caleb Newberry


2023-09-06
Easy to understand instructions and an AMAZING finished product. Can’t wait to
go into debt getting all of Bricker Builds’ sets!!
David A Chadwick


2023-07-03
Great and easy to build! Would love to try and get more. I got the Pterodactyl
Brandon Negrón


2023-06-11
Darth Maul has always been my favorite Star Wars character! I’ve been waiting
for this new updated build to drop ever since I seen the OG build! The details
for this build are amazing! Hands down my favorite BrickerBuilds build… so far
;)
Andrew


2023-04-30
This is the first build I have done from Brickerbuilds.com and I must say I am
impressed. It's very sturdy once together. If you are a turles fan, I recommend
it.
Scott


2023-04-18
Quality designs couldnt leave mine alone had to modify it . Didn’t have to wait
long even all the way from Canada to Scotland . Thanks guys .
William


2023-12-24
I love the detail and the designs of it. It was fun to build.
Liran


2023-09-02
Thanks for amazing experience & adventure & unique to build the group 🇮🇹🪠
Melek Yilmaz


2023-07-02
İt was so good , I loved how it came in the different pouches, makes it easier
to build. The top of the lightsaber isnt as secure as the rest - it needs a
little connector between the tip and the rest.
Andrew


2023-05-31
Third of the turtles I have built and probably my favorite! I was so impressed.
Jennifer


2023-04-28
Love love love! Same great great bricker build quality. Such a fun new line!
Can’f wait to build all
Maggie


2023-04-17
Love my Lego baseball, will look great in my collection!
See more reviews


READY TO GET STARTED?

Your next build is a click away.

Shop now


LET US HELP YOU

Let Us Help You
 * Your Orders
 * Your Downloads
 * Shipping Policy
 * Refund Policy
 * Terms of Service
 * Privacy Policy
 * Contact Us


OUR PRODUCTS

Our Products
 * All Products
 * Characters & Busts
 * Weapons & Items
 * Helmets


MORE FROM US

More From Us
 * Join Our Discord Community!
 * Our Story
 * Affiliate Program
 * Authorized Resellers




SUBSCRIBE AND SAVE

Subscribe and save

Join our Bricker Builds™ club to get updates on new releases, promotions and
more...

Enter your email Subscribe
icon-email Subscribe
 * instagram Instagram
 * Facebook
 * YouTube
 * TikTok


LANGUAGE

English
 * English
 * Français


CURRENCY

Canada (CAD $)
 * Albania (ALL L)
 * Argentina (USD $)
 * Australia (AUD $)
 * Austria (EUR €)
 * Bahamas (BSD $)
 * Barbados (BBD $)
 * Belarus (USD $)
 * Belgium (EUR €)
 * Belize (BZD $)
 * Brazil (USD $)
 * Bulgaria (BGN лв.)
 * Canada (CAD $)
 * Cayman Islands (KYD $)
 * Chile (USD $)
 * China (CNY ¥)
 * Colombia (USD $)
 * Costa Rica (CRC ₡)
 * Croatia (EUR €)
 * Curaçao (ANG ƒ)
 * Cyprus (EUR €)
 * Czechia (CZK Kč)
 * Denmark (DKK kr.)
 * Ecuador (USD $)
 * El Salvador (USD $)
 * Estonia (EUR €)
 * Ethiopia (ETB Br)
 * Finland (EUR €)
 * France (EUR €)
 * French Polynesia (XPF Fr)
 * Germany (EUR €)
 * Greece (EUR €)
 * Grenada (XCD $)
 * Guyana (GYD $)
 * Honduras (HNL L)
 * Hong Kong SAR (HKD $)
 * Hungary (HUF Ft)
 * Iceland (ISK kr)
 * India (INR ₹)
 * Indonesia (IDR Rp)
 * Iraq (USD $)
 * Ireland (EUR €)
 * Israel (ILS ₪)
 * Italy (EUR €)
 * Jamaica (JMD $)
 * Japan (JPY ¥)
 * Kenya (KES KSh)
 * Latvia (EUR €)
 * Lebanon (LBP ل.ل)
 * Liechtenstein (CHF CHF)
 * Lithuania (EUR €)
 * Luxembourg (EUR €)
 * Macao SAR (MOP P)
 * Malaysia (MYR RM)
 * Malta (EUR €)
 * Mauritius (MUR ₨)
 * Mexico (MXN $)
 * Monaco (EUR €)
 * Morocco (MAD د.م.)
 * Netherlands (EUR €)
 * New Zealand (NZD $)
 * Norfolk Island (AUD $)
 * Norway (USD $)
 * Philippines (PHP ₱)
 * Poland (PLN zł)
 * Portugal (EUR €)
 * Romania (RON Lei)
 * San Marino (EUR €)
 * Saudi Arabia (SAR ر.س)
 * Serbia (RSD РСД)
 * Singapore (SGD $)
 * Sint Maarten (ANG ƒ)
 * Slovakia (EUR €)
 * Slovenia (EUR €)
 * South Africa (USD $)
 * South Korea (KRW ₩)
 * Spain (EUR €)
 * St. Helena (SHP £)
 * St. Kitts & Nevis (XCD $)
 * St. Lucia (XCD $)
 * St. Martin (EUR €)
 * Sweden (SEK kr)
 * Switzerland (CHF CHF)
 * Taiwan (TWD $)
 * Thailand (THB ฿)
 * Trinidad & Tobago (TTD $)
 * Türkiye (USD $)
 * U.S. Outlying Islands (USD $)
 * United Arab Emirates (AED د.إ)
 * United Kingdom (GBP £)
 * United States (USD $)
 * Vietnam (VND ₫)

Copyright © 2024 Bricker Builds Inc. All rights reserved. Bricker Builds™ and
the Bricker Builds logo, are trademarks and copyrights of Bricker Builds LLC.
LEGO® is a trademark of the LEGO® Group of companies which does not sponsor,
authorize, or endorse this site. Bricker Builds LLC is not affiliated or
endorsed by The Walt Disney Company, Warner Bros, Microsoft, Game Freak,
Nintendo, their subsidiaries or sister companies, or any Star Wars, Marvel, DC,
Halo, Pokémon or Mario franchise creator or license holder.


icon-X "Close (esc)"
icon-X icon-chevron
icon-X
Bricker Builds | Engage your imagination, brick by brick!