/** Shopify CDN: Minification failed

Line 106:3 Expected "}" to go with "{"

**/
.button-wrapper {
  display: flex;
  justify-content: center;
}

.button-cta {
    display: flex;
    padding: 10px 25px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: white;
    background: #bc9a64;
    transition: 1s;
    box-shadow: 6px 6px 0 black;
    transform: skewX(-15deg);
}

.button-cta:focus {
   outline: none; 
}

.button-cta:hover {
    transition: 0.5s;
    box-shadow: 10px 10px 0 #cbbaa9;
}

.button-cta span:nth-child(2) {
    transition: 0.5s;
    margin-right: 0px;
}

.button-cta:hover  span:nth-child(2) {
    transition: 0.5s;
    margin-right: 25px;
}

  .button-span {
    transform: skewX(15deg) 
  }

  .button-span:nth-child(2) {
    width: 10px;
    margin-left: 20px;
    position: relative;
    top: 2%;
  }


path.one {
    transition: 0.4s;
    transform: translateX(-60%);
}

path.two {
    transition: 0.5s;
    transform: translateX(-30%);
}

.button-cta:hover path.three {
    animation: color_anim 1s infinite 0.2s;
}

.button-cta:hover path.one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
}

.button-cta:hover path.two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
}

.bottom {
  margin-bottom: 50px;
}

/* SVG animations */

@keyframes color_anim {
    0% {
        fill: white;
    }
    50% {
        fill: #bc9a64;
    }
    100% {
        fill: white;
    }
}

/*-------- CUSTOM CSS ----------*/
.desktop-only {
  @media all and (max-width: 419px) {
    display: none;
  }

.mobile-only {
  @media all and (min-width: 420px) { 
    display: none; 
  }