/*上方活動標題間距設定*/
.free-title-margin-bottom{
    margin-bottom: 20px;
}

/*上方活動內容間距設定*/
.free-content-margin-bottom{
    margin-bottom: 60px;
}

/*活動內容圓點及狀態區塊設定*/
.promotions-processing-area{
    display: flex;
    position: absolute;
    bottom: 20px;
    align-items: center;
}

/*活動狀態字型設定*/
.promotions-processing-font{
    font-family: 'Noto Sans SC';
    font-size: 12px;
    font-weight: 900;
    line-height: 2;
    letter-spacing: normal;
    text-align: left;
    color: #59c969 !important;
}

/*活動圓點設定*/
.promotions-processing-radius{
    width: 10px;
    height: 10px;
    background-color: #59c969;
    margin-right: 7px;
    border-radius: 100%;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-duration: 1s;
}



.promo-listing :hover a .promotions-processing-radius{
    animation-name: scaleDraw;
}

@keyframes  scaleDraw {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}



/*已結束活動圓點設定*/
.promotions-finish-radius{
    width: 10px;
    height: 10px;
    background-color: #5f5f5f;
    margin-right: 7px;
    border-radius: 100%;
}

/*光箱位置設定*/
.lightbox-position{
    top: 50px!important;
}

/*光箱內容設定*/
.lightbox-content-style{
    margin-bottom: 20px;
}

/*光箱複選匡樣式設定*/
.checkbox-content-style{
    vertical-align: sub !important;
}

/*光箱複選選項區塊設定*/
.checkbox-item-style{
    margin-bottom: 20px;
}

/*光箱手機內容設定*/
.phone-area-style{
    display: flex;
}

/*光箱手機國籍號碼樣式設定*/
.phone-control-style{
    width: 60px;
    margin-right: 25px;
}

/*已結束活動狀態字型設定*/
.promotions-finish-font{
    font-family: 'Noto Sans SC';
    font-size: 12px;
    font-weight: 900;
    line-height: 2;
    letter-spacing: normal;
    text-align: left;
    color: #5f5f5f !important;
}

/*光箱標題區域設定*/
.lightbox-title-area{
    border-bottom: 0;
}

/*光箱標題樣式設定*/
.lightbox-title-style{
    margin: 0!important;

}

/*光箱關閉按鈕樣式設定*/
.lightbox-close{
    background-color: transparent;
    border: 0;
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    /*right: -5px;*/
    right: 0;
    top: -30px;
    padding: 0!important;

}

/*光箱完成按鈕區塊設定*/
.btn-complete-area-margin{
    margin: 35px 0 33px;
}

/*光箱按鈕樣式設定*/
.btn-complete{
    filter:drop-shadow(4px 4px 8px rgba(0, 0, 0, 0));
    max-width: 185px;
    padding-right: 30px!important;
    padding-left: 30px!important;
}

/*下方參加區塊設定開始*/
.area-background-color{
    background-color: #ededed;
}
.join-area-padding{
    padding: 36px 0;
    align-items: center;
}

/*下方參加按鈕設定*/
.btn-ibet-after{
    filter:drop-shadow(4px 4px 8px rgba(0, 0, 0, 0));
    max-width: 100px;
    margin: 0 auto;
}
.btn-ibet-after:after{
    left: 39px;
}

/*下方參加區塊標題設定*/
.title-margin-bottom{
    margin-bottom: 0 !important;
    text-align: center;
}

@media screen and (max-width:992px){
    .title-margin-bottom{
        margin-bottom: 10px !important;
    }
}

@media screen and (max-width:992px){
    .content-margin-bottom{
        margin-bottom: 20px !important;
    }

}

.send-loading{
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: none;
    z-index: 1500;
    justify-content: center;
    align-items: center;
}

/*資料送出後loading效果*/
.loading{
    border: 5px solid transparent;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: loading 1s linear infinite;
    z-index: 2000;
}

/*loading動畫*/
@-webkit-keyframes loading {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
/*loading動畫*/
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body.modal-open {
    position: fixed;
    width: 100%;
}
