/*-------------------- 限定推薦行程頁 travel.html --------------------*/

ul {
    padding-inline-start: 0;}

#wrapper>section::before {
    content: '';
    position: absolute;
    display: block;
    border-radius: 30px;
    top: 65px;
    width: 76%;
    height: 78.5%;
}

#wrapper>section:nth-of-type(odd)::before {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    left: 0;
    background: url(https://event.cdn-gunnarworks.com/events/2022-taitung-balloon-booking/bg-sale01.jpg) no-repeat center/cover;
}

#wrapper>section:nth-of-type(even)::before {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    right: 0;
    background: url(https://event.cdn-gunnarworks.com/events/2022-taitung-balloon-booking/bg-sale02.jpg) no-repeat center/cover;
}

#logo-sec::before {display: none !important;}

@media screen and (max-width:991px) {
    #wrapper>section::before {
        border-radius: 20px;
        width: 82%;
        height: 74%;
    }
}


/*-- 商品區 .pro --*/

.pro {
    --sale: #ff6600;
    --sale-hover: #ff4400;
    --box-border: #0061b3;
}

.pro>div {
    margin-bottom: 1.5rem;
}

.sale_box {
    color: var(--basic-txt);
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    padding: 0.5rem;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 0 0 2px var(--main-deep), 0 2px 3px rgba(0, 0, 0, 0.4);
    z-index: 10;
    transition: var(--transition-com);
}

.sale_box:hover {
    color: var(--basic-txt);
    transform: translateY(-1rem);
    box-shadow: 0 0 0 2px var(--box-border), 0 1rem 8px rgba(0, 0, 0, 0.3);
}

.sale_box>img {
    width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.sale_info {
    position: relative;
    padding: 0.5rem 0.3rem 40px;
    font-size: 1rem;
}

.sale_info>h5 {
    font-weight: 600;
    /* margin-bottom: 1rem; */
}

@media (min-width:768px) and (max-width:991px) {
    .sale_info {
        padding: 0.5rem 0.3rem 60px;
    }
}

@media screen and (max-width:991px) {
    .pro .col-md-4{
        margin-bottom: 1rem;
        padding-left: 0.6rem;
        padding-right: 0.6rem;
    }

    .sale_info>h5 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .sale_info>p {
        font-size: 0.9375rem;
    }

    .sale_info>.price_txt, .sale_info>.date_txt {
        font-size: 0.9375rem;
    }
}

.sale_info>.date_txt {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.sale_info>.date_txt>svg {
    font-size: 90%;
}

.sale_info>.spec_txt>li {
    display: block;
    color: var(--success);
    padding-bottom: 0.2rem;
}

.sale_info>.spec_txt>li::before {
    font-family: 'Font Awesome 5 Free';
    content: '\f058';
    font-weight: 900;
    margin-right: 0.4rem;
}

.sale_info>.price_txt {
    position: absolute;
    display: block;
    text-align: right;
    font-weight: 600;
    bottom: 0;
    width: calc(100% - 0.5rem);
    color: var(--sale);
}

.sale_info>.price_txt>span {
    font-size: 1.75rem;
}

@media screen and (max-width:991px) {
    .sale_info>.spec_txt>li {
        font-size: 0.9375rem;
    }
    .sale_info>.price_txt>span {
        font-size: 1.6rem;
    }
}

.sale_info>.price_txt:after {
    /* clearfix */
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.btn_sale {
    white-space: nowrap;
    font-weight: 600;
    color: #fff;
    float: right;
    background-color: var(--sale);
    border-color: var(--sale);
    transition: var(--transition-com);
}

.btn_sale>.material-icons {
    vertical-align: middle;
}

.btn_sale:hover, .sale_box:hover .btn_sale, .btn_sale.soon {
    color: #fff;
    background-color: var(--sale-hover);
    border-color: var(--sale-hover);
}

.sale_box.sold_out::before {
    content: url(https://event.cdn-gunnarworks.com/events/taitung2.0/icon-soldout.png);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: 10;
}

/*-- 按鈕區域 --*/

.btn-sec {
    padding:0;
    margin-bottom: -1rem;
}