/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"

**/

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Merriweather:400,900,900i" rel="stylesheet">

#button {
        display: inline-block;
        background-color: #FF9800;
        width: 50px;
        height: 50px;
        text-align: center;
        border-radius: 4px;
        position: fixed;
        bottom: -10px;
        right: 0px;
        transition: background-color .3s,
            opacity .5s, visibility .5s;
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
    }

    #button::after {
        content: "\f077";
        font-family: FontAwesome;
        font-weight: normal;
        font-style: normal;
        font-size: 2em;
        line-height: 50px;
        color: #fff;
    }

    #button:hover {
        cursor: pointer;
        background-color: #333;
    }

    #button:active {
        background-color: #555;
    }

    #button.show_arrow {
        opacity: 1;
        visibility: visible;
      display: inline-block;
        background-color: #7D4294;
      background-image: linear-gradient(0deg, #7D4294, #D8293B);
        width: 50px;
        height: 50px;
        text-align: center;
        border-radius: 4px;
        position: fixed;
        bottom: 0px;
        right: 0px;
        transition: background-color .3s,
            opacity .5s, visibility .5s;
        z-index: 1000;
    }

    /* Styles for the content section */
    @media (min-width: 500px) {
        #button {
            margin: 20px;
        }
    }

    .content h1 {
        margin-bottom: -10px;
        color: #03a9f4;
        line-height: 1.5;
    }

    .content h3 {
        font-style: italic;
        color: #96a2a7;
    }

@media screen and (max-width: 767px){
  #button.show_arrow{
  display:none;
  }
}
