/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 04/09/2015, 13:11:04
    Author     : DAVID
*/

/*
-----------------
JQUERY DIALOGS UI
-----------------
*/
.ui-widget-overlay {
    background: rgba(0,0,0,0.65) 50% 50%;

}
.ui-widget-overlay {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
}
.ui-front{
      z-index: 1000;
}
.ui-dialog {
    max-height: 100%;
    overflow-y: auto;
}
.ui-widget-header {
    background: none;
    border: none;
    font-weight: lighter;
    border-radius: 0;
}
.ui-dialog .ui-dialog-title {
    font-size: 30px;
    line-height: 50px;
}

.ui-dialog .ui-dialog-titlebar-close {
    right: 0;
    border: 0px;
    background: transparent;
}
.ui-dialog .pull-right {
    width: 128px;
    height: 128px;
    color:transparent;
    background-color: transparent;
    background: url(../../site/images/btn-fechar.png) no-repeat center center;
    background-size: cover;
    position: relative;
    top: -50px;
    right: -40px;
}
.ui-dialog .ui-dialog-content {
    padding: 0;
}

.ui-dialog-titlebar{
    display: none;
}

.ui-dialog .pt-inner{
   width: 100%;
   max-width: 789px;
   min-height: 529px;
   height: auto;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fcfcfc+0,8d8f91+100 */
   background: #fcfcfc; /* Old browsers */
   background: -moz-radial-gradient(center, ellipse cover, #fcfcfc 0%, #8d8f91 100%); /* FF3.6-15 */
   background: -webkit-radial-gradient(center, ellipse cover, #fcfcfc 0%,#8d8f91 100%); /* Chrome10-25,Safari5.1-6 */
   background: radial-gradient(ellipse at center, #fcfcfc 0%,#8d8f91 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#8d8f91',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
   background: url(../../site/images/bg-dialog.jpg) no-repeat center center #000;
   background-size: 100% 100%;
   border-radius: 4px;
   box-shadow: 0 0 10px 5px #000;
}
.ui-dialog-title{
    color: #688F3C;
}
.ui-dialog .pt-title{
    font-size: 40px;
    font-weight: 300;
    line-height: 37px;
    padding: 10px 0;
    margin-bottom: 15px;
    color: #fff12d;
}
.ui-dialog .pt-title i{
    font-size: 16px;
    cursor: pointer;
}

.admin-dialog .loading{
    font-size: 20px;
    height: 60px;
    left: 50%;
    margin-left: -100px;
    margin-top: -30px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 200px;
}

.btn-default {
    background-color: #fff;
    border: 2px solid #333;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 5px 15px;
    text-transform: uppercase;
    transition: all 0.25s ease 0s;
}

.btn-default:hover{
    background-color: #333;
    color: #efefef;
}

.admin-dialog, .admin-confirm, .admin-alert{
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    left: 0 !important;
}

.admin-confirm, .admin-alert{
    background: #FFF;
    border-top: 10px solid #688F3C;
    border-bottom: 5px solid #688F3C;
    color: #000;
}

.admin-confirm .pull-right, .admin-alert .pull-right{
    right: 0;
}
.admin-confirm .ui-button-text,  .admin-alert .ui-button-text {
    display: none;
}

.admin-dialog .pt-content, .admin-confirm .pt-content, .admin-alert .pt-content{
    padding-top: 40px;
    padding-bottom: 10px;
    overflow: auto;
}

.admin-confirm h4, .admin-alert h4{
    margin: 15px 0;
    font-weight: lighter;
    font-size: 24px;
}

.admin-confirm .btn-default, .admin-alert .btn-default{
    cursor: pointer;
    color:#000;
    padding: 5px 10px 5px 35px;
    border:2px solid #688F3C;
    margin-top: 60px;
    display: inline-block;
    position: relative;
    letter-spacing: 5px;
    font-size: 30px;
    box-sizing: border-box;
    text-transform: uppercase;
    transition: all 0.25s ease 0s;
    height: auto;
    background: #FFF;
    font-family: 'VAGRoundedBold';
}
.admin-confirm .btn-default:hover, .admin-alert .btn-default:hover{
    background-color: #688F3C;
    border-color: #688F3C;
    color: #FFF;
}

.admin-alert.erro{
    border-top: 10px solid #F61C40;
    border-bottom: 5px solid #F61C40;
}
.admin-alert.erro .btn-default{
    border-color: #F61C40;
}
.admin-alert.erro .btn-default:hover{
    background-color: #F61C40;
    color: #fff;
}

.admin-alert.sucesso{
    border-top: 10px solid #50B849;
    border-bottom: 5px solid #50B849;
}
.admin-alert.sucesso .btn-default{
    border-color: #50B849;
}
.admin-alert.sucesso .btn-default:hover{
    background-color: #50B849;
    color: #fff;
}