@charset "UTF-8";
.phone_confirm {
  position: fixed;
  width: 100%;
  max-width: 640px;
  padding: 30px 0 40px 0;
  background: #f7f7f7;
  z-index: 20;
  display: none;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 20px 20px 0 0;
  animation: slideIn 0.45s;
}

.phone_confirm.active {
  display: block;
}

.phone_confirm .phone_top {
  display: flex;
  justify-content: center;
}

.reserve_confirm {
  position: fixed;
  width: 100%;
  max-width: 640px;
  padding: 5% 0 0 0;
  background: #f7f7f7;
  z-index: 20;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fadeIn 0.2s;
  animation-timing-function: ease-in-out;
}

.reserve_confirm.active {
  display: block;
  overflow: auto;
  height: 100%;
}

.reserve_confirm .reserve_top {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reserve_confirm .reserve_top .pop_title {
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 800;
  color: #3c3f4b;
  font-size: 22px;
}

.reserve_confirm .reserve_top .close_btn {
  position: absolute;
  right: 16px;
  cursor: pointer;
}

.reserve_body {
  padding: 3% 0 5% 0;
}

.reserve_body .reserve_list {
  margin-bottom: 3%;
  padding: 0 16px;
}

.reserve_body .reserve_list .label {
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 800;
  color: #3c3f4b;
  font-size: 14px;
}

.reserve_body .reserve_list .info {
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 700;
  color: #3c3f4b;
  font-size: 16px;
  margin-top: 4px;
}

.amount_detail {
  background-color: rgba(72, 76, 83, 0.07);
  padding: 10px 16px;
  margin-bottom: 20px;
}

.amount_detail .amount-wrapper {
  display: flex;
}

.amount_detail .amount-wrapper .add {
  display: flex;
  align-items: flex-end;
  padding: 0 12px 4px 12px;
}

.amount_detail .amount_label {
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 700;
  color: #3c3f4b;
  font-size: 16px;
}

.amount_detail .amount {
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 700;
  color: #3c3f4b;
  font-size: 18px;
  margin-top: 4px;
}

.amount_detail .sub-txt {
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 700;
  color: #3c3f4b;
  font-size: 14px;
  margin-top: 10px;
}

.total-wrapper {
  padding: 6% 16px;
}

.total-wrapper .total_label {
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 800;
  color: #3c3f4b;
  font-size: 14px;
}

.total-wrapper .total_amount {
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 700;
  color: #3c3f4b;
  font-size: 32px;
  margin-top: 10px;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #a5aab3;
  margin-top: 20px;
}

.reserve_btn {
  width: 300px;
  height: 50px;
  background-color: #3c3f4b;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  color: white;
  margin: 0 auto;
  cursor: pointer;
}

.dim_reserve {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10;
  display: none;
}

.dim_phone {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10;
  display: none;
}

.pop_title {
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 800;
  color: #3c3f4b;
  font-size: 22px;
}

.close_btn {
  position: absolute;
  right: 16px;
  cursor: pointer;
}

.phone_contents {
  width: 60%;
  line-height: 18px;
  padding: 40px 16px;
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 800;
  color: #3c3f4b;
  font-size: 14px;
  text-align: center;
  margin: 0 auto;
}

.close_btn_phone {
  position: absolute;
  right: 16px;
  cursor: pointer;
}

@keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0.5;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#coupon {
  width: 70%;
  height: 40px;
  border: 1px solid #979797;
  border-radius: 6px;
}
#coupon-confirm {
  height: 40px;
  background-color: #3c3f4b;
  color: white;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  padding: 0 10px;
  margin-left: 2%;
}

.location_confirm {
  position: fixed;
  width: 100%;
  max-width: 640px;
  padding: 30px 0 0 0;
  background: #f7f7f7;
  z-index: 20;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  animation: fadeIn 0.2s;
  animation-timing-function: ease-in-out;
}

.location_confirm.active {
  display: block;
}

.location_confirm .location_top {
  display: flex;
  justify-content: center;
}

.location_confirm .location_top .pop_title {
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 800;
  color: #3c3f4b;
  font-size: 22px;
}

.location_confirm .location_top .close_btn_location {
  position: absolute;
  right: 16px;
  cursor: pointer;
}

.pay_confirm {
  position: fixed;
  width: 100%;
  max-width: 300px;
  max-height: 650px;
  overflow-x: hidden;
  padding: 30px 0 0 0;
  background: #f7f7f7;
  z-index: 20;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  animation: fadeIn 0.2s;
  animation-timing-function: ease-in-out;
  font-size: 25px;
}

.pay_confirm.active {
  display: block;
}

.pay_confirm .pay_top {
  display: flex;
  justify-content: center;
}

.pay_confirm .pay_top .pay_pop_title {
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 800;
  color: #3c3f4b;
  font-size: 0.8em;
}

/* .pay_confirm .pay_top .close_btn_pay {
  position: absolute;
  right: 16px;
  cursor: pointer;
} */

.pay_list{
	position: relative;
}

/*  */

.promotion_confirm {
  position: fixed;
  width: 100%;
  max-width: 370px;
  max-height: 600px;
  overflow-x: hidden;
  padding: 30px 0 0 0;
  background: #ffffff;
  z-index: 20;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  animation: fadeIn 0.2s;
  animation-timing-function: ease-in-out;
}

.promotion_confirm.active {
  display: block;
}

.promotion_confirm .promotion_top {
  display: flex;
  justify-content: center;
}

.promotion_confirm .promotion_top .promotion_pop_title {
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 800;
  color: #3c3f4b;
  font-size: 22px;
}

.promotion_confirm .promotion_top .close_btn_promotion {
  position: absolute;
  right: 16px;
  cursor: pointer;
}

.promotion_list{
	position: relative;
}

/*  */
.pay_img{
	max-width:100%;
	vertical-align:top;
	border:0px none;
	height: 35vh;
	width: 100%;
}
.close_btn_pay{
	max-width: 100%;
	height: 5vh;
    position: absolute;
    top: 1vh;
    cursor: pointer;
}
	
.imglnk{
	position: absolute;
	z-index: 1;
    right: 1em;
    color: white;
    background-color: rgba(0,0,0,0.3);
    width: 8em;
    height: 2.5em;
    line-height: 40px;
    font-size: 0.6em;
    margin-top: 15px;
}

.imgtext{
	text-align:left;
	position: absolute;
	z-index: 1;
    left: 1em;
    bottom: 1.5em;
    color: white;
    width: 100%;
    height: 1.5em;
    line-height: 40px;
    font-size: 1em;
}
.imgsubtext{
	text-align:left;
	position: absolute;
	z-index: 1;
    left: 2em;
    bottom: 0.6em;
    color: white;
    width: 30%;
    height: 2.7em;
    line-height: 40px;
    font-size: 0.6em;
}

.pay_body{
	padding: 3px;
	padding-right: 30px;
	margin: 0.15rem;
	background-color: #E6E6E6;
	border-radius : 20px;
}

.pay_span{
	font-size: 0.8em;
}

.pay_h{
	text-align: right;
	width: 50%;
	float: right;
}
/*  */
.promotion_body{
	padding: 15px;
	padding-right: 30px;
	margin: 15px;
	background-color: #E6E6E6;
	border-radius : 20px;
}

.promotion_span{
	float: left;
	font-size: 25px;
	width: 50%;
	height: 80px;
}

.promotion_h{
	display: inline-block;
	text-align: right;
	width: 45%;
}
/*  */

.dim_location {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10;
  display: none;
}

.reserve_info {
  margin-top: 20px;
}
.reserve_info .info.bold {
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 800;
  color: #ff3616;
  font-size: 14px;
  margin-top: 4px;
  padding-left: 8px;
}
.reserve_sub-txt {
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 800;
  color: black;
  font-size: 12px;
  margin-top: 4px;
}

.reserve_info-wrapper {
  background-color: rgba(72, 76, 83, 0.07);
  margin-top: 20px;
  padding: 10px 16px 10px 0;
  margin-bottom: 40px;
}

.reserve_info-wrapper .reserve_info_txt {
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 700;
  color: #3c3f4b;
  font-size: 14px;
  line-height: 20px;
  width: 84%;
  padding-left: 8px;
}

.reserve_gear_detail_list input {
  width: 35%;
  height: 40px;
  border: 1px solid #979797;
  border-radius: 6px;
  margin-left: 10px;
  margin-top: 20px;
}

.reserve_gear_detail_list span {
  margin-top : 20px;
  width: 15%;
}

.reserve_gear_form {
  background-color: rgba(72, 76, 83, 0.07);
  margin-top: 20px;
  padding: 10px 16px 10px 0;
  margin-bottom: 40px;
}

.reserve_gear_detail_check .reserve_info_txt {
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 700;
  color: #3c3f4b;
  font-size: 14px;
  line-height: 20px;
  width: 84%;
  padding-left: 8px;
}
.reserve_gear_select{
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.reserve_gear_select .gear_select_box{
  width: 40%;
  padding: .8em .5em; /* 여백으로 높이 설정 */
  border: 1px solid #999;
  position: relative; display: block; height: 43px;
  background: #fff url(../images/btn/btn_select.svg) right center no-repeat;
  background-size: 36px 24px; box-shadow: 0 2px 5px rgba(0,0,0,.25);
  border-radius: 6px;
}

.reserve_gear_detail_list {
  display: flex;
  /* justify-content 수평을 center, align-items 수직을 center로 맞춰준다. */
  justify-content: center;
  align-items: center;
}

.reserve_gear_detail_list button{
  width: 10%;
  background: url(../img/ic_close_pop.svg) right center no-repeat;
  padding: .8em .5em; /* 여백으로 높이 설정 */
}

.gear_close_btn {
  margin-top: 16px;
  position: absolute;
  right: 16px;
  cursor: pointer;
}

#gear_add_btn {
  height: 40px;
  background-color: #3c3f4b;
  color: white;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  padding: 0 10px;
  margin-left: 2%;
}

.main_list_btn {
  width: 300px;
  height: 50px;
  background-color: #7a7f95;
  color: white;
  margin: 0 auto;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}

.main_list_btn:hover {
  background-color: #3c3f4b;
}
.btn_clicked{
  background-color: #3c3f4b;
}
.main_btn {
  margin-top : 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close_pop_btn {
  position: absolute;
  right: 16px;
  cursor: pointer;
}