﻿.productDiv {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border-bottom: 1px solid #eee;
    align-items: center;
}

    .productDiv .productName {
        margin-top: 10px;
        font-size: 1.25rem;
        font-weight: bold;
        color: #B8966F;
    }

    .productDiv .voucherName {
        font-size: 1.25rem;
        font-weight: bold;
        color: #605242;
    }

    .productDiv .productPrice {
        font-size: 1.1rem;
        font-weight: bold;
        color: #A9223C;
        margin: 5px;
    }

    .productDiv .productPrice2 {
        font-size: 1rem;
        font-weight: bold;
        color: #AA9885;
        text-decoration: line-through;
        margin-top: 3px;
        margin-left: 5px
    }

    .productDiv .productSaleCount {
        font-size: 0.8rem;
        color: #979797;
        border: 1px solid #979797;
        padding: 1px;
        margin: 0px 0px 10px 0px;
    }


.giveawayDiv {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background-color: #f8f3ec;
    height: calc(100% - 320px);
    align-items: center;
}
    .giveawayDiv .giveawayEmail {
        background:#FFF;
        border-radius:10px;
        padding:24px
    }

    .giveawayDiv .FinishedButton {
        border: 1px solid #A9223C;
        color: #A9223C;
        display: flex;
        font-weight: bold;
        justify-content: center;
        align-items: center;
        margin-left: 10px;
        width: 130px;
    }

.giveawayDivAgree {
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    padding: 20px;
    background-color: #FFF;
    height: calc(100% - 320px);
}
    .giveawayDivAgree .voucher {
        border: 2px solid #A9223C;
        display: flex;
        justify-content: space-between;
        align-content: center;
        padding: 15px;
        font-weight: bold;
        font-size: 1.5rem;
        /*margin: 10px 0px 20px 0px;*/
        border-radius: 3px;
    }

    .giveawayDivAgree .giveawayEmail {
        background: #FFF;
        border-radius: 10px;
        padding: 24px
    }

    .giveawayDivAgree .finishbutton {
        border: 1px solid #A9223C;
        color: #A9223C;
        display: flex;
        font-weight: bold;
        justify-content: center;
        align-items: center;
        margin-left: 10px;
        width: 130px;
    }

.giveawayDiv .voucher {
    border: 1px solid #1E5BC7;
    display: flex;
    justify-content: space-between;
    align-content: center;
    padding: 15px;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 10px 0px 20px 0px;
}

.giveawayDiv .agreeDiv {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: #A9223C;
    margin: 10px 0px;
}

.giveawayDiv .agreeNotice {
    font-weight: bold;
    color: #888;
    margin: 10px 10px 10px 10px;
}


.agreeRuleDiv {
    position: absolute;
    bottom: -200%;
    left: 0;
    width: 100%;
    background-color: #FFF;
    height: calc(100% - 60px);
    border-radius: 10px 10px 0px 0px;
    z-index: 100;
    -webkit-transition: bottom .3s;
    -moz-transition: bottom .3s;
    -o-transition: bottom .3s;
    transition: bottom .3s;
    display: none;
}

    .agreeRuleDiv .agreeRule {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 20px 10px 2px 10px;
    }

        .agreeRuleDiv .agreeRule .agreeTitle {
            font-weight: bold;
            margin-bottom: 10px;
        }

        .agreeRuleDiv .agreeRule .agreeRuleFooter {
            position: fixed;
            height: 70px;
            width: 100%;
            bottom: 0;
            left: 0;
            background-color: #fff;
            display: flex;
            flex-direction: column;
            padding: 15px 20px;
        }

            .agreeRuleDiv .agreeRule .agreeRuleFooter .footerBlueButton {
                padding: 10px 20px;
                width: 100%;
                height: 45px;
                background-color: #1E5BC7;
                color: #fff;
                border-radius: 50px;
                display: flex;
                justify-content: center;
                align-items: center;
                font-weight: bold;
            }



.giveawayFoooter {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 10px;
}

    .giveawayFoooter .giveawayButton {
        justify-content: center;
        align-items: center;
        color: #FFF;
        background-color: #aaa;
        /*border-radius: 45px;*/
        height: 45px;
        margin: 0px 10px;
        font-size: 1.25rem;
    }

        .giveawayFoooter .giveawayButton.active {
            background-color: #A9223C;
        }

.LoginButtonDiv {
    width: 100%;
    height: 60px;
    padding: 10px;
}


    .LoginButtonDiv #SaveButton {
        background-color: #A9223C;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }