 /*blue btn*/
.btn_style {
  background-image: linear-gradient(#42A1EC, #0070C9);
  border: 1px solid #0077CC;
  border-radius: 4px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  direction: ltr;
  display: block;
  font-family: "SF Pro Text","SF Pro Icons","AOS Icons","Helvetica Neue",Helvetica,Arial,sans-serif;
  /*font-size: 17px;*/
  /*font-weight: 400;*/
  /*letter-spacing: -.022em;*/
  /*height: 40px !important;         */
  /*line-height: 40px;     */
  max-width:200px;
  overflow: visible;
  /*padding: 0px 20px;*/
  text-align: center;
  vertical-align: baseline;
  user-select: none;
  white-space: nowrap;
}

.btn_style:disabled {
  cursor: default;
  opacity: .3;
}

.btn_style:hover {
  background-image: linear-gradient(#51A9EE, #147BCD);
  border-color: #1482D0;
  text-decoration: none;
}

.btn_style:active {
  background-image: linear-gradient(#3D94D9, #0067B9);
  border-color: #006DBC;
  outline: none;
}

.btn_style:focus {
  box-shadow: rgba(131, 192, 253, 0.5) 0 0 0 3px;
  outline: none;
}


/*gray btn*/



/* CSS */
.btn_style2 {
  background-color: #222;
  border-radius: 4px;
  border-style: none;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  /*display: inline-block;*/
  font-family: "Farfetch Basis","Helvetica Neue",Arial,sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  max-width: none;
  max-height: 40px;
  min-width: 10px;
  outline: none;
  overflow: hidden;
  padding: 9px 20px 8px;
  text-align: center;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: auto;
   display: inline-block; 
}

.btn_style2:hover,
.btn_style2:focus {
  opacity: .75;
}