



/* ---------------------------------
2. COMMONS FOR PAGE DESIGN
--------------------------------- */

.center-text {
    text-align: center;
}

.display-table {
    display: table;
    height: 100%;
    width: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}



::-webkit-input-placeholder {
    font-size: .9em;
    letter-spacing: 1px;
}

::-moz-placeholder {
    font-size: .9em;
    letter-spacing: 1px;
}

:-ms-input-placeholder {
    font-size: .9em;
    letter-spacing: 1px;
}

:-moz-placeholder {
    font-size: .9em;
    letter-spacing: 1px;
}


.full-height {
    height: 100%;
}

.position-static {
    position: static;
}

.font-white {
    color: #fff;
}


/* ---------------------------------
3. MAIN SECTION
--------------------------------- */

.main-area-wrapper {
    height: calc( 100% - 40px);
    padding: 20px;
    background-size: cover;
}

.main-area {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 0 20px;
    box-shadow: 2px 5px 30px rgba(0,0,0,.3);
    color: #fff;
}

    .main-area:after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -1;
        opacity: .4;
        background: #000;
    }

    .main-area .desc {
        margin: 20px auto;
        max-width: 500px;
    }

    .main-area .notify-btn {
        margin: 20px 0 50px;
        padding: 13px 35px;
        border-radius: 50px;
        border: 2px solid #F84982;
        color: #fff;
        background: #F84982;
    }

        .main-area .notify-btn:hover {
            background: none;
        }


/* TIME COUNTDOWN */

#normalcountdown {
    text-align: center;
    display: table;
    margin: 0 auto;
}

    #normalcountdown h3 {
        font-size: 21px !important;
        margin: 5px 0 !important;
        /*font-family: iransans,IRANSansWeb !important;*/
    }

    #normalcountdown .time-sec {
        position: relative;
        display: inline-block;
        /*font-family: iransans-bold;*/
        margin: 6px;
        height: 77px;
        width: 50px;
        border-radius: 5px;
        background-color: #ccc;
        color: #000;
        line-height: 0;
    }

        #normalcountdown .time-sec .main-time {
            font-weight: 500;
            line-height: 40px;
            font-size: 2em;
            color: #000;
        }

        #normalcountdown .time-sec span {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: .9em;
            font-weight: 600;
        }


/* SOCIAL BTN */

.main-area .social-btn {
    position: absolute;
    bottom: 30px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}


    .main-area .social-btn .list-heading {
        display: block;
        margin-bottom: 15px;
    }

    .main-area .social-btn > li > a > i {
        display: inline-block;
        height: 35px;
        width: 35px;
        line-height: 35px;
        border-radius: 40px;
        font-size: 1.04em;
        margin: 0 5px;
    }

        .main-area .social-btn > li > a > i:hover {
            background: #fff !important;
        }

        .main-area .social-btn > li > a > i[class*="facebook"] {
            background: #2A61D6;
        }

        .main-area .social-btn > li > a > i[class*="twitter"] {
            background: #3AA4F8;
        }

        .main-area .social-btn > li > a > i[class*="google"] {
            background: #F43846;
        }

        .main-area .social-btn > li > a > i[class*="instagram"] {
            background: #8F614A;
        }

        .main-area .social-btn > li > a > i[class*="pinterest"] {
            background: #E1C013;
        }
