.sc-button.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(0, 0, 255, 0.521);
  font-size: 13px;
  font-weight: 600;
  border-color: rgb(216, 216, 216) rgb(209, 209, 209) rgb(186, 186, 186);
  border-style: solid;
  border-width: 1px;
  padding: 1px 7px 2px;
  box-sizing: border-box;
  background-color: buttonface;
  width: 100%;
}
#sc-launcher .buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#sc-launcher .buttons a,
#sc-launcher .buttons .sc-button.button {
  width: 94%;
  margin: 0 0 25px;
  cursor: pointer;
  border: none;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid rgb(0, 132, 255);
  background: transparent;
  border: 1px solid rgb(0, 132, 255);
  color: rgb(0, 132, 255);
}
#sc-launcher .buttons .sc-button.button.first {
  margin: 0px;
}

#sc-launcher .sc-message--card .buttons a,
#sc-launcher .sc-message--card .buttons .sc-button.button,
#sc-launcher .sc-message--quick-response .buttons a,
#sc-launcher .sc-message--quick-response .buttons .sc-button.button {
  margin: 6px auto;
}
#sc-launcher .buttons .sc-button.button.outline,
.buttons .button.outline {
  border: 1px solid #fff;
  color: #fff;
}
#sc-launcher .buttons a:hover,
#sc-launcher .buttons .sc-button.button:hover {
  color: #fff;
  background: rgb(0, 132, 255);
}
#sc-launcher .buttons .sc-button.button.outline:hover {
  color: rgb(0, 132, 255);
  background: #fff;
}

.sc-button.button:disabled {
  opacity: 0.65;
  background: rgb(0, 132, 255);
  cursor: not-allowed;
  color: #fff;
}
