.btn {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: 0;
  border: none;
  outline: 0;
  margin: 0;
  font-weight: normal;
  line-height: 1;
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  background-color: transparent;
  transition: box-shadow 0.1s ease, background-color 0.1s ease;
  /* loading */
}
.btn__text {
  border-bottom: 1px dotted #40558a;
}
.btn.btn_loading:hover,
.btn.btn_loading:active,
.btn.btn_loading:focus {
  cursor: default;
  color: transparent !important;
}
.btn_loading {
  position: relative;
  color: transparent !important;
  cursor: default;
  text-shadow: none;
}
.btn_loading .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn_type_simple {
  border-radius: 20px;
  font-size: 16px;
  line-height: 20px;
  background-color: #f8cd65;
  color: #313131;
  padding: 8px 19px 10px;
  box-shadow: 0 2px 7px 0 rgba(248, 205, 101, 0.28);
}
.btn_type_simple:hover {
  background-color: #fac951;
  box-shadow: 0 3px 10px 0 rgba(248, 205, 101, 0.41);
}
.btn_type_simple.btn_loading {
  background-color: #f8cd65;
  box-shadow: 0 2px 7px 0 rgba(248, 205, 101, 0.28);
}
.btn_type_simple-dark {
  border-radius: 20px;
  font-size: 16px;
  line-height: 20px;
  background-color: #f8cd65;
  color: #313131;
  padding: 8px 19px 10px;
  box-shadow: 0 2px 7px 0 rgba(71, 71, 71, 0.28);
}
.btn_type_simple-dark:hover {
  box-shadow: 0 3px 10px 0 rgba(71, 71, 71, 0.41);
}
.btn_type_simple-dark.btn_loading {
  box-shadow: 0 2px 7px 0 rgba(71, 71, 71, 0.28);
}
.btn_type_bright {
  border-radius: 10px;
  font-size: 16px;
  line-height: 20px;
  background-color: #dfeafa;
  color: #40558a;
  padding: 8px 19px 10px;
}
.btn_type_bright:hover {
  background-color: #d3e2f7;
}
.btn_type_bright.btn_loading {
  background-color: #dfeafa;
}
.btn_type_light {
  border: 2px solid #c9cbd2;
  border-radius: 20px;
  font-size: 16px;
  line-height: 20px;
  background-color: #fff;
  color: #696c74;
  padding: 6px 16px 8px;
  box-shadow: 0 2px 7px 0 rgba(50, 73, 118, 0.07);
}
.btn_type_light:hover {
  box-shadow: 0 3px 10px 0 rgba(50, 73, 118, 0.25);
}
.btn_type_light.btn_loading {
  box-shadow: 0 2px 7px 0 rgba(50, 73, 118, 0.07);
}
.btn_size_wide {
  width: 100%;
}