@charset "UTF-8";
.button_basic {
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-border {
  border-radius: 29px;
}
.button-non_border {
  border-radius: 29px;
  border: 0px;
}
.button-non_background {
  background-color: transparent;
}
.button_text {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 29px;
}
.button_text_gray_type {
}
.button_text_gray_type > span {
  color: white;
}
.button_text_blue_type {
  border: 1px solid #7aa0ff;
  background: linear-gradient(
    180deg,
    rgba(16, 63, 213, 0.1) 0%,
    rgba(16, 63, 213, 0.4) 100%
  );
}
.button_text_blue_type > span {
  color: white;
}

.button_arrow_left {
  /*왼쪽 화살표 버튼*/
  display: inline-flex;
  width: 58px;
  height: 58px;
  background: transparent
    url("../../assets/image/common/button/icon_arrow_left.svg") padding-box
    no-repeat;
  background-size: auto;
}
.button_arrow_left_small {
  display: inline-flex;
  width: 24px;
  height: 24px;
  background: transparent
    url("../../assets/image/common/button/icon_arrow_left.svg") padding-box
    no-repeat;
  background-size: 24px;
}
.button_arrow_right {
  /*오른쪽 화살표 버튼*/
  display: inline-flex;
  width: 58px;
  height: 58px;
  background: transparent
    url("../../assets/image/common/button/icon_arrow_right.svg") padding-box
    no-repeat;
  background-size: auto;
}
.button_arrow_right_small {
  display: inline-flex;
  width: 24px;
  height: 24px;
  background: transparent
    url("../../assets/image/common/button/icon_arrow_right.svg") padding-box
    no-repeat;
  background-size: 24px;
}
.button_apple_store {
  display: inline-flex;
  width: 260px;
  height: 80px;
  background: transparent
    url("../../assets/image/common/button/icon_apple_store.svg") padding-box
    no-repeat;
  background-size: 130px;
}
.button_google_store {
  display: inline-flex;
  width: 260px;
  height: 80px;
  background: transparent
    url("../../assets/image/common/button/icon_google_store.svg") padding-box
    no-repeat;
  background-size: 130px;
}
