/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
==============================================================================*/
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  color: black;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 2px solid transparent;
  padding: 0 2em;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out, border-color 0.33s ease-in-out, box-shadow 0.33s ease-in-out;
  min-width: 200px;
  border-radius: 0px;
  line-height: 1.15;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  outline: none; }
  .btn:hover {
    color: black; }
  .btn.m-small {
    padding: 0 0.5em;
    min-width: 100px;
    height: 30px;
    font-size: 14px; }
  .btn.m-white {
    background: white;
    border-color: white;
    color: black; }
    .btn.m-white:hover {
      background: black;
      border-color: black;
      color: white; }
  .btn.m-black {
    background: black;
    border-color: black;
    color: white; }
    .btn.m-black:hover {
      background: white;
      border-color: black;
      color: black; }
  .btn.m-green {
    background: #94c83d;
    border-color: #94c83d;
    color: white; }
    .btn.m-green:hover {
      background: #7cad2a;
      border-color: #7cad2a;
      color: white; }
    .btn.m-green.btn-second {
      background: #fff;
      color: #94c83d; }
  .btn.m-underline {
    padding: 0 0 0.1em 0;
    min-width: 0;
    height: auto;
    border: 0;
    border-bottom: 1px solid currentColor;
    color: black;
    border-radius: 0;
    font-weight: 300;
    font-size: inherit;
    letter-spacing: normal; }
    .btn.m-underline.m-bold {
      border-bottom-width: 2px;
      font-weight: 600; }
  .btn.m-long {
    min-width: 250px; }
  .btn.m-icon-only {
    height: auto;
    padding: 1em;
    min-width: 0;
    background: none;
    color: black; }

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none; } }
.btn:hover {
  color: black;
  text-decoration: none; }

.btn:focus,
.btn.focus,
.btn:active,
.btn.active,
.btn.is-active {
  outline: 0; }

.btn.disabled,
.btn:disabled {
  opacity: 0.65; }

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none; }

.btn--primary,
.btn.m-primary,
.btn.btn-primary {
  padding: 0 16px;
  background-color: #000000;
  opacity: 100;
  border-color: rgba(0, 0, 0, 0);
  color: #ffffff;
  border-radius: 0px; }
  .btn--primary:hover,
  .btn.m-primary:hover,
  .btn.btn-primary:hover {
    background-color: #606060;
    opacity: 100;
    border-color: rgba(0, 0, 0, 0);
    color: #ffffff; }

.btn--outline,
.btn.m-outline {
  background-color: white;
  color: black;
  border-color: black; }
  .btn--outline:hover,
  .btn.m-outline:hover {
    background-color: black;
    color: white; }

.btn--transparent,
.btn.m-transparent {
  color: inherit;
  border-color: currentColor;
  background: transparent; }

.btn--secondary,
.btn.m-secondary {
  padding: 0 16px;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  border-color: #000000;
  color: #000000;
  border-radius: 0px; }
  .btn--secondary:hover,
  .btn.m-secondary:hover {
    background-color: #000000;
    opacity: 100;
    border-color: #000000;
    color: #ffffff; }

.btn.add-to-cart {
  height: 55px;
  background-color: #c70000;
  border-color: rgba(0, 0, 0, 0);
  color: #FFF;
  border-radius: 2px; }
  .btn.add-to-cart:hover {
    background-color: #de1313;
    color: #FFF;
    border-color: rgba(0, 0, 0, 0); }

.link {
  display: inline-block;
  padding-bottom: 0 8px;
  font-weight: inherit;
  color: #000000;
  font-size: inherit;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out, border-color 0.33s ease-in-out, box-shadow 0.33s ease-in-out;
  border-style: solid;
  border-width: 1px; }
  .link:hover {
    color: #ccc; }

.link--small {
  font-size: 14px;
  padding-bottom: 0.1em;
  letter-spacing: 0.01em; }
