@charset "UTF-8";
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #8C0034; /* Set a background color */
	opacity: 0.5;
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding-top: 10px; /* Some padding */
	padding-right: 15px; /* Some padding */
	padding-bottom: 10px; /* Some padding */
	padding-left: 15px; /* Some padding */
  border-radius: 2px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}

.bg-gold {
  background-color: #8C0034 !important; }

a.bg-gold:hover, a.bg-gold:focus,
button.bg-gold:hover,
button.bg-gold:focus {
  background-color: #B89727 !important; }
