
body.site.offline {
        background-size: contain;
        background-image: url(../../../templates/jsn_epic2_pro/images/backgrounds/bg-master.jpg);
    #content {
        display: flex;
        height: calc(100vh);
        align-items: center;
        text-align: center;
        justify-content: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .content-inner{
        h2{
            font-size: 32px;
            font-weight: bold;
            line-height: 1.5;
            text-align: center;
             color: #fff;
        }
        p{
            font-size: 14px;
            text-align: center;
             color: #fff;
            margin-bottom: 35px;
            line-height: 1.5;
        }
        .countdown-timer{
            .countdown{
                width: 80px;
                height: 80px;
                border: none;
                background-color: #ffffff;
                border-radius: 5px;
                font-size: 32px;
                font-weight: bold;
                line-height: 80px;
                text-align: center;
                color: #fff;
                margin-bottom: 12px;
                background-image: linear-gradient(to bottom, #3d3d3d, #010101);
            }
            .day-container, .hour-container, .minute-container, .second-container{
                font-size: 14px;
                font-weight: normal;
                font-style: normal;
                font-stretch: normal;
                line-height: 1.5;
                letter-spacing: normal;
                text-align: center;
                 color: #fff;
            }
        }
    }
    .input-group{
        margin-right: 10px;
        .input-group-prepend {
            z-index: 9;
            padding: 0px 14px;
            background-color: #e9ecef;
            border: 1px solid #ced4da;
            margin-right: -1px;
            height: 40px;
            line-height: 40px;
            border-radius: 5px 0 0 5px;
        }
        .pd-left{
            border-radius: 0px 5px 5px 0px;
            box-shadow: none;
            height: 40px;
            &:focus {
                border-color:#bec0c6;
            }
        }
    }
    .countdown-timer {
        margin: 10px 0 40px;
    }
    .btn-primary {
        background-image: linear-gradient(to bottom, #3677ad, #2c5983);
        color: #fff;
        font-size: 14px;
        letter-spacing: 0px;
        
        border: solid 1px #234768;
        border-radius: 5px;
        padding: 0px 20px;
        height: 40px;
        line-height: 40px;
        transition: 0.5s ease-out;
        &:hover{
            background-image: linear-gradient(to bottom, #213e56, #2c5983);
            box-shadow: inset 0 2px 0 0 rgba(255, 255, 255, 0.2);
        }

    }
    .form-inline > .input-group {
        display: flex;
        float: left;
    }
}

@media (max-width: $screen-xs-max) {
    body.site.offline {
        text-align: center;
        .input-group{
            margin: 0 0 15px 0; 
        }
        .form-inline > .input-group {
            float: none;
        }
        #form-login{
            justify-content: center;
            display: flex;
        }
        .content-inner {
            .countdown-timer {
                .countdown {
                    width: 60px;
                    height: 60px;
                    font-size: 25px;
                    line-height: 60px;
                    text-align: center;
                    margin-bottom: 12px;
                }
            }
        }
    }
}


