﻿/*#region GENERIC */
.boxBlur {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.85);
    position: fixed;
    cursor: pointer;
    transition: opacity ease-out .95s;
    /*opacity: 0;*/
    z-index: 200;
    top: 0px;
}
    .boxBlur.active {
        opacity: 1;
    }


    .boxBlur .close {
        width: 50px;
        height: 50px;
        background: url(/img/navi.png) no-repeat;
        background-position-x: -150px;
        position: fixed;
        top: 20px;
        right: 20px;
        opacity: .3;
        cursor: pointer;
        transition: all ease-out .3s;
    }
        .boxBlur .close:hover {
            opacity: .75;
        }


.box {
    background-color: #eee;
    min-width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 5px;
    box-shadow: 0px 0px 20px rgba(0,0,0,.75);
    z-index: 500;
    padding-top: 50px;
    transition: height .5s ease-out;
    display: none;
    cursor: default;
}

    .box .boxHead {
        width: 100%;
        height: 50px;
        background-color: #50b4e6;
        margin-top: -50px;
        border-radius: 5px 5px 0px 0px;
        background-image: linear-gradient(bottom, rgb(71,160,204) 23%, rgb(80,180,230) 62%);
        background-image: -o-linear-gradient(bottom, rgb(71,160,204) 23%, rgb(80,180,230) 62%);
        background-image: -moz-linear-gradient(bottom, rgb(71,160,204) 23%, rgb(80,180,230) 62%);
        background-image: -webkit-linear-gradient(bottom, rgb(71,160,204) 23%, rgb(80,180,230) 62%);
        background-image: -ms-linear-gradient(bottom, rgb(71,160,204) 23%, rgb(80,180,230) 62%);
        background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.23, rgb(71,160,204)), color-stop(0.62, rgb(80,180,230)) );
        text-transform: capitalize;
        color: #fff;
        text-align: center;
        vertical-align: middle;
        line-height: 50px;
        font-size: 28px;
        text-shadow: 0px 0px 4px rgba(0,0,0,.3);
        position: relative;
    }

    .box .cWrap{
        padding: 10px;
    }
    .box .boxContent {
        background-color: #fff;
        padding: 15px;
        box-shadow: 0px 0px 4px rgba(34,34,34,.25);
        border-radius: 2px;
        color: #222;
    }
        .boxContent .message {
            font-size: 20px;
            color: #222;
            padding: 10px 15px 0px;
        }


    .box .foot {
        padding: 5px 20px;
    }        
    
    .box .btnList {
        text-align: right;
    }
    .box .btnList .btn {
        height: 36px;
        padding: 6px 16px;
        background-color: #333;
        box-shadow: 0 0 2px rgba(255,255,255,.1) inset;
        line-height: 36px;
        font-size: 24px;
        color: #fff;
        display: inline-block;
        margin-left: 6px;
        border-radius: 1px;
        font-weight: 300;
        cursor: pointer;
    }
        .box .btnList .btn .fbBtn {
            display: inline-block;
            position: relative;
            top: 2px;
            min-width: 74px;
        }
        .box .btnList .btn:hover {
            background-color: #50b4e6;
        }
        .box .btnList .btn .ico {
            background-image: url(/images/core/dez/round_icons.png);
            width: 26px;
            height: 26px;
            display: inline-block;
            margin: 5px 0px 5px 12px;
            float: right;
        }
            .box .btnList .btn .ico.left {
                float: left;
                margin: 5px 12px 5px 0px;
            }
    .box .ico.close { background-position: 0px 0px; }
    .box .ico.back { background-position: -26px 0px; }
    .box .ico.next { background-position: -52px 0px; }
    .box .ico.fb { background-position: -78px 0px; }
    .box .ico.customize { background-position: -104px 0px; }
    .box .ico.share { background-position: -130px 0px; }
/* #endregion */


/*#region AUTH */
.box.authBox {
    width: 650px;
    margin-left: -325px;
}
    .authBox .authImg {
        width: 333px;
        height: 100px;
        background: url(/images/core/boxes/auth.png) no-repeat;
        margin: 16px auto 0px;
    }
    .authBox .authMessage {
        font-size: 24px;
        color: #222;
        margin: 10px; 
        text-align: center;
    }
    .authBox .authMessage span {
        font-size: 16px;
        color: #666;
    }
/* #endregion */
