.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  font-family: Onest,sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  border-radius: 10px;
  color: #fff;
  background-color: #e81b23;
  border: 1px solid #e81b23;
  padding: 11px;
  text-align: center;
  transition: .35s;
  cursor: pointer
}
.btn:hover {
  background-color: #eb3239
}
.btn svg {
  flex-shrink: 0;
  margin-right: 10px
}
.btn_clear {
  background-color: #fff;
  color: #e81b23
}
.btn_clear:hover {
  background-color: #fff;
  border-color: #eb3239;
  color: #eb3239
}
.btn.btn_clear_yellow {
  background-color: #fff;
  color: #fe7200
}
.btn.btn_clear_yellow:hover {
  background-color: #fff;
  border-color: #d36002;
  color: #d36002
}
.btn_white {
  border-color: #fff;
  background-color: #fff;
  color: #0e0e0e
}
.btn_white:hover {
  background-color: #fff;
  opacity: .9
}
.btn_white svg {
  margin-left: 10px
}
.btn_transition {
  color: #e81b23;
  background-color: transparent;
  border: none
}
.btn_transition svg {
  margin-left: 12px;
  margin-right: 0
}
.btn_arrow svg {
  margin-left: 10px;
  margin-right: 0
}
.btn_small {
  font-size: 12px;
  line-height: 15px
}
.btn_orange,
.btn_orange:hover {
  color: #fe7200;
  border-color: #fe7200
}
.btn_gray {
  width: 100%;
  height: auto;
  padding: 16px;
  color: #e81b23;
  background: #f3f3f3;
  border: none;
  border-radius: 20px
}
.btn_gray:hover {
  color: #e81b23;
  background: #f3f3f3
}
.btn__show-less-text {
  display: none
}
.btn_show-less .btn__show-less-text {
  display: block
}
.btn_show-less .btn__show-all-text {
  display: none
}
.btn_green {
  width: 100%;
  color: #fff;
  background: linear-gradient(88.65deg,#04ab29 1.07%,#00c07b 58.8%,#3ab7fe 107.87%);
  border: none
}
.btn_green:hover {
  color: #fff;
  background: linear-gradient(88.65deg,#04ab29 1.07%,#00c07b 58.8%,#3ab7fe 107.87%)
}
@media (max-width:1023px) {
  .btn {
    height: 33px;
    font-size: 12px;
    line-height: 15px
  }
  .btn_big {
    height: 40px;
    font-size: 14px;
    line-height: 18px
  }
  .btn_gray {
    height: auto;
    padding: 16px;
    font-size: 14px;
    line-height: 18px
  }
}