﻿input[type=button]:focus,
input[type=submit]:focus {
  outline: none;
}
.Btn_Blue {
  background: #3f81f0;
  color: white;
}
.Btn_Blue:hover,
.Btn_Blue:focus {
  background: white;
  color: #3f81f0;
  border: 1px solid #3f81f0;
}
.Btn_MattRed {
  background: #b93636;
  color: white;
}
.Btn_MattRed:hover,
.Btn_MattRed:focus {
  background: white;
  color: #b93636;
  border: 1px solid #b93636;
}
.Btn_Red {
  background: #eb4135;
  color: white;
}
.Btn_Red:hover,
.Btn_Red:focus {
  background: white;
  color: #eb4135;
  border: 1px solid #eb4135;
}
.Btn_Blue_Gradient {
  background: linear-gradient(to right, #3472df, #3f81f0);
  /* Standard syntax */
  color: white;
}
.Btn_Blue_Gradient:hover,
.Btn_Blue_Gradient:focus {
  background: white;
  color: #3472df;
  border: 1px solid #3472df;
}
.Btn_White {
  background: white;
  color: #3472df;
}
.Btn_White:hover,
.Btn_White:focus {
  background: #3472df;
  color: white;
}