/*
 *
 * DuoGeek CSS StyleSheet
 * 
 */

body{
    position: relative;
    overflow: hidden;
}

.dg-popup-wrap{
    position: fixed;;
    width: 100%;
    height: 100%;
    z-index: 999999;
    top: 0;
    left: 0;
    display: none;
    background: rgba( 238, 238, 238, 0.7 );
}

.dg-popup{
    margin: auto;
    background: #ddd;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.dg-pop-close{
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    font-size: 20px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font: normal normal normal 14px/1 FontAwesome;
    color: #fff;
    background: red;
    padding: 10px;
}

.dg-pop-close:before{
    content: "\f00d";
}

.dg-pop-content{
    padding: 20px;
    height: 100%;
}

.dg-loading{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
    display: table;
}

.dg-error-border{
    border:1px solid red;
}

.dg-error-text{
    color: red;
}