﻿/*
 * General styles
 */
body, html {
    /*Config Para uso com degrade de fundo*/
    height: 100%;
    background: linear-gradient(rgb(31, 59, 53), rgb(22, 159, 133))no-repeat center center fixed;

    /*Config Para uso com imagem Pu skin*/
    /*height: 100%;
    background: url(../../images/login-body-bg-1.jpg)no-repeat center center fixed;*/
   
    /*Para ambos os casos de Config*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/*///////////////////////////////////////////////////////*/
/*Para controlar ProgressUpdate asp.net*/
/*///////////////////////////////////////////////////////*/
.pu-loader {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    /*para gerar cor de fundo*/
    /*background-color: black;
    filter: alpha(opacity=60);
    opacity: 0.6;
    margin: 0px 0px 0px 0px;
    -moz-opacity: 0.8;*/
}

.pu-loader-center {
    position: fixed;
    top: 55px;
    left: 50%;
    z-index: 1000;
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #1ABB9C;
    border-bottom: 3px solid #1ABB9C;
    width: 96px;
    height: 96px;
    -webkit-animation: spin 0.6s linear infinite;
    animation: spin 0.6s linear infinite;
    margin-left: -48px; /* metade de 32 para deixar no centro exato*/
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/*
* Card container
*/
.card-container.card {
    max-width: 320px;
    padding: 30px 30px;
    border-radius: 5px; /*borda arredondada andre*/
}

/*
 * Card component
 */
.card {
    /*background-color: rgba(9, 8, 8, 0.85);*/
    background-color: #ffffff;
    /* just in case there no content*/
    padding: 20px 20px 25px;
    margin: 0px auto 25px;
    margin-top:25px;
    /* shadows and rounded borders */
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.profile-img-card {
    width: 96px;
    height: 96px;
    margin: 0 auto 10px;
    display: block;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    /*Gera Borda com sombra na imagem*/
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.7), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/*
 * Form styles
 */
.profile-name-card {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0 0;
    min-height: 1em;
}



/* melhorias arp*/
.divider {
    border-bottom: 1px solid #ddd;
    margin: 10px
}

.blue {
    color: #3498DB
}

.purple {
    color: #9B59B6
}

.green {
    color: #1ABB9C
}

.aero {
    color: #9CC2CB
}

.red {
    color: #E74C3C
}

.dark {
    color: #34495E
}
.white {
    color: #73879C
}

.border-blue {
    border-color: #3498DB !important
}

.border-purple {
    border-color: #9B59B6 !important
}

.border-green {
    border-color: #1ABB9C !important
}

.border-aero {
    border-color: #9CC2CB !important
}

.border-red {
    border-color: #E74C3C !important
}

.border-dark {
    border-color: #34495E !important
}

.bg-white {
    background: #fff !important;
    border: 1px solid #fff !important;
    color: #73879C
}

.bg-green {
    background: #1ABB9C !important;
    border: 1px solid #1ABB9C !important;
    color: #fff
}

.bg-red {
    background: #E74C3C !important;
    border: 1px solid #E74C3C !important;
    color: #fff
}

.bg-blue {
    background: #3498DB !important;
    border: 1px solid #3498DB !important;
    color: #fff
}

.bg-orange {
    background: #F39C12 !important;
    border: 1px solid #F39C12 !important;
    color: #fff
}

.bg-purple {
    background: #9B59B6 !important;
    border: 1px solid #9B59B6 !important;
    color: #fff
}

.bg-blue-sky {
    background: #50C1CF !important;
    border: 1px solid #50C1CF !important;
    color: #fff
}

