    /*STICKY BUTTON RIGHT*/
    /*This places the button where we want it*/
    #ds-sticky-button-1 {
    position: fixed;
    right: -195px !important; /*Positions the button to the right of the page*/
    top: 430px; /*Sets the distance of the button from the top of page*/
    width: 200px !important; /*Sets dimensions of the button*/
    height: 25px !important; /*Sets dimensions of the button*/
    z-index:99999; /*Keeps the button on top*/
    transform: rotate(90deg); /*Rotates the button*/
    transform-origin: left top 0; /*Places the button after rotation*/
    }
	  #ds-sticky-button-2 {
    position: fixed;
    right: -195px !important; /*Positions the button to the right of the page*/
    top: 360px; /*Sets the distance of the button from the top of page*/
    width: 200px !important; /*Sets dimensions of the button*/
    height: 25px !important; /*Sets dimensions of the button*/
    z-index:99999; /*Keeps the button on top*/
    transform: rotate(90deg); /*Rotates the button*/
    transform-origin: left top 0; /*Places the button after rotation*/
    }
	 #ds-sticky-button-3 {
    position: fixed;
    right: -195px !important; /*Positions the button to the right of the page*/
    top: 290px; /*Sets the distance of the button from the top of page*/
    width: 200px !important; /*Sets dimensions of the button*/
    height: 25px !important; /*Sets dimensions of the button*/
    z-index:99999; /*Keeps the button on top*/
    transform: rotate(90deg); /*Rotates the button*/
    transform-origin: left top 0; /*Places the button after rotation*/
    }
    #ds-sticky-button-4 {
    position: fixed;
    right: -195px !important; /*Positions the button to the right of the page*/
    top: 510px; /*Sets the distance of the button from the top of page*/
    width: 200px !important; /*Sets dimensions of the button*/
    height: 25px !important; /*Sets dimensions of the button*/
    z-index:99999; /*Keeps the button on top*/
    transform: rotate(90deg); /*Rotates the button*/
    transform-origin: left top 0; /*Places the button after rotation*/
    }
    /*Styles the link text to make it look like a button - You can edit all these values to match your design*/
    #ds-sticky-button-1 a {
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      border-radius: 0px;
      border: 1px solid #fff;
      color: #ffffff;
      font-size: 16px;
      background: #ff0000;
      padding: 5px 15px 5px 15px;
      text-decoration: none;
    }
	 #ds-sticky-button-2 a {
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      border-radius: 0px;
      border: 1px solid #fff;
      color: #ffffff;
      font-size: 16px;
      background: #00ff00;
      padding: 5px 15px 5px 15px;
      text-decoration: none;
    }
	 #ds-sticky-button-3 a {
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      border-radius: 0px;
      border: 1px solid #fff;
      color: #ffffff;
      font-size: 16px;
      background: #0000ff;
      padding: 5px 15px 5px 15px;
      text-decoration: none;
    }
    #ds-sticky-button-4 a {
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      border-radius: 0px;
      border: 1px solid #fff;
      color: #ffffff;
      font-size: 16px;
      background: #ffff00;
      padding: 5px 15px 5px 15px;
      text-decoration: none;
    }
    /*Styles the button on hover - You can edit all these values to match your design*/
    #ds-sticky-button-1 a:hover {
      background: #000000;
      text-decoration: none;
    }
	 #ds-sticky-button-2 a:hover {
      background: #000000;
      text-decoration: none;
    }
	 #ds-sticky-button-3 a:hover {
      background: #000000;
      text-decoration: none;
    }
    #ds-sticky-button-4 a:hover {
      background: #000000;
      text-decoration: none;
    }
    /*Moves the button up a bit on smaller screens - You can adjust this to get the button where you want it or just remove it if you don't want to change the location*/
    @media only screen and (max-width: 100%) {
    #ds-sticky-button-1 {
    top: 100px !important;
    }
	 #ds-sticky-button-2 {
    top: 100px !important;
    }
	 #ds-sticky-button-3 {
    top: 100px !important;
    }
    #ds-sticky-button-4 {
    top: 100px !important;
    }
    }