@charset "utf-8";

/* order-list.htm */

.tomato-state {
    padding: calc(env(safe-area-inset-top) + 66px) 5% 30px;
}


.borad-tabs li {
    width: 50%;
    border-bottom: none;
    border-radius: 5px 5px 0px 0px;
    background-color: #d9d9d9;
    position: relative;
}
.borad-tabs li a {
    display: block;
    padding: 0;
    font-size: 14px;
    font-family: Pretendard-SemiBold;
    color: #fff;
    margin-top: 0;
    height: 33px;
    line-height: 37px;
}
.borad-tabs li.ui-tabs-active {
    border: none;
    border-bottom: none;
    background-color: #fff;
}
.borad-tabs li.ui-tabs-active a {
    font-size: 14px;
    font-family: Pretendard-Bold;
    color: #452812;
    margin-top: 0;
}

.borad-tabs li.ui-tabs-active::before {
    background-image: none;
    background-color: #452812;
    content: "";
    width: 100%;
    height: 5px;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0s;
    z-index: 2;
    border-radius: 5px 5px 0 0;
}


.coupon-list{
    padding: 5px 15px;
}
.coupon-box {
    text-align: center;
    font-size: 16px;
    margin-bottom: 0;
    width: 100%;
    padding: 15px 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #d9d9d9;
}

.coupon-box p {
    text-align: left;
    font-family: Pretendard;
}

.coupon-box #title {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 16px;
}
.coupon-box #title span{
    font-weight: bold;
    font-size: 12px;
}

.coupon-box #tag, .coupon-box #price, .coupon-box #endDt {
    font-size: 14px;
    margin-top: 0px;
    line-height: 140%;
    font-weight: 600;
}

.coupon-box #price, .coupon-box #endDt {
    color: #767676;
    font-weight: 400;
}

.coupon-box .button-area{
display:flex; justify-content: space-between; text-align: center; margin-top:10px;gap: 6px;
}

/* 버튼-default, 리뷰쓰기-활성화 */
.coupon-box button,
.coupon-box button.btn-abled{
    font-size: 12px;
    background-color: #452812;
    color: #fff;
    border-radius: 5px;
    padding: 0;
    font-family: Pretendard-SemiBold;
    width: 100%;
    height: 32px;
}

/* 버튼-리뷰쓰기-비활성화 */
.coupon-box button.btn-disabled{
    font-size: 12px;
    background-color: rgba(69, 40, 18, 0.6);
    color:rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    font-family: Pretendard-SemiBold;
    width:100%;
    height:32px;
    border:none;
}

/* 버튼-리뷰보기 */
.coupon-box button.btn-after{
    font-size: 12px;
    background-color: #fff;
    color:#452812;
    border-radius: 5px;
    font-family: Pretendard-SemiBold;
    width:100%;
    height:32px;
    border: 1px solid #452812;
}


